Initial commit
diff --git a/README.md b/README.md
index d7d53a3..d9bcc2f 100644
--- a/README.md
+++ b/README.md
@@ -1,18 +1,45 @@
-# Caravel Analog User
+# Particle Detector Frontend
+This is a simple analog frontend for detecting single particles such as cosmic rays, alpha or beta particles. The user can attach a detector, such as a silicon PIN diode to the input. When a particle hits the detector, it will create a current pulse. The current pulse is amplified by the transimpedance amplifier and detected by the comparator. The output of the comparator is made available as an low voltage differential signalling (LVDS) signal at the output and can be further processed by an FPGA, e.g. to count the number of inpinging particles per second.
 
+The ASIC contains the following blocks:
+
+
+The overall bandwidth is intended to be approx. 1GHz. The design aims to enable the detection of pulses with a peak current of 5µA and length of 0.5 ns.
+
+The blocks are inteded to be re-used as IP blocks in future projects. Therefore for each block both schematic as well as a magic layout are available.
+
+
+License:
 [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![CI](https://github.com/efabless/caravel_user_project_analog/actions/workflows/user_project_ci.yml/badge.svg)](https://github.com/efabless/caravel_user_project_analog/actions/workflows/user_project_ci.yml) [![Caravan Build](https://github.com/efabless/caravel_user_project_analog/actions/workflows/caravan_build.yml/badge.svg)](https://github.com/efabless/caravel_user_project_analog/actions/workflows/caravan_build.yml)
 
----
+—
+## Biasing circuit and Transimpedance Amplifier
+The Biasing circuit and TIA have been previously published and were submitted to the MPW-5. They are documented here:
 
-| :exclamation: Important Note            |
-|-----------------------------------------|
+## Active dark current compensation
+The dark current of the detector may lead to saturation of the input TIA. To prevent this, an active dark current compensation circuit was implemente. The circuit is based on [1].
 
-## Please fill in your project documentation in this README.md file 
+*Schematic:*
+*Layout:*
+
+## Comparator
+The functional blocks of the comparator are shown in the following:
 
 
-:warning: | Use this sample project for analog user projects. 
-:---: | :---
+The comparator is composed of saturation tollerant difference amplifiers stages. Each stage has a typical amplification of 10dB. By cascading 6 stages an overall amplification of approx. 60dB is attained. The threshold of the comparator is set by injecting an offset current into the 3rd difference amplifier stage. Prior to the 3rd aplifier stage AC coupling eliminates the offset introduced by the previous amplifer stages. After the difference amplifer stages, a schmidt trigger is used to convert the differential analog signal to a single ended digital signal. The schmidt trigger contains a difference amplifer with a positive feedback making it bi-stable. The output of this difference amplifer is converted to a digitial signal via current mirrors and 3 cascaded inverter stages.
 
----
+From a user perspective, the threshold is set via an input current on one of the two input pins. Supplying the current can be attained e.g. via a resistor or a current DAC.
 
-Refer to [README](docs/source/index.rst) for this sample project documentation. 
+The following shows the reaction of the comparator to a voltage pulse of 1.5mV.
+
+
+*Schematic:*
+*Layout:*
+
+## LVDS driver
+
+*Schematic:*
+*Layout:*
+
+## References
+[1]
\ No newline at end of file
diff --git a/mag/.magicrc b/mag/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/.ztr-directory b/mag/.ztr-directory
new file mode 100644
index 0000000..f5acee9
--- /dev/null
+++ b/mag/.ztr-directory
@@ -0,0 +1 @@
+{"sorting":"name-up","project":null,"icon":null}
\ No newline at end of file
diff --git a/mag/bias/.magicrc b/mag/bias/.magicrc
new file mode 120000
index 0000000..d7f5712
--- /dev/null
+++ b/mag/bias/.magicrc
@@ -0,0 +1 @@
+../.magicrc
\ No newline at end of file
diff --git a/mag/bias/bias_curm_n.ext b/mag/bias/bias_curm_n.ext
new file mode 100644
index 0000000..a06a1f1
--- /dev/null
+++ b/mag/bias/bias_curm_n.ext
@@ -0,0 +1,76 @@
+timestamp 1654697490
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_QQ8PGA sky130_fd_pr__nfet_01v8_QQ8PGA_0 1 0 501 0 1 1479
+use sky130_fd_pr__nfet_01v8_6YE2KS sky130_fd_pr__nfet_01v8_6YE2KS_0 1 0 433 0 1 360
+node "m1_80_970#" 11 1387.16 80 970 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156288 6000 578456 8432 0 0 0 0 0 0 0 0
+node "m1_176_1194#" 7 736.478 176 1194 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104192 4000 215964 4012 197600 2040 0 0 0 0 0 0
+node "li_330_n30#" 43 606.672 330 -30 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15400 580 59080 2152 153672 2396 0 0 0 0 0 0 0 0
+node "a_132_882#" 3668 2711.87 132 882 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 194832 6432 0 0 100368 6176 330500 13320 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_80_970#" "m1_176_1194#" 1131.97
+cap "a_132_882#" "m1_176_1194#" 1161.52
+cap "m1_80_970#" "li_330_n30#" 217.707
+cap "li_330_n30#" "a_132_882#" 844.823
+cap "m1_80_970#" "a_132_882#" 1860.98
+cap "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" 476.482
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" 1309.12
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" 980.123
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" 202.541
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" -28
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" 484.819
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" 682.106
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" 57.6273
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" -28
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" 515.902
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" 1108.82
+cap "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" 888.692
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_187_n288#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_29_n288#" 1963.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990768 -5312 0 0 312048 -3200 184560 -5536 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_29_n288#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n129_n288#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n287_n288#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n287_n288#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_207_n597#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_207_n597#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_303_n87#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_303_n87#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_15_n597#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_15_n597#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_111_n87#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_111_n87#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n177_n597#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n177_n597#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n81_n87#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n81_n87#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_n597#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_n597#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n273_n87#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n273_n87#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_303_21#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_303_21#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_111_21#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_111_21#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_207_531#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_207_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n81_21#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n81_21#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_15_531#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_15_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n273_21#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n273_21#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n177_531#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n177_531#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n369_531#" "a_132_882#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_287_n200#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" -897.664 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -307560 -508 -52560 -1332 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n345_n200#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n345_n200#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "li_330_n30#"
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_129_n200#" "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n187_n200#" -848.807 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -191376 -5328 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n187_n200#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_351_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_351_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_159_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_159_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n33_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n33_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n225_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n225_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_351_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_351_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_159_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_159_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n33_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n225_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "m1_80_970#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_255_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_n509#" -625.421 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -113760 -3552 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n129_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n129_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_255_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_255_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n129_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#"
+merge "sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_109#" "m1_176_1194#"
diff --git a/mag/bias/bias_curm_n.mag b/mag/bias/bias_curm_n.mag
new file mode 100644
index 0000000..4b94106
--- /dev/null
+++ b/mag/bias/bias_curm_n.mag
@@ -0,0 +1,298 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654697490
+<< pwell >>
+rect 132 2010 870 2076
+rect 132 1500 870 1566
+rect 132 1392 870 1458
+rect 132 882 870 948
+<< poly >>
+rect 132 2060 870 2076
+rect 132 2026 244 2060
+rect 278 2026 436 2060
+rect 470 2026 628 2060
+rect 662 2026 820 2060
+rect 854 2026 870 2060
+rect 132 2010 870 2026
+rect 132 1550 870 1566
+rect 132 1516 148 1550
+rect 182 1516 340 1550
+rect 374 1516 532 1550
+rect 566 1516 724 1550
+rect 758 1516 870 1550
+rect 132 1500 870 1516
+rect 132 1442 870 1458
+rect 132 1408 148 1442
+rect 182 1408 340 1442
+rect 374 1408 532 1442
+rect 566 1408 724 1442
+rect 758 1408 870 1442
+rect 132 1392 870 1408
+rect 132 932 870 948
+rect 132 898 244 932
+rect 278 898 436 932
+rect 470 898 628 932
+rect 662 898 820 932
+rect 854 898 870 932
+rect 132 882 870 898
+<< polycont >>
+rect 244 2026 278 2060
+rect 436 2026 470 2060
+rect 628 2026 662 2060
+rect 820 2026 854 2060
+rect 148 1516 182 1550
+rect 340 1516 374 1550
+rect 532 1516 566 1550
+rect 724 1516 758 1550
+rect 148 1408 182 1442
+rect 340 1408 374 1442
+rect 532 1408 566 1442
+rect 724 1408 758 1442
+rect 244 898 278 932
+rect 436 898 470 932
+rect 628 898 662 932
+rect 820 898 854 932
+<< locali >>
+rect 132 2026 244 2060
+rect 278 2026 436 2060
+rect 470 2026 628 2060
+rect 662 2026 820 2060
+rect 854 2026 870 2060
+rect 132 1516 148 1550
+rect 182 1516 340 1550
+rect 374 1516 532 1550
+rect 566 1516 724 1550
+rect 758 1516 870 1550
+rect 132 1408 148 1442
+rect 182 1408 340 1442
+rect 374 1408 532 1442
+rect 566 1408 724 1442
+rect 758 1408 870 1442
+rect 132 898 244 932
+rect 278 898 436 932
+rect 470 898 628 932
+rect 662 898 820 932
+rect 854 898 870 932
+<< viali >>
+rect 244 2026 278 2060
+rect 436 2026 470 2060
+rect 628 2026 662 2060
+rect 820 2026 854 2060
+rect 148 1516 182 1550
+rect 340 1516 374 1550
+rect 532 1516 566 1550
+rect 724 1516 758 1550
+rect 148 1408 182 1442
+rect 340 1408 374 1442
+rect 532 1408 566 1442
+rect 724 1408 758 1442
+rect 244 898 278 932
+rect 436 898 470 932
+rect 628 898 662 932
+rect 820 898 854 932
+rect 330 -30 550 40
+<< metal1 >>
+rect 0 2060 870 2070
+rect 0 2026 244 2060
+rect 278 2026 436 2060
+rect 470 2026 628 2060
+rect 662 2026 820 2060
+rect 854 2026 870 2060
+rect 0 2020 870 2026
+rect 0 1560 50 2020
+rect 176 1812 186 1988
+rect 240 1812 250 1988
+rect 368 1812 378 1988
+rect 432 1812 442 1988
+rect 560 1812 570 1988
+rect 624 1812 634 1988
+rect 752 1812 762 1988
+rect 816 1812 826 1988
+rect 80 1588 90 1764
+rect 144 1588 154 1764
+rect 272 1588 282 1764
+rect 336 1588 346 1764
+rect 464 1588 474 1764
+rect 528 1588 538 1764
+rect 656 1588 666 1764
+rect 720 1588 730 1764
+rect 848 1588 858 1764
+rect 912 1588 922 1764
+rect 0 1550 870 1560
+rect 0 1516 148 1550
+rect 182 1516 340 1550
+rect 374 1516 532 1550
+rect 566 1516 724 1550
+rect 758 1516 870 1550
+rect 0 1510 870 1516
+rect 0 1450 50 1510
+rect 0 1442 870 1450
+rect 0 1408 148 1442
+rect 182 1408 340 1442
+rect 374 1408 532 1442
+rect 566 1408 724 1442
+rect 758 1408 870 1442
+rect 0 1400 870 1408
+rect 0 940 50 1400
+rect 176 1194 186 1370
+rect 240 1194 250 1370
+rect 368 1194 378 1370
+rect 432 1194 442 1370
+rect 560 1194 570 1370
+rect 624 1194 634 1370
+rect 752 1194 762 1370
+rect 816 1194 826 1370
+rect 80 970 90 1146
+rect 144 970 154 1146
+rect 272 970 282 1146
+rect 336 970 346 1146
+rect 464 970 474 1146
+rect 528 970 538 1146
+rect 656 970 666 1146
+rect 720 970 730 1146
+rect 848 970 858 1146
+rect 912 970 922 1146
+rect 0 932 870 940
+rect 0 898 244 932
+rect 278 898 436 932
+rect 470 898 628 932
+rect 662 898 820 932
+rect 854 898 870 932
+rect 0 890 870 898
+rect 0 640 50 890
+rect 0 590 720 640
+rect 0 130 50 590
+rect 238 384 248 560
+rect 302 384 312 560
+rect 554 384 564 560
+rect 618 384 628 560
+rect 80 160 90 336
+rect 144 160 154 336
+rect 396 160 406 336
+rect 460 160 470 336
+rect 712 160 722 336
+rect 776 160 786 336
+rect 0 80 720 130
+rect 318 40 562 46
+rect 318 -30 330 40
+rect 550 -30 562 40
+rect 318 -36 562 -30
+<< via1 >>
+rect 186 1812 240 1988
+rect 378 1812 432 1988
+rect 570 1812 624 1988
+rect 762 1812 816 1988
+rect 90 1588 144 1764
+rect 282 1588 336 1764
+rect 474 1588 528 1764
+rect 666 1588 720 1764
+rect 858 1588 912 1764
+rect 186 1194 240 1370
+rect 378 1194 432 1370
+rect 570 1194 624 1370
+rect 762 1194 816 1370
+rect 90 970 144 1146
+rect 282 970 336 1146
+rect 474 970 528 1146
+rect 666 970 720 1146
+rect 858 970 912 1146
+rect 248 384 302 560
+rect 564 384 618 560
+rect 90 160 144 336
+rect 406 160 460 336
+rect 722 160 776 336
+rect 330 -30 550 40
+<< metal2 >>
+rect 170 1990 820 2000
+rect 170 1988 580 1990
+rect 810 1988 820 1990
+rect 170 1850 186 1988
+rect 240 1850 378 1988
+rect 186 1802 240 1812
+rect 432 1850 570 1988
+rect 378 1802 432 1812
+rect 624 1850 762 1860
+rect 570 1802 624 1812
+rect 816 1850 820 1988
+rect 762 1802 816 1812
+rect 90 1764 144 1774
+rect 80 1588 90 1720
+rect 282 1764 336 1774
+rect 144 1588 282 1720
+rect 474 1764 528 1774
+rect 336 1588 474 1720
+rect 666 1764 720 1774
+rect 528 1588 666 1720
+rect 858 1764 912 1774
+rect 720 1588 858 1720
+rect 912 1588 1030 1720
+rect 80 1570 1030 1588
+rect 180 1380 820 1390
+rect 180 1370 580 1380
+rect 810 1370 820 1380
+rect 180 1240 186 1370
+rect 240 1240 378 1370
+rect 186 1184 240 1194
+rect 432 1240 570 1370
+rect 378 1184 432 1194
+rect 624 1240 762 1250
+rect 570 1184 624 1194
+rect 816 1240 820 1370
+rect 762 1184 816 1194
+rect 860 1156 1030 1570
+rect 90 1146 144 1156
+rect 80 970 90 1110
+rect 282 1146 336 1156
+rect 144 970 282 1110
+rect 474 1146 528 1156
+rect 336 970 474 1110
+rect 666 1146 720 1156
+rect 528 970 666 1110
+rect 858 1146 1030 1156
+rect 720 970 858 1110
+rect 912 970 1030 1146
+rect 80 960 1030 970
+rect 860 580 1030 960
+rect 230 560 1030 580
+rect 230 430 248 560
+rect 302 430 564 560
+rect 248 374 302 384
+rect 618 430 1030 560
+rect 564 374 618 384
+rect 90 336 144 346
+rect 80 160 90 290
+rect 406 336 460 346
+rect 144 160 406 290
+rect 722 336 776 346
+rect 460 160 722 290
+rect 776 160 780 290
+rect 80 140 780 160
+rect 330 40 550 140
+rect 330 -40 550 -30
+<< via2 >>
+rect 580 1988 810 1990
+rect 580 1860 624 1988
+rect 624 1860 762 1988
+rect 762 1860 810 1988
+rect 580 1370 810 1380
+rect 580 1250 624 1370
+rect 624 1250 762 1370
+rect 762 1250 810 1370
+<< metal3 >>
+rect 560 1990 820 2000
+rect 560 1860 580 1990
+rect 810 1860 820 1990
+rect 560 1380 820 1860
+rect 560 1250 580 1380
+rect 810 1250 820 1380
+rect 560 1240 820 1250
+use sky130_fd_pr__nfet_01v8_6YE2KS  sky130_fd_pr__nfet_01v8_6YE2KS_0
+timestamp 1654697436
+transform 1 0 433 0 1 360
+box -483 -410 483 410
+use sky130_fd_pr__nfet_01v8_QQ8PGA  sky130_fd_pr__nfet_01v8_QQ8PGA_0
+timestamp 1654697436
+transform 1 0 501 0 1 1479
+box -551 -719 551 719
+<< end >>
diff --git a/mag/bias/bias_curm_p.ext b/mag/bias/bias_curm_p.ext
new file mode 100644
index 0000000..2944144
--- /dev/null
+++ b/mag/bias/bias_curm_p.ext
@@ -0,0 +1,91 @@
+timestamp 1654704381
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_U4PLGH sky130_fd_pr__pfet_01v8_U4PLGH_0 1 0 541 0 1 -173
+use sky130_fd_pr__pfet_01v8_PDCJZ5 sky130_fd_pr__pfet_01v8_PDCJZ5_0 1 0 473 0 1 969
+node "m1_216_n466#" 7 661.816 216 -466 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104192 4000 220896 4088 190400 2100 0 0 0 0 0 0
+node "m1_120_n692#" 12 1509.24 120 -692 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169312 6500 581160 9356 0 0 0 0 0 0 0 0
+node "li_20_520#" 128 366.586 20 520 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81000 1980 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_380_1300#" 40 490.211 380 1300 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10800 480 40736 1552 139768 1684 0 0 0 0 0 0 0 0
+node "a_172_n788#" 3782 2580.48 172 -788 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 197712 6624 0 0 100368 6176 366300 13440 0 0 0 0 0 0 0 0 0 0
+node "w_172_n788#" 11196 148.284 172 -788 nw 0 0 0 0 49428 1656 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_172_n260#" 11196 148.284 172 -260 nw 0 0 0 0 49428 1656 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_172_n152#" 11196 148.284 172 -152 nw 0 0 0 0 49428 1656 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_172_376#" 11196 148.284 172 376 nw 0 0 0 0 49428 1656 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n10_1380#" 61902 519.3 -10 1380 nw 0 0 0 0 173100 6820 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_380_1300#" "li_20_520#" 7.30435
+cap "a_172_n788#" "li_20_520#" 337.285
+cap "li_380_1300#" "a_172_n788#" 666.817
+cap "m1_216_n466#" "m1_120_n692#" 1322.76
+cap "li_20_520#" "m1_120_n692#" 32.9678
+cap "w_n10_1380#" "m1_120_n692#" 96.3807
+cap "m1_216_n466#" "a_172_n788#" 1140.7
+cap "li_380_1300#" "m1_120_n692#" 152.644
+cap "a_172_n788#" "m1_120_n692#" 1862.58
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 896.569
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 33.9711
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" 1737.16
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 627.19
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 666.214
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 2180.9
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 441.784
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -13.131
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" 712.054
+cap "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" 348.096
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_129_n200#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n187_n200#" 7913.22 0 0 0 0 2980352 -15384 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -212244 -4068 -26772 -884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n187_n200#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/w_n483_n419#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/w_n483_n419#" "li_380_1300#"
+merge "li_380_1300#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "li_20_520#"
+merge "li_20_520#" "w_172_n788#"
+merge "w_172_n788#" "w_172_n260#"
+merge "w_172_n260#" "w_172_n152#"
+merge "w_172_n152#" "w_172_376#"
+merge "w_172_376#" "w_n10_1380#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 5331.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2313360 -5216 0 0 646272 -3200 1409088 -5536 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_207_n615#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_207_n615#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_15_n615#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_15_n615#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n177_n615#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n177_n615#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_n615#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_n615#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_303_n87#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_303_n87#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_111_n87#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_111_n87#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n81_n87#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n81_n87#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n273_n87#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n273_n87#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_303_21#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_303_21#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_111_21#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_111_21#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n81_21#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n81_21#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n273_21#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n273_21#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_207_549#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_207_549#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_15_549#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_15_549#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n177_549#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n177_549#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n369_549#" "a_172_n788#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/VSUBS" "sky130_fd_pr__pfet_01v8_U4PLGH_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" -1573.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -203864 -5746 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#"
+merge "sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "m1_120_n692#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_n518#" -722.914 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -159200 -3536 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_118#" "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#"
+merge "sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "m1_216_n466#"
diff --git a/mag/bias/bias_curm_p.mag b/mag/bias/bias_curm_p.mag
new file mode 100644
index 0000000..2d558fd
--- /dev/null
+++ b/mag/bias/bias_curm_p.mag
@@ -0,0 +1,339 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654704381
+<< nwell >>
+rect -10 1380 1100 1390
+rect 940 550 1100 1380
+rect 172 376 910 442
+rect 286 370 316 376
+rect 478 370 508 376
+rect 670 370 700 376
+rect 862 370 892 376
+rect 190 -86 220 -80
+rect 382 -86 412 -80
+rect 574 -86 604 -80
+rect 766 -86 796 -80
+rect 172 -152 910 -86
+rect 172 -260 910 -194
+rect 190 -266 220 -260
+rect 382 -266 412 -260
+rect 574 -266 604 -260
+rect 766 -266 796 -260
+rect 286 -722 316 -716
+rect 478 -722 508 -716
+rect 670 -722 700 -716
+rect 862 -722 892 -716
+rect 172 -788 910 -722
+rect 1080 -910 1100 550
+<< poly >>
+rect 172 426 910 442
+rect 172 392 284 426
+rect 318 392 476 426
+rect 510 392 668 426
+rect 702 392 860 426
+rect 894 392 910 426
+rect 172 376 910 392
+rect 286 370 316 376
+rect 478 370 508 376
+rect 670 370 700 376
+rect 862 370 892 376
+rect 190 -86 220 -80
+rect 382 -86 412 -80
+rect 574 -86 604 -80
+rect 766 -86 796 -80
+rect 172 -102 910 -86
+rect 172 -136 188 -102
+rect 222 -136 380 -102
+rect 414 -136 572 -102
+rect 606 -136 764 -102
+rect 798 -136 910 -102
+rect 172 -152 910 -136
+rect 172 -210 910 -194
+rect 172 -244 188 -210
+rect 222 -244 380 -210
+rect 414 -244 572 -210
+rect 606 -244 764 -210
+rect 798 -244 910 -210
+rect 172 -260 910 -244
+rect 190 -266 220 -260
+rect 382 -266 412 -260
+rect 574 -266 604 -260
+rect 766 -266 796 -260
+rect 286 -722 316 -716
+rect 478 -722 508 -716
+rect 670 -722 700 -716
+rect 862 -722 892 -716
+rect 172 -738 910 -722
+rect 172 -772 284 -738
+rect 318 -772 476 -738
+rect 510 -772 668 -738
+rect 702 -772 860 -738
+rect 894 -772 910 -738
+rect 172 -788 910 -772
+<< polycont >>
+rect 284 392 318 426
+rect 476 392 510 426
+rect 668 392 702 426
+rect 860 392 894 426
+rect 188 -136 222 -102
+rect 380 -136 414 -102
+rect 572 -136 606 -102
+rect 764 -136 798 -102
+rect 188 -244 222 -210
+rect 380 -244 414 -210
+rect 572 -244 606 -210
+rect 764 -244 798 -210
+rect 284 -772 318 -738
+rect 476 -772 510 -738
+rect 668 -772 702 -738
+rect 860 -772 894 -738
+<< locali >>
+rect 20 520 920 610
+rect 172 392 284 426
+rect 318 392 476 426
+rect 510 392 668 426
+rect 702 392 860 426
+rect 894 392 910 426
+rect 172 -136 188 -102
+rect 222 -136 380 -102
+rect 414 -136 572 -102
+rect 606 -136 764 -102
+rect 798 -136 910 -102
+rect 172 -244 188 -210
+rect 222 -244 380 -210
+rect 414 -244 572 -210
+rect 606 -244 764 -210
+rect 798 -244 910 -210
+rect 172 -772 284 -738
+rect 318 -772 476 -738
+rect 510 -772 668 -738
+rect 702 -772 860 -738
+rect 894 -772 910 -738
+<< viali >>
+rect 380 1300 560 1360
+rect 284 392 318 426
+rect 476 392 510 426
+rect 668 392 702 426
+rect 860 392 894 426
+rect 188 -136 222 -102
+rect 380 -136 414 -102
+rect 572 -136 606 -102
+rect 764 -136 798 -102
+rect 188 -244 222 -210
+rect 380 -244 414 -210
+rect 572 -244 606 -210
+rect 764 -244 798 -210
+rect 284 -772 318 -738
+rect 476 -772 510 -738
+rect 668 -772 702 -738
+rect 860 -772 894 -738
+<< metal1 >>
+rect 368 1360 572 1366
+rect 368 1300 380 1360
+rect 560 1300 572 1360
+rect 368 1294 572 1300
+rect 40 1210 760 1260
+rect 40 730 90 1210
+rect 278 994 288 1170
+rect 342 994 352 1170
+rect 594 994 604 1170
+rect 658 994 668 1170
+rect 120 768 130 944
+rect 184 768 194 944
+rect 436 768 446 944
+rect 500 768 510 944
+rect 752 768 762 944
+rect 816 768 826 944
+rect 40 680 760 730
+rect 40 440 90 680
+rect 40 426 910 440
+rect 40 392 284 426
+rect 318 392 476 426
+rect 510 392 668 426
+rect 702 392 860 426
+rect 894 392 910 426
+rect 40 380 910 392
+rect 40 -90 90 380
+rect 216 170 226 346
+rect 280 170 290 346
+rect 408 170 418 346
+rect 472 170 482 346
+rect 600 170 610 346
+rect 664 170 674 346
+rect 792 170 802 346
+rect 856 170 866 346
+rect 120 -56 130 120
+rect 184 -56 194 120
+rect 312 -56 322 120
+rect 376 -56 386 120
+rect 504 -56 514 120
+rect 568 -56 578 120
+rect 696 -56 706 120
+rect 760 -56 770 120
+rect 888 -56 898 120
+rect 952 -56 962 120
+rect 40 -102 910 -90
+rect 40 -136 188 -102
+rect 222 -136 380 -102
+rect 414 -136 572 -102
+rect 606 -136 764 -102
+rect 798 -136 910 -102
+rect 40 -150 910 -136
+rect 40 -200 90 -150
+rect 40 -210 910 -200
+rect 40 -244 188 -210
+rect 222 -244 380 -210
+rect 414 -244 572 -210
+rect 606 -244 764 -210
+rect 798 -244 910 -210
+rect 40 -260 910 -244
+rect 40 -730 90 -260
+rect 216 -466 226 -290
+rect 280 -466 290 -290
+rect 408 -466 418 -290
+rect 472 -466 482 -290
+rect 600 -466 610 -290
+rect 664 -466 674 -290
+rect 792 -466 802 -290
+rect 856 -466 866 -290
+rect 120 -692 130 -516
+rect 184 -692 194 -516
+rect 312 -692 322 -516
+rect 376 -692 386 -516
+rect 504 -692 514 -516
+rect 568 -692 578 -516
+rect 696 -692 706 -516
+rect 760 -692 770 -516
+rect 888 -692 898 -516
+rect 952 -692 962 -516
+rect 40 -738 910 -730
+rect 40 -772 284 -738
+rect 318 -772 476 -738
+rect 510 -772 668 -738
+rect 702 -772 860 -738
+rect 894 -772 910 -738
+rect 40 -790 910 -772
+<< via1 >>
+rect 380 1300 560 1360
+rect 288 994 342 1170
+rect 604 994 658 1170
+rect 130 768 184 944
+rect 446 768 500 944
+rect 762 768 816 944
+rect 226 170 280 346
+rect 418 170 472 346
+rect 610 170 664 346
+rect 802 170 856 346
+rect 130 -56 184 120
+rect 322 -56 376 120
+rect 514 -56 568 120
+rect 706 -56 760 120
+rect 898 -56 952 120
+rect 226 -466 280 -290
+rect 418 -466 472 -290
+rect 610 -466 664 -290
+rect 802 -466 856 -290
+rect 130 -692 184 -516
+rect 322 -692 376 -516
+rect 514 -692 568 -516
+rect 706 -692 760 -516
+rect 898 -692 952 -516
+<< metal2 >>
+rect 380 1360 560 1370
+rect 270 1300 380 1350
+rect 560 1300 680 1350
+rect 270 1170 680 1300
+rect 270 1030 288 1170
+rect 342 1030 604 1170
+rect 288 984 342 994
+rect 658 1030 680 1170
+rect 604 984 658 994
+rect 130 944 184 954
+rect 120 768 130 900
+rect 446 944 500 954
+rect 184 768 446 900
+rect 762 944 816 954
+rect 500 768 762 900
+rect 816 768 1030 900
+rect 120 750 1030 768
+rect 210 350 870 360
+rect 210 346 620 350
+rect 210 210 226 346
+rect 280 210 418 346
+rect 226 160 280 170
+rect 472 210 610 346
+rect 860 220 870 350
+rect 418 160 472 170
+rect 664 210 802 220
+rect 610 160 664 170
+rect 856 210 870 220
+rect 802 160 856 170
+rect 910 130 1030 750
+rect 130 120 184 130
+rect 120 -56 130 80
+rect 322 120 376 130
+rect 184 -56 322 80
+rect 514 120 568 130
+rect 376 -56 514 80
+rect 706 120 760 130
+rect 568 -56 706 80
+rect 898 120 1030 130
+rect 760 -56 898 80
+rect 952 -56 1030 120
+rect 120 -70 1030 -56
+rect 210 -280 870 -270
+rect 210 -290 620 -280
+rect 210 -420 226 -290
+rect 280 -420 418 -290
+rect 226 -476 280 -466
+rect 472 -420 610 -290
+rect 860 -410 870 -280
+rect 418 -476 472 -466
+rect 664 -420 802 -410
+rect 610 -476 664 -466
+rect 856 -420 870 -410
+rect 802 -476 856 -466
+rect 910 -506 1030 -70
+rect 130 -516 184 -506
+rect 120 -692 130 -560
+rect 322 -516 376 -506
+rect 184 -692 322 -560
+rect 514 -516 568 -506
+rect 376 -692 514 -560
+rect 706 -516 760 -506
+rect 568 -692 706 -560
+rect 898 -516 1030 -506
+rect 760 -692 898 -560
+rect 952 -692 1030 -516
+rect 120 -710 1030 -692
+<< via2 >>
+rect 620 346 860 350
+rect 620 220 664 346
+rect 664 220 802 346
+rect 802 220 856 346
+rect 856 220 860 346
+rect 620 -290 860 -280
+rect 620 -410 664 -290
+rect 664 -410 802 -290
+rect 802 -410 856 -290
+rect 856 -410 860 -290
+<< metal3 >>
+rect 610 350 870 355
+rect 610 220 620 350
+rect 860 220 870 350
+rect 610 215 870 220
+rect 620 -275 860 215
+rect 610 -280 870 -275
+rect 610 -410 620 -280
+rect 860 -410 870 -280
+rect 610 -415 870 -410
+use sky130_fd_pr__pfet_01v8_PDCJZ5  sky130_fd_pr__pfet_01v8_PDCJZ5_0
+timestamp 1654698410
+transform 1 0 473 0 1 969
+box -483 -419 483 419
+use sky130_fd_pr__pfet_01v8_U4PLGH  sky130_fd_pr__pfet_01v8_U4PLGH_0
+timestamp 1654704381
+transform 1 0 541 0 1 -173
+box -551 -737 551 737
+<< end >>
diff --git a/mag/bias/comp.out b/mag/bias/comp.out
new file mode 100644
index 0000000..65e0111
--- /dev/null
+++ b/mag/bias/comp.out
@@ -0,0 +1,43 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Flattening unmatched subcell bias_curm_p in circuit curr_mirror_channel.spice (1)(18 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit curr_mirror_channel.spice (1)(18 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit curr_mirror_channel.spice (1)(18 instances)
+Flattening unmatched subcell bias_curm_n in circuit curr_mirror_channel.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_6YE2KS in circuit curr_mirror_channel.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_QQ8PGA in circuit curr_mirror_channel.spice (1)(4 instances)
+Flattening unmatched subcell eight-mirrors-p in circuit curr_mirror_channel.spice (1)(7 instances)
+Flattening unmatched subcell bias_curm_p in circuit curr_mirror_channel.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit curr_mirror_channel.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit curr_mirror_channel.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_26U9NK in circuit curr_mirror_channel.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG in circuit curr_mirror_channel.spice (1)(1 instance)
+
+Class curr_mirror_channel.spice (1):  Merged 1528 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../../particle_detector/xsch |Circuit 2: curr_mirror_channel.spice       
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8 (80->6)            |sky130_fd_pr__nfet_01v8 (80->6)            
+sky130_fd_pr__pfet_01v8 (1480->26)         |sky130_fd_pr__pfet_01v8 (1480->26)         
+sky130_fd_pr__cap_mim_m3_2 (3)             |sky130_fd_pr__cap_mim_m3_2 (3)             
+Number of devices: 35                      |Number of devices: 35                      
+Number of nets: 32                         |Number of nets: 32                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+There were property errors.
+sky130_fd_pr__cap_mim_m3_2:C4 vs. sky130_fd_pr__cap_mim_m3_2_26U9NK_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+sky130_fd_pr__cap_mim_m3_2:C1 vs. sky130_fd_pr__cap_mim_m3_2_26U9NK_1/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+sky130_fd_pr__cap_mim_m3_2:C2 vs. sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+Cells have no pins;  pin matching not needed.
+Device classes ../../../particle_detector/xschem/current_mirror_channel.spice and curr_mirror_channel.spice are equivalent.
+Circuits match uniquely.
+Property errors were found.
+The following cells had property errors:
+ ../../../particle_detector/xschem/current_mirror_channel.spice
diff --git a/mag/bias/curr_mirror_channel.ext b/mag/bias/curr_mirror_channel.ext
new file mode 100644
index 0000000..eb1a18c
--- /dev/null
+++ b/mag/bias/curr_mirror_channel.ext
@@ -0,0 +1,2756 @@
+timestamp 1654704381
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use bias_curm_n bias_curm_n_0 1 0 60 0 1 50
+use bias_curm_n bias_curm_n_1 1 0 1150 0 1 50
+use bias_curm_p bias_curm_p_0 1 0 20 0 1 3170
+use bias_curm_p bias_curm_p_1 1 0 1110 0 1 3170
+use bias_curm_n bias_curm_n_2 1 0 2240 0 1 50
+use bias_curm_p bias_curm_p_2 1 0 2200 0 1 3170
+use bias_curm_n bias_curm_n_3 1 0 3330 0 1 50
+use bias_curm_p bias_curm_p_11 1 0 3290 0 1 3170
+use bias_curm_p bias_curm_p_15 1 0 4380 0 1 3170
+use bias_curm_p bias_curm_p_17 1 0 5470 0 1 3170
+use bias_curm_p bias_curm_p_7 1 0 20 0 1 5450
+use bias_curm_p bias_curm_p_3 1 0 2200 0 1 5460
+use bias_curm_p bias_curm_p_10 1 0 3290 0 1 5460
+use bias_curm_p bias_curm_p_14 1 0 4380 0 1 5460
+use bias_curm_p bias_curm_p_16 1 0 5470 0 1 5460
+use bias_curm_p bias_curm_p_13 1 0 4380 0 1 7750
+use bias_curm_p bias_curm_p_12 1 0 5470 0 1 7750
+use bias_curm_p bias_curm_p_9 1 0 3290 0 1 7750
+use bias_curm_p bias_curm_p_8 1 0 5470 0 1 10040
+use bias_curm_p bias_curm_p_6 1 0 3290 0 1 10040
+use bias_curm_p bias_curm_p_5 1 0 2200 0 1 10040
+use bias_curm_p bias_curm_p_4 1 0 2200 0 1 7750
+use sky130_fd_pr__cap_mim_m3_2_26U9NK sky130_fd_pr__cap_mim_m3_2_26U9NK_1 0 1 6611 -1 0 5943
+use sky130_fd_pr__cap_mim_m3_2_26U9NK sky130_fd_pr__cap_mim_m3_2_26U9NK_0 0 1 2831 -1 0 5953
+use eight-mirrors-p eight-mirrors-p_0 1 0 6550 0 1 2260
+use eight-mirrors-p eight-mirrors-p_1 1 0 8730 0 1 2260
+use eight-mirrors-p eight-mirrors-p_3 1 0 10910 0 1 2260
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 0 1 13261 -1 0 7053
+use eight-mirrors-p eight-mirrors-p_2 1 0 13090 0 1 2260
+use eight-mirrors-p eight-mirrors-p_4 1 0 17450 0 1 2260
+use eight-mirrors-p eight-mirrors-p_5 1 0 15270 0 1 2260
+use eight-mirrors-p eight-mirrors-p_6 1 0 19630 0 1 2260
+node "LVDS_Bias" 0 115.683 20660 2760 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16200 540 0 0 0 0 0 0
+node "Comp_Bias_6" 0 102.705 18470 2730 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 480 0 0 0 0 0 0
+node "Comp_Bias_5" 0 102.705 16330 2720 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 480 0 0 0 0 0 0
+node "m3_14070_2720#" 0 116.239 14070 2720 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 540 0 0 0 0 0 0
+node "Comp_Bias_3" 0 116.239 11910 2730 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 540 0 0 0 0 0 0
+node "Comp_Bias_2" 0 143.617 9720 2720 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27000 660 0 0 0 0 0 0
+node "Comp_Bias_1" 0 160.502 7560 2710 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34200 740 0 0 0 0 0 0
+node "ctl_Bias" 1 2713.91 6090 2760 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1831200 15740 0 0 0 0 0 0
+node "Bias_Analog_out" 2 3018.87 3900 2760 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2743800 23620 0 0 0 0 0 0
+node "FB_Bias_1" 0 90.8216 660 5220 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16900 520 0 0 0 0 0 0
+node "Comp_Bias_4" 3 16080.2 390 10 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 290400 4400 1438600 9440 629536 6352 17329400 53260 0 0
+node "m2_3220_480#" 0 251.875 3220 480 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67500 1200 0 0 0 0 0 0 0 0
+node "m2_4310_2460#" 0 167.701 4310 2460 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39600 800 0 0 0 0 0 0 0 0
+node "m2_6380_3850#" 1 375.722 6380 3850 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 2080 0 0 0 0 0 0 0 0
+node "m2_5290_3930#" 1 326.902 5290 3930 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 2080 0 0 0 0 0 0 0 0
+node "m2_4200_3920#" 1 311.355 4200 3920 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106800 2020 0 0 0 0 0 0 0 0
+node "m2_3110_3920#" 1 334.76 3110 3920 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106800 2020 0 0 0 0 0 0 0 0
+node "m2_6380_6260#" 1 372.796 6380 6260 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 2080 0 0 0 0 0 0 0 0
+node "m2_5290_6250#" 1 324.804 5290 6250 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 2080 0 0 0 0 0 0 0 0
+node "m2_4200_6300#" 1 312.846 4200 6300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106800 2020 0 0 0 0 0 0 0 0
+node "m2_3110_6330#" 1 334.41 3110 6330 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106800 2020 0 0 0 0 0 0 0 0
+node "m2_6380_8570#" 1 396.002 6380 8570 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 2080 0 0 0 0 0 0 0 0
+node "m2_3110_8460#" 1 346.106 3110 8460 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106800 2020 0 0 0 0 0 0 0 0
+node "m2_2990_9970#" 0 213.64 2990 9970 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85500 1440 0 0 0 0 0 0 0 0
+node "TIA_Bias" 3 2635.19 3280 9610 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 261200 4120 1926600 17040 0 0 0 0 0 0
+node "VP" 12 32953.5 160 4210 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 999300 16760 11985750 93750 1846176 23752 13388208 57052 0 0
+node "m1_3040_2070#" 1 100.055 3040 2070 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_1990_2070#" 1 97.0141 1990 2070 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_920_2070#" 1 109.371 920 2070 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "I_in" 1 674.761 640 2080 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36800 780 21000 620 171800 2420 0 0 0 0 0 0
+node "m1_19450_2380#" 1 153.209 19450 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17400 700 0 0 0 0 0 0 0 0 0 0
+node "m1_17210_2380#" 1 162.097 17210 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_15050_2380#" 1 162.097 15050 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_12880_2380#" 1 162.097 12880 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_10720_2380#" 1 162.097 10720 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_8520_2380#" 1 162.097 8520 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_6360_2380#" 1 157.921 6360 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "vm12d" 11 3979.8 1150 2380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 323200 9800 32000 1040 642400 7540 141074 1866 0 0 0 0
+node "vm4d" 2 946.911 840 2340 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 540 119700 2240 149900 2150 98832 1362 0 0 0 0
+node "m1_19410_4660#" 1 153.209 19410 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17400 700 0 0 0 0 0 0 0 0 0 0
+node "m1_17260_4660#" 1 162.097 17260 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_15040_4660#" 1 162.097 15040 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_12880_4660#" 1 162.097 12880 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_10680_4660#" 1 162.097 10680 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_8520_4660#" 1 162.097 8520 4660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_6360_4670#" 1 149.034 6360 4670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17400 700 0 0 0 0 0 0 0 0 0 0
+node "m1_5270_4670#" 2 303.284 5270 4670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37100 1460 0 0 0 0 0 0 0 0 0 0
+node "m1_4120_4670#" 2 289.874 4120 4670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36600 1440 0 0 0 0 0 0 0 0 0 0
+node "m1_2240_4370#" 1 165.539 2240 4370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 820 0 0 0 0 0 0 0 0 0 0
+node "m1_60_4370#" 1 173.559 60 4370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17500 800 0 0 0 0 0 0 0 0 0 0
+node "m1_3070_4670#" 2 290.087 3070 4670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36600 1440 0 0 0 0 0 0 0 0 0 0
+node "m1_19420_6940#" 1 153.209 19420 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17400 700 0 0 0 0 0 0 0 0 0 0
+node "m1_17260_6940#" 1 148.766 17260 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_15060_6940#" 1 148.766 15060 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_12900_6940#" 1 148.766 12900 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_10700_6940#" 1 148.766 10700 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_8520_6940#" 1 148.766 8520 6940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_6370_6960#" 1 144.944 6370 6960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_4140_6960#" 2 294.507 4140 6960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37100 1460 0 0 0 0 0 0 0 0 0 0
+node "m1_3080_6960#" 2 289.967 3080 6960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36600 1440 0 0 0 0 0 0 0 0 0 0
+node "m1_5240_6960#" 2 299.719 5240 6960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36600 1440 0 0 0 0 0 0 0 0 0 0
+node "m1_2240_6670#" 1 165.625 2240 6670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 820 0 0 0 0 0 0 0 0 0 0
+node "m1_19420_9220#" 1 153.209 19420 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17400 700 0 0 0 0 0 0 0 0 0 0
+node "m1_17260_9220#" 1 157.653 17260 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_15070_9220#" 1 157.653 15070 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_12900_9220#" 1 157.653 12900 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_10690_9220#" 1 157.653 10690 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_8520_9220#" 1 157.653 8520 9220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_6340_9250#" 1 153.918 6340 9250 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_5510_8960#" 1 174.203 5510 8960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 820 0 0 0 0 0 0 0 0 0 0
+node "m1_3040_9250#" 1 298.652 3040 9250 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36100 1420 0 0 0 0 0 0 0 0 0 0
+node "m1_2240_8950#" 1 165.277 2240 8950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 820 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m2_3220_480#" "Comp_Bias_4" 114.738
+cap "m1_5270_4670#" "m2_5290_3930#" 114.703
+cap "m1_1990_2070#" "vm12d" 41.1577
+cap "m2_5290_6250#" "m2_5290_3930#" 3.35143
+cap "m2_6380_6260#" "m1_6370_6960#" 118.428
+cap "VP" "m1_4140_6960#" 14.0435
+cap "m1_3040_9250#" "VP" 71.1092
+cap "Bias_Analog_out" "ctl_Bias" 95.2094
+cap "m1_5240_6960#" "m1_4140_6960#" 12.5717
+cap "VP" "m2_3110_3920#" 52.3062
+cap "m2_2990_9970#" "VP" 182.796
+cap "m2_4200_6300#" "m2_4200_3920#" 3.14899
+cap "VP" "m1_5240_6960#" 14.2174
+cap "m1_3040_2070#" "m1_1990_2070#" 2.42763
+cap "m1_3040_9250#" "m2_3110_8460#" 122.153
+cap "m1_920_2070#" "vm4d" 20.1273
+cap "m2_3110_8460#" "VP" 55.2542
+cap "Comp_Bias_1" "ctl_Bias" 5.93984
+cap "m1_4120_4670#" "m1_3070_4670#" 13.4981
+cap "I_in" "vm4d" 181.999
+cap "m1_4120_4670#" "m1_5270_4670#" 13.4468
+cap "vm12d" "vm4d" 144.605
+cap "m2_2990_9970#" "m2_3110_8460#" 7.56774
+cap "m1_4140_6960#" "m1_3080_6960#" 13.8071
+cap "VP" "m2_6380_3850#" 14.858
+cap "m2_4200_6300#" "m1_4140_6960#" 114.703
+cap "VP" "m1_3080_6960#" 14.1074
+cap "m1_3040_9250#" "m1_2240_8950#" 13.2414
+cap "VP" "m2_4200_6300#" 59.1771
+cap "VP" "m1_3070_4670#" 10.8603
+cap "VP" "m1_5270_4670#" 23.5428
+cap "VP" "m2_6380_8570#" 14.858
+cap "VP" "m2_5290_6250#" 55.8389
+cap "m1_920_2070#" "I_in" 29.52
+cap "m2_3110_3920#" "m1_3070_4670#" 118.428
+cap "m1_920_2070#" "vm12d" 7.09615
+cap "m1_6360_4670#" "m2_6380_3850#" 118.428
+cap "vm12d" "Bias_Analog_out" 20.0714
+cap "VP" "ctl_Bias" 1712.94
+cap "I_in" "vm12d" 1.65294
+cap "TIA_Bias" "Bias_Analog_out" 96.3429
+cap "m1_5240_6960#" "m2_5290_6250#" 114.703
+cap "TIA_Bias" "vm12d" 42.5187
+cap "m1_6360_4670#" "m1_5270_4670#" 3.03288
+cap "m1_6340_9250#" "m2_6380_8570#" 122.153
+cap "VP" "m2_6380_6260#" 14.858
+cap "m3_14070_2720#" "Comp_Bias_4" 84.0015
+cap "m2_4200_3920#" "m2_5290_3930#" 27.8134
+cap "m1_6340_9250#" "m1_5510_8960#" 2.83846
+cap "m1_3040_2070#" "vm12d" 65.6961
+cap "VP" "FB_Bias_1" 37.9532
+cap "m2_4200_3920#" "m2_4310_2460#" 0.305469
+cap "m1_4120_4670#" "Bias_Analog_out" 16.9296
+cap "m2_4200_6300#" "m2_5290_6250#" 27.4103
+cap "m1_6370_6960#" "m1_5240_6960#" 2.87532
+cap "m1_3080_6960#" "m1_2240_6670#" 13.092
+cap "m1_4140_6960#" "Bias_Analog_out" 10.6184
+cap "VP" "m2_3110_6330#" 52.3062
+cap "m2_6380_6260#" "m2_6380_3850#" 3.14899
+cap "VP" "Bias_Analog_out" 3494.95
+cap "m1_10720_2380#" "Comp_Bias_4" 48.8822
+cap "m1_2240_4370#" "m1_3070_4670#" 13.1279
+cap "VP" "m2_5290_3930#" 55.8389
+cap "VP" "m2_4310_2460#" 1.00256
+cap "m2_3110_3920#" "m2_3110_6330#" 3.08684
+cap "m1_4120_4670#" "m2_4200_3920#" 114.703
+cap "m1_3040_9250#" "TIA_Bias" 17.591
+cap "VP" "TIA_Bias" 3769.94
+cap "m1_5240_6960#" "Bias_Analog_out" 10.8574
+cap "m2_6380_6260#" "m2_6380_8570#" 3.37554
+cap "m2_6380_6260#" "m2_5290_6250#" 29.0227
+cap "m2_3110_8460#" "m2_3110_6330#" 3.78387
+cap "m1_6360_2380#" "vm12d" 3.03288
+cap "m2_2990_9970#" "TIA_Bias" 233.814
+cap "I_in" "Comp_Bias_4" 8.94169
+cap "vm12d" "Comp_Bias_4" 46.0931
+cap "VP" "m2_4200_3920#" 59.1771
+cap "m2_5290_3930#" "m2_6380_3850#" 26.201
+cap "m2_3110_6330#" "m1_3080_6960#" 118.428
+cap "m2_3110_3920#" "m2_4200_3920#" 28.2165
+cap "m2_3110_6330#" "m2_4200_6300#" 27.0072
+cap "m1_920_2070#" "m1_1990_2070#" 2.33544
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 80.5108
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_0/a_132_882#" 561.604
+cap "bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 1.07603
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 26.8564
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 103.533
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 236.068
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 0.992251
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_p_0/w_n10_1380#" 3.61676
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 1.23768
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 77.85
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 52.9161
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/a_132_882#" 15.8845
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_2/m1_80_970#" 0.992251
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 28.5655
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 214.589
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/m1_176_1194#" 3.7241
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 0.0311802
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 47.2397
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/m1_176_1194#" 16.5431
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 9.34437
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_2/m1_80_970#" -13.908
+cap "bias_curm_n_0/a_132_882#" "bias_curm_p_1/a_172_n788#" 6.37122
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/m1_176_1194#" -0.496888
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_2/m1_80_970#" 50.6243
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 29.3212
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_0/li_330_n30#" -1199.27
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_2/m1_80_970#" 95.589
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 21.7741
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_p_0/w_n10_1380#" 2.11488
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/a_132_882#" 2.54983
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_2/m1_80_970#" 0.0311802
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_1/a_132_882#" 197.056
+cap "bias_curm_n_1/a_132_882#" "bias_curm_n_1/li_330_n30#" 908.124
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_2/m1_80_970#" 28.1497
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/li_330_n30#" 18.9256
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_11/m1_120_n692#" 0.992251
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_1/li_330_n30#" 447.104
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 3.06965
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 16.66
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/m1_176_1194#" 3.7241
+cap "bias_curm_n_1/li_330_n30#" "bias_curm_p_1/w_n10_1380#" 2.11488
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_2/a_132_882#" 30.7235
+cap "bias_curm_n_2/li_330_n30#" "bias_curm_p_2/w_n10_1380#" 0.612994
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_11/m1_120_n692#" 0.151488
+cap "bias_curm_n_2/a_132_882#" "bias_curm_n_2/a_132_882#" 0.275888
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_11/a_172_n788#" 0.218159
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_2/li_330_n30#" 619.221
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 50.4846
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/m1_176_1194#" -11.8843
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" 1.39338
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_0/a_132_882#" 64.1098
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.39338
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/li_380_1300#" 0.556404
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 77.961
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/a_172_n788#" -81.2581
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_0/a_132_882#" 25.9884
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 59.7802
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 641.759
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 19.6646
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_0/a_132_882#" 101.088
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 190.054
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_n_1/m1_176_1194#" 74.3593
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_n_0/a_132_882#" 101.747
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 24.87
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/a_172_n788#" 83.2841
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 16.6381
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_p_0/w_172_n788#" 424.667
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_0/li_380_1300#" 0.896155
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/a_172_n788#" 124.453
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 3.88648
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 7.95813
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -137.389
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 155.7
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -5.04058
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 34.7586
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/a_132_882#" 166.841
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_0/li_330_n30#" 26.5862
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/m1_176_1194#" -727.414
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 11.2225
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_2/m1_80_970#" 154.522
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/a_172_n788#" -75.8975
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_0/li_330_n30#" -102.424
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" 39.8757
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/m1_120_n692#" 21.5068
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_p_1/a_172_n788#" 6.51667
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 4.44759
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_n_1/m1_176_1194#" -77.9486
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 386.818
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.754
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_2/m1_120_n692#" 85.7426
+cap "bias_curm_n_0/a_132_882#" "bias_curm_p_1/a_172_n788#" 176.163
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/m1_176_1194#" 1.34828
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_n_0/li_330_n30#" 34.7586
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -102.384
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/a_172_n788#" 47.1343
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/a_172_n788#" -7.40383
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_120_n692#" 54.0684
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 7.73981
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_p_1/a_172_n788#" 38.4735
+cap "bias_curm_n_0/a_132_882#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 126.349
+cap "bias_curm_p_0/w_172_n788#" "bias_curm_n_1/m1_176_1194#" -466.175
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n187_n200#" 0.896155
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_2/m1_120_n692#" 262.251
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_2/li_380_1300#" 0.691809
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_1/m1_176_1194#" 0.613843
+cap "bias_curm_n_0/li_330_n30#" "bias_curm_p_0/w_172_n788#" 446.667
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_2/m1_120_n692#" 3.88648
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_2/m1_80_970#" 62.6754
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 17.1871
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/a_172_n788#" 8.51205
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 244.141
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.930671
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_2/m1_80_970#" 66.7953
+cap "bias_curm_n_1/li_330_n30#" "bias_curm_p_1/a_172_n788#" -402.532
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_11/m1_120_n692#" -99.5545
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/m1_120_n692#" 173.733
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/m1_216_n466#" -1.16659
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 0.651667
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_n_2/m1_80_970#" 3.88648
+cap "bias_curm_n_1/li_330_n30#" "bias_curm_n_2/m1_80_970#" 61.3448
+cap "bias_curm_p_1/w_172_n788#" "bias_curm_n_1/m1_176_1194#" -743.695
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_n_2/m1_80_970#" 7.73981
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" 137.398
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "bias_curm_n_2/m1_80_970#" 10.524
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 52.5766
+cap "bias_curm_p_1/w_172_n788#" "bias_curm_p_1/a_172_n788#" -488.047
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_120_n692#" 3.63466
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 2.9041
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_11/m1_216_n466#" -16.3385
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/m1_176_1194#" -616.161
+cap "bias_curm_n_1/li_330_n30#" "bias_curm_p_1/w_172_n788#" 446.667
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_11/li_380_1300#" 0.560026
+cap "bias_curm_p_1/w_172_n788#" "bias_curm_p_11/m1_120_n692#" -712.535
+cap "bias_curm_p_1/w_172_n788#" "bias_curm_p_2/m1_120_n692#" -57.8567
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_n_1/m1_176_1194#" 342.221
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/a_132_882#" 505.519
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_11/m1_216_n466#" 0.370797
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_216_n466#" 20.0912
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_n_1/m1_176_1194#" -458.297
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" 84.9962
+cap "bias_curm_n_1/li_330_n30#" "bias_curm_n_1/a_132_882#" -107.75
+cap "bias_curm_n_1/a_132_882#" "bias_curm_n_2/m1_80_970#" 165.871
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 3.16079
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_2/m1_216_n466#" -1.00357
+cap "bias_curm_n_2/a_132_882#" "bias_curm_n_2/a_132_882#" 0.275888
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_17/m1_120_n692#" 26.1494
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_11/m1_120_n692#" 10.4598
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_15/li_380_1300#" 0.436664
+cap "bias_curm_p_11/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 293.356
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_11/m1_120_n692#" 7.44834
+cap "bias_curm_n_2/li_330_n30#" "bias_curm_n_2/m1_80_970#" -2.93586
+cap "bias_curm_p_2/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 280.099
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 368.633
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/m1_216_n466#" 34.2447
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_11/a_172_n788#" 162.541
+cap "bias_curm_n_2/a_132_882#" "bias_curm_p_11/a_172_n788#" 2.83846
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/a_172_n788#" 958.312
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_15/li_380_1300#" -6.22071
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_120_n692#" 29.0032
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_17/m1_216_n466#" 0.201141
+cap "bias_curm_n_2/a_132_882#" "bias_curm_n_2/m1_80_970#" 26.4184
+cap "bias_curm_n_2/m1_80_970#" "bias_curm_p_11/a_172_n788#" 6.75994
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 657.631
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_11/m1_120_n692#" 98.588
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/m1_120_n692#" -55.3917
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_11/m1_120_n692#" 601.412
+cap "bias_curm_n_2/li_330_n30#" "bias_curm_p_2/w_172_n788#" 55.3333
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_15/a_172_n788#" 8.11811
+cap "bias_curm_p_15/m1_216_n466#" "bias_curm_p_17/m1_216_n466#" 0.201141
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 29.5356
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_11/m1_120_n692#" 12.6428
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_15/a_172_n788#" -1569
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/m1_120_n692#" 53.2482
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_15/a_172_n788#" 640.696
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_15/a_172_n788#" 145.119
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_15/a_172_n788#" 175.198
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_15/a_172_n788#" 1.58218
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_17/li_380_1300#" 0.810261
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_17/m1_120_n692#" 17.1871
+cap "bias_curm_p_15/w_172_n788#" "bias_curm_p_17/m1_120_n692#" -87.4378
+cap "bias_curm_p_17/m1_216_n466#" "eight-mirrors-p_0/m3_590_440#" 0.666804
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_15/w_172_n788#" 2.80862
+cap "bias_curm_p_15/w_172_n788#" "bias_curm_p_15/a_172_n788#" -5.97918
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_1/m3_590_440#" 1.79362
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.65714
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/w_172_n788#" 98.1164
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/m3_590_440#" 5.18493
+cap "bias_curm_p_17/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 30.9229
+cap "bias_curm_p_17/w_172_n788#" "eight-mirrors-p_0/m3_590_440#" 5.81341
+cap "bias_curm_p_17/a_172_n788#" "bias_curm_p_17/w_172_n788#" 1534.22
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 299.199
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1020.27
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/m3_590_440#" 3710.5
+cap "bias_curm_p_17/m1_216_n466#" "eight-mirrors-p_0/m3_590_440#" 0.666804
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.77663
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_1/m3_590_440#" 7.025
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" -13.8845
+cap "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 54.2832
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 20.0912
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" -12.0922
+cap "eight-mirrors-p_1/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -128.064
+cap "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 392.264
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 118.844
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" -64.097
+cap "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" 2.80862
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_3/m3_590_440#" 3.5125
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 50.4846
+cap "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -210.909
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" -7.60497
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 97.0571
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 14.8967
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -32.0836
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -28.116
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" 16.4809
+cap "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 2528.76
+cap "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -64.097
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" -12.0922
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" 2.80862
+cap "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 9.61168
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 119.018
+cap "eight-mirrors-p_1/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 58.9337
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_n518#" 1.3381
+cap "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -749.136
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_2/m3_590_440#" 1.53273
+cap "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 116.893
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 22.3838
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.78732
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -208.2
+cap "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.154382
+cap "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" 352.529
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.43886
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1089.65
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.61573
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" 18.263
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 3.5125
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" 16.1266
+cap "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -312.429
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" 8.90515
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.80862
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 52.5766
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" 356.224
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_3/m3_590_440#" -12.0922
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" 118.914
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3.74652
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" -13.8845
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -64.097
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_3/m3_590_440#" 7.025
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 20.0912
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_2/m3_590_440#" 3.09252
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 119.018
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 28.6366
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" 29.0717
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_2/m3_590_440#" 7.25601
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" 2.08098
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -64.097
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 115.719
+cap "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 127.972
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" 447.457
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 74.4097
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/m3_590_440#" 126.037
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" 26.1494
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 133.562
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_n518#" "eight-mirrors-p_2/m3_590_440#" 1.53273
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_5/m3_590_440#" 3.5125
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 7.44834
+cap "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 31.7356
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/m3_590_440#" 12.6428
+cap "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -23.3408
+cap "eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.104608
+cap "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_5/m3_590_440#" 5.19857
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_5/m3_590_440#" 3.5125
+cap "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 112.179
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.3381
+cap "eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_5/m3_590_440#" -3.00545
+cap "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" 364.7
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.70972
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 29.5356
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 1224.6
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 54.1958
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_5/m3_590_440#" -12.0922
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" -64.097
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_5/m3_590_440#" 7.025
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" -13.8845
+cap "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.80862
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" 118.914
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 18.8211
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 28.6366
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 84.8891
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m3_590_440#" 1.79362
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/m3_590_440#" 3.5125
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 3.51124
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 34.759
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/m3_590_440#" 1.27007
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 7.44834
+cap "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_4/m3_590_440#" 5.81341
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 22.75
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" 20.3902
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 414.799
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" -90.2464
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/m3_590_440#" -12.0922
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 26.1494
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 29.5356
+cap "eight-mirrors-p_4/m1_910_120#" "eight-mirrors-p_6/m3_590_440#" -13.8845
+cap "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.80862
+cap "eight-mirrors-p_4/m1_910_120#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 34.1291
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" 12.6428
+cap "eight-mirrors-p_4/m1_910_120#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 2770.03
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/m3_590_440#" 3.5125
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 1.08077
+cap "eight-mirrors-p_6/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 919.479
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 0.118876
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" 0.974344
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" 1.79339
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -125.454
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_n_1/m1_176_1194#" 183.499
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -47.5422
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_0/a_132_882#" 0.591574
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_1/m1_176_1194#" 56.6694
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.39338
+cap "bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -172.057
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 236.933
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/m1_216_n466#" 0.0303454
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.291391
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.72
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_7/m1_216_n466#" 9.78956
+cap "bias_curm_p_0/li_380_1300#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -18.235
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 150.31
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.2347
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 101.389
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_n_0/a_132_882#" 39.9855
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_1/m1_176_1194#" 3.13412
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/a_172_n788#" 29.1127
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/a_172_n788#" 174.853
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_n_1/m1_176_1194#" 68.9362
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/m1_176_1194#" -294.678
+cap "bias_curm_p_2/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -7.24328
+cap "bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "bias_curm_p_2/m1_120_n692#" 0.974344
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 7.07922
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 275.735
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" 94.7016
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.0843
+cap "bias_curm_p_2/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -20.4712
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.183856
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 9.61429
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 105.155
+cap "bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" "bias_curm_p_0/li_380_1300#" 1.19559
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_2/m1_120_n692#" 159.031
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/a_172_n788#" 273.109
+cap "bias_curm_p_0/li_380_1300#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -933.549
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_n_1/m1_176_1194#" 138.972
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -115.654
+cap "bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -117.888
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 23.4352
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -349.903
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_0/li_380_1300#" 4.44089e-16
+cap "bias_curm_n_1/m1_176_1194#" "bias_curm_p_1/a_172_n788#" -665.181
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 159.291
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/a_172_n788#" -38.6653
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_2/m1_120_n692#" 273.972
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -11.2689
+cap "bias_curm_n_0/a_132_882#" "bias_curm_p_1/a_172_n788#" 40.4652
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_1/a_172_n788#" 237.414
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_216_n466#" 47.6773
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/a_132_882#" 45.4052
+cap "bias_curm_n_1/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" "bias_curm_p_1/w_172_n788#" 1.19559
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/m1_120_n692#" -347.866
+cap "bias_curm_p_1/w_172_n788#" "bias_curm_n_1/m1_176_1194#" -2745.71
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_1/a_172_n788#" 25.6555
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/a_172_n788#" 252.09
+cap "bias_curm_n_3/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "bias_curm_p_11/m1_120_n692#" 0.974344
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_n_1/m1_176_1194#" 192.426
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_1/a_172_n788#" 201.654
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" -2124.4
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_1/w_172_n788#" 23.472
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_n_1/m1_176_1194#" -1231.78
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_11/m1_216_n466#" -2435.45
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_1/a_172_n788#" -411.45
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/w_172_n788#" 332.659
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.63154
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_1/w_172_n788#" -60.1397
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_n_1/m1_176_1194#" 9.38788
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_n_1/m1_176_1194#" 928.18
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 1.20507
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 17.6805
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_1/w_172_n788#" -238.257
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_1/w_172_n788#" -364.68
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 107.673
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.824759
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_2/m1_120_n692#" 226.204
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_n_1/m1_176_1194#" -11708.9
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_11/m1_216_n466#" 227.783
+cap "bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "bias_curm_p_2/m1_120_n692#" 0.183856
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_11/m1_120_n692#" -25.6055
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_11/m1_216_n466#" 0.189429
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 2.78641
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_1/w_172_n788#" 66.5583
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/m1_216_n466#" -34.1265
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_17/m1_120_n692#" 66.3059
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 2160.68
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_11/m1_216_n466#" -2.25691
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_120_n692#" 67.974
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 114.776
+cap "bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n515_n683#" "bias_curm_p_2/w_172_n788#" 0.597796
+cap "bias_curm_p_2/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 362.678
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 202.09
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_11/a_172_n788#" 2.58671
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -108.604
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_17/m1_120_n692#" 182.404
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" "bias_curm_p_11/a_172_n788#" 0.631849
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 229.29
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_17/m1_216_n466#" 0.187201
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_216_n466#" 21.5197
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 17.7565
+cap "bias_curm_p_2/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -25.7295
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/m1_216_n466#" 344.561
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/m1_120_n692#" -20.2244
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_11/m1_216_n466#" 562.591
+cap "bias_curm_p_2/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 986.961
+cap "bias_curm_p_11/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 1038.15
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 558.557
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_17/m1_216_n466#" -146.069
+cap "bias_curm_n_3/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_109#" "bias_curm_p_11/m1_120_n692#" 0.30145
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -262.196
+cap "bias_curm_p_2/w_172_n788#" "bias_curm_p_11/a_172_n788#" -69.5266
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_11/m1_216_n466#" 740.817
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_11/a_172_n788#" 515.79
+cap "bias_curm_p_15/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -5174.29
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_11/a_172_n788#" 1.60435
+cap "bias_curm_p_17/m1_216_n466#" "eight-mirrors-p_0/m3_590_440#" 46.6137
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -254.164
+cap "bias_curm_p_15/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.79187
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_17/m1_216_n466#" 1364.99
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_17/m1_120_n692#" 206.455
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_15/w_172_n788#" -2458.14
+cap "bias_curm_p_15/w_172_n788#" "bias_curm_p_17/m1_120_n692#" -149.899
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_216_n466#" 26.1576
+cap "bias_curm_p_15/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -402.881
+cap "bias_curm_p_15/w_172_n788#" "bias_curm_p_11/m1_120_n692#" 3.93856
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 0.526245
+cap "bias_curm_p_15/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 36.4516
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_11/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 0.602941
+cap "bias_curm_p_15/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 51.5949
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/m1_120_n692#" 113.053
+cap "bias_curm_p_15/a_172_n788#" "eight-mirrors-p_0/m3_590_440#" -3490.61
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_17/m1_120_n692#" 45.0843
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -33.5078
+cap "eight-mirrors-p_0/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -710.632
+cap "bias_curm_p_15/w_172_n788#" "bias_curm_p_17/m1_216_n466#" 191.866
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_17/m1_120_n692#" 595.869
+cap "bias_curm_p_15/m1_216_n466#" "bias_curm_p_17/m1_216_n466#" 0.187201
+cap "bias_curm_p_15/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -257.049
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_120_n692#" 61.9605
+cap "bias_curm_p_17/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 4289.44
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 22.8623
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/m3_590_440#" 10863.8
+cap "bias_curm_p_17/a_172_n788#" "bias_curm_p_17/w_172_n788#" 3061.61
+cap "bias_curm_p_17/m1_216_n466#" "eight-mirrors-p_0/m3_590_440#" 46.6137
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 1274.73
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/m3_590_440#" -30.7793
+cap "bias_curm_p_17/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 50.826
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/m3_590_440#" 6.0142
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/m3_590_440#" 35.9932
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_17/w_172_n788#" 1.35437
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/w_172_n788#" 129.207
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 9.38444
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1691.93
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 290.092
+cap "eight-mirrors-p_0/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 2709.93
+cap "bias_curm_p_17/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 1964.3
+cap "bias_curm_p_17/w_172_n788#" "eight-mirrors-p_0/m3_590_440#" 118.914
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/m3_590_440#" 35.2745
+cap "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/m3_590_440#" -31.5031
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" -209.83
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" -61.4208
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_0/m3_590_440#" -29.8618
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" 132.908
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -149.252
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.34994
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.22794
+cap "eight-mirrors-p_0/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" 1.69008
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 128.525
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 0.631849
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/m3_590_440#" -128.064
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_1/m3_590_440#" -92.8396
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/m3_590_440#" -17.3789
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_1/m3_590_440#" 98.35
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/m3_590_440#" 47.6773
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_63_n518#" 0.669048
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" 43.0394
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 208.97
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 1.69008
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" -13.3808
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -153.191
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -101.664
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -621.62
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/m3_590_440#" -38.0248
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 110.494
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 0.631849
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" -61.5027
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.79187
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" 133.249
+cap "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" -236.707
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -178.219
+cap "eight-mirrors-p_1/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 984.985
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 325.348
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_3/m3_590_440#" 49.175
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/m3_590_440#" -2129.04
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" -5.78073
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 49.175
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 26.0729
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 7.06371
+cap "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.93856
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" 171.493
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" 9.7698
+cap "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 25.5063
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 45.9614
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" 234.692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -486.126
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" 25.2864
+cap "eight-mirrors-p_1/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" 0.627059
+cap "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1510.72
+cap "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" 438.308
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_2/m3_590_440#" 0.766364
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" -9.11927
+cap "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_3/m3_590_440#" 24.8377
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" -2743.89
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.404944
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -31.428
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 113.316
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" -29.8618
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" -61.2206
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -30.6803
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_2/m3_590_440#" 98.35
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" -250.779
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -149.252
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 132.978
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_2/m3_590_440#" -17.3789
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/m3_590_440#" -95.7396
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 47.6773
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 66.4936
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 641.792
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1228.55
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1147.6
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 531.986
+cap "eight-mirrors-p_2/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 641.792
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_2/m3_590_440#" -22.6058
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 0.631849
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1869.64
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" 2.59517
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 133.249
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_2/m3_590_440#" 49.175
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 67.2092
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" -81.9515
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 51.4735
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 374.107
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n129_n518#" "eight-mirrors-p_2/m3_590_440#" 0.766364
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" 47.1236
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" 3065.61
+cap "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -153.191
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 15.8748
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 21.5197
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/m3_590_440#" -21.0152
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/m3_590_440#" -0.822754
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/m3_590_440#" 878.978
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 37.0855
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 227.627
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/m3_590_440#" 26.1576
+cap "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -57.7014
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_5/m3_590_440#" 641.792
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" 1696.56
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/m3_590_440#" 0.669048
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.90272
+cap "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 0.606908
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" 166.72
+cap "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_5/m3_590_440#" -12.1804
+cap "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" 372.3
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" 3.93856
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_5/m3_590_440#" 49.175
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" 5283.47
+cap "eight-mirrors-p_2/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" 1.61606
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -31.5031
+cap "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.34994
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 67.4022
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 249.38
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" 253.522
+cap "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_5/m3_590_440#" -42.5678
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_4/m3_590_440#" 98.35
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" -8.67496
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" -149.252
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" -376.549
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 114.997
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -165.749
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 133.073
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" -17.3789
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" -29.8618
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" -30.6803
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" 46.5433
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/m3_590_440#" -116.478
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -61.0538
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/m3_590_440#" 1.63527
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -35.4361
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 43.2939
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 67.2092
+cap "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 58.4981
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/a_172_n788#" 2.75608
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 0.912992
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 179.061
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_6/m3_590_440#" 49.175
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 18.5488
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 241.687
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m3_590_440#" 35.2745
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" 21.5197
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/m3_590_440#" 330.126
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 90.8342
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 67.4314
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 46.3377
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" -204.664
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 65.8174
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" -31.5031
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 0.139773
+cap "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 1.69008
+cap "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_6/m3_590_440#" -17.3789
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 0.631849
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" -24.1939
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -94.7439
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -11.8617
+cap "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -227.82
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" 26.1576
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 67.4022
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_6/m3_590_440#" 49.175
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 55.4121
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 0.118876
+cap "eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 0.631184
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 0.285197
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 0.540385
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_2/a_172_n788#" 1.10185
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 8.88663
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 10.0644
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 8.59711
+cap "bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -44.419
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 641.344
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_1/a_172_n788#" 6.40572
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.51899
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.45806
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.81574
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_2/a_172_n788#" 2.53511
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_2/a_172_n788#" 0.0255603
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 16.1292
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_0/a_172_n788#" 578.437
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -12.7154
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/m1_216_n466#" 339.751
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -33.1407
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_0/m1_216_n466#" 2.22561
+cap "bias_curm_p_1/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -14.728
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_0/m1_216_n466#" 4.83841
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 157.84
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/a_172_n788#" 1.05287
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 9.25789
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_0/a_172_n788#" -18.6583
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_1/a_172_n788#" 11.7284
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 2.95189
+cap "bias_curm_p_0/li_380_1300#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 73.1639
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 2.20411
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.70419
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/li_380_1300#" 6.83386
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/a_172_n788#" 82.2444
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_1/a_172_n788#" 0.492
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_2/a_172_n788#" 0.0136263
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_0/li_380_1300#" 798.466
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/m1_120_n692#" -40.9424
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 3.6501
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 11.4984
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_1/a_172_n788#" -20.8126
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_2/a_172_n788#" 2.53511
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/li_380_1300#" 6.45806
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_2/a_172_n788#" -21.2104
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_0/li_380_1300#" 1518.69
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_0/li_380_1300#" 8.59607
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_120_n692#" 7.5878
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/a_172_n788#" -116.916
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/m1_216_n466#" 17.9684
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_2/m1_120_n692#" 113.774
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/a_172_n788#" 5.6961
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_0/li_380_1300#" 2.0729
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_0/li_380_1300#" 153.944
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 8.48297
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 8.86118
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/m1_120_n692#" 49.2424
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_0/li_380_1300#" -8.48717
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_1/a_172_n788#" -241.271
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_2/m1_120_n692#" 886.029
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_0/li_380_1300#" 14.1653
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/m1_216_n466#" -7.24328
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 16.1292
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 103.112
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_1/w_172_n260#" -50.9786
+cap "bias_curm_p_2/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -58.053
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_1/w_172_n260#" -2781.68
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/m1_120_n692#" -72.174
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_2/a_172_n788#" -16.1355
+cap "bias_curm_p_2/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -269.984
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_1/w_172_n260#" 161.779
+cap "bias_curm_p_1/w_172_n260#" "bias_curm_p_2/m1_120_n692#" 124.403
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/m1_120_n692#" -1281.25
+cap "bias_curm_p_1/a_172_n788#" "bias_curm_p_2/a_172_n788#" 0.956245
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_11/m1_120_n692#" 132.682
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_2/m1_120_n692#" 137.602
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_11/m1_120_n692#" 13.1893
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/a_172_n788#" -334.187
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "vm12d" 49.6992
+cap "bias_curm_p_16/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_11/m1_120_n692#" 0.930671
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_1/w_172_n260#" 334.56
+cap "bias_curm_p_11/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 912.168
+cap "bias_curm_p_1/w_172_n260#" "bias_curm_p_2/a_172_n788#" 442.985
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/a_172_n788#" -11342.3
+cap "bias_curm_p_16/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_11/m1_120_n692#" 0.824759
+cap "bias_curm_p_11/m1_216_n466#" "bias_curm_p_2/m1_120_n692#" 34.5726
+cap "bias_curm_p_1/w_172_n260#" "bias_curm_p_11/m1_120_n692#" 679.115
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_2/a_172_n788#" 38.5048
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_11/m1_120_n692#" 75.6785
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_2/a_172_n788#" 184.843
+cap "bias_curm_p_11/w_172_n260#" "bias_curm_p_11/m1_216_n466#" 288.533
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 10.9733
+cap "bias_curm_p_11/w_172_n260#" "vm12d" 104.339
+cap "bias_curm_p_11/m1_120_n692#" "vm12d" 234.67
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_11/m1_216_n466#" 152.98
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_3/a_172_n788#" 1.29336
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_17/m1_120_n692#" 76.9987
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "vm12d" 142.414
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_17/m1_216_n466#" -146.069
+cap "bias_curm_p_11/w_172_n260#" "bias_curm_p_11/a_172_n788#" 1444.12
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 790.452
+cap "bias_curm_p_11/w_172_n260#" "bias_curm_p_17/m1_120_n692#" 55.2971
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_11/m1_120_n692#" 393.846
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_120_n692#" 62.8117
+cap "vm12d" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -164.959
+cap "bias_curm_p_11/w_172_n260#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 314.365
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 2148.99
+cap "bias_curm_p_11/m1_120_n692#" "bias_curm_p_17/m1_216_n466#" 14.6891
+cap "bias_curm_p_11/w_172_n260#" "bias_curm_p_11/m1_120_n692#" 848.893
+cap "bias_curm_p_11/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.164732
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 136.913
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -155.53
+cap "bias_curm_p_11/m1_216_n466#" "vm12d" 1047.76
+cap "bias_curm_p_11/w_172_n260#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 760.102
+cap "bias_curm_p_11/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.164732
+cap "bias_curm_p_11/w_172_n260#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.296873
+cap "bias_curm_p_11/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 652.696
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -303.229
+cap "bias_curm_p_11/w_172_n260#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.296873
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_11/m1_216_n466#" 1.29579
+cap "bias_curm_p_11/a_172_n788#" "vm12d" -273.481
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 163.966
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 0.631849
+cap "bias_curm_p_15/w_172_n260#" "bias_curm_p_17/m1_216_n466#" 521.76
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_11/m1_120_n692#" 58.3365
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_15/a_172_n788#" 8.14407
+cap "vm12d" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 12.8804
+cap "bias_curm_p_15/w_172_n260#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -59.9629
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_17/m1_216_n466#" 124.699
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "eight-mirrors-p_0/m3_590_440#" -20.1126
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "bias_curm_p_15/a_172_n788#" -20.1709
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -67.0157
+cap "bias_curm_p_15/w_172_n260#" "vm12d" -1900.13
+cap "vm12d" "eight-mirrors-p_0/m3_590_440#" -880.729
+cap "bias_curm_p_15/w_172_n260#" "eight-mirrors-p_0/m3_590_440#" -33.5843
+cap "vm12d" "bias_curm_p_15/a_172_n788#" -8618.57
+cap "bias_curm_p_15/w_172_n260#" "bias_curm_p_15/a_172_n788#" 1530.5
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "vm12d" -75.9253
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_15/w_172_n260#" -164.605
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_11/m1_120_n692#" 19.8836
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_15/a_172_n788#" -22.8149
+cap "vm12d" "bias_curm_p_17/m1_120_n692#" 322.71
+cap "bias_curm_p_15/w_172_n260#" "bias_curm_p_17/m1_120_n692#" 635.609
+cap "bias_curm_p_15/w_172_n260#" "bias_curm_p_15/m1_216_n466#" 0.330588
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/m3_590_440#" 31.6685
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_15/a_172_n788#" 162.021
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/m1_120_n692#" 111.169
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_15/a_172_n788#" 0.802174
+cap "vm12d" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -4702.73
+cap "bias_curm_p_15/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 761.402
+cap "bias_curm_p_15/w_172_n260#" "bias_curm_p_11/m1_120_n692#" 8.59015
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "vm12d" 35.9443
+cap "bias_curm_p_11/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "bias_curm_p_15/a_172_n788#" 0.602941
+cap "vm12d" "bias_curm_p_17/m1_216_n466#" 939.301
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_17/a_172_n788#" 454.5
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1254.22
+cap "bias_curm_p_17/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 18.6917
+cap "bias_curm_p_17/a_172_n788#" "bias_curm_p_17/w_172_n260#" 483.832
+cap "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 12.9427
+cap "eight-mirrors-p_0/m3_590_440#" "vm12d" 4551.23
+cap "vm12d" "bias_curm_p_17/w_172_n260#" 6810.6
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/w_172_n260#" 41.8104
+cap "vm12d" "bias_curm_p_17/a_172_n788#" 9127.69
+cap "eight-mirrors-p_0/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 90.0726
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.463595
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_17/w_172_n260#" 205.094
+cap "eight-mirrors-p_0/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 3261.83
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_17/m1_120_n692#" 5.99952
+cap "bias_curm_p_17/m1_216_n466#" "bias_curm_p_17/a_172_n788#" 0.0136263
+cap "vm12d" "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1646.02
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "bias_curm_p_17/w_172_n260#" 5116.94
+cap "bias_curm_p_17/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 88.0984
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_17/w_172_n260#" 3.55521
+cap "vm12d" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 181.572
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "bias_curm_p_17/a_172_n788#" 8568.29
+cap "bias_curm_p_17/m1_120_n692#" "bias_curm_p_17/a_172_n788#" 0.130542
+cap "eight-mirrors-p_0/m3_590_440#" "bias_curm_p_17/w_172_n260#" 201.743
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/a_172_n788#" 0.845038
+cap "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -145.301
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 256.522
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/m3_590_440#" -71.2381
+cap "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_1/m3_590_440#" -33.5843
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 122.769
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/m3_590_440#" -122.178
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.463595
+cap "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -140.945
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 0.631849
+cap "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 203.342
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/m3_590_440#" 34.5726
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 462.624
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/m3_590_440#" -20.9106
+cap "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_0/m3_590_440#" 164.649
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" -140.275
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -124.227
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 29.3782
+cap "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 0.845038
+cap "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1486.83
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -43.5751
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" 159.101
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -290.673
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" 2323.47
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/m3_590_440#" -22.8149
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -97.0466
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 302.448
+cap "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -28.9009
+cap "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -139.212
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -30.6315
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 0.631849
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -71.2381
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" -33.5843
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 247.911
+cap "eight-mirrors-p_1/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1078.92
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -141.493
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 107.548
+cap "eight-mirrors-p_1/m3_590_440#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" -131.52
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1186.7
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -505.179
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" 1529.64
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_3/m3_590_440#" 332.015
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -12.4051
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 242.648
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 24.6659
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -42.9805
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_2/a_172_n788#" 0.313529
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -653.151
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" -0.463595
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" 9.8376
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -868.117
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" 44.7677
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5820.82
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 70.25
+cap "eight-mirrors-p_3/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3122.31
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" 26.2604
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 13.3135
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 319.991
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 20.2535
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -6.78872
+cap "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 148.849
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.46746
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m3_590_440#" -71.2381
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" -139.8
+cap "eight-mirrors-p_3/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" 164.649
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 1735.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/m3_590_440#" 1078.92
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/m3_590_440#" 34.5726
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -7.49304
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -20.952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 889.555
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/m3_590_440#" 179.375
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/m3_590_440#" -128.5
+cap "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_2/m3_590_440#" -33.5843
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" 2141.93
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" -140.945
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/m3_590_440#" -20.9106
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 1798.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 682.346
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 257.238
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 76.3243
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 539.728
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 111.577
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" 950.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/m3_590_440#" 1215.96
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" 146.406
+cap "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 56.1017
+cap "eight-mirrors-p_2/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1078.92
+cap "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 1.29759
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1166.84
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 247.911
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/m3_590_440#" -131.52
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 6421.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" 2287.12
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 63.0075
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 0.631849
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/m3_590_440#" -71.2381
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" 389.229
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1084.82
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" 11.8575
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" -161.78
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 64.2639
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" 1374.23
+cap "eight-mirrors-p_2/m3_590_440#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" 46.7012
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -197.177
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5043.34
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/m3_590_440#" 14.6891
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" 52.054
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 316.026
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.15355
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_2/a_172_n788#" 0.808029
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3503.21
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 410.057
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" -201.403
+cap "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_5/m3_590_440#" -33.5843
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 316.026
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" 0.606908
+cap "eight-mirrors-p_5/m3_590_440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1078.92
+cap "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2745.88
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3076.62
+cap "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 233.22
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 65.9953
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/m3_590_440#" 19.8836
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" 28.3179
+cap "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_2/m3_590_440#" 112.4
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" -0.463595
+cap "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1410.34
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/m3_590_440#" 11.8877
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" 592.406
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -29.2546
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 114.696
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 616.832
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" 33.3026
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" 163.065
+cap "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 921.704
+cap "eight-mirrors-p_5/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -129.91
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" -139.212
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" -141.339
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" -33.5843
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/m3_590_440#" -71.2381
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -110.5
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 254.09
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" -71.2381
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" 63.4286
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 14.6006
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 64.2639
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" 14.6891
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -0.463595
+cap "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 588.699
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/a_172_n788#" 1.37804
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" -217.882
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m3_590_440#" 81.7977
+cap "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_4/m3_590_440#" 76.2463
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/m3_590_440#" 1.52071
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 0.912992
+cap "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 49.6481
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 175.183
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/m3_590_440#" 242.426
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" 84.4196
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 766.659
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" -152.93
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" -33.5843
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" 112.4
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -11.938
+cap "eight-mirrors-p_4/bias_curm_p_2/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 0.845038
+cap "eight-mirrors-p_4/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 0.0698864
+cap "eight-mirrors-p_6/m3_590_440#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -22.8149
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" 2576.79
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 0.631849
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 65.9953
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/m3_590_440#" 19.8836
+cap "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 0.315592
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#" 1524.15
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_0/li_380_1300#" 1.03754
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.86263
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_0/a_172_n788#" 2.10874
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_0/li_380_1300#" 345.885
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.569215
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.10616
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_7/m1_216_n466#" 0.0255603
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_0/li_380_1300#" 4.08
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/m1_216_n466#" 238.149
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/li_380_1300#" 504.012
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.86664
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_0/li_380_1300#" 2.31487
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_7/m1_216_n466#" -0.526616
+cap "bias_curm_p_0/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -1.04233
+cap "bias_curm_p_3/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 33.6568
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.86263
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/m1_216_n466#" -7.24328
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_0/li_380_1300#" -16.4486
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_0/li_380_1300#" 548.219
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/m1_120_n692#" 3.04384
+cap "bias_curm_p_2/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -69.9763
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/m1_216_n466#" 17.2098
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_0/li_380_1300#" 1367.07
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.49005
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_0/a_172_n788#" 1.02565
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_2/a_172_n788#" 71.7287
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.28411
+cap "bias_curm_p_2/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 166.965
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_0/a_172_n788#" 2.10874
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.10616
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_3/m1_216_n466#" 145.681
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_3/m1_216_n466#" -43.8917
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_0/li_380_1300#" 778.903
+cap "bias_curm_p_0/li_380_1300#" "bias_curm_p_7/m1_216_n466#" 3.9916
+cap "bias_curm_p_3/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -20.4712
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_7/m1_216_n466#" 0.0136263
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/m1_216_n466#" -269.701
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 14.2624
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/m1_120_n692#" -36.087
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/m1_216_n466#" 33.1958
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_14/m1_120_n692#" 16.8
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_2/a_172_n788#" -258.977
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_2/a_172_n788#" 66.8768
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/m1_120_n692#" -495.255
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_3/m1_216_n466#" 288.846
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_10/m1_216_n466#" 149.645
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_10/m1_216_n466#" 905.134
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_2/a_172_n788#" -9646.79
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_3/m1_120_n692#" 52.2999
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_10/m1_216_n466#" 198.478
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_2/a_172_n788#" 46.6119
+cap "bias_curm_p_10/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 49.5134
+cap "bias_curm_p_2/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -88.7005
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_3/m1_120_n692#" 217.416
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_10/m1_216_n466#" 438.183
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_2/a_172_n788#" -104.359
+cap "bias_curm_p_2/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -4899.28
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/m1_216_n466#" -58.053
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/m1_216_n466#" 203.496
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 49.6992
+cap "bias_curm_p_2/w_n10_1380#" "bias_curm_p_10/m1_120_n692#" 439.377
+cap "bias_curm_p_2/a_172_n788#" "bias_curm_p_3/m1_216_n466#" 175.474
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 1217.88
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_11/a_172_n788#" 932.662
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_14/m1_120_n692#" 14.2789
+cap "bias_curm_p_11/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.279658
+cap "bias_curm_p_11/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 1238.13
+cap "bias_curm_p_14/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 255.782
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 163.966
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_11/a_172_n788#" -319.394
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -230.512
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_3/a_172_n788#" 1.29336
+cap "bias_curm_p_14/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 1048.1
+cap "bias_curm_p_11/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -26.3923
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_11/a_172_n788#" 0.0698864
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -157.086
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_10/m1_120_n692#" 52.1859
+cap "bias_curm_p_11/a_172_n788#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 1.2637
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 142.414
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_10/m1_216_n466#" 0.858313
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 28.1556
+cap "bias_curm_p_11/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 65.9497
+cap "bias_curm_p_14/m1_216_n466#" "bias_curm_p_14/m1_120_n692#" 202.506
+cap "bias_curm_p_14/m1_216_n466#" "bias_curm_p_10/m1_120_n692#" 33.1958
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/m1_120_n692#" 4.07887
+cap "bias_curm_p_10/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 30.8693
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_11/a_172_n788#" 72.3231
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_11/a_172_n788#" 32.0431
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_11/a_172_n788#" 29.3306
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_14/m1_120_n692#" 535.093
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -164.959
+cap "bias_curm_p_10/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 362.692
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_10/m1_120_n692#" 282.394
+cap "bias_curm_p_14/m1_216_n466#" "bias_curm_p_11/a_172_n788#" 150.272
+cap "bias_curm_p_11/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 400.534
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_16/m1_120_n692#" 48.1883
+cap "bias_curm_p_11/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.164732
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -155.53
+cap "bias_curm_p_11/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 531.895
+cap "bias_curm_p_11/w_n10_1380#" "bias_curm_p_14/m1_216_n466#" 412.615
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 12.8804
+cap "bias_curm_p_15/w_n10_1380#" "bias_curm_p_14/m1_216_n466#" 0.330588
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_16/m1_120_n692#" 60.44
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -33.5078
+cap "bias_curm_p_16/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 304.363
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 27.5163
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_16/m1_216_n466#" 957.795
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_16/m1_216_n466#" 18.9169
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_15/a_172_n788#" 0.802174
+cap "bias_curm_p_15/w_n10_1380#" "bias_curm_p_15/a_172_n788#" 1150.98
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -36.2242
+cap "bias_curm_p_15/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "bias_curm_p_15/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -77.1136
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_15/w_n10_1380#" 546.584
+cap "bias_curm_p_16/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 30.6029
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -20.1126
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_15/a_172_n788#" 761.402
+cap "bias_curm_p_15/w_n10_1380#" "bias_curm_p_16/m1_216_n466#" 665.929
+cap "bias_curm_p_15/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -3954.52
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_15/w_n10_1380#" -125.574
+cap "bias_curm_p_15/w_n10_1380#" "bias_curm_p_14/m1_120_n692#" 12.5287
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -24.3468
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_15/a_172_n788#" 69.652
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "bias_curm_p_15/a_172_n788#" -66.3313
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -856.407
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -1557.34
+cap "bias_curm_p_10/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "bias_curm_p_15/a_172_n788#" 1.20588
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 35.9443
+cap "bias_curm_p_15/a_172_n788#" "bias_curm_p_16/m1_216_n466#" 152.197
+cap "bias_curm_p_15/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -32.6208
+cap "bias_curm_p_15/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -8192.48
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_16/m1_216_n466#" 210.718
+cap "bias_curm_p_16/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 5.19961
+cap "bias_curm_p_17/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 6524.21
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_17/w_n10_1380#" 218.341
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 64.0367
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 2428.74
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 3.21839
+cap "bias_curm_p_17/a_172_n788#" "bias_curm_p_17/w_n10_1380#" 394.349
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_17/w_n10_1380#" 33.4496
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_17/w_n10_1380#" 11.3535
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 91.4507
+cap "bias_curm_p_17/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 8876.83
+cap "bias_curm_p_17/a_172_n788#" "bias_curm_p_16/m1_216_n466#" 0.0136263
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 962.714
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_17/a_172_n788#" 3.82332
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_17/a_172_n788#" 0.248476
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_16/m1_120_n692#" 17.4865
+cap "bias_curm_p_17/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 8191.21
+cap "bias_curm_p_17/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 8281.38
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 626.836
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_17/w_n10_1380#" 43.2921
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 3685.11
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_17/a_172_n788#" 245.84
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 40.9757
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_17/w_n10_1380#" 5.18923
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_17/a_172_n788#" 87.4112
+cap "eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_17/a_172_n788#" 23.4799
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/a_172_n788#" 0.845038
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 171.269
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 462.624
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -1.94158
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 75.3568
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" -85.2158
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" 240.645
+cap "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -127.169
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 1.2637
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 33.1958
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -19.0063
+cap "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" -32.6208
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -66.7936
+cap "eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -47.5835
+cap "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 126.729
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -61.4469
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" -223.177
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 1.2637
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -37.1969
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 28.5579
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -47.5835
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" -94.9869
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" 121.181
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 293.53
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" -32.6208
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -30.4336
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 61.0887
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1122.27
+cap "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -52.4886
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -43.3078
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 162.474
+cap "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1380.35
+cap "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" 0.845038
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" -115.234
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" -22.8149
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" -76.1353
+cap "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 2358.04
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -48.5233
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -186.638
+cap "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 70.25
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -3.39436
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 17.853
+cap "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -2331.78
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_2/a_172_n788#" 0.313529
+cap "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -51.5976
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 3.03511
+cap "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" 24.1921
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 18.8454
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -7.71174
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" 3.80864
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 242.238
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 17.9949
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" 234.626
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" 1540.92
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1266.97
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" 56.9585
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -4.22788
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 48.5585
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5734.22
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 8.54793
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 16.152
+cap "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -90.1912
+cap "eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" 69.8169
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -21.2138
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 38.067
+cap "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 126.729
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1122.27
+cap "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1185.6
+cap "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -85.2158
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -73.1154
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1722.03
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" 2320.13
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 171.844
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 179.375
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -47.5835
+cap "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -120.209
+cap "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 243.538
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" -32.6208
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 1874.68
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1260.87
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 539.728
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" -10.476
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" -19.0063
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 485.933
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -7.60239
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 61.9741
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 33.1958
+cap "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 197.357
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" 34.4373
+cap "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3228.29
+cap "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 17.1369
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" -116.492
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 39.2407
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 719.801
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 300.627
+cap "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 8.78109
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1122.27
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3932.98
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -47.5835
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 1.2637
+cap "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 376.044
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3013.86
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" 162.474
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" -1.94158
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" 1.29759
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 14.2789
+cap "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2551.03
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -76.1353
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 542.412
+cap "eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" 13.757
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_2/a_172_n788#" 0.808029
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 18.9169
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3091.29
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" -19.0063
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 1.45889
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 38.6013
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1122.27
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 325.47
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3523.17
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 2849.48
+cap "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 32.2564
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 1.21382
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -1.94158
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" -32.6208
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 300.627
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 555.612
+cap "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 56.9
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 112.4
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 4435.36
+cap "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 65.5263
+cap "eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" -161.607
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 616.832
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -32.6208
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -128.701
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -55.2498
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -35.6943
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 997.661
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 32.0618
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 62.156
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -85.6094
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 168.791
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 125.145
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -74.5261
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -47.5835
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 41.8525
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -150.929
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 40.8988
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 22.8242
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -76.4137
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 1.82598
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 39.2407
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -47.5835
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 32.3558
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 8.78109
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.38463
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 15.1181
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 14.2789
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 118.815
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 360.76
+cap "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 558.138
+cap "eight-mirrors-p_5/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 1.37804
+cap "eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 36.0024
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 66.6937
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 737.591
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 38.6013
+cap "eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 18.9169
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 2614.58
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 1.2637
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" -152.765
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" 112.4
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" -32.6208
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/a_172_n788#" 0.845038
+cap "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -7.67878
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" 0.0698864
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" -22.8149
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" 1524.15
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 0.315592
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/a_172_n788#" 1.17295
+cap "bias_curm_p_3/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -14.4866
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/m1_120_n692#" 8.48297
+cap "bias_curm_p_3/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -135.62
+cap "bias_curm_p_3/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 54.8852
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/li_380_1300#" 880.681
+cap "bias_curm_p_3/li_380_1300#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 1427.39
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/a_172_n788#" 199.777
+cap "bias_curm_p_3/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 35.1781
+cap "bias_curm_p_3/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -40.9424
+cap "bias_curm_p_3/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 101.065
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/li_380_1300#" 358.612
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/li_380_1300#" 519.755
+cap "bias_curm_p_3/li_380_1300#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -6.45792
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_3/m1_120_n692#" 110.7
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_10/m1_120_n692#" 99.4683
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/m1_216_n466#" -116.106
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/m1_216_n466#" 48.9549
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_3/m1_120_n692#" 67.7685
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/m1_216_n466#" -1409.35
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_3/li_380_1300#" 666.583
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 13.865
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/m1_216_n466#" -8.8574
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 49.6992
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_10/m1_120_n692#" 96.1158
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/m1_120_n692#" -72.174
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/m1_120_n692#" -172.788
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_3/li_380_1300#" 323.642
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_3/a_172_n788#" -12.1788
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/m1_120_n692#" -1269.33
+cap "bias_curm_p_10/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 839.481
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/a_172_n788#" 178.342
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_3/a_172_n788#" -147.02
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/li_380_1300#" -25.8469
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/li_380_1300#" -1059.97
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_3/a_172_n788#" -328.14
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/a_172_n788#" 92.1108
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/m1_216_n466#" 117.38
+cap "bias_curm_p_10/m1_216_n466#" "bias_curm_p_3/m1_216_n466#" 4.80658
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_3/a_172_n788#" -10562.3
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 117.14
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_10/m1_216_n466#" 0.139773
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_3/m1_216_n466#" 5.79685
+cap "bias_curm_p_10/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 627.377
+cap "bias_curm_p_10/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -26.6901
+cap "bias_curm_p_10/w_172_376#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.416531
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_16/m1_120_n692#" 91.2552
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_14/m1_120_n692#" 268.395
+cap "bias_curm_p_10/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 663.276
+cap "bias_curm_p_10/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.329464
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_10/m1_216_n466#" 2.92091
+cap "bias_curm_p_10/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 781.608
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_3/m1_120_n692#" 0.318653
+cap "bias_curm_p_10/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" -263.179
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_16/m1_216_n466#" 6.32786
+cap "bias_curm_p_14/m1_216_n466#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 895.922
+cap "bias_curm_p_10/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 136.913
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_14/m1_216_n466#" -147.218
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/m1_120_n692#" 11.2835
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_10/m1_120_n692#" 231.626
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_10/w_172_376#" 77.7543
+cap "bias_curm_p_10/m1_120_n692#" "bias_curm_p_14/m1_216_n466#" 67.7685
+cap "bias_curm_p_10/w_172_376#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.416531
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_14/m1_120_n692#" 28.968
+cap "bias_curm_p_10/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" 251.596
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_10/w_172_376#" 0.28866
+cap "bias_curm_p_10/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 122.031
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 163.966
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_10/w_172_376#" 387.353
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -164.959
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_14/m1_120_n692#" 63.6593
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_4/a_172_n788#" 2.58671
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_14/m1_216_n466#" 243.387
+cap "bias_curm_p_10/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -329.476
+cap "bias_curm_p_10/w_172_376#" "bias_curm_p_10/m1_120_n692#" -132.123
+cap "bias_curm_p_10/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.329464
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" -155.53
+cap "bias_curm_p_14/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 243.821
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 142.414
+cap "bias_curm_p_10/a_172_n788#" "bias_curm_p_14/m1_120_n692#" 143.773
+cap "bias_curm_p_10/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 2279.29
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_14/m1_216_n466#" 98.1849
+cap "bias_curm_p_14/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -45.6298
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_14/a_172_n788#" 147.179
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 12.8804
+cap "bias_curm_p_14/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -15.6471
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_14/w_172_376#" -41.3649
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -67.0157
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -76.129
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_14/w_172_376#" -125.784
+cap "bias_curm_p_14/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -149.4
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -5195.93
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_14/a_172_n788#" -6560.42
+cap "bias_curm_p_14/a_172_n788#" "bias_curm_p_14/w_172_376#" 407.618
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_16/m1_120_n692#" 99.8322
+cap "bias_curm_p_16/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 62.2714
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -1712.81
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_14/a_172_n788#" 1.60435
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 35.9443
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_16/m1_216_n466#" 38.8004
+cap "bias_curm_p_14/w_172_376#" "bias_curm_p_14/m1_216_n466#" 1.06261
+cap "bias_curm_p_14/m1_120_n692#" "bias_curm_p_16/m1_120_n692#" 65.3907
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_16/m1_216_n466#" 973.652
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_14/w_172_376#" 537.902
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -40.2253
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -48.6687
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_16/m1_120_n692#" 334.298
+cap "bias_curm_p_14/w_172_376#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -66.2051
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_14/w_172_376#" 194.931
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_16/m1_120_n692#" 112.288
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_14/a_172_n788#" -65.7749
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1260.02
+cap "bias_curm_p_16/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 6241.3
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "bias_curm_p_16/m1_120_n692#" 11.1991
+cap "bias_curm_p_16/w_172_376#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 196.094
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "bias_curm_p_16/w_172_376#" 86.5841
+cap "bias_curm_p_16/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 532.407
+cap "bias_curm_p_16/m1_216_n466#" "bias_curm_p_16/a_172_n788#" 0.0272526
+cap "bias_curm_p_16/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 21.5134
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_16/w_172_376#" 0.833063
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 12.9427
+cap "bias_curm_p_16/m1_120_n692#" "bias_curm_p_16/a_172_n788#" 0.551179
+cap "bias_curm_p_16/w_172_376#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 55.0078
+cap "bias_curm_p_16/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 5.04461
+cap "bias_curm_p_16/w_172_376#" "bias_curm_p_16/a_172_n788#" 114.556
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 129.799
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 6863.15
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 97.8058
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1665.41
+cap "bias_curm_p_16/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 3081.95
+cap "bias_curm_p_16/w_172_376#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 205.262
+cap "bias_curm_p_16/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 6739.6
+cap "bias_curm_p_16/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.85996
+cap "eight-mirrors-p_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 5412.87
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 195.674
+cap "bias_curm_p_16/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 1680.87
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" -164.944
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 128.413
+cap "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -97.1479
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 195.162
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 67.7685
+cap "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -254.484
+cap "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -66.2051
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -63.4864
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" 185.719
+cap "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 5.04461
+cap "eight-mirrors-p_1/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -45.6298
+cap "eight-mirrors-p_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -201.381
+cap "eight-mirrors-p_0/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 1.69008
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1072.75
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -90.31
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 195.512
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -324.393
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 313.524
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" 1.69008
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 57.9361
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -61.0381
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -124.201
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -279.297
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1446.62
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -63.4864
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -66.2051
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -171.392
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 185.719
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 110.37
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -97.0466
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -45.6298
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -86.8471
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -28.2731
+cap "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -156.083
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -200.874
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -42.9805
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -8.84392
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 234.371
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 27.4876
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 145.973
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" -4439.34
+cap "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 18.3855
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 39.2381
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 261.453
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 497.108
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 44.7677
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 183.07
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -642.076
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" -194.505
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 81.9583
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 15.0379
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -4927.43
+cap "eight-mirrors-p_1/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 0.627059
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -15.4235
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 0.307369
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 8.46746
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -21.3098
+cap "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 740.147
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -6.78872
+cap "eight-mirrors-p_3/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 5.04461
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -66.2051
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 195.302
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 114.399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 1309.58
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 185.719
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 78.1052
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 957.203
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 358.75
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 355.878
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -45.6298
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 67.7685
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" -295.432
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" -201.181
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 1072.75
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -94.6969
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" -164.944
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -63.4864
+cap "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1537.28
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1175.75
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1348.39
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -7.49304
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 743.641
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" -31.428
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 67.0856
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 327.128
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1084.82
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 195.512
+cap "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" 51.3054
+cap "eight-mirrors-p_3/bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 14.6791
+cap "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 2.59517
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" 65.6552
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" 2386.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 6775.49
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" -100.351
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 1072.75
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -200.874
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" -156.083
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -63.4864
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1176.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" 1507.12
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 68.5157
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 28.968
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" 73.3187
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 5896.56
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1072.75
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 38.8004
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2605.88
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 5.15355
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -45.6298
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" -162.803
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" 1901.24
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 68.8169
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 327.128
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" 253.484
+cap "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" 112.4
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 5.04461
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/a_172_n788#" 1.61606
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2278.42
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 253.555
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" 3468.51
+cap "eight-mirrors-p_5/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" -66.2051
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 0.140556
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" 273.065
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -45.6298
+cap "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -66.2051
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 65.3644
+cap "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -408.514
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 195.302
+cap "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -164.944
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -201.014
+cap "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 185.719
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -63.4864
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -165.749
+cap "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -103.777
+cap "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 117.517
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" 71.3976
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 67.0856
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 123.504
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 28.968
+cap "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 197.488
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_118#" 17.4223
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_4/a_172_n788#" 2.75608
+cap "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 73.3187
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -201.014
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 81.7977
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" -221.738
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_5/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_118#" 2.90534
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" 62.6799
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 111.236
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" 57.12
+cap "eight-mirrors-p_4/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 5.04461
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -63.4864
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" 112.4
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 84.2753
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -12.167
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" -66.2051
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 0.139773
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 38.8004
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/a_172_n788#" 1.69008
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -45.6298
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" 65.6552
+cap "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" -103.026
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" -268.336
+cap "eight-mirrors-p_4/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 68.8169
+cap "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 0.631184
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_3/w_n10_1380#" 203.155
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_3/w_n10_1380#" 881.089
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_9/a_172_n788#" -43.9043
+cap "bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 1009.48
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_9/m1_120_n692#" 3.04384
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_6/m1_120_n692#" -1.73597
+cap "bias_curm_p_9/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -74.0707
+cap "bias_curm_p_6/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 32.3179
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_3/w_n10_1380#" 169.322
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_9/m1_216_n466#" 2.20633
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 31.7365
+cap "bias_curm_p_6/m1_120_n692#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -564.651
+cap "bias_curm_p_13/m1_120_n692#" "bias_curm_p_9/m1_120_n692#" 14.2624
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/m1_120_n692#" 0.930671
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_6/m1_120_n692#" 543.739
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_9/m1_120_n692#" 109.253
+cap "bias_curm_p_13/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -7064.29
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_9/m1_120_n692#" 344.81
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_6/m1_216_n466#" 729.562
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_3/w_n10_1380#" -273.386
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_6/m1_216_n466#" 112.573
+cap "bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 0.702957
+cap "bias_curm_p_9/m1_216_n466#" "bias_curm_p_6/m1_216_n466#" 4.80658
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_13/m1_120_n692#" 16.8
+cap "bias_curm_p_3/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -3143.17
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_6/m1_216_n466#" 646.281
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_9/m1_120_n692#" 59.8981
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 158.587
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_6/m1_216_n466#" 310.781
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_9/m1_120_n692#" 33.5421
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_13/a_172_n788#" 615.622
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_6/m1_216_n466#" 10.461
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" "bias_curm_p_13/a_172_n788#" 1.2637
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" 3.13382
+cap "bias_curm_p_12/m1_216_n466#" "bias_curm_p_6/m1_120_n692#" 2.95189
+cap "bias_curm_p_10/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 250.589
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_13/a_172_n788#" 0.017676
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_9/m1_120_n692#" 98.4409
+cap "bias_curm_p_12/m1_216_n466#" "bias_curm_p_13/a_172_n788#" -319.394
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_6/m1_120_n692#" 24.3188
+cap "bias_curm_p_10/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.399316
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_6/m1_120_n692#" 0.232738
+cap "bias_curm_p_10/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.358974
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_13/a_172_n788#" 702.876
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_13/a_172_n788#" 0.0136263
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_13/m1_120_n692#" 23.4055
+cap "bias_curm_p_9/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" 11.288
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_13/a_172_n788#" -35.6147
+cap "bias_curm_p_9/m1_120_n692#" "bias_curm_p_13/a_172_n788#" 23.9706
+cap "bias_curm_p_10/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" 91.118
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_13/a_172_n788#" 0.329464
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_13/m1_120_n692#" 273.554
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_13/a_172_n788#" 41.3945
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_13/a_172_n788#" 0.494196
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" -91.2299
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_13/m1_120_n692#" 148.949
+cap "bias_curm_p_10/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 948.72
+cap "bias_curm_p_9/m1_120_n692#" "bias_curm_p_13/m1_120_n692#" 41.7126
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 90.9414
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "bias_curm_p_9/m1_120_n692#" 162.034
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_12/m1_120_n692#" 28.6258
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "bias_curm_p_13/a_172_n788#" -143.895
+cap "bias_curm_p_10/w_n10_1380#" "bias_curm_p_12/m1_216_n466#" 0.0231004
+cap "bias_curm_p_13/m1_120_n692#" "bias_curm_p_13/a_172_n788#" 48.0889
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_14/w_n10_1380#" 0.902134
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_12/m1_216_n466#" 118.641
+cap "bias_curm_p_14/w_n10_1380#" "bias_curm_p_12/m1_120_n692#" 720.654
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_12/m1_120_n692#" 157.523
+cap "bias_curm_p_12/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 105.649
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 22.953
+cap "bias_curm_p_14/w_n10_1380#" "bias_curm_p_13/a_172_n788#" 697.988
+cap "bias_curm_p_14/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -244.45
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_12/m1_120_n692#" 31.6685
+cap "bias_curm_p_13/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 761.402
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_12/m1_216_n466#" 668.638
+cap "bias_curm_p_14/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -49.9213
+cap "bias_curm_p_13/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_12/m1_120_n692#" 238.222
+cap "bias_curm_p_14/w_n10_1380#" "bias_curm_p_6/m1_216_n466#" 3.43404
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_14/w_n10_1380#" -2841.36
+cap "bias_curm_p_12/m1_216_n466#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 3.6501
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "bias_curm_p_13/a_172_n788#" -6162.96
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 3.85101
+cap "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -607.286
+cap "bias_curm_p_9/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "bias_curm_p_13/a_172_n788#" 1.20588
+cap "bias_curm_p_12/m1_216_n466#" "bias_curm_p_12/m1_120_n692#" 397.246
+cap "bias_curm_p_13/m1_120_n692#" "bias_curm_p_12/m1_120_n692#" 24.2972
+cap "bias_curm_p_13/a_172_n788#" "bias_curm_p_6/a_172_n788#" 1.06957
+cap "bias_curm_p_14/w_n10_1380#" "bias_curm_p_12/m1_216_n466#" 625.271
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 17.6504
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_12/a_172_n788#" 1.90432
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_12/m1_120_n692#" 25.9528
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 991.393
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 77.2704
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_16/w_n10_1380#" 899.746
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_12/a_172_n788#" 117.897
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.5253
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_16/w_n10_1380#" 5.54821
+cap "bias_curm_p_16/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 6814.33
+cap "bias_curm_p_16/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 134.809
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_12/m1_120_n692#" 0.669607
+cap "bias_curm_p_12/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 6751.37
+cap "bias_curm_p_12/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 249.534
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_16/w_n10_1380#" 4725.13
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_12/m1_216_n466#" 0.0136263
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 809.68
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_12/m1_120_n692#" 5.99952
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_16/w_n10_1380#" 255.672
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -33.5843
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.84045
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -161.678
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.81492
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -121.863
+cap "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 18.0994
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 241.443
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -82.7869
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -20.9106
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 459.431
+cap "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" -70.8919
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 134.09
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 34.5726
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 119.966
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" -134.701
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.5253
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 153.676
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -123.911
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -70.8919
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -22.8149
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" -64.1033
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 0.847324
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -43.4236
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 232.823
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" 7.6463
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" -139.878
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 307.757
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 106.736
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 29.3782
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -92.1286
+cap "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" 148.129
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1225.34
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" 2003.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -226.305
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" 1636.84
+cap "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -266.794
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 29.4495
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_1/m2_150_1940#" 289.066
+cap "eight-mirrors-p_1/m2_150_1940#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -973.292
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.90432
+cap "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 48.5585
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 23.9091
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1775.64
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "eight-mirrors-p_1/m2_150_1940#" 24.1921
+cap "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 18.3329
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5331.33
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 219.714
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 15.1293
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 9.8376
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -587.95
+cap "eight-mirrors-p_1/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" 70.25
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" 272.169
+cap "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" -7.71174
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/m2_150_1940#" 1343.93
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 109.714
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/m2_150_1940#" 1750.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 704.17
+cap "eight-mirrors-p_3/m2_150_1940#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 333.051
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -89.1086
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 50.8578
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 34.5726
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.5253
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1125.29
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m2_150_1940#" 358.067
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 242.089
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 2.77177
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -70.8919
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/m2_150_1940#" -289.692
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 534.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/m2_150_1940#" 2274.17
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1697.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1264.39
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/m2_150_1940#" -33.5843
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 8.37408
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -20.9106
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.928914
+cap "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 35.7287
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 989.653
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 69.3079
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 4895.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 2409.47
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -70.8919
+cap "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" -92.1286
+cap "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1125.29
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 261.365
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1517.73
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2910.23
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 14.6891
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 0.875816
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 51.2534
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" 18.6472
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/m2_150_1940#" 3337.45
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 19.8836
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.5253
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/m2_150_1940#" -33.5843
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 360.23
+cap "eight-mirrors-p_2/m2_150_1940#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2788.6
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -20.9106
+cap "eight-mirrors-p_2/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/m2_150_1940#" 112.4
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3238.21
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 11.824
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 65.5263
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1125.29
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 70.2847
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "eight-mirrors-p_2/m2_150_1940#" 32.2564
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/m2_150_1940#" -59.523
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 280.157
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 33.3026
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 589.207
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m2_150_1940#" -135.095
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" -33.5843
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.44609
+cap "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -90.5193
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_2/m2_2010_4060#" 1.11262
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 111.515
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.795067
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 239.035
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m2_150_1940#" -304.724
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -29.2546
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 992.384
+cap "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.886684
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.222722
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -70.8919
+cap "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" 152.093
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -135.05
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 525.825
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 29.5451
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 14.6891
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 35.7287
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 201.545
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/m2_150_1940#" 46.9858
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 338.271
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 83.323
+cap "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 21.4386
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -92.407
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -70.8919
+cap "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 1.52071
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 70.6956
+cap "eight-mirrors-p_5/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 1.19414
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 69.5675
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -7.1343
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -198.127
+cap "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 0.0698864
+cap "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" 112.4
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 759.961
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "eight-mirrors-p_4/m2_150_1940#" 83.5098
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 19.8836
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 2576.86
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -22.8149
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" -33.5843
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "eight-mirrors-p_4/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 1.88137
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/w_172_n788#" 1524.15
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_9/a_172_n788#" 0.153684
+cap "bias_curm_p_13/w_n10_1380#" "bias_curm_p_6/m1_216_n466#" 202.532
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 194.667
+cap "bias_curm_p_13/w_n10_1380#" "bias_curm_p_6/m1_120_n692#" 113.205
+cap "bias_curm_p_13/w_n10_1380#" "bias_curm_p_9/a_172_n788#" 567.757
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_13/li_380_1300#" 3.86713
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_6/m1_216_n466#" 67.2328
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_12/a_172_n788#" 0.322493
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_9/a_172_n788#" -117.444
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_9/a_172_n788#" 153.897
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_9/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 1.43947
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.824759
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 2.78641
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_6/m1_216_n466#" 191.967
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_13/li_380_1300#" 534.684
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_6/m1_216_n466#" 0.0255603
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_12/a_172_n788#" 5.17253
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_9/a_172_n788#" 392.454
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_9/a_172_n788#" 1.49192
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_9/a_172_n788#" 0.896636
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_9/a_172_n788#" 114.726
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_8/m1_216_n466#" 0.130352
+cap "bias_curm_p_12/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.494196
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_12/m1_120_n692#" 5.38178
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_12/a_172_n788#" 0.0136263
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_12/a_172_n788#" 16.8494
+cap "bias_curm_p_9/a_172_n788#" "bias_curm_p_12/a_172_n788#" 5.13872
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_12/m1_120_n692#" -57.3846
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_12/a_172_n788#" 113.415
+cap "bias_curm_p_13/li_380_1300#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.358974
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_6/m1_120_n692#" 0.232738
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_12/m1_120_n692#" 91.2375
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_9/a_172_n788#" 192.635
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_12/a_172_n788#" 0.494196
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_8/m1_216_n466#" 2.86664
+cap "bias_curm_p_6/m1_120_n692#" "bias_curm_p_9/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.296212
+cap "bias_curm_p_13/li_380_1300#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.358974
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_6/m1_216_n466#" 36.9196
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_6/m1_120_n692#" 266.755
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_12/m1_120_n692#" 102.076
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "bias_curm_p_8/m1_216_n466#" 3.49005
+cap "bias_curm_p_13/li_380_1300#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -48.9578
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_6/a_172_n788#" 0.534783
+cap "bias_curm_p_12/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 30.6029
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_13/li_380_1300#" -59.8349
+cap "bias_curm_p_8/m1_216_n466#" "bias_curm_p_13/li_380_1300#" 248.397
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_12/m1_120_n692#" 130.55
+cap "bias_curm_p_8/m1_216_n466#" "bias_curm_p_12/m1_120_n692#" -71.286
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "bias_curm_p_12/m1_120_n692#" 6.75247
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 0.602941
+cap "bias_curm_p_12/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_6/m1_216_n466#" 11.6299
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_12/a_172_n788#" 1.60435
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_13/li_380_1300#" -153.099
+cap "bias_curm_p_13/li_380_1300#" "bias_curm_p_12/m1_120_n692#" 423.441
+cap "bias_curm_p_8/m1_216_n466#" "bias_curm_p_12/a_172_n788#" -80.4138
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_12/a_172_n788#" 0.682711
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 48.9029
+cap "bias_curm_p_12/w_n10_1380#" "bias_curm_p_8/m1_216_n466#" 0.585417
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_12/w_n10_1380#" 55.288
+cap "bias_curm_p_12/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 5.19961
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 13.7944
+cap "bias_curm_p_12/m1_120_n692#" "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 24.443
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_12/a_172_n788#" 39.2298
+cap "bias_curm_p_12/m1_120_n692#" "bias_curm_p_12/w_n10_1380#" 0.769608
+cap "bias_curm_p_12/w_n10_1380#" "bias_curm_p_12/a_172_n788#" 378.939
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.562206
+cap "bias_curm_p_12/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 295.224
+cap "bias_curm_p_12/a_172_n788#" "bias_curm_p_8/m1_216_n466#" 0.0136263
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "bias_curm_p_12/a_172_n788#" 230.745
+cap "eight-mirrors-p_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_12/w_n10_1380#" 468.258
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -32.6208
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -84.8844
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 3.70337
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.985912
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 0.631849
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 4.51299
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -31.8539
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" -120.942
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 85.0152
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.562206
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 132.988
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" 1.69008
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -93.6013
+cap "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -96.2074
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 33.1958
+cap "eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 114.424
+cap "eight-mirrors-p_1/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -93.3475
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 4.76333
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 1.69008
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -61.8288
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" -100.404
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -31.8539
+cap "eight-mirrors-p_1/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" 84.5279
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5.35051
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -43.4236
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -22.8149
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 100.18
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" -741.94
+cap "eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 0.631849
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 152.876
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 132.689
+cap "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 410.004
+cap "eight-mirrors-p_1/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 28.5579
+cap "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -1781.62
+cap "eight-mirrors-p_0/m2_150_1940#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" 0.214504
+cap "eight-mirrors-p_1/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 492.3
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" -586.091
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 26.7286
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -301.677
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/m2_150_1940#" 295.921
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 219.389
+cap "eight-mirrors-p_1/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" 33.076
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 11.4737
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 8.54793
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -2508.64
+cap "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" -813.438
+cap "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 20.9052
+cap "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_1/m2_150_1940#" -0.487333
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.153684
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_1/m2_150_1940#" -109.514
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -2712.43
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" 0.627059
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 22.946
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/m2_150_1940#" 336.671
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -26.19
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 477.642
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/m2_150_1940#" 461.95
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -93.5012
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.823392
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 491.445
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 102.117
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/m2_150_1940#" -272.676
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -31.8539
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.562206
+cap "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/m2_150_1940#" 226.434
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 133.058
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/m2_150_1940#" 324.815
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.954443
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/m2_150_1940#" 246.621
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 25.6284
+cap "eight-mirrors-p_3/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 33.1958
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 628.837
+cap "eight-mirrors-p_3/m2_150_1940#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -32.6208
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1018.33
+cap "eight-mirrors-p_2/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -31.8539
+cap "eight-mirrors-p_2/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" 39.1665
+cap "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 586.559
+cap "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 14.2789
+cap "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -278.938
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 3656.58
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 2.59517
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 0.631849
+cap "eight-mirrors-p_2/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" -93.3475
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 168.938
+cap "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 1740.02
+cap "eight-mirrors-p_3/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 17.4159
+cap "eight-mirrors-p_2/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 492.3
+cap "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 454.612
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 765.836
+cap "eight-mirrors-p_2/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 62.9117
+cap "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -287.252
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/m2_150_1940#" 997.825
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 177.242
+cap "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 491.445
+cap "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -0.487333
+cap "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 47.2173
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0702779
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 215.172
+cap "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_2/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 45.3614
+cap "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -32.6208
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.562206
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 8.31272
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#" 1.61606
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 0.606908
+cap "eight-mirrors-p_2/m2_150_1940#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1087.67
+cap "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1837.81
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 65.1148
+cap "eight-mirrors-p_5/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_2/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 18.9169
+cap "eight-mirrors-p_2/m2_2010_6260#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.401026
+cap "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" -32.6208
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/m2_150_1940#" -225.328
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" -253.705
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/m2_150_1940#" -107.163
+cap "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" 85.0152
+cap "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -0.795067
+cap "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 32.0618
+cap "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -22.8149
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 104.064
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -138.124
+cap "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 133.369
+cap "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -93.4178
+cap "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -31.8539
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.788008
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.222722
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 64.249
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 350.335
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -83.0432
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 61.7522
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 109.273
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 39.1665
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 29.5451
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -93.4174
+cap "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 14.2789
+cap "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -31.8539
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 41.4611
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 0.912992
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 46.9858
+cap "eight-mirrors-p_4/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 19.8246
+cap "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 1.38463
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" 2.75608
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" 65.8735
+cap "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" 45.3614
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" -201.804
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" 51.2534
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -22.8149
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -8.75758
+cap "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" 18.9169
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n33_n518#" 64.4507
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" 1.69008
+cap "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "eight-mirrors-p_4/m2_150_1940#" -32.6208
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/m2_150_1940#" -127.578
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_29_n297#" 0.631849
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0698864
+cap "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 4.82265
+cap "eight-mirrors-p_4/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 1.11092
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 0.631184
+cap "eight-mirrors-p_4/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 39.4541
+cap "eight-mirrors-p_4/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 253.908
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/li_380_1300#" 0.0237147
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_5/a_172_n788#" 1.24634
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/m1_120_n692#" -14.4935
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_5/a_172_n788#" 142.711
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 1.04434
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_6/a_172_n788#" 5.6961
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_6/a_172_n788#" 0.631849
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 0.117933
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_8/li_380_1300#" 108.693
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_6/m1_120_n692#" -10.7134
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_8/li_380_1300#" -484.747
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/li_380_1300#" 0.0118879
+cap "bias_curm_p_8/w_172_n260#" "bias_curm_p_8/li_380_1300#" 2.04255
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_6/a_172_n788#" 0.631849
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_6/a_172_n788#" 0.329184
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 0.117933
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/li_380_1300#" -47.8836
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_6/m1_120_n692#" 0.13
+cap "bias_curm_p_8/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" 0.818145
+cap "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "bias_curm_p_8/li_380_1300#" 0.345395
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_8/li_380_1300#" 0.13
+cap "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "bias_curm_p_8/li_380_1300#" -21.4905
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "bias_curm_p_8/a_172_n788#" 0.602941
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" 1.04434
+cap "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "bias_curm_p_8/a_172_n788#" 2.70421
+cap "bias_curm_p_6/w_172_n260#" "bias_curm_p_8/li_380_1300#" 0.347445
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "bias_curm_p_8/li_380_1300#" -14.28
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/a_172_n788#" 110.779
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.285556
+cap "bias_curm_p_8/li_380_1300#" "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" 426.228
+cap "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 1.09281
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/a_172_n788#" 0.674579
+cap "bias_curm_p_8/li_380_1300#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 19.3993
+cap "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "bias_curm_p_8/a_172_n788#" 0.323958
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" -250.963
+cap "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" 5.34129
+cap "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" 2.36274
+cap "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" -54.2855
+cap "eight-mirrors-p_0/m2_150_1940#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" 0.429008
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#" 5.6961
+cap "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" 3.38683
+cap "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 0.881951
+cap "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" 0.500339
+cap "eight-mirrors-p_1/m2_150_1940#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" 146.831
+cap "eight-mirrors-p_1/m2_150_1940#" "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#" 315.122
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_3/m2_150_1940#" 1801.03
+cap "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#" 5.34129
+cap "eight-mirrors-p_3/m2_150_1940#" "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#" 2.36274
+cap "eight-mirrors-p_2/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" 3.38683
+cap "eight-mirrors-p_2/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#" -68.0988
+cap "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" 5.6961
+cap "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_2/m2_150_1940#" 199.061
+cap "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#" 22.0555
+cap "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" 0.764808
+cap "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" 2.14535
+cap "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" 5.34129
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" 1589.16
+cap "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" -3.1251
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_6/bias_curm_p_7/a_172_n788#" 2.84805
+cap "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 0.281143
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 2.04975
+cap "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 713.765
+cap "eight-mirrors-p_6/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 1.33708
+cap "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 1.33708
+cap "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" -59.0042
+cap "eight-mirrors-p_6/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/m2_150_1940#" 1.02566
+cap "eight-mirrors-p_6/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" 2.84805
+cap "eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" 1446.9
+merge "eight-mirrors-p_6/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" -354805 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -477417168 -26210 0 0 -10605200 -2390 -1683660 -3836 6579320 0 0 0
+merge "eight-mirrors-p_4/bias_curm_p_6/a_172_n788#" "m1_19420_9220#"
+merge "m1_19420_9220#" "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_6/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_7/a_172_n788#" "m1_17260_9220#"
+merge "m1_17260_9220#" "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_6/a_172_n788#" "m1_15070_9220#"
+merge "m1_15070_9220#" "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_6/a_172_n788#" "m1_12900_9220#"
+merge "m1_12900_9220#" "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" "m1_10690_9220#"
+merge "m1_10690_9220#" "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "m1_8520_9220#"
+merge "m1_8520_9220#" "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "bias_curm_p_8/a_172_n788#"
+merge "bias_curm_p_8/a_172_n788#" "m1_6340_9250#"
+merge "m1_6340_9250#" "bias_curm_p_6/a_172_n788#"
+merge "bias_curm_p_6/a_172_n788#" "m1_5510_8960#"
+merge "m1_5510_8960#" "eight-mirrors-p_6/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "m1_3040_9250#"
+merge "m1_3040_9250#" "bias_curm_p_5/a_172_n788#"
+merge "bias_curm_p_5/a_172_n788#" "m1_2240_8950#"
+merge "m1_2240_8950#" "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_4/a_172_n788#" "m1_19420_6940#"
+merge "m1_19420_6940#" "eight-mirrors-p_5/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_4/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_5/a_172_n788#" "m1_17260_6940#"
+merge "m1_17260_6940#" "eight-mirrors-p_5/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_4/a_172_n788#" "m1_15060_6940#"
+merge "m1_15060_6940#" "eight-mirrors-p_2/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_4/a_172_n788#" "m1_12900_6940#"
+merge "m1_12900_6940#" "eight-mirrors-p_3/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_4/a_172_n788#" "m1_10700_6940#"
+merge "m1_10700_6940#" "eight-mirrors-p_1/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_5/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_4/a_172_n788#" "m1_8520_6940#"
+merge "m1_8520_6940#" "eight-mirrors-p_0/bias_curm_p_5/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_5/a_172_n788#" "bias_curm_p_12/a_172_n788#"
+merge "bias_curm_p_12/a_172_n788#" "m1_6370_6960#"
+merge "m1_6370_6960#" "bias_curm_p_13/a_172_n788#"
+merge "bias_curm_p_13/a_172_n788#" "bias_curm_p_9/a_172_n788#"
+merge "bias_curm_p_9/a_172_n788#" "m1_5240_6960#"
+merge "m1_5240_6960#" "m1_4140_6960#"
+merge "m1_4140_6960#" "bias_curm_p_4/a_172_n788#"
+merge "bias_curm_p_4/a_172_n788#" "m1_3080_6960#"
+merge "m1_3080_6960#" "eight-mirrors-p_6/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_2/a_172_n788#" "m1_2240_6670#"
+merge "m1_2240_6670#" "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "m1_19410_4660#"
+merge "m1_19410_4660#" "eight-mirrors-p_5/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_2/a_172_n788#" "m1_17260_4660#"
+merge "m1_17260_4660#" "eight-mirrors-p_5/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_2/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_3/a_172_n788#" "m1_15040_4660#"
+merge "m1_15040_4660#" "eight-mirrors-p_2/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_2/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_3/a_172_n788#" "m1_12880_4660#"
+merge "m1_12880_4660#" "eight-mirrors-p_3/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_2/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_3/a_172_n788#" "m1_10680_4660#"
+merge "m1_10680_4660#" "eight-mirrors-p_1/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_2/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_3/a_172_n788#" "m1_8520_4660#"
+merge "m1_8520_4660#" "eight-mirrors-p_0/bias_curm_p_2/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_2/a_172_n788#" "bias_curm_p_16/a_172_n788#"
+merge "bias_curm_p_16/a_172_n788#" "m1_6360_4670#"
+merge "m1_6360_4670#" "bias_curm_p_14/a_172_n788#"
+merge "bias_curm_p_14/a_172_n788#" "bias_curm_p_10/a_172_n788#"
+merge "bias_curm_p_10/a_172_n788#" "bias_curm_p_3/a_172_n788#"
+merge "bias_curm_p_3/a_172_n788#" "eight-mirrors-p_4/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" "m1_5270_4670#"
+merge "m1_5270_4670#" "m1_4120_4670#"
+merge "m1_4120_4670#" "m1_3070_4670#"
+merge "m1_3070_4670#" "m1_2240_4370#"
+merge "m1_2240_4370#" "eight-mirrors-p_4/m1_910_120#"
+merge "eight-mirrors-p_4/m1_910_120#" "eight-mirrors-p_6/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_1/a_172_n788#" "m1_19450_2380#"
+merge "m1_19450_2380#" "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_0/a_172_n788#" "m1_17210_2380#"
+merge "m1_17210_2380#" "eight-mirrors-p_5/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" "m1_15050_2380#"
+merge "m1_15050_2380#" "eight-mirrors-p_2/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "m1_12880_2380#"
+merge "m1_12880_2380#" "eight-mirrors-p_3/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" "m1_10720_2380#"
+merge "m1_10720_2380#" "eight-mirrors-p_1/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_0/a_172_n788#" "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" "m1_8520_2380#"
+merge "m1_8520_2380#" "eight-mirrors-p_0/bias_curm_p_0/a_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_0/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#"
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" "m1_6360_2380#"
+merge "m1_6360_2380#" "bias_curm_p_17/a_172_n788#"
+merge "bias_curm_p_17/a_172_n788#" "bias_curm_p_15/a_172_n788#"
+merge "bias_curm_p_15/a_172_n788#" "bias_curm_p_11/a_172_n788#"
+merge "bias_curm_p_11/a_172_n788#" "bias_curm_n_3/m1_176_1194#"
+merge "bias_curm_n_3/m1_176_1194#" "bias_curm_p_2/a_172_n788#"
+merge "bias_curm_p_2/a_172_n788#" "bias_curm_n_2/m1_176_1194#"
+merge "bias_curm_n_2/m1_176_1194#" "bias_curm_p_1/m1_216_n466#"
+merge "bias_curm_p_1/m1_216_n466#" "bias_curm_p_1/a_172_n788#"
+merge "bias_curm_p_1/a_172_n788#" "vm12d"
+merge "bias_curm_p_8/VSUBS" "bias_curm_p_6/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "bias_curm_p_6/VSUBS" "bias_curm_p_5/VSUBS"
+merge "bias_curm_p_5/VSUBS" "bias_curm_p_12/VSUBS"
+merge "bias_curm_p_12/VSUBS" "bias_curm_p_9/VSUBS"
+merge "bias_curm_p_9/VSUBS" "bias_curm_p_13/VSUBS"
+merge "bias_curm_p_13/VSUBS" "bias_curm_p_4/VSUBS"
+merge "bias_curm_p_4/VSUBS" "bias_curm_p_16/VSUBS"
+merge "bias_curm_p_16/VSUBS" "bias_curm_p_14/VSUBS"
+merge "bias_curm_p_14/VSUBS" "bias_curm_p_10/VSUBS"
+merge "bias_curm_p_10/VSUBS" "bias_curm_p_3/VSUBS"
+merge "bias_curm_p_3/VSUBS" "bias_curm_p_7/VSUBS"
+merge "bias_curm_p_7/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "eight-mirrors-p_6/VSUBS"
+merge "eight-mirrors-p_6/VSUBS" "eight-mirrors-p_4/VSUBS"
+merge "eight-mirrors-p_4/VSUBS" "eight-mirrors-p_5/VSUBS"
+merge "eight-mirrors-p_5/VSUBS" "eight-mirrors-p_2/VSUBS"
+merge "eight-mirrors-p_2/VSUBS" "eight-mirrors-p_3/VSUBS"
+merge "eight-mirrors-p_3/VSUBS" "eight-mirrors-p_1/VSUBS"
+merge "eight-mirrors-p_1/VSUBS" "eight-mirrors-p_0/VSUBS"
+merge "eight-mirrors-p_0/VSUBS" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/VSUBS" "bias_curm_p_17/VSUBS"
+merge "bias_curm_p_17/VSUBS" "bias_curm_p_15/VSUBS"
+merge "bias_curm_p_15/VSUBS" "bias_curm_p_11/VSUBS"
+merge "bias_curm_p_11/VSUBS" "bias_curm_n_3/VSUBS"
+merge "bias_curm_n_3/VSUBS" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/VSUBS" "bias_curm_p_2/VSUBS"
+merge "bias_curm_p_2/VSUBS" "bias_curm_n_2/VSUBS"
+merge "bias_curm_n_2/VSUBS" "bias_curm_p_1/VSUBS"
+merge "bias_curm_p_1/VSUBS" "bias_curm_p_0/VSUBS"
+merge "bias_curm_p_0/VSUBS" "bias_curm_n_1/VSUBS"
+merge "bias_curm_n_1/VSUBS" "bias_curm_n_0/VSUBS"
+merge "bias_curm_n_0/VSUBS" "VSUBS"
+merge "bias_curm_p_13/m1_120_n692#" "bias_curm_p_9/m1_120_n692#" -3138.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4577040 -4520 0 0 0 0 0 0 0 0
+merge "bias_curm_p_9/m1_120_n692#" "m2_5290_6250#"
+merge "m2_5290_6250#" "bias_curm_p_14/m1_120_n692#"
+merge "bias_curm_p_14/m1_120_n692#" "m2_4200_6300#"
+merge "m2_4200_6300#" "bias_curm_p_10/m1_120_n692#"
+merge "bias_curm_p_10/m1_120_n692#" "bias_curm_p_15/m1_120_n692#"
+merge "bias_curm_p_15/m1_120_n692#" "m2_5290_3930#"
+merge "m2_5290_3930#" "m2_4200_3920#"
+merge "m2_4200_3920#" "bias_curm_p_11/m1_120_n692#"
+merge "bias_curm_p_11/m1_120_n692#" "m2_4310_2460#"
+merge "eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_4/bias_curm_p_6/w_172_n260#" 335645 0 0 0 0 120737700 -210400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106801320 -12466 -14143700 -17920 0 0 -664100 -7664 0 0
+merge "eight-mirrors-p_4/bias_curm_p_6/w_172_n260#" "eight-mirrors-p_5/bias_curm_p_6/w_172_n260#"
+merge "eight-mirrors-p_5/bias_curm_p_6/w_172_n260#" "eight-mirrors-p_5/bias_curm_p_7/w_172_n260#"
+merge "eight-mirrors-p_5/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n260#"
+merge "eight-mirrors-p_3/bias_curm_p_6/w_172_n260#" "eight-mirrors-p_2/bias_curm_p_7/w_172_n260#"
+merge "eight-mirrors-p_2/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_3/bias_curm_p_7/w_172_n260#"
+merge "eight-mirrors-p_3/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n260#"
+merge "eight-mirrors-p_0/bias_curm_p_6/w_172_n260#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#"
+merge "eight-mirrors-p_1/bias_curm_p_7/w_172_n260#" "eight-mirrors-p_0/bias_curm_p_7/w_172_n260#"
+merge "eight-mirrors-p_0/bias_curm_p_7/w_172_n260#" "bias_curm_p_5/w_172_n260#"
+merge "bias_curm_p_5/w_172_n260#" "bias_curm_p_6/li_380_1300#"
+merge "bias_curm_p_6/li_380_1300#" "bias_curm_p_13/li_380_1300#"
+merge "bias_curm_p_13/li_380_1300#" "eight-mirrors-p_6/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_6/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_6/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_6/m2_150_1940#"
+merge "eight-mirrors-p_6/m2_150_1940#" "eight-mirrors-p_4/m2_150_1940#"
+merge "eight-mirrors-p_4/m2_150_1940#" "eight-mirrors-p_2/m2_150_1940#"
+merge "eight-mirrors-p_2/m2_150_1940#" "eight-mirrors-p_5/m2_150_1940#"
+merge "eight-mirrors-p_5/m2_150_1940#" "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_3/m2_150_1940#"
+merge "eight-mirrors-p_3/m2_150_1940#" "eight-mirrors-p_2/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/m2_150_1940#"
+merge "eight-mirrors-p_1/m2_150_1940#" "eight-mirrors-p_0/m2_150_1940#"
+merge "eight-mirrors-p_0/m2_150_1940#" "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_6/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_7/w_172_n788#" "bias_curm_p_8/li_380_1300#"
+merge "bias_curm_p_8/li_380_1300#" "bias_curm_p_6/w_172_n788#"
+merge "bias_curm_p_6/w_172_n788#" "bias_curm_p_5/li_380_1300#"
+merge "bias_curm_p_5/li_380_1300#" "eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_6/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_6/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_5/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_6/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_7/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_1/bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_7/w_n10_1380#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#"
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_1/c2_n3251_n1500#" "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_7/w_172_n788#" "bias_curm_p_8/w_n10_1380#"
+merge "bias_curm_p_8/w_n10_1380#" "bias_curm_p_8/w_172_n788#"
+merge "bias_curm_p_8/w_172_n788#" "bias_curm_p_3/w_172_376#"
+merge "bias_curm_p_3/w_172_376#" "bias_curm_p_12/li_380_1300#"
+merge "bias_curm_p_12/li_380_1300#" "bias_curm_p_16/w_172_376#"
+merge "bias_curm_p_16/w_172_376#" "bias_curm_p_14/w_172_376#"
+merge "bias_curm_p_14/w_172_376#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#"
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/c2_n3251_n1500#" "bias_curm_p_5/w_n10_1380#"
+merge "bias_curm_p_5/w_n10_1380#" "bias_curm_p_6/w_n10_1380#"
+merge "bias_curm_p_6/w_n10_1380#" "bias_curm_p_10/w_172_376#"
+merge "bias_curm_p_10/w_172_376#" "bias_curm_p_3/li_380_1300#"
+merge "bias_curm_p_3/li_380_1300#" "bias_curm_p_5/w_172_n788#"
+merge "bias_curm_p_5/w_172_n788#" "bias_curm_p_7/li_380_1300#"
+merge "bias_curm_p_7/li_380_1300#" "eight-mirrors-p_6/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_4/bias_curm_p_4/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_4/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_4/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_4/w_172_n788#" "bias_curm_p_13/w_172_n788#"
+merge "bias_curm_p_13/w_172_n788#" "bias_curm_p_9/w_172_n788#"
+merge "bias_curm_p_9/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_6/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_5/bias_curm_p_4/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_5/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_5/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_4/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_1/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_5/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_5/w_172_n788#" "bias_curm_p_12/w_n10_1380#"
+merge "bias_curm_p_12/w_n10_1380#" "bias_curm_p_12/w_172_n788#"
+merge "bias_curm_p_12/w_172_n788#" "bias_curm_p_13/w_n10_1380#"
+merge "bias_curm_p_13/w_n10_1380#" "bias_curm_p_16/li_380_1300#"
+merge "bias_curm_p_16/li_380_1300#" "bias_curm_p_14/w_172_n788#"
+merge "bias_curm_p_14/w_172_n788#" "bias_curm_p_17/w_172_n260#"
+merge "bias_curm_p_17/w_172_n260#" "bias_curm_p_15/w_172_n260#"
+merge "bias_curm_p_15/w_172_n260#" "bias_curm_p_4/w_n10_1380#"
+merge "bias_curm_p_4/w_n10_1380#" "bias_curm_p_9/w_n10_1380#"
+merge "bias_curm_p_9/w_n10_1380#" "bias_curm_p_13/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "bias_curm_p_13/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "bias_curm_p_10/w_172_n788#"
+merge "bias_curm_p_10/w_172_n788#" "bias_curm_p_11/w_172_n260#"
+merge "bias_curm_p_11/w_172_n260#" "bias_curm_p_4/w_172_n788#"
+merge "bias_curm_p_4/w_172_n788#" "bias_curm_p_7/w_172_n788#"
+merge "bias_curm_p_7/w_172_n788#" "bias_curm_p_2/w_172_n260#"
+merge "bias_curm_p_2/w_172_n260#" "bias_curm_p_1/w_172_n260#"
+merge "bias_curm_p_1/w_172_n260#" "eight-mirrors-p_6/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_6/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_6/bias_curm_p_3/w_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_3/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_6/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_5/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_2/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_2/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_3/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_3/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_2/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_2/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_2/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_3/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_3/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_2/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_2/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_1/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_1/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_3/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_3/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_3/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_2/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_2/w_172_n788#" "bias_curm_p_16/w_n10_1380#"
+merge "bias_curm_p_16/w_n10_1380#" "bias_curm_p_16/w_172_n788#"
+merge "bias_curm_p_16/w_172_n788#" "bias_curm_p_14/w_n10_1380#"
+merge "bias_curm_p_14/w_n10_1380#" "bias_curm_p_14/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "bias_curm_p_14/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "bias_curm_p_10/w_n10_1380#"
+merge "bias_curm_p_10/w_n10_1380#" "bias_curm_p_3/w_n10_1380#"
+merge "bias_curm_p_3/w_n10_1380#" "bias_curm_p_3/w_172_n788#"
+merge "bias_curm_p_3/w_172_n788#" "bias_curm_p_7/w_n10_1380#"
+merge "bias_curm_p_7/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "bias_curm_p_17/li_380_1300#"
+merge "bias_curm_p_17/li_380_1300#" "bias_curm_p_15/li_380_1300#"
+merge "bias_curm_p_15/li_380_1300#" "bias_curm_p_11/li_380_1300#"
+merge "bias_curm_p_11/li_380_1300#" "bias_curm_p_2/li_380_1300#"
+merge "bias_curm_p_2/li_380_1300#" "bias_curm_p_0/li_380_1300#"
+merge "bias_curm_p_0/li_380_1300#" "VP"
+merge "VP" "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" "bias_curm_p_15/w_172_n788#"
+merge "bias_curm_p_15/w_172_n788#" "bias_curm_p_11/w_172_n788#"
+merge "bias_curm_p_11/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_6/bias_curm_p_1/w_n10_1380#" "bias_curm_p_1/w_172_n788#"
+merge "bias_curm_p_1/w_172_n788#" "bias_curm_p_0/w_172_n788#"
+merge "bias_curm_p_0/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_6/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_5/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_5/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_4/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_4/bias_curm_p_0/w_172_n788#"
+merge "eight-mirrors-p_4/bias_curm_p_0/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_5/bias_curm_p_0/w_172_n788#"
+merge "eight-mirrors-p_5/bias_curm_p_0/w_172_n788#" "eight-mirrors-p_2/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_2/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_3/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_3/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_3/bias_curm_p_0/w_172_n788#"
+merge "eight-mirrors-p_3/bias_curm_p_0/w_172_n788#" "eight-mirrors-p_1/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_1/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "eight-mirrors-p_0/bias_curm_p_1/w_n10_1380#"
+merge "eight-mirrors-p_0/bias_curm_p_1/w_n10_1380#" "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" "eight-mirrors-p_0/bias_curm_p_0/w_172_n788#"
+merge "eight-mirrors-p_0/bias_curm_p_0/w_172_n788#" "bias_curm_p_17/w_n10_1380#"
+merge "bias_curm_p_17/w_n10_1380#" "bias_curm_p_17/w_172_n788#"
+merge "bias_curm_p_17/w_172_n788#" "bias_curm_p_15/w_n10_1380#"
+merge "bias_curm_p_15/w_n10_1380#" "bias_curm_p_15/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#"
+merge "bias_curm_p_15/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "bias_curm_p_11/w_n10_1380#"
+merge "bias_curm_p_11/w_n10_1380#" "bias_curm_p_2/w_n10_1380#"
+merge "bias_curm_p_2/w_n10_1380#" "bias_curm_p_2/w_172_n788#"
+merge "bias_curm_p_2/w_172_n788#" "bias_curm_p_1/w_n10_1380#"
+merge "bias_curm_p_1/w_n10_1380#" "bias_curm_p_0/w_n10_1380#"
+merge "bias_curm_n_3/a_132_882#" "bias_curm_n_2/a_132_882#" -13267.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -21868600 -1540 0 0 72800 -760 0 0 0 0 0 0
+merge "bias_curm_n_2/a_132_882#" "m1_3040_2070#"
+merge "m1_3040_2070#" "bias_curm_n_1/a_132_882#"
+merge "bias_curm_n_1/a_132_882#" "m1_1990_2070#"
+merge "m1_1990_2070#" "bias_curm_n_0/m1_176_1194#"
+merge "bias_curm_n_0/m1_176_1194#" "bias_curm_n_0/a_132_882#"
+merge "bias_curm_n_0/a_132_882#" "m1_920_2070#"
+merge "m1_920_2070#" "I_in"
+merge "bias_curm_p_7/a_172_n788#" "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" 35067.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45400 -680 169400 -380 -1247850 -510 329280 -616 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "m1_60_4370#"
+merge "m1_60_4370#" "bias_curm_p_0/m1_216_n466#"
+merge "bias_curm_p_0/m1_216_n466#" "bias_curm_p_0/a_172_n788#"
+merge "bias_curm_p_0/a_172_n788#" "bias_curm_n_1/m1_176_1194#"
+merge "bias_curm_n_1/m1_176_1194#" "vm4d"
+merge "bias_curm_p_6/m1_216_n466#" "bias_curm_p_5/m1_216_n466#" -3273.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8040000 -3160 8201500 -8110 0 0 0 0 0 0
+merge "bias_curm_p_5/m1_216_n466#" "bias_curm_p_4/m1_216_n466#"
+merge "bias_curm_p_4/m1_216_n466#" "bias_curm_p_3/m1_216_n466#"
+merge "bias_curm_p_3/m1_216_n466#" "bias_curm_p_2/m1_216_n466#"
+merge "bias_curm_p_2/m1_216_n466#" "TIA_Bias"
+merge "bias_curm_p_5/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" -5138.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9135640 -4080 0 0 0 0 0 0 0 0
+merge "bias_curm_p_6/m1_120_n692#" "m2_2990_9970#"
+merge "m2_2990_9970#" "bias_curm_p_4/m1_120_n692#"
+merge "bias_curm_p_4/m1_120_n692#" "m2_3110_8460#"
+merge "m2_3110_8460#" "bias_curm_p_3/m1_120_n692#"
+merge "bias_curm_p_3/m1_120_n692#" "m2_3110_6330#"
+merge "m2_3110_6330#" "bias_curm_p_2/m1_120_n692#"
+merge "bias_curm_p_2/m1_120_n692#" "m2_3110_3920#"
+merge "bias_curm_p_13/m1_216_n466#" "bias_curm_p_9/m1_216_n466#" -3597.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -10827250 -12200 0 0 0 0 0 0
+merge "bias_curm_p_9/m1_216_n466#" "bias_curm_p_14/m1_216_n466#"
+merge "bias_curm_p_14/m1_216_n466#" "bias_curm_p_10/m1_216_n466#"
+merge "bias_curm_p_10/m1_216_n466#" "bias_curm_p_15/m1_216_n466#"
+merge "bias_curm_p_15/m1_216_n466#" "bias_curm_p_11/m1_216_n466#"
+merge "bias_curm_p_11/m1_216_n466#" "Bias_Analog_out"
+merge "eight-mirrors-p_2/m3_590_440#" "m3_14070_2720#" -2148.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6630400 -540 0 0 0 0 0 0
+merge "bias_curm_p_8/m1_120_n692#" "bias_curm_p_12/m1_120_n692#" -1171.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -150800 -2880 0 0 0 0 0 0 0 0
+merge "bias_curm_p_12/m1_120_n692#" "m2_6380_8570#"
+merge "m2_6380_8570#" "bias_curm_p_16/m1_120_n692#"
+merge "bias_curm_p_16/m1_120_n692#" "m2_6380_6260#"
+merge "m2_6380_6260#" "bias_curm_p_17/m1_120_n692#"
+merge "bias_curm_p_17/m1_120_n692#" "m2_6380_3850#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "bias_curm_n_3/li_330_n30#" 13447.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19830520 -4400 -1668600 0 -5247003 0 11846480 -36921 0 0
+merge "bias_curm_n_3/li_330_n30#" "bias_curm_n_2/li_330_n30#"
+merge "bias_curm_n_2/li_330_n30#" "bias_curm_n_1/li_330_n30#"
+merge "bias_curm_n_1/li_330_n30#" "bias_curm_n_0/li_330_n30#"
+merge "bias_curm_n_0/li_330_n30#" "Comp_Bias_4"
+merge "bias_curm_n_3/m1_80_970#" "bias_curm_n_2/m1_80_970#" -1697.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3101800 -920 0 0 0 0 0 0 0 0
+merge "bias_curm_n_2/m1_80_970#" "m2_3220_480#"
+merge "bias_curm_p_7/m1_216_n466#" "FB_Bias_1" -247.766 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -524400 -520 0 0 0 0 0 0
+merge "eight-mirrors-p_6/m3_590_440#" "LVDS_Bias" -938.184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2724800 -540 0 0 0 0 0 0
+merge "bias_curm_p_8/m1_216_n466#" "bias_curm_p_12/m1_216_n466#" -687.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5809800 -8060 0 0 0 0 0 0
+merge "bias_curm_p_12/m1_216_n466#" "bias_curm_p_16/m1_216_n466#"
+merge "bias_curm_p_16/m1_216_n466#" "bias_curm_p_17/m1_216_n466#"
+merge "bias_curm_p_17/m1_216_n466#" "ctl_Bias"
+merge "eight-mirrors-p_5/m3_590_440#" "Comp_Bias_5" -975.895 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2912000 -480 0 0 0 0 0 0
+merge "eight-mirrors-p_0/m3_590_440#" "Comp_Bias_1" -1600.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2488800 -740 0 0 0 0 0 0
+merge "eight-mirrors-p_4/m3_590_440#" "Comp_Bias_6" -1275.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2912000 -480 0 0 0 0 0 0
+merge "eight-mirrors-p_1/m3_590_440#" "Comp_Bias_2" -1993.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6100000 -660 0 0 0 0 0 0
+merge "eight-mirrors-p_3/m3_590_440#" "Comp_Bias_3" -1068.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2816000 -540 0 0 0 0 0 0
diff --git a/mag/bias/curr_mirror_channel.mag b/mag/bias/curr_mirror_channel.mag
new file mode 100644
index 0000000..a003d93
--- /dev/null
+++ b/mag/bias/curr_mirror_channel.mag
@@ -0,0 +1,726 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654704381
+<< metal1 >>
+rect 2240 8950 2290 9310
+rect 3040 9250 3400 9310
+rect 3330 8960 3380 9250
+rect 5510 8960 5560 9320
+rect 6340 9250 6640 9310
+rect 8520 9220 8820 9280
+rect 10690 9220 10990 9280
+rect 12900 9220 13200 9280
+rect 15070 9220 15370 9280
+rect 17260 9220 17560 9280
+rect 19420 9220 19710 9280
+rect 2240 6670 2290 7030
+rect 5510 7020 5560 7050
+rect 3080 6960 3440 7020
+rect 4140 6960 4500 7020
+rect 5240 6960 5600 7020
+rect 6370 6960 6650 7020
+rect 3330 6660 3380 6960
+rect 4420 6650 4470 6960
+rect 5510 6690 5560 6960
+rect 8520 6940 8800 7000
+rect 10700 6940 10980 7000
+rect 12900 6940 13180 7000
+rect 15060 6940 15340 7000
+rect 17260 6940 17540 7000
+rect 19420 6940 19710 7000
+rect 3330 4730 3380 4740
+rect 60 4370 110 4720
+rect 2240 4370 2290 4730
+rect 3070 4670 3430 4730
+rect 4120 4670 4480 4730
+rect 5270 4670 5630 4730
+rect 6360 4670 6650 4730
+rect 3330 4380 3380 4670
+rect 4420 4370 4470 4670
+rect 5510 4360 5560 4670
+rect 8520 4660 8830 4720
+rect 10680 4660 10990 4720
+rect 12880 4660 13190 4720
+rect 15040 4660 15350 4720
+rect 17260 4660 17570 4720
+rect 19410 4660 19700 4720
+rect 840 2340 910 2410
+rect 1030 2340 1040 2410
+rect 1150 2380 5630 2440
+rect 6360 2380 6670 2440
+rect 8520 2380 8830 2440
+rect 10720 2380 11030 2440
+rect 12880 2380 13190 2440
+rect 15050 2380 15360 2440
+rect 17210 2380 17520 2440
+rect 19450 2380 19740 2440
+rect 1760 2320 1920 2380
+rect 1750 2250 1760 2320
+rect 1920 2250 1930 2320
+rect 5360 2280 5520 2380
+rect 640 2160 650 2240
+rect 860 2160 870 2240
+rect 5350 2190 5360 2280
+rect 5520 2190 5530 2280
+rect 640 2080 870 2160
+rect 920 2070 1200 2120
+rect 1990 2070 2280 2120
+rect 3040 2070 3330 2120
+<< via1 >>
+rect 910 2340 1030 2410
+rect 1760 2250 1920 2320
+rect 650 2160 860 2240
+rect 5360 2190 5520 2280
+<< metal2 >>
+rect 2330 11250 2620 11260
+rect 2330 11070 2620 11080
+rect 3440 11250 3730 11260
+rect 3440 11070 3730 11080
+rect 5590 11250 5880 11260
+rect 5590 11070 5880 11080
+rect 3280 10400 3360 10410
+rect 3360 10250 4140 10400
+rect 3280 10240 3360 10250
+rect 2990 9970 3560 10120
+rect 3280 9770 3360 9780
+rect 3360 9620 4140 9770
+rect 3280 9610 3360 9620
+rect 2330 8960 2620 8970
+rect 2330 8780 2620 8790
+rect 3110 8460 3230 9350
+rect 3430 8960 3720 8970
+rect 3430 8780 3720 8790
+rect 4490 8960 4780 8970
+rect 4490 8780 4780 8790
+rect 5590 8960 5880 8970
+rect 5590 8780 5880 8790
+rect 6380 8570 6500 9490
+rect 160 6800 430 6810
+rect 160 6490 430 6500
+rect 2330 6670 2620 6680
+rect 2330 6490 2620 6500
+rect 3110 6330 3230 7220
+rect 3430 6670 3720 6680
+rect 3430 6490 3720 6500
+rect 4200 6300 4320 7190
+rect 4490 6670 4780 6680
+rect 4490 6490 4780 6500
+rect 5290 6250 5410 7170
+rect 5590 6670 5880 6680
+rect 5590 6490 5880 6500
+rect 6380 6260 6500 7180
+rect 160 4520 430 4530
+rect 160 4210 430 4220
+rect 2330 4370 2620 4380
+rect 2330 4190 2620 4200
+rect 3110 3920 3230 4810
+rect 3430 4380 3720 4390
+rect 3430 4200 3720 4210
+rect 4200 3920 4320 4810
+rect 4490 4380 4780 4390
+rect 4490 4200 4780 4210
+rect 5290 3930 5410 4850
+rect 5590 4380 5880 4390
+rect 5590 4200 5880 4210
+rect 6380 3850 6500 4770
+rect 4310 2460 4530 2640
+rect 770 2410 1120 2420
+rect 1030 2350 1120 2410
+rect 1030 2340 1450 2350
+rect 770 2330 1450 2340
+rect 1000 2310 1450 2330
+rect 650 2240 860 2250
+rect 1000 2230 1250 2310
+rect 1380 2230 1450 2310
+rect 1760 2320 1920 2330
+rect 1760 2240 1920 2250
+rect 5360 2280 5520 2290
+rect 1000 2210 1450 2230
+rect 650 2150 860 2160
+rect 1330 1980 1450 2210
+rect 5360 2180 5520 2190
+rect 3220 480 3670 630
+rect 390 330 610 340
+rect 390 10 610 20
+rect 1480 330 1700 340
+rect 1480 10 1700 20
+rect 2570 330 2790 340
+rect 2570 10 2790 20
+rect 3660 330 3880 340
+rect 3660 10 3880 20
+<< via2 >>
+rect 2330 11080 2620 11250
+rect 3440 11080 3730 11250
+rect 5590 11080 5880 11250
+rect 3280 10250 3360 10400
+rect 3280 9620 3360 9770
+rect 2330 8790 2620 8960
+rect 3430 8790 3720 8960
+rect 4490 8790 4780 8960
+rect 5590 8790 5880 8960
+rect 160 6500 430 6800
+rect 2330 6500 2620 6670
+rect 3430 6500 3720 6670
+rect 4490 6500 4780 6670
+rect 5590 6500 5880 6670
+rect 160 4220 430 4520
+rect 2330 4200 2620 4370
+rect 3430 4210 3720 4380
+rect 4490 4210 4780 4380
+rect 5590 4210 5880 4380
+rect 770 2340 910 2410
+rect 910 2340 1030 2410
+rect 650 2160 860 2240
+rect 1250 2230 1380 2310
+rect 1760 2250 1920 2320
+rect 5360 2190 5520 2280
+rect 390 20 610 330
+rect 1480 20 1700 330
+rect 2570 20 2790 330
+rect 3660 20 3880 330
+<< metal3 >>
+rect 2330 11410 2620 11430
+rect 3430 11410 3720 11430
+rect 4490 11410 4780 11430
+rect 5590 11410 5880 11430
+rect 150 11390 440 11410
+rect 150 11020 180 11390
+rect 450 11020 460 11390
+rect 2320 11080 2330 11410
+rect 2620 11080 2630 11410
+rect 2320 11075 2630 11080
+rect 3430 11080 3440 11410
+rect 3730 11080 3740 11410
+rect 4480 11080 4490 11410
+rect 4780 11080 4790 11410
+rect 5580 11080 5590 11410
+rect 5880 11080 5890 11410
+rect 3430 11075 3740 11080
+rect 150 6800 440 11020
+rect 2330 8965 2620 11075
+rect 3270 10400 3370 10405
+rect 3020 10390 3280 10400
+rect 2820 10250 3280 10390
+rect 3360 10250 3370 10400
+rect 2820 9770 3060 10250
+rect 3270 10245 3370 10250
+rect 3270 9770 3370 9775
+rect 2820 9620 3280 9770
+rect 3360 9620 3370 9770
+rect 2320 8960 2630 8965
+rect 2320 8790 2330 8960
+rect 2620 8790 2630 8960
+rect 2320 8785 2630 8790
+rect 150 6500 160 6800
+rect 430 6500 440 6800
+rect 2330 6675 2620 8785
+rect 150 4520 440 6500
+rect 2320 6670 2630 6675
+rect 2320 6500 2330 6670
+rect 2620 6500 2630 6670
+rect 2320 6495 2630 6500
+rect 660 5220 790 5350
+rect 150 4220 160 4520
+rect 430 4220 440 4520
+rect 2330 4375 2620 6495
+rect 150 4210 440 4220
+rect 2320 4370 2630 4375
+rect 2320 4200 2330 4370
+rect 2620 4200 2630 4370
+rect 2320 4195 2630 4200
+rect 770 2415 1010 2890
+rect 760 2410 1040 2415
+rect 760 2340 770 2410
+rect 1030 2340 1040 2410
+rect 760 2335 1040 2340
+rect 1730 2370 1970 2880
+rect 2820 2760 3060 9620
+rect 3270 9615 3370 9620
+rect 3430 8965 3720 11075
+rect 4490 8965 4780 11080
+rect 5580 11075 5890 11080
+rect 5590 8965 5880 11075
+rect 6690 11050 6700 11380
+rect 6990 11050 7000 11380
+rect 7780 11050 7790 11380
+rect 8080 11050 8090 11380
+rect 8870 11050 8880 11380
+rect 9170 11050 9180 11380
+rect 9960 11050 9970 11380
+rect 10260 11050 10270 11380
+rect 11050 11050 11060 11380
+rect 11350 11050 11360 11380
+rect 12140 11050 12150 11380
+rect 12440 11050 12450 11380
+rect 13230 11050 13240 11380
+rect 13530 11050 13540 11380
+rect 14320 11050 14330 11380
+rect 14620 11050 14630 11380
+rect 15410 11050 15420 11380
+rect 15710 11050 15720 11380
+rect 16500 11050 16510 11380
+rect 16800 11050 16810 11380
+rect 17590 11050 17600 11380
+rect 17890 11050 17900 11380
+rect 18680 11050 18690 11380
+rect 18980 11050 18990 11380
+rect 19770 11050 19780 11380
+rect 20070 11050 20080 11380
+rect 20860 11050 20870 11380
+rect 21160 11050 21170 11380
+rect 3420 8960 3730 8965
+rect 3420 8790 3430 8960
+rect 3720 8790 3730 8960
+rect 3420 8785 3730 8790
+rect 4480 8960 4790 8965
+rect 4480 8790 4490 8960
+rect 4780 8790 4790 8960
+rect 4480 8785 4790 8790
+rect 5580 8960 5890 8965
+rect 5580 8790 5590 8960
+rect 5880 8790 5890 8960
+rect 5580 8785 5890 8790
+rect 3430 6675 3720 8785
+rect 3420 6670 3730 6675
+rect 3420 6500 3430 6670
+rect 3720 6500 3730 6670
+rect 3420 6495 3730 6500
+rect 3430 4385 3720 6495
+rect 3420 4380 3730 4385
+rect 3420 4210 3430 4380
+rect 3720 4210 3730 4380
+rect 3420 4205 3730 4210
+rect 3430 4200 3720 4205
+rect 3900 2970 4140 8100
+rect 4490 6675 4780 8785
+rect 4480 6670 4790 6675
+rect 4480 6500 4490 6670
+rect 4780 6500 4790 6670
+rect 4480 6495 4790 6500
+rect 4490 4385 4780 6495
+rect 4480 4380 4790 4385
+rect 4480 4210 4490 4380
+rect 4780 4210 4790 4380
+rect 4480 4205 4790 4210
+rect 4490 4200 4780 4205
+rect 5000 2970 5240 8100
+rect 5590 6675 5880 8785
+rect 5580 6670 5890 6675
+rect 5580 6500 5590 6670
+rect 5880 6500 5890 6670
+rect 5580 6495 5890 6500
+rect 5590 4385 5880 6495
+rect 5580 4380 5890 4385
+rect 5580 4210 5590 4380
+rect 5880 4210 5890 4380
+rect 5580 4205 5890 4210
+rect 5590 4200 5880 4205
+rect 3900 2760 5240 2970
+rect 6090 2760 6330 10390
+rect 7560 2710 7750 2890
+rect 9720 2720 9900 2870
+rect 11910 2730 12060 2850
+rect 14070 2720 14220 2840
+rect 16330 2720 16470 2820
+rect 18470 2730 18610 2830
+rect 20660 2760 20840 2850
+rect 1730 2320 3070 2370
+rect 1240 2310 1390 2315
+rect 30 2240 880 2270
+rect 30 2160 650 2240
+rect 860 2160 880 2240
+rect 1240 2230 1250 2310
+rect 1380 2230 1390 2310
+rect 1240 2225 1390 2230
+rect 1730 2250 1760 2320
+rect 1920 2250 3070 2320
+rect 1730 2200 3070 2250
+rect 30 2130 880 2160
+rect 640 1910 880 2130
+rect 2820 2060 3070 2200
+rect 5340 2180 5350 2320
+rect 5540 2180 5550 2320
+rect 2810 1890 4150 2060
+rect 370 340 380 450
+rect 100 40 380 340
+rect 760 340 770 450
+rect 1460 340 1470 450
+rect 760 40 1470 340
+rect 1850 340 1860 450
+rect 2550 340 2560 450
+rect 1850 40 2560 340
+rect 2940 340 2950 450
+rect 3640 340 3650 450
+rect 2940 40 3650 340
+rect 4030 40 4040 450
+rect 100 20 390 40
+rect 610 20 1480 40
+rect 1700 20 2570 40
+rect 2790 20 3660 40
+rect 3880 20 3890 40
+rect 380 15 620 20
+rect 1470 15 1710 20
+rect 2560 15 2800 20
+rect 3650 15 3890 20
+<< via3 >>
+rect 180 11020 450 11390
+rect 2330 11250 2620 11410
+rect 2330 11080 2620 11250
+rect 3440 11250 3730 11410
+rect 3440 11080 3730 11250
+rect 4490 11080 4780 11410
+rect 5590 11250 5880 11410
+rect 5590 11080 5880 11250
+rect 6700 11050 6990 11380
+rect 7790 11050 8080 11380
+rect 8880 11050 9170 11380
+rect 9970 11050 10260 11380
+rect 11060 11050 11350 11380
+rect 12150 11050 12440 11380
+rect 13240 11050 13530 11380
+rect 14330 11050 14620 11380
+rect 15420 11050 15710 11380
+rect 16510 11050 16800 11380
+rect 17600 11050 17890 11380
+rect 18690 11050 18980 11380
+rect 19780 11050 20070 11380
+rect 20870 11050 21160 11380
+rect 1250 2230 1380 2310
+rect 5350 2280 5540 2320
+rect 5350 2190 5360 2280
+rect 5360 2190 5520 2280
+rect 5520 2190 5540 2280
+rect 5350 2180 5540 2190
+rect 380 330 760 450
+rect 380 40 390 330
+rect 390 40 610 330
+rect 610 40 760 330
+rect 1470 330 1850 450
+rect 1470 40 1480 330
+rect 1480 40 1700 330
+rect 1700 40 1850 330
+rect 2560 330 2940 450
+rect 2560 40 2570 330
+rect 2570 40 2790 330
+rect 2790 40 2940 330
+rect 3650 330 4030 450
+rect 3650 40 3660 330
+rect 3660 40 3880 330
+rect 3880 40 4030 330
+<< metal4 >>
+rect 2329 11410 2621 11411
+rect 179 11390 451 11391
+rect 179 11020 180 11390
+rect 450 11020 451 11390
+rect 2329 11080 2330 11410
+rect 2620 11080 2621 11410
+rect 2329 11079 2621 11080
+rect 3439 11410 3731 11411
+rect 3439 11080 3440 11410
+rect 3730 11080 3731 11410
+rect 3439 11079 3731 11080
+rect 4489 11410 4781 11411
+rect 4489 11080 4490 11410
+rect 4780 11080 4781 11410
+rect 4489 11079 4781 11080
+rect 5589 11410 5881 11411
+rect 5589 11080 5590 11410
+rect 5880 11080 5881 11410
+rect 5589 11079 5881 11080
+rect 6699 11380 6991 11381
+rect 6699 11050 6700 11380
+rect 6990 11050 6991 11380
+rect 6699 11049 6991 11050
+rect 7789 11380 8081 11381
+rect 7789 11050 7790 11380
+rect 8080 11050 8081 11380
+rect 7789 11049 8081 11050
+rect 8879 11380 9171 11381
+rect 8879 11050 8880 11380
+rect 9170 11050 9171 11380
+rect 8879 11049 9171 11050
+rect 9969 11380 10261 11381
+rect 9969 11050 9970 11380
+rect 10260 11050 10261 11380
+rect 9969 11049 10261 11050
+rect 11059 11380 11351 11381
+rect 11059 11050 11060 11380
+rect 11350 11050 11351 11380
+rect 11059 11049 11351 11050
+rect 12149 11380 12441 11381
+rect 12149 11050 12150 11380
+rect 12440 11050 12441 11380
+rect 12149 11049 12441 11050
+rect 13239 11380 13531 11381
+rect 13239 11050 13240 11380
+rect 13530 11050 13531 11380
+rect 13239 11049 13531 11050
+rect 14329 11380 14621 11381
+rect 14329 11050 14330 11380
+rect 14620 11050 14621 11380
+rect 14329 11049 14621 11050
+rect 15419 11380 15711 11381
+rect 15419 11050 15420 11380
+rect 15710 11050 15711 11380
+rect 15419 11049 15711 11050
+rect 16509 11380 16801 11381
+rect 16509 11050 16510 11380
+rect 16800 11050 16801 11380
+rect 16509 11049 16801 11050
+rect 17599 11380 17891 11381
+rect 17599 11050 17600 11380
+rect 17890 11050 17891 11380
+rect 17599 11049 17891 11050
+rect 18689 11380 18981 11381
+rect 18689 11050 18690 11380
+rect 18980 11050 18981 11380
+rect 18689 11049 18981 11050
+rect 19779 11380 20071 11381
+rect 19779 11050 19780 11380
+rect 20070 11050 20071 11380
+rect 19779 11049 20071 11050
+rect 20869 11380 21161 11381
+rect 20869 11050 20870 11380
+rect 21160 11050 21161 11380
+rect 20869 11049 21161 11050
+rect 179 11019 451 11020
+rect 1240 2310 1450 2700
+rect 5350 2321 5540 2920
+rect 1240 2230 1250 2310
+rect 1380 2230 1450 2310
+rect 5349 2320 5541 2321
+rect 1249 2229 1381 2230
+rect 5349 2180 5350 2320
+rect 5540 2180 5541 2320
+rect 5349 2179 5541 2180
+rect 379 450 761 451
+rect 379 40 380 450
+rect 760 40 761 450
+rect 379 39 761 40
+rect 1469 450 1851 451
+rect 1469 40 1470 450
+rect 1850 40 1851 450
+rect 1469 39 1851 40
+rect 2559 450 2941 451
+rect 2559 40 2560 450
+rect 2940 40 2941 450
+rect 2559 39 2941 40
+rect 3649 450 4031 451
+rect 3649 40 3650 450
+rect 4030 40 4031 450
+rect 3649 39 4031 40
+<< via4 >>
+rect 180 11020 450 11390
+rect 2330 11080 2620 11410
+rect 3440 11080 3730 11410
+rect 4490 11080 4780 11410
+rect 5590 11080 5880 11410
+rect 6700 11050 6990 11380
+rect 7790 11050 8080 11380
+rect 8880 11050 9170 11380
+rect 9970 11050 10260 11380
+rect 11060 11050 11350 11380
+rect 12150 11050 12440 11380
+rect 13240 11050 13530 11380
+rect 14330 11050 14620 11380
+rect 15420 11050 15710 11380
+rect 16510 11050 16800 11380
+rect 17600 11050 17890 11380
+rect 18690 11050 18980 11380
+rect 19780 11050 20070 11380
+rect 20870 11050 21160 11380
+rect 380 40 760 450
+rect 1470 40 1850 450
+rect 2560 40 2940 450
+rect 3650 40 4030 450
+<< metal5 >>
+rect 2306 11430 2644 11434
+rect 3416 11430 3754 11434
+rect 4466 11430 4804 11434
+rect 5566 11430 5904 11434
+rect 150 11410 21770 11430
+rect 150 11390 2330 11410
+rect 150 11020 180 11390
+rect 450 11080 2330 11390
+rect 2620 11080 3440 11410
+rect 3730 11080 4490 11410
+rect 4780 11080 5590 11410
+rect 5880 11380 21770 11410
+rect 5880 11080 6700 11380
+rect 450 11050 6700 11080
+rect 6990 11050 7790 11380
+rect 8080 11050 8880 11380
+rect 9170 11050 9970 11380
+rect 10260 11050 11060 11380
+rect 11350 11050 12150 11380
+rect 12440 11050 13240 11380
+rect 13530 11050 14330 11380
+rect 14620 11050 15420 11380
+rect 15710 11050 16510 11380
+rect 16800 11050 17600 11380
+rect 17890 11050 18690 11380
+rect 18980 11050 19780 11380
+rect 20070 11050 20870 11380
+rect 21160 11050 21770 11380
+rect 450 11020 21770 11050
+rect 150 10990 21770 11020
+rect 3260 8710 3860 10990
+rect 7250 8750 7850 10990
+rect 11030 9970 11630 10990
+rect 15090 10080 15690 10990
+rect 10600 660 11320 3800
+rect 14030 660 14750 3840
+rect -20 450 19640 660
+rect -20 40 380 450
+rect 760 40 1470 450
+rect 1850 40 2560 450
+rect 2940 40 3650 450
+rect 4030 40 19640 450
+rect -20 10 19640 40
+use bias_curm_n  bias_curm_n_0
+timestamp 1654697490
+transform 1 0 60 0 1 50
+box -50 -50 1052 2198
+use bias_curm_n  bias_curm_n_1
+timestamp 1654697490
+transform 1 0 1150 0 1 50
+box -50 -50 1052 2198
+use bias_curm_n  bias_curm_n_2
+timestamp 1654697490
+transform 1 0 2240 0 1 50
+box -50 -50 1052 2198
+use bias_curm_n  bias_curm_n_3
+timestamp 1654697490
+transform 1 0 3330 0 1 50
+box -50 -50 1052 2198
+use bias_curm_p  bias_curm_p_0
+timestamp 1654704381
+transform 1 0 20 0 1 3170
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_1
+timestamp 1654704381
+transform 1 0 1110 0 1 3170
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_2
+timestamp 1654704381
+transform 1 0 2200 0 1 3170
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_3
+timestamp 1654704381
+transform 1 0 2200 0 1 5460
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_4
+timestamp 1654704381
+transform 1 0 2200 0 1 7750
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_5
+timestamp 1654704381
+transform 1 0 2200 0 1 10040
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_6
+timestamp 1654704381
+transform 1 0 3290 0 1 10040
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_7
+timestamp 1654704381
+transform 1 0 20 0 1 5450
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_8
+timestamp 1654704381
+transform 1 0 5470 0 1 10040
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_9
+timestamp 1654704381
+transform 1 0 3290 0 1 7750
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_10
+timestamp 1654704381
+transform 1 0 3290 0 1 5460
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_11
+timestamp 1654704381
+transform 1 0 3290 0 1 3170
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_12
+timestamp 1654704381
+transform 1 0 5470 0 1 7750
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_13
+timestamp 1654704381
+transform 1 0 4380 0 1 7750
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_14
+timestamp 1654704381
+transform 1 0 4380 0 1 5460
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_15
+timestamp 1654704381
+transform 1 0 4380 0 1 3170
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_16
+timestamp 1654704381
+transform 1 0 5470 0 1 5460
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_17
+timestamp 1654704381
+transform 1 0 5470 0 1 3170
+box -10 -910 1100 1390
+use eight-mirrors-p  eight-mirrors-p_0
+timestamp 1654704381
+transform 1 0 6550 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_1
+timestamp 1654704381
+transform 1 0 8730 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_2
+timestamp 1654704381
+transform 1 0 13090 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_3
+timestamp 1654704381
+transform 1 0 10910 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_4
+timestamp 1654704381
+transform 1 0 17450 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_5
+timestamp 1654704381
+transform 1 0 15270 0 1 2260
+box 0 0 2200 9140
+use eight-mirrors-p  eight-mirrors-p_6
+timestamp 1654704381
+transform 1 0 19630 0 1 2260
+box 0 0 2200 9140
+use sky130_fd_pr__cap_mim_m3_2_26U9NK  sky130_fd_pr__cap_mim_m3_2_26U9NK_0
+timestamp 1654701805
+transform 0 1 2831 -1 0 5953
+box -3351 -1601 3373 1601
+use sky130_fd_pr__cap_mim_m3_2_26U9NK  sky130_fd_pr__cap_mim_m3_2_26U9NK_1
+timestamp 1654701805
+transform 0 1 6611 -1 0 5943
+box -3351 -1601 3373 1601
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1654701805
+transform 0 1 13261 -1 0 7053
+box -3351 -3101 3373 3101
+<< labels >>
+rlabel metal5 4770 130 5030 460 1 VN
+rlabel metal5 4960 11050 5220 11380 1 VP
+rlabel metal3 40 2150 140 2250 1 I_in
+rlabel metal3 670 5230 770 5330 1 FB_Bias_1
+rlabel metal3 2860 2860 2980 3000 1 TIA_Bias
+rlabel metal3 6150 2800 6290 2970 1 ctl_Bias
+rlabel metal3 7570 2720 7750 2880 1 Comp_Bias_1
+rlabel metal3 9730 2740 9880 2860 1 Comp_Bias_2
+rlabel metal3 11910 2730 12060 2850 1 Comp_Bias_3
+rlabel metal5 14070 2720 14220 2840 1 Comp_Bias_4
+rlabel metal3 16330 2720 16470 2820 1 Comp_Bias_5
+rlabel metal3 18470 2730 18610 2830 1 Comp_Bias_6
+rlabel metal3 20660 2760 20840 2850 1 LVDS_Bias
+rlabel metal3 4380 2800 4550 2940 1 Bias_Analog_out
+rlabel metal4 5390 2330 5490 2420 1 vm12d
+rlabel metal2 1040 2220 1130 2280 1 vm4d
+<< end >>
diff --git a/mag/bias/curr_mirror_channel.spice b/mag/bias/curr_mirror_channel.spice
new file mode 100644
index 0000000..2da7aba
--- /dev/null
+++ b/mag/bias/curr_mirror_channel.spice
@@ -0,0 +1,142 @@
+* SPICE3 file created from curr_mirror_channel.ext - technology: sky130B
+
+.subckt sky130_fd_pr__pfet_01v8_U4PLGH a_n321_n518# a_n33_118# a_15_549# a_207_n615#
++ a_n225_118# a_n413_118# a_111_21# a_n369_n615# a_207_549# a_n33_n518# a_111_n87#
++ a_63_118# a_15_n615# w_n551_n737# a_n177_n615# a_255_118# a_n177_549# a_159_n518#
++ a_n81_21# a_n273_21# a_303_21# a_n413_n518# a_303_n87# a_n129_118# a_255_n518# a_n369_549#
++ a_351_n518# a_n81_n87# a_n321_118# a_n273_n87# a_n129_n518# a_63_n518# a_159_118#
++ a_n225_n518# a_351_118#
+X0 a_63_n518# a_15_n615# a_n33_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n129_n518# a_n177_n615# a_n225_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n33_n518# a_n81_n87# a_n129_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_351_n518# a_303_n87# a_255_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n33_118# a_n81_21# a_n129_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_351_118# a_303_21# a_255_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_159_118# a_111_21# a_63_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_255_118# a_207_549# a_159_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n321_118# a_n369_549# a_n413_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_n225_118# a_n273_21# a_n321_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X10 a_n129_118# a_n177_549# a_n225_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 a_255_n518# a_207_n615# a_159_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n321_n518# a_n369_n615# a_n413_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X13 a_63_118# a_15_549# a_n33_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X14 a_159_n518# a_111_n87# a_63_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n225_n518# a_n273_n87# a_n321_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PDCJZ5 a_n345_n200# a_29_n297# a_n129_n297# a_187_n297#
++ a_129_n200# a_n287_n297# a_287_n200# w_n483_n419# a_n29_n200# a_n187_n200#
+X0 a_n187_n200# a_n287_n297# a_n345_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_287_n200# a_187_n297# a_129_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n200# a_29_n297# a_n29_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n200# a_n129_n297# a_n187_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt bias_curm_p m1_216_n466# m1_120_n692# a_172_n788# w_172_376#
+Xsky130_fd_pr__pfet_01v8_U4PLGH_0 m1_216_n466# m1_120_n692# a_172_n788# a_172_n788#
++ m1_120_n692# m1_120_n692# a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788#
++ m1_216_n466# a_172_n788# w_172_376# a_172_n788# m1_216_n466# a_172_n788# m1_120_n692#
++ a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# m1_216_n466#
++ a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# a_172_n788# m1_216_n466# m1_216_n466#
++ m1_120_n692# m1_120_n692# m1_120_n692# sky130_fd_pr__pfet_01v8_U4PLGH
+Xsky130_fd_pr__pfet_01v8_PDCJZ5_0 m1_120_n692# a_172_n788# a_172_n788# a_172_n788#
++ w_172_376# a_172_n788# m1_120_n692# w_172_376# m1_120_n692# w_172_376# sky130_fd_pr__pfet_01v8_PDCJZ5
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_6YE2KS a_n345_n200# a_129_n200# a_287_n200# a_29_n288#
++ a_n129_n288# a_187_n288# a_n287_n288# a_n29_n200# a_n187_n200# a_n447_n374#
+X0 a_n187_n200# a_n287_n288# a_n345_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_287_n200# a_187_n288# a_129_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n200# a_29_n288# a_n29_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n200# a_n129_n288# a_n187_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_QQ8PGA a_255_n509# a_n129_109# a_15_n597# a_111_21#
++ a_351_n509# a_n177_n597# a_n321_109# a_n515_n683# a_n129_n509# a_111_n87# a_15_531#
++ a_63_n509# a_159_109# a_n225_n509# a_207_531# a_n81_21# a_n273_21# a_n321_n509#
++ a_351_109# a_n33_109# a_303_21# a_303_n87# a_n225_109# a_n413_109# a_n177_531# a_n33_n509#
++ a_n81_n87# a_n273_n87# a_63_109# a_207_n597# a_n369_531# a_159_n509# a_n369_n597#
++ a_255_109# a_n413_n509#
+X0 a_n129_n509# a_n177_n597# a_n225_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n33_109# a_n81_21# a_n129_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n33_n509# a_n81_n87# a_n129_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X3 a_351_n509# a_303_n87# a_255_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_255_109# a_207_531# a_159_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_351_109# a_303_21# a_255_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_159_109# a_111_21# a_63_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_n321_109# a_n369_531# a_n413_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X8 a_n225_109# a_n273_21# a_n321_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_n129_109# a_n177_531# a_n225_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X10 a_255_n509# a_207_n597# a_159_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X11 a_n321_n509# a_n369_n597# a_n413_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X12 a_63_109# a_15_531# a_n33_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 a_159_n509# a_111_n87# a_63_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n225_n509# a_n273_n87# a_n321_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_63_n509# a_15_n597# a_n33_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt bias_curm_n m1_80_970# m1_176_1194# a_132_882# VSUBS
+Xsky130_fd_pr__nfet_01v8_6YE2KS_0 VSUBS m1_80_970# VSUBS a_132_882# a_132_882# a_132_882#
++ a_132_882# VSUBS m1_80_970# VSUBS sky130_fd_pr__nfet_01v8_6YE2KS
+Xsky130_fd_pr__nfet_01v8_QQ8PGA_0 m1_176_1194# m1_176_1194# a_132_882# a_132_882#
++ m1_80_970# a_132_882# m1_176_1194# VSUBS m1_176_1194# a_132_882# a_132_882# m1_176_1194#
++ m1_80_970# m1_80_970# a_132_882# a_132_882# a_132_882# m1_176_1194# m1_80_970# m1_80_970#
++ a_132_882# a_132_882# m1_80_970# m1_80_970# a_132_882# m1_80_970# a_132_882# a_132_882#
++ m1_176_1194# a_132_882# a_132_882# m1_80_970# a_132_882# m1_176_1194# m1_80_970#
++ sky130_fd_pr__nfet_01v8_QQ8PGA
+.ends
+
+.subckt eight-mirrors-p m3_590_440# m2_150_1940# m1_910_120#
+Xbias_curm_p_6 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_7 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_0 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_1 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_2 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_3 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_4 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_5 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_26U9NK c2_n3251_n1500# m4_n3351_n1600#
+X0 c2_n3251_n1500# m4_n3351_n1600# sky130_fd_pr__cap_mim_m3_2 l=1.5e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+
+Xbias_curm_p_6 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_3 m2_3220_480# vm12d I_in VSUBS bias_curm_n
+Xbias_curm_p_7 FB_Bias_1 bias_curm_p_7/m1_120_n692# vm4d VP bias_curm_p
+Xbias_curm_p_8 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_9 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_10 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_11 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_12 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_13 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_14 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_15 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_16 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_17 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xeight-mirrors-p_0 Comp_Bias_1 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_1 Comp_Bias_2 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_2 m3_14070_2720# VP vm12d eight-mirrors-p
+Xeight-mirrors-p_3 Comp_Bias_3 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_4 Comp_Bias_6 VP vm12d eight-mirrors-p
+Xsky130_fd_pr__cap_mim_m3_2_26U9NK_0 VP vm4d sky130_fd_pr__cap_mim_m3_2_26U9NK
+Xeight-mirrors-p_5 Comp_Bias_5 VP vm12d eight-mirrors-p
+Xsky130_fd_pr__cap_mim_m3_2_26U9NK_1 VP vm12d sky130_fd_pr__cap_mim_m3_2_26U9NK
+Xeight-mirrors-p_6 LVDS_Bias VP vm12d eight-mirrors-p
+Xbias_curm_p_0 vm4d bias_curm_p_0/m1_120_n692# vm4d VP bias_curm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VSUBS VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xbias_curm_p_1 vm12d bias_curm_p_1/m1_120_n692# vm12d VP bias_curm_p
+Xbias_curm_p_3 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_p_2 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_p_4 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_1 bias_curm_n_1/m1_80_970# vm4d I_in VSUBS bias_curm_n
+Xbias_curm_n_0 bias_curm_n_0/m1_80_970# I_in I_in VSUBS bias_curm_n
+Xbias_curm_p_5 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_2 m2_3220_480# vm12d I_in VSUBS bias_curm_n
+
+
diff --git a/mag/bias/curr_mirror_distribution.ext b/mag/bias/curr_mirror_distribution.ext
new file mode 100644
index 0000000..3524382
--- /dev/null
+++ b/mag/bias/curr_mirror_distribution.ext
@@ -0,0 +1,282 @@
+timestamp 1654707512
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use bias_curm_p bias_curm_p_8 1 0 7640 0 1 910
+use bias_curm_p bias_curm_p_7 1 0 8730 0 1 910
+use bias_curm_p bias_curm_p_6 1 0 4370 0 1 910
+use bias_curm_p bias_curm_p_5 1 0 5460 0 1 910
+use bias_curm_p bias_curm_p_4 1 0 6550 0 1 910
+use bias_curm_p bias_curm_p_3 1 0 3280 0 1 910
+use bias_curm_p bias_curm_p_2 1 0 2190 0 1 910
+use bias_curm_p bias_curm_p_1 1 0 1100 0 1 910
+use bias_curm_p bias_curm_p_0 1 0 10 0 1 910
+node "I_out8" 0 339.76 9350 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out7" 0 310.037 8260 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out6" 0 310.037 7170 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out5" 0 310.037 6080 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out4" 0 310.037 4990 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out3" 0 300.368 3900 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "I_out2" 0 300.924 2810 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "m3_1720_60#" 0 309.991 1720 60 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134400 1600 0 0 0 0 0 0
+node "m2_290_1950#" 8 7510.65 290 1950 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 864000 11160 887400 11340 817236 10872 3552048 20452 0 0
+node "m1_8510_120#" 1 158.362 8510 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_7420_120#" 1 154.628 7420 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_6330_120#" 1 154.541 6330 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_5250_120#" 1 154.961 5250 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_4110_120#" 1 154.786 4110 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_3050_120#" 1 154.015 3050 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_2000_120#" 1 154.362 2000 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "m1_900_120#" 1 150.493 900 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 740 0 0 0 0 0 0 0 0 0 0
+node "I_in" 1 507.649 620 30 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33800 780 24000 680 144600 1710 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "I_out5" "I_out6" 37.0259
+cap "I_out7" "I_out6" 37.0259
+cap "m1_900_120#" "m1_2000_120#" 2.80253
+cap "m3_1720_60#" "I_out2" 37.0259
+cap "I_in" "m1_900_120#" 73.8
+cap "I_out2" "I_out3" 37.0259
+cap "m1_5250_120#" "m1_4110_120#" 2.66747
+cap "I_out2" "m1_3050_120#" 17.5019
+cap "m3_1720_60#" "I_in" 37.0692
+cap "m1_7420_120#" "m1_8510_120#" 2.83846
+cap "I_out3" "m1_4110_120#" 27.1187
+cap "I_out4" "I_out3" 37.0259
+cap "I_out8" "I_out7" 37.0259
+cap "m1_4110_120#" "m1_3050_120#" 2.952
+cap "m1_3050_120#" "m1_2000_120#" 2.99189
+cap "I_out4" "I_out5" 37.0259
+cap "m1_6330_120#" "m1_5250_120#" 2.87532
+cap "m1_6330_120#" "m1_7420_120#" 2.83846
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.40572
+cap "bias_curm_p_1/m1_216_n466#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 57.9361
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 555.909
+cap "bias_curm_p_2/li_380_1300#" "bias_curm_p_2/a_172_n788#" 474
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 240.233
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.2443
+cap "bias_curm_p_2/li_380_1300#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -208.594
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 106.339
+cap "bias_curm_p_2/li_380_1300#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 218.098
+cap "bias_curm_p_1/m1_216_n466#" "bias_curm_p_2/a_172_n788#" -23.6896
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_2/m1_216_n466#" -45.3224
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 222.114
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.53262
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 23.2394
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/w_n10_1380#" -115.573
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/m1_216_n466#" 214.098
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/w_n10_1380#" 249.616
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_6/w_n10_1380#" -134.009
+cap "bias_curm_p_1/m1_216_n466#" "bias_curm_p_2/m1_216_n466#" 21.546
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_1/m1_216_n466#" 114.984
+cap "bias_curm_p_1/m1_216_n466#" "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 11.6788
+cap "bias_curm_p_6/w_n10_1380#" "bias_curm_p_1/m1_216_n466#" 128.22
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 62.2714
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 113.241
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/a_172_n788#" 257.127
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 208.359
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_3/m1_216_n466#" 43.092
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" -88.1173
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_3/m1_216_n466#" -32.2864
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_3/m1_216_n466#" 83.8039
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 120.351
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/m1_216_n466#" 214.098
+cap "bias_curm_p_1/m1_216_n466#" "bias_curm_p_2/m1_216_n466#" 21.546
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 13.5707
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/m1_216_n466#" 67.7685
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_1/a_172_n788#" 2.90451
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_2/m1_216_n466#" 28.6504
+cap "bias_curm_p_2/m1_216_n466#" "bias_curm_p_6/li_380_1300#" 200.914
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/li_380_1300#" 384.178
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/m1_216_n466#" 20.6673
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.269396
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 5.16886
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_3/m1_216_n466#" 21.546
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 22.4303
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 6.48913
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/m1_216_n466#" 213.541
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 106.339
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 115.931
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 193.643
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 158.606
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" -99.5044
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_6/m1_216_n466#" 21.546
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/a_172_n788#" 210.484
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -141.04
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 208.709
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_5/m1_216_n466#" 28.968
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/li_380_1300#" 278.383
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.30638
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_6/a_172_n788#" 0.139773
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/m1_216_n466#" 67.7685
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.16089
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_2/a_172_n788#" 1.69008
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 10.4932
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/m1_216_n466#" 214.098
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/m1_216_n466#" 83.8249
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/m1_216_n466#" -4.24495
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_5/m1_216_n466#" 21.546
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_5/m1_216_n466#" 21.546
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_5/m1_216_n466#" -0.928674
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_5/m1_216_n466#" 83.6864
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 34.7956
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_5/m1_216_n466#" 214.098
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_5/m1_216_n466#" 38.8004
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_3/a_172_n788#" 1.57021
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/m1_216_n466#" -45.4893
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/li_380_1300#" 539.503
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/m1_216_n466#" 62.2714
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 253.475
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.19471
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/li_380_1300#" 249.147
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 208.709
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/li_380_1300#" -147.857
+cap "bias_curm_p_4/m1_216_n466#" "bias_curm_p_5/m1_216_n466#" 21.546
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 111.662
+cap "bias_curm_p_5/m1_216_n466#" "bias_curm_p_4/m1_216_n466#" 21.546
+cap "bias_curm_p_8/m1_216_n466#" "bias_curm_p_4/m1_216_n466#" 43.092
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_4/m1_216_n466#" 177.971
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/m1_216_n466#" 65.3644
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -95.2285
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/m1_216_n466#" 10.8637
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_8/m1_216_n466#" 11.3942
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 13.3002
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/m1_216_n466#" 17.7628
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 113.486
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/m1_216_n466#" 41.6263
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 17.4058
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/m1_216_n466#" 85.6054
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 209.962
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 208.5
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/m1_216_n466#" -44.3821
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/a_172_n788#" 212.612
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/m1_216_n466#" 293.501
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 140.144
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 14.3586
+cap "bias_curm_p_8/m1_216_n466#" "bias_curm_p_4/m1_216_n466#" 10.9336
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 115.931
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/li_380_1300#" -92.5714
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/m1_216_n466#" 45.7661
+cap "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/m1_216_n466#" 235.245
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_7/m1_216_n466#" 91.3298
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/a_172_n788#" 901.583
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -11.8617
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/m1_216_n466#" 67.7685
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/m1_216_n466#" -149.58
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_8/m1_216_n466#" 43.092
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/a_172_n788#" 2.71071
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 10.7456
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/m1_216_n466#" 313.422
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/a_172_n788#" 191.148
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" "bias_curm_p_8/m1_216_n466#" 2.88089
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_7/m1_216_n466#" 38.9548
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 2.71145
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/li_380_1300#" 12.4681
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.40572
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/li_380_1300#" 63.6727
+cap "bias_curm_p_2/li_380_1300#" "bias_curm_p_2/a_172_n788#" 977.059
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.535
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/a_172_n788#" 57.2193
+cap "bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.70297
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/w_n10_1380#" 63.2151
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_6/w_n10_1380#" 251.826
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_3/a_172_n788#" 4.69961
+cap "bias_curm_p_6/w_n10_1380#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 30.5864
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.07177
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.9823
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 52.9651
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/a_172_n788#" 47.4716
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/a_172_n788#" 533.333
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/a_172_n788#" 33.6166
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.78445
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 18.4258
+cap "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 2.04636
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 19.9169
+cap "bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" "bias_curm_p_6/a_172_n788#" 1.89178
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 50.7752
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 54.9197
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 48.1621
+cap "bias_curm_p_6/li_380_1300#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -21.9199
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 23.7358
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/li_380_1300#" -0.669524
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 31.2385
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n29_n200#" 5.54582
+cap "bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/li_380_1300#" 78.5155
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_2/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n129_n297#" 1.2637
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.30638
+cap "bias_curm_p_6/a_172_n788#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 57.3524
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.535
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.85308
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 64.918
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.60647
+cap "bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 12.035
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 131.464
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 57.3524
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_3/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 1.18269
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/a_172_n788#" 644.456
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 47.0013
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 52.7459
+cap "bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.40737
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 9.81419
+cap "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.9823
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.26727
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/li_380_1300#" 153.638
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 33.3322
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 71.0869
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 50.7752
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n287_n297#" 1.2637
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/li_380_1300#" 389.223
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n225_n518#" 6.68837
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 9.7151
+cap "bias_curm_p_8/a_172_n788#" "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 84.2826
+cap "bias_curm_p_8/li_380_1300#" "bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 45.5685
+cap "bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "bias_curm_p_8/li_380_1300#" -6.17895
+merge "bias_curm_p_7/a_172_n788#" "bias_curm_p_4/a_172_n788#" -41654.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -62667500 -3960 0 0 72500 -730 0 0 0 0 0 0
+merge "bias_curm_p_4/a_172_n788#" "bias_curm_p_8/a_172_n788#"
+merge "bias_curm_p_8/a_172_n788#" "m1_7420_120#"
+merge "m1_7420_120#" "m1_8510_120#"
+merge "m1_8510_120#" "bias_curm_p_5/a_172_n788#"
+merge "bias_curm_p_5/a_172_n788#" "m1_6330_120#"
+merge "m1_6330_120#" "bias_curm_p_6/a_172_n788#"
+merge "bias_curm_p_6/a_172_n788#" "m1_5250_120#"
+merge "m1_5250_120#" "bias_curm_p_0/m1_216_n466#"
+merge "bias_curm_p_0/m1_216_n466#" "bias_curm_p_3/a_172_n788#"
+merge "bias_curm_p_3/a_172_n788#" "m1_3050_120#"
+merge "m1_3050_120#" "m1_4110_120#"
+merge "m1_4110_120#" "bias_curm_p_0/a_172_n788#"
+merge "bias_curm_p_0/a_172_n788#" "I_in"
+merge "I_in" "bias_curm_p_1/a_172_n788#"
+merge "bias_curm_p_1/a_172_n788#" "m1_900_120#"
+merge "m1_900_120#" "bias_curm_p_2/a_172_n788#"
+merge "bias_curm_p_2/a_172_n788#" "m1_2000_120#"
+merge "bias_curm_p_7/VSUBS" "bias_curm_p_8/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "bias_curm_p_8/VSUBS" "bias_curm_p_4/VSUBS"
+merge "bias_curm_p_4/VSUBS" "bias_curm_p_5/VSUBS"
+merge "bias_curm_p_5/VSUBS" "bias_curm_p_3/VSUBS"
+merge "bias_curm_p_3/VSUBS" "bias_curm_p_6/VSUBS"
+merge "bias_curm_p_6/VSUBS" "bias_curm_p_0/VSUBS"
+merge "bias_curm_p_0/VSUBS" "bias_curm_p_1/VSUBS"
+merge "bias_curm_p_1/VSUBS" "bias_curm_p_2/VSUBS"
+merge "bias_curm_p_2/VSUBS" "VSUBS"
+merge "bias_curm_p_5/m1_216_n466#" "I_out5" -229.632 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230000 -730 0 0 0 0 0 0
+merge "bias_curm_p_1/m1_216_n466#" "m3_1720_60#" -274.026 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230000 -730 0 0 0 0 0 0
+merge "bias_curm_p_7/w_172_n788#" "bias_curm_p_8/w_172_n788#" 105288 0 0 0 0 29624000 -37120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53008520 -11160 0 0 0 0 0 0 0 0
+merge "bias_curm_p_8/w_172_n788#" "bias_curm_p_8/li_380_1300#"
+merge "bias_curm_p_8/li_380_1300#" "bias_curm_p_4/w_172_n788#"
+merge "bias_curm_p_4/w_172_n788#" "bias_curm_p_5/li_380_1300#"
+merge "bias_curm_p_5/li_380_1300#" "bias_curm_p_5/w_172_n788#"
+merge "bias_curm_p_5/w_172_n788#" "bias_curm_p_6/li_380_1300#"
+merge "bias_curm_p_6/li_380_1300#" "bias_curm_p_2/w_172_n788#"
+merge "bias_curm_p_2/w_172_n788#" "bias_curm_p_3/w_172_n788#"
+merge "bias_curm_p_3/w_172_n788#" "bias_curm_p_6/w_n10_1380#"
+merge "bias_curm_p_6/w_n10_1380#" "bias_curm_p_0/w_172_n788#"
+merge "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/w_172_n788#"
+merge "bias_curm_p_1/w_172_n788#" "bias_curm_p_2/li_380_1300#"
+merge "bias_curm_p_2/li_380_1300#" "m2_290_1950#"
+merge "bias_curm_p_6/m1_216_n466#" "I_out4" -229.632 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230000 -730 0 0 0 0 0 0
+merge "bias_curm_p_7/m1_216_n466#" "I_out8" -259.355 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230000 -730 0 0 0 0 0 0
+merge "bias_curm_p_2/m1_216_n466#" "I_out2" -111.509 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 582500 -730 0 0 0 0 0 0
+merge "bias_curm_p_3/m1_216_n466#" "I_out3" -319.294 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -91200 -730 0 0 0 0 0 0
+merge "bias_curm_p_4/m1_216_n466#" "I_out6" -155.368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 622500 -730 0 0 0 0 0 0
+merge "bias_curm_p_8/m1_216_n466#" "I_out7" 308.662 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 580000 -730 0 0 0 0 0 0
diff --git a/mag/bias/curr_mirror_distribution.mag b/mag/bias/curr_mirror_distribution.mag
new file mode 100644
index 0000000..d2e6c59
--- /dev/null
+++ b/mag/bias/curr_mirror_distribution.mag
@@ -0,0 +1,226 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654707512
+<< metal1 >>
+rect 620 110 880 160
+rect 900 120 1210 180
+rect 2000 120 2310 180
+rect 3050 120 3360 180
+rect 4110 120 4420 180
+rect 5250 120 5560 180
+rect 6330 120 6640 180
+rect 7420 120 7730 180
+rect 8510 120 8820 180
+rect 620 30 630 110
+rect 870 30 880 110
+<< via1 >>
+rect 630 30 870 110
+<< metal2 >>
+rect 290 2240 610 2250
+rect 290 1950 610 1960
+rect 1380 2240 1700 2250
+rect 1380 1950 1700 1960
+rect 2460 2240 2780 2250
+rect 2460 1950 2780 1960
+rect 3550 2240 3870 2250
+rect 3550 1950 3870 1960
+rect 4640 2240 4960 2250
+rect 4640 1950 4960 1960
+rect 5730 2240 6050 2250
+rect 5730 1950 6050 1960
+rect 6820 2240 7140 2250
+rect 6820 1950 7140 1960
+rect 7910 2240 8230 2250
+rect 7910 1950 8230 1960
+rect 9000 2240 9320 2250
+rect 9000 1950 9320 1960
+rect 630 110 870 120
+rect 630 20 870 30
+<< via2 >>
+rect 290 1960 610 2240
+rect 1380 1960 1700 2240
+rect 2460 1960 2780 2240
+rect 3550 1960 3870 2240
+rect 4640 1960 4960 2240
+rect 5730 1960 6050 2240
+rect 6820 1960 7140 2240
+rect 7910 1960 8230 2240
+rect 9000 1960 9320 2240
+rect 630 30 870 110
+<< metal3 >>
+rect 280 2240 620 2245
+rect 280 1960 290 2240
+rect 610 1960 620 2240
+rect 280 1955 620 1960
+rect 1370 2240 1710 2245
+rect 1370 1960 1380 2240
+rect 1700 1960 1710 2240
+rect 1370 1955 1710 1960
+rect 2450 2240 2790 2245
+rect 2450 1960 2460 2240
+rect 2780 1960 2790 2240
+rect 2450 1955 2790 1960
+rect 3540 2240 3880 2245
+rect 3540 1960 3550 2240
+rect 3870 1960 3880 2240
+rect 3540 1955 3880 1960
+rect 4630 2240 4970 2245
+rect 4630 1960 4640 2240
+rect 4960 1960 4970 2240
+rect 4630 1955 4970 1960
+rect 5720 2240 6060 2245
+rect 5720 1960 5730 2240
+rect 6050 1960 6060 2240
+rect 5720 1955 6060 1960
+rect 6810 2240 7150 2245
+rect 6810 1960 6820 2240
+rect 7140 1960 7150 2240
+rect 6810 1955 7150 1960
+rect 7900 2240 8240 2245
+rect 7900 1960 7910 2240
+rect 8230 1960 8240 2240
+rect 7900 1955 8240 1960
+rect 8990 2240 9330 2245
+rect 8990 1960 9000 2240
+rect 9320 1960 9330 2240
+rect 8990 1955 9330 1960
+rect 630 115 870 620
+rect 620 110 880 115
+rect 620 30 630 110
+rect 870 30 880 110
+rect 1720 60 1960 620
+rect 2810 60 3050 620
+rect 3900 60 4140 620
+rect 4990 60 5230 620
+rect 6080 60 6320 620
+rect 7170 60 7410 620
+rect 8260 60 8500 620
+rect 9350 60 9590 620
+rect 620 25 880 30
+<< via3 >>
+rect 290 1960 610 2240
+rect 1380 1960 1700 2240
+rect 2460 1960 2780 2240
+rect 3550 1960 3870 2240
+rect 4640 1960 4960 2240
+rect 5730 1960 6050 2240
+rect 6820 1960 7140 2240
+rect 7910 1960 8230 2240
+rect 9000 1960 9320 2240
+<< metal4 >>
+rect 289 2240 611 2241
+rect 289 1960 290 2240
+rect 610 1960 611 2240
+rect 289 1959 611 1960
+rect 1379 2240 1701 2241
+rect 1379 1960 1380 2240
+rect 1700 1960 1701 2240
+rect 1379 1959 1701 1960
+rect 2459 2240 2781 2241
+rect 2459 1960 2460 2240
+rect 2780 1960 2781 2240
+rect 2459 1959 2781 1960
+rect 3549 2240 3871 2241
+rect 3549 1960 3550 2240
+rect 3870 1960 3871 2240
+rect 3549 1959 3871 1960
+rect 4639 2240 4961 2241
+rect 4639 1960 4640 2240
+rect 4960 1960 4961 2240
+rect 4639 1959 4961 1960
+rect 5729 2240 6051 2241
+rect 5729 1960 5730 2240
+rect 6050 1960 6051 2240
+rect 5729 1959 6051 1960
+rect 6819 2240 7141 2241
+rect 6819 1960 6820 2240
+rect 7140 1960 7141 2240
+rect 6819 1959 7141 1960
+rect 7909 2240 8231 2241
+rect 7909 1960 7910 2240
+rect 8230 1960 8231 2240
+rect 7909 1959 8231 1960
+rect 8999 2240 9321 2241
+rect 8999 1960 9000 2240
+rect 9320 1960 9321 2240
+rect 8999 1959 9321 1960
+<< via4 >>
+rect 290 1960 610 2240
+rect 1380 1960 1700 2240
+rect 2460 1960 2780 2240
+rect 3550 1960 3870 2240
+rect 4640 1960 4960 2240
+rect 5730 1960 6050 2240
+rect 6820 1960 7140 2240
+rect 7910 1960 8230 2240
+rect 9000 1960 9320 2240
+<< metal5 >>
+rect 0 2240 9830 2300
+rect 0 1960 290 2240
+rect 610 1960 1380 2240
+rect 1700 1960 2460 2240
+rect 2780 1960 3550 2240
+rect 3870 1960 4640 2240
+rect 4960 1960 5730 2240
+rect 6050 1960 6820 2240
+rect 7140 1960 7910 2240
+rect 8230 1960 9000 2240
+rect 9320 1960 9830 2240
+rect 0 1940 9830 1960
+rect 266 1936 634 1940
+rect 1356 1936 1724 1940
+rect 2436 1936 2804 1940
+rect 3526 1936 3894 1940
+rect 4616 1936 4984 1940
+rect 5706 1936 6074 1940
+rect 6796 1936 7164 1940
+rect 7886 1936 8254 1940
+rect 8976 1936 9344 1940
+use bias_curm_p  bias_curm_p_0
+timestamp 1654704381
+transform 1 0 10 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_1
+timestamp 1654704381
+transform 1 0 1100 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_2
+timestamp 1654704381
+transform 1 0 2190 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_3
+timestamp 1654704381
+transform 1 0 3280 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_4
+timestamp 1654704381
+transform 1 0 6550 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_5
+timestamp 1654704381
+transform 1 0 5460 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_6
+timestamp 1654704381
+transform 1 0 4370 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_7
+timestamp 1654704381
+transform 1 0 8730 0 1 910
+box -10 -910 1100 1390
+use bias_curm_p  bias_curm_p_8
+timestamp 1654704381
+transform 1 0 7640 0 1 910
+box -10 -910 1100 1390
+<< labels >>
+rlabel metal3 680 60 790 150 1 I_in
+rlabel space 1750 50 1860 140 1 I_out1
+rlabel metal3 2850 60 2960 150 1 I_out2
+rlabel metal3 3940 70 4050 160 1 I_out3
+rlabel metal3 5030 70 5140 160 1 I_out4
+rlabel metal3 6130 70 6240 160 1 I_out5
+rlabel metal3 7200 70 7310 160 1 I_out6
+rlabel metal3 8290 70 8400 160 1 I_out7
+rlabel metal3 9400 70 9510 160 1 I_out8
+<< end >>
diff --git a/mag/bias/curr_mirror_distribution.spice b/mag/bias/curr_mirror_distribution.spice
new file mode 100644
index 0000000..8521397
--- /dev/null
+++ b/mag/bias/curr_mirror_distribution.spice
@@ -0,0 +1,57 @@
+* SPICE3 file created from curr_mirror_distribution.ext - technology: sky130B
+
+.subckt sky130_fd_pr__pfet_01v8_U4PLGH a_n321_n518# a_n33_118# a_15_549# a_207_n615#
++ a_n225_118# a_n413_118# a_111_21# a_n369_n615# a_207_549# a_n33_n518# a_111_n87#
++ a_63_118# a_15_n615# w_n551_n737# a_n177_n615# a_255_118# a_n177_549# a_159_n518#
++ a_n81_21# a_n273_21# a_303_21# a_n413_n518# a_303_n87# a_n129_118# a_255_n518# a_n369_549#
++ a_351_n518# a_n81_n87# a_n321_118# a_n273_n87# a_n129_n518# a_63_n518# a_159_118#
++ a_n225_n518# a_351_118#
+X0 a_63_n518# a_15_n615# a_n33_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n129_n518# a_n177_n615# a_n225_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n33_n518# a_n81_n87# a_n129_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_351_n518# a_303_n87# a_255_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n33_118# a_n81_21# a_n129_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_351_118# a_303_21# a_255_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_159_118# a_111_21# a_63_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_255_118# a_207_549# a_159_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n321_118# a_n369_549# a_n413_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_n225_118# a_n273_21# a_n321_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X10 a_n129_118# a_n177_549# a_n225_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 a_255_n518# a_207_n615# a_159_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n321_n518# a_n369_n615# a_n413_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X13 a_63_118# a_15_549# a_n33_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X14 a_159_n518# a_111_n87# a_63_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n225_n518# a_n273_n87# a_n321_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PDCJZ5 a_n345_n200# a_29_n297# a_n129_n297# a_187_n297#
++ a_129_n200# a_n287_n297# a_287_n200# w_n483_n419# a_n29_n200# a_n187_n200#
+X0 a_n187_n200# a_n287_n297# a_n345_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_287_n200# a_187_n297# a_129_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n200# a_29_n297# a_n29_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n200# a_n129_n297# a_n187_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt bias_curm_p w_172_376# m1_216_n466# a_172_n788#
+Xsky130_fd_pr__pfet_01v8_U4PLGH_0 m1_216_n466# m1_120_n692# a_172_n788# a_172_n788#
++ m1_120_n692# m1_120_n692# a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788#
++ m1_216_n466# a_172_n788# w_172_376# a_172_n788# m1_216_n466# a_172_n788# m1_120_n692#
++ a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# m1_216_n466#
++ a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# a_172_n788# m1_216_n466# m1_216_n466#
++ m1_120_n692# m1_120_n692# m1_120_n692# sky130_fd_pr__pfet_01v8_U4PLGH
+Xsky130_fd_pr__pfet_01v8_PDCJZ5_0 m1_120_n692# a_172_n788# a_172_n788# a_172_n788#
++ w_172_376# a_172_n788# m1_120_n692# w_172_376# m1_120_n692# w_172_376# sky130_fd_pr__pfet_01v8_PDCJZ5
+.ends
+
+
+Xbias_curm_p_6 m2_290_1950# I_out4 I_in bias_curm_p
+Xbias_curm_p_7 m2_290_1950# I_out8 I_in bias_curm_p
+Xbias_curm_p_8 m2_290_1950# I_out7 I_in bias_curm_p
+Xbias_curm_p_0 m2_290_1950# I_in I_in bias_curm_p
+Xbias_curm_p_1 m2_290_1950# m3_1720_60# I_in bias_curm_p
+Xbias_curm_p_2 m2_290_1950# I_out2 I_in bias_curm_p
+Xbias_curm_p_3 m2_290_1950# I_out3 I_in bias_curm_p
+Xbias_curm_p_4 m2_290_1950# I_out6 I_in bias_curm_p
+Xbias_curm_p_5 m2_290_1950# I_out5 I_in bias_curm_p
+
+
diff --git a/mag/bias/eight-mirrors-p.ext b/mag/bias/eight-mirrors-p.ext
new file mode 100644
index 0000000..781cd7b
--- /dev/null
+++ b/mag/bias/eight-mirrors-p.ext
@@ -0,0 +1,241 @@
+timestamp 1654704381
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use bias_curm_p bias_curm_p_7 1 0 10 0 1 7750
+use bias_curm_p bias_curm_p_6 1 0 1100 0 1 7750
+use bias_curm_p bias_curm_p_5 1 0 10 0 1 5470
+use bias_curm_p bias_curm_p_4 1 0 1100 0 1 5470
+use bias_curm_p bias_curm_p_3 1 0 1100 0 1 3190
+use bias_curm_p bias_curm_p_2 1 0 10 0 1 3190
+use bias_curm_p bias_curm_p_1 1 0 1100 0 1 910
+use bias_curm_p bias_curm_p_0 1 0 10 0 1 910
+node "m3_590_440#" 3 5861.84 590 440 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4618800 32960 0 0 0 0 0 0
+node "m2_2010_1740#" 1 354.138 2010 1740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_920_1680#" 1 299.807 920 1680 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_2010_4060#" 1 354.708 2010 4060 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_920_3970#" 1 300.724 920 3970 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_2010_6260#" 1 351.685 2010 6260 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_920_6270#" 1 285.783 920 6270 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97200 1860 0 0 0 0 0 0 0 0
+node "m2_860_8500#" 1 542.14 860 8500 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 190500 2840 0 0 0 0 0 0 0 0
+node "m2_150_1940#" 6 5893.87 150 1940 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 440000 7520 4334400 31640 0 0 0 0 0 0
+node "m1_910_120#" 1 148.766 910 120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 680 0 0 0 0 0 0 0 0 0 0
+node "m1_900_2400#" 1 263.899 900 2400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31400 1260 0 0 0 0 0 0 0 0 0 0
+node "m1_50_2120#" 1 157.25 50 2120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 780 0 0 0 0 0 0 0 0 0 0
+node "m1_910_4680#" 1 281.757 910 4680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33800 1340 0 0 0 0 0 0 0 0 0 0
+node "m1_50_4400#" 1 157.334 50 4400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 780 0 0 0 0 0 0 0 0 0 0
+node "m1_660_6680#" 3 407.726 660 6680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58300 2320 0 0 0 0 0 0 0 0 0 0
+node "m1_50_6680#" 1 153.731 50 6680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 780 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m2_920_1680#" "m2_150_1940#" 59.5523
+cap "m1_50_2120#" "m1_900_2400#" 12.7021
+cap "m2_2010_1740#" "m2_2010_4060#" 3.10728
+cap "m2_2010_4060#" "m2_150_1940#" 16.5423
+cap "m2_920_6270#" "m1_660_6680#" 178.456
+cap "m2_2010_6260#" "m2_2010_4060#" 3.37554
+cap "m2_920_3970#" "m2_920_6270#" 3.14899
+cap "m2_920_3970#" "m2_150_1940#" 59.5523
+cap "m3_590_440#" "m2_150_1940#" 4891.36
+cap "m1_50_6680#" "m1_660_6680#" 14.2937
+cap "m1_50_4400#" "m1_910_4680#" 12.6679
+cap "m2_860_8500#" "m2_920_6270#" 3.30423
+cap "m2_920_1680#" "m1_900_2400#" 118.428
+cap "m2_860_8500#" "m2_150_1940#" 353.93
+cap "m2_860_8500#" "m2_2010_6260#" 3.28112
+cap "m2_920_3970#" "m2_920_1680#" 3.17027
+cap "m1_910_4680#" "m2_150_1940#" 16.7303
+cap "m2_920_3970#" "m2_2010_4060#" 20.1546
+cap "m3_590_440#" "m1_660_6680#" 80.627
+cap "m2_2010_1740#" "m2_150_1940#" 16.5423
+cap "m2_920_6270#" "m2_150_1940#" 59.5523
+cap "m2_2010_6260#" "m2_920_6270#" 23.3794
+cap "m2_2010_6260#" "m2_150_1940#" 16.5423
+cap "m2_920_1680#" "m2_2010_1740#" 21.3639
+cap "m2_920_3970#" "m1_910_4680#" 118.428
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_2/m1_120_n692#" -153.924
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/m1_216_n466#" -286.529
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/m1_120_n692#" 33.0189
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_2/m1_120_n692#" 205.09
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_2/m1_120_n692#" 260.265
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/w_n10_1380#" -193.177
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_3/m1_216_n466#" -146.136
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_3/m1_120_n692#" 106.339
+cap "bias_curm_p_3/w_n10_1380#" "bias_curm_p_3/m1_120_n692#" 20.4894
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/m1_120_n692#" 64.5567
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 23.2394
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/w_n10_1380#" 39.8116
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_2/m1_120_n692#" 11.6788
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/w_n10_1380#" -277.271
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/a_172_n788#" 38.1935
+cap "bias_curm_p_3/m1_216_n466#" "bias_curm_p_3/a_172_n788#" -474.136
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/w_n10_1380#" -269.448
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/m1_216_n466#" 47.2395
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/m1_120_n692#" 236.857
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/a_172_n788#" 826.876
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_3/m1_216_n466#" 505.713
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_2/m1_120_n692#" 656.679
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/a_172_n788#" -366.985
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/m1_216_n466#" 397.645
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 98.4728
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_3/a_172_n788#" 140.288
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/m1_216_n466#" 323.691
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_2/m1_120_n692#" 13.2955
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/m1_120_n692#" 63.0108
+cap "bias_curm_p_3/li_380_1300#" "bias_curm_p_3/m1_216_n466#" 457.265
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_3/li_380_1300#" 2.56884
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/li_380_1300#" 424.963
+cap "bias_curm_p_3/a_172_n788#" "bias_curm_p_3/li_380_1300#" -862.753
+cap "bias_curm_p_2/m1_120_n692#" "bias_curm_p_3/m1_216_n466#" 5.19448
+cap "bias_curm_p_3/m1_120_n692#" "bias_curm_p_3/m1_216_n466#" 536.492
+cap "bias_curm_p_5/m1_120_n692#" "bias_curm_p_4/m1_216_n466#" 45.9357
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_4/m1_216_n466#" -161.764
+cap "bias_curm_p_5/m1_120_n692#" "bias_curm_p_5/w_n10_1380#" 482.01
+cap "bias_curm_p_5/m1_120_n692#" "bias_curm_p_5/m1_216_n466#" 149.725
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_5/m1_216_n466#" 365.33
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_5/m1_120_n692#" 124.695
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_5/w_n10_1380#" -11.8523
+cap "bias_curm_p_4/m1_120_n692#" "bias_curm_p_5/w_n10_1380#" 310.937
+cap "bias_curm_p_4/m1_120_n692#" "bias_curm_p_5/m1_120_n692#" 107.672
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_5/m1_216_n466#" 94.4207
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_4/m1_216_n466#" 15.4241
+cap "bias_curm_p_4/m1_120_n692#" "bias_curm_p_5/a_172_n788#" -6.52606
+cap "bias_curm_p_4/m1_216_n466#" "bias_curm_p_4/m1_120_n692#" 214.122
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_4/m1_216_n466#" 283.212
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_5/m1_120_n692#" 2.17746
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_4/m1_120_n692#" 48.93
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_5/a_172_n788#" -557.614
+cap "bias_curm_p_5/m1_120_n692#" "bias_curm_p_4/m1_120_n692#" 23.034
+cap "bias_curm_p_5/w_n10_1380#" "bias_curm_p_4/m1_216_n466#" 65.7269
+cap "bias_curm_p_5/a_172_n788#" "bias_curm_p_4/m1_120_n692#" 18.7011
+cap "bias_curm_p_5/m1_120_n692#" "bias_curm_p_4/m1_216_n466#" 6.48431
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_6/m1_120_n692#" 341.605
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" 161.939
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_5/m1_216_n466#" 175.716
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_6/m1_120_n692#" -359.908
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_5/m1_216_n466#" 389.801
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_7/a_172_n788#" 751.28
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_4/m1_216_n466#" 29.3782
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_5/m1_216_n466#" 123.301
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_4/m1_216_n466#" -68.4487
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" 99.8896
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_7/m1_120_n692#" 879.913
+cap "bias_curm_p_4/m1_216_n466#" "bias_curm_p_7/a_172_n788#" -141.265
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_4/m1_216_n466#" 249.426
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_6/m1_120_n692#" 78.9256
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_4/m1_216_n466#" 6.28059
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/w_n10_1380#" -1311.81
+cap "bias_curm_p_7/w_n10_1380#" "bias_curm_p_6/m1_120_n692#" 370.089
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" 16.7899
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_4/m1_216_n466#" 273.387
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/w_n10_1380#" 0.391381
+cap "bias_curm_p_4/m1_216_n466#" "bias_curm_p_6/m1_120_n692#" 250.012
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" -80.9942
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_6/m1_216_n466#" 28.5579
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/m1_216_n466#" 207.571
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/w_172_n788#" 922.543
+cap "bias_curm_p_7/w_172_n788#" "bias_curm_p_6/m1_216_n466#" -67.4287
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/m1_216_n466#" 247.976
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/w_172_n788#" 1014.02
+cap "bias_curm_p_7/w_172_n788#" "bias_curm_p_7/m1_216_n466#" 539.226
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_6/m1_216_n466#" -261.962
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_6/m1_216_n466#" 354.105
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" 35.9133
+cap "bias_curm_p_7/w_172_n788#" "bias_curm_p_6/m1_216_n466#" 453.797
+cap "bias_curm_p_7/w_172_n788#" "bias_curm_p_7/m1_216_n466#" 1.42109e-14
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/w_172_n788#" 373.054
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_6/m1_216_n466#" 288.195
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/w_172_n788#" -2024.98
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/m1_216_n466#" 153.325
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/m1_216_n466#" -9.83377
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/m1_216_n466#" 317.173
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" -26.1769
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/m1_120_n692#" 829.724
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/a_172_n788#" -172.458
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/m1_120_n692#" 57.9361
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/a_172_n788#" -45.6298
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_6/m1_216_n466#" 20.2863
+cap "bias_curm_p_7/a_172_n788#" "bias_curm_p_7/li_380_1300#" -1122.58
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/a_172_n788#" 235.129
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/li_380_1300#" 37.8006
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_7/li_380_1300#" 0.270192
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_6/m1_216_n466#" 218.167
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/li_380_1300#" -135.516
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" 40.0998
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/m1_120_n692#" 529.012
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" 114.435
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/a_172_n788#" 304.477
+cap "bias_curm_p_7/m1_216_n466#" "bias_curm_p_7/li_380_1300#" 0.0795861
+cap "bias_curm_p_7/m1_120_n692#" "bias_curm_p_7/a_172_n788#" 0.2642
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/m1_120_n692#" -672.923
+cap "bias_curm_p_7/li_380_1300#" "bias_curm_p_7/a_172_n788#" -618.417
+cap "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/li_380_1300#" 0.064281
+merge "bias_curm_p_4/m1_120_n692#" "bias_curm_p_6/m1_120_n692#" -1121.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 513860 -5820 0 0 0 0 0 0 0 0
+merge "bias_curm_p_6/m1_120_n692#" "m2_2010_6260#"
+merge "m2_2010_6260#" "bias_curm_p_1/m1_120_n692#"
+merge "bias_curm_p_1/m1_120_n692#" "m2_2010_4060#"
+merge "m2_2010_4060#" "bias_curm_p_3/m1_120_n692#"
+merge "bias_curm_p_3/m1_120_n692#" "m2_2010_1740#"
+merge "m2_2010_1740#" "bias_curm_p_5/m1_120_n692#"
+merge "bias_curm_p_5/m1_120_n692#" "m2_860_8500#"
+merge "m2_860_8500#" "bias_curm_p_7/m1_120_n692#"
+merge "bias_curm_p_7/m1_120_n692#" "m2_920_6270#"
+merge "m2_920_6270#" "bias_curm_p_0/m1_120_n692#"
+merge "bias_curm_p_0/m1_120_n692#" "m2_920_3970#"
+merge "m2_920_3970#" "bias_curm_p_2/m1_120_n692#"
+merge "bias_curm_p_2/m1_120_n692#" "m2_920_1680#"
+merge "bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "bias_curm_p_6/a_172_n788#" -10013.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -18317400 -3860 0 0 0 0 0 0 0 0 0 0
+merge "bias_curm_p_6/a_172_n788#" "bias_curm_p_7/a_172_n788#"
+merge "bias_curm_p_7/a_172_n788#" "m1_50_6680#"
+merge "m1_50_6680#" "m1_660_6680#"
+merge "m1_660_6680#" "bias_curm_p_4/a_172_n788#"
+merge "bias_curm_p_4/a_172_n788#" "bias_curm_p_5/a_172_n788#"
+merge "bias_curm_p_5/a_172_n788#" "bias_curm_p_0/a_172_n788#"
+merge "bias_curm_p_0/a_172_n788#" "m1_50_4400#"
+merge "m1_50_4400#" "m1_910_4680#"
+merge "m1_910_4680#" "bias_curm_p_1/a_172_n788#"
+merge "bias_curm_p_1/a_172_n788#" "m1_910_120#"
+merge "m1_910_120#" "bias_curm_p_2/a_172_n788#"
+merge "bias_curm_p_2/a_172_n788#" "m1_50_2120#"
+merge "m1_50_2120#" "bias_curm_p_3/a_172_n788#"
+merge "bias_curm_p_3/a_172_n788#" "m1_900_2400#"
+merge "bias_curm_p_6/VSUBS" "bias_curm_p_7/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "bias_curm_p_7/VSUBS" "bias_curm_p_4/VSUBS"
+merge "bias_curm_p_4/VSUBS" "bias_curm_p_5/VSUBS"
+merge "bias_curm_p_5/VSUBS" "bias_curm_p_0/VSUBS"
+merge "bias_curm_p_0/VSUBS" "bias_curm_p_1/VSUBS"
+merge "bias_curm_p_1/VSUBS" "bias_curm_p_2/VSUBS"
+merge "bias_curm_p_2/VSUBS" "bias_curm_p_3/VSUBS"
+merge "bias_curm_p_3/VSUBS" "VSUBS"
+merge "bias_curm_p_4/w_172_376#" "bias_curm_p_5/w_172_376#" 49405.9 0 0 0 0 13314400 -31880 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11566540 -5440 0 0 0 0 0 0 0 0
+merge "bias_curm_p_5/w_172_376#" "bias_curm_p_7/li_380_1300#"
+merge "bias_curm_p_7/li_380_1300#" "bias_curm_p_2/w_172_n260#"
+merge "bias_curm_p_2/w_172_n260#" "bias_curm_p_6/w_172_n788#"
+merge "bias_curm_p_6/w_172_n788#" "bias_curm_p_7/w_172_n788#"
+merge "bias_curm_p_7/w_172_n788#" "bias_curm_p_3/w_172_n260#"
+merge "bias_curm_p_3/w_172_n260#" "bias_curm_p_4/w_172_n788#"
+merge "bias_curm_p_4/w_172_n788#" "bias_curm_p_5/w_172_n788#"
+merge "bias_curm_p_5/w_172_n788#" "bias_curm_p_6/w_n10_1380#"
+merge "bias_curm_p_6/w_n10_1380#" "bias_curm_p_7/w_n10_1380#"
+merge "bias_curm_p_7/w_n10_1380#" "bias_curm_p_0/w_172_376#"
+merge "bias_curm_p_0/w_172_376#" "bias_curm_p_1/w_172_376#"
+merge "bias_curm_p_1/w_172_376#" "bias_curm_p_2/li_380_1300#"
+merge "bias_curm_p_2/li_380_1300#" "bias_curm_p_4/w_n10_1380#"
+merge "bias_curm_p_4/w_n10_1380#" "bias_curm_p_5/w_n10_1380#"
+merge "bias_curm_p_5/w_n10_1380#" "bias_curm_p_2/w_172_n788#"
+merge "bias_curm_p_2/w_172_n788#" "bias_curm_p_3/w_172_n788#"
+merge "bias_curm_p_3/w_172_n788#" "bias_curm_p_3/li_380_1300#"
+merge "bias_curm_p_3/li_380_1300#" "bias_curm_p_0/w_172_n788#"
+merge "bias_curm_p_0/w_172_n788#" "bias_curm_p_1/w_172_n788#"
+merge "bias_curm_p_1/w_172_n788#" "m2_150_1940#"
+merge "m2_150_1940#" "bias_curm_p_2/w_n10_1380#"
+merge "bias_curm_p_2/w_n10_1380#" "bias_curm_p_3/w_n10_1380#"
+merge "bias_curm_p_6/m1_216_n466#" "bias_curm_p_7/m1_216_n466#" -6216.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9895500 -16780 0 0 0 0 0 0
+merge "bias_curm_p_7/m1_216_n466#" "bias_curm_p_4/m1_216_n466#"
+merge "bias_curm_p_4/m1_216_n466#" "bias_curm_p_5/m1_216_n466#"
+merge "bias_curm_p_5/m1_216_n466#" "bias_curm_p_0/m1_216_n466#"
+merge "bias_curm_p_0/m1_216_n466#" "bias_curm_p_1/m1_216_n466#"
+merge "bias_curm_p_1/m1_216_n466#" "bias_curm_p_2/m1_216_n466#"
+merge "bias_curm_p_2/m1_216_n466#" "bias_curm_p_3/m1_216_n466#"
+merge "bias_curm_p_3/m1_216_n466#" "m3_590_440#"
diff --git a/mag/bias/eight-mirrors-p.mag b/mag/bias/eight-mirrors-p.mag
new file mode 100644
index 0000000..5f4d383
--- /dev/null
+++ b/mag/bias/eight-mirrors-p.mag
@@ -0,0 +1,110 @@
+magic
+tech sky130B
+timestamp 1654704381
+<< metal1 >>
+rect 25 3340 50 3510
+rect 440 3480 605 3510
+rect 570 3365 595 3480
+rect 330 3340 600 3365
+rect 25 2200 50 2370
+rect 455 2340 620 2370
+rect 570 2200 595 2340
+rect 25 1060 50 1230
+rect 450 1200 595 1230
+rect 570 1060 595 1200
+rect 455 60 595 90
+<< metal2 >>
+rect 75 4495 200 4500
+rect 75 4390 200 4395
+rect 620 4495 745 4500
+rect 620 4390 745 4395
+rect 430 4250 1065 4325
+rect 75 3355 200 3360
+rect 75 3250 200 3255
+rect 460 3135 520 3540
+rect 620 3355 745 3360
+rect 620 3250 745 3255
+rect 1005 3130 1065 3535
+rect 75 2215 200 2220
+rect 75 2110 200 2115
+rect 460 1985 520 2390
+rect 620 2215 745 2220
+rect 620 2110 745 2115
+rect 1005 2030 1065 2435
+rect 75 1075 200 1080
+rect 75 970 200 975
+rect 460 840 520 1245
+rect 620 1075 745 1080
+rect 620 970 745 975
+rect 1005 870 1065 1275
+<< via2 >>
+rect 75 4395 200 4495
+rect 620 4395 745 4495
+rect 75 3255 200 3355
+rect 620 3255 745 3355
+rect 75 2115 200 2215
+rect 620 2115 745 2215
+rect 75 975 200 1075
+rect 620 975 745 1075
+<< metal3 >>
+rect 70 4495 960 4570
+rect 70 4395 75 4495
+rect 200 4395 620 4495
+rect 745 4395 960 4495
+rect 70 4390 960 4395
+rect 70 3355 205 4390
+rect 70 3255 75 3355
+rect 200 3255 205 3355
+rect 70 2215 205 3255
+rect 70 2115 75 2215
+rect 200 2115 205 2215
+rect 70 1075 205 2115
+rect 70 975 75 1075
+rect 200 975 205 1075
+rect 70 970 205 975
+rect 295 330 440 4050
+rect 615 3355 750 4390
+rect 615 3255 620 3355
+rect 745 3255 750 3355
+rect 615 2215 750 3255
+rect 615 2115 620 2215
+rect 745 2115 750 2215
+rect 615 1075 750 2115
+rect 615 975 620 1075
+rect 745 975 750 1075
+rect 615 970 750 975
+rect 840 330 985 4050
+rect 295 220 985 330
+use bias_curm_p  bias_curm_p_0
+timestamp 1654704381
+transform 1 0 5 0 1 455
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_1
+timestamp 1654704381
+transform 1 0 550 0 1 455
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_2
+timestamp 1654704381
+transform 1 0 5 0 1 1595
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_3
+timestamp 1654704381
+transform 1 0 550 0 1 1595
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_4
+timestamp 1654704381
+transform 1 0 550 0 1 2735
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_5
+timestamp 1654704381
+transform 1 0 5 0 1 2735
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_6
+timestamp 1654704381
+transform 1 0 550 0 1 3875
+box -5 -455 550 695
+use bias_curm_p  bias_curm_p_7
+timestamp 1654704381
+transform 1 0 5 0 1 3875
+box -5 -455 550 695
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.ext b/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.ext
new file mode 100644
index 0000000..07a96f9
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.ext
@@ -0,0 +1,12 @@
+timestamp 1654701805
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n1500#" 0 0 -3251 -1500 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17713024 17872 0 0
+node "m4_n3351_n1600#" 0 8904.44 -3351 -1600 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21446400 19804 1024640 7044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n1600#" "c2_n3251_n1500#" 37739.8
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -1500 -3250 -1499 w=6000 l=3000 "None" "c2_n3251_n1500#" 17680 0 "m4_n3351_n1600#" 400 0
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.mag b/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.mag
new file mode 100644
index 0000000..49b69d4
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_26U9NK.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654701805
+<< metal4 >>
+rect -3351 1559 3351 1600
+rect -3351 -1559 3095 1559
+rect 3331 -1559 3351 1559
+rect -3351 -1600 3351 -1559
+<< via4 >>
+rect 3095 -1559 3331 1559
+<< mimcap2 >>
+rect -3251 1460 2749 1500
+rect -3251 -1460 -3211 1460
+rect 2709 -1460 2749 1460
+rect -3251 -1500 2749 -1460
+<< mimcap2contact >>
+rect -3211 -1460 2709 1460
+<< metal5 >>
+rect 3053 1559 3373 1601
+rect -3235 1460 2733 1484
+rect -3235 -1460 -3211 1460
+rect 2709 -1460 2733 1460
+rect -3235 -1484 2733 -1460
+rect 3053 -1559 3095 1559
+rect 3331 -1559 3373 1559
+rect 3053 -1601 3373 -1559
+<< properties >>
+string FIXED_BBOX -3351 -1600 2849 1600
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 15 val 917.1 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext b/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
new file mode 100644
index 0000000..37083c6
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
@@ -0,0 +1,12 @@
+timestamp 1654701805
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n3000#" "m4_n3351_n3100#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..e37cc66
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654701805
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag b/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag
new file mode 100644
index 0000000..3bebd4d
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654701805
+<< metal4 >>
+rect -3351 1059 3351 1100
+rect -3351 -1059 3095 1059
+rect 3331 -1059 3351 1059
+rect -3351 -1100 3351 -1059
+<< via4 >>
+rect 3095 -1059 3331 1059
+<< mimcap2 >>
+rect -3251 960 2749 1000
+rect -3251 -960 -3211 960
+rect 2709 -960 2749 960
+rect -3251 -1000 2749 -960
+<< mimcap2contact >>
+rect -3211 -960 2709 960
+<< metal5 >>
+rect 3053 1059 3373 1101
+rect -3235 960 2733 984
+rect -3235 -960 -3211 960
+rect 2709 -960 2733 960
+rect -3235 -984 2733 -960
+rect 3053 -1059 3095 1059
+rect 3331 -1059 3373 1059
+rect 3053 -1101 3373 -1059
+<< properties >>
+string FIXED_BBOX -3351 -1100 2849 1100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 10 val 615.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag b/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag
new file mode 100644
index 0000000..89998cd
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654701805
+<< metal4 >>
+rect -1351 3059 1351 3100
+rect -1351 -3059 1095 3059
+rect 1331 -3059 1351 3059
+rect -1351 -3100 1351 -3059
+<< via4 >>
+rect 1095 -3059 1331 3059
+<< mimcap2 >>
+rect -1251 2960 749 3000
+rect -1251 -2960 -1211 2960
+rect 709 -2960 749 2960
+rect -1251 -3000 749 -2960
+<< mimcap2contact >>
+rect -1211 -2960 709 2960
+<< metal5 >>
+rect 1053 3059 1373 3101
+rect -1235 2960 733 2984
+rect -1235 -2960 -1211 2960
+rect 709 -2960 733 2960
+rect -1235 -2984 733 -2960
+rect 1053 -3059 1095 3059
+rect 1331 -3059 1373 3059
+rect 1053 -3101 1373 -3059
+<< properties >>
+string FIXED_BBOX -1351 -3100 849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 10 l 30 val 615.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.ext b/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.ext
new file mode 100644
index 0000000..605570a
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.ext
@@ -0,0 +1,28 @@
+timestamp 1654697436
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_287_n200#" 982 164.088 287 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n200#" 982 21.3577 129 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.3577 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n200#" 982 21.3577 -187 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n200#" 982 164.088 -345 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_187_n288#" 387 313.447 187 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n288#" 387 252.058 29 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n288#" 387 252.058 -129 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n288#" 387 313.958 -287 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+substrate "a_n447_n374#" 0 0 -447 -374 ppd 0 0 0 0 0 0 0 0 0 0 107032 6296 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 107032 6296 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n187_n200#" "a_n29_n200#" 223.915
+cap "a_287_n200#" "a_129_n200#" 223.915
+cap "a_n187_n200#" "a_n345_n200#" 223.915
+cap "a_29_n288#" "a_187_n288#" 135.85
+cap "a_29_n288#" "a_n129_n288#" 135.85
+cap "a_n29_n200#" "a_129_n200#" 223.915
+cap "a_n287_n288#" "a_n129_n288#" 135.85
+device msubckt sky130_fd_pr__nfet_01v8 187 -200 188 -199 l=100 w=400 "a_n447_n374#" "a_187_n288#" 200 0 "a_129_n200#" 400 0 "a_287_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=100 w=400 "a_n447_n374#" "a_29_n288#" 200 0 "a_n29_n200#" 400 0 "a_129_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -200 -128 -199 l=100 w=400 "a_n447_n374#" "a_n129_n288#" 200 0 "a_n187_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 -200 -286 -199 l=100 w=400 "a_n447_n374#" "a_n287_n288#" 200 0 "a_n345_n200#" 400 0 "a_n187_n200#" 400 0
diff --git a/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.mag b/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.mag
new file mode 100644
index 0000000..77f8974
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__nfet_01v8_6YE2KS.mag
@@ -0,0 +1,202 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654697436
+<< pwell >>
+rect -483 -410 483 410
+<< nmos >>
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+<< ndiff >>
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+<< ndiffc >>
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+<< psubdiff >>
+rect -447 340 -351 374
+rect 351 340 447 374
+rect -447 278 -413 340
+rect 413 278 447 340
+rect -447 -340 -413 -278
+rect 413 -340 447 -278
+rect -447 -374 -351 -340
+rect 351 -374 447 -340
+<< psubdiffcont >>
+rect -351 340 351 374
+rect -447 -278 -413 278
+rect 413 -278 447 278
+rect -351 -374 351 -340
+<< poly >>
+rect -287 272 -187 288
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -287 200 -187 238
+rect -129 272 -29 288
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect -129 200 -29 238
+rect 29 272 129 288
+rect 29 238 45 272
+rect 113 238 129 272
+rect 29 200 129 238
+rect 187 272 287 288
+rect 187 238 203 272
+rect 271 238 287 272
+rect 187 200 287 238
+rect -287 -238 -187 -200
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -287 -288 -187 -272
+rect -129 -238 -29 -200
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect -129 -288 -29 -272
+rect 29 -238 129 -200
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 29 -288 129 -272
+rect 187 -238 287 -200
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 187 -288 287 -272
+<< polycont >>
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+<< locali >>
+rect -447 340 -351 374
+rect 351 340 447 374
+rect -447 278 -413 340
+rect 413 278 447 340
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 113 238 129 272
+rect 187 238 203 272
+rect 271 238 287 272
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect -447 -340 -413 -278
+rect 413 -340 447 -278
+rect -447 -374 -351 -340
+rect 351 -374 447 -340
+<< viali >>
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+<< metal1 >>
+rect -283 272 -191 278
+rect -283 238 -271 272
+rect -203 238 -191 272
+rect -283 232 -191 238
+rect -125 272 -33 278
+rect -125 238 -113 272
+rect -45 238 -33 272
+rect -125 232 -33 238
+rect 33 272 125 278
+rect 33 238 45 272
+rect 113 238 125 272
+rect 33 232 125 238
+rect 191 272 283 278
+rect 191 238 203 272
+rect 271 238 283 272
+rect 191 232 283 238
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect -283 -238 -191 -232
+rect -283 -272 -271 -238
+rect -203 -272 -191 -238
+rect -283 -278 -191 -272
+rect -125 -238 -33 -232
+rect -125 -272 -113 -238
+rect -45 -272 -33 -238
+rect -125 -278 -33 -272
+rect 33 -238 125 -232
+rect 33 -272 45 -238
+rect 113 -272 125 -238
+rect 33 -278 125 -272
+rect 191 -238 283 -232
+rect 191 -272 203 -238
+rect 271 -272 283 -238
+rect 191 -278 283 -272
+<< properties >>
+string FIXED_BBOX -430 -357 430 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.ext b/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.ext
new file mode 100644
index 0000000..dac036a
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.ext
@@ -0,0 +1,149 @@
+timestamp 1654697436
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_351_n509#" 929 155.425 351 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n509#" 882 12.2058 255 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n509#" 882 12.2058 159 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n509#" 882 12.2058 63 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n509#" 882 12.2058 -33 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n509#" 882 12.2058 -129 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n509#" 882 12.2058 -225 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n509#" 882 12.2058 -321 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_n509#" 929 155.176 -413 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n597#" 837 116.534 207 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n87#" 837 98.7705 303 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n597#" 837 96.6422 15 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n87#" 837 62.121 111 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n597#" 837 96.6422 -177 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n87#" 837 62.121 -81 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n597#" 837 133.546 -369 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n87#" 837 82.2668 -273 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_109#" 929 155.695 351 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_109#" 882 12.4348 255 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_109#" 882 12.4348 159 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_109#" 882 12.4348 63 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_109#" 882 12.4348 -33 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_109#" 882 12.4348 -129 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_109#" 882 12.4348 -225 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_109#" 882 12.4348 -321 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_109#" 929 155.264 -413 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_21#" 837 98.977 303 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_21#" 837 62.3276 111 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_531#" 837 116.534 207 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_21#" 837 62.3276 -81 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_531#" 837 96.6422 15 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_21#" 837 82.4733 -273 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_531#" 837 96.6422 -177 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_531#" 837 133.546 -369 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n515_n683#" 0 0 -515 -683 ppd 0 0 0 0 0 0 0 0 0 0 158304 9312 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 158304 9312 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_111_n87#" "a_15_n597#" 14.1667
+cap "a_n225_109#" "a_n225_n509#" 12.3196
+cap "a_15_n597#" "a_63_n509#" 6.25956
+cap "a_111_n87#" "a_303_n87#" 28.5878
+cap "a_n413_n509#" "a_n369_n597#" 6.25956
+cap "a_111_n87#" "a_63_n509#" 6.25956
+cap "a_63_n509#" "a_63_109#" 12.3196
+cap "a_n413_n509#" "a_n413_109#" 12.3196
+cap "a_255_n509#" "a_207_n597#" 6.25956
+cap "a_n273_n87#" "a_n273_21#" 86.2066
+cap "a_n129_109#" "a_n129_n509#" 12.3196
+cap "a_111_n87#" "a_111_21#" 86.2066
+cap "a_207_n597#" "a_159_n509#" 6.25956
+cap "a_n321_n509#" "a_n413_n509#" 479.458
+cap "a_n129_n509#" "a_n81_n87#" 6.25956
+cap "a_111_21#" "a_63_109#" 6.25956
+cap "a_303_21#" "a_303_n87#" 86.2066
+cap "a_n33_n509#" "a_15_n597#" 6.25956
+cap "a_n33_109#" "a_63_109#" 479.458
+cap "a_n33_n509#" "a_63_n509#" 479.458
+cap "a_303_21#" "a_111_21#" 28.5878
+cap "a_303_n87#" "a_351_n509#" 6.25956
+cap "a_159_109#" "a_159_n509#" 12.3196
+cap "a_n225_109#" "a_n177_531#" 6.25956
+cap "a_303_21#" "a_255_109#" 6.25956
+cap "a_15_n597#" "a_15_531#" 6.73951
+cap "a_n273_21#" "a_n177_531#" 14.1667
+cap "a_n225_109#" "a_n273_21#" 6.25956
+cap "a_n177_n597#" "a_n81_n87#" 14.1667
+cap "a_n33_109#" "a_n33_n509#" 12.3196
+cap "a_15_531#" "a_63_109#" 6.25956
+cap "a_255_n509#" "a_159_n509#" 479.458
+cap "a_207_n597#" "a_15_n597#" 28.5878
+cap "a_n177_n597#" "a_n129_n509#" 6.25956
+cap "a_207_n597#" "a_303_n87#" 14.1667
+cap "a_111_21#" "a_15_531#" 14.1667
+cap "a_111_n87#" "a_207_n597#" 14.1667
+cap "a_n129_n509#" "a_n225_n509#" 479.458
+cap "a_111_21#" "a_n81_21#" 28.5878
+cap "a_n369_531#" "a_n369_n597#" 6.73951
+cap "a_n273_n87#" "a_n81_n87#" 28.5878
+cap "a_15_531#" "a_n177_531#" 28.5878
+cap "a_n33_109#" "a_15_531#" 6.25956
+cap "a_n369_531#" "a_n321_109#" 6.25956
+cap "a_n81_21#" "a_n177_531#" 14.1667
+cap "a_111_21#" "a_207_531#" 14.1667
+cap "a_n33_109#" "a_n81_21#" 6.25956
+cap "a_n369_531#" "a_n413_109#" 6.25956
+cap "a_n177_n597#" "a_n369_n597#" 28.5878
+cap "a_15_n597#" "a_n81_n87#" 14.1667
+cap "a_n273_21#" "a_n81_21#" 28.5878
+cap "a_n321_109#" "a_n413_109#" 479.458
+cap "a_255_109#" "a_207_531#" 6.25956
+cap "a_303_21#" "a_207_531#" 14.1667
+cap "a_n321_n509#" "a_n369_n597#" 6.25956
+cap "a_111_n87#" "a_n81_n87#" 28.5878
+cap "a_n321_n509#" "a_n321_109#" 12.3196
+cap "a_159_109#" "a_63_109#" 479.458
+cap "a_n273_n87#" "a_n369_n597#" 14.1667
+cap "a_n129_109#" "a_n177_531#" 6.25956
+cap "a_255_n509#" "a_303_n87#" 6.25956
+cap "a_n129_109#" "a_n33_109#" 479.458
+cap "a_n129_109#" "a_n225_109#" 479.458
+cap "a_n177_n597#" "a_n225_n509#" 6.25956
+cap "a_n81_21#" "a_15_531#" 14.1667
+cap "a_111_21#" "a_159_109#" 6.25956
+cap "a_n321_n509#" "a_n225_n509#" 479.458
+cap "a_207_531#" "a_15_531#" 28.5878
+cap "a_255_109#" "a_159_109#" 479.458
+cap "a_n273_n87#" "a_n177_n597#" 14.1667
+cap "a_351_109#" "a_255_109#" 479.458
+cap "a_303_21#" "a_351_109#" 6.25956
+cap "a_111_n87#" "a_159_n509#" 6.25956
+cap "a_63_n509#" "a_159_n509#" 479.458
+cap "a_n273_n87#" "a_n321_n509#" 6.25956
+cap "a_n33_n509#" "a_n81_n87#" 6.25956
+cap "a_n273_n87#" "a_n225_n509#" 6.25956
+cap "a_n177_n597#" "a_15_n597#" 28.5878
+cap "a_n33_n509#" "a_n129_n509#" 479.458
+cap "a_255_n509#" "a_255_109#" 12.3196
+cap "a_207_n597#" "a_207_531#" 6.73951
+cap "a_351_109#" "a_351_n509#" 12.3196
+cap "a_n129_109#" "a_n81_21#" 6.25956
+cap "a_n369_531#" "a_n177_531#" 28.5878
+cap "a_n81_21#" "a_n81_n87#" 86.2066
+cap "a_n225_109#" "a_n321_109#" 479.458
+cap "a_n369_531#" "a_n273_21#" 14.1667
+cap "a_255_n509#" "a_351_n509#" 479.458
+cap "a_n273_21#" "a_n321_109#" 6.25956
+cap "a_n177_n597#" "a_n177_531#" 6.73951
+cap "a_159_109#" "a_207_531#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8 321 -509 322 -508 l=30 w=400 "a_n515_n683#" "a_303_n87#" 60 0 "a_255_n509#" 400 0 "a_351_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -509 226 -508 l=30 w=400 "a_n515_n683#" "a_207_n597#" 60 0 "a_159_n509#" 400 0 "a_255_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -509 130 -508 l=30 w=400 "a_n515_n683#" "a_111_n87#" 60 0 "a_63_n509#" 400 0 "a_159_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -509 34 -508 l=30 w=400 "a_n515_n683#" "a_15_n597#" 60 0 "a_n33_n509#" 400 0 "a_63_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -509 -62 -508 l=30 w=400 "a_n515_n683#" "a_n81_n87#" 60 0 "a_n129_n509#" 400 0 "a_n33_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -509 -158 -508 l=30 w=400 "a_n515_n683#" "a_n177_n597#" 60 0 "a_n225_n509#" 400 0 "a_n129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -509 -254 -508 l=30 w=400 "a_n515_n683#" "a_n273_n87#" 60 0 "a_n321_n509#" 400 0 "a_n225_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -509 -350 -508 l=30 w=400 "a_n515_n683#" "a_n369_n597#" 60 0 "a_n413_n509#" 400 0 "a_n321_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 109 322 110 l=30 w=400 "a_n515_n683#" "a_303_21#" 60 0 "a_255_109#" 400 0 "a_351_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 109 226 110 l=30 w=400 "a_n515_n683#" "a_207_531#" 60 0 "a_159_109#" 400 0 "a_255_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 109 130 110 l=30 w=400 "a_n515_n683#" "a_111_21#" 60 0 "a_63_109#" 400 0 "a_159_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 109 34 110 l=30 w=400 "a_n515_n683#" "a_15_531#" 60 0 "a_n33_109#" 400 0 "a_63_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 109 -62 110 l=30 w=400 "a_n515_n683#" "a_n81_21#" 60 0 "a_n129_109#" 400 0 "a_n33_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 109 -158 110 l=30 w=400 "a_n515_n683#" "a_n177_531#" 60 0 "a_n225_109#" 400 0 "a_n129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 109 -254 110 l=30 w=400 "a_n515_n683#" "a_n273_21#" 60 0 "a_n321_109#" 400 0 "a_n225_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 109 -350 110 l=30 w=400 "a_n515_n683#" "a_n369_531#" 60 0 "a_n413_109#" 400 0 "a_n321_109#" 400 0
diff --git a/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.mag b/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.mag
new file mode 100644
index 0000000..dfc37ae
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__nfet_01v8_QQ8PGA.mag
@@ -0,0 +1,547 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654697436
+<< error_p >>
+rect -365 581 -307 587
+rect -173 581 -115 587
+rect 19 581 77 587
+rect 211 581 269 587
+rect -365 547 -353 581
+rect -173 547 -161 581
+rect 19 547 31 581
+rect 211 547 223 581
+rect -365 541 -307 547
+rect -173 541 -115 547
+rect 19 541 77 547
+rect 211 541 269 547
+rect -269 71 -211 77
+rect -77 71 -19 77
+rect 115 71 173 77
+rect 307 71 365 77
+rect -269 37 -257 71
+rect -77 37 -65 71
+rect 115 37 127 71
+rect 307 37 319 71
+rect -269 31 -211 37
+rect -77 31 -19 37
+rect 115 31 173 37
+rect 307 31 365 37
+rect -269 -37 -211 -31
+rect -77 -37 -19 -31
+rect 115 -37 173 -31
+rect 307 -37 365 -31
+rect -269 -71 -257 -37
+rect -77 -71 -65 -37
+rect 115 -71 127 -37
+rect 307 -71 319 -37
+rect -269 -77 -211 -71
+rect -77 -77 -19 -71
+rect 115 -77 173 -71
+rect 307 -77 365 -71
+rect -365 -547 -307 -541
+rect -173 -547 -115 -541
+rect 19 -547 77 -541
+rect 211 -547 269 -541
+rect -365 -581 -353 -547
+rect -173 -581 -161 -547
+rect 19 -581 31 -547
+rect 211 -581 223 -547
+rect -365 -587 -307 -581
+rect -173 -587 -115 -581
+rect 19 -587 77 -581
+rect 211 -587 269 -581
+<< pwell >>
+rect -551 -719 551 719
+<< nmos >>
+rect -351 109 -321 509
+rect -255 109 -225 509
+rect -159 109 -129 509
+rect -63 109 -33 509
+rect 33 109 63 509
+rect 129 109 159 509
+rect 225 109 255 509
+rect 321 109 351 509
+rect -351 -509 -321 -109
+rect -255 -509 -225 -109
+rect -159 -509 -129 -109
+rect -63 -509 -33 -109
+rect 33 -509 63 -109
+rect 129 -509 159 -109
+rect 225 -509 255 -109
+rect 321 -509 351 -109
+<< ndiff >>
+rect -413 497 -351 509
+rect -413 121 -401 497
+rect -367 121 -351 497
+rect -413 109 -351 121
+rect -321 497 -255 509
+rect -321 121 -305 497
+rect -271 121 -255 497
+rect -321 109 -255 121
+rect -225 497 -159 509
+rect -225 121 -209 497
+rect -175 121 -159 497
+rect -225 109 -159 121
+rect -129 497 -63 509
+rect -129 121 -113 497
+rect -79 121 -63 497
+rect -129 109 -63 121
+rect -33 497 33 509
+rect -33 121 -17 497
+rect 17 121 33 497
+rect -33 109 33 121
+rect 63 497 129 509
+rect 63 121 79 497
+rect 113 121 129 497
+rect 63 109 129 121
+rect 159 497 225 509
+rect 159 121 175 497
+rect 209 121 225 497
+rect 159 109 225 121
+rect 255 497 321 509
+rect 255 121 271 497
+rect 305 121 321 497
+rect 255 109 321 121
+rect 351 497 413 509
+rect 351 121 367 497
+rect 401 121 413 497
+rect 351 109 413 121
+rect -413 -121 -351 -109
+rect -413 -497 -401 -121
+rect -367 -497 -351 -121
+rect -413 -509 -351 -497
+rect -321 -121 -255 -109
+rect -321 -497 -305 -121
+rect -271 -497 -255 -121
+rect -321 -509 -255 -497
+rect -225 -121 -159 -109
+rect -225 -497 -209 -121
+rect -175 -497 -159 -121
+rect -225 -509 -159 -497
+rect -129 -121 -63 -109
+rect -129 -497 -113 -121
+rect -79 -497 -63 -121
+rect -129 -509 -63 -497
+rect -33 -121 33 -109
+rect -33 -497 -17 -121
+rect 17 -497 33 -121
+rect -33 -509 33 -497
+rect 63 -121 129 -109
+rect 63 -497 79 -121
+rect 113 -497 129 -121
+rect 63 -509 129 -497
+rect 159 -121 225 -109
+rect 159 -497 175 -121
+rect 209 -497 225 -121
+rect 159 -509 225 -497
+rect 255 -121 321 -109
+rect 255 -497 271 -121
+rect 305 -497 321 -121
+rect 255 -509 321 -497
+rect 351 -121 413 -109
+rect 351 -497 367 -121
+rect 401 -497 413 -121
+rect 351 -509 413 -497
+<< ndiffc >>
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+<< psubdiff >>
+rect -515 649 -419 683
+rect 419 649 515 683
+rect -515 587 -481 649
+rect 481 587 515 649
+rect -515 -649 -481 -587
+rect 481 -649 515 -587
+rect -515 -683 -419 -649
+rect 419 -683 515 -649
+<< psubdiffcont >>
+rect -419 649 419 683
+rect -515 -587 -481 587
+rect 481 -587 515 587
+rect -419 -683 419 -649
+<< poly >>
+rect -369 581 -303 597
+rect -369 547 -353 581
+rect -319 547 -303 581
+rect -369 531 -303 547
+rect -177 581 -111 597
+rect -177 547 -161 581
+rect -127 547 -111 581
+rect -351 509 -321 531
+rect -255 509 -225 535
+rect -177 531 -111 547
+rect 15 581 81 597
+rect 15 547 31 581
+rect 65 547 81 581
+rect -159 509 -129 531
+rect -63 509 -33 535
+rect 15 531 81 547
+rect 207 581 273 597
+rect 207 547 223 581
+rect 257 547 273 581
+rect 33 509 63 531
+rect 129 509 159 535
+rect 207 531 273 547
+rect 225 509 255 531
+rect 321 509 351 535
+rect -351 83 -321 109
+rect -255 87 -225 109
+rect -273 71 -207 87
+rect -159 83 -129 109
+rect -63 87 -33 109
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -273 21 -207 37
+rect -81 71 -15 87
+rect 33 83 63 109
+rect 129 87 159 109
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect -81 21 -15 37
+rect 111 71 177 87
+rect 225 83 255 109
+rect 321 87 351 109
+rect 111 37 127 71
+rect 161 37 177 71
+rect 111 21 177 37
+rect 303 71 369 87
+rect 303 37 319 71
+rect 353 37 369 71
+rect 303 21 369 37
+rect -273 -37 -207 -21
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -351 -109 -321 -83
+rect -273 -87 -207 -71
+rect -81 -37 -15 -21
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect -255 -109 -225 -87
+rect -159 -109 -129 -83
+rect -81 -87 -15 -71
+rect 111 -37 177 -21
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect -63 -109 -33 -87
+rect 33 -109 63 -83
+rect 111 -87 177 -71
+rect 303 -37 369 -21
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect 129 -109 159 -87
+rect 225 -109 255 -83
+rect 303 -87 369 -71
+rect 321 -109 351 -87
+rect -351 -531 -321 -509
+rect -369 -547 -303 -531
+rect -255 -535 -225 -509
+rect -159 -531 -129 -509
+rect -369 -581 -353 -547
+rect -319 -581 -303 -547
+rect -369 -597 -303 -581
+rect -177 -547 -111 -531
+rect -63 -535 -33 -509
+rect 33 -531 63 -509
+rect -177 -581 -161 -547
+rect -127 -581 -111 -547
+rect -177 -597 -111 -581
+rect 15 -547 81 -531
+rect 129 -535 159 -509
+rect 225 -531 255 -509
+rect 15 -581 31 -547
+rect 65 -581 81 -547
+rect 15 -597 81 -581
+rect 207 -547 273 -531
+rect 321 -535 351 -509
+rect 207 -581 223 -547
+rect 257 -581 273 -547
+rect 207 -597 273 -581
+<< polycont >>
+rect -353 547 -319 581
+rect -161 547 -127 581
+rect 31 547 65 581
+rect 223 547 257 581
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect -353 -581 -319 -547
+rect -161 -581 -127 -547
+rect 31 -581 65 -547
+rect 223 -581 257 -547
+<< locali >>
+rect -515 649 -419 683
+rect 419 649 515 683
+rect -515 587 -481 649
+rect 481 587 515 649
+rect -369 547 -353 581
+rect -319 547 -303 581
+rect -177 547 -161 581
+rect -127 547 -111 581
+rect 15 547 31 581
+rect 65 547 81 581
+rect 207 547 223 581
+rect 257 547 273 581
+rect -401 497 -367 513
+rect -401 105 -367 121
+rect -305 497 -271 513
+rect -305 105 -271 121
+rect -209 497 -175 513
+rect -209 105 -175 121
+rect -113 497 -79 513
+rect -113 105 -79 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 79 497 113 513
+rect 79 105 113 121
+rect 175 497 209 513
+rect 175 105 209 121
+rect 271 497 305 513
+rect 271 105 305 121
+rect 367 497 401 513
+rect 367 105 401 121
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect 111 37 127 71
+rect 161 37 177 71
+rect 303 37 319 71
+rect 353 37 369 71
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect -401 -121 -367 -105
+rect -401 -513 -367 -497
+rect -305 -121 -271 -105
+rect -305 -513 -271 -497
+rect -209 -121 -175 -105
+rect -209 -513 -175 -497
+rect -113 -121 -79 -105
+rect -113 -513 -79 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 79 -121 113 -105
+rect 79 -513 113 -497
+rect 175 -121 209 -105
+rect 175 -513 209 -497
+rect 271 -121 305 -105
+rect 271 -513 305 -497
+rect 367 -121 401 -105
+rect 367 -513 401 -497
+rect -369 -581 -353 -547
+rect -319 -581 -303 -547
+rect -177 -581 -161 -547
+rect -127 -581 -111 -547
+rect 15 -581 31 -547
+rect 65 -581 81 -547
+rect 207 -581 223 -547
+rect 257 -581 273 -547
+rect -515 -649 -481 -587
+rect 481 -649 515 -587
+rect -515 -683 -419 -649
+rect 419 -683 515 -649
+<< viali >>
+rect -353 547 -319 581
+rect -161 547 -127 581
+rect 31 547 65 581
+rect 223 547 257 581
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect -353 -581 -319 -547
+rect -161 -581 -127 -547
+rect 31 -581 65 -547
+rect 223 -581 257 -547
+<< metal1 >>
+rect -365 581 -307 587
+rect -365 547 -353 581
+rect -319 547 -307 581
+rect -365 541 -307 547
+rect -173 581 -115 587
+rect -173 547 -161 581
+rect -127 547 -115 581
+rect -173 541 -115 547
+rect 19 581 77 587
+rect 19 547 31 581
+rect 65 547 77 581
+rect 19 541 77 547
+rect 211 581 269 587
+rect 211 547 223 581
+rect 257 547 269 581
+rect 211 541 269 547
+rect -407 497 -361 509
+rect -407 121 -401 497
+rect -367 121 -361 497
+rect -407 109 -361 121
+rect -311 497 -265 509
+rect -311 121 -305 497
+rect -271 121 -265 497
+rect -311 109 -265 121
+rect -215 497 -169 509
+rect -215 121 -209 497
+rect -175 121 -169 497
+rect -215 109 -169 121
+rect -119 497 -73 509
+rect -119 121 -113 497
+rect -79 121 -73 497
+rect -119 109 -73 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 73 497 119 509
+rect 73 121 79 497
+rect 113 121 119 497
+rect 73 109 119 121
+rect 169 497 215 509
+rect 169 121 175 497
+rect 209 121 215 497
+rect 169 109 215 121
+rect 265 497 311 509
+rect 265 121 271 497
+rect 305 121 311 497
+rect 265 109 311 121
+rect 361 497 407 509
+rect 361 121 367 497
+rect 401 121 407 497
+rect 361 109 407 121
+rect -269 71 -211 77
+rect -269 37 -257 71
+rect -223 37 -211 71
+rect -269 31 -211 37
+rect -77 71 -19 77
+rect -77 37 -65 71
+rect -31 37 -19 71
+rect -77 31 -19 37
+rect 115 71 173 77
+rect 115 37 127 71
+rect 161 37 173 71
+rect 115 31 173 37
+rect 307 71 365 77
+rect 307 37 319 71
+rect 353 37 365 71
+rect 307 31 365 37
+rect -269 -37 -211 -31
+rect -269 -71 -257 -37
+rect -223 -71 -211 -37
+rect -269 -77 -211 -71
+rect -77 -37 -19 -31
+rect -77 -71 -65 -37
+rect -31 -71 -19 -37
+rect -77 -77 -19 -71
+rect 115 -37 173 -31
+rect 115 -71 127 -37
+rect 161 -71 173 -37
+rect 115 -77 173 -71
+rect 307 -37 365 -31
+rect 307 -71 319 -37
+rect 353 -71 365 -37
+rect 307 -77 365 -71
+rect -407 -121 -361 -109
+rect -407 -497 -401 -121
+rect -367 -497 -361 -121
+rect -407 -509 -361 -497
+rect -311 -121 -265 -109
+rect -311 -497 -305 -121
+rect -271 -497 -265 -121
+rect -311 -509 -265 -497
+rect -215 -121 -169 -109
+rect -215 -497 -209 -121
+rect -175 -497 -169 -121
+rect -215 -509 -169 -497
+rect -119 -121 -73 -109
+rect -119 -497 -113 -121
+rect -79 -497 -73 -121
+rect -119 -509 -73 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 73 -121 119 -109
+rect 73 -497 79 -121
+rect 113 -497 119 -121
+rect 73 -509 119 -497
+rect 169 -121 215 -109
+rect 169 -497 175 -121
+rect 209 -497 215 -121
+rect 169 -509 215 -497
+rect 265 -121 311 -109
+rect 265 -497 271 -121
+rect 305 -497 311 -121
+rect 265 -509 311 -497
+rect 361 -121 407 -109
+rect 361 -497 367 -121
+rect 401 -497 407 -121
+rect 361 -509 407 -497
+rect -365 -547 -307 -541
+rect -365 -581 -353 -547
+rect -319 -581 -307 -547
+rect -365 -587 -307 -581
+rect -173 -547 -115 -541
+rect -173 -581 -161 -547
+rect -127 -581 -115 -547
+rect -173 -587 -115 -581
+rect 19 -547 77 -541
+rect 19 -581 31 -547
+rect 65 -581 77 -547
+rect 19 -587 77 -581
+rect 211 -547 269 -541
+rect 211 -581 223 -547
+rect 257 -581 269 -547
+rect 211 -587 269 -581
+<< properties >>
+string FIXED_BBOX -498 -666 498 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 8 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.ext b/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.ext
new file mode 100644
index 0000000..d07390a
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.ext
@@ -0,0 +1,38 @@
+timestamp 1654698410
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_287_n200#" 1513 0 287 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n200#" 1513 0 129 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n200#" 1513 0 -187 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n200#" 1513 0 -345 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_187_n297#" 395 0 187 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n297#" 395 0 29 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n297#" 395 0 -129 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n297#" 395 0 -287 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "w_n483_n419#" 13264 2428.52 -483 -419 nw 0 0 0 0 809508 3608 0 0 108256 6368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 108256 6368 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n483_n419#" "a_n129_n297#" 205.781
+cap "a_129_n200#" "a_n29_n200#" 223.915
+cap "a_187_n297#" "a_29_n297#" 141.126
+cap "a_n287_n297#" "a_n129_n297#" 141.126
+cap "w_n483_n419#" "a_n187_n200#" 20.6099
+cap "w_n483_n419#" "a_n345_n200#" 163.34
+cap "w_n483_n419#" "a_29_n297#" 205.781
+cap "a_n187_n200#" "a_n29_n200#" 223.915
+cap "a_29_n297#" "a_n129_n297#" 141.126
+cap "a_n187_n200#" "a_n345_n200#" 223.915
+cap "w_n483_n419#" "a_187_n297#" 271.861
+cap "w_n483_n419#" "a_287_n200#" 163.34
+cap "a_129_n200#" "a_287_n200#" 223.915
+cap "w_n483_n419#" "a_n287_n297#" 272.372
+cap "w_n483_n419#" "a_n29_n200#" 20.6099
+cap "w_n483_n419#" "a_129_n200#" 20.6099
+device msubckt sky130_fd_pr__pfet_01v8 187 -200 188 -199 l=100 w=400 "w_n483_n419#" "a_187_n297#" 200 0 "a_129_n200#" 400 0 "a_287_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -200 30 -199 l=100 w=400 "w_n483_n419#" "a_29_n297#" 200 0 "a_n29_n200#" 400 0 "a_129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -129 -200 -128 -199 l=100 w=400 "w_n483_n419#" "a_n129_n297#" 200 0 "a_n187_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -287 -200 -286 -199 l=100 w=400 "w_n483_n419#" "a_n287_n297#" 200 0 "a_n345_n200#" 400 0 "a_n187_n200#" 400 0
diff --git a/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.mag b/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.mag
new file mode 100644
index 0000000..6c1f071
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__pfet_01v8_PDCJZ5.mag
@@ -0,0 +1,202 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654698410
+<< nwell >>
+rect -483 -419 483 419
+<< pmos >>
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+<< pdiff >>
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+<< pdiffc >>
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+<< nsubdiff >>
+rect -447 349 -351 383
+rect 351 349 447 383
+rect -447 287 -413 349
+rect 413 287 447 349
+rect -447 -349 -413 -287
+rect 413 -349 447 -287
+rect -447 -383 -351 -349
+rect 351 -383 447 -349
+<< nsubdiffcont >>
+rect -351 349 351 383
+rect -447 -287 -413 287
+rect 413 -287 447 287
+rect -351 -383 351 -349
+<< poly >>
+rect -287 281 -187 297
+rect -287 247 -271 281
+rect -203 247 -187 281
+rect -287 200 -187 247
+rect -129 281 -29 297
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect -129 200 -29 247
+rect 29 281 129 297
+rect 29 247 45 281
+rect 113 247 129 281
+rect 29 200 129 247
+rect 187 281 287 297
+rect 187 247 203 281
+rect 271 247 287 281
+rect 187 200 287 247
+rect -287 -247 -187 -200
+rect -287 -281 -271 -247
+rect -203 -281 -187 -247
+rect -287 -297 -187 -281
+rect -129 -247 -29 -200
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect -129 -297 -29 -281
+rect 29 -247 129 -200
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect 29 -297 129 -281
+rect 187 -247 287 -200
+rect 187 -281 203 -247
+rect 271 -281 287 -247
+rect 187 -297 287 -281
+<< polycont >>
+rect -271 247 -203 281
+rect -113 247 -45 281
+rect 45 247 113 281
+rect 203 247 271 281
+rect -271 -281 -203 -247
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+rect 203 -281 271 -247
+<< locali >>
+rect -447 349 -351 383
+rect 351 349 447 383
+rect -447 287 -413 349
+rect 413 287 447 349
+rect -287 247 -271 281
+rect -203 247 -187 281
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 113 247 129 281
+rect 187 247 203 281
+rect 271 247 287 281
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect -287 -281 -271 -247
+rect -203 -281 -187 -247
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect 187 -281 203 -247
+rect 271 -281 287 -247
+rect -447 -349 -413 -287
+rect 413 -349 447 -287
+rect -447 -383 -351 -349
+rect 351 -383 447 -349
+<< viali >>
+rect -271 247 -203 281
+rect -113 247 -45 281
+rect 45 247 113 281
+rect 203 247 271 281
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect -271 -281 -203 -247
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+rect 203 -281 271 -247
+<< metal1 >>
+rect -283 281 -191 287
+rect -283 247 -271 281
+rect -203 247 -191 281
+rect -283 241 -191 247
+rect -125 281 -33 287
+rect -125 247 -113 281
+rect -45 247 -33 281
+rect -125 241 -33 247
+rect 33 281 125 287
+rect 33 247 45 281
+rect 113 247 125 281
+rect 33 241 125 247
+rect 191 281 283 287
+rect 191 247 203 281
+rect 271 247 283 281
+rect 191 241 283 247
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect -283 -247 -191 -241
+rect -283 -281 -271 -247
+rect -203 -281 -191 -247
+rect -283 -287 -191 -281
+rect -125 -247 -33 -241
+rect -125 -281 -113 -247
+rect -45 -281 -33 -247
+rect -125 -287 -33 -281
+rect 33 -247 125 -241
+rect 33 -281 45 -247
+rect 113 -281 125 -247
+rect 33 -287 125 -281
+rect 191 -247 283 -241
+rect 191 -281 203 -247
+rect 271 -281 283 -247
+rect 191 -287 283 -281
+<< properties >>
+string FIXED_BBOX -430 -366 430 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__pfet_01v8_U473JH.mag b/mag/bias/sky130_fd_pr__pfet_01v8_U473JH.mag
new file mode 100644
index 0000000..c0b079c
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__pfet_01v8_U473JH.mag
@@ -0,0 +1,571 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654696545
+<< error_p >>
+rect -173 1235 -115 1241
+rect 19 1235 77 1241
+rect -173 1201 -161 1235
+rect 19 1201 31 1235
+rect -173 1195 -115 1201
+rect 19 1195 77 1201
+rect -77 707 -19 713
+rect 115 707 173 713
+rect -77 673 -65 707
+rect 115 673 127 707
+rect -77 667 -19 673
+rect 115 667 173 673
+rect -77 599 -19 605
+rect 115 599 173 605
+rect -77 565 -65 599
+rect 115 565 127 599
+rect -77 559 -19 565
+rect 115 559 173 565
+rect -173 71 -115 77
+rect 19 71 77 77
+rect -173 37 -161 71
+rect 19 37 31 71
+rect -173 31 -115 37
+rect 19 31 77 37
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect -77 -565 -19 -559
+rect 115 -565 173 -559
+rect -77 -599 -65 -565
+rect 115 -599 127 -565
+rect -77 -605 -19 -599
+rect 115 -605 173 -599
+rect -77 -673 -19 -667
+rect 115 -673 173 -667
+rect -77 -707 -65 -673
+rect 115 -707 127 -673
+rect -77 -713 -19 -707
+rect 115 -713 173 -707
+rect -173 -1201 -115 -1195
+rect 19 -1201 77 -1195
+rect -173 -1235 -161 -1201
+rect 19 -1235 31 -1201
+rect -173 -1241 -115 -1235
+rect 19 -1241 77 -1235
+<< nwell >>
+rect -359 -1373 359 1373
+<< pmos >>
+rect -159 754 -129 1154
+rect -63 754 -33 1154
+rect 33 754 63 1154
+rect 129 754 159 1154
+rect -159 118 -129 518
+rect -63 118 -33 518
+rect 33 118 63 518
+rect 129 118 159 518
+rect -159 -518 -129 -118
+rect -63 -518 -33 -118
+rect 33 -518 63 -118
+rect 129 -518 159 -118
+rect -159 -1154 -129 -754
+rect -63 -1154 -33 -754
+rect 33 -1154 63 -754
+rect 129 -1154 159 -754
+<< pdiff >>
+rect -221 1142 -159 1154
+rect -221 766 -209 1142
+rect -175 766 -159 1142
+rect -221 754 -159 766
+rect -129 1142 -63 1154
+rect -129 766 -113 1142
+rect -79 766 -63 1142
+rect -129 754 -63 766
+rect -33 1142 33 1154
+rect -33 766 -17 1142
+rect 17 766 33 1142
+rect -33 754 33 766
+rect 63 1142 129 1154
+rect 63 766 79 1142
+rect 113 766 129 1142
+rect 63 754 129 766
+rect 159 1142 221 1154
+rect 159 766 175 1142
+rect 209 766 221 1142
+rect 159 754 221 766
+rect -221 506 -159 518
+rect -221 130 -209 506
+rect -175 130 -159 506
+rect -221 118 -159 130
+rect -129 506 -63 518
+rect -129 130 -113 506
+rect -79 130 -63 506
+rect -129 118 -63 130
+rect -33 506 33 518
+rect -33 130 -17 506
+rect 17 130 33 506
+rect -33 118 33 130
+rect 63 506 129 518
+rect 63 130 79 506
+rect 113 130 129 506
+rect 63 118 129 130
+rect 159 506 221 518
+rect 159 130 175 506
+rect 209 130 221 506
+rect 159 118 221 130
+rect -221 -130 -159 -118
+rect -221 -506 -209 -130
+rect -175 -506 -159 -130
+rect -221 -518 -159 -506
+rect -129 -130 -63 -118
+rect -129 -506 -113 -130
+rect -79 -506 -63 -130
+rect -129 -518 -63 -506
+rect -33 -130 33 -118
+rect -33 -506 -17 -130
+rect 17 -506 33 -130
+rect -33 -518 33 -506
+rect 63 -130 129 -118
+rect 63 -506 79 -130
+rect 113 -506 129 -130
+rect 63 -518 129 -506
+rect 159 -130 221 -118
+rect 159 -506 175 -130
+rect 209 -506 221 -130
+rect 159 -518 221 -506
+rect -221 -766 -159 -754
+rect -221 -1142 -209 -766
+rect -175 -1142 -159 -766
+rect -221 -1154 -159 -1142
+rect -129 -766 -63 -754
+rect -129 -1142 -113 -766
+rect -79 -1142 -63 -766
+rect -129 -1154 -63 -1142
+rect -33 -766 33 -754
+rect -33 -1142 -17 -766
+rect 17 -1142 33 -766
+rect -33 -1154 33 -1142
+rect 63 -766 129 -754
+rect 63 -1142 79 -766
+rect 113 -1142 129 -766
+rect 63 -1154 129 -1142
+rect 159 -766 221 -754
+rect 159 -1142 175 -766
+rect 209 -1142 221 -766
+rect 159 -1154 221 -1142
+<< pdiffc >>
+rect -209 766 -175 1142
+rect -113 766 -79 1142
+rect -17 766 17 1142
+rect 79 766 113 1142
+rect 175 766 209 1142
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect -209 -1142 -175 -766
+rect -113 -1142 -79 -766
+rect -17 -1142 17 -766
+rect 79 -1142 113 -766
+rect 175 -1142 209 -766
+<< nsubdiff >>
+rect -323 1303 -227 1337
+rect 227 1303 323 1337
+rect -323 1241 -289 1303
+rect 289 1241 323 1303
+rect -323 -1303 -289 -1241
+rect 289 -1303 323 -1241
+rect -323 -1337 -227 -1303
+rect 227 -1337 323 -1303
+<< nsubdiffcont >>
+rect -227 1303 227 1337
+rect -323 -1241 -289 1241
+rect 289 -1241 323 1241
+rect -227 -1337 227 -1303
+<< poly >>
+rect -177 1235 -111 1251
+rect -177 1201 -161 1235
+rect -127 1201 -111 1235
+rect -177 1185 -111 1201
+rect 15 1235 81 1251
+rect 15 1201 31 1235
+rect 65 1201 81 1235
+rect 15 1185 81 1201
+rect -159 1154 -129 1185
+rect -63 1154 -33 1180
+rect 33 1154 63 1185
+rect 129 1154 159 1180
+rect -159 728 -129 754
+rect -63 723 -33 754
+rect 33 728 63 754
+rect 129 723 159 754
+rect -81 707 -15 723
+rect -81 673 -65 707
+rect -31 673 -15 707
+rect -81 657 -15 673
+rect 111 707 177 723
+rect 111 673 127 707
+rect 161 673 177 707
+rect 111 657 177 673
+rect -81 599 -15 615
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect -81 549 -15 565
+rect 111 599 177 615
+rect 111 565 127 599
+rect 161 565 177 599
+rect 111 549 177 565
+rect -159 518 -129 544
+rect -63 518 -33 549
+rect 33 518 63 544
+rect 129 518 159 549
+rect -159 87 -129 118
+rect -63 92 -33 118
+rect 33 87 63 118
+rect 129 92 159 118
+rect -177 71 -111 87
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 15 -87 81 -71
+rect -159 -118 -129 -87
+rect -63 -118 -33 -92
+rect 33 -118 63 -87
+rect 129 -118 159 -92
+rect -159 -544 -129 -518
+rect -63 -549 -33 -518
+rect 33 -544 63 -518
+rect 129 -549 159 -518
+rect -81 -565 -15 -549
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect -81 -615 -15 -599
+rect 111 -565 177 -549
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect 111 -615 177 -599
+rect -81 -673 -15 -657
+rect -81 -707 -65 -673
+rect -31 -707 -15 -673
+rect -81 -723 -15 -707
+rect 111 -673 177 -657
+rect 111 -707 127 -673
+rect 161 -707 177 -673
+rect 111 -723 177 -707
+rect -159 -754 -129 -728
+rect -63 -754 -33 -723
+rect 33 -754 63 -728
+rect 129 -754 159 -723
+rect -159 -1185 -129 -1154
+rect -63 -1180 -33 -1154
+rect 33 -1185 63 -1154
+rect 129 -1180 159 -1154
+rect -177 -1201 -111 -1185
+rect -177 -1235 -161 -1201
+rect -127 -1235 -111 -1201
+rect -177 -1251 -111 -1235
+rect 15 -1201 81 -1185
+rect 15 -1235 31 -1201
+rect 65 -1235 81 -1201
+rect 15 -1251 81 -1235
+<< polycont >>
+rect -161 1201 -127 1235
+rect 31 1201 65 1235
+rect -65 673 -31 707
+rect 127 673 161 707
+rect -65 565 -31 599
+rect 127 565 161 599
+rect -161 37 -127 71
+rect 31 37 65 71
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect -65 -707 -31 -673
+rect 127 -707 161 -673
+rect -161 -1235 -127 -1201
+rect 31 -1235 65 -1201
+<< locali >>
+rect -323 1303 -227 1337
+rect 227 1303 323 1337
+rect -323 1241 -289 1303
+rect 289 1241 323 1303
+rect -177 1201 -161 1235
+rect -127 1201 -111 1235
+rect 15 1201 31 1235
+rect 65 1201 81 1235
+rect -209 1142 -175 1158
+rect -209 750 -175 766
+rect -113 1142 -79 1158
+rect -113 750 -79 766
+rect -17 1142 17 1158
+rect -17 750 17 766
+rect 79 1142 113 1158
+rect 79 750 113 766
+rect 175 1142 209 1158
+rect 175 750 209 766
+rect -81 673 -65 707
+rect -31 673 -15 707
+rect 111 673 127 707
+rect 161 673 177 707
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect 111 565 127 599
+rect 161 565 177 599
+rect -209 506 -175 522
+rect -209 114 -175 130
+rect -113 506 -79 522
+rect -113 114 -79 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 79 506 113 522
+rect 79 114 113 130
+rect 175 506 209 522
+rect 175 114 209 130
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -209 -130 -175 -114
+rect -209 -522 -175 -506
+rect -113 -130 -79 -114
+rect -113 -522 -79 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 79 -130 113 -114
+rect 79 -522 113 -506
+rect 175 -130 209 -114
+rect 175 -522 209 -506
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect -81 -707 -65 -673
+rect -31 -707 -15 -673
+rect 111 -707 127 -673
+rect 161 -707 177 -673
+rect -209 -766 -175 -750
+rect -209 -1158 -175 -1142
+rect -113 -766 -79 -750
+rect -113 -1158 -79 -1142
+rect -17 -766 17 -750
+rect -17 -1158 17 -1142
+rect 79 -766 113 -750
+rect 79 -1158 113 -1142
+rect 175 -766 209 -750
+rect 175 -1158 209 -1142
+rect -177 -1235 -161 -1201
+rect -127 -1235 -111 -1201
+rect 15 -1235 31 -1201
+rect 65 -1235 81 -1201
+rect -323 -1303 -289 -1241
+rect 289 -1303 323 -1241
+rect -323 -1337 -227 -1303
+rect 227 -1337 323 -1303
+<< viali >>
+rect -161 1201 -127 1235
+rect 31 1201 65 1235
+rect -209 766 -175 1142
+rect -113 766 -79 1142
+rect -17 766 17 1142
+rect 79 766 113 1142
+rect 175 766 209 1142
+rect -65 673 -31 707
+rect 127 673 161 707
+rect -65 565 -31 599
+rect 127 565 161 599
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect -161 37 -127 71
+rect 31 37 65 71
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect -65 -707 -31 -673
+rect 127 -707 161 -673
+rect -209 -1142 -175 -766
+rect -113 -1142 -79 -766
+rect -17 -1142 17 -766
+rect 79 -1142 113 -766
+rect 175 -1142 209 -766
+rect -161 -1235 -127 -1201
+rect 31 -1235 65 -1201
+<< metal1 >>
+rect -173 1235 -115 1241
+rect -173 1201 -161 1235
+rect -127 1201 -115 1235
+rect -173 1195 -115 1201
+rect 19 1235 77 1241
+rect 19 1201 31 1235
+rect 65 1201 77 1235
+rect 19 1195 77 1201
+rect -215 1142 -169 1154
+rect -215 766 -209 1142
+rect -175 766 -169 1142
+rect -215 754 -169 766
+rect -119 1142 -73 1154
+rect -119 766 -113 1142
+rect -79 766 -73 1142
+rect -119 754 -73 766
+rect -23 1142 23 1154
+rect -23 766 -17 1142
+rect 17 766 23 1142
+rect -23 754 23 766
+rect 73 1142 119 1154
+rect 73 766 79 1142
+rect 113 766 119 1142
+rect 73 754 119 766
+rect 169 1142 215 1154
+rect 169 766 175 1142
+rect 209 766 215 1142
+rect 169 754 215 766
+rect -77 707 -19 713
+rect -77 673 -65 707
+rect -31 673 -19 707
+rect -77 667 -19 673
+rect 115 707 173 713
+rect 115 673 127 707
+rect 161 673 173 707
+rect 115 667 173 673
+rect -77 599 -19 605
+rect -77 565 -65 599
+rect -31 565 -19 599
+rect -77 559 -19 565
+rect 115 599 173 605
+rect 115 565 127 599
+rect 161 565 173 599
+rect 115 559 173 565
+rect -215 506 -169 518
+rect -215 130 -209 506
+rect -175 130 -169 506
+rect -215 118 -169 130
+rect -119 506 -73 518
+rect -119 130 -113 506
+rect -79 130 -73 506
+rect -119 118 -73 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 73 506 119 518
+rect 73 130 79 506
+rect 113 130 119 506
+rect 73 118 119 130
+rect 169 506 215 518
+rect 169 130 175 506
+rect 209 130 215 506
+rect 169 118 215 130
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect -215 -130 -169 -118
+rect -215 -506 -209 -130
+rect -175 -506 -169 -130
+rect -215 -518 -169 -506
+rect -119 -130 -73 -118
+rect -119 -506 -113 -130
+rect -79 -506 -73 -130
+rect -119 -518 -73 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 73 -130 119 -118
+rect 73 -506 79 -130
+rect 113 -506 119 -130
+rect 73 -518 119 -506
+rect 169 -130 215 -118
+rect 169 -506 175 -130
+rect 209 -506 215 -130
+rect 169 -518 215 -506
+rect -77 -565 -19 -559
+rect -77 -599 -65 -565
+rect -31 -599 -19 -565
+rect -77 -605 -19 -599
+rect 115 -565 173 -559
+rect 115 -599 127 -565
+rect 161 -599 173 -565
+rect 115 -605 173 -599
+rect -77 -673 -19 -667
+rect -77 -707 -65 -673
+rect -31 -707 -19 -673
+rect -77 -713 -19 -707
+rect 115 -673 173 -667
+rect 115 -707 127 -673
+rect 161 -707 173 -673
+rect 115 -713 173 -707
+rect -215 -766 -169 -754
+rect -215 -1142 -209 -766
+rect -175 -1142 -169 -766
+rect -215 -1154 -169 -1142
+rect -119 -766 -73 -754
+rect -119 -1142 -113 -766
+rect -79 -1142 -73 -766
+rect -119 -1154 -73 -1142
+rect -23 -766 23 -754
+rect -23 -1142 -17 -766
+rect 17 -1142 23 -766
+rect -23 -1154 23 -1142
+rect 73 -766 119 -754
+rect 73 -1142 79 -766
+rect 113 -1142 119 -766
+rect 73 -1154 119 -1142
+rect 169 -766 215 -754
+rect 169 -1142 175 -766
+rect 209 -1142 215 -766
+rect 169 -1154 215 -1142
+rect -173 -1201 -115 -1195
+rect -173 -1235 -161 -1201
+rect -127 -1235 -115 -1201
+rect -173 -1241 -115 -1235
+rect 19 -1201 77 -1195
+rect 19 -1235 31 -1201
+rect 65 -1235 77 -1201
+rect 19 -1241 77 -1235
+<< properties >>
+string FIXED_BBOX -306 -1320 306 1320
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 4 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.ext b/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.ext
new file mode 100644
index 0000000..30dbd61
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.ext
@@ -0,0 +1,184 @@
+timestamp 1654704381
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_351_n518#" 1426 0 351 -518 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n518#" 1349 0 255 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n518#" 1349 0 159 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n518#" 1349 0 63 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n518#" 1349 0 -33 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n518#" 1349 0 -129 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n518#" 1349 0 -225 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n518#" 1349 0 -321 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_n518#" 1426 0 -413 -518 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n615#" 851 0 207 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n615#" 851 0 15 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n615#" 851 0 -177 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n615#" 851 0 -369 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n87#" 851 0 303 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n87#" 851 0 111 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n87#" 851 0 -81 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n87#" 851 0 -273 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_118#" 1426 0 351 118 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_118#" 1349 0 255 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_118#" 1349 0 159 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_118#" 1349 0 63 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_118#" 1349 0 -33 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_118#" 1349 0 -129 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_118#" 1349 0 -225 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_118#" 1349 0 -321 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_118#" 1426 0 -413 118 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_21#" 851 0 303 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_21#" 851 0 111 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_21#" 851 0 -81 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_21#" 851 0 -273 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_549#" 851 0 207 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_549#" 851 0 15 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_549#" 851 0 -177 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_549#" 851 0 -369 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n551_n737#" 19471 4873.04 -551 -737 nw 0 0 0 0 1624348 5152 0 0 160752 9456 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160752 9456 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_255_118#" "w_n551_n737#" 12.2254
+cap "a_255_118#" "a_351_118#" 479.458
+cap "a_n225_118#" "a_n177_549#" 4.90233
+cap "a_159_118#" "a_207_549#" 4.90233
+cap "a_303_n87#" "a_303_21#" 86.2066
+cap "a_n33_n518#" "w_n551_n737#" 11.99
+cap "w_n551_n737#" "a_207_549#" 104.22
+cap "w_n551_n737#" "a_n81_21#" 47.6413
+cap "a_255_118#" "a_303_21#" 4.90233
+cap "a_n413_n518#" "a_n413_118#" 11.3678
+cap "a_159_n518#" "a_159_118#" 11.3678
+cap "a_63_118#" "a_15_549#" 4.90233
+cap "a_207_n615#" "a_15_n615#" 29.6522
+cap "a_111_21#" "a_15_549#" 13.3939
+cap "a_111_n87#" "a_n81_n87#" 29.6522
+cap "a_159_n518#" "w_n551_n737#" 11.99
+cap "a_n177_n615#" "a_15_n615#" 29.6522
+cap "a_303_21#" "a_207_549#" 13.3939
+cap "a_255_n518#" "a_351_n518#" 479.458
+cap "a_n369_n615#" "a_n369_549#" 6.32145
+cap "a_n177_549#" "a_n81_21#" 13.3939
+cap "a_63_n518#" "a_111_n87#" 4.90233
+cap "a_n177_n615#" "a_n129_n518#" 4.90233
+cap "a_n33_n518#" "a_n33_118#" 11.3678
+cap "a_159_118#" "a_111_21#" 4.90233
+cap "a_159_118#" "a_63_118#" 479.458
+cap "a_n33_118#" "a_n81_21#" 4.90233
+cap "a_63_118#" "w_n551_n737#" 12.2254
+cap "a_111_21#" "w_n551_n737#" 47.6413
+cap "a_255_n518#" "w_n551_n737#" 11.99
+cap "a_n225_n518#" "a_n273_n87#" 4.90233
+cap "a_n273_n87#" "w_n551_n737#" 69.7124
+cap "a_n273_n87#" "a_n321_n518#" 4.90233
+cap "a_111_n87#" "a_15_n615#" 13.3939
+cap "a_111_21#" "a_303_21#" 29.6522
+cap "a_n129_118#" "w_n551_n737#" 12.2254
+cap "a_n273_21#" "a_n369_549#" 13.3939
+cap "a_n33_n518#" "a_n81_n87#" 4.90233
+cap "a_111_n87#" "a_207_n615#" 13.3939
+cap "a_n81_n87#" "a_n81_21#" 86.2066
+cap "a_n33_118#" "a_63_118#" 479.458
+cap "a_n33_n518#" "a_63_n518#" 479.458
+cap "w_n551_n737#" "a_15_549#" 82.1969
+cap "a_351_n518#" "w_n551_n737#" 155.206
+cap "a_n129_118#" "a_n177_549#" 4.90233
+cap "a_351_118#" "a_351_n518#" 11.3678
+cap "a_n273_21#" "a_n225_118#" 4.90233
+cap "w_n551_n737#" "a_n321_118#" 12.2254
+cap "a_n33_118#" "a_n129_118#" 479.458
+cap "a_n321_n518#" "a_n321_118#" 11.3678
+cap "a_n225_n518#" "w_n551_n737#" 11.99
+cap "a_159_118#" "w_n551_n737#" 12.2254
+cap "a_303_n87#" "a_207_n615#" 13.3939
+cap "a_159_n518#" "a_63_n518#" 479.458
+cap "a_n225_n518#" "a_n321_n518#" 479.458
+cap "a_n177_549#" "a_15_549#" 29.6522
+cap "a_n33_n518#" "a_15_n615#" 4.90233
+cap "a_n321_n518#" "w_n551_n737#" 11.99
+cap "a_351_118#" "w_n551_n737#" 155.482
+cap "a_n33_118#" "a_15_549#" 4.90233
+cap "a_n33_n518#" "a_n129_n518#" 479.458
+cap "a_n273_21#" "a_n81_21#" 29.6522
+cap "a_63_n518#" "a_63_118#" 11.3678
+cap "a_207_n615#" "a_207_549#" 6.32145
+cap "a_303_21#" "w_n551_n737#" 86.3837
+cap "a_n273_n87#" "a_n81_n87#" 29.6522
+cap "w_n551_n737#" "a_n177_549#" 82.1969
+cap "a_351_118#" "a_303_21#" 4.90233
+cap "a_n369_n615#" "a_n273_n87#" 13.3939
+cap "a_n413_n518#" "w_n551_n737#" 154.967
+cap "a_n413_n518#" "a_n321_n518#" 479.458
+cap "a_n33_118#" "w_n551_n737#" 12.2254
+cap "a_159_n518#" "a_207_n615#" 4.90233
+cap "a_111_n87#" "a_303_n87#" 29.6522
+cap "a_n413_118#" "a_n369_549#" 4.90233
+cap "a_255_n518#" "a_207_n615#" 4.90233
+cap "a_n273_21#" "a_n273_n87#" 86.2066
+cap "a_n81_n87#" "w_n551_n737#" 47.4348
+cap "a_n369_n615#" "w_n551_n737#" 121.193
+cap "a_n369_n615#" "a_n321_n518#" 4.90233
+cap "a_n273_n87#" "a_n177_n615#" 13.3939
+cap "a_159_n518#" "a_111_n87#" 4.90233
+cap "a_n129_n518#" "a_n129_118#" 11.3678
+cap "a_63_n518#" "w_n551_n737#" 11.99
+cap "a_15_n615#" "a_15_549#" 6.32145
+cap "a_255_118#" "a_207_549#" 4.90233
+cap "a_111_n87#" "a_111_21#" 86.2066
+cap "a_n369_n615#" "a_n413_n518#" 4.90233
+cap "a_n273_21#" "a_n321_118#" 4.90233
+cap "a_15_n615#" "w_n551_n737#" 82.1969
+cap "a_n225_n518#" "a_n129_n518#" 479.458
+cap "a_n273_21#" "w_n551_n737#" 69.919
+cap "a_n225_n518#" "a_n177_n615#" 4.90233
+cap "a_n129_n518#" "w_n551_n737#" 11.99
+cap "a_207_n615#" "w_n551_n737#" 104.22
+cap "a_n177_n615#" "w_n551_n737#" 82.1969
+cap "a_255_n518#" "a_303_n87#" 4.90233
+cap "a_n273_21#" "a_n177_549#" 13.3939
+cap "a_255_118#" "a_255_n518#" 11.3678
+cap "a_n225_118#" "a_n129_118#" 479.458
+cap "a_n177_n615#" "a_n177_549#" 6.32145
+cap "a_111_21#" "a_207_549#" 13.3939
+cap "a_111_21#" "a_n81_21#" 29.6522
+cap "a_n321_118#" "a_n369_549#" 4.90233
+cap "a_111_n87#" "w_n551_n737#" 47.4348
+cap "w_n551_n737#" "a_n369_549#" 121.193
+cap "a_351_n518#" "a_303_n87#" 4.90233
+cap "a_159_n518#" "a_255_n518#" 479.458
+cap "a_n129_118#" "a_n81_21#" 4.90233
+cap "a_n225_118#" "a_n321_118#" 479.458
+cap "a_n225_n518#" "a_n225_118#" 11.3678
+cap "a_n81_n87#" "a_15_n615#" 13.3939
+cap "a_n321_118#" "a_n413_118#" 479.458
+cap "a_n177_549#" "a_n369_549#" 29.6522
+cap "a_n225_118#" "w_n551_n737#" 12.2254
+cap "a_63_n518#" "a_15_n615#" 4.90233
+cap "a_n81_n87#" "a_n129_n518#" 4.90233
+cap "a_111_21#" "a_63_118#" 4.90233
+cap "a_15_549#" "a_207_549#" 29.6522
+cap "a_n81_21#" "a_15_549#" 13.3939
+cap "a_303_n87#" "w_n551_n737#" 86.1771
+cap "a_n177_n615#" "a_n81_n87#" 13.3939
+cap "a_255_118#" "a_159_118#" 479.458
+cap "w_n551_n737#" "a_n413_118#" 155.055
+cap "a_n369_n615#" "a_n177_n615#" 29.6522
+device msubckt sky130_fd_pr__pfet_01v8 321 -518 322 -517 l=30 w=400 "w_n551_n737#" "a_303_n87#" 60 0 "a_255_n518#" 400 0 "a_351_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -518 226 -517 l=30 w=400 "w_n551_n737#" "a_207_n615#" 60 0 "a_159_n518#" 400 0 "a_255_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -518 130 -517 l=30 w=400 "w_n551_n737#" "a_111_n87#" 60 0 "a_63_n518#" 400 0 "a_159_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -518 34 -517 l=30 w=400 "w_n551_n737#" "a_15_n615#" 60 0 "a_n33_n518#" 400 0 "a_63_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -518 -62 -517 l=30 w=400 "w_n551_n737#" "a_n81_n87#" 60 0 "a_n129_n518#" 400 0 "a_n33_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -518 -158 -517 l=30 w=400 "w_n551_n737#" "a_n177_n615#" 60 0 "a_n225_n518#" 400 0 "a_n129_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -518 -254 -517 l=30 w=400 "w_n551_n737#" "a_n273_n87#" 60 0 "a_n321_n518#" 400 0 "a_n225_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -518 -350 -517 l=30 w=400 "w_n551_n737#" "a_n369_n615#" 60 0 "a_n413_n518#" 400 0 "a_n321_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 118 322 119 l=30 w=400 "w_n551_n737#" "a_303_21#" 60 0 "a_255_118#" 400 0 "a_351_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 118 226 119 l=30 w=400 "w_n551_n737#" "a_207_549#" 60 0 "a_159_118#" 400 0 "a_255_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 118 130 119 l=30 w=400 "w_n551_n737#" "a_111_21#" 60 0 "a_63_118#" 400 0 "a_159_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 118 34 119 l=30 w=400 "w_n551_n737#" "a_15_549#" 60 0 "a_n33_118#" 400 0 "a_63_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 118 -62 119 l=30 w=400 "w_n551_n737#" "a_n81_21#" 60 0 "a_n129_118#" 400 0 "a_n33_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 118 -158 119 l=30 w=400 "w_n551_n737#" "a_n177_549#" 60 0 "a_n225_118#" 400 0 "a_n129_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 118 -254 119 l=30 w=400 "w_n551_n737#" "a_n273_21#" 60 0 "a_n321_118#" 400 0 "a_n225_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 118 -350 119 l=30 w=400 "w_n551_n737#" "a_n369_549#" 60 0 "a_n413_118#" 400 0 "a_n321_118#" 400 0
diff --git a/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.mag b/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.mag
new file mode 100644
index 0000000..cf1cb6e
--- /dev/null
+++ b/mag/bias/sky130_fd_pr__pfet_01v8_U4PLGH.mag
@@ -0,0 +1,547 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654704381
+<< error_p >>
+rect -365 599 -307 605
+rect -173 599 -115 605
+rect 19 599 77 605
+rect 211 599 269 605
+rect -365 565 -353 599
+rect -173 565 -161 599
+rect 19 565 31 599
+rect 211 565 223 599
+rect -365 559 -307 565
+rect -173 559 -115 565
+rect 19 559 77 565
+rect 211 559 269 565
+rect -269 71 -211 77
+rect -77 71 -19 77
+rect 115 71 173 77
+rect 307 71 365 77
+rect -269 37 -257 71
+rect -77 37 -65 71
+rect 115 37 127 71
+rect 307 37 319 71
+rect -269 31 -211 37
+rect -77 31 -19 37
+rect 115 31 173 37
+rect 307 31 365 37
+rect -269 -37 -211 -31
+rect -77 -37 -19 -31
+rect 115 -37 173 -31
+rect 307 -37 365 -31
+rect -269 -71 -257 -37
+rect -77 -71 -65 -37
+rect 115 -71 127 -37
+rect 307 -71 319 -37
+rect -269 -77 -211 -71
+rect -77 -77 -19 -71
+rect 115 -77 173 -71
+rect 307 -77 365 -71
+rect -365 -565 -307 -559
+rect -173 -565 -115 -559
+rect 19 -565 77 -559
+rect 211 -565 269 -559
+rect -365 -599 -353 -565
+rect -173 -599 -161 -565
+rect 19 -599 31 -565
+rect 211 -599 223 -565
+rect -365 -605 -307 -599
+rect -173 -605 -115 -599
+rect 19 -605 77 -599
+rect 211 -605 269 -599
+<< nwell >>
+rect -551 -737 551 737
+<< pmos >>
+rect -351 118 -321 518
+rect -255 118 -225 518
+rect -159 118 -129 518
+rect -63 118 -33 518
+rect 33 118 63 518
+rect 129 118 159 518
+rect 225 118 255 518
+rect 321 118 351 518
+rect -351 -518 -321 -118
+rect -255 -518 -225 -118
+rect -159 -518 -129 -118
+rect -63 -518 -33 -118
+rect 33 -518 63 -118
+rect 129 -518 159 -118
+rect 225 -518 255 -118
+rect 321 -518 351 -118
+<< pdiff >>
+rect -413 506 -351 518
+rect -413 130 -401 506
+rect -367 130 -351 506
+rect -413 118 -351 130
+rect -321 506 -255 518
+rect -321 130 -305 506
+rect -271 130 -255 506
+rect -321 118 -255 130
+rect -225 506 -159 518
+rect -225 130 -209 506
+rect -175 130 -159 506
+rect -225 118 -159 130
+rect -129 506 -63 518
+rect -129 130 -113 506
+rect -79 130 -63 506
+rect -129 118 -63 130
+rect -33 506 33 518
+rect -33 130 -17 506
+rect 17 130 33 506
+rect -33 118 33 130
+rect 63 506 129 518
+rect 63 130 79 506
+rect 113 130 129 506
+rect 63 118 129 130
+rect 159 506 225 518
+rect 159 130 175 506
+rect 209 130 225 506
+rect 159 118 225 130
+rect 255 506 321 518
+rect 255 130 271 506
+rect 305 130 321 506
+rect 255 118 321 130
+rect 351 506 413 518
+rect 351 130 367 506
+rect 401 130 413 506
+rect 351 118 413 130
+rect -413 -130 -351 -118
+rect -413 -506 -401 -130
+rect -367 -506 -351 -130
+rect -413 -518 -351 -506
+rect -321 -130 -255 -118
+rect -321 -506 -305 -130
+rect -271 -506 -255 -130
+rect -321 -518 -255 -506
+rect -225 -130 -159 -118
+rect -225 -506 -209 -130
+rect -175 -506 -159 -130
+rect -225 -518 -159 -506
+rect -129 -130 -63 -118
+rect -129 -506 -113 -130
+rect -79 -506 -63 -130
+rect -129 -518 -63 -506
+rect -33 -130 33 -118
+rect -33 -506 -17 -130
+rect 17 -506 33 -130
+rect -33 -518 33 -506
+rect 63 -130 129 -118
+rect 63 -506 79 -130
+rect 113 -506 129 -130
+rect 63 -518 129 -506
+rect 159 -130 225 -118
+rect 159 -506 175 -130
+rect 209 -506 225 -130
+rect 159 -518 225 -506
+rect 255 -130 321 -118
+rect 255 -506 271 -130
+rect 305 -506 321 -130
+rect 255 -518 321 -506
+rect 351 -130 413 -118
+rect 351 -506 367 -130
+rect 401 -506 413 -130
+rect 351 -518 413 -506
+<< pdiffc >>
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+<< nsubdiff >>
+rect -515 667 -419 701
+rect 419 667 515 701
+rect -515 605 -481 667
+rect 481 605 515 667
+rect -515 -667 -481 -605
+rect 481 -667 515 -605
+rect -515 -701 -419 -667
+rect 419 -701 515 -667
+<< nsubdiffcont >>
+rect -419 667 419 701
+rect -515 -605 -481 605
+rect 481 -605 515 605
+rect -419 -701 419 -667
+<< poly >>
+rect -369 599 -303 615
+rect -369 565 -353 599
+rect -319 565 -303 599
+rect -369 549 -303 565
+rect -177 599 -111 615
+rect -177 565 -161 599
+rect -127 565 -111 599
+rect -177 549 -111 565
+rect 15 599 81 615
+rect 15 565 31 599
+rect 65 565 81 599
+rect 15 549 81 565
+rect 207 599 273 615
+rect 207 565 223 599
+rect 257 565 273 599
+rect 207 549 273 565
+rect -351 518 -321 549
+rect -255 518 -225 544
+rect -159 518 -129 549
+rect -63 518 -33 544
+rect 33 518 63 549
+rect 129 518 159 544
+rect 225 518 255 549
+rect 321 518 351 544
+rect -351 92 -321 118
+rect -255 87 -225 118
+rect -159 92 -129 118
+rect -63 87 -33 118
+rect 33 92 63 118
+rect 129 87 159 118
+rect 225 92 255 118
+rect 321 87 351 118
+rect -273 71 -207 87
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -273 21 -207 37
+rect -81 71 -15 87
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect -81 21 -15 37
+rect 111 71 177 87
+rect 111 37 127 71
+rect 161 37 177 71
+rect 111 21 177 37
+rect 303 71 369 87
+rect 303 37 319 71
+rect 353 37 369 71
+rect 303 21 369 37
+rect -273 -37 -207 -21
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -273 -87 -207 -71
+rect -81 -37 -15 -21
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect -81 -87 -15 -71
+rect 111 -37 177 -21
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect 111 -87 177 -71
+rect 303 -37 369 -21
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect 303 -87 369 -71
+rect -351 -118 -321 -92
+rect -255 -118 -225 -87
+rect -159 -118 -129 -92
+rect -63 -118 -33 -87
+rect 33 -118 63 -92
+rect 129 -118 159 -87
+rect 225 -118 255 -92
+rect 321 -118 351 -87
+rect -351 -549 -321 -518
+rect -255 -544 -225 -518
+rect -159 -549 -129 -518
+rect -63 -544 -33 -518
+rect 33 -549 63 -518
+rect 129 -544 159 -518
+rect 225 -549 255 -518
+rect 321 -544 351 -518
+rect -369 -565 -303 -549
+rect -369 -599 -353 -565
+rect -319 -599 -303 -565
+rect -369 -615 -303 -599
+rect -177 -565 -111 -549
+rect -177 -599 -161 -565
+rect -127 -599 -111 -565
+rect -177 -615 -111 -599
+rect 15 -565 81 -549
+rect 15 -599 31 -565
+rect 65 -599 81 -565
+rect 15 -615 81 -599
+rect 207 -565 273 -549
+rect 207 -599 223 -565
+rect 257 -599 273 -565
+rect 207 -615 273 -599
+<< polycont >>
+rect -353 565 -319 599
+rect -161 565 -127 599
+rect 31 565 65 599
+rect 223 565 257 599
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect -353 -599 -319 -565
+rect -161 -599 -127 -565
+rect 31 -599 65 -565
+rect 223 -599 257 -565
+<< locali >>
+rect -515 667 -419 701
+rect 419 667 515 701
+rect -515 605 -481 667
+rect 481 605 515 667
+rect -369 565 -353 599
+rect -319 565 -303 599
+rect -177 565 -161 599
+rect -127 565 -111 599
+rect 15 565 31 599
+rect 65 565 81 599
+rect 207 565 223 599
+rect 257 565 273 599
+rect -401 506 -367 522
+rect -401 114 -367 130
+rect -305 506 -271 522
+rect -305 114 -271 130
+rect -209 506 -175 522
+rect -209 114 -175 130
+rect -113 506 -79 522
+rect -113 114 -79 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 79 506 113 522
+rect 79 114 113 130
+rect 175 506 209 522
+rect 175 114 209 130
+rect 271 506 305 522
+rect 271 114 305 130
+rect 367 506 401 522
+rect 367 114 401 130
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect 111 37 127 71
+rect 161 37 177 71
+rect 303 37 319 71
+rect 353 37 369 71
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect -401 -130 -367 -114
+rect -401 -522 -367 -506
+rect -305 -130 -271 -114
+rect -305 -522 -271 -506
+rect -209 -130 -175 -114
+rect -209 -522 -175 -506
+rect -113 -130 -79 -114
+rect -113 -522 -79 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 79 -130 113 -114
+rect 79 -522 113 -506
+rect 175 -130 209 -114
+rect 175 -522 209 -506
+rect 271 -130 305 -114
+rect 271 -522 305 -506
+rect 367 -130 401 -114
+rect 367 -522 401 -506
+rect -369 -599 -353 -565
+rect -319 -599 -303 -565
+rect -177 -599 -161 -565
+rect -127 -599 -111 -565
+rect 15 -599 31 -565
+rect 65 -599 81 -565
+rect 207 -599 223 -565
+rect 257 -599 273 -565
+rect -515 -667 -481 -605
+rect 481 -667 515 -605
+rect -515 -701 -419 -667
+rect 419 -701 515 -667
+<< viali >>
+rect -353 565 -319 599
+rect -161 565 -127 599
+rect 31 565 65 599
+rect 223 565 257 599
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+rect -353 -599 -319 -565
+rect -161 -599 -127 -565
+rect 31 -599 65 -565
+rect 223 -599 257 -565
+<< metal1 >>
+rect -365 599 -307 605
+rect -365 565 -353 599
+rect -319 565 -307 599
+rect -365 559 -307 565
+rect -173 599 -115 605
+rect -173 565 -161 599
+rect -127 565 -115 599
+rect -173 559 -115 565
+rect 19 599 77 605
+rect 19 565 31 599
+rect 65 565 77 599
+rect 19 559 77 565
+rect 211 599 269 605
+rect 211 565 223 599
+rect 257 565 269 599
+rect 211 559 269 565
+rect -407 506 -361 518
+rect -407 130 -401 506
+rect -367 130 -361 506
+rect -407 118 -361 130
+rect -311 506 -265 518
+rect -311 130 -305 506
+rect -271 130 -265 506
+rect -311 118 -265 130
+rect -215 506 -169 518
+rect -215 130 -209 506
+rect -175 130 -169 506
+rect -215 118 -169 130
+rect -119 506 -73 518
+rect -119 130 -113 506
+rect -79 130 -73 506
+rect -119 118 -73 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 73 506 119 518
+rect 73 130 79 506
+rect 113 130 119 506
+rect 73 118 119 130
+rect 169 506 215 518
+rect 169 130 175 506
+rect 209 130 215 506
+rect 169 118 215 130
+rect 265 506 311 518
+rect 265 130 271 506
+rect 305 130 311 506
+rect 265 118 311 130
+rect 361 506 407 518
+rect 361 130 367 506
+rect 401 130 407 506
+rect 361 118 407 130
+rect -269 71 -211 77
+rect -269 37 -257 71
+rect -223 37 -211 71
+rect -269 31 -211 37
+rect -77 71 -19 77
+rect -77 37 -65 71
+rect -31 37 -19 71
+rect -77 31 -19 37
+rect 115 71 173 77
+rect 115 37 127 71
+rect 161 37 173 71
+rect 115 31 173 37
+rect 307 71 365 77
+rect 307 37 319 71
+rect 353 37 365 71
+rect 307 31 365 37
+rect -269 -37 -211 -31
+rect -269 -71 -257 -37
+rect -223 -71 -211 -37
+rect -269 -77 -211 -71
+rect -77 -37 -19 -31
+rect -77 -71 -65 -37
+rect -31 -71 -19 -37
+rect -77 -77 -19 -71
+rect 115 -37 173 -31
+rect 115 -71 127 -37
+rect 161 -71 173 -37
+rect 115 -77 173 -71
+rect 307 -37 365 -31
+rect 307 -71 319 -37
+rect 353 -71 365 -37
+rect 307 -77 365 -71
+rect -407 -130 -361 -118
+rect -407 -506 -401 -130
+rect -367 -506 -361 -130
+rect -407 -518 -361 -506
+rect -311 -130 -265 -118
+rect -311 -506 -305 -130
+rect -271 -506 -265 -130
+rect -311 -518 -265 -506
+rect -215 -130 -169 -118
+rect -215 -506 -209 -130
+rect -175 -506 -169 -130
+rect -215 -518 -169 -506
+rect -119 -130 -73 -118
+rect -119 -506 -113 -130
+rect -79 -506 -73 -130
+rect -119 -518 -73 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 73 -130 119 -118
+rect 73 -506 79 -130
+rect 113 -506 119 -130
+rect 73 -518 119 -506
+rect 169 -130 215 -118
+rect 169 -506 175 -130
+rect 209 -506 215 -130
+rect 169 -518 215 -506
+rect 265 -130 311 -118
+rect 265 -506 271 -130
+rect 305 -506 311 -130
+rect 265 -518 311 -506
+rect 361 -130 407 -118
+rect 361 -506 367 -130
+rect 401 -506 407 -130
+rect 361 -518 407 -506
+rect -365 -565 -307 -559
+rect -365 -599 -353 -565
+rect -319 -599 -307 -565
+rect -365 -605 -307 -599
+rect -173 -565 -115 -559
+rect -173 -599 -161 -565
+rect -127 -599 -115 -565
+rect -173 -605 -115 -599
+rect 19 -565 77 -559
+rect 19 -599 31 -565
+rect 65 -599 77 -565
+rect 19 -605 77 -599
+rect 211 -565 269 -559
+rect 211 -599 223 -565
+rect 257 -599 269 -565
+rect 211 -605 269 -599
+<< properties >>
+string FIXED_BBOX -498 -684 498 684
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 2 nf 8 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp.out b/mag/comp.out
new file mode 100644
index 0000000..968a21f
--- /dev/null
+++ b/mag/comp.out
@@ -0,0 +1,725 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_2p85_8K9944 in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell diffamp_element_nodi in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_V6SMGN in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell currm_comp in circuit comp_adv3 (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_HR8DH9 in circuit comp_adv3 (1)(1 instance)
+
+Class comp_adv3 (1):  Merged 19 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_adv3                       |Circuit 2: comp_adv3                       
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (24->5)        |sky130_fd_pr__nfet_01v8_lvt (24->5)        
+sky130_fd_pr__res_xhigh_po_2p85 (2)        |sky130_fd_pr__res_xhigh_po_2p85 (2)        
+Number of devices: 7                       |Number of devices: 7                       
+Number of nets: 8                          |Number of nets: 8                          
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+
+Subcircuit pins:
+Circuit 1: comp_adv3                       |Circuit 2: comp_adv3                       
+-------------------------------------------|-------------------------------------------
+bias                                       |bias                                       
+VN                                         |VN                                         
+Inn                                        |diffamp_element_nodi_0/a_890_330# **Mismat 
+Inp                                        |diffamp_element_nodi_1/a_890_330# **Mismat 
+VP                                         |VP                                         
+OutP                                       |OutP                                       
+OutN                                       |Outn                                       
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_adv3 and comp_adv3 altered to match.
+Flattening unmatched subcell currm_comp in circuit comp_adv3_di (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_HR8DH9 in circuit comp_adv3_di (1)(1 instance)
+Flattening unmatched subcell diffamp_element in circuit comp_adv3_di (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_DG2JGC in circuit comp_adv3_di (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_2p85_TY94YJ in circuit comp_adv3_di (1)(2 instances)
+
+Class comp_adv3_di (1):  Merged 19 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_adv3_di                    |Circuit 2: comp_adv3_di                    
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (30->11)       |sky130_fd_pr__nfet_01v8_lvt (30->11)       
+sky130_fd_pr__res_xhigh_po_2p85 (2)        |sky130_fd_pr__res_xhigh_po_2p85 (2)        
+Number of devices: 13                      |Number of devices: 13                      
+Number of nets: 10                         |Number of nets: 10                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+
+Subcircuit pins:
+Circuit 1: comp_adv3_di                    |Circuit 2: comp_adv3_di                    
+-------------------------------------------|-------------------------------------------
+VP                                         |VP                                         
+Inn2                                       |(no matching pin)                          
+Inp2                                       |(no matching pin)                          
+bias                                       |bias                                       
+VN                                         |VN                                         
+Inn                                        |diffamp_element_0/a_890_840# **Mismatch**  
+Inp                                        |diffamp_element_1/a_890_840# **Mismatch**  
+OutP                                       |Outp                                       
+OutN                                       |Outn                                       
+Inn2                                       |(no matching pin)                          
+Inp2                                       |(no matching pin)                          
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_adv3_di and comp_adv3_di altered to match.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+
+Class sky130_fd_sc_hs__inv_16 (0):  Merged 30 parallel devices.
+Class sky130_fd_sc_hs__inv_16 (1):  Merged 30 parallel devices.
+Subcircuit summary:
+Circuit 1: sky130_fd_sc_hs__inv_16         |Circuit 2: sky130_fd_sc_hs__inv_16         
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__pfet_01v8 (16->1)            |sky130_fd_pr__pfet_01v8 (16->1)            
+sky130_fd_pr__nfet_01v8_lvt (16->1)        |sky130_fd_pr__nfet_01v8_lvt (16->1)        
+Number of devices: 2                       |Number of devices: 2                       
+Number of nets: 6                          |Number of nets: 6                          
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: sky130_fd_sc_hs__inv_16         |Circuit 2: sky130_fd_sc_hs__inv_16         
+-------------------------------------------|-------------------------------------------
+Y                                          |Y                                          
+A                                          |A                                          
+VPWR                                       |VPWR                                       
+VPB                                        |VPB                                        
+VGND                                       |VGND                                       
+VNB                                        |VNB                                        
+---------------------------------------------------------------------------------------
+Cell pin lists are equivalent.
+Device classes sky130_fd_sc_hs__inv_16 and sky130_fd_sc_hs__inv_16 are equivalent.
+
+Class sky130_fd_sc_hs__inv_4 (0):  Merged 6 parallel devices.
+Class sky130_fd_sc_hs__inv_4 (1):  Merged 6 parallel devices.
+Subcircuit summary:
+Circuit 1: sky130_fd_sc_hs__inv_4          |Circuit 2: sky130_fd_sc_hs__inv_4          
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (4->1)         |sky130_fd_pr__nfet_01v8_lvt (4->1)         
+sky130_fd_pr__pfet_01v8 (4->1)             |sky130_fd_pr__pfet_01v8 (4->1)             
+Number of devices: 2                       |Number of devices: 2                       
+Number of nets: 6                          |Number of nets: 6                          
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: sky130_fd_sc_hs__inv_4          |Circuit 2: sky130_fd_sc_hs__inv_4          
+-------------------------------------------|-------------------------------------------
+Y                                          |Y                                          
+A                                          |A                                          
+VPWR                                       |VPWR                                       
+VPB                                        |VPB                                        
+VGND                                       |VGND                                       
+VNB                                        |VNB                                        
+---------------------------------------------------------------------------------------
+Cell pin lists are equivalent.
+Device classes sky130_fd_sc_hs__inv_4 and sky130_fd_sc_hs__inv_4 are equivalent.
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_XJ7GBL in circuit comp_to_logic (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U47ZGH in circuit comp_to_logic (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_GV8PGY in circuit comp_to_logic (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_X4XKHL in circuit comp_to_logic (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_LH2JGW in circuit comp_to_logic (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_YT8PGU in circuit comp_to_logic (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_PL8DH5 in circuit comp_to_logic (1)(1 instance)
+
+Class comp_to_logic (1):  Merged 40 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_to_logic                   |Circuit 2: comp_to_logic                   
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (8->4)         |sky130_fd_pr__nfet_01v8_lvt (8->4)         
+sky130_fd_pr__pfet_01v8 (24->9)            |sky130_fd_pr__pfet_01v8 (24->9)            
+sky130_fd_pr__nfet_01v8 (27->6)            |sky130_fd_pr__nfet_01v8 (27->6)            
+Number of devices: 19                      |Number of devices: 19                      
+Number of nets: 13                         |Number of nets: 13                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: comp_to_logic                   |Circuit 2: comp_to_logic                   
+-------------------------------------------|-------------------------------------------
+Out                                        |Out                                        
+VP                                         |VP                                         
+VN                                         |VSUBS **Mismatch**                         
+I_Bias                                     |I_Bias                                     
+In_n                                       |In_n                                       
+In_p                                       |In_p                                       
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_to_logic and comp_to_logic altered to match.
+Flattening unmatched subcell lvds_currm_n in circuit transmitter (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_HR8DH9 in circuit transmitter (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_XZXALN in circuit transmitter (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL in circuit transmitter (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_RS2YEK in circuit transmitter (1)(1 instance)
+Flattening unmatched subcell lvds_currm_p in circuit transmitter (1)(31 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_8DK6RJ in circuit transmitter (1)(31 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_9Z5L4S in circuit transmitter (1)(31 instances)
+Flattening unmatched subcell lvds_switch_p in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_VCB4SW in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_N3PKNJ in circuit transmitter (1)(1 instance)
+Flattening unmatched subcell lvds_nswitch in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_RE4MKQ in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3 in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell lvds_diffamp in circuit transmitter (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_ZHX6G9 in circuit transmitter (1)(2 instances)
+
+Class transmitter (0):  Merged 1 parallel devices.
+Class transmitter (1):  Merged 4463 parallel devices.
+Class transmitter (1):  Merged 5 series devices.
+Subcircuit summary:
+Circuit 1: transmitter                     |Circuit 2: transmitter                     
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__res_xhigh_po_0p35 (4)        |sky130_fd_pr__res_xhigh_po_0p35 (9->4)     
+sky130_fd_pr__pfet_01v8 (2412->8)          |sky130_fd_pr__pfet_01v8 (2412->8)          
+sky130_fd_pr__nfet_01v8 (1920->6)          |sky130_fd_pr__nfet_01v8 (1920->6)          
+sky130_fd_pr__nfet_01v8_lvt (148->4)       |sky130_fd_pr__nfet_01v8_lvt (148->4)       
+sky130_fd_pr__cap_mim_m3_1 (1)             |sky130_fd_pr__cap_mim_m3_1 (1)             
+sky130_fd_sc_hs__inv_16 (10)               |sky130_fd_sc_hs__inv_16 (10)               
+sky130_fd_sc_hs__inv_4 (2)                 |sky130_fd_sc_hs__inv_4 (2)                 
+sky130_fd_pr__cap_mim_m3_2 (2->1)          |sky130_fd_pr__cap_mim_m3_2 (2->1)          
+Number of devices: 36                      |Number of devices: 36                      
+Number of nets: 25                         |Number of nets: 25                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match with 2 symmetries.
+Circuits match correctly.
+There were property errors.
+sky130_fd_pr__cap_mim_m3_2:C1 vs. sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3:sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+
+Subcircuit pins:
+Circuit 1: transmitter                     |Circuit 2: transmitter                     
+-------------------------------------------|-------------------------------------------
+In                                         |In                                         
+Bias                                       |m1_20_640# **Mismatch**                    
+VP                                         |(no matching pin)                          
+VN                                         |VN                                         
+OutN                                       |(no matching pin)                          
+OutP                                       |(no matching pin)                          
+VP                                         |(no matching pin)                          
+OutP                                       |(no matching pin)                          
+OutN                                       |(no matching pin)                          
+---------------------------------------------------------------------------------------
+Cell pin lists for transmitter and transmitter altered to match.
+Flattening unmatched subcell outdriver in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell current_mirrorx8 in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell low_pvt_source in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell current_mirror_channel in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell tia_rgc_core in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell feedback_sukwani in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell comparator_complete in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell comp_amp_20db_no_cmm in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell comp_amp_di_40db_no_cmm in circuit ../xschem/mpw6_submission.spice (0)(1 instance)
+Flattening unmatched subcell curr_mirror_distribution in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell bias_curm_p in circuit mpw6_submission.spice (1)(9 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit mpw6_submission.spice (1)(9 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit mpw6_submission.spice (1)(9 instances)
+Flattening unmatched subcell tia_core in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_CDW43Z in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell tia_cur_mirror in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_F8VELN in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_854667 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell tia_one_tia in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell tia_cur_mirror in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_F8VELN in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_854667 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell rf_transistors in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_ZRA4RB in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_NZHYX4 in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_ZWVPUJ in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell dis_tran in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_RRWALQ in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell fb_transistor in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_GYVK57 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_62U3RB in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_GCYTE7 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_J5CT7Z in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_var_lvt_MZUN4J in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_SC2JGL in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 in circuit mpw6_submission.spice (1)(11 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_WXTTNJ in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell outd_stage2 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__res_high_po_5p73_PA2QZX in circuit mpw6_submission.spice (1)(16 instances)
+Flattening unmatched subcell outd_diffamp in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_324MKY in circuit mpw6_submission.spice (1)(8 instances)
+Flattening unmatched subcell outd_cmirror_64t in circuit mpw6_submission.spice (1)(5 instances)
+Flattening unmatched subcell outd_cmirror_transistors in circuit mpw6_submission.spice (1)(5 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_ED72KE in circuit mpw6_submission.spice (1)(5 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_A574RZ in circuit mpw6_submission.spice (1)(5 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_DJG2KN in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_stage3 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_stage2 in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__res_high_po_5p73_PA2QZX in circuit mpw6_submission.spice (1)(64 instances)
+Flattening unmatched subcell outd_diffamp in circuit mpw6_submission.spice (1)(16 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_324MKY in circuit mpw6_submission.spice (1)(32 instances)
+Flattening unmatched subcell outd_cmirror_64t in circuit mpw6_submission.spice (1)(20 instances)
+Flattening unmatched subcell outd_cmirror_transistors in circuit mpw6_submission.spice (1)(20 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_ED72KE in circuit mpw6_submission.spice (1)(20 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_A574RZ in circuit mpw6_submission.spice (1)(20 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_LH2JGW in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_stage1 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_cmirror_64t in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_cmirror_transistors in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_ED72KE in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_A574RZ in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell outd_diffamp in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_324MKY in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__res_high_po_2p85_8GE2XM in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell curr_mirror_channel in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell bias_curm_p in circuit mpw6_submission.spice (1)(18 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit mpw6_submission.spice (1)(18 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit mpw6_submission.spice (1)(18 instances)
+Flattening unmatched subcell bias_curm_n in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_6YE2KS in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_QQ8PGA in circuit mpw6_submission.spice (1)(4 instances)
+Flattening unmatched subcell eight-mirrors-p in circuit mpw6_submission.spice (1)(7 instances)
+Flattening unmatched subcell bias_curm_p in circuit mpw6_submission.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit mpw6_submission.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit mpw6_submission.spice (1)(56 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_26U9NK in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell comparator in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL in circuit mpw6_submission.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_MJMGTW in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_H9XL9H in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell fb_dark_current in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell currm_n in circuit mpw6_submission.spice (1)(40 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_PJG2KG in circuit mpw6_submission.spice (1)(40 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_82JNGJ in circuit mpw6_submission.spice (1)(40 instances)
+Flattening unmatched subcell currm_p in circuit mpw6_submission.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_lvt_4LMUGG in circuit mpw6_submission.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_lvt_LKHJAY in circuit mpw6_submission.spice (1)(22 instances)
+Flattening unmatched subcell currm_ps in circuit mpw6_submission.spice (1)(12 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PD4XN5 in circuit mpw6_submission.spice (1)(12 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PWGH in circuit mpw6_submission.spice (1)(12 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_6H2JYD in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_N3PKNJ in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_9A2JGL in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_VCBWSW in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_MJMGTW#0 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_E6B2KN in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_UAQRRG in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_LH2JGW#0 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell isource in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_WXTTNJ#0 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_out in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_834VMG in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_conv_tsmal in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_26RGPZ in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_ref_transistor in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_HZ8P49 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell isource_cmirror#0 in circuit mpw6_submission.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_ACY9XJ#0#0 in circuit mpw6_submission.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_J24RLQ#0#0 in circuit mpw6_submission.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_1p41_JAGHGM in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_conv_tsmal_nwell in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_26RGPZ in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_startup in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_QDYTZD in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_U3V43Z in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_E9U3PA in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_ref in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_ref_transistor in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_HZ8P49 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_ref_5transistors in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell isource_ref_transistor in circuit mpw6_submission.spice (1)(8 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_HZ8P49 in circuit mpw6_submission.spice (1)(8 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_TV3VM6 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_WY4VMC in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_conv in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_cmirror in circuit mpw6_submission.spice (1)(6 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_ACY9XJ#0 in circuit mpw6_submission.spice (1)(6 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_J24RLQ#0 in circuit mpw6_submission.spice (1)(6 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_1p41_BQY2W7 in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_WY4VMC in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_1p41_J2NVFM in circuit mpw6_submission.spice (1)(1 instance)
+Flattening unmatched subcell isource_diffamp in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87 in circuit mpw6_submission.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1 in circuit mpw6_submission.spice (1)(2 instances)
+
+Class ../xschem/mpw6_submission.spice (0):  Merged 21 parallel devices.
+Class ../xschem/mpw6_submission.spice (0):  Merged 12 series devices.
+Class mpw6_submission.spice (1):  Merged 9176 parallel devices.
+Class mpw6_submission.spice (1):  Merged 21 series devices.
+Subcircuit summary:
+Circuit 1: ../xschem/mpw6_submission.spice |Circuit 2: mpw6_submission.spice           
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (1276->16)     |sky130_fd_pr__nfet_01v8_lvt (1276->16)     
+sky130_fd_pr__nfet_01v8 (5677->55)         |sky130_fd_pr__nfet_01v8 (5677->55)         
+sky130_fd_pr__res_high_po_5p73 (80->4)     |sky130_fd_pr__res_high_po_5p73 (80->4)     
+sky130_fd_pr__res_high_po_2p85 (8->2)      |sky130_fd_pr__res_high_po_2p85 (8->2)      
+sky130_fd_pr__cap_mim_m3_2 (27->12)        |sky130_fd_pr__cap_mim_m3_2 (26->11) **Mism 
+sky130_fd_pr__cap_mim_m3_1 (7->5)          |sky130_fd_pr__cap_mim_m3_1 (7->5)          
+sky130_fd_pr__pfet_01v8 (2051->68)         |sky130_fd_pr__pfet_01v8 (2051->68)         
+sky130_fd_pr__res_xhigh_po_1p41 (15->3)    |sky130_fd_pr__res_xhigh_po_1p41 (15->3)    
+sky130_fd_pr__cap_var_lvt (5->1)           |sky130_fd_pr__cap_var_lvt (5->1)           
+sky130_fd_pr__pfet_01v8_lvt (220->12)      |sky130_fd_pr__pfet_01v8_lvt (220->12)      
+sky130_fd_pr__res_xhigh_po_0p69 (1)        |(no matching element)                      
+transmitter (1)                            |transmitter (1)                            
+comp_adv3 (5)                              |comp_adv3 (5)                              
+comp_to_logic (1)                          |comp_to_logic (1)                          
+comp_adv3_di (1)                           |comp_adv3_di (1)                           
+sky130_fd_pr__res_xhigh_po_0p35 (3)        |sky130_fd_pr__res_xhigh_po_0p35 (12->3)    
+Number of devices: 190 **Mismatch**        |Number of devices: 188 **Mismatch**        
+Number of nets: 143 **Mismatch**           |Number of nets: 146 **Mismatch**           
+---------------------------------------------------------------------------------------
+NET mismatches: Class fragments follow (with fanout counts):
+Circuit 1: ../xschem/mpw6_submission.spice |Circuit 2: mpw6_submission.spice           
+
+---------------------------------------------------------------------------------------
+Net: VP_an                                 |Net: /fb_dark_current_0/currm_n_43/m1_68_1 
+  sky130_fd_pr__res_high_po_5p73/(1|2) = 4 |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+  sky130_fd_pr__res_high_po_2p85/(1|2) = 2 |                                           
+  sky130_fd_pr__cap_mim_m3_2/2 = 1         |                                           
+  sky130_fd_pr__pfet_01v8/(1|3) = 38       |                                           
+  sky130_fd_pr__pfet_01v8/4 = 68           |                                           
+  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    |                                           
+  sky130_fd_pr__cap_mim_m3_1/1 = 1         |                                           
+  sky130_fd_pr__cap_mim_m3_2/1 = 6         |                                           
+  sky130_fd_pr__pfet_01v8_lvt/4 = 12       |                                           
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 6    |                                           
+  comp_adv3/VP = 5                         |                                           
+  comp_to_logic/VP = 1                     |                                           
+  comp_adv3_di/VP = 1                      |                                           
+                                           |                                           
+Net: Comp_Bias_2                           |Net: /fb_dark_current_0/m2_200_n880#       
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+  comp_adv3/bias = 1                       |                                           
+                                           |                                           
+Net: Comp_Bias_1                           |Net: /fb_dark_current_0/m2_4260_3100#      
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    
+  comp_adv3/bias = 1                       |                                           
+                                           |                                           
+Net: feedback_sukwani:1/net2               |Net: /fb_dark_current_0/currm_p_0/m1_60_n3 
+  sky130_fd_pr__nfet_01v8/(1|3) = 2        |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    
+                                           |                                           
+Net: feedback_sukwani:1/net22              |Net: /fb_dark_current_0/currm_p_1/m1_60_n3 
+  sky130_fd_pr__nfet_01v8/(1|3) = 2        |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    
+                                           |                                           
+Net: feedback_sukwani:1/net4               |Net: /fb_dark_current_0/currm_p_12/m1_60_n 
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    
+                                           |                                           
+Net: feedback_sukwani:1/net7               |Net: /fb_dark_current_0/m2_250_740#        
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+                                           |                                           
+Net: feedback_sukwani:1/net8               |Net: /fb_dark_current_0/Out                
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    |  sky130_fd_pr__pfet_01v8/(1|3) = 1        
+                                           |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+                                           |                                           
+Net: feedback_sukwani:1/net3               |Net: /fb_dark_current_0/currm_n_33/m1_68_1 
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 2    |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+                                           |                                           
+Net: feedback_sukwani:1/net23              |Net: outd_0/InputRef                       
+  sky130_fd_pr__cap_mim_m3_2/2 = 1         |  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    
+  sky130_fd_pr__res_xhigh_po_0p69/(1|2) =  |  sky130_fd_pr__pfet_01v8/(1|3) = 1        
+                                           |  sky130_fd_pr__nfet_01v8_lvt/2 = 2        
+                                           |  sky130_fd_pr__cap_mim_m3_2/1 = 1         
+                                           |  sky130_fd_pr__res_xhigh_po_0p35/(1|2) =  
+                                           |  sky130_fd_pr__nfet_01v8/2 = 1            
+                                           |                                           
+Net: Tia_ref                               |Net: /curr_mirror_channel_0/FB_Bias_1      
+  sky130_fd_pr__cap_mim_m3_2/1 = 1         |  sky130_fd_pr__pfet_01v8/(1|3) = 1        
+  sky130_fd_pr__nfet_01v8_lvt/2 = 2        |                                           
+  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    |                                           
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |                                           
+  sky130_fd_pr__nfet_01v8/2 = 1            |                                           
+  sky130_fd_pr__res_xhigh_po_0p35/(1|2) =  |                                           
+                                           |                                           
+Net: In_TIA                                |Net: /comparator_0/comp_adv3_0/bias        
+  sky130_fd_pr__nfet_01v8_lvt/2 = 1        |  comp_adv3/bias = 1                       
+  sky130_fd_pr__pfet_01v8/2 = 1            |                                           
+  sky130_fd_pr__nfet_01v8/(1|3) = 2        |                                           
+  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    |                                           
+  sky130_fd_pr__nfet_01v8_lvt/4 = 1        |                                           
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |                                           
+                                           |                                           
+Net: VN                                    |Net: VN                                    
+  sky130_fd_pr__nfet_01v8/(1|3) = 31       |  sky130_fd_pr__nfet_01v8/(1|3) = 31       
+  sky130_fd_pr__nfet_01v8/4 = 55           |  sky130_fd_pr__nfet_01v8/4 = 55           
+  sky130_fd_pr__nfet_01v8_lvt/4 = 5        |  sky130_fd_pr__nfet_01v8_lvt/4 = 5        
+  sky130_fd_pr__pfet_01v8/2 = 2            |  sky130_fd_pr__pfet_01v8/2 = 2            
+  sky130_fd_pr__cap_mim_m3_1/1 = 2         |  sky130_fd_pr__cap_mim_m3_1/1 = 2         
+  sky130_fd_pr__cap_var_lvt/2 = 1          |  sky130_fd_pr__cap_var_lvt/2 = 1          
+  sky130_fd_pr__cap_var_lvt/(1|3) = 1      |  sky130_fd_pr__cap_var_lvt/(1|3) = 1      
+  sky130_fd_pr__cap_mim_m3_2/2 = 2         |  sky130_fd_pr__cap_mim_m3_2/2 = 2         
+  transmitter/VN = 1                       |  transmitter/VN = 1                       
+  sky130_fd_pr__cap_mim_m3_2/1 = 3         |  sky130_fd_pr__cap_mim_m3_2/1 = 3         
+  sky130_fd_pr__res_high_po_5p73/3 = 4     |  sky130_fd_pr__res_high_po_5p73/3 = 4     
+  sky130_fd_pr__res_high_po_2p85/3 = 2     |  sky130_fd_pr__res_high_po_2p85/3 = 2     
+  sky130_fd_pr__res_xhigh_po_0p35/3 = 3    |  sky130_fd_pr__res_xhigh_po_0p35/3 = 3    
+  comp_adv3_di/VN = 1                      |  comp_adv3_di/VN = 1                      
+  comp_adv3/VN = 5                         |  comp_adv3/VN = 5                         
+  sky130_fd_pr__res_xhigh_po_0p69/3 = 1    |  comp_to_logic/VSUBS = 1                  
+  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 2    |  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 2    
+  sky130_fd_pr__res_xhigh_po_1p41/(1|2) =  |  sky130_fd_pr__res_xhigh_po_1p41/(1|2) =  
+  sky130_fd_pr__res_xhigh_po_1p41/3 = 3    |  sky130_fd_pr__res_xhigh_po_1p41/3 = 3    
+  comp_to_logic/VN = 1                     |                                           
+                                           |                                           
+Net: feedback_sukwani:1/VM16D              |Net: tia_core_0/Input                      
+  sky130_fd_pr__nfet_01v8/(1|3) = 1        |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+  sky130_fd_pr__pfet_01v8_lvt/2 = 6        |  sky130_fd_pr__nfet_01v8_lvt/2 = 1        
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__pfet_01v8/2 = 1            
+  sky130_fd_pr__cap_mim_m3_2/1 = 1         |  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    
+  sky130_fd_pr__res_xhigh_po_0p69/(1|2) =  |  sky130_fd_pr__nfet_01v8_lvt/4 = 1        
+                                           |                                           
+Net: net11                                 |Net: /fb_dark_current_0/m1_970_2720#       
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |  sky130_fd_pr__pfet_01v8_lvt/2 = 6        
+  sky130_fd_pr__nfet_01v8/2 = 8            |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+  sky130_fd_pr__nfet_01v8/(1|3) = 1        |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    
+  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__cap_mim_m3_2/2 = 1         
+  sky130_fd_pr__cap_mim_m3_2/2 = 1         |                                           
+                                           |                                           
+Net: feedback_sukwani:1/VM34D              |Net: /fb_dark_current_0/m1_9810_5770#      
+  sky130_fd_pr__nfet_01v8/(1|3) = 2        |  sky130_fd_pr__pfet_01v8/2 = 4            
+  sky130_fd_pr__pfet_01v8/(1|3) = 2        |  sky130_fd_pr__pfet_01v8/(1|3) = 2        
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+  sky130_fd_pr__pfet_01v8/2 = 4            |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    
+                                           |                                           
+(no matching net)                          |Net: /fb_dark_current_0/m1_7940_2770#      
+                                           |  sky130_fd_pr__pfet_01v8_lvt/2 = 6        
+                                           |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+                                           |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    
+                                           |  sky130_fd_pr__cap_mim_m3_2/2 = 1         
+                                           |                                           
+(no matching net)                          |Net: VP                                    
+                                           |  sky130_fd_pr__pfet_01v8/4 = 68           
+                                           |  sky130_fd_pr__pfet_01v8/(1|3) = 38       
+                                           |  sky130_fd_pr__cap_mim_m3_2/1 = 7         
+                                           |  sky130_fd_pr__cap_mim_m3_2/2 = 1         
+                                           |  sky130_fd_pr__res_high_po_5p73/(1|2) = 4 
+                                           |  sky130_fd_pr__res_high_po_2p85/(1|2) = 2 
+                                           |  comp_adv3_di/VP = 1                      
+                                           |  comp_adv3/VP = 5                         
+                                           |  comp_to_logic/VP = 1                     
+                                           |  sky130_fd_pr__pfet_01v8_lvt/4 = 12       
+                                           |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 6    
+                                           |  sky130_fd_pr__cap_mim_m3_1/1 = 1         
+                                           |  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    
+                                           |                                           
+(no matching net)                          |Net: /comparator_0/comp_adv3_1/bias        
+                                           |  comp_adv3/bias = 1                       
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: current_mirror_channel:7/vm12d        |Net: /curr_mirror_channel_0/vm12d          
+  sky130_fd_pr__pfet_01v8/2 = 22           |  sky130_fd_pr__pfet_01v8/2 = 22           
+  sky130_fd_pr__nfet_01v8/(1|3) = 1        |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |  sky130_fd_pr__pfet_01v8/(1|3) = 1        
+  sky130_fd_pr__cap_mim_m3_2/2 = 1         |  sky130_fd_pr__cap_mim_m3_2/2 = 1         
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: Dis_FB                                |Net: /fb_dark_current_0/Disable_FB         
+  sky130_fd_pr__nfet_01v8/2 = 2            |  sky130_fd_pr__nfet_01v8/2 = 2            
+  sky130_fd_pr__pfet_01v8/2 = 1            |  sky130_fd_pr__pfet_01v8/2 = 1            
+  sky130_fd_pr__nfet_01v8_lvt/2 = 1        |  sky130_fd_pr__nfet_01v8_lvt/2 = 1        
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: feedback_sukwani:1/VM13D              |Net: /fb_dark_current_0/m1_950_1560#       
+  sky130_fd_pr__nfet_01v8/(1|3) = 3        |  sky130_fd_pr__nfet_01v8/(1|3) = 3        
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: feedback_sukwani:1/VM9D               |Net: /fb_dark_current_0/m1_n6550_3300#     
+  sky130_fd_pr__nfet_01v8/(1|3) = 2        |  sky130_fd_pr__nfet_01v8/(1|3) = 2        
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    
+  sky130_fd_pr__pfet_01v8/2 = 4            |  sky130_fd_pr__pfet_01v8/2 = 4            
+  sky130_fd_pr__pfet_01v8/(1|3) = 1        |  sky130_fd_pr__pfet_01v8/(1|3) = 1        
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: feedback_sukwani:1/net5               |Net: /fb_dark_current_0/m1_n5100_670#      
+  sky130_fd_pr__nfet_01v8/2 = 4            |  sky130_fd_pr__nfet_01v8/2 = 4            
+  sky130_fd_pr__nfet_01v8/(1|3) = 1        |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Net: feedback_sukwani:1/VM14D              |Net: /fb_dark_current_0/I_Bias             
+  sky130_fd_pr__pfet_01v8_lvt/(1|3) = 1    |  sky130_fd_pr__nfet_01v8/2 = 8            
+  sky130_fd_pr__cap_mim_m3_2/2 = 2         |  sky130_fd_pr__cap_mim_m3_2/2 = 1         
+  sky130_fd_pr__nfet_01v8/(1|3) = 1        |  sky130_fd_pr__nfet_01v8/(1|3) = 1        
+  sky130_fd_pr__pfet_01v8_lvt/2 = 6        |  sky130_fd_pr__nfet_01v8_lvt/(1|3) = 1    
+  sky130_fd_pr__cap_mim_m3_2/1 = 1         |                                           
+---------------------------------------------------------------------------------------
+DEVICE mismatches: Class fragments follow (with node fanout counts):
+Circuit 1: ../xschem/mpw6_submission.spice |Circuit 2: mpw6_submission.spice           
+
+---------------------------------------------------------------------------------------
+Instance: outdriver:4/sky130_fd_pr__cap_mi |Instance: tia_core_0/sky130_fd_pr__cap_mim 
+  1 = 7                                    |  1 = 147                                  
+  2 = 127                                  |  2 = 126                                  
+                                           |                                           
+Instance: outdriver:4/sky130_fd_pr__cap_mi |Instance: outd_0/sky130_fd_pr__cap_mim_m3_ 
+  1 = 127                                  |  1 = 126                                  
+  2 = 146                                  |  2 = 147                                  
+                                           |                                           
+Instance: current_mirror_channel:7/sky130_ |Instance: outd_0/sky130_fd_pr__cap_mim_m3_ 
+  1 = 146                                  |  1 = 7                                    
+  2 = 127                                  |  2 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0/sky130_fd_pr__ 
+  1 = 127                                  |  1 = 147                                  
+  2 = 12                                   |  2 = 9                                    
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0/sky130_fd_pr__ 
+  1 = 146                                  |  1 = 147                                  
+  2 = 11                                   |  2 = 9                                    
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//sky130_fd_pr_ 
+  1 = 10                                   |  1 = 126                                  
+  2 = 11                                   |  2 = 11                                   
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |(no matching instance)                     
+  1 = 11                                   |                                           
+  2 = 2                                    |                                           
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |(no matching instance)                     
+  (1,2) = (10,2)                           |                                           
+  3 = 127                                  |                                           
+                                           |                                           
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_1//sk 
+  (1,3) = (10,2)                           |  (1,3) = (147,2)                          
+  2 = 10                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_1//sk 
+  (1,3) = (146,2)                          |  (1,3) = (9,2)                            
+  2 = 10                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_0//sk 
+  (1,3) = (9,2)                            |  (1,3) = (147,2)                          
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_0//sk 
+  (1,3) = (146,2)                          |  (1,3) = (9,2)                            
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_12//s 
+  (1,3) = (146,2)                          |  (1,3) = (147,2)                          
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_20//s 
+  (1,3) = (146,2)                          |  (1,3) = (147,2)                          
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_20//s 
+  (1,3) = (6,2)                            |  (1,3) = (9,2)                            
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_p_12//s 
+  (1,3) = (11,2)                           |  (1,3) = (6,2)                            
+  2 = 11                                   |  2 = 9                                    
+  4 = 146                                  |  4 = 147                                  
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Instance: current_mirror_channel:7/sky130_ |(no matching instance)                     
+  (1,3) = (146,2)                          |                                           
+  2 = 25                                   |                                           
+  4 = 146                                  |                                           
+                                           |                                           
+                                           |                                           
+Instance: current_mirror_channel:7/sky130_ |(no matching instance)                     
+  (1,3) = (2,2)                            |                                           
+  2 = 25                                   |                                           
+  4 = 146                                  |                                           
+                                           |                                           
+                                           |                                           
+Instance: current_mirror_channel:7/sky130_ |(no matching instance)                     
+  (1,3) = (146,2)                          |                                           
+  2 = 25                                   |                                           
+  4 = 146                                  |                                           
+                                           |                                           
+                                           |                                           
+Instance: current_mirror_channel:7/sky130_ |(no matching instance)                     
+  (1,3) = (2,2)                            |                                           
+  2 = 25                                   |                                           
+  4 = 146                                  |                                           
+                                           |                                           
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_33//s 
+  (1,3) = (9,2)                            |  (1,3) = (8,2)                            
+  2 = 12                                   |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_33//s 
+  (1,3) = (127,2)                          |  (1,3) = (126,2)                          
+  2 = 12                                   |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_45//s 
+  (1,3) = (12,2)                           |  (1,3) = (126,2)                          
+  2 = 12                                   |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_43//s 
+  (1,3) = (127,2)                          |  (1,3) = (9,2)                            
+  2 = 12                                   |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_43//s 
+  (1,3) = (8,2)                            |  (1,3) = (126,2)                          
+  2 = 12                                   |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0//currm_n_2//sk 
+  (1,3) = (11,3)                           |  (1,3) = (126,2)                          
+  2 = 7                                    |  2 = 11                                   
+  4 = 127                                  |  4 = 126                                  
+                                           |                                           
+(no matching instance)                     |Instance: fb_dark_current_0//currm_n_45//s 
+                                           |  (1,3) = (11,2)                           
+                                           |  2 = 11                                   
+                                           |  4 = 126                                  
+                                           |                                           
+                                           |                                           
+(no matching instance)                     |Instance: fb_dark_current_0//currm_n_2//sk 
+                                           |  (1,3) = (3,2)                            
+                                           |  2 = 11                                   
+                                           |  4 = 126                                  
+                                           |                                           
+---------------------------------------------------------------------------------------
+
+---------------------------------------------------------------------------------------
+Instance: feedback_sukwani:1/sky130_fd_pr_ |Instance: fb_dark_current_0/sky130_fd_pr__ 
+  (1,3) = (127,12)                         |  (1,3) = (126,11)                         
+  2 = 4                                    |  2 = 4                                    
+  4 = 127                                  |  4 = 126                                  
+---------------------------------------------------------------------------------------
+Netlists do not match.
+Cells failed matching, or top level cell failed pin matching.
+The following cells had property errors:
+ transmitter
diff --git a/mag/comp/.magicrc b/mag/comp/.magicrc
new file mode 120000
index 0000000..d7f5712
--- /dev/null
+++ b/mag/comp/.magicrc
@@ -0,0 +1 @@
+../.magicrc
\ No newline at end of file
diff --git a/mag/comp/comp.out b/mag/comp/comp.out
new file mode 100644
index 0000000..f97cae4
--- /dev/null
+++ b/mag/comp/comp.out
@@ -0,0 +1,142 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_2p85_8K9944 in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell diffamp_element_nodi in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_V6SMGN in circuit comp_adv3 (1)(2 instances)
+Flattening unmatched subcell currm_comp in circuit comp_adv3 (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_HR8DH9 in circuit comp_adv3 (1)(1 instance)
+
+Class comp_adv3 (1):  Merged 19 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_adv3                       |Circuit 2: comp_adv3                       
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (24->5)        |sky130_fd_pr__nfet_01v8_lvt (24->5)        
+sky130_fd_pr__res_xhigh_po_2p85 (2)        |sky130_fd_pr__res_xhigh_po_2p85 (2)        
+Number of devices: 7                       |Number of devices: 7                       
+Number of nets: 8                          |Number of nets: 8                          
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+
+Subcircuit pins:
+Circuit 1: comp_adv3                       |Circuit 2: comp_adv3                       
+-------------------------------------------|-------------------------------------------
+bias                                       |(no matching pin)                          
+VN                                         |VN                                         
+Inn                                        |diffamp_element_nodi_0/a_890_330# **Mismat 
+Inp                                        |diffamp_element_nodi_1/a_890_330# **Mismat 
+VP                                         |VP                                         
+OutP                                       |OutP                                       
+OutN                                       |Outn                                       
+bias                                       |(no matching pin)                          
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_adv3 and comp_adv3 altered to match.
+Flattening unmatched subcell currm_comp in circuit comp_adv3_di (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_HR8DH9 in circuit comp_adv3_di (1)(1 instance)
+Flattening unmatched subcell diffamp_element in circuit comp_adv3_di (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_DG2JGC in circuit comp_adv3_di (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_2p85_TY94YJ in circuit comp_adv3_di (1)(2 instances)
+
+Class comp_adv3_di (1):  Merged 19 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_adv3_di                    |Circuit 2: comp_adv3_di                    
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (30->11)       |sky130_fd_pr__nfet_01v8_lvt (30->11)       
+sky130_fd_pr__res_xhigh_po_2p85 (2)        |sky130_fd_pr__res_xhigh_po_2p85 (2)        
+Number of devices: 13                      |Number of devices: 13                      
+Number of nets: 10                         |Number of nets: 10                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+
+Subcircuit pins:
+Circuit 1: comp_adv3_di                    |Circuit 2: comp_adv3_di                    
+-------------------------------------------|-------------------------------------------
+VP                                         |VP                                         
+Inn2                                       |(no matching pin)                          
+Inp2                                       |(no matching pin)                          
+bias                                       |(no matching pin)                          
+VN                                         |VN                                         
+Inn                                        |diffamp_element_0/a_890_840# **Mismatch**  
+Inp                                        |diffamp_element_1/a_890_840# **Mismatch**  
+OutP                                       |Outp                                       
+OutN                                       |Outn                                       
+Inn2                                       |(no matching pin)                          
+Inp2                                       |(no matching pin)                          
+bias                                       |(no matching pin)                          
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_adv3_di and comp_adv3_di altered to match.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_XJ7GBL in circuit comp_to_logic (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U47ZGH in circuit comp_to_logic (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_GV8PGY in circuit comp_to_logic (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_X4XKHL in circuit comp_to_logic (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_LH2JGW in circuit comp_to_logic (1)(4 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_YT8PGU in circuit comp_to_logic (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_PL8DH5 in circuit comp_to_logic (1)(1 instance)
+
+Class comp_to_logic (1):  Merged 40 parallel devices.
+Subcircuit summary:
+Circuit 1: comp_to_logic                   |Circuit 2: comp_to_logic                   
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (8->4)         |sky130_fd_pr__nfet_01v8_lvt (8->4)         
+sky130_fd_pr__pfet_01v8 (24->9)            |sky130_fd_pr__pfet_01v8 (24->9)            
+sky130_fd_pr__nfet_01v8 (27->6)            |sky130_fd_pr__nfet_01v8 (27->6)            
+Number of devices: 19                      |Number of devices: 19                      
+Number of nets: 13                         |Number of nets: 13                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: comp_to_logic                   |Circuit 2: comp_to_logic                   
+-------------------------------------------|-------------------------------------------
+Out                                        |(no matching pin)                          
+VP                                         |VP                                         
+VN                                         |VSUBS **Mismatch**                         
+I_Bias                                     |(no matching pin)                          
+In_n                                       |In_n                                       
+In_p                                       |In_p                                       
+Out                                        |(no matching pin)                          
+I_Bias                                     |(no matching pin)                          
+---------------------------------------------------------------------------------------
+Cell pin lists for comp_to_logic and comp_to_logic altered to match.
+Flattening unmatched subcell comp_amp_20db_no_cmm in circuit ../../analog/test/comparator_complete.spice (0)(1 instance)
+Flattening unmatched subcell comp_amp_di_40db_no_cmm in circuit ../../analog/test/comparator_complete.spice (0)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL in circuit comparator.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_MJMGTW in circuit comparator.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_H9XL9H in circuit comparator.spice (1)(2 instances)
+
+Class comparator.spice (1):  Merged 9 series devices.
+Subcircuit summary:
+Circuit 1: ../../analog/test/comparator_co |Circuit 2: comparator.spice                
+-------------------------------------------|-------------------------------------------
+comp_adv3 (5)                              |comp_adv3 (5)                              
+comp_to_logic (1)                          |comp_to_logic (1)                          
+comp_adv3_di (1)                           |comp_adv3_di (1)                           
+sky130_fd_pr__res_xhigh_po_0p35 (3)        |sky130_fd_pr__res_xhigh_po_0p35 (12->3)    
+sky130_fd_pr__cap_mim_m3_2 (1)             |sky130_fd_pr__cap_mim_m3_2 (1)             
+sky130_fd_pr__cap_mim_m3_1 (2)             |sky130_fd_pr__cap_mim_m3_1 (2)             
+Number of devices: 13                      |Number of devices: 13                      
+Number of nets: 29                         |Number of nets: 29                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Property errors were found.
+Netlists match uniquely.
+There were property errors.
+sky130_fd_pr__cap_mim_m3_2:C1 vs. sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+Cells have no pins;  pin matching not needed.
+Device classes ../../analog/test/comparator_complete.spice and comparator.spice are equivalent.
+Circuits match uniquely.
+Property errors were found.
+The following cells had property errors:
+ ../../analog/test/comparator_complete.spice
diff --git a/mag/comp/comp_adv3.ext b/mag/comp/comp_adv3.ext
new file mode 100644
index 0000000..260d68f
--- /dev/null
+++ b/mag/comp/comp_adv3.ext
@@ -0,0 +1,157 @@
+timestamp 1654166568
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__res_xhigh_po_2p85_8K9944 sky130_fd_pr__res_xhigh_po_2p85_8K9944_1 1 0 1051 0 1 1458
+use sky130_fd_pr__res_xhigh_po_2p85_8K9944 sky130_fd_pr__res_xhigh_po_2p85_8K9944_0 1 0 1951 0 1 1458
+use diffamp_element_nodi diffamp_element_nodi_1 1 0 -108 0 1 -308
+use diffamp_element_nodi diffamp_element_nodi_0 1 0 792 0 1 -308
+use currm_comp currm_comp_0 1 0 710 0 1 -870
+node "bias" 0 38.8057 860 -460 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17600 540 0 0 0 0 0 0 0 0
+node "m2_720_n160#" 0 613.693 720 -160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 978600 4740 0 0 0 0 0 0 0 0
+node "m1_900_n700#" 6 973.966 900 -700 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 178400 6200 0 0 0 0 0 0 0 0 0 0
+node "m1_800_n770#" 2 120.477 800 -770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22000 1180 0 0 0 0 0 0 0 0 0 0
+node "OutP" 0 906.956 1650 870 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268400 2100 614400 3200 0 0 0 0 0 0 0 0
+node "Outn" 0 911.647 740 870 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268400 2100 613900 3200 0 0 0 0 0 0 0 0
+node "VP" 0 1014.47 750 1600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 675000 3900 0 0 0 0 0 0 0 0 0 0
+node "VN" 911 3805.99 630 -890 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 716200 14460 29056 1056 276000 3820 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_800_n770#" "m1_900_n700#" 315.187
+cap "OutP" "m1_900_n700#" 18.45
+cap "m2_720_n160#" "m1_900_n700#" 641.018
+cap "Outn" "VN" 204.284
+cap "m2_720_n160#" "bias" 100.233
+cap "OutP" "m2_720_n160#" 250.24
+cap "OutP" "VP" 76.3448
+cap "VN" "m1_900_n700#" 93.3759
+cap "Outn" "m1_900_n700#" 15.0071
+cap "VN" "bias" 53.7625
+cap "m1_800_n770#" "VN" 126.574
+cap "OutP" "VN" 203.425
+cap "m2_720_n160#" "VN" 1125.08
+cap "OutP" "Outn" 188.084
+cap "m1_800_n770#" "Outn" 1.35413
+cap "m2_720_n160#" "Outn" 250.24
+cap "VN" "VP" 365.371
+cap "Outn" "VP" 76.3448
+cap "m1_900_n700#" "bias" 76.3643
+cap "diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -92.7056
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" -0.677064
+cap "diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -122.671
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -5.97917
+cap "diffamp_element_nodi_1/m1_838_418#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 125.587
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 6.03096
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_0/a_890_330#" 10.891
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_nodi_1/a_890_330#" 98.3552
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" -7.66122
+cap "diffamp_element_nodi_0/a_890_330#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 68.3107
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_1/m1_838_418#" 175.454
+cap "diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 19.9639
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_nodi_1/m1_838_418#" 143.891
+cap "diffamp_element_nodi_0/a_890_330#" "diffamp_element_nodi_1/a_890_330#" 188.388
+cap "diffamp_element_nodi_1/a_890_330#" "diffamp_element_nodi_1/m1_838_418#" 391.087
+cap "diffamp_element_nodi_1/m1_838_418#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 302.999
+cap "diffamp_element_nodi_0/a_890_330#" "diffamp_element_nodi_1/m1_838_418#" -104.112
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 927.909
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "diffamp_element_nodi_0/a_890_330#" 9.23775
+cap "diffamp_element_nodi_1/m1_838_418#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -1018.62
+cap "diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" 8.71341
+cap "diffamp_element_nodi_1/m1_838_418#" "diffamp_element_nodi_0/a_890_330#" -2627.05
+cap "diffamp_element_nodi_0/a_890_330#" "diffamp_element_nodi_1/a_890_330#" 1.15646
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 80.2795
+cap "diffamp_element_nodi_1/m1_838_418#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" 124.228
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_nodi_0/a_890_330#" 28.9711
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" -3.13918
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" -3.24583
+cap "diffamp_element_nodi_1/m1_838_418#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -1168.11
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "diffamp_element_nodi_0/a_890_330#" -31.3181
+cap "diffamp_element_nodi_1/m1_838_418#" "diffamp_element_nodi_0/a_890_330#" -1.42109e-14
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_0/a_890_330#" -59.0643
+cap "diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 427.375
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -64.4031
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_nodi_0/a_890_330#" 9.76476
+cap "diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -31.879
+cap "diffamp_element_nodi_1/a_890_330#" "diffamp_element_nodi_1/m1_838_418#" -5.68434e-14
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -108.631
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -44.3437
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "diffamp_element_nodi_1/m1_838_418#" 55.7909
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -37.8168
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 2.84217e-14
+cap "diffamp_element_nodi_1/a_890_330#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 0.701188
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -7.34583
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "diffamp_element_nodi_1/m1_838_418#" 1.00634
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -267.93
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_1/m1_838_418#" 25.7348
+cap "diffamp_element_nodi_1/a_890_330#" "diffamp_element_nodi_0/a_890_330#" 42.5146
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 0.861048
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -5.97917
+cap "diffamp_element_nodi_1/m1_838_418#" "diffamp_element_nodi_0/a_890_330#" 1.42109e-14
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_0/a_890_330#" -378.546
+cap "diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -3.85607
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_nodi_0/a_890_330#" 4.66157
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" -0.610938
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "diffamp_element_nodi_1/m1_838_418#" 29.2383
+cap "diffamp_element_nodi_1/a_890_330#" "diffamp_element_nodi_0/a_890_330#" 1.24329
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -87.5936
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -3.24583
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -26.5863
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -11.1336
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -59.1566
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -19.0862
+cap "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -7.95259
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" "bias" -17210.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -27090190 -5480 734580 -428 0 0 0 0 0 0 0 0
+merge "bias" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "m1_900_n700#"
+merge "currm_comp_0/m1_1348_410#" "currm_comp_0/m1_1112_410#" 2511.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1717620 -5664 0 0 0 0 0 0 0 0
+merge "currm_comp_0/m1_1112_410#" "currm_comp_0/m1_876_410#"
+merge "currm_comp_0/m1_876_410#" "currm_comp_0/m1_640_410#"
+merge "currm_comp_0/m1_640_410#" "currm_comp_0/m1_404_410#"
+merge "currm_comp_0/m1_404_410#" "diffamp_element_nodi_0/m1_1414_418#"
+merge "diffamp_element_nodi_0/m1_1414_418#" "diffamp_element_nodi_0/m1_1222_418#"
+merge "diffamp_element_nodi_0/m1_1222_418#" "diffamp_element_nodi_0/m1_1030_418#"
+merge "diffamp_element_nodi_0/m1_1030_418#" "diffamp_element_nodi_0/m1_838_418#"
+merge "diffamp_element_nodi_0/m1_838_418#" "diffamp_element_nodi_1/m1_1414_418#"
+merge "diffamp_element_nodi_1/m1_1414_418#" "diffamp_element_nodi_1/m1_1222_418#"
+merge "diffamp_element_nodi_1/m1_1222_418#" "diffamp_element_nodi_1/m1_1030_418#"
+merge "diffamp_element_nodi_1/m1_1030_418#" "diffamp_element_nodi_1/m1_838_418#"
+merge "diffamp_element_nodi_1/m1_838_418#" "m2_720_n160#"
+merge "currm_comp_0/VSUBS" "currm_comp_0/m1_1466_170#" 3517.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5113820 -25172 3984264 -1088 3881940 -2996 0 0 0 0 0 0 0 0
+merge "currm_comp_0/m1_1466_170#" "currm_comp_0/m1_1230_170#"
+merge "currm_comp_0/m1_1230_170#" "currm_comp_0/m1_994_170#"
+merge "currm_comp_0/m1_994_170#" "currm_comp_0/m1_758_170#"
+merge "currm_comp_0/m1_758_170#" "currm_comp_0/m1_522_170#"
+merge "currm_comp_0/m1_522_170#" "currm_comp_0/m1_286_170#"
+merge "currm_comp_0/m1_286_170#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#" "m1_800_n770#"
+merge "m1_800_n770#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#" "diffamp_element_nodi_0/VSUBS"
+merge "diffamp_element_nodi_0/VSUBS" "diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#"
+merge "diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "diffamp_element_nodi_1/VSUBS"
+merge "diffamp_element_nodi_1/VSUBS" "diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#"
+merge "diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "VSUBS"
+merge "VSUBS" "VN"
+merge "diffamp_element_nodi_0/m1_1318_642#" "diffamp_element_nodi_0/m1_1126_642#" -26.3212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 248684 -1942 -326120 -1284 0 0 0 0 0 0 0 0
+merge "diffamp_element_nodi_0/m1_1126_642#" "diffamp_element_nodi_0/m1_934_642#"
+merge "diffamp_element_nodi_0/m1_934_642#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "OutP"
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" -1221.88 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2870496 -3884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" "VP"
+merge "diffamp_element_nodi_1/m1_1318_642#" "diffamp_element_nodi_1/m1_1126_642#" -389.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -162492 -1942 208980 -1284 0 0 0 0 0 0 0 0
+merge "diffamp_element_nodi_1/m1_1126_642#" "diffamp_element_nodi_1/m1_934_642#"
+merge "diffamp_element_nodi_1/m1_934_642#" "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "Outn"
diff --git a/mag/comp/comp_adv3.mag b/mag/comp/comp_adv3.mag
new file mode 100644
index 0000000..13fc771
--- /dev/null
+++ b/mag/comp/comp_adv3.mag
@@ -0,0 +1,102 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< locali >>
+rect 1440 1340 1560 2160
+rect 640 750 1410 760
+rect 1440 750 1550 1340
+rect 640 670 2370 750
+rect 1450 660 2370 670
+rect 1450 430 1550 660
+rect 1450 400 1560 430
+rect 1460 280 1560 400
+rect 1450 20 1560 280
+rect 1450 -40 1550 20
+rect 2270 -40 2380 -30
+rect 630 -130 2380 -40
+rect 630 -540 740 -130
+rect 630 -700 650 -540
+rect 710 -700 740 -540
+rect 630 -890 740 -700
+rect 2270 -540 2380 -130
+rect 2270 -700 2300 -540
+rect 2360 -700 2380 -540
+rect 2270 -880 2380 -700
+<< viali >>
+rect 650 -700 710 -540
+rect 2300 -700 2360 -540
+<< metal1 >>
+rect 750 1600 2250 2050
+rect 740 870 750 1310
+rect 1340 870 1350 1310
+rect 1650 870 1660 1310
+rect 2250 870 2260 1310
+rect 644 -540 716 -528
+rect 640 -700 650 -540
+rect 710 -700 720 -540
+rect 644 -712 716 -700
+rect 800 -770 840 -220
+rect 920 -270 2190 -210
+rect 920 -300 960 -270
+rect 900 -700 960 -300
+rect 2294 -540 2366 -528
+rect 2290 -700 2300 -540
+rect 2360 -700 2370 -540
+rect 920 -730 960 -700
+rect 2294 -712 2366 -700
+rect 920 -770 2190 -730
+rect 940 -790 2190 -770
+<< via1 >>
+rect 750 870 1340 1310
+rect 1660 870 2250 1310
+rect 650 -700 710 -540
+rect 2300 -700 2360 -540
+<< metal2 >>
+rect 750 1310 1340 1320
+rect 1640 1310 2280 1320
+rect 720 870 750 1310
+rect 1340 870 1360 1310
+rect 720 360 1360 870
+rect 1640 870 1660 1310
+rect 2250 870 2280 1310
+rect 1640 360 2280 870
+rect 720 180 1400 260
+rect 1610 180 2290 260
+rect 720 -160 2290 180
+rect 860 -460 970 -300
+rect 1060 -460 2180 -160
+rect 650 -540 710 -530
+rect 2300 -540 2360 -530
+rect 710 -700 2300 -540
+rect 650 -710 710 -700
+rect 2300 -710 2360 -700
+use currm_comp  currm_comp_0
+timestamp 1654072472
+transform 1 0 710 0 1 -870
+box -80 -40 1670 780
+use diffamp_element_nodi  diffamp_element_nodi_0
+timestamp 1654072472
+transform 1 0 792 0 1 -308
+box 708 208 1618 1028
+use diffamp_element_nodi  diffamp_element_nodi_1
+timestamp 1654072472
+transform 1 0 -108 0 1 -308
+box 708 208 1618 1028
+use sky130_fd_pr__res_xhigh_po_2p85_8K9944  sky130_fd_pr__res_xhigh_po_2p85_8K9944_0
+timestamp 1654072730
+transform 1 0 1951 0 1 1458
+box -451 -748 451 748
+use sky130_fd_pr__res_xhigh_po_2p85_8K9944  sky130_fd_pr__res_xhigh_po_2p85_8K9944_1
+timestamp 1654072730
+transform 1 0 1051 0 1 1458
+box -451 -748 451 748
+<< labels >>
+rlabel via1 970 1010 1070 1180 1 Outn
+rlabel metal2 860 -460 970 -300 1 bias
+rlabel metal2 860 -700 970 -540 1 VN
+rlabel space 650 270 700 410 1 Inp
+rlabel space 2310 270 2360 410 1 Inn
+rlabel via1 1800 970 2050 1180 1 OutP
+rlabel metal1 1390 1690 1600 1940 1 VP
+<< end >>
diff --git a/mag/comp/comp_adv3.spice b/mag/comp/comp_adv3.spice
new file mode 100644
index 0000000..e8d427c
--- /dev/null
+++ b/mag/comp/comp_adv3.spice
@@ -0,0 +1,73 @@
+* SPICE3 file created from comp_adv3.ext - technology: sky130B
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_8K9944 a_n285_150# a_n285_n582# a_n415_n712#
+X0 a_n285_n582# a_n285_150# a_n415_n712# sky130_fd_pr__res_xhigh_po_2p85 l=1.5e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_V6SMGN a_n129_n200# a_n81_n288# a_63_n200# a_n177_222#
++ a_n225_n200# a_n33_n200# a_n419_n374# a_n317_n200# a_159_n200# a_111_n288# a_15_222#
++ a_n273_n288# a_255_n200# a_207_222#
+X0 a_n33_n200# a_n81_n288# a_n129_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_255_n200# a_207_222# a_159_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_n288# a_63_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_n288# a_n317_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_63_n200# a_15_222# a_n33_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_222# a_n225_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element_nodi m1_1126_642# m1_1414_418# m1_1318_642# m1_838_418# m1_1030_418#
++ m1_934_642# m1_1222_418# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_V6SMGN_0 m1_1030_418# a_890_330# m1_1222_418# a_890_330#
++ m1_934_642# m1_1126_642# VSUBS m1_838_418# m1_1318_642# a_890_330# a_890_330# a_890_330#
++ m1_1414_418# a_890_330# sky130_fd_pr__nfet_01v8_lvt_V6SMGN
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X5 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X7 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X10 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt currm_comp m1_522_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#
++ m1_994_170# m1_50_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1230_170#
++ m1_1348_410# m1_168_410# m1_404_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_758_170# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#
++ m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ m1_1466_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288# m1_286_170# m1_640_410#
++ VSUBS sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#
+Xsky130_fd_pr__nfet_01v8_lvt_HR8DH9_0 sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# m1_286_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#
++ m1_1348_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288# VSUBS m1_404_410#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288# m1_50_170# m1_1230_170# m1_522_170#
++ m1_168_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_1466_170# m1_640_410# m1_994_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288# m1_758_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9
+.ends
+
+
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_0 VP OutP VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_1 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xdiffamp_element_nodi_0 OutP m2_720_n160# OutP m2_720_n160# m2_720_n160# OutP m2_720_n160#
++ VN diffamp_element_nodi
+Xdiffamp_element_nodi_1 Outn m2_720_n160# Outn m2_720_n160# m2_720_n160# Outn m2_720_n160#
++ VN diffamp_element_nodi
+Xcurrm_comp_0 VN bias bias VN VN bias VN m2_720_n160# bias m2_720_n160# VN VN m2_720_n160#
++ bias bias bias bias m2_720_n160# bias bias VN bias VN m2_720_n160# VN bias currm_comp
+
+
diff --git a/mag/comp/comp_adv3_di.ext b/mag/comp/comp_adv3_di.ext
new file mode 100644
index 0000000..bb90fa1
--- /dev/null
+++ b/mag/comp/comp_adv3_di.ext
@@ -0,0 +1,194 @@
+timestamp 1654166568
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__res_xhigh_po_2p85_TY94YJ sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1 1 0 2231 0 1 1408
+use sky130_fd_pr__res_xhigh_po_2p85_TY94YJ sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0 1 0 1051 0 1 1408
+use diffamp_element diffamp_element_1 1 0 -120 0 1 -308
+use diffamp_element diffamp_element_0 1 0 1060 0 1 -308
+use currm_comp currm_comp_0 1 0 510 0 1 -890
+node "bias" 0 43.9791 660 -480 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 540 0 0 0 0 0 0 0 0
+node "m2_820_n490#" 1 628.861 820 -490 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1030600 5460 0 0 0 0 0 0 0 0
+node "VN" 3 1294.68 420 -730 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 399600 5520 596500 5340 0 0 0 0 0 0
+node "Inn2" 0 29.3875 1690 350 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 540 0 0 0 0 0 0 0 0
+node "Inp2" 0 51.3071 510 350 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17000 540 0 0 0 0 0 0 0 0
+node "m1_710_n730#" 8 927.217 710 -730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 147600 6060 0 0 0 0 0 0 0 0 0 0
+node "m1_580_n790#" 1 60.6845 580 -790 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37800 1220 0 0 0 0 0 0 0 0 0 0
+node "m1_1710_500#" 0 39.1526 1710 500 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3000 220 0 0 0 0 0 0 0 0 0 0
+node "m1_530_510#" 0 49.1044 530 510 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3400 240 0 0 0 0 0 0 0 0 0 0
+node "Outp" 0 987.459 1930 870 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268400 2100 620300 3220 0 0 0 0 0 0 0 0
+node "Outn" 0 934.978 740 870 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268400 2100 620300 3220 0 0 0 0 0 0 0 0
+node "VP" 0 1012.37 760 1500 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 792000 4420 0 0 0 0 0 0 0 0 0 0
+node "li_470_n170#" 613 3842.58 470 -170 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1124000 14980 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "VN" "m2_820_n490#" 1616.04
+cap "bias" "m2_820_n490#" 110.783
+cap "Outp" "li_470_n170#" 205.518
+cap "m1_530_510#" "Inp2" 46.575
+cap "m1_1710_500#" "m1_710_n730#" 3.87749
+cap "m2_820_n490#" "Outn" 258.578
+cap "VN" "li_470_n170#" 233.48
+cap "Outp" "Inn2" 60.4273
+cap "li_470_n170#" "m1_580_n790#" 266.087
+cap "li_470_n170#" "Outn" 205.637
+cap "Outp" "Outn" 85.8466
+cap "Inn2" "VN" 55.8571
+cap "VN" "bias" 169.024
+cap "VN" "m1_580_n790#" 206.38
+cap "m1_710_n730#" "m2_820_n490#" 599.933
+cap "Inn2" "Outn" 20.1424
+cap "bias" "Outn" 2.3697
+cap "li_470_n170#" "VP" 837.759
+cap "Outp" "VP" 114.584
+cap "Outp" "m1_710_n730#" 1.32973
+cap "m1_530_510#" "m1_580_n790#" 0.492
+cap "Inn2" "m1_1710_500#" 42.932
+cap "VN" "m1_710_n730#" 108.306
+cap "VP" "Outn" 114.584
+cap "bias" "m1_710_n730#" 38.8605
+cap "VN" "Inp2" 58.0294
+cap "m1_710_n730#" "m1_580_n790#" 321.557
+cap "li_470_n170#" "m2_820_n490#" 597.161
+cap "m1_710_n730#" "Outn" 20.2784
+cap "Outp" "m2_820_n490#" 261.342
+cap "m1_530_510#" "m1_1710_500#" 1.64732
+cap "Inp2" "Outn" 60.4273
+cap "m1_1710_500#" "VP" 2.33053
+cap "diffamp_element_1/a_890_840#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 0.732575
+cap "diffamp_element_1/m1_934_420#" "diffamp_element_1/a_890_840#" 201.837
+cap "diffamp_element_1/a_890_840#" "diffamp_element_0/a_698_850#" 179.58
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 631.645
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" -745.077
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -44.3625
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 0.563275
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_698_850#" -558.355
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_890_840#" -112.741
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_1/a_698_850#" 5.55896
+cap "diffamp_element_0/a_698_850#" "diffamp_element_1/a_698_850#" 3.32399
+cap "diffamp_element_1/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -36.0922
+cap "diffamp_element_1/m1_934_420#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 288.641
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -4.87424
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_0/a_698_850#" 33.3738
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -169.172
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" "diffamp_element_0/a_698_850#" -11.5345
+cap "diffamp_element_0/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 0.439326
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_1/a_890_840#" 106.701
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_698_850#" 156.364
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/m1_934_420#" -299.642
+cap "diffamp_element_0/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" 1.63338
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" -785.223
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" 37.0148
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_1/m1_934_420#" -2644
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_890_840#" 8.19055
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_698_850#" -15.9342
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -252.181
+cap "diffamp_element_0/a_890_840#" "diffamp_element_1/m1_934_420#" 255.215
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" 5.17171
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_0/a_890_840#" 3.34328
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_0/a_698_850#" 38.0918
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_890_840#" 1.17351
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "diffamp_element_0/a_698_850#" 0.439326
+cap "diffamp_element_1/a_698_850#" "diffamp_element_0/a_698_850#" 1.17525
+cap "diffamp_element_0/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -36.1477
+cap "diffamp_element_0/a_890_840#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -4.26324
+cap "diffamp_element_1/a_890_840#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 348.607
+cap "diffamp_element_1/a_890_840#" "diffamp_element_0/a_698_850#" 50.02
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_698_850#" 8.02865
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 2.04232
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" -83.9022
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" 0.811594
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_1/a_698_850#" 0.470882
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -22.8361
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_698_850#" -29.5972
+cap "diffamp_element_0/a_698_850#" "diffamp_element_1/a_698_850#" -0.823661
+cap "diffamp_element_1/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 11.2736
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -10.9755
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -93.4135
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "diffamp_element_0/a_698_850#" 6.5022
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -49.9572
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_890_840#" -34.2049
+cap "diffamp_element_0/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" 0.109831
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" "diffamp_element_0/a_698_850#" -28.1135
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -0.0724074
+cap "diffamp_element_1/a_890_840#" "diffamp_element_1/a_698_850#" 0.813167
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_1/a_890_840#" 14.8638
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "diffamp_element_0/a_698_850#" 6.27647
+cap "diffamp_element_1/a_890_840#" "diffamp_element_0/a_698_850#" 5.96299
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" 0.545657
+cap "diffamp_element_1/m1_934_420#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -47.3316
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -0.498649
+cap "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "diffamp_element_0/a_698_850#" -1.13214
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -45.0273
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_890_840#" -4.6275
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_698_850#" -8.48914
+cap "diffamp_element_1/a_698_850#" "diffamp_element_0/a_698_850#" -0.823661
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "diffamp_element_0/a_698_850#" 0.109831
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -0.0724074
+cap "diffamp_element_0/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -0.148854
+cap "diffamp_element_0/a_890_840#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" 327.575
+cap "diffamp_element_0/a_698_850#" "diffamp_element_0/a_890_840#" 0.813167
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" -37.6857
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_1/a_890_840#" 0.553716
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -92.4051
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" -29.5438
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" -19.4384
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" 0.312746
+cap "diffamp_element_1/a_698_850#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" 0.539202
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" 0.312746
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "diffamp_element_0/a_698_850#" 0.539202
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" 9.32502
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -19.4384
+cap "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "diffamp_element_0/a_698_850#" -0.838636
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" "bias" -17087.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29343410 -5408 639100 -448 0 0 0 0 0 0 0 0
+merge "bias" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "m1_710_n730#"
+merge "diffamp_element_1/m1_838_660#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" -138.994 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12108 -1942 352800 -1624 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_n532#" "Outn"
+merge "currm_comp_0/VSUBS" "currm_comp_0/m1_1466_170#" -78.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3021948 -26352 3457218 -1152 9907608 -4972 0 0 0 0 0 0 0 0
+merge "currm_comp_0/m1_1466_170#" "currm_comp_0/m1_1230_170#"
+merge "currm_comp_0/m1_1230_170#" "currm_comp_0/m1_994_170#"
+merge "currm_comp_0/m1_994_170#" "currm_comp_0/m1_758_170#"
+merge "currm_comp_0/m1_758_170#" "currm_comp_0/m1_522_170#"
+merge "currm_comp_0/m1_522_170#" "currm_comp_0/m1_286_170#"
+merge "currm_comp_0/m1_286_170#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#" "m1_580_n790#"
+merge "m1_580_n790#" "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#"
+merge "currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#" "diffamp_element_0/VSUBS"
+merge "diffamp_element_0/VSUBS" "diffamp_element_0/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#"
+merge "diffamp_element_0/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" "diffamp_element_1/VSUBS"
+merge "diffamp_element_1/VSUBS" "diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#"
+merge "diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" "VN"
+merge "VN" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n415_n662#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n415_n662#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "VSUBS"
+merge "VSUBS" "li_470_n170#"
+merge "diffamp_element_0/m1_838_660#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" -104.976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75184 -1942 517440 -1624 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_n532#" "Outp"
+merge "diffamp_element_1/m1_646_660#" "Inp2" -68.2132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2904600 -300 4488036 -448 0 0 0 0 0 0 0 0
+merge "Inp2" "diffamp_element_1/a_698_850#"
+merge "diffamp_element_1/a_698_850#" "m1_530_510#"
+merge "diffamp_element_0/m1_646_660#" "Inn2" -31.5281 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2000 -280 -155884 -448 0 0 0 0 0 0 0 0
+merge "Inn2" "diffamp_element_0/a_698_850#"
+merge "diffamp_element_0/a_698_850#" "m1_1710_500#"
+merge "currm_comp_0/m1_1348_410#" "currm_comp_0/m1_1112_410#" 593.973 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3485852 -4820 0 0 0 0 0 0 0 0
+merge "currm_comp_0/m1_1112_410#" "currm_comp_0/m1_876_410#"
+merge "currm_comp_0/m1_876_410#" "currm_comp_0/m1_640_410#"
+merge "currm_comp_0/m1_640_410#" "currm_comp_0/m1_404_410#"
+merge "currm_comp_0/m1_404_410#" "diffamp_element_0/m1_934_420#"
+merge "diffamp_element_0/m1_934_420#" "diffamp_element_1/m1_934_420#"
+merge "diffamp_element_1/m1_934_420#" "m2_820_n490#"
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_100#" "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" -1938.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3317776 -3884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "VP"
diff --git a/mag/comp/comp_adv3_di.mag b/mag/comp/comp_adv3_di.mag
new file mode 100644
index 0000000..906bd1e
--- /dev/null
+++ b/mag/comp/comp_adv3_di.mag
@@ -0,0 +1,118 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< locali >>
+rect 1450 760 1840 2070
+rect 640 750 1840 760
+rect 640 670 2640 750
+rect 1450 660 2640 670
+rect 1450 -40 1530 660
+rect 470 -160 2350 -40
+rect 470 -170 1970 -160
+rect 480 -180 590 -170
+rect 480 -320 580 -180
+rect 480 -720 590 -320
+rect 480 -860 580 -720
+rect 480 -870 590 -860
+rect 2130 -890 2210 -160
+<< metal1 >>
+rect 760 1500 2520 1950
+rect 740 870 750 1310
+rect 1340 870 1350 1310
+rect 1930 870 1940 1310
+rect 2530 870 2540 1310
+rect 540 550 590 560
+rect 530 510 590 550
+rect 540 500 590 510
+rect 1710 500 1770 550
+rect 580 -790 650 -250
+rect 720 -290 1970 -240
+rect 720 -310 760 -290
+rect 710 -730 760 -310
+rect 720 -750 760 -730
+rect 720 -800 1970 -750
+<< via1 >>
+rect 750 870 1340 1310
+rect 1940 870 2530 1310
+<< metal2 >>
+rect 750 1310 1340 1320
+rect 1940 1310 2530 1320
+rect 720 870 750 1310
+rect 1340 870 1360 1310
+rect 510 350 610 520
+rect 720 350 1360 870
+rect 1900 870 1940 1310
+rect 2530 870 2540 1310
+rect 1690 350 1790 520
+rect 1900 350 2540 870
+rect 420 270 710 280
+rect 920 180 1340 280
+rect 420 100 710 110
+rect 820 -50 1340 180
+rect 1610 270 1900 280
+rect 1610 100 1900 110
+rect 1990 -50 2450 280
+rect 660 -480 760 -310
+rect 820 -490 2450 -50
+rect 420 -560 2060 -550
+rect 710 -720 1610 -560
+rect 1900 -720 2060 -560
+rect 420 -730 2060 -720
+<< via2 >>
+rect 420 110 710 270
+rect 1610 110 1900 270
+rect 420 -720 710 -560
+rect 1610 -720 1900 -560
+<< metal3 >>
+rect 420 275 710 280
+rect 410 270 720 275
+rect 410 110 420 270
+rect 710 110 720 270
+rect 410 105 720 110
+rect 1600 270 1910 275
+rect 1600 110 1610 270
+rect 1900 110 1910 270
+rect 1600 105 1910 110
+rect 420 -555 710 105
+rect 1610 -555 1900 105
+rect 410 -560 720 -555
+rect 410 -720 420 -560
+rect 710 -720 720 -560
+rect 410 -725 720 -720
+rect 1600 -560 1910 -555
+rect 1600 -720 1610 -560
+rect 1900 -720 1910 -560
+rect 1600 -725 1910 -720
+rect 420 -730 710 -725
+use currm_comp  currm_comp_0
+timestamp 1654072472
+transform 1 0 510 0 1 -890
+box -80 -40 1670 780
+use diffamp_element  diffamp_element_0
+timestamp 1654015619
+transform 1 0 1060 0 1 -308
+box 420 208 1618 1028
+use diffamp_element  diffamp_element_1
+timestamp 1654015619
+transform 1 0 -120 0 1 -308
+box 420 208 1618 1028
+use sky130_fd_pr__res_xhigh_po_2p85_TY94YJ  sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0
+timestamp 1654072472
+transform 1 0 1051 0 1 1408
+box -451 -698 451 698
+use sky130_fd_pr__res_xhigh_po_2p85_TY94YJ  sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1
+timestamp 1654072472
+transform 1 0 2231 0 1 1408
+box -451 -698 451 698
+<< labels >>
+rlabel metal2 510 350 610 520 1 Inp2
+rlabel space 1400 240 1450 400 1 Inp
+rlabel space 1540 240 1590 400 1 Inn
+rlabel metal2 1690 350 1790 520 1 Inn2
+rlabel via1 970 1010 1070 1180 1 Outn
+rlabel via1 2150 1010 2250 1180 1 Outp
+rlabel via2 440 -710 600 -580 1 VN
+rlabel metal2 660 -480 760 -310 1 bias
+rlabel metal1 1480 1570 1760 1860 1 VP
+<< end >>
diff --git a/mag/comp/comp_adv3_di.spice b/mag/comp/comp_adv3_di.spice
new file mode 100644
index 0000000..4094c19
--- /dev/null
+++ b/mag/comp/comp_adv3_di.spice
@@ -0,0 +1,74 @@
+* SPICE3 file created from comp_adv3_di.ext - technology: sky130B
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X5 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X7 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X10 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt currm_comp m1_522_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#
++ m1_994_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_50_170# m1_1230_170#
++ m1_1348_410# m1_168_410# m1_404_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_758_170# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#
++ m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ m1_1466_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288# m1_286_170# m1_640_410#
++ VSUBS sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#
+Xsky130_fd_pr__nfet_01v8_lvt_HR8DH9_0 sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# m1_286_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#
++ m1_1348_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288# VSUBS m1_404_410#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288# m1_50_170# m1_1230_170# m1_522_170#
++ m1_168_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_1466_170# m1_640_410# m1_994_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288# m1_758_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_DG2JGC a_15_n200# a_n177_n200# a_111_n200# a_n273_n200#
++ a_159_n288# a_63_222# a_n81_n200# a_255_222# a_399_n200# a_351_n288# a_n417_n288#
++ a_n129_222# a_n563_n374# a_207_n200# a_n225_n288# a_n321_222# a_n461_n200# a_n369_n200#
++ a_303_n200# a_n33_n288#
+X0 a_n81_n200# a_n129_222# a_n177_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_n288# a_n81_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_n369_n200# a_n417_n288# a_n461_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_303_n200# a_255_222# a_207_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_n200# a_n321_222# a_n369_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X5 a_207_n200# a_159_n288# a_111_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_n177_n200# a_n225_n288# a_n273_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_111_n200# a_63_222# a_15_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_399_n200# a_351_n288# a_303_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element m1_838_660# m1_934_420# a_698_850# m1_646_660# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_DG2JGC_0 m1_838_660# m1_838_660# m1_934_420# VSUBS a_890_840#
++ a_890_840# m1_934_420# a_890_840# m1_838_660# a_890_840# VSUBS a_890_840# VSUBS
++ m1_838_660# a_698_850# a_698_850# VSUBS m1_646_660# m1_934_420# a_890_840# sky130_fd_pr__nfet_01v8_lvt_DG2JGC
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_TY94YJ a_n285_100# a_n285_n532# a_n415_n662#
+X0 a_n285_n532# a_n285_100# a_n415_n662# sky130_fd_pr__res_xhigh_po_2p85 l=1e+06u
+.ends
+
+
+Xcurrm_comp_0 VN bias bias VN bias VN VN m2_820_n490# bias m2_820_n490# VN VN m2_820_n490#
++ bias bias bias bias m2_820_n490# bias bias VN bias VN m2_820_n490# VN bias currm_comp
+Xdiffamp_element_0 Outp m2_820_n490# Inn2 Inn2 VN diffamp_element
+Xdiffamp_element_1 Outn m2_820_n490# Inp2 Inp2 VN diffamp_element
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1 VP Outp VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+
+
diff --git a/mag/comp/comp_to_logic.ext b/mag/comp/comp_to_logic.ext
new file mode 100644
index 0000000..1619d55
--- /dev/null
+++ b/mag/comp/comp_to_logic.ext
@@ -0,0 +1,421 @@
+timestamp 1654174923
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_GV8PGY sky130_fd_pr__nfet_01v8_GV8PGY_0 1 0 3431 0 1 2660
+use sky130_fd_pr__nfet_01v8_PL8DH5 sky130_fd_pr__nfet_01v8_PL8DH5_0 1 0 2267 0 1 1850
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 1 0 1563 0 1 2660
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1 1 0 2073 0 1 2660
+use sky130_fd_pr__nfet_01v8_GV8PGY sky130_fd_pr__nfet_01v8_GV8PGY_1 1 0 4041 0 1 2660
+use sky130_fd_pr__nfet_01v8_YT8PGU sky130_fd_pr__nfet_01v8_YT8PGU_0 1 0 4621 0 1 2660
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2 1 0 5883 0 1 2660
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3 1 0 5183 0 1 2660
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_0 1 0 3369 0 1 3489
+use sky130_fd_pr__pfet_01v8_X4XKHL sky130_fd_pr__pfet_01v8_X4XKHL_0 1 0 1563 0 1 3489
+use sky130_fd_pr__pfet_01v8_X4XKHL sky130_fd_pr__pfet_01v8_X4XKHL_1 1 0 2073 0 1 3489
+use sky130_fd_pr__pfet_01v8_XJ7GBL sky130_fd_pr__pfet_01v8_XJ7GBL_0 1 0 1101 0 1 3339
+use sky130_fd_pr__pfet_01v8_XJ7GBL sky130_fd_pr__pfet_01v8_XJ7GBL_1 1 0 2531 0 1 3339
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_1 1 0 4069 0 1 3489
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_2 1 0 5279 0 1 3489
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_3 1 0 5979 0 1 3489
+use sky130_fd_pr__pfet_01v8_X4XKHL sky130_fd_pr__pfet_01v8_X4XKHL_2 1 0 4673 0 1 3489
+node "I_Bias" 11 936.957 1230 1570 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 249400 9260 39024 892 0 0 0 0 0 0 0 0
+node "VM4D" 8 1120.35 1430 2460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156288 6000 1116768 6184 0 0 0 0 0 0 0 0
+node "Out" 3 345.552 5846 2684 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39072 1500 115288 2244 0 0 0 0 0 0 0 0
+node "li_3700_2290#" 118 334.13 3700 2290 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59200 1640 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_1340_2210#" 683 5665.99 1340 2210 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 365700 8880 673396 18412 1960032 15036 0 0 0 0 0 0 0 0
+node "li_5590_3110#" 122 302.768 5590 3110 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60800 1680 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_4890_3110#" 122 224.797 4890 3110 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60800 1680 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_4380_3110#" 122 231.231 4380 3110 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60800 1680 0 0 0 0 0 0 0 0 0 0 0 0
+node "VP" 719 4867.81 1250 3530 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 301000 8260 429056 15048 2047884 14812 0 0 0 0 0 0 0 0
+node "VM11D" 1570 1186.25 3302 2372 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68112 2592 0 0 35088 2336 183696 6720 240640 2780 0 0 0 0 0 0 0 0
+node "In_p" 549 407.798 1992 2382 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20144 912 0 0 11016 784 66000 2320 0 0 0 0 0 0 0 0 0 0
+node "In_n" 579 453.243 1482 2382 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19024 912 0 0 11016 784 66000 2320 0 0 0 0 0 0 0 0 0 0
+node "VM13D" 1692 1289.5 5802 2372 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70812 2772 0 0 35088 2336 186572 7380 150196 3408 0 0 0 0 0 0 0 0
+node "VM17D" 1651 1043.36 5102 2372 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69912 2712 0 0 35088 2336 173548 6880 106360 2600 0 0 0 0 0 0 0 0
+node "VM12D" 569 808.722 4592 3192 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22284 972 0 0 11016 784 182596 6660 240140 3260 0 0 0 0 0 0 0 0
+node "VM6D" 1722 1643.62 1992 3192 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71412 2812 0 0 35088 2336 284800 10884 171188 2504 130800 2370 0 0 0 0 0 0
+node "VM1D" 1713 1786.95 1482 3202 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69832 2792 0 0 38080 2384 276800 10684 171188 2504 145400 2750 0 0 0 0 0 0
+node "w_5802_3192#" 6452 74.772 5802 3192 nw 0 0 0 0 24924 944 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_5102_3192#" 5979 73.152 5102 3192 nw 0 0 0 0 24384 908 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_4592_3192#" 2782 33.336 4592 3192 nw 0 0 0 0 11112 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_3892_3192#" 6189 73.872 3892 3192 nw 0 0 0 0 24624 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_3192_3192#" 6189 73.872 3192 3192 nw 0 0 0 0 24624 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_1992_3192#" 2908 33.696 1992 3192 nw 0 0 0 0 11232 492 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_1482_3202#" 3437 29.316 1482 3202 nw 0 0 0 0 9772 480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_5802_3720#" 6084 73.512 5802 3720 nw 0 0 0 0 24504 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_5102_3720#" 5770 72.432 5102 3720 nw 0 0 0 0 24144 892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_4592_3720#" 2845 33.516 4592 3720 nw 0 0 0 0 11172 488 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_3892_3720#" 6084 73.512 3892 3720 nw 0 0 0 0 24504 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_3192_3720#" 5927 72.972 3192 3720 nw 0 0 0 0 24324 904 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_1992_3720#" 2719 33.156 1992 3720 nw 0 0 0 0 11052 480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_1482_3720#" 2782 33.336 1482 3720 nw 0 0 0 0 11112 484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "VM13D" "li_1340_2210#" 901.936
+cap "Out" "li_1340_2210#" 47.0344
+cap "VP" "VM6D" 4002.82
+cap "li_5590_3110#" "li_4890_3110#" 28.9935
+cap "VP" "VM1D" 2165.19
+cap "li_3700_2290#" "VM11D" 236.906
+cap "In_p" "VM4D" 509.374
+cap "VP" "VM13D" 1270.88
+cap "In_p" "li_1340_2210#" 285.793
+cap "VP" "Out" 123.242
+cap "VM17D" "li_1340_2210#" 859.47
+cap "VM11D" "VM4D" 2.14835
+cap "VM12D" "VM6D" 394.331
+cap "VM12D" "VM1D" 3.56965
+cap "VM11D" "li_1340_2210#" 1808.19
+cap "I_Bias" "VM4D" 1510.27
+cap "In_n" "VM1D" 356.861
+cap "VP" "VM17D" 1157.46
+cap "I_Bias" "li_1340_2210#" 3606
+cap "li_3700_2290#" "li_1340_2210#" 87.8984
+cap "VM12D" "VM13D" 0.0412042
+cap "VP" "VM11D" 169.382
+cap "VM17D" "li_4890_3110#" 189.514
+cap "VP" "I_Bias" 4.30411
+cap "VP" "li_3700_2290#" 24.5
+cap "li_1340_2210#" "VM4D" 2220.97
+cap "In_n" "In_p" 23.8143
+cap "li_5590_3110#" "VM13D" 243.685
+cap "VM12D" "VM17D" 590.698
+cap "VM1D" "VM6D" 2942.37
+cap "VP" "VM4D" 46.7672
+cap "VM12D" "VM11D" 454.928
+cap "VP" "li_1340_2210#" 59.3381
+cap "VP" "li_4380_3110#" 104.628
+cap "In_n" "I_Bias" 62.3998
+cap "Out" "VM13D" 670.1
+cap "li_5590_3110#" "VM17D" 14.209
+cap "li_4380_3110#" "li_4890_3110#" 41.8047
+cap "In_p" "VM6D" 283.832
+cap "In_p" "VM1D" 105.895
+cap "VM17D" "VM6D" 0.104431
+cap "VP" "li_4890_3110#" 68.7371
+cap "In_n" "VM4D" 427.036
+cap "VM12D" "li_1340_2210#" 715.805
+cap "VM12D" "li_4380_3110#" 192.655
+cap "VM17D" "VM13D" 735.332
+cap "In_n" "li_1340_2210#" 70.4492
+cap "VM11D" "VM6D" 178.582
+cap "VM11D" "VM1D" 524.206
+cap "I_Bias" "VM1D" 1.15155
+cap "VP" "VM12D" 1004.55
+cap "VM12D" "li_4890_3110#" 14
+cap "In_p" "VM11D" 21.8341
+cap "VM6D" "VM4D" 109.822
+cap "VM1D" "VM4D" 126.629
+cap "VM6D" "li_1340_2210#" 2.67745
+cap "li_4380_3110#" "VM6D" 14.209
+cap "VM1D" "li_1340_2210#" 117.623
+cap "VP" "li_5590_3110#" 70.0517
+cap "VM11D" "VM17D" 5.17827
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 116.734
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 125.522
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 5.46664
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -4.25254
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 333.647
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" -6.95432
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" 15.4858
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" -1125.66
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 24.5319
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" -13.2028
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" 128.529
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" -5.13593
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" 16.7162
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 336.189
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 16.2469
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" -185.981
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" -410.257
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -9.43606
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" 37.9998
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -1.2317
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -0.363813
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -198.392
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 14.1185
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" -242.359
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -15.99
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -9.96672
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -0.984
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" -686.639
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 447.029
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" -13.7366
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" -1389.42
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" -3.36251
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -54.7069
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 496.975
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 30.1396
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -546.709
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -7.50391
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" 41.9123
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 3.95909
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -1.11266
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 692.968
+cap "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" -27.5586
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -2.68843
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" -2.7675
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 449.554
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -17.7477
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" 51.2175
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" -0.841202
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -0.841202
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 296.496
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 4.84478
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_63_n288#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -1.11266
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 52.3696
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -1.25274
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" 72.0907
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 6.33187
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" -112.68
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" -158.277
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" 36.4176
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" 21.0553
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 356.13
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 60.0261
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -3.08046
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 0.236786
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -1.40355
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" 2.72665
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 0.782623
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" 100.81
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" 340.406
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 79.5619
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" 73.9899
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 47.1734
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" -1.43618
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" -1.76111
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -1.91615
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 228.459
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -21.0749
+cap "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" 3.76531
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" 1.05239
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 761.733
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" -58.0119
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 300.305
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -0.363813
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" 305.508
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" 1.15953
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" 4.60629
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -2.05
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 15.1111
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 33.0345
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -276.656
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" 513
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" 425.568
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 5.02164
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" -5.80964
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 182.154
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 33.3706
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 48.5777
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -0.0584107
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -0.263571
+cap "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" -34.2978
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" 3.60791
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" -65.0649
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 126.442
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 1060.91
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -1.11266
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" 13.3476
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" -8.96344
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" 45.114
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" -555.081
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" -0.0144068
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 524.716
+cap "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" 85.1361
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" 641.379
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 143.423
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_63_n288#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -1.11266
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 192.706
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" 153.266
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 75.779
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" 1246.28
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" -0.0267975
+cap "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 28.5498
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" 287.989
+cap "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -4.03872
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" -0.04602
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" 311.468
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/VSUBS" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_63_n200#" 26770.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13169452 -15478 29864790 -11948 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n227_n374#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/VSUBS" "sky130_fd_pr__pfet_01v8_U47ZGH_2/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/VSUBS" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n125_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n227_n374#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n73_n200#"
+merge "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n73_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n175_n374#"
+merge "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n175_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_15_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_15_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/VSUBS" "sky130_fd_pr__pfet_01v8_XJ7GBL_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_1/VSUBS" "sky130_fd_pr__pfet_01v8_XJ7GBL_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_0/VSUBS" "sky130_fd_pr__pfet_01v8_X4XKHL_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/VSUBS" "sky130_fd_pr__pfet_01v8_X4XKHL_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/VSUBS" "sky130_fd_pr__pfet_01v8_U47ZGH_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/VSUBS" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n173_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n173_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n275_n374#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n275_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n227_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1151_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1151_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1033_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1033_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_797_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_797_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_561_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_325_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_89_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n147_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n147_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n383_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n619_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n619_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n855_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n855_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1091_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1091_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1209_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1209_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1088_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_1088_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1154_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1154_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1311_n374#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1311_n374#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_15_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_15_n200#" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n173_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n173_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n275_n374#" "li_1340_2210#"
+merge "li_1340_2210#" "li_3700_2290#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_159_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n33_n200#" -11418.1 0 0 0 0 -18578580 -20996 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26348256 -21984 36375728 -8544 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n221_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/w_n359_n419#" "w_5802_3192#"
+merge "w_5802_3192#" "w_5802_3720#"
+merge "w_5802_3720#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_159_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_63_n200#" "li_5590_3110#"
+merge "li_5590_3110#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_n125_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_n125_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/w_n263_n419#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/w_n263_n419#" "w_4592_3192#"
+merge "w_4592_3192#" "w_4592_3720#"
+merge "w_4592_3720#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n221_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/w_n359_n419#" "li_4890_3110#"
+merge "li_4890_3110#" "w_5102_3192#"
+merge "w_5102_3192#" "w_5102_3720#"
+merge "w_5102_3720#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_159_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n221_n200#" "li_4380_3110#"
+merge "li_4380_3110#" "w_3892_3192#"
+merge "w_3892_3192#" "w_3892_3720#"
+merge "w_3892_3720#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/w_n359_n419#" "sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_15_n50#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_15_n50#" "sky130_fd_pr__pfet_01v8_XJ7GBL_1/w_n211_n269#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_1/w_n211_n269#" "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_n73_n50#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_n73_n50#" "sky130_fd_pr__pfet_01v8_XJ7GBL_0/w_n211_n269#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_0/w_n211_n269#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_63_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n125_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n125_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/w_n263_n419#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/w_n263_n419#" "w_1992_3192#"
+merge "w_1992_3192#" "w_1992_3720#"
+merge "w_1992_3720#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n125_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n125_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/w_n263_n419#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/w_n263_n419#" "w_1482_3202#"
+merge "w_1482_3202#" "w_1482_3720#"
+merge "w_1482_3720#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n221_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "VP"
+merge "VP" "w_3192_3192#"
+merge "w_3192_3192#" "w_3192_3720#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_n73_n50#" "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_n33_n147#" -102741 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29635974 -2084 0 0 -10708536 -1200 -22051286 -3290 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_n33_n147#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n81_n297#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_n81_n297#" "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_15_231#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_0/a_15_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_111_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "VM1D"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_63_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n129_n200#" 1804.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3261964 -1324 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n129_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n33_n200#" "Out"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n125_n200#" 16656.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21079292 -5504 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n125_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_915_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_915_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_679_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_679_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_443_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_207_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n265_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n265_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n501_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n501_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n737_n200#" "VM4D"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" -4803.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1439680 -664 0 0 -273504 -400 -942720 -416 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "In_n"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_63_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n129_n288#" -21506 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6912096 -1992 0 0 -2596032 -1200 -1315632 -3020 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n129_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n33_222#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n33_222#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_111_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_111_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n81_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n81_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_63_n288#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_63_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n129_n288#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_0/a_n33_222#" "VM11D"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n973_n200#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_970_n288#" -73346.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -114282670 -8380 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_970_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_852_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_852_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_734_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_734_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_616_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_616_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_498_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_498_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_380_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_380_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_262_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_262_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_144_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_144_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_26_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_26_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n92_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n92_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n210_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n210_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n328_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n328_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n446_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n446_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n564_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n564_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n682_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n682_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n800_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n800_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n918_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n918_n288#" "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#"
+merge "sky130_fd_pr__nfet_01v8_PL8DH5_0/a_n1036_n288#" "I_Bias"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n177_n297#" -28623.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8924304 -2100 0 0 -2206240 -1200 -3196288 -2576 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_111_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_3/a_n81_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2/a_15_222#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n129_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n33_n200#" "VM13D"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_111_231#" -33605.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -10292494 -2040 0 0 -2596144 -1200 -5367112 -2134 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_111_231#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_2/a_n81_231#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3/a_15_222#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#"
+merge "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_15_n200#" "VM17D"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_n81_n297#" "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_15_231#" -18572 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6384308 -688 0 0 -1516528 -400 506272 -2604 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_2/a_15_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_63_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n129_n200#" "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n33_n288#"
+merge "sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n33_n288#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_111_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_111_n200#" "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#"
+merge "sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n81_n200#" "VM12D"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" -51379.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -15221576 -2104 0 0 -4472872 -1200 -10186362 -3290 0 0 -360000 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_111_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_n33_n147#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_n33_n147#" "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_15_n50#"
+merge "sky130_fd_pr__pfet_01v8_XJ7GBL_0/a_15_n50#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n33_n200#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n81_n297#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_n81_n297#" "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#"
+merge "sky130_fd_pr__pfet_01v8_X4XKHL_1/a_15_231#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n33_n200#" "VM6D"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" -430.899 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -194020 -664 0 0 -102288 -400 -266040 -416 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_15_222#" "In_p"
diff --git a/mag/comp/comp_to_logic.mag b/mag/comp/comp_to_logic.mag
new file mode 100644
index 0000000..c5658a5
--- /dev/null
+++ b/mag/comp/comp_to_logic.mag
@@ -0,0 +1,1236 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654174923
+<< nwell >>
+rect 1482 3720 1644 3786
+rect 1992 3720 2154 3786
+rect 3192 3720 3546 3786
+rect 3892 3720 4246 3786
+rect 4592 3720 4754 3786
+rect 5102 3720 5456 3786
+rect 5802 3720 6156 3786
+rect 1500 3706 1530 3720
+rect 2010 3708 2040 3720
+rect 3210 3706 3240 3720
+rect 3402 3702 3432 3720
+rect 3910 3704 3940 3720
+rect 4102 3698 4132 3720
+rect 4610 3704 4640 3720
+rect 5120 3708 5150 3720
+rect 5312 3706 5342 3720
+rect 5820 3700 5850 3720
+rect 6012 3702 6042 3720
+rect 1596 3258 1626 3270
+rect 2106 3258 2136 3276
+rect 3306 3258 3336 3280
+rect 3498 3258 3528 3278
+rect 4006 3258 4036 3280
+rect 4198 3258 4228 3278
+rect 4706 3258 4736 3272
+rect 5216 3258 5246 3274
+rect 5408 3258 5438 3276
+rect 5916 3258 5946 3284
+rect 6108 3258 6138 3284
+rect 1546 3248 1644 3258
+rect 1482 3202 1644 3248
+rect 1546 3192 1644 3202
+rect 1992 3192 2154 3258
+rect 3192 3192 3546 3258
+rect 3892 3192 4246 3258
+rect 4592 3192 4754 3258
+rect 5102 3192 5456 3258
+rect 5802 3192 6156 3258
+<< pwell >>
+rect 1482 2938 1584 2948
+rect 1482 2892 1644 2938
+rect 1482 2882 1584 2892
+rect 1992 2882 2154 2948
+rect 3302 2882 3560 2948
+rect 3912 2882 4170 2948
+rect 5102 2882 5264 2948
+rect 5802 2882 5964 2948
+rect 1540 2428 1644 2438
+rect 2054 2428 2154 2438
+rect 1482 2382 1644 2428
+rect 1992 2382 2154 2428
+rect 1540 2372 1644 2382
+rect 2054 2372 2154 2382
+rect 3302 2372 3560 2438
+rect 3912 2372 4170 2438
+rect 5102 2372 5264 2438
+rect 5802 2372 5964 2438
+<< poly >>
+rect 1482 3770 1644 3786
+rect 1482 3736 1498 3770
+rect 1532 3736 1644 3770
+rect 1482 3720 1644 3736
+rect 1992 3770 2154 3786
+rect 1992 3736 2008 3770
+rect 2042 3736 2154 3770
+rect 1992 3720 2154 3736
+rect 3192 3770 3546 3786
+rect 3192 3736 3208 3770
+rect 3242 3736 3400 3770
+rect 3434 3736 3546 3770
+rect 3192 3720 3546 3736
+rect 3892 3770 4246 3786
+rect 3892 3736 3908 3770
+rect 3942 3736 4100 3770
+rect 4134 3736 4246 3770
+rect 3892 3720 4246 3736
+rect 4592 3770 4754 3786
+rect 4592 3736 4608 3770
+rect 4642 3736 4754 3770
+rect 4592 3720 4754 3736
+rect 5102 3770 5456 3786
+rect 5102 3736 5118 3770
+rect 5152 3736 5310 3770
+rect 5344 3736 5456 3770
+rect 5102 3720 5456 3736
+rect 5802 3770 6156 3786
+rect 5802 3736 5818 3770
+rect 5852 3736 6010 3770
+rect 6044 3736 6156 3770
+rect 5802 3720 6156 3736
+rect 1500 3706 1530 3720
+rect 2010 3708 2040 3720
+rect 3210 3706 3240 3720
+rect 3402 3702 3432 3720
+rect 3910 3704 3940 3720
+rect 4102 3698 4132 3720
+rect 4610 3704 4640 3720
+rect 5120 3708 5150 3720
+rect 5312 3706 5342 3720
+rect 5820 3700 5850 3720
+rect 6012 3702 6042 3720
+rect 1596 3258 1626 3270
+rect 2106 3258 2136 3276
+rect 3306 3258 3336 3280
+rect 3498 3258 3528 3278
+rect 4006 3258 4036 3280
+rect 4198 3258 4228 3278
+rect 4706 3258 4736 3272
+rect 5216 3258 5246 3274
+rect 5408 3258 5438 3276
+rect 5916 3258 5946 3284
+rect 6108 3258 6138 3284
+rect 1546 3248 1644 3258
+rect 1482 3242 1644 3248
+rect 1482 3208 1594 3242
+rect 1628 3208 1644 3242
+rect 1482 3202 1644 3208
+rect 1546 3192 1644 3202
+rect 1992 3242 2154 3258
+rect 1992 3208 2104 3242
+rect 2138 3208 2154 3242
+rect 1992 3192 2154 3208
+rect 3192 3242 3546 3258
+rect 3192 3208 3304 3242
+rect 3338 3208 3496 3242
+rect 3530 3208 3546 3242
+rect 3192 3192 3546 3208
+rect 3892 3242 4246 3258
+rect 3892 3208 4004 3242
+rect 4038 3208 4196 3242
+rect 4230 3208 4246 3242
+rect 3892 3192 4246 3208
+rect 4592 3242 4754 3258
+rect 4592 3208 4704 3242
+rect 4738 3208 4754 3242
+rect 4592 3192 4754 3208
+rect 5102 3242 5456 3258
+rect 5102 3208 5214 3242
+rect 5248 3208 5406 3242
+rect 5440 3208 5456 3242
+rect 5102 3192 5456 3208
+rect 5802 3242 6156 3258
+rect 5802 3208 5914 3242
+rect 5948 3208 6106 3242
+rect 6140 3208 6156 3242
+rect 5802 3192 6156 3208
+rect 1482 2938 1584 2948
+rect 1482 2932 1644 2938
+rect 1482 2898 1498 2932
+rect 1532 2898 1644 2932
+rect 1482 2892 1644 2898
+rect 1992 2932 2154 2948
+rect 1992 2898 2008 2932
+rect 2042 2898 2154 2932
+rect 1482 2882 1584 2892
+rect 1992 2882 2154 2898
+rect 3302 2932 3560 2948
+rect 3302 2898 3318 2932
+rect 3352 2898 3510 2932
+rect 3544 2898 3560 2932
+rect 3302 2882 3560 2898
+rect 3912 2932 4170 2948
+rect 3912 2898 3928 2932
+rect 3962 2898 4120 2932
+rect 4154 2898 4170 2932
+rect 3912 2882 4170 2898
+rect 5102 2932 5264 2948
+rect 5102 2898 5118 2932
+rect 5152 2898 5264 2932
+rect 5102 2882 5264 2898
+rect 5802 2932 5964 2948
+rect 5802 2898 5818 2932
+rect 5852 2898 5964 2932
+rect 5802 2882 5964 2898
+rect 1540 2428 1644 2438
+rect 2054 2428 2154 2438
+rect 1482 2422 1644 2428
+rect 1482 2388 1594 2422
+rect 1628 2388 1644 2422
+rect 1482 2382 1644 2388
+rect 1992 2422 2154 2428
+rect 1992 2388 2104 2422
+rect 2138 2388 2154 2422
+rect 1992 2382 2154 2388
+rect 1540 2372 1644 2382
+rect 2054 2372 2154 2382
+rect 3302 2422 3560 2438
+rect 3302 2388 3414 2422
+rect 3448 2388 3560 2422
+rect 3302 2372 3560 2388
+rect 3912 2422 4170 2438
+rect 3912 2388 4024 2422
+rect 4058 2388 4170 2422
+rect 3912 2372 4170 2388
+rect 5102 2422 5264 2438
+rect 5102 2388 5214 2422
+rect 5248 2388 5264 2422
+rect 5102 2372 5264 2388
+rect 5802 2422 5964 2438
+rect 5802 2388 5914 2422
+rect 5948 2388 5964 2422
+rect 5802 2372 5964 2388
+<< polycont >>
+rect 1498 3736 1532 3770
+rect 2008 3736 2042 3770
+rect 3208 3736 3242 3770
+rect 3400 3736 3434 3770
+rect 3908 3736 3942 3770
+rect 4100 3736 4134 3770
+rect 4608 3736 4642 3770
+rect 5118 3736 5152 3770
+rect 5310 3736 5344 3770
+rect 5818 3736 5852 3770
+rect 6010 3736 6044 3770
+rect 1594 3208 1628 3242
+rect 2104 3208 2138 3242
+rect 3304 3208 3338 3242
+rect 3496 3208 3530 3242
+rect 4004 3208 4038 3242
+rect 4196 3208 4230 3242
+rect 4704 3208 4738 3242
+rect 5214 3208 5248 3242
+rect 5406 3208 5440 3242
+rect 5914 3208 5948 3242
+rect 6106 3208 6140 3242
+rect 1498 2898 1532 2932
+rect 2008 2898 2042 2932
+rect 3318 2898 3352 2932
+rect 3510 2898 3544 2932
+rect 3928 2898 3962 2932
+rect 4120 2898 4154 2932
+rect 5118 2898 5152 2932
+rect 5818 2898 5852 2932
+rect 1594 2388 1628 2422
+rect 2104 2388 2138 2422
+rect 3414 2388 3448 2422
+rect 4024 2388 4058 2422
+rect 5214 2388 5248 2422
+rect 5914 2388 5948 2422
+<< locali >>
+rect 1780 3850 1870 3870
+rect 1482 3736 1498 3770
+rect 1532 3736 1644 3770
+rect 1770 3630 1780 3760
+rect 1860 3790 1870 3850
+rect 3680 3780 3770 3870
+rect 1992 3736 2008 3770
+rect 2042 3736 2154 3770
+rect 3192 3736 3208 3770
+rect 3242 3736 3400 3770
+rect 3434 3736 3546 3770
+rect 1260 3240 1350 3530
+rect 1770 3440 1860 3630
+rect 3700 3540 3770 3780
+rect 3892 3736 3908 3770
+rect 3942 3736 4100 3770
+rect 4134 3736 4246 3770
+rect 1480 3242 1650 3250
+rect 1260 3110 1360 3240
+rect 1480 3208 1594 3242
+rect 1628 3208 1650 3242
+rect 1480 3200 1650 3208
+rect 1780 3240 1860 3440
+rect 1780 3110 1870 3240
+rect 1992 3208 2104 3242
+rect 2138 3208 2154 3242
+rect 2290 3240 2370 3530
+rect 2290 3110 2390 3240
+rect 3192 3208 3304 3242
+rect 3338 3208 3496 3242
+rect 3530 3208 3546 3242
+rect 3680 3110 3770 3540
+rect 3892 3208 4004 3242
+rect 4038 3208 4196 3242
+rect 4230 3208 4246 3242
+rect 4380 3110 4460 3870
+rect 4592 3736 4608 3770
+rect 4642 3736 4754 3770
+rect 4592 3208 4704 3242
+rect 4738 3208 4754 3242
+rect 4890 3110 4970 3870
+rect 5102 3736 5118 3770
+rect 5152 3736 5310 3770
+rect 5344 3736 5456 3770
+rect 5102 3208 5214 3242
+rect 5248 3208 5406 3242
+rect 5440 3208 5456 3242
+rect 5590 3110 5670 3870
+rect 5802 3736 5818 3770
+rect 5852 3736 6010 3770
+rect 6044 3736 6156 3770
+rect 5802 3208 5914 3242
+rect 5948 3208 6106 3242
+rect 6140 3208 6156 3242
+rect 1482 2898 1498 2932
+rect 1532 2898 1644 2932
+rect 1770 2890 1870 3030
+rect 1992 2898 2008 2932
+rect 2042 2898 2154 2932
+rect 3302 2898 3318 2932
+rect 3352 2898 3510 2932
+rect 3544 2898 3560 2932
+rect 1770 2560 1860 2890
+rect 1482 2388 1594 2422
+rect 1628 2388 1644 2422
+rect 1770 2310 1870 2560
+rect 1992 2388 2104 2422
+rect 2138 2388 2154 2422
+rect 3302 2388 3414 2422
+rect 3448 2388 3560 2422
+rect 1340 2210 1750 2300
+rect 1890 2260 3330 2300
+rect 3530 2260 3580 2300
+rect 3700 2290 3780 3030
+rect 3912 2898 3928 2932
+rect 3962 2898 4120 2932
+rect 4154 2898 4170 2932
+rect 5102 2898 5118 2932
+rect 5152 2898 5264 2932
+rect 5802 2898 5818 2932
+rect 5852 2898 5964 2932
+rect 3912 2388 4024 2422
+rect 4058 2388 4170 2422
+rect 5102 2388 5214 2422
+rect 5248 2388 5264 2422
+rect 5802 2388 5914 2422
+rect 5948 2388 5964 2422
+rect 1890 2210 3580 2260
+rect 2250 2200 3580 2210
+<< viali >>
+rect 1498 3736 1532 3770
+rect 1780 3630 1860 3850
+rect 3960 3820 4160 3900
+rect 2008 3736 2042 3770
+rect 3208 3736 3242 3770
+rect 3400 3736 3434 3770
+rect 1250 3530 1360 3610
+rect 2270 3530 2380 3610
+rect 3640 3540 3700 3780
+rect 3908 3736 3942 3770
+rect 4100 3736 4134 3770
+rect 1594 3208 1628 3242
+rect 2104 3208 2138 3242
+rect 3304 3208 3338 3242
+rect 3496 3208 3530 3242
+rect 4004 3208 4038 3242
+rect 4196 3208 4230 3242
+rect 4570 3820 4770 3900
+rect 4608 3736 4642 3770
+rect 4704 3208 4738 3242
+rect 5180 3820 5380 3900
+rect 5118 3736 5152 3770
+rect 5310 3736 5344 3770
+rect 5214 3208 5248 3242
+rect 5406 3208 5440 3242
+rect 5880 3820 6080 3900
+rect 5818 3736 5852 3770
+rect 6010 3736 6044 3770
+rect 5914 3208 5948 3242
+rect 6106 3208 6140 3242
+rect 1498 2898 1532 2932
+rect 2008 2898 2042 2932
+rect 3318 2898 3352 2932
+rect 3510 2898 3544 2932
+rect 1594 2388 1628 2422
+rect 2104 2388 2138 2422
+rect 3414 2388 3448 2422
+rect 1750 2210 1890 2310
+rect 3330 2260 3530 2340
+rect 3928 2898 3962 2932
+rect 4120 2898 4154 2932
+rect 5118 2898 5152 2932
+rect 5818 2898 5852 2932
+rect 4024 2388 4058 2422
+rect 5214 2388 5248 2422
+rect 5914 2388 5948 2422
+rect 3940 2260 4140 2340
+rect 4540 2260 4700 2340
+rect 5090 2260 5290 2340
+rect 5780 2260 5980 2340
+rect 1740 1460 1910 1530
+<< metal1 >>
+rect 3948 3900 4172 3906
+rect 1774 3860 1866 3862
+rect 1482 3770 1644 3776
+rect 1482 3736 1498 3770
+rect 1532 3736 1644 3770
+rect 1740 3740 1750 3860
+rect 1890 3740 1900 3860
+rect 2490 3820 3790 3870
+rect 1992 3770 2154 3776
+rect 1482 3730 1644 3736
+rect 1238 3610 1372 3616
+rect 1238 3530 1250 3610
+rect 1360 3530 1372 3610
+rect 1238 3524 1372 3530
+rect 1430 3512 1440 3688
+rect 1494 3512 1504 3688
+rect 1070 3430 1320 3480
+rect 1540 3466 1590 3730
+rect 1622 3512 1632 3688
+rect 1686 3512 1696 3688
+rect 1774 3630 1780 3740
+rect 1860 3630 1866 3740
+rect 1992 3736 2008 3770
+rect 2042 3736 2154 3770
+rect 1992 3730 2154 3736
+rect 1774 3618 1866 3630
+rect 1940 3512 1950 3688
+rect 2004 3512 2014 3688
+rect 2050 3466 2100 3730
+rect 2132 3512 2142 3688
+rect 2196 3512 2206 3688
+rect 2258 3610 2392 3616
+rect 2258 3530 2270 3610
+rect 2380 3530 2392 3610
+rect 2258 3524 2392 3530
+rect 2490 3480 2550 3820
+rect 3634 3780 3706 3792
+rect 3740 3780 3790 3820
+rect 3948 3820 3960 3900
+rect 4160 3820 4172 3900
+rect 3948 3814 4172 3820
+rect 4558 3900 4782 3906
+rect 4558 3820 4570 3900
+rect 4770 3820 4782 3900
+rect 4558 3814 4782 3820
+rect 5168 3900 5392 3906
+rect 5168 3820 5180 3900
+rect 5380 3820 5392 3900
+rect 5168 3814 5392 3820
+rect 5868 3900 6092 3906
+rect 5868 3820 5880 3900
+rect 6080 3820 6092 3900
+rect 5868 3814 6092 3820
+rect 3040 3770 3550 3780
+rect 3040 3736 3208 3770
+rect 3242 3736 3400 3770
+rect 3434 3736 3550 3770
+rect 3040 3730 3550 3736
+rect 910 3290 920 3390
+rect 1080 3290 1090 3390
+rect 1120 3290 1130 3390
+rect 1230 3290 1240 3390
+rect 1270 3250 1320 3430
+rect 1526 3290 1536 3466
+rect 1590 3290 1600 3466
+rect 2036 3290 2046 3466
+rect 2100 3290 2110 3466
+rect 2310 3430 2570 3480
+rect 1540 3250 1590 3290
+rect 2050 3250 2100 3290
+rect 2310 3250 2360 3430
+rect 2390 3290 2400 3390
+rect 2500 3290 2510 3390
+rect 2540 3290 2550 3390
+rect 2710 3290 2720 3390
+rect 3040 3250 3090 3730
+rect 3140 3514 3150 3690
+rect 3204 3514 3214 3690
+rect 3332 3514 3342 3690
+rect 3396 3514 3406 3690
+rect 3524 3514 3534 3690
+rect 3588 3514 3598 3690
+rect 3630 3540 3640 3780
+rect 3700 3540 3710 3780
+rect 3740 3770 4250 3780
+rect 3740 3736 3908 3770
+rect 3942 3736 4100 3770
+rect 4134 3736 4250 3770
+rect 3740 3730 4250 3736
+rect 4440 3770 4760 3780
+rect 4440 3736 4608 3770
+rect 4642 3736 4760 3770
+rect 4440 3730 4760 3736
+rect 4950 3770 5460 3780
+rect 4950 3736 5118 3770
+rect 5152 3736 5310 3770
+rect 5344 3736 5460 3770
+rect 4950 3730 5460 3736
+rect 5650 3770 6160 3780
+rect 5650 3736 5818 3770
+rect 5852 3736 6010 3770
+rect 6044 3736 6160 3770
+rect 5650 3730 6160 3736
+rect 3634 3528 3706 3540
+rect 3236 3288 3246 3464
+rect 3300 3288 3310 3464
+rect 3428 3288 3438 3464
+rect 3492 3288 3502 3464
+rect 3740 3250 3790 3730
+rect 3840 3514 3850 3690
+rect 3904 3514 3914 3690
+rect 4032 3514 4042 3690
+rect 4096 3514 4106 3690
+rect 4224 3514 4234 3690
+rect 4288 3514 4298 3690
+rect 3936 3288 3946 3464
+rect 4000 3288 4010 3464
+rect 4128 3288 4138 3464
+rect 4192 3288 4202 3464
+rect 4440 3250 4500 3730
+rect 4540 3514 4550 3690
+rect 4604 3514 4614 3690
+rect 4732 3514 4742 3690
+rect 4796 3514 4806 3690
+rect 4636 3288 4646 3464
+rect 4700 3288 4710 3464
+rect 4950 3250 5000 3730
+rect 5050 3514 5060 3690
+rect 5114 3514 5124 3690
+rect 5242 3514 5252 3690
+rect 5306 3514 5316 3690
+rect 5434 3514 5444 3690
+rect 5498 3514 5508 3690
+rect 5146 3288 5156 3464
+rect 5210 3288 5220 3464
+rect 5338 3288 5348 3464
+rect 5402 3288 5412 3464
+rect 5650 3250 5700 3730
+rect 5750 3514 5760 3690
+rect 5814 3514 5824 3690
+rect 5942 3514 5952 3690
+rect 6006 3514 6016 3690
+rect 6134 3514 6144 3690
+rect 6198 3514 6208 3690
+rect 5846 3288 5856 3464
+rect 5910 3288 5920 3464
+rect 6038 3286 6048 3462
+rect 6102 3286 6112 3462
+rect 1070 3200 1460 3250
+rect 1450 3160 1460 3200
+rect 1670 3160 1680 3250
+rect 1960 3160 1970 3250
+rect 2180 3200 2570 3250
+rect 3040 3242 3550 3250
+rect 3040 3208 3304 3242
+rect 3338 3208 3496 3242
+rect 3530 3208 3550 3242
+rect 3040 3200 3550 3208
+rect 3740 3242 4250 3250
+rect 3740 3208 4004 3242
+rect 4038 3208 4196 3242
+rect 4230 3208 4250 3242
+rect 3740 3200 4250 3208
+rect 4440 3242 4760 3250
+rect 4440 3208 4704 3242
+rect 4738 3208 4760 3242
+rect 4440 3200 4760 3208
+rect 4950 3242 5460 3250
+rect 4950 3208 5214 3242
+rect 5248 3208 5406 3242
+rect 5440 3208 5460 3242
+rect 4950 3200 5460 3208
+rect 5650 3242 6160 3250
+rect 5650 3208 5914 3242
+rect 5948 3208 6106 3242
+rect 6140 3208 6160 3242
+rect 5650 3200 6160 3208
+rect 2180 3160 2190 3200
+rect 1620 3120 1680 3160
+rect 3040 3120 3090 3200
+rect 4440 3150 4500 3200
+rect 4950 3150 5000 3200
+rect 5650 3150 5700 3200
+rect 1620 3070 3090 3120
+rect 1330 2932 1650 2950
+rect 1330 2898 1498 2932
+rect 1532 2898 1650 2932
+rect 1330 2890 1650 2898
+rect 1990 2932 2310 2950
+rect 1990 2898 2008 2932
+rect 2042 2898 2310 2932
+rect 1990 2890 2310 2898
+rect 3290 2920 3300 3010
+rect 3560 2940 3570 3010
+rect 4430 3000 4440 3150
+rect 4510 3000 4520 3150
+rect 4940 3000 4950 3150
+rect 5010 3000 5020 3150
+rect 5640 3000 5650 3150
+rect 5710 3000 5720 3150
+rect 4440 2940 4500 3000
+rect 4950 2940 5000 3000
+rect 5650 2940 5700 3000
+rect 3560 2932 4180 2940
+rect 3560 2920 3928 2932
+rect 3290 2898 3318 2920
+rect 3352 2898 3510 2920
+rect 3544 2898 3928 2920
+rect 3962 2898 4120 2932
+rect 4154 2898 4180 2932
+rect 3290 2890 4180 2898
+rect 4440 2890 4660 2940
+rect 4950 2932 5270 2940
+rect 4950 2898 5118 2932
+rect 5152 2898 5270 2932
+rect 4950 2890 5270 2898
+rect 5650 2932 5970 2940
+rect 5650 2898 5818 2932
+rect 5852 2898 5970 2932
+rect 5650 2890 5970 2898
+rect 1330 2430 1390 2890
+rect 1526 2684 1536 2860
+rect 1590 2684 1600 2860
+rect 2036 2684 2046 2860
+rect 2100 2684 2110 2860
+rect 1430 2460 1440 2636
+rect 1494 2460 1504 2636
+rect 1622 2460 1632 2636
+rect 1686 2460 1696 2636
+rect 1940 2460 1950 2636
+rect 2004 2460 2014 2636
+rect 2132 2460 2142 2636
+rect 2196 2460 2206 2636
+rect 2250 2430 2310 2890
+rect 3346 2684 3356 2860
+rect 3410 2684 3420 2860
+rect 3538 2684 3548 2860
+rect 3602 2684 3612 2860
+rect 3250 2460 3260 2636
+rect 3314 2460 3324 2636
+rect 3442 2460 3452 2636
+rect 3506 2460 3516 2636
+rect 3710 2430 3760 2890
+rect 3956 2684 3966 2860
+rect 4020 2684 4030 2860
+rect 4148 2684 4158 2860
+rect 4212 2684 4222 2860
+rect 3860 2460 3870 2636
+rect 3924 2460 3934 2636
+rect 4052 2460 4062 2636
+rect 4116 2460 4126 2636
+rect 4440 2430 4500 2890
+rect 4628 2684 4638 2860
+rect 4692 2684 4702 2860
+rect 4540 2460 4550 2636
+rect 4604 2460 4614 2636
+rect 4950 2430 5000 2890
+rect 5146 2684 5156 2860
+rect 5210 2684 5220 2860
+rect 5050 2460 5060 2636
+rect 5114 2460 5124 2636
+rect 5242 2460 5252 2636
+rect 5306 2460 5316 2636
+rect 5650 2430 5700 2890
+rect 5846 2684 5856 2860
+rect 5910 2684 5920 2860
+rect 5750 2460 5760 2636
+rect 5814 2460 5824 2636
+rect 5942 2460 5952 2636
+rect 6006 2460 6016 2636
+rect 1330 2422 1650 2430
+rect 1330 2388 1594 2422
+rect 1628 2388 1650 2422
+rect 1330 2370 1650 2388
+rect 1990 2422 2310 2430
+rect 1990 2388 2104 2422
+rect 2138 2388 2310 2422
+rect 1990 2370 2310 2388
+rect 3290 2422 4180 2430
+rect 3290 2388 3414 2422
+rect 3448 2388 4024 2422
+rect 4058 2388 4180 2422
+rect 3290 2380 4180 2388
+rect 4440 2380 4660 2430
+rect 4950 2422 5270 2430
+rect 4950 2388 5214 2422
+rect 5248 2388 5270 2422
+rect 4950 2380 5270 2388
+rect 5650 2422 5970 2430
+rect 5650 2388 5914 2422
+rect 5948 2388 5970 2422
+rect 5650 2380 5970 2388
+rect 3318 2340 3542 2346
+rect 1738 2310 1902 2316
+rect 3318 2310 3330 2340
+rect 1738 2210 1750 2310
+rect 1890 2260 3330 2310
+rect 3530 2260 3542 2340
+rect 1890 2254 3542 2260
+rect 3928 2340 4152 2346
+rect 3928 2260 3940 2340
+rect 4140 2260 4152 2340
+rect 3928 2254 4152 2260
+rect 4528 2340 4712 2346
+rect 4528 2260 4540 2340
+rect 4700 2260 4712 2340
+rect 4528 2254 4712 2260
+rect 5078 2340 5302 2346
+rect 5078 2260 5090 2340
+rect 5290 2260 5302 2340
+rect 5078 2254 5302 2260
+rect 5768 2340 5992 2346
+rect 5768 2260 5780 2340
+rect 5980 2260 5992 2340
+rect 5768 2254 5992 2260
+rect 1890 2210 3530 2254
+rect 1738 2204 1902 2210
+rect 1070 2050 1190 2130
+rect 1230 2080 3310 2130
+rect 1050 1874 1060 2050
+rect 1114 1874 1190 2050
+rect 1070 1826 1190 1874
+rect 1280 2050 1370 2080
+rect 3340 2050 3480 2130
+rect 1280 1874 1296 2050
+rect 1350 1874 1370 2050
+rect 1522 1874 1532 2050
+rect 1586 1874 1596 2050
+rect 1758 1874 1768 2050
+rect 1822 1874 1832 2050
+rect 1994 1874 2004 2050
+rect 2058 1874 2068 2050
+rect 2230 1874 2240 2050
+rect 2294 1874 2304 2050
+rect 2466 1874 2476 2050
+rect 2530 1874 2540 2050
+rect 2702 1874 2712 2050
+rect 2766 1874 2776 2050
+rect 2938 1874 2948 2050
+rect 3002 1874 3012 2050
+rect 3174 1874 3184 2050
+rect 3238 1874 3248 2050
+rect 3340 1874 3420 2050
+rect 3474 1874 3484 2050
+rect 1070 1650 1178 1826
+rect 1232 1650 1242 1826
+rect 1070 1570 1190 1650
+rect 1280 1620 1370 1874
+rect 3340 1826 3480 1874
+rect 1404 1650 1414 1826
+rect 1468 1650 1478 1826
+rect 1640 1650 1650 1826
+rect 1704 1650 1714 1826
+rect 1876 1650 1886 1826
+rect 1940 1650 1950 1826
+rect 2112 1650 2122 1826
+rect 2176 1650 2186 1826
+rect 2348 1650 2358 1826
+rect 2412 1650 2422 1826
+rect 2584 1650 2594 1826
+rect 2648 1650 2658 1826
+rect 2820 1650 2830 1826
+rect 2884 1650 2894 1826
+rect 3056 1650 3066 1826
+rect 3120 1650 3130 1826
+rect 3292 1650 3302 1826
+rect 3356 1650 3480 1826
+rect 1230 1570 3310 1620
+rect 3340 1570 3480 1650
+rect 1728 1530 1922 1536
+rect 1728 1460 1740 1530
+rect 1910 1460 1922 1530
+rect 1728 1454 1922 1460
+<< via1 >>
+rect 1750 3850 1890 3860
+rect 1750 3740 1780 3850
+rect 1780 3740 1860 3850
+rect 1860 3740 1890 3850
+rect 1250 3530 1360 3610
+rect 1440 3512 1494 3688
+rect 1632 3512 1686 3688
+rect 1950 3512 2004 3688
+rect 2142 3512 2196 3688
+rect 2270 3530 2380 3610
+rect 3960 3820 4160 3900
+rect 4570 3820 4770 3900
+rect 5180 3820 5380 3900
+rect 5880 3820 6080 3900
+rect 920 3290 1080 3390
+rect 1130 3290 1230 3390
+rect 1536 3290 1590 3466
+rect 2046 3290 2100 3466
+rect 2400 3290 2500 3390
+rect 2550 3290 2710 3390
+rect 3150 3514 3204 3690
+rect 3342 3514 3396 3690
+rect 3534 3514 3588 3690
+rect 3640 3540 3700 3780
+rect 3246 3288 3300 3464
+rect 3438 3288 3492 3464
+rect 3850 3514 3904 3690
+rect 4042 3514 4096 3690
+rect 4234 3514 4288 3690
+rect 3946 3288 4000 3464
+rect 4138 3288 4192 3464
+rect 4550 3514 4604 3690
+rect 4742 3514 4796 3690
+rect 4646 3288 4700 3464
+rect 5060 3514 5114 3690
+rect 5252 3514 5306 3690
+rect 5444 3514 5498 3690
+rect 5156 3288 5210 3464
+rect 5348 3288 5402 3464
+rect 5760 3514 5814 3690
+rect 5952 3514 6006 3690
+rect 6144 3514 6198 3690
+rect 5856 3288 5910 3464
+rect 6048 3286 6102 3462
+rect 1460 3242 1670 3250
+rect 1460 3208 1594 3242
+rect 1594 3208 1628 3242
+rect 1628 3208 1670 3242
+rect 1460 3160 1670 3208
+rect 1970 3242 2180 3250
+rect 1970 3208 2104 3242
+rect 2104 3208 2138 3242
+rect 2138 3208 2180 3242
+rect 1970 3160 2180 3208
+rect 3300 2932 3560 3010
+rect 4440 3000 4510 3150
+rect 4950 3000 5010 3150
+rect 5650 3000 5710 3150
+rect 3300 2920 3318 2932
+rect 3318 2920 3352 2932
+rect 3352 2920 3510 2932
+rect 3510 2920 3544 2932
+rect 3544 2920 3560 2932
+rect 1536 2684 1590 2860
+rect 2046 2684 2100 2860
+rect 1440 2460 1494 2636
+rect 1632 2460 1686 2636
+rect 1950 2460 2004 2636
+rect 2142 2460 2196 2636
+rect 3356 2684 3410 2860
+rect 3548 2684 3602 2860
+rect 3260 2460 3314 2636
+rect 3452 2460 3506 2636
+rect 3966 2684 4020 2860
+rect 4158 2684 4212 2860
+rect 3870 2460 3924 2636
+rect 4062 2460 4116 2636
+rect 4638 2684 4692 2860
+rect 4550 2460 4604 2636
+rect 5156 2684 5210 2860
+rect 5060 2460 5114 2636
+rect 5252 2460 5306 2636
+rect 5856 2684 5910 2860
+rect 5760 2460 5814 2636
+rect 5952 2460 6006 2636
+rect 3330 2260 3530 2340
+rect 3940 2260 4140 2340
+rect 4540 2260 4700 2340
+rect 5090 2260 5290 2340
+rect 5780 2260 5980 2340
+rect 1060 1874 1114 2050
+rect 1296 1874 1350 2050
+rect 1532 1874 1586 2050
+rect 1768 1874 1822 2050
+rect 2004 1874 2058 2050
+rect 2240 1874 2294 2050
+rect 2476 1874 2530 2050
+rect 2712 1874 2766 2050
+rect 2948 1874 3002 2050
+rect 3184 1874 3238 2050
+rect 3420 1874 3474 2050
+rect 1178 1650 1232 1826
+rect 1414 1650 1468 1826
+rect 1650 1650 1704 1826
+rect 1886 1650 1940 1826
+rect 2122 1650 2176 1826
+rect 2358 1650 2412 1826
+rect 2594 1650 2648 1826
+rect 2830 1650 2884 1826
+rect 3066 1650 3120 1826
+rect 3302 1650 3356 1826
+rect 1740 1460 1910 1530
+<< metal2 >>
+rect 920 3900 6340 3910
+rect 920 3860 3960 3900
+rect 920 3740 1750 3860
+rect 1890 3820 3960 3860
+rect 4160 3820 4570 3900
+rect 4770 3820 5180 3900
+rect 5380 3820 5880 3900
+rect 6080 3820 6340 3900
+rect 1890 3780 6340 3820
+rect 1890 3740 3640 3780
+rect 920 3690 3640 3740
+rect 920 3688 1710 3690
+rect 920 3610 1440 3688
+rect 920 3530 1250 3610
+rect 1360 3530 1440 3610
+rect 920 3390 1080 3530
+rect 1250 3520 1360 3530
+rect 1494 3530 1632 3688
+rect 1440 3502 1494 3512
+rect 1686 3530 1710 3688
+rect 1930 3688 3150 3690
+rect 1930 3530 1950 3688
+rect 1632 3502 1686 3512
+rect 2004 3530 2142 3688
+rect 1950 3502 2004 3512
+rect 2196 3610 3150 3688
+rect 2196 3530 2270 3610
+rect 2380 3560 3150 3610
+rect 2380 3530 2710 3560
+rect 2270 3520 2380 3530
+rect 2142 3502 2196 3512
+rect 1536 3466 1590 3476
+rect 920 3280 1080 3290
+rect 1130 3400 1230 3410
+rect 1130 3270 1230 3280
+rect 1460 3290 1536 3440
+rect 2046 3466 2100 3476
+rect 1590 3290 1670 3440
+rect 1460 3250 1670 3290
+rect 1460 3130 1670 3160
+rect 1460 3010 1560 3130
+rect 1460 2860 1670 3010
+rect 1460 2710 1536 2860
+rect 1590 2710 1670 2860
+rect 1970 3320 2046 3440
+rect 2100 3290 2180 3440
+rect 2080 3250 2180 3290
+rect 2400 3400 2500 3410
+rect 2550 3390 2710 3530
+rect 3204 3560 3342 3690
+rect 3150 3504 3204 3514
+rect 3396 3560 3534 3690
+rect 3342 3504 3396 3514
+rect 3588 3560 3640 3690
+rect 3700 3690 6340 3780
+rect 3700 3560 3850 3690
+rect 3640 3530 3700 3540
+rect 3534 3504 3588 3514
+rect 3904 3560 4042 3690
+rect 3850 3504 3904 3514
+rect 4096 3560 4234 3690
+rect 4042 3504 4096 3514
+rect 4288 3560 4550 3690
+rect 4234 3504 4288 3514
+rect 4604 3560 4742 3690
+rect 4550 3504 4604 3514
+rect 4796 3560 5060 3690
+rect 4742 3504 4796 3514
+rect 5114 3560 5252 3690
+rect 5060 3504 5114 3514
+rect 5306 3560 5444 3690
+rect 5252 3504 5306 3514
+rect 5498 3560 5760 3690
+rect 5444 3504 5498 3514
+rect 5814 3560 5952 3690
+rect 5760 3504 5814 3514
+rect 6006 3560 6144 3690
+rect 5952 3504 6006 3514
+rect 6198 3560 6340 3690
+rect 6144 3504 6198 3514
+rect 3246 3464 3300 3474
+rect 2550 3280 2710 3290
+rect 3190 3288 3246 3410
+rect 3438 3464 3492 3474
+rect 3300 3288 3438 3410
+rect 3946 3464 4000 3474
+rect 3492 3288 3570 3410
+rect 2400 3270 2500 3280
+rect 3190 3250 3570 3288
+rect 1970 2860 2180 3160
+rect 1970 2710 2046 2860
+rect 1536 2674 1590 2684
+rect 2100 2710 2180 2860
+rect 3270 3010 3570 3250
+rect 3270 2920 3300 3010
+rect 3560 2920 3570 3010
+rect 3270 2900 3570 2920
+rect 3920 3288 3946 3410
+rect 4138 3464 4192 3474
+rect 4000 3288 4138 3410
+rect 4646 3464 4700 3474
+rect 4192 3288 4220 3410
+rect 3920 3110 4220 3288
+rect 4620 3288 4646 3430
+rect 5156 3464 5210 3474
+rect 4700 3288 4730 3430
+rect 4440 3150 4510 3160
+rect 3920 3050 4440 3110
+rect 3270 2860 3650 2900
+rect 3270 2740 3356 2860
+rect 2046 2674 2100 2684
+rect 3410 2740 3548 2860
+rect 3356 2674 3410 2684
+rect 3602 2740 3650 2860
+rect 3920 2860 4220 3050
+rect 4440 2990 4510 3000
+rect 4620 3110 4730 3288
+rect 5130 3288 5156 3440
+rect 5348 3464 5402 3474
+rect 5210 3288 5348 3440
+rect 5856 3464 5910 3474
+rect 5402 3288 5420 3440
+rect 5130 3270 5420 3288
+rect 5830 3288 5856 3440
+rect 6048 3462 6102 3472
+rect 5910 3288 6048 3440
+rect 5830 3286 6048 3288
+rect 6102 3286 6120 3440
+rect 5830 3270 6120 3286
+rect 4950 3150 5010 3160
+rect 4620 3050 4950 3110
+rect 3920 2740 3966 2860
+rect 3548 2674 3602 2684
+rect 4020 2740 4158 2860
+rect 3966 2674 4020 2684
+rect 4212 2740 4220 2860
+rect 4620 2860 4730 3050
+rect 4950 2990 5010 3000
+rect 5130 3110 5240 3270
+rect 5650 3150 5710 3160
+rect 5130 3050 5650 3110
+rect 4620 2720 4638 2860
+rect 4158 2674 4212 2684
+rect 4692 2720 4730 2860
+rect 5130 2860 5240 3050
+rect 5650 2990 5710 3000
+rect 5130 2730 5156 2860
+rect 4638 2674 4692 2684
+rect 5210 2730 5240 2860
+rect 5830 2860 5940 3270
+rect 5830 2730 5856 2860
+rect 5156 2674 5210 2684
+rect 5910 2730 5940 2860
+rect 5856 2674 5910 2684
+rect 1440 2636 1494 2646
+rect 1430 2460 1440 2610
+rect 1632 2636 1686 2646
+rect 1494 2460 1632 2610
+rect 1950 2636 2004 2646
+rect 1686 2460 1950 2610
+rect 2142 2636 2196 2646
+rect 2004 2460 2142 2610
+rect 3260 2636 3314 2646
+rect 2196 2460 2730 2610
+rect 1430 2340 2730 2460
+rect 3220 2460 3260 2590
+rect 3452 2636 3506 2646
+rect 3314 2460 3452 2590
+rect 3870 2636 3924 2646
+rect 3506 2460 3870 2590
+rect 4062 2636 4116 2646
+rect 3924 2460 4062 2590
+rect 4550 2636 4604 2646
+rect 4116 2460 4550 2590
+rect 5060 2636 5114 2646
+rect 4604 2460 5060 2590
+rect 5252 2636 5306 2646
+rect 5114 2460 5252 2590
+rect 5760 2636 5814 2646
+rect 5306 2460 5760 2590
+rect 5952 2636 6006 2646
+rect 5814 2460 5952 2590
+rect 6006 2460 6050 2590
+rect 3220 2410 6050 2460
+rect 3310 2340 6050 2410
+rect 1430 2250 3240 2340
+rect 1050 2050 1120 2060
+rect 1050 1874 1060 2050
+rect 1114 1874 1120 2050
+rect 1250 2050 1400 2160
+rect 1250 1920 1296 2050
+rect 1050 1780 1120 1874
+rect 1350 1920 1400 2050
+rect 1510 2050 3240 2250
+rect 1510 1920 1532 2050
+rect 1296 1864 1350 1874
+rect 1586 1920 1768 2050
+rect 1532 1864 1586 1874
+rect 1822 1920 2004 2050
+rect 1768 1864 1822 1874
+rect 2058 1920 2240 2050
+rect 2004 1864 2058 1874
+rect 2294 1920 2476 2050
+rect 2240 1864 2294 1874
+rect 2530 1920 2712 2050
+rect 2476 1864 2530 1874
+rect 2766 1920 2948 2050
+rect 2712 1864 2766 1874
+rect 3002 1920 3184 2050
+rect 2948 1864 3002 1874
+rect 3238 1920 3240 2050
+rect 3310 2260 3330 2340
+rect 3530 2260 3940 2340
+rect 4140 2260 4540 2340
+rect 4700 2260 5090 2340
+rect 5290 2260 5780 2340
+rect 5980 2260 6050 2340
+rect 3310 2250 6050 2260
+rect 3310 2050 3640 2250
+rect 3184 1864 3238 1874
+rect 3310 1874 3420 2050
+rect 3474 1874 3640 2050
+rect 1178 1826 1232 1836
+rect 1050 1650 1178 1780
+rect 1414 1826 1468 1836
+rect 1232 1650 1414 1780
+rect 1650 1826 1704 1836
+rect 1468 1650 1650 1780
+rect 1886 1826 1940 1836
+rect 1704 1650 1886 1780
+rect 2122 1826 2176 1836
+rect 1940 1650 2122 1780
+rect 2358 1826 2412 1836
+rect 2176 1650 2358 1780
+rect 2594 1826 2648 1836
+rect 2412 1650 2594 1780
+rect 2830 1826 2884 1836
+rect 2648 1650 2830 1780
+rect 3066 1826 3120 1836
+rect 3310 1830 3640 1874
+rect 2884 1650 3066 1780
+rect 3290 1826 3640 1830
+rect 3290 1780 3302 1826
+rect 3120 1650 3302 1780
+rect 3356 1650 3640 1826
+rect 1050 1530 3640 1650
+rect 1050 1480 1740 1530
+rect 1910 1480 3640 1530
+rect 1740 1450 1910 1460
+<< via2 >>
+rect 1130 3390 1230 3400
+rect 1130 3290 1230 3390
+rect 1130 3280 1230 3290
+rect 1560 3010 1670 3130
+rect 1970 3290 2046 3320
+rect 2046 3290 2080 3320
+rect 1970 3250 2080 3290
+rect 2400 3390 2500 3400
+rect 2400 3290 2500 3390
+rect 2400 3280 2500 3290
+rect 1970 3200 2080 3250
+<< metal3 >>
+rect 1120 3400 1240 3405
+rect 2390 3400 2510 3405
+rect 1120 3280 1130 3400
+rect 1230 3320 1370 3400
+rect 1960 3320 2090 3325
+rect 1230 3280 1970 3320
+rect 1120 3275 1970 3280
+rect 1220 3200 1970 3275
+rect 2080 3200 2090 3320
+rect 2390 3280 2400 3400
+rect 2500 3280 2510 3400
+rect 2390 3275 2510 3280
+rect 1960 3195 2090 3200
+rect 1550 3130 1680 3135
+rect 2400 3130 2500 3275
+rect 1550 3010 1560 3130
+rect 1670 3010 2500 3130
+rect 1550 3005 1680 3010
+use sky130_fd_pr__nfet_01v8_GV8PGY  sky130_fd_pr__nfet_01v8_GV8PGY_0
+timestamp 1654097028
+transform 1 0 3431 0 1 2660
+box -311 -410 311 410
+use sky130_fd_pr__nfet_01v8_GV8PGY  sky130_fd_pr__nfet_01v8_GV8PGY_1
+timestamp 1654097028
+transform 1 0 4041 0 1 2660
+box -311 -410 311 410
+use sky130_fd_pr__nfet_01v8_PL8DH5  sky130_fd_pr__nfet_01v8_PL8DH5_0
+timestamp 1654100279
+transform 1 0 2267 0 1 1850
+box -1347 -410 1347 410
+use sky130_fd_pr__nfet_01v8_YT8PGU  sky130_fd_pr__nfet_01v8_YT8PGU_0
+timestamp 1654097028
+transform 1 0 4621 0 1 2660
+box -211 -410 211 410
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW  sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0
+timestamp 1654099286
+transform 1 0 1563 0 1 2660
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW  sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1
+timestamp 1654099286
+transform 1 0 2073 0 1 2660
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW  sky130_fd_pr__nfet_01v8_lvt_LH2JGW_2
+timestamp 1654099286
+transform 1 0 5883 0 1 2660
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW  sky130_fd_pr__nfet_01v8_lvt_LH2JGW_3
+timestamp 1654099286
+transform 1 0 5183 0 1 2660
+box -263 -410 263 410
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_0
+timestamp 1654097953
+transform 1 0 3369 0 1 3489
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_1
+timestamp 1654097953
+transform 1 0 4069 0 1 3489
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_2
+timestamp 1654097953
+transform 1 0 5279 0 1 3489
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_3
+timestamp 1654097953
+transform 1 0 5979 0 1 3489
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_X4XKHL  sky130_fd_pr__pfet_01v8_X4XKHL_0
+timestamp 1654097028
+transform 1 0 1563 0 1 3489
+box -263 -419 263 419
+use sky130_fd_pr__pfet_01v8_X4XKHL  sky130_fd_pr__pfet_01v8_X4XKHL_1
+timestamp 1654097028
+transform 1 0 2073 0 1 3489
+box -263 -419 263 419
+use sky130_fd_pr__pfet_01v8_X4XKHL  sky130_fd_pr__pfet_01v8_X4XKHL_2
+timestamp 1654097028
+transform 1 0 4673 0 1 3489
+box -263 -419 263 419
+use sky130_fd_pr__pfet_01v8_XJ7GBL  sky130_fd_pr__pfet_01v8_XJ7GBL_0
+timestamp 1654093589
+transform 1 0 1101 0 1 3339
+box -211 -269 211 269
+use sky130_fd_pr__pfet_01v8_XJ7GBL  sky130_fd_pr__pfet_01v8_XJ7GBL_1
+timestamp 1654093589
+transform 1 0 2531 0 1 3339
+box -211 -269 211 269
+<< labels >>
+rlabel metal2 5850 3020 5930 3130 1 Out
+rlabel metal2 1250 1920 1400 2160 1 I_Bias
+rlabel metal1 1330 2580 1390 2780 1 In_n
+rlabel metal1 2250 2580 2310 2780 1 In_p
+rlabel metal2 2650 3660 2850 3760 1 VP
+rlabel metal2 5550 3050 5610 3110 1 VM13D
+rlabel metal2 4850 3050 4910 3110 1 VM17D
+rlabel metal2 4340 3050 4400 3110 1 VM12D
+rlabel metal2 3370 3050 3430 3110 1 VM11D
+rlabel metal2 1530 2980 1590 3040 1 VM1D
+rlabel metal2 2050 2980 2110 3040 1 VM6D
+rlabel metal2 1790 2220 1850 2280 1 VM4D
+<< end >>
diff --git a/mag/comp/comp_to_logic.spice b/mag/comp/comp_to_logic.spice
new file mode 100644
index 0000000..e77d693
--- /dev/null
+++ b/mag/comp/comp_to_logic.spice
@@ -0,0 +1,61 @@
+* SPICE3 file created from comp_to_logic.ext - technology: sky130B
+
+X0 VP VM6D VM1D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=150000u
+X1 VM6D VM1D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=150000u
+X2 VM11D VM11D VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 VSUBS VM11D VM11D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4 VM11D VM11D VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 VP VM1D VM11D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 VM11D VM1D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 VM11D VM1D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 VP VM1D VM11D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X9 VP VM6D VM12D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X10 VM12D VM6D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 VM12D VM6D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X12 VP VM6D VM12D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 VM12D VM11D VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X14 VSUBS VM11D VM12D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 VM12D VM11D VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 VP VM17D VM13D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 VM13D VM17D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 VM13D VM17D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 VP VM17D VM13D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 VP VM13D Out VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 Out VM13D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 Out VM13D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 VP VM13D Out VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 VP VM1D VM1D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 VM1D VM1D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 VP VM12D VM17D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 VM17D VM12D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 VP VM6D VM6D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 VM6D VM6D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 VM1D In_n VM4D VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 VM4D In_n VM1D VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 Out VM13D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 VSUBS VM13D Out VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 VM6D In_p VM4D VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 VM4D In_p VM6D VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 VM13D VM17D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 VSUBS VM17D VM13D VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X38 VM17D VM12D VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X40 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X41 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X42 VSUBS I_Bias I_Bias VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X43 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X44 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X45 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X46 VSUBS VSUBS VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X47 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X48 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X49 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X50 VSUBS VSUBS VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X51 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X52 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X53 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X54 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X55 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X56 I_Bias I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X57 VM4D I_Bias VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X58 VSUBS I_Bias VM4D VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
diff --git a/mag/comp/comp_to_logic_currm.mag b/mag/comp/comp_to_logic_currm.mag
new file mode 100644
index 0000000..7ecd7ea
--- /dev/null
+++ b/mag/comp/comp_to_logic_currm.mag
@@ -0,0 +1,183 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097953
+<< pwell >>
+rect 352 542 514 608
+rect 352 32 514 98
+<< poly >>
+rect 352 592 514 608
+rect 352 558 368 592
+rect 402 558 514 592
+rect 352 542 514 558
+rect 352 82 514 98
+rect 352 48 464 82
+rect 498 48 514 82
+rect 352 32 514 48
+<< polycont >>
+rect 368 558 402 592
+rect 464 48 498 82
+<< locali >>
+rect 352 558 368 592
+rect 402 558 514 592
+rect 352 48 464 82
+rect 498 48 514 82
+rect 0 -130 890 -30
+<< viali >>
+rect 368 558 402 592
+rect 464 48 498 82
+rect 340 -1510 550 -1440
+<< metal1 >>
+rect 210 592 660 600
+rect 210 558 368 592
+rect 402 558 660 592
+rect 210 550 660 558
+rect 210 90 260 550
+rect 396 344 406 520
+rect 460 344 470 520
+rect 300 120 310 296
+rect 364 120 374 296
+rect 492 120 502 296
+rect 556 120 566 296
+rect 610 90 660 550
+rect 210 82 660 90
+rect 210 48 464 82
+rect 498 48 660 82
+rect 210 40 660 48
+rect 210 -210 260 40
+rect 610 -210 660 40
+rect 0 -260 890 -210
+rect 0 -720 50 -260
+rect 248 -468 258 -292
+rect 312 -468 322 -292
+rect 564 -468 574 -292
+rect 628 -468 638 -292
+rect 90 -692 100 -516
+rect 154 -692 164 -516
+rect 406 -692 416 -516
+rect 470 -692 480 -516
+rect 722 -692 732 -516
+rect 786 -692 796 -516
+rect 840 -720 890 -260
+rect 0 -770 890 -720
+rect 0 -830 50 -770
+rect 840 -830 890 -770
+rect 0 -880 890 -830
+rect 0 -1340 50 -880
+rect 248 -1086 258 -910
+rect 312 -1086 322 -910
+rect 564 -1086 574 -910
+rect 628 -1086 638 -910
+rect 90 -1310 100 -1134
+rect 154 -1310 164 -1134
+rect 406 -1310 416 -1134
+rect 470 -1310 480 -1134
+rect 722 -1310 732 -1134
+rect 786 -1310 796 -1134
+rect 840 -1340 890 -880
+rect 0 -1390 890 -1340
+rect 328 -1440 562 -1434
+rect 328 -1510 340 -1440
+rect 550 -1510 562 -1440
+rect 328 -1516 562 -1510
+<< via1 >>
+rect 406 344 460 520
+rect 310 120 364 296
+rect 502 120 556 296
+rect 258 -468 312 -292
+rect 574 -468 628 -292
+rect 100 -692 154 -516
+rect 416 -692 470 -516
+rect 732 -692 786 -516
+rect 258 -1086 312 -910
+rect 574 -1086 628 -910
+rect 100 -1310 154 -1134
+rect 416 -1310 470 -1134
+rect 732 -1310 786 -1134
+rect 340 -1510 550 -1440
+<< metal2 >>
+rect 406 520 460 530
+rect 406 334 460 344
+rect 310 300 364 306
+rect 502 300 556 306
+rect 260 296 630 300
+rect 260 290 310 296
+rect 364 290 502 296
+rect 556 290 630 296
+rect 260 110 630 120
+rect 250 -290 640 -280
+rect 250 -292 260 -290
+rect 250 -468 258 -292
+rect 630 -460 640 -290
+rect 312 -468 574 -460
+rect 628 -468 640 -460
+rect 250 -470 640 -468
+rect 258 -478 312 -470
+rect 574 -478 628 -470
+rect 100 -510 154 -506
+rect 416 -510 470 -506
+rect 732 -510 786 -506
+rect -10 -516 890 -510
+rect -10 -692 100 -516
+rect 154 -692 416 -516
+rect 470 -692 732 -516
+rect 786 -692 890 -516
+rect -10 -710 890 -692
+rect -10 -1130 200 -710
+rect 250 -910 640 -900
+rect 250 -1086 258 -910
+rect 630 -1080 640 -910
+rect 312 -1086 574 -1080
+rect 628 -1086 640 -1080
+rect 250 -1090 640 -1086
+rect 258 -1096 312 -1090
+rect 574 -1096 628 -1090
+rect 416 -1130 470 -1124
+rect 680 -1130 890 -710
+rect -10 -1134 890 -1130
+rect -10 -1310 100 -1134
+rect 154 -1310 416 -1134
+rect 470 -1310 732 -1134
+rect 786 -1310 890 -1134
+rect -10 -1320 890 -1310
+rect 340 -1440 550 -1320
+rect 340 -1520 550 -1510
+<< via2 >>
+rect 260 120 310 290
+rect 310 120 364 290
+rect 364 120 502 290
+rect 502 120 556 290
+rect 556 120 630 290
+rect 260 -292 630 -290
+rect 260 -460 312 -292
+rect 312 -460 574 -292
+rect 574 -460 628 -292
+rect 628 -460 630 -292
+rect 260 -1080 312 -910
+rect 312 -1080 574 -910
+rect 574 -1080 628 -910
+rect 628 -1080 630 -910
+<< metal3 >>
+rect 250 290 640 295
+rect 250 120 260 290
+rect 630 120 640 290
+rect 250 115 640 120
+rect 260 -285 630 115
+rect 250 -290 640 -285
+rect 250 -460 260 -290
+rect 630 -460 640 -290
+rect 250 -465 640 -460
+rect 260 -905 630 -465
+rect 250 -910 640 -905
+rect 250 -1080 260 -910
+rect 630 -1080 640 -910
+rect 250 -1085 640 -1080
+use sky130_fd_pr__nfet_01v8_LH2JGW  sky130_fd_pr__nfet_01v8_LH2JGW_0
+timestamp 1654097953
+transform 1 0 433 0 1 320
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_MJG2KS  sky130_fd_pr__nfet_01v8_MJG2KS_0
+timestamp 1654074216
+transform 1 0 443 0 1 -801
+box -483 -719 483 719
+<< end >>
diff --git a/mag/comp/comparator.ext b/mag/comp/comparator.ext
new file mode 100644
index 0000000..4376fd6
--- /dev/null
+++ b/mag/comp/comparator.ext
@@ -0,0 +1,1009 @@
+timestamp 1654178388
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use comp_adv3 comp_adv3_0 1 0 -5750 0 1 910
+use comp_adv3 comp_adv3_1 1 0 -7550 0 1 910
+use sky130_fd_pr__cap_mim_m3_1_H9XL9H sky130_fd_pr__cap_mim_m3_1_H9XL9H_0 -1 0 -2671 0 -1 2500
+use sky130_fd_pr__cap_mim_m3_1_H9XL9H sky130_fd_pr__cap_mim_m3_1_H9XL9H_1 -1 0 -9011 0 -1 2410
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW sky130_fd_pr__cap_mim_m3_2_MJMGTW_0 -1 0 -6247 0 -1 -379
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0 1 0 -2672 0 1 1598
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1 1 0 -8972 0 1 1598
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2 1 0 -7632 0 1 1598
+use comp_adv3 comp_adv3_2 1 0 -240 0 1 910
+use comp_adv3 comp_adv3_3 1 0 1560 0 1 910
+use comp_adv3_di comp_adv3_di_0 1 0 -2310 0 1 930
+use comp_to_logic comp_to_logic_0 1 0 -570 0 1 -3920
+use comp_adv3 comp_adv3_4 1 0 3360 0 1 910
+node "In" 0 182.08 -9490 2930 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43700 840 0 0 0 0 0 0
+node "m2_n4630_2070#" 1 672.751 -4630 2070 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35200 760 234800 3620 0 0 0 0 0 0
+node "m1_1660_n1090#" 4 1450.48 1660 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 460 73900 1940 563550 11580 0 0 0 0 0 0
+node "m1_1070_n1030#" 5 1827.56 1070 -1030 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18600 660 94400 2240 650800 13350 0 0 0 0 0 0
+node "m1_n2560_340#" 0 384.767 -2560 340 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150600 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_n3200_150#" 0 397.827 -3200 150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188600 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_n7520_160#" 0 384.664 -7520 160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184500 1720 0 0 0 0 0 0 0 0 0 0
+node "m1_n8150_160#" 0 330.565 -8150 160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184500 1720 0 0 0 0 0 0 0 0 0 0
+node "m1_n8860_160#" 0 301.271 -8860 160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184500 1720 0 0 0 0 0 0 0 0 0 0
+node "m1_n9500_160#" 0 403.052 -9500 160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 189000 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_4870_1260#" 2 508.195 4870 1260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 580 36600 1160 123200 2840 0 0 0 0 0 0
+node "m1_3950_1370#" 2 569.725 3950 1370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 580 39600 1260 123200 2840 0 0 0 0 0 0
+node "m1_3070_1270#" 2 522.103 3070 1270 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18400 620 38000 1260 118050 2770 0 0 0 0 0 0
+node "m1_2150_1410#" 2 540.19 2150 1410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 560 33600 1120 117800 2740 0 0 0 0 0 0
+node "m1_1270_1300#" 2 611.117 1270 1300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 560 44000 1280 116200 2880 0 0 0 0 0 0
+node "m1_280_1560#" 2 681.419 280 1560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20400 760 38000 1100 131100 3320 0 0 0 0 0 0
+node "m1_n4250_1290#" 2 775.114 -4250 1290 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18900 600 85800 1760 162900 3520 0 0 0 0 0 0
+node "m1_n5160_1430#" 2 637.689 -5160 1430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 520 48600 1280 129100 3080 0 0 0 0 0 0
+node "m1_n5240_1470#" 1 171.165 -5240 1470 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27000 1100 9000 380 11500 440 24700 640 0 0 0 0
+node "m1_n2250_2600#" 4 1174.77 -2250 2600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96700 2420 160200 2640 298100 5200 115494 1466 0 0 0 0
+node "m1_n2870_2590#" 0 317.941 -2870 2590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 180000 1700 0 0 0 0 0 0 0 0 0 0
+node "m1_n3200_2600#" 4 1110.2 -3200 2600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 112700 2540 411400 6500 0 0 0 0 0 0 0 0
+node "InRef" 0 179.437 -7260 2600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90300 1280 0 0 0 0 0 0 0 0 0 0
+node "m1_n7830_2600#" 0 300.426 -7830 2600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 172000 1660 0 0 0 0 0 0 0 0 0 0
+node "m1_n8540_2590#" 1 1086.5 -8540 2590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 252000 2020 131600 1500 138000 1520 664152 4162 0 0 0 0
+node "m1_n9180_2590#" 0 345.601 -9180 2590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 189000 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_n9490_2240#" 8 1653.57 -9490 2240 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117600 4520 19200 780 154500 4590 99014 1506 0 0 0 0
+node "VP" 11 20059.7 -6790 2520 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11013600 25040 1205600 13680 1225200 13880 3541790 21972 7097744 43116 0 0
+node "li_4830_n1630#" 34 517.866 4830 -1630 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207200 2040 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_4210_n1630#" 51 317.16 4210 -1630 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 142500 1880 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_3720_n1630#" 51 406.042 3720 -1630 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 142500 1880 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_3910_40#" 354 1591.29 3910 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 334400 6300 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_2110_40#" 354 1591.29 2110 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 334400 6300 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_310_10#" 348 1565.85 310 10 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 328900 6200 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n2050_40#" 174 2136.93 -2050 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 807300 7120 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n3390_40#" 431 1493.42 -3390 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 272700 6240 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n5220_40#" 298 1650.38 -5220 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 393900 6320 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n7010_40#" 324 1581.39 -7010 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 364800 6320 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n8350_40#" 399 1552.39 -8350 40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312000 6440 0 0 0 0 0 0 0 0 0 0 0 0
+node "VN" 169 21294.8 -9010 -10 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1860 75384 2092 13484800 43520 9570550 29050 1274826 13386 7340400 34932 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_4870_1260#" "VN" 10.3407
+cap "m1_n4250_1290#" "li_n5220_40#" 57.9796
+cap "VN" "li_310_10#" 201.347
+cap "li_n5220_40#" "m1_n5240_1470#" 339.882
+cap "m1_n5160_1430#" "li_n5220_40#" 131.634
+cap "VP" "m2_n4630_2070#" 32.5358
+cap "VP" "m1_n4250_1290#" 3.25588
+cap "m1_n9490_2240#" "li_n7010_40#" 442.126
+cap "VN" "m1_3950_1370#" 8.55109
+cap "VP" "m1_n5240_1470#" 8.19734
+cap "VP" "m1_n3200_2600#" 52.9831
+cap "InRef" "VP" 61.0269
+cap "VP" "m1_1270_1300#" 13.7442
+cap "m1_n5160_1430#" "VP" 21.542
+cap "VN" "m1_3070_1270#" 10.9905
+cap "m1_n3200_150#" "VN" 762.144
+cap "m1_4870_1260#" "m1_3950_1370#" 181.989
+cap "li_3910_40#" "m1_1660_n1090#" 38.4643
+cap "m1_280_1560#" "VN" 56.8823
+cap "VP" "m1_2150_1410#" 23.248
+cap "m1_4870_1260#" "m1_3070_1270#" 17.6155
+cap "li_3910_40#" "VP" 472.927
+cap "m1_n2250_2600#" "m1_n3200_2600#" 74.9291
+cap "VP" "m1_n8540_2590#" 0.620168
+cap "m1_280_1560#" "li_310_10#" 229.949
+cap "VN" "li_n3390_40#" 139.931
+cap "m1_3070_1270#" "m1_3950_1370#" 233.115
+cap "li_3720_n1630#" "li_4210_n1630#" 70
+cap "m1_1070_n1030#" "m1_1660_n1090#" 3774.43
+cap "m1_n9490_2240#" "VN" 3.28321
+cap "m1_1070_n1030#" "VP" 1717.19
+cap "VN" "m1_n4250_1290#" 110.339
+cap "m1_n2250_2600#" "li_n2050_40#" 608.338
+cap "li_n8350_40#" "li_n7010_40#" 67.7419
+cap "VN" "m1_n3200_2600#" 2.8152
+cap "VN" "m1_1270_1300#" 33.3211
+cap "m1_n5160_1430#" "VN" 67.8506
+cap "m1_1660_n1090#" "li_2110_40#" 38.4643
+cap "li_4830_n1630#" "li_4210_n1630#" 48.186
+cap "VN" "m1_2150_1410#" 7.78911
+cap "VP" "li_2110_40#" 472.927
+cap "li_3910_40#" "VN" 182.354
+cap "m1_n2870_2590#" "m1_n3200_2600#" 93.3353
+cap "m1_1270_1300#" "li_310_10#" 52.3277
+cap "li_3910_40#" "m1_4870_1260#" 38.5354
+cap "VN" "li_n2050_40#" 400.678
+cap "m1_1270_1300#" "m1_3070_1270#" 19.5351
+cap "m1_2150_1410#" "m1_3950_1370#" 17.7638
+cap "li_n8350_40#" "VN" 46.431
+cap "m1_280_1560#" "m1_1270_1300#" 250.386
+cap "VN" "li_4210_n1630#" 64.1683
+cap "li_3910_40#" "m1_3950_1370#" 243.752
+cap "m1_1070_n1030#" "VN" 396.69
+cap "m1_3070_1270#" "m1_2150_1410#" 189.737
+cap "m1_280_1560#" "m1_2150_1410#" 17.6372
+cap "m2_n4630_2070#" "li_n3390_40#" 37.0092
+cap "m1_1070_n1030#" "m1_4870_1260#" 325.531
+cap "m1_n3200_2600#" "li_n3390_40#" 83.2882
+cap "m1_n8150_160#" "m1_n8860_160#" 55.35
+cap "m1_n9490_2240#" "m1_n4250_1290#" 0.298473
+cap "m1_n8150_160#" "m1_n7520_160#" 75.4773
+cap "InRef" "m1_n9490_2240#" 0.338532
+cap "m1_n9490_2240#" "m1_n5160_1430#" 21.0206
+cap "li_2110_40#" "VN" 182.354
+cap "m1_1070_n1030#" "m1_3950_1370#" 83.5246
+cap "m2_n4630_2070#" "m1_n4250_1290#" 43.7995
+cap "m1_1070_n1030#" "m1_3070_1270#" 113.869
+cap "m2_n4630_2070#" "m1_n3200_2600#" 315.298
+cap "VP" "li_n5220_40#" 455.009
+cap "m1_n5160_1430#" "m1_n4250_1290#" 390.975
+cap "m1_1660_n1090#" "VP" 703.852
+cap "m1_n9500_160#" "m1_n8860_160#" 75.4773
+cap "m1_n5160_1430#" "m1_n5240_1470#" 312.967
+cap "m1_n9490_2240#" "m1_n8540_2590#" 474.092
+cap "li_n2050_40#" "li_n3390_40#" 67.2
+cap "m1_1270_1300#" "m1_2150_1410#" 304.421
+cap "li_2110_40#" "m1_3070_1270#" 45.384
+cap "m1_n9490_2240#" "li_n8350_40#" 129.652
+cap "m1_n2250_2600#" "VP" 466.384
+cap "m1_n3200_2600#" "li_n2050_40#" 615.747
+cap "m1_n8150_160#" "VN" 0.997297
+cap "m1_1070_n1030#" "m1_1270_1300#" 15.2793
+cap "VN" "m1_n8860_160#" 45.8757
+cap "m1_n7520_160#" "VN" 15.9568
+cap "VN" "li_3720_n1630#" 64.1683
+cap "VN" "li_n5220_40#" 174.047
+cap "m1_1070_n1030#" "m1_2150_1410#" 61.6829
+cap "m1_1660_n1090#" "VN" 805.894
+cap "InRef" "m1_n7830_2600#" 93.3353
+cap "m1_1070_n1030#" "li_3910_40#" 41.258
+cap "VP" "VN" 3728.64
+cap "m1_n8540_2590#" "li_n8350_40#" 346.905
+cap "m1_1660_n1090#" "m1_4870_1260#" 24.4547
+cap "VN" "m1_n2560_340#" 613.231
+cap "m1_n9490_2240#" "m1_n9180_2590#" 70.8501
+cap "VP" "m1_4870_1260#" 254.477
+cap "li_n7010_40#" "VN" 214.449
+cap "VP" "li_310_10#" 420.043
+cap "m1_n2250_2600#" "VN" 7.70945
+cap "VP" "m1_n2870_2590#" 1.92893
+cap "li_2110_40#" "m1_2150_1410#" 232.22
+cap "m1_n7830_2600#" "m1_n8540_2590#" 280.65
+cap "VN" "li_4830_n1630#" 201.948
+cap "VP" "m1_3950_1370#" 23.1853
+cap "VP" "m1_3070_1270#" 3.14043
+cap "m1_n2250_2600#" "m1_n2870_2590#" 72.1227
+cap "m1_n3200_150#" "m1_n2560_340#" 59.622
+cap "m1_280_1560#" "VP" 8.3025
+cap "In" "m1_n8540_2590#" 6.33627
+cap "m1_n9180_2590#" "m1_n8540_2590#" 75.4773
+cap "m1_1070_n1030#" "li_2110_40#" 41.258
+cap "m1_n2250_2600#" "m1_280_1560#" 130.536
+cap "comp_to_logic_0/I_Bias" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 1.53464
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM4D" -17.7548
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_n" 4.31125
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM4D" -3.98241
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VM4D" -0.595161
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/VM4D" 8.53616
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM4D" 57.9282
+cap "comp_adv3_2/VN" "comp_to_logic_0/I_Bias" -26.099
+cap "comp_adv3_2/VN" "comp_to_logic_0/VP" 1.69433
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM11D" -0.269655
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM1D" -4.013
+cap "comp_to_logic_0/In_p" "comp_to_logic_0/VM6D" 2.40615
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/In_p" 7.09615
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM4D" -3.40729
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM4D" 108.998
+cap "comp_adv3_2/VN" "comp_to_logic_0/I_Bias" 2216.49
+cap "comp_to_logic_0/VM4D" "comp_to_logic_0/In_p" 13.8142
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM11D" -0.573945
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM11D" -0.473501
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/In_p" 10.4267
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_p" 1.77901
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM4D" -1.5725
+cap "comp_adv3_2/VN" "comp_to_logic_0/VP" 7.10543e-15
+cap "comp_to_logic_0/In_p" "comp_to_logic_0/VM11D" 0.658526
+cap "comp_to_logic_0/VP" "comp_adv3_2/VN" -4.025
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM13D" -14.3784
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM11D" -1.57085
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM17D" -30.2051
+cap "comp_adv3_2/VN" "comp_to_logic_0/sky130_fd_pr__nfet_01v8_lvt_LH2JGW_1/a_n125_n200#" -0.71875
+cap "comp_to_logic_0/VM12D" "comp_adv3_2/VN" 8.52638
+cap "comp_adv3_3/VN" "comp_to_logic_0/VM13D" 23.8625
+cap "comp_adv3_3/VN" "comp_to_logic_0/VP" -4.46857
+cap "comp_to_logic_0/VM17D" "comp_adv3_3/VN" 11.0373
+cap "comp_adv3_3/VN" "comp_to_logic_0/VM12D" -1.57616
+cap "comp_adv3_3/VN" "comp_to_logic_0/Out" -10.5167
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 10.1449
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -2.29985
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 74.944
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 12.4511
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 52.2214
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" -4.98588
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 406.732
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" -4.98588
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 64.1447
+cap "comp_adv3_1/VN" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -187.324
+cap "comp_adv3_1/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" 10.1449
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 59.0866
+cap "comp_adv3_1/VN" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 0.0687151
+cap "comp_adv3_1/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" 34.0913
+cap "comp_adv3_1/VN" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 715.984
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.333006
+cap "comp_adv3_1/bias" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -13.7642
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 98.6373
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" -3.31356
+cap "comp_adv3_1/bias" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -10.0758
+cap "comp_adv3_1/bias" "comp_adv3_0/bias" 0.340615
+cap "comp_adv3_1/bias" "comp_adv3_0/VN" 701.314
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 6386.36
+cap "comp_adv3_0/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" 14.1734
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" -2.93078
+cap "comp_adv3_0/VN" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 1983.22
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -0.448124
+cap "comp_adv3_0/VN" "comp_adv3_1/bias" -1120.73
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 1120.91
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -191.081
+cap "comp_adv3_0/bias" "comp_adv3_0/VN" 116.541
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -739.674
+cap "comp_adv3_0/bias" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 0.698108
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comp_adv3_0/bias" 0.380496
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/VN" 357.994
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" -7.17966
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 60.9042
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/bias" 236.038
+cap "comp_adv3_0/bias" "comp_adv3_1/bias" 0.805091
+cap "comp_adv3_0/bias" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -72.6789
+cap "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_0/VN" -0.455633
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "comp_adv3_0/VN" -28.9342
+cap "comp_adv3_0/bias" "comp_adv3_1/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" 0.170308
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comp_adv3_0/bias" 3.28387
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comp_adv3_0/VN" 124.148
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 1.77444
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" 1.87131
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/VN" 52.0698
+cap "comp_adv3_0/bias" "comp_adv3_0/VN" 3802.72
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/bias" 2412.17
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" "comp_adv3_0/VN" 11.7083
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VN" 11463.3
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" 170.033
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 10.1101
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 38.5841
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/bias" -984.557
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/diffamp_element_1/a_890_840#" -1.21807
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" 0.261508
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" 8.04992
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_to_logic_0/w_1992_3192#" 26.9058
+cap "comp_to_logic_0/In_n" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" -7.73383
+cap "comp_adv3_di_0/diffamp_element_0/a_890_840#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" -2.28388
+cap "comp_to_logic_0/VM1D" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 9.67761
+cap "comp_adv3_di_0/bias" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 198.891
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" -1.014
+cap "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 61.4879
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" -1.70892
+cap "comp_to_logic_0/VM6D" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 9.66996
+cap "comp_adv3_di_0/bias" "comp_adv3_2/bias" 0.0354808
+cap "comp_adv3_2/bias" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 6.41212
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/VM6D" 324.984
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM4D" -3.98241
+cap "comp_adv3_3/bias" "comp_adv3_2/bias" 0.230625
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_n" 70.5065
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/In_p" -19.0977
+cap "comp_to_logic_0/VM4D" "comp_to_logic_0/VM1D" -9.38655
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM6D" 39.7701
+cap "comp_to_logic_0/In_p" "comp_to_logic_0/VM6D" 152.057
+cap "comp_to_logic_0/VP" "comp_adv3_2/bias" 61.3198
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/VM4D" 47.8962
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/bias" 0.527143
+cap "comp_adv3_2/VN" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 8.43066
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM1D" -29.0768
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/VM11D" 0.259859
+cap "comp_to_logic_0/VM1D" "comp_adv3_2/bias" 27.5619
+cap "comp_to_logic_0/VM4D" "comp_to_logic_0/VM6D" 99.8682
+cap "comp_adv3_2/VN" "comp_adv3_di_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" 3.09452
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM11D" -7.33936
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" 0.0593248
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/I_Bias" -6.31184
+cap "comp_to_logic_0/VP" "comp_to_logic_0/In_n" 315.782
+cap "comp_to_logic_0/In_p" "comp_to_logic_0/VM11D" -0.406525
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM6D" 562.105
+cap "comp_adv3_2/bias" "comp_to_logic_0/VM6D" 17.4982
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/VM1D" 454.87
+cap "comp_to_logic_0/VP" "comp_adv3_2/VN" 1063
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VM6D" -145.202
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 5.84944
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -1.59048
+cap "comp_adv3_2/VN" "comp_adv3_2/bias" -62.1588
+cap "comp_adv3_di_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" "comp_adv3_2/bias" 0.0354808
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM1D" -14.5536
+cap "comp_adv3_3/bias" "comp_to_logic_0/VM6D" 101.525
+cap "comp_adv3_2/bias" "comp_to_logic_0/VP" 17.4412
+cap "comp_adv3_3/bias" "comp_adv3_2/VN" -579.432
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM11D" -15.6251
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/In_p" 557.229
+cap "comp_to_logic_0/VM11D" "comp_adv3_2/VN" -1.23618
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VP" 161.814
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM4D" -1.5725
+cap "comp_to_logic_0/VM6D" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 3.75696
+cap "comp_to_logic_0/VM4D" "comp_to_logic_0/In_p" 8.44396
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_p" 8.2574
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VM6D" -81.9832
+cap "comp_adv3_2/VN" "comp_to_logic_0/VP" 1389.35
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/In_n" 25.806
+cap "comp_to_logic_0/VM1D" "comp_adv3_2/VN" -19.5337
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_2/VN" 28.6534
+cap "comp_adv3_2/bias" "comp_to_logic_0/VM6D" 27.5586
+cap "comp_to_logic_0/VM11D" "comp_to_logic_0/In_p" 18.3754
+cap "comp_to_logic_0/VM11D" "comp_to_logic_0/VP" 83.5319
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VM11D" -1.87288
+cap "comp_adv3_2/bias" "comp_adv3_2/VN" -699.35
+cap "comp_to_logic_0/VM6D" "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" 0.783493
+cap "comp_adv3_3/bias" "comp_adv3_4/bias" 0.162794
+cap "comp_to_logic_0/VP" "comp_to_logic_0/In_p" 338.245
+cap "comp_to_logic_0/VM11D" "comp_to_logic_0/In_n" 0.259859
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/In_p" 398.281
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM4D" -7.66882
+cap "comp_to_logic_0/VM6D" "comp_adv3_2/VN" 56.3664
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VP" 97.7666
+cap "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/VN" 1.64685
+cap "comp_to_logic_0/In_n" "comp_to_logic_0/In_p" -30.2996
+cap "comp_to_logic_0/VP" "comp_to_logic_0/In_n" 5.53538
+cap "comp_adv3_2/bias" "comp_adv3_3/bias" 0.805091
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_2/VN" -9.35826
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM17D" -52.7926
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM12D" 43.7915
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM17D" 37.6085
+cap "comp_adv3_2/OutP" "comp_adv3_3/bias" 0.541651
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM12D" 156.709
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VP" 1661.33
+cap "comp_adv3_2/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" "comp_adv3_3/bias" 0.223636
+cap "comp_to_logic_0/VM6D" "comp_adv3_3/bias" 60.7765
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/VM11D" -4.70376
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/VM11D" 29.488
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/bias" -90.1503
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM13D" -1.05946
+cap "comp_to_logic_0/VP" "comp_adv3_3/bias" 68.431
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/bias" -1215.99
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM11D" 3.68692
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM11D" 123.665
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -11.5505
+cap "comp_adv3_4/diffamp_element_nodi_1/a_890_330#" "comp_to_logic_0/VM12D" 0.122185
+cap "comp_adv3_4/bias" "comp_adv3_3/bias" 0.805091
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/diffamp_element_nodi_1/a_890_330#" 1.67814
+cap "comp_to_logic_0/VM11D" "comp_to_logic_0/In_p" 5.26496
+cap "comp_to_logic_0/VP" "comp_adv3_4/diffamp_element_nodi_1/a_890_330#" 3.85983
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM6D" -268.749
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM1D" 140.348
+cap "comp_adv3_4/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" -2.18262
+cap "comp_adv3_4/bias" "comp_to_logic_0/VM13D" 5.35785
+cap "comp_to_logic_0/VM17D" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 23.733
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM17D" 138.977
+cap "comp_to_logic_0/VP" "comp_adv3_4/bias" 130.115
+cap "comp_adv3_4/bias" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 337.736
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM13D" 32.4208
+cap "comp_to_logic_0/VP" "comp_to_logic_0/VM13D" 272.331
+cap "comp_to_logic_0/VP" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 1624.36
+cap "comp_adv3_3/diffamp_element_nodi_0/m1_1318_642#" "comp_adv3_4/bias" 0.546667
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/diffamp_element_nodi_0/m1_1126_642#" -2.86897
+cap "comp_to_logic_0/VM12D" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" -1.57616
+cap "comp_to_logic_0/VM13D" "comp_to_logic_0/Out" -0.217825
+cap "comp_adv3_4/bias" "comp_adv3_3/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" 0.375254
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/Out" 0.290351
+cap "comp_adv3_3/diffamp_element_nodi_0/m1_1318_642#" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" -2.49847
+cap "comp_adv3_3/diffamp_element_nodi_0/m1_1318_642#" "comp_to_logic_0/VP" 0.157423
+cap "comp_to_logic_0/VM17D" "comp_adv3_4/bias" 5.35785
+cap "comp_to_logic_0/VP" "comp_to_logic_0/Out" 86.3526
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -6.37895
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 3.91233
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" 11.6925
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 110.773
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -0.0314485
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 0.63807
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 518.056
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 91.5832
+cap "VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 10.3229
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 19.0725
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -1.58473
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" -10.2381
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 10.5755
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VP" 21.6
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 131.671
+cap "comp_adv3_1/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" 18.912
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -175.069
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" -10.2381
+cap "comp_adv3_1/VP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 42
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "comp_adv3_1/VN" 41.2337
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.0611498
+cap "comp_adv3_1/VN" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -337.338
+cap "comp_adv3_1/OutP" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -0.149237
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" 91.7174
+cap "comp_adv3_1/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -279.998
+cap "comp_adv3_1/VN" "comp_adv3_1/bias" 0.141058
+cap "comp_adv3_1/Outn" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -132.882
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 91.5212
+cap "comp_adv3_1/VN" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 3.96667
+cap "comp_adv3_1/VN" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -251.184
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 118.088
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_0/VP" 42.4437
+cap "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 2.39599
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 933.197
+cap "comp_adv3_0/bias" "comp_adv3_1/bias" 0.292857
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/Outn" 7.33774
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VP" 9.58293
+cap "comp_adv3_0/VP" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" -1.27778
+cap "comp_adv3_0/bias" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 1.36888
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 21.9753
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 636.697
+cap "comp_adv3_0/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" 28.5365
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 0.0118091
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -0.149237
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 646.792
+cap "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 48.1376
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/bias" -10.4275
+cap "comp_adv3_0/VN" "comp_adv3_1/bias" -6.97497
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_0/VN" 1290.73
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" -80.7228
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -16.7501
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 113.044
+cap "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/bias" 47.3482
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/bias" 54.5739
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -39.6524
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 93.1608
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 9.14001
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VN" 2327.34
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 342.5
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 114.967
+cap "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 385.16
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 780.858
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/Outn" -10.4079
+cap "comp_adv3_0/bias" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 14.4938
+cap "comp_adv3_0/VN" "comp_adv3_0/OutP" 43.955
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/bias" -29.2444
+cap "comp_adv3_0/VN" "comp_adv3_0/VP" 42.3889
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" -25.2609
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -147.645
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/OutP" -51.1914
+cap "comp_adv3_0/VP" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" -0.67804
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/OutP" -34.2533
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 25.4949
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VP" 8.78676
+cap "comp_adv3_0/Outn" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 88.3093
+cap "comp_adv3_0/VN" "comp_adv3_0/Outn" -22.1132
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 89.5177
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 312.924
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -0.132993
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/bias" -6.35835
+cap "comp_adv3_0/Outn" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 616.581
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 133.067
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/Outn" 320.756
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 339.042
+cap "comp_adv3_0/VN" "comp_adv3_1/bias" 390.072
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 1613.62
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/OutP" -2.05707
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 714.589
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 1749.43
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 5357.15
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/bias" 148.072
+cap "comp_adv3_0/VN" "comp_adv3_0/bias" -61.7091
+cap "comp_adv3_1/bias" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -25.7179
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 2068.92
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" -495.398
+cap "comp_adv3_0/Outn" "comp_adv3_0/OutP" -32.1179
+cap "comp_adv3_1/bias" "comp_adv3_0/bias" 0.696226
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 9.85818
+cap "comp_adv3_0/bias" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 3.2522
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 2122.06
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "comp_adv3_0/VN" -57.8683
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/VN" 3655.19
+cap "comp_adv3_0/OutP" "comp_adv3_0/VN" 1156.43
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VP" 0.832416
+cap "comp_adv3_0/bias" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 61.9917
+cap "comp_adv3_0/Outn" "comp_adv3_0/VN" 11.9652
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_1/diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" 7.88535
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comp_adv3_0/VN" -2.78066
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/OutP" 71.5619
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 136.895
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 3875.54
+cap "comp_adv3_0/OutP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 985.688
+cap "comp_adv3_0/bias" "comp_adv3_0/VN" 2994.48
+cap "comp_adv3_0/VN" "comp_adv3_di_0/Inp2" 4.38043
+cap "comp_adv3_0/Outn" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 14.449
+cap "comp_adv3_0/bias" "comp_adv3_1/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" 0.141923
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VN" 4207.42
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 116.301
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VN" 4799.29
+cap "comp_adv3_0/VN" "comp_adv3_0/VP" 31.4948
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 16.9876
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_di_0/Inp2" 7.18498
+cap "comp_adv3_0/bias" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2374.89
+cap "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_0/OutP" 2.51972
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" -3.88421
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" -4.39168
+cap "comp_adv3_0/Outn" "comp_adv3_0/OutP" -13.6258
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 4473.56
+cap "comp_adv3_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 6.33388
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 6.18727
+cap "comp_adv3_0/OutP" "comp_adv3_di_0/bias" 1.65577
+cap "comp_adv3_di_0/Inp2" "comp_adv3_0/OutP" 139.993
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 0.652949
+cap "comp_adv3_di_0/Outn" "comp_adv3_0/OutP" 313.462
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 7.61419
+cap "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comp_adv3_di_0/Outn" -0.00567556
+cap "comp_adv3_di_0/Inp2" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 0.465575
+cap "comp_adv3_di_0/Outp" "comp_adv3_di_0/Outn" -4.968
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/Outn" 4.12327
+cap "comp_adv3_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 0.317545
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/bias" 43.5232
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/Inp2" 3.4766
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/Outn" -85.0866
+cap "comp_adv3_di_0/Inp2" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 7.18498
+cap "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comp_adv3_0/OutP" -0.673111
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" 38.4431
+cap "comp_adv3_0/OutP" "comp_adv3_di_0/Inn2" 0.0527143
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_0/OutP" -2.75974
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_0/OutP" 45.2694
+cap "comp_adv3_di_0/Inp2" "comp_adv3_di_0/Outn" -1.31528
+cap "comp_adv3_0/VP" "comp_adv3_0/OutP" -1.69934
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 11.9689
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" -3.36192
+cap "comp_adv3_2/VP" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -1.0084
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_di_0/diffamp_element_1/a_890_840#" 0.0364111
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" 101.748
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 16.913
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/Inn2" 149.191
+cap "comp_adv3_di_0/diffamp_element_1/a_890_840#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 6.2122
+cap "comp_adv3_2/bias" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 16.4692
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" -4.54747e-13
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/diffamp_element_1/a_890_840#" -2.75974
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" -67.1211
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 226.485
+cap "comp_adv3_2/bias" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 7.28635
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 0.220472
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_to_logic_0/In_n" 1.0427
+cap "comp_adv3_2/Outn" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 4.83
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/VP" 0.151143
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 227.003
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 31.8649
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 609.653
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_di_0/Inn2" 108.441
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" -15.3216
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_di_0/Inn2" 0.130254
+cap "comp_adv3_2/VP" "comp_adv3_di_0/Inn2" -8.20577
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_di_0/diffamp_element_1/a_890_840#" -39.891
+cap "comp_adv3_di_0/bias" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" 69.9351
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 393.671
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_di_0/Inn2" -5.78556
+cap "comp_adv3_di_0/bias" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" -7.82308
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 165.284
+cap "comp_adv3_2/VN" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 17.7997
+cap "comp_adv3_2/bias" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 58.7746
+cap "comp_adv3_2/OutP" "comp_adv3_2/VN" 124.447
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 359.835
+cap "comp_to_logic_0/In_n" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 221.864
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -14.04
+cap "comp_adv3_2/bias" "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 7.28635
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 13.2859
+cap "comp_to_logic_0/VM1D" "comp_adv3_2/VN" 1.01138
+cap "comp_adv3_2/bias" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 2.583
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 213.757
+cap "comp_adv3_2/VP" "comp_adv3_di_0/diffamp_element_0/a_890_840#" 2.21078
+cap "comp_adv3_2/bias" "comp_to_logic_0/VM1D" 0.0829213
+cap "comp_adv3_2/bias" "comp_adv3_2/VN" 38.6363
+cap "comp_adv3_2/VP" "comp_adv3_2/Outn" -1.26129
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_n" 14.9632
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/VN" -147.532
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_di_0/diffamp_element_0/a_890_840#" -59.7508
+cap "comp_adv3_2/Outn" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -9.31335
+cap "comp_adv3_2/bias" "comp_to_logic_0/In_n" -8.23384
+cap "comp_adv3_3/bias" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 0.686575
+cap "comp_adv3_2/OutP" "comp_adv3_2/Outn" 27.7908
+cap "comp_adv3_2/VN" "comp_adv3_di_0/diffamp_element_0/a_890_840#" -145.501
+cap "comp_adv3_2/Outn" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 305.584
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_di_0/Inn2" 0.404605
+cap "comp_to_logic_0/VM6D" "comp_to_logic_0/In_n" 2.40171
+cap "comp_to_logic_0/VP" "comp_adv3_2/VN" 7.74568
+cap "comp_adv3_2/VN" "comp_adv3_2/Outn" 72.1032
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_di_0/diffamp_element_0/a_890_840#" 214.059
+cap "comp_adv3_2/OutP" "comp_adv3_3/Outn" 3.35841
+cap "comp_adv3_2/VP" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -0.745851
+cap "comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 34.6455
+cap "comp_adv3_2/bias" "comp_to_logic_0/VP" 1.61882
+cap "comp_adv3_2/OutP" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -1.23322
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 196.974
+cap "comp_adv3_2/bias" "comp_adv3_3/bias" 0.196277
+cap "comp_adv3_2/VN" "comp_adv3_di_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" 3.14043
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/Outn" 126.277
+cap "comp_adv3_2/OutP" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 162.582
+cap "comp_adv3_2/VN" "comp_adv3_3/bias" 61.3039
+cap "comp_adv3_2/bias" "comp_to_logic_0/In_p" 46.1323
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 90.1193
+cap "comp_adv3_2/VN" "comp_adv3_3/Outn" -20.2408
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 42.7878
+cap "comp_adv3_2/Outn" "comp_adv3_2/OutP" 537.388
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/bias" 0.4284
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_to_logic_0/In_p" 75.0609
+cap "comp_adv3_2/VN" "comp_adv3_2/OutP" 78.0881
+cap "comp_adv3_3/bias" "comp_to_logic_0/In_n" -30.6148
+cap "comp_adv3_2/OutP" "comp_adv3_3/Outn" 376.031
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_n" 84.7391
+cap "comp_adv3_2/bias" "comp_to_logic_0/VM6D" 1.83763
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/bias" 14.7376
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 13.4615
+cap "comp_adv3_3/bias" "comp_adv3_4/bias" 0.137687
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_to_logic_0/VM6D" 3.75696
+cap "comp_adv3_2/VN" "comp_to_logic_0/VP" 0.28051
+cap "comp_adv3_3/bias" "comp_to_logic_0/In_p" 107.295
+cap "comp_adv3_2/VN" "comp_to_logic_0/In_p" 118.843
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_to_logic_0/In_n" -312.65
+cap "comp_adv3_2/OutP" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 12.8011
+cap "comp_adv3_2/bias" "comp_adv3_3/bias" 0.696226
+cap "comp_adv3_2/VN" "comp_adv3_2/bias" 31.4638
+cap "comp_adv3_2/Outn" "comp_to_logic_0/VM6D" 0.783493
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" -0.812264
+cap "comp_adv3_2/Outn" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -12.7909
+cap "comp_adv3_2/Outn" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 323.928
+cap "comp_adv3_3/bias" "comp_to_logic_0/VM6D" 0.1476
+cap "comp_adv3_2/VN" "comp_to_logic_0/VM6D" 3.01454
+cap "comp_adv3_2/VN" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 83.4836
+cap "comp_adv3_2/VN" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -150.875
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/bias" -153.136
+cap "comp_to_logic_0/VM1D" "comp_to_logic_0/In_p" 3.68525
+cap "comp_adv3_di_0/diffamp_element_0/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_303_n200#" "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 6.07043
+cap "comp_adv3_3/Outn" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -10.2692
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_to_logic_0/In_p" 79.0528
+cap "comp_adv3_2/bias" "comp_to_logic_0/In_n" -825.728
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 9.2906
+cap "comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_2/bias" 13.5723
+cap "comp_adv3_3/Outn" "comp_adv3_3/OutP" -17.1803
+cap "comp_adv3_2/OutP" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 130.811
+cap "comp_adv3_2/VN" "comp_adv3_2/Outn" -169.725
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/OutP" 51.7095
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_to_logic_0/In_n" -184.42
+cap "comp_adv3_2/Outn" "comp_adv3_3/Outn" 113.58
+cap "comp_adv3_2/VP" "comp_adv3_3/Outn" -1.12788
+cap "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/OutP" 118.392
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/Outn" 3125.57
+cap "comp_to_logic_0/In_p" "comp_adv3_4/Outn" -6.26793
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/Outn" -123.573
+cap "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 240.461
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_2/OutP" -0.745851
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -23.3882
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/bias" 6.53134
+cap "comp_adv3_3/bias" "comp_adv3_2/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" 0.186364
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/bias" 19.986
+cap "comp_adv3_3/OutP" "comp_adv3_3/Outn" 668.353
+cap "comp_adv3_3/Outn" "comp_adv3_2/OutP" 418.487
+cap "comp_adv3_4/Outn" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -413.863
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/Outn" 199.551
+cap "comp_adv3_3/OutP" "comp_adv3_2/OutP" 155.652
+cap "comp_adv3_4/bias" "comp_adv3_4/Outn" -1074.21
+cap "comp_adv3_2/OutP" "comp_adv3_3/bias" 2.71895
+cap "comp_adv3_3/Outn" "comp_to_logic_0/VM12D" 0.75755
+cap "comp_adv3_3/OutP" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 8.31207
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" -3.83407
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_2/OutP" 11.2037
+cap "comp_adv3_3/OutP" "comp_to_logic_0/In_p" -1.28431
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/bias" 66.8505
+cap "comp_adv3_3/bias" "comp_to_logic_0/In_p" 102.221
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" 9.91994
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_to_logic_0/In_p" -1957.12
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/Outn" -72.7087
+cap "comp_adv3_3/Outn" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 7.07875
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_2/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" 11.44
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_4/Outn" -49.9786
+cap "comp_adv3_3/OutP" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 16.7437
+cap "comp_adv3_3/OutP" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" -37.5792
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_2/OutP" -74.6854
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/bias" 91.8696
+cap "comp_adv3_3/bias" "comp_adv3_4/bias" 0.696226
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/VM12D" 0.161842
+cap "comp_adv3_3/Outn" "comp_adv3_4/Outn" 92.6931
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 86.7021
+cap "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 1.66323
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" 0.130809
+cap "comp_adv3_3/OutP" "comp_adv3_4/Outn" 146.831
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -456.093
+cap "comp_to_logic_0/In_p" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -331.787
+cap "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/bias" 15.0794
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_to_logic_0/In_p" 104.847
+cap "comp_adv3_3/bias" "comp_adv3_4/Outn" 676.184
+cap "comp_adv3_4/bias" "comp_to_logic_0/In_p" -358.142
+cap "comp_adv3_3/Outn" "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" 25.8594
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" 20.7656
+cap "comp_adv3_4/Outn" "comp_adv3_3/OutP" 245.309
+cap "comp_adv3_3/VP" "comp_adv3_3/OutP" -20.7425
+cap "comp_adv3_3/diffamp_element_nodi_0/a_890_330#" "comp_adv3_3/Outn" 2.00857
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/Outn" -2.46251
+cap "comp_adv3_4/OutP" "comp_adv3_4/bias" 726.734
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/OutP" 695.776
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/bias" 19.03
+cap "comp_adv3_3/Outn" "comp_adv3_3/OutP" 137.777
+cap "comp_adv3_3/VP" "comp_adv3_4/OutP" 136.753
+cap "comp_adv3_4/OutP" "comp_adv3_4/Outn" 306.94
+cap "comp_adv3_3/VP" "comp_adv3_4/bias" 8.78358
+cap "comp_adv3_4/Outn" "comp_adv3_4/bias" 2132.56
+cap "comp_adv3_3/VP" "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 487.631
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_4/Outn" 642.042
+cap "comp_adv3_3/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" "comp_adv3_4/bias" 0.312712
+cap "comp_adv3_3/VP" "comp_adv3_4/Outn" 82.4473
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/Outn" 343.796
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/OutP" 70.3772
+cap "comp_adv3_4/Outn" "comp_adv3_3/Outn" 464.302
+cap "comp_adv3_3/VP" "comp_adv3_3/Outn" 17.4597
+cap "comp_adv3_4/OutP" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 56.1606
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/bias" 380.288
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 360.07
+cap "comp_adv3_3/OutP" "comp_adv3_4/bias" 2.7675
+cap "comp_adv3_4/OutP" "comp_adv3_3/OutP" 121.328
+cap "comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comp_adv3_3/OutP" 40.8191
+cap "comp_adv3_3/VP" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 14.155
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_4/Outn" 375.202
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_n582#" 4.09756
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_1000#" 311.425
+cap "VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 10.3651
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -50.964
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -1.03969
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" 0.758808
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 353.832
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" 385.104
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -36.595
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_1000#" 9.37875
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 461.878
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 215.817
+cap "comp_adv3_1/VN" "comp_adv3_1/VP" 0.769231
+cap "comp_adv3_1/Outn" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 0.155159
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 38.3698
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" 1.39109
+cap "comp_adv3_1/VN" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -150.761
+cap "comp_adv3_1/VN" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -455.393
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_1000#" -36.595
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -32.5932
+cap "comp_adv3_1/VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_1000#" 1.02185
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comp_adv3_1/VP" 0.00131392
+cap "comp_adv3_1/Outn" "comp_adv3_1/VN" 4.15385
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 73.5739
+cap "comp_adv3_0/VP" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 9.61734
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_1000#" "comp_adv3_0/VP" 1.02185
+cap "comp_adv3_0/VP" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 1.68172
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/Outn" 2.42547
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 97.7607
+cap "comp_adv3_0/VP" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 2.30789
+cap "comp_adv3_0/VP" "comp_adv3_0/VN" 425.057
+cap "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 0.155159
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" 149.835
+cap "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VN" 27.7765
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_1000#" "comp_adv3_0/VN" 1.11776
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/VN" 0.0168733
+cap "comp_adv3_0/VP" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 9.90441
+cap "comp_adv3_0/OutP" "comp_adv3_0/VP" -6.07148
+cap "comp_adv3_0/VP" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 0.55196
+cap "comp_adv3_0/VP" "comp_adv3_0/Outn" 1.64596
+cap "comp_adv3_0/VN" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -6.41309
+cap "comp_adv3_0/VN" "comp_adv3_0/OutP" 1.1245
+cap "comp_adv3_0/VN" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 2.68085
+cap "InRef" "comp_adv3_0/VP" -3.85245
+cap "comp_adv3_0/VN" "comp_adv3_0/Outn" 58.3894
+cap "comp_adv3_0/OutP" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -54.0857
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 322.591
+cap "comp_adv3_0/VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" -0.155042
+cap "comp_adv3_0/Outn" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 237.37
+cap "comp_adv3_0/VN" "comp_adv3_0/VP" -660.479
+cap "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_0/Outn" 116.027
+cap "comp_adv3_0/OutP" "comp_adv3_0/Outn" 396.6
+cap "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_0/VP" 0.906189
+cap "comp_adv3_0/VN" "comp_adv3_0/VP" 582.319
+cap "comp_adv3_0/OutP" "comp_adv3_0/VP" 3.60836
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 34.5094
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -16.7283
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VN" 19.9003
+cap "comp_adv3_0/Outn" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -267.716
+cap "comp_adv3_0/Outn" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 29.6545
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/OutP" 434.393
+cap "comp_adv3_0/Outn" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" 83.1061
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "comp_adv3_0/OutP" -57.966
+cap "comp_adv3_0/Outn" "comp_adv3_0/VN" -865.071
+cap "comp_adv3_0/OutP" "comp_adv3_0/VN" 37.9769
+cap "comp_adv3_0/Outn" "comp_adv3_0/OutP" 1208.25
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_100#" 0.00148407
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VP" 0.83529
+cap "comp_adv3_0/OutP" "comp_adv3_di_0/Outn" 2.95696
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "comp_adv3_0/VP" 0.018022
+cap "comp_adv3_0/OutP" "comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 0.214835
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" 77.5475
+cap "comp_adv3_di_0/bias" "comp_adv3_di_0/Outn" -0.166216
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_0/VP" 96.7487
+cap "comp_adv3_0/OutP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" 2.09563
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -236.589
+cap "comp_adv3_di_0/Outn" "comp_adv3_di_0/Outp" -1.932
+cap "comp_adv3_0/OutP" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 479.761
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "comp_adv3_0/VP" 0.00942074
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -123.839
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 766.661
+cap "comp_adv3_0/OutP" "comp_adv3_0/VP" -1.69934
+cap "comp_adv3_0/OutP" "comp_adv3_di_0/Outn" 100.703
+cap "comp_adv3_di_0/Inp2" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 0.465575
+cap "comp_adv3_0/OutP" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -2.02609
+cap "comp_adv3_0/VP" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -387.848
+cap "comp_adv3_di_0/Outn" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 2.98582
+cap "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 221.961
+cap "comp_adv3_0/OutP" "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" -72.4155
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" -8.25444
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_2/Outn" 0.283976
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" 18.5725
+cap "comp_adv3_2/Outn" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 4.83
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" 14.505
+cap "comp_adv3_2/VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" -0.152479
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 445.585
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 35.937
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "comp_adv3_2/VP" 309.286
+cap "comp_adv3_di_0/bias" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -0.166216
+cap "comp_adv3_di_0/diffamp_element_1/a_890_840#" "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" 2.98582
+cap "comp_adv3_2/VP" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -550.828
+cap "comp_adv3_2/VP" "comp_adv3_di_0/Inn2" -7.42388
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/diffamp_element_1/a_890_840#" -2.02609
+cap "comp_adv3_2/OutP" "comp_adv3_2/VP" 6.96317
+cap "comp_adv3_2/VP" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 2.94415
+cap "comp_adv3_di_0/diffamp_element_0/a_890_840#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" 2.21919
+cap "comp_adv3_3/Outn" "comp_adv3_2/OutP" 1.94471
+cap "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -1.50661
+cap "comp_adv3_2/VP" "comp_adv3_2/VN" 533.843
+cap "comp_adv3_2/VP" "comp_adv3_2/Outn" 28.3017
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/VN" 0.283976
+cap "comp_adv3_2/VP" "comp_adv3_di_0/diffamp_element_0/a_890_840#" 2.21078
+cap "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/Outn" 137.622
+cap "comp_adv3_2/VP" "comp_adv3_2/OutP" 20.7056
+cap "comp_adv3_3/Outn" "comp_adv3_2/OutP" 141.544
+cap "comp_adv3_2/VP" "comp_adv3_3/Outn" 28.0892
+cap "comp_adv3_2/VN" "comp_adv3_2/VP" 411.188
+cap "comp_adv3_4/Outn" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" -55.4624
+cap "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" 0.112007
+cap "comp_adv3_4/Outn" "comp_adv3_3/OutP" 141.544
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/OutP" 27.8813
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_2/OutP" -0.745851
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" 304.075
+cap "comp_adv3_4/Outn" "comp_adv3_4/OutP" -0.118485
+cap "comp_adv3_3/OutP" "comp_adv3_4/Outn" 2.8934
+cap "comp_adv3_3/OutP" "comp_adv3_3/VP" -0.722784
+cap "comp_adv3_4/OutP" "comp_adv3_4/Outn" 2.84217e-14
+cap "comp_adv3_4/OutP" "comp_adv3_3/VP" 232.83
+cap "comp_adv3_4/Outn" "comp_adv3_3/VP" 170.846
+cap "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_3/VP" 1295.72
+cap "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "VP" 10.3651
+cap "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" 28.3188
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 21.6
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_1/VP" 42
+cap "comp_adv3_0/VP" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_1000#" 9.61602
+cap "comp_adv3_0/VP" "comp_adv3_1/Outn" 1.03012
+cap "comp_adv3_1/OutP" "comp_adv3_0/VP" 1.68172
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_0/VP" 42.4437
+cap "comp_adv3_0/OutP" "comp_adv3_0/VP" 1.05108
+cap "comp_adv3_0/VP" "comp_adv3_1/Outn" -0.480469
+cap "comp_adv3_0/VP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 6.60378
+cap "comp_adv3_0/VP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 42.3889
+cap "comp_adv3_0/Outn" "comp_adv3_0/VP" 0.415957
+cap "comp_adv3_0/VP" "comp_adv3_0/OutP" 0.84086
+cap "comp_adv3_0/VP" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 31.4948
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comp_adv3_0/VP" 0.83529
+cap "comp_adv3_0/VP" "comp_adv3_0/OutP" -0.899373
+cap "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_2/VP" -5.83776
+cap "comp_adv3_di_0/Outn" "comp_adv3_2/VP" -2.25
+cap "comp_adv3_2/Outn" "comp_adv3_2/VP" 1.07164
+cap "comp_adv3_2/OutP" "comp_adv3_2/VP" 1.7
+cap "comp_adv3_2/VP" "comp_adv3_2/Outn" -0.98008
+cap "comp_adv3_2/VP" "comp_adv3_3/Outn" 0.992545
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/Outn" -0.960938
+cap "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_3/OutP" 1.9125
+cap "comp_adv3_4/Outn" "comp_adv3_3/VP" 0.731698
+cap "comp_adv3_3/VP" "comp_adv3_4/OutP" 2.3375
+merge "comp_adv3_4/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" -218956 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -174349648 -107872 0 0 39924892 -32300 282960 -1520 0 0 4801136 -1336 0 0
+merge "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#"
+merge "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n415_n662#"
+merge "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n415_n662#" "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#"
+merge "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#"
+merge "comp_adv3_3/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#"
+merge "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#"
+merge "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n415_n662#" "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#"
+merge "comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#"
+merge "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n415_n712#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/VSUBS" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/VSUBS" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#"
+merge "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n415_n712#" "comp_to_logic_0/sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n175_n374#"
+merge "comp_to_logic_0/sky130_fd_pr__nfet_01v8_YT8PGU_0/a_n175_n374#" "comp_adv3_4/VSUBS"
+merge "comp_adv3_4/VSUBS" "li_4830_n1630#"
+merge "li_4830_n1630#" "comp_adv3_4/VN"
+merge "comp_adv3_4/VN" "comp_to_logic_0/sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n275_n374#"
+merge "comp_to_logic_0/sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n275_n374#" "li_4210_n1630#"
+merge "li_4210_n1630#" "li_3720_n1630#"
+merge "li_3720_n1630#" "comp_adv3_di_0/currm_comp_0/m1_286_170#"
+merge "comp_adv3_di_0/currm_comp_0/m1_286_170#" "li_3910_40#"
+merge "li_3910_40#" "comp_adv3_3/VSUBS"
+merge "comp_adv3_3/VSUBS" "comp_adv3_3/VN"
+merge "comp_adv3_3/VN" "comp_to_logic_0/li_1340_2210#"
+merge "comp_to_logic_0/li_1340_2210#" "li_2110_40#"
+merge "li_2110_40#" "comp_adv3_2/VSUBS"
+merge "comp_adv3_2/VSUBS" "comp_adv3_2/VN"
+merge "comp_adv3_2/VN" "li_310_10#"
+merge "li_310_10#" "comp_to_logic_0/VSUBS"
+merge "comp_to_logic_0/VSUBS" "comp_adv3_di_0/VSUBS"
+merge "comp_adv3_di_0/VSUBS" "comp_adv3_di_0/VN"
+merge "comp_adv3_di_0/VN" "comp_adv3_1/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#"
+merge "comp_adv3_1/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#" "li_n2050_40#"
+merge "li_n2050_40#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n642_n1562#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comp_adv3_0/VSUBS"
+merge "comp_adv3_0/VSUBS" "li_n3390_40#"
+merge "li_n3390_40#" "comp_adv3_0/VN"
+merge "comp_adv3_0/VN" "li_n5220_40#"
+merge "li_n5220_40#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n642_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n642_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS" "comp_adv3_1/VSUBS"
+merge "comp_adv3_1/VSUBS" "VSUBS"
+merge "VSUBS" "li_n8350_40#"
+merge "li_n8350_40#" "comp_adv3_1/VN"
+merge "comp_adv3_1/VN" "VN"
+merge "VN" "li_n7010_40#"
+merge "comp_adv3_di_0/Outp" "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -1670.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1952000 -476 7960000 -520 -10334200 0 0 0 0 0 0 0
+merge "comp_adv3_2/diffamp_element_nodi_0/a_890_330#" "comp_adv3_di_0/diffamp_element_0/m1_838_660#"
+merge "comp_adv3_di_0/diffamp_element_0/m1_838_660#" "m1_1270_1300#"
+merge "comp_adv3_4/VP" "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" -29375.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -32409200 -23780 27202400 -3960 -11713200 0 -10390124 0 -4333044 -3110 0 0
+merge "comp_adv3_2/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_4/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#"
+merge "comp_adv3_4/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#"
+merge "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1/a_n285_100#" "comp_adv3_3/VP"
+merge "comp_adv3_3/VP" "comp_adv3_2/VP"
+merge "comp_adv3_2/VP" "comp_adv3_di_0/VP"
+merge "comp_adv3_di_0/VP" "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_100#"
+merge "comp_adv3_di_0/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0/a_n285_100#" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#"
+merge "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_150#" "comp_adv3_0/VP"
+merge "comp_adv3_0/VP" "comp_adv3_1/VP"
+merge "comp_adv3_1/VP" "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#"
+merge "comp_adv3_1/sky130_fd_pr__res_xhigh_po_2p85_8K9944_1/a_n285_150#" "comp_to_logic_0/VP"
+merge "comp_to_logic_0/VP" "VP"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_1000#" -2677.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4054092 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_1000#" "m1_n9180_2590#"
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/m3_n650_n600#" "In" -692.301 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136000 -540 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" -8982.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13841440 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "m1_n7520_160#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" -8606.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13433144 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_1000#" "m1_n2870_2590#"
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/m3_n650_n600#" "comp_adv3_0/Outn" -339.196 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1848800 -760 3001600 -960 0 0 0 0 0 0
+merge "comp_adv3_0/Outn" "m2_n4630_2070#"
+merge "comp_adv3_3/OutP" "comp_adv3_4/diffamp_element_nodi_0/a_890_330#" 2479.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2230480 -496 4011440 -460 0 0 0 0 0 0 0 0
+merge "comp_adv3_4/diffamp_element_nodi_0/a_890_330#" "comp_adv3_3/diffamp_element_nodi_0/m1_1318_642#"
+merge "comp_adv3_3/diffamp_element_nodi_0/m1_1318_642#" "m1_4870_1260#"
+merge "comp_adv3_3/diffamp_element_nodi_0/a_890_330#" "comp_adv3_2/OutP" 1764.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3426560 -536 254400 -440 0 0 0 0 0 0 0 0
+merge "comp_adv3_2/OutP" "m1_3070_1270#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" -10975.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -16937820 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "m1_n3200_150#"
+merge "comp_adv3_4/OutP" "comp_adv3_4/diffamp_element_nodi_0/m1_1126_642#" 5139.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5334520 -400 3746400 -600 -292320 0 0 0 0 0 0 0
+merge "comp_adv3_4/diffamp_element_nodi_0/m1_1126_642#" "comp_to_logic_0/In_p"
+merge "comp_to_logic_0/In_p" "m1_1660_n1090#"
+merge "comp_adv3_2/diffamp_element_nodi_1/a_890_330#" "comp_adv3_di_0/Outn" -10863.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1884664 -220 -11568500 -440 -13724500 0 0 0 0 0 0 0
+merge "comp_adv3_di_0/Outn" "m1_280_1560#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_1000#" -4564.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7050800 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_1000#" "m1_n7830_2600#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" -6623.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -10281100 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_n1432#" "m1_n9500_160#"
+merge "comp_adv3_0/diffamp_element_nodi_1/a_890_330#" "comp_adv3_1/Outn" -9546.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2679584 -240 -8997660 -700 -11112480 0 0 0 0 0 0 0
+merge "comp_adv3_1/Outn" "m1_n5160_1430#"
+merge "comp_adv3_4/Outn" "comp_to_logic_0/In_n" -11559.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2382400 -140 -4522240 -600 -11052120 0 0 0 0 0 0 0
+merge "comp_to_logic_0/In_n" "m1_1070_n1030#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_442_1000#" "InRef" -1619.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2480000 -942 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" -8917.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13841440 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_n1432#" "m1_n8150_160#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n512_1000#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -37860.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4962680 -2088 0 0 0 0 223970 -1244 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m1_n8540_2590#"
+merge "m1_n8540_2590#" "comp_adv3_1/diffamp_element_nodi_0/a_890_330#"
+merge "comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m1_n5240_1470#"
+merge "comp_adv3_1/OutP" "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" 12072.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3022880 -496 25108080 -1000 0 0 0 0 0 0 0 0
+merge "comp_adv3_0/diffamp_element_nodi_0/a_890_330#" "comp_adv3_1/diffamp_element_nodi_0/m1_1126_642#"
+merge "comp_adv3_1/diffamp_element_nodi_0/m1_1126_642#" "m1_n4250_1290#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_442_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" 2521.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4037572 -1548 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "m1_n2560_340#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_1000#" "comp_adv3_0/OutP" -2301.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1752000 -1182 -2020200 -580 0 0 0 0 0 0 0 0
+merge "comp_adv3_0/OutP" "comp_adv3_di_0/diffamp_element_1/a_890_840#"
+merge "comp_adv3_di_0/diffamp_element_1/a_890_840#" "m1_n3200_2600#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n512_1000#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/c1_n550_n500#" -7246.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1837528 -594 -2985600 0 -12704850 0 -4292773 -640 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_1/c1_n550_n500#" "comp_adv3_1/diffamp_element_nodi_1/a_890_330#"
+merge "comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "m1_n9490_2240#"
+merge "comp_adv3_3/diffamp_element_nodi_1/a_890_330#" "comp_adv3_2/Outn" -10060.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1167684 -220 -11542440 -440 -12373520 0 0 0 0 0 0 0
+merge "comp_adv3_2/Outn" "m1_2150_1410#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" -5127.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7987060 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_124_n1432#" "m1_n8860_160#"
+merge "comp_adv3_4/diffamp_element_nodi_1/a_890_330#" "comp_adv3_3/Outn" -1947.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2269696 -300 -511660 -460 -7548560 0 0 0 0 0 0 0
+merge "comp_adv3_3/Outn" "m1_3950_1370#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_442_1000#" "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" -6493.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4933960 -1206 -4940280 0 -5998110 0 2805200 -680 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comp_adv3_di_0/diffamp_element_0/a_890_840#"
+merge "comp_adv3_di_0/diffamp_element_0/a_890_840#" "m1_n2250_2600#"
diff --git a/mag/comp/comparator.mag b/mag/comp/comparator.mag
new file mode 100644
index 0000000..332b1ce
--- /dev/null
+++ b/mag/comp/comparator.mag
@@ -0,0 +1,843 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654178388
+<< locali >>
+rect -8350 40 -8250 3160
+rect -7010 40 -6890 3080
+rect -5220 40 -5090 3070
+rect -3390 40 -3300 3070
+rect -2050 2990 -1960 3070
+rect -2050 1600 -1660 2990
+rect -2050 880 -1960 1600
+rect -2050 40 -1820 880
+rect 310 10 420 3000
+rect 2110 40 2220 3080
+rect 3910 40 4020 3080
+rect 3720 -1630 3910 -880
+rect 4210 -1630 4400 -880
+rect 4830 -1630 5110 -890
+<< viali >>
+rect -9010 -10 -8780 80
+rect -7730 -10 -7500 80
+rect -2810 -20 -2610 70
+<< metal1 >>
+rect -6790 3490 -3520 3520
+rect -6790 3170 -6300 3490
+rect -5830 3170 -4490 3490
+rect -4020 3170 -3520 3490
+rect -9490 2280 -9410 2720
+rect -9180 2590 -8760 3040
+rect -8540 2590 -8270 3040
+rect -7990 2590 -7980 3040
+rect -7830 2600 -7430 3030
+rect -7260 2600 -7050 3030
+rect -6790 2520 -3520 3170
+rect -1540 3480 5630 3520
+rect -1540 3160 -910 3480
+rect -440 3160 1010 3480
+rect 1480 3160 2820 3480
+rect 3290 3160 4640 3480
+rect 5110 3160 5630 3480
+rect -3200 2600 -3190 3030
+rect -3050 2600 -3040 3030
+rect -2870 2590 -2470 3040
+rect -2250 2600 -2240 3030
+rect -2150 2600 -2140 3030
+rect -1540 2440 5630 3160
+rect -8130 2280 -8120 2310
+rect -9490 2240 -8120 2280
+rect -8130 2230 -8120 2240
+rect -8060 2230 -8050 2310
+rect -5200 1830 -5190 1850
+rect -7060 1500 -6880 1510
+rect -7060 1400 -7040 1500
+rect -6930 1400 -6880 1500
+rect -5240 1470 -5190 1830
+rect -5100 1770 -5090 1850
+rect -1910 1610 -1900 1710
+rect -1810 1680 -1800 1710
+rect -1810 1610 -1470 1680
+rect -720 1610 -710 1700
+rect -560 1690 -550 1700
+rect -560 1610 -270 1690
+rect -5230 1450 -5190 1470
+rect -5160 1430 -5150 1580
+rect -5090 1430 -5050 1580
+rect -7060 1390 -6880 1400
+rect -4250 1290 -4240 1500
+rect -4170 1290 -4160 1500
+rect -1540 1470 -1470 1610
+rect -360 1480 -270 1610
+rect 280 1560 290 1640
+rect 420 1560 460 1640
+rect 410 1440 460 1560
+rect 1270 1300 1280 1500
+rect 1340 1300 1350 1500
+rect 2150 1410 2160 1610
+rect 2220 1410 2230 1610
+rect 3070 1270 3080 1500
+rect 3140 1270 3150 1500
+rect 3950 1370 3960 1580
+rect 4020 1370 4030 1580
+rect 4870 1260 4880 1470
+rect 4940 1260 4950 1470
+rect -9500 160 -9080 610
+rect -8860 160 -8450 610
+rect -8150 160 -7740 610
+rect -7520 160 -7110 610
+rect -3200 150 -2790 610
+rect -2560 340 -2150 610
+rect -2360 150 -2150 340
+rect -9022 80 -8768 86
+rect -9030 -10 -9020 80
+rect -8780 -10 -8768 80
+rect -9022 -16 -8768 -10
+rect -7742 80 -7488 86
+rect -7742 -10 -7730 80
+rect -7500 -10 -7488 80
+rect -7742 -16 -7488 -10
+rect -2822 70 -2598 76
+rect -2822 -20 -2810 70
+rect -2610 -20 -2598 70
+rect -2822 -26 -2598 -20
+rect 1180 -970 1190 -940
+rect 1070 -1030 1190 -970
+rect 1180 -1040 1190 -1030
+rect 1290 -1040 1300 -940
+rect 1660 -1090 1670 -960
+rect 1750 -1090 1760 -960
+<< via1 >>
+rect -6300 3170 -5830 3490
+rect -4490 3170 -4020 3490
+rect -8270 2590 -7990 3040
+rect -910 3160 -440 3480
+rect 1010 3160 1480 3480
+rect 2820 3160 3290 3480
+rect 4640 3160 5110 3480
+rect -3190 2600 -3050 3030
+rect -2240 2600 -2150 3030
+rect -8120 2230 -8060 2310
+rect -7040 1400 -6930 1500
+rect -5190 1770 -5100 1850
+rect -1900 1610 -1810 1710
+rect -710 1610 -560 1700
+rect -5150 1430 -5090 1580
+rect -4240 1290 -4170 1500
+rect 290 1560 420 1640
+rect 1280 1300 1340 1500
+rect 2160 1410 2220 1610
+rect 3080 1270 3140 1500
+rect 3960 1370 4020 1580
+rect 4880 1260 4940 1470
+rect -9020 -10 -9010 80
+rect -9010 -10 -8790 80
+rect -7730 -10 -7500 80
+rect -2810 -20 -2610 70
+rect 1190 -1040 1290 -940
+rect 1670 -1090 1750 -960
+<< metal2 >>
+rect -6300 3490 -5830 3500
+rect -6300 3160 -5830 3170
+rect -4490 3490 -4020 3500
+rect -4490 3160 -4020 3170
+rect -910 3480 -440 3490
+rect -910 3150 -440 3160
+rect 1010 3480 1480 3490
+rect 1010 3150 1480 3160
+rect 2820 3480 3290 3490
+rect 2820 3150 3290 3160
+rect 4640 3480 5110 3490
+rect 4640 3150 5110 3160
+rect -8270 3040 -7990 3050
+rect -8270 2580 -7990 2590
+rect -3190 3030 -3050 3040
+rect -8120 2310 -8060 2320
+rect -8120 2220 -8060 2230
+rect -4630 2220 -4410 2230
+rect -3190 2220 -3050 2600
+rect -2240 3030 -2150 3040
+rect -1900 2950 -1770 2960
+rect -2150 2720 -1900 2950
+rect -1900 2710 -1770 2720
+rect -2240 2590 -2150 2600
+rect -3620 2080 -1810 2220
+rect -4630 2070 -4410 2080
+rect -5190 1850 -5100 1860
+rect -5190 1760 -5100 1770
+rect -1900 1710 -1810 2080
+rect -6370 1620 -6200 1630
+rect -7040 1500 -6930 1510
+rect -1900 1600 -1810 1610
+rect -710 1820 -600 1830
+rect 4570 1720 4710 1730
+rect -600 1700 -560 1710
+rect -710 1600 -560 1610
+rect 290 1640 420 1650
+rect -5150 1580 -5090 1590
+rect 3900 1630 4020 1640
+rect 2160 1610 2220 1620
+rect 2100 1600 2160 1610
+rect -6370 1450 -6200 1460
+rect -5210 1570 -5150 1580
+rect -1050 1570 -950 1580
+rect -5210 1450 -5150 1460
+rect -5150 1420 -5090 1430
+rect -4330 1500 -4170 1510
+rect -7040 1390 -6930 1400
+rect -5620 1390 -5270 1400
+rect -1050 1460 -950 1470
+rect 1020 1590 1120 1600
+rect 1020 1480 1120 1490
+rect 1280 1500 1340 1510
+rect 290 1450 420 1460
+rect 1180 1420 1280 1430
+rect 2790 1580 2910 1590
+rect 2790 1480 2910 1490
+rect 3080 1500 3140 1510
+rect 2100 1470 2160 1480
+rect -4330 1280 -4170 1290
+rect 90 1390 230 1400
+rect 1940 1410 2040 1420
+rect 2160 1400 2220 1410
+rect 1940 1300 2040 1310
+rect 2980 1360 3080 1370
+rect 4570 1570 4710 1580
+rect 3900 1480 3960 1490
+rect 4880 1470 4940 1480
+rect 1180 1290 1340 1300
+rect 90 1280 230 1290
+rect -5620 1260 -5270 1270
+rect 2980 1260 3140 1270
+rect 3720 1360 3840 1370
+rect 3960 1360 4020 1370
+rect 4820 1410 4880 1420
+rect 3720 1260 3840 1270
+rect 5210 1420 5350 1430
+rect 5210 1270 5350 1280
+rect 4820 1260 4880 1270
+rect 4880 1250 4940 1260
+rect 310 350 640 360
+rect -6900 310 310 350
+rect -6900 100 -6840 310
+rect -9020 80 -8790 90
+rect -7730 80 -7500 90
+rect -6910 80 -6840 100
+rect -9030 -10 -9020 80
+rect -8790 -10 -7730 80
+rect -7500 -10 -6840 80
+rect -9030 -70 -6840 -10
+rect -6360 300 -2580 310
+rect -6360 -70 -5320 300
+rect -9030 -80 -5320 -70
+rect -4840 70 -2580 300
+rect -4840 -20 -2810 70
+rect -2610 -20 -2580 70
+rect -4840 -80 -2580 -20
+rect -9030 -90 -2580 -80
+rect -6910 -100 -2580 -90
+rect -2100 40 -270 310
+rect 60 40 310 310
+rect 640 340 1260 350
+rect 1670 340 5740 350
+rect 640 310 5740 340
+rect 640 40 2020 310
+rect 2350 40 3810 310
+rect 4140 40 5410 310
+rect -2100 30 60 40
+rect 310 30 640 40
+rect 2020 30 2350 40
+rect 3810 30 4140 40
+rect 5410 30 5740 40
+rect -2100 -100 -40 30
+rect 3000 -20 3280 -10
+rect -6910 -940 -40 -100
+rect 880 -30 1110 -20
+rect 880 -240 1110 -230
+rect 1360 -30 1590 -20
+rect 1360 -240 1590 -230
+rect 3000 -270 3280 -260
+rect 4910 -30 5190 -20
+rect 4910 -280 5190 -270
+rect 1190 -340 1290 -330
+rect 1190 -940 1290 -460
+rect 1660 -530 1750 -520
+rect 1660 -960 1750 -650
+rect 1660 -1030 1670 -960
+rect 1190 -1050 1290 -1040
+rect 1670 -1100 1750 -1090
+rect 5090 -1630 5520 -1330
+rect 2990 -2010 5520 -1630
+rect -110 -2020 320 -2010
+rect 2790 -2020 5520 -2010
+rect 320 -2440 1020 -2140
+rect -110 -2470 320 -2460
+rect 3220 -2310 5090 -2020
+rect 2790 -2470 3220 -2460
+rect 5090 -2470 5520 -2460
+<< via2 >>
+rect -6300 3170 -5830 3490
+rect -4490 3170 -4020 3490
+rect -910 3160 -440 3480
+rect 1010 3160 1480 3480
+rect 2820 3160 3290 3480
+rect 4640 3160 5110 3480
+rect -8270 2590 -7990 3040
+rect -8120 2230 -8060 2310
+rect -1900 2720 -1770 2950
+rect -4630 2080 -4410 2220
+rect -5190 1770 -5100 1850
+rect -7040 1400 -6930 1500
+rect -6370 1460 -6200 1620
+rect -710 1700 -600 1820
+rect -5210 1460 -5150 1570
+rect -5150 1460 -5090 1570
+rect -5620 1270 -5270 1390
+rect -4330 1290 -4240 1500
+rect -4240 1290 -4170 1500
+rect -1050 1470 -950 1570
+rect 290 1560 420 1580
+rect 290 1460 420 1560
+rect 1020 1490 1120 1590
+rect 2100 1480 2160 1600
+rect 2160 1480 2220 1600
+rect 2790 1490 2910 1580
+rect 3900 1580 4020 1630
+rect 90 1290 230 1390
+rect 1180 1300 1280 1420
+rect 1280 1300 1340 1420
+rect 1940 1310 2040 1410
+rect 3900 1490 3960 1580
+rect 3960 1490 4020 1580
+rect 4570 1580 4710 1720
+rect 2980 1270 3080 1360
+rect 3080 1270 3140 1360
+rect 3720 1270 3840 1360
+rect 4820 1270 4880 1410
+rect 4880 1270 4940 1410
+rect 5210 1280 5350 1420
+rect -6840 -70 -6360 310
+rect -5320 -80 -4840 300
+rect -2580 -100 -2100 310
+rect -270 40 60 310
+rect 310 40 640 350
+rect 2020 40 2350 310
+rect 3810 40 4140 310
+rect 5410 40 5740 310
+rect 880 -230 1110 -30
+rect 1360 -230 1590 -30
+rect 3000 -260 3280 -20
+rect 4910 -270 5190 -30
+rect 1190 -460 1290 -340
+rect 1660 -650 1750 -530
+rect -110 -2460 320 -2020
+rect 2790 -2460 3220 -2020
+rect 5090 -2460 5520 -2020
+<< metal3 >>
+rect -6310 3490 -5820 3495
+rect -6310 3170 -6300 3490
+rect -5830 3170 -5820 3490
+rect -6310 3165 -5820 3170
+rect -4500 3490 -4010 3495
+rect -4500 3170 -4490 3490
+rect -4020 3170 -4010 3490
+rect -4500 3165 -4010 3170
+rect -920 3480 -430 3485
+rect -920 3160 -910 3480
+rect -440 3160 -430 3480
+rect -9490 2930 -9300 3160
+rect -920 3155 -430 3160
+rect 1000 3480 1490 3485
+rect 1000 3160 1010 3480
+rect 1480 3160 1490 3480
+rect 1000 3155 1490 3160
+rect 2810 3480 3300 3485
+rect 2810 3160 2820 3480
+rect 3290 3160 3300 3480
+rect 2810 3155 3300 3160
+rect 4630 3480 5120 3485
+rect 4630 3160 4640 3480
+rect 5110 3160 5120 3480
+rect 4630 3155 5120 3160
+rect -8280 3040 -7980 3045
+rect -8280 2590 -8270 3040
+rect -7990 2590 -7980 3040
+rect -1910 2950 -1760 2955
+rect -1910 2720 -1900 2950
+rect -1770 2720 -1760 2950
+rect -1910 2715 -1760 2720
+rect -8280 2585 -7980 2590
+rect -1900 2490 -1770 2715
+rect -1900 2370 -600 2490
+rect -8200 2190 -8190 2360
+rect -8070 2315 -8060 2360
+rect -8070 2310 -8050 2315
+rect -8060 2280 -8050 2310
+rect -8060 2230 -6960 2280
+rect -8070 2220 -6960 2230
+rect -8070 2190 -8060 2220
+rect -7030 1505 -6960 2220
+rect -4640 2220 -4400 2225
+rect -4640 2080 -4630 2220
+rect -4410 2080 -2980 2220
+rect -4640 2075 -4400 2080
+rect -5200 1850 -5090 1855
+rect -5200 1770 -5190 1850
+rect -5080 1770 -5070 1850
+rect -710 1825 -600 2370
+rect -720 1820 -590 1825
+rect -5200 1765 -5090 1770
+rect -720 1700 -710 1820
+rect -600 1700 -590 1820
+rect -720 1695 -590 1700
+rect 4560 1720 4720 1725
+rect 3890 1630 4030 1635
+rect -6380 1620 -6190 1625
+rect -7050 1500 -6920 1505
+rect -7050 1400 -7040 1500
+rect -6930 1400 -6920 1500
+rect -6380 1460 -6370 1620
+rect -6200 1570 -6190 1620
+rect 2090 1600 2230 1605
+rect 1010 1590 1130 1595
+rect 280 1580 430 1585
+rect -5220 1570 -5080 1575
+rect -1060 1570 -940 1575
+rect -6200 1490 -5210 1570
+rect -6200 1460 -6190 1490
+rect -6380 1455 -6190 1460
+rect -5220 1460 -5210 1490
+rect -5090 1490 -5050 1570
+rect -4340 1500 -4160 1505
+rect -5090 1460 -5080 1490
+rect -5220 1455 -5080 1460
+rect -7050 1395 -6920 1400
+rect -5630 1390 -5260 1395
+rect -4340 1390 -4330 1500
+rect -5630 1270 -5620 1390
+rect -5270 1310 -4330 1390
+rect -5270 1270 -5260 1310
+rect -4340 1290 -4330 1310
+rect -4170 1390 -4160 1500
+rect -1060 1470 -1050 1570
+rect -950 1560 -940 1570
+rect 280 1560 290 1580
+rect -950 1480 290 1560
+rect -950 1470 -940 1480
+rect -1060 1465 -940 1470
+rect 280 1460 290 1480
+rect 420 1560 430 1580
+rect 420 1480 440 1560
+rect 1010 1490 1020 1590
+rect 1120 1580 1130 1590
+rect 2090 1580 2100 1600
+rect 1120 1490 2100 1580
+rect 1010 1485 1130 1490
+rect 2090 1480 2100 1490
+rect 2220 1480 2230 1600
+rect 2780 1580 2920 1585
+rect 3890 1580 3900 1630
+rect 2780 1490 2790 1580
+rect 2910 1490 3900 1580
+rect 4020 1580 4030 1630
+rect 4560 1580 4570 1720
+rect 4710 1700 4720 1720
+rect 4710 1600 5140 1700
+rect 4710 1580 4720 1600
+rect 4020 1490 4040 1580
+rect 4560 1575 4720 1580
+rect 2780 1485 2920 1490
+rect 3890 1485 4030 1490
+rect 420 1460 430 1480
+rect 2090 1475 2230 1480
+rect 280 1455 430 1460
+rect 1170 1420 1350 1425
+rect 80 1390 240 1395
+rect -4170 1310 -4140 1390
+rect -4170 1290 -4160 1310
+rect -4340 1285 -4160 1290
+rect 80 1290 90 1390
+rect 230 1380 240 1390
+rect 1170 1380 1180 1420
+rect 230 1300 1180 1380
+rect 1340 1380 1350 1420
+rect 1930 1410 2050 1415
+rect 1340 1300 1360 1380
+rect 1930 1310 1940 1410
+rect 2040 1360 2050 1410
+rect 4810 1410 4950 1415
+rect 2970 1360 3150 1365
+rect 3710 1360 3850 1365
+rect 4810 1360 4820 1410
+rect 2040 1310 2980 1360
+rect 1930 1305 2980 1310
+rect 230 1290 240 1300
+rect 1170 1295 1350 1300
+rect 80 1285 240 1290
+rect 1960 1270 2980 1305
+rect 3140 1270 3160 1360
+rect 3710 1270 3720 1360
+rect 3840 1270 4820 1360
+rect 4940 1360 4950 1410
+rect 4940 1270 4970 1360
+rect -5630 1265 -5260 1270
+rect 2970 1265 3150 1270
+rect 3710 1265 3850 1270
+rect 4810 1265 4950 1270
+rect -6900 315 -2240 350
+rect -6900 310 -2090 315
+rect -6900 100 -6840 310
+rect -6910 -70 -6840 100
+rect -6360 300 -2580 310
+rect -6360 -70 -5320 300
+rect -6910 -80 -5320 -70
+rect -4840 -80 -2580 300
+rect -6910 -100 -2580 -80
+rect -2100 100 -2090 310
+rect -1990 100 -1820 880
+rect 5050 670 5140 1600
+rect 1190 570 5140 670
+rect 5200 1420 5360 1425
+rect 5200 1280 5210 1420
+rect 5350 1280 5360 1420
+rect 5200 1275 5360 1280
+rect 300 350 650 355
+rect -280 310 70 315
+rect -280 100 -270 310
+rect -2100 40 -270 100
+rect 60 40 70 310
+rect -2100 35 70 40
+rect 300 40 310 350
+rect 640 40 650 350
+rect 300 35 650 40
+rect -2100 -100 -40 35
+rect -6910 -940 -40 -100
+rect 870 -30 1120 -25
+rect 870 -230 880 -30
+rect 1110 -230 1120 -30
+rect 870 -235 1120 -230
+rect 1190 -335 1290 570
+rect 5200 500 5290 1275
+rect 1660 400 5290 500
+rect 1350 -30 1600 -25
+rect 1350 -230 1360 -30
+rect 1590 -230 1600 -30
+rect 1350 -235 1600 -230
+rect 1180 -340 1300 -335
+rect 1180 -460 1190 -340
+rect 1290 -460 1300 -340
+rect 1180 -465 1300 -460
+rect 1660 -525 1760 400
+rect 2010 310 2360 315
+rect 2010 40 2020 310
+rect 2350 40 2360 310
+rect 2010 35 2360 40
+rect 3800 310 4150 315
+rect 3800 40 3810 310
+rect 4140 40 4150 310
+rect 3800 35 4150 40
+rect 5400 310 5750 315
+rect 5400 40 5410 310
+rect 5740 40 5750 310
+rect 5400 35 5750 40
+rect 2990 -20 3290 -15
+rect 2990 -260 3000 -20
+rect 3280 -260 3290 -20
+rect 2990 -265 3290 -260
+rect 4900 -30 5200 -25
+rect 4900 -270 4910 -30
+rect 5190 -270 5200 -30
+rect 4900 -275 5200 -270
+rect 1650 -530 1760 -525
+rect 1650 -650 1660 -530
+rect 1750 -650 1760 -530
+rect 1650 -655 1760 -650
+rect -120 -2020 330 -2015
+rect -120 -2460 -110 -2020
+rect 320 -2460 330 -2020
+rect -120 -2465 330 -2460
+rect 2780 -2020 3230 -2015
+rect 2780 -2460 2790 -2020
+rect 3220 -2460 3230 -2020
+rect 2780 -2465 3230 -2460
+rect 5080 -2020 5530 -2015
+rect 5080 -2460 5090 -2020
+rect 5520 -2460 5530 -2020
+rect 5080 -2465 5530 -2460
+<< via3 >>
+rect -6300 3170 -5830 3490
+rect -4490 3170 -4020 3490
+rect -910 3160 -440 3480
+rect 1010 3160 1480 3480
+rect 2820 3160 3290 3480
+rect 4640 3160 5110 3480
+rect -8270 2590 -7990 3040
+rect -1900 2720 -1770 2950
+rect -8190 2310 -8070 2360
+rect -8190 2230 -8120 2310
+rect -8120 2230 -8070 2310
+rect -8190 2190 -8070 2230
+rect -5190 1770 -5100 1850
+rect -5100 1770 -5080 1850
+rect -2580 -100 -2100 310
+rect -270 40 60 310
+rect 310 40 640 350
+rect 880 -230 1110 -30
+rect 1360 -230 1590 -30
+rect 2020 40 2350 310
+rect 3810 40 4140 310
+rect 5410 40 5740 310
+rect 3000 -260 3280 -20
+rect 4910 -270 5190 -30
+rect -110 -2460 320 -2020
+rect 2790 -2460 3220 -2020
+rect 5090 -2460 5520 -2020
+<< metal4 >>
+rect -6301 3490 -5829 3491
+rect -6301 3170 -6300 3490
+rect -5830 3170 -5829 3490
+rect -6301 3169 -5829 3170
+rect -4491 3490 -4019 3491
+rect -4491 3170 -4490 3490
+rect -4020 3170 -4019 3490
+rect -4491 3169 -4019 3170
+rect -911 3480 -439 3481
+rect -911 3160 -910 3480
+rect -440 3160 -439 3480
+rect -911 3159 -439 3160
+rect 1009 3480 1481 3481
+rect 1009 3160 1010 3480
+rect 1480 3160 1481 3480
+rect 1009 3159 1481 3160
+rect 2819 3480 3291 3481
+rect 2819 3160 2820 3480
+rect 3290 3160 3291 3480
+rect 2819 3159 3291 3160
+rect 4630 3480 5190 3490
+rect 4630 3160 4640 3480
+rect 5110 3160 5190 3480
+rect -8270 3041 -7590 3050
+rect -8271 3040 -7590 3041
+rect -8271 2590 -8270 3040
+rect -7990 2590 -7590 3040
+rect -1901 2950 -1769 2951
+rect -2270 2720 -1900 2950
+rect -1770 2720 -1769 2950
+rect -1901 2719 -1769 2720
+rect -8271 2589 -7590 2590
+rect -8270 2580 -7590 2589
+rect -8191 2360 -8069 2361
+rect -8650 2190 -8190 2360
+rect -8070 2190 -8069 2360
+rect -8191 2189 -8069 2190
+rect -7960 1650 -7590 2580
+rect -5200 1850 -5070 1860
+rect -5200 1770 -5190 1850
+rect -5080 1770 -5070 1850
+rect -5200 1670 -5070 1770
+rect 309 350 641 351
+rect -2581 310 -2099 311
+rect -2581 -100 -2580 310
+rect -2100 -100 -2099 310
+rect -271 310 61 311
+rect -271 40 -270 310
+rect 60 40 61 310
+rect -271 39 61 40
+rect 309 40 310 350
+rect 640 40 641 350
+rect 309 39 641 40
+rect 2019 40 2020 311
+rect 2350 40 2351 311
+rect 2019 39 2351 40
+rect 3809 40 3810 311
+rect 4140 40 4141 311
+rect 3809 39 4141 40
+rect 2999 -20 3281 -19
+rect 1110 -29 1390 -20
+rect -2581 -101 -2099 -100
+rect 879 -30 1591 -29
+rect 879 -230 880 -30
+rect 1110 -230 1360 -30
+rect 1590 -230 1591 -30
+rect 879 -231 1591 -230
+rect 1110 -350 1390 -231
+rect 2999 -260 3000 -20
+rect 3280 -260 3281 -20
+rect 2999 -261 3281 -260
+rect 4630 -29 5190 3160
+rect 5409 40 5410 311
+rect 5740 40 5741 311
+rect 5409 39 5741 40
+rect 4630 -30 5191 -29
+rect 3000 -350 3280 -261
+rect 4630 -270 4910 -30
+rect 5190 -270 5191 -30
+rect 4630 -271 5191 -270
+rect 4630 -350 5190 -271
+rect 4630 -670 4910 -350
+rect -111 -2020 321 -2019
+rect -111 -2460 -110 -2020
+rect 320 -2460 321 -2020
+rect -111 -2461 321 -2460
+rect 2789 -2020 3221 -2019
+rect 2789 -2460 2790 -2020
+rect 3220 -2460 3221 -2020
+rect 2789 -2461 3221 -2460
+rect 5089 -2020 5521 -2019
+rect 5089 -2460 5090 -2020
+rect 5520 -2460 5521 -2020
+rect 5089 -2461 5521 -2460
+<< via4 >>
+rect -6300 3170 -5830 3490
+rect -4490 3170 -4020 3490
+rect -910 3160 -440 3480
+rect 1010 3160 1480 3480
+rect 2820 3160 3290 3480
+rect 4640 3160 5110 3480
+rect -2580 -100 -2100 310
+rect -270 40 60 310
+rect 310 40 640 350
+rect 2020 310 2350 350
+rect 2020 40 2350 310
+rect 3810 310 4140 350
+rect 3810 40 4140 310
+rect 5410 310 5740 350
+rect 5410 40 5740 310
+rect 1110 -670 1390 -350
+rect 3000 -670 3280 -350
+rect 4910 -670 5190 -350
+rect -110 -2460 320 -2020
+rect 2790 -2460 3220 -2020
+rect 5090 -2460 5520 -2020
+<< metal5 >>
+rect -9650 3490 5750 3520
+rect -9650 3190 -6300 3490
+rect -6324 3170 -6300 3190
+rect -5830 3190 -4490 3490
+rect -5830 3170 -5806 3190
+rect -6324 3146 -5806 3170
+rect -4514 3170 -4490 3190
+rect -4020 3480 5750 3490
+rect -4020 3190 -910 3480
+rect -4020 3170 -3996 3190
+rect -4514 3146 -3996 3170
+rect -934 3160 -910 3190
+rect -440 3190 1010 3480
+rect -440 3160 -416 3190
+rect -934 3136 -416 3160
+rect 986 3160 1010 3190
+rect 1480 3190 2820 3480
+rect 1480 3160 1504 3190
+rect 986 3136 1504 3160
+rect 2796 3160 2820 3190
+rect 3290 3190 4640 3480
+rect 3290 3160 3314 3190
+rect 2796 3136 3314 3160
+rect 4616 3160 4640 3190
+rect 5110 3190 5750 3480
+rect 5110 3160 5134 3190
+rect 4616 3136 5134 3160
+rect -3200 350 1260 380
+rect -3200 310 310 350
+rect -3200 -100 -2580 310
+rect -2100 40 -270 310
+rect 60 40 310 310
+rect 640 340 1260 350
+rect 1670 350 5770 380
+rect 1670 340 2020 350
+rect 640 40 2020 340
+rect 2350 40 3810 350
+rect 4140 40 5410 350
+rect 5740 40 5770 350
+rect -2100 20 5770 40
+rect -2100 16 664 20
+rect 1996 16 2374 20
+rect 3786 16 4164 20
+rect 5386 16 5764 20
+rect -2100 -100 310 16
+rect -2604 -124 -2076 -100
+rect -210 -1996 310 -100
+rect 1086 -330 1414 -326
+rect 2976 -330 3304 -326
+rect 4886 -330 5214 -326
+rect 630 -350 5770 -330
+rect 630 -670 1110 -350
+rect 1390 -670 3000 -350
+rect 3280 -670 4910 -350
+rect 5190 -670 5770 -350
+rect 630 -690 5770 -670
+rect 1086 -694 1414 -690
+rect 2976 -694 3304 -690
+rect 4886 -694 5214 -690
+rect -210 -2020 344 -1996
+rect 2766 -2020 3244 -1996
+rect 5066 -2020 5544 -1996
+rect -210 -2460 -110 -2020
+rect 320 -2460 2790 -2020
+rect 3220 -2460 5090 -2020
+rect 5520 -2460 5770 -2020
+rect -134 -2484 344 -2460
+rect 2766 -2484 3244 -2460
+rect 5066 -2484 5544 -2460
+use comp_adv3  comp_adv3_0
+timestamp 1654166568
+transform 1 0 -5750 0 1 910
+box 600 -910 2410 2206
+use comp_adv3  comp_adv3_1
+timestamp 1654166568
+transform 1 0 -7550 0 1 910
+box 600 -910 2410 2206
+use comp_adv3  comp_adv3_2
+timestamp 1654166568
+transform 1 0 -240 0 1 910
+box 600 -910 2410 2206
+use comp_adv3  comp_adv3_3
+timestamp 1654166568
+transform 1 0 1560 0 1 910
+box 600 -910 2410 2206
+use comp_adv3  comp_adv3_4
+timestamp 1654166568
+transform 1 0 3360 0 1 910
+box 600 -910 2410 2206
+use comp_adv3_di  comp_adv3_di_0
+timestamp 1654166568
+transform 1 0 -2310 0 1 930
+box 300 -930 2682 2106
+use comp_to_logic  comp_to_logic_0
+timestamp 1654174923
+transform 1 0 -570 0 1 -3920
+box 890 1440 6340 3910
+use sky130_fd_pr__cap_mim_m3_1_H9XL9H  sky130_fd_pr__cap_mim_m3_1_H9XL9H_0
+timestamp 1654166568
+transform -1 0 -2671 0 -1 2500
+box -650 -600 649 600
+use sky130_fd_pr__cap_mim_m3_1_H9XL9H  sky130_fd_pr__cap_mim_m3_1_H9XL9H_1
+timestamp 1654166568
+transform -1 0 -9011 0 -1 2410
+box -650 -600 649 600
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW  sky130_fd_pr__cap_mim_m3_2_MJMGTW_0
+timestamp 1654166568
+transform -1 0 -6247 0 -1 -379
+box -3351 -2101 3373 2101
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL  sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0
+timestamp 1654166568
+transform 1 0 -2672 0 1 1598
+box -678 -1598 678 1598
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL  sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1
+timestamp 1654166568
+transform 1 0 -8972 0 1 1598
+box -678 -1598 678 1598
+use sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL  sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2
+timestamp 1654166568
+transform 1 0 -7632 0 1 1598
+box -678 -1598 678 1598
+<< labels >>
+rlabel metal1 -7260 2600 -7050 3030 1 InRef
+rlabel metal5 -140 -1730 220 -1310 1 VN
+rlabel metal5 -9180 3220 -8810 3470 1 VP
+rlabel space 5150 1870 5430 2100 1 OutP
+rlabel space 4270 1890 4550 2120 1 OutN
+rlabel metal3 -9490 3070 -9300 3160 1 In
+rlabel space -4610 1890 -4450 2000 1 Outn_20db
+rlabel space -3670 1890 -3560 2010 1 Outp_20db
+<< end >>
diff --git a/mag/comp/comparator.spice b/mag/comp/comparator.spice
new file mode 100644
index 0000000..cc9d94c
--- /dev/null
+++ b/mag/comp/comparator.spice
@@ -0,0 +1,241 @@
+* SPICE3 file created from comparator.ext - technology: sky130B
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL a_n642_n1562# a_442_1000# a_n194_n1432#
++ a_n194_1000# a_442_n1432# a_n512_n1432# a_124_n1432# a_n512_1000# a_124_1000#
+X0 a_n512_n1432# a_n512_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_124_n1432# a_124_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X2 a_n194_n1432# a_n194_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X3 a_442_n1432# a_442_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_MJMGTW c2_n3251_n2000# m4_n3351_n2100#
+X0 c2_n3251_n2000# m4_n3351_n2100# sky130_fd_pr__cap_mim_m3_2 l=2e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X5 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X7 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X10 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt currm_comp m1_522_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#
++ m1_994_170# m1_50_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1230_170#
++ m1_1348_410# m1_168_410# m1_404_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_758_170# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#
++ m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ m1_1466_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288# m1_286_170# m1_640_410#
++ VSUBS sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#
+Xsky130_fd_pr__nfet_01v8_lvt_HR8DH9_0 sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# m1_286_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#
++ m1_1348_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288# VSUBS m1_404_410#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288# m1_50_170# m1_1230_170# m1_522_170#
++ m1_168_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_1466_170# m1_640_410# m1_994_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288# m1_758_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_DG2JGC a_15_n200# a_n177_n200# a_111_n200# a_n273_n200#
++ a_159_n288# a_63_222# a_n81_n200# a_255_222# a_399_n200# a_351_n288# a_n417_n288#
++ a_n129_222# a_n563_n374# a_207_n200# a_n225_n288# a_n321_222# a_n461_n200# a_n369_n200#
++ a_303_n200# a_n33_n288#
+X0 a_n81_n200# a_n129_222# a_n177_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_n288# a_n81_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_n369_n200# a_n417_n288# a_n461_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_303_n200# a_255_222# a_207_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_n200# a_n321_222# a_n369_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X5 a_207_n200# a_159_n288# a_111_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_n177_n200# a_n225_n288# a_n273_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_111_n200# a_63_222# a_15_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_399_n200# a_351_n288# a_303_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element m1_838_660# m1_934_420# a_698_850# m1_646_660# a_890_840#
++ VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_DG2JGC_0 m1_838_660# m1_838_660# m1_934_420# VSUBS a_890_840#
++ a_890_840# m1_934_420# a_890_840# m1_838_660# a_890_840# VSUBS a_890_840# VSUBS
++ m1_838_660# a_698_850# a_698_850# VSUBS m1_646_660# m1_934_420# a_890_840# sky130_fd_pr__nfet_01v8_lvt_DG2JGC
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_TY94YJ a_n285_100# a_n285_n532# a_n415_n662#
+X0 a_n285_n532# a_n285_100# a_n415_n662# sky130_fd_pr__res_xhigh_po_2p85 l=1e+06u
+.ends
+
+.subckt comp_adv3_di Outn VP diffamp_element_0/a_890_840# diffamp_element_1/a_890_840#
++ Outp VN
+Xcurrm_comp_0 VN bias bias VN VN bias VN m2_820_n490# bias m2_820_n490# VN VN m2_820_n490#
++ bias bias bias bias m2_820_n490# bias bias VN bias VN m2_820_n490# VN bias currm_comp
+Xdiffamp_element_0 Outp m2_820_n490# Inn2 Inn2 diffamp_element_0/a_890_840# VN diffamp_element
+Xdiffamp_element_1 Outn m2_820_n490# Inp2 Inp2 diffamp_element_1/a_890_840# VN diffamp_element
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1 VP Outp VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_H9XL9H c1_n550_n500# m3_n650_n600#
+X0 c1_n550_n500# m3_n650_n600# sky130_fd_pr__cap_mim_m3_1 l=5e+06u w=5e+06u
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_8K9944 a_n285_150# a_n285_n582# a_n415_n712#
+X0 a_n285_n582# a_n285_150# a_n415_n712# sky130_fd_pr__res_xhigh_po_2p85 l=1.5e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_V6SMGN a_n129_n200# a_n81_n288# a_63_n200# a_n177_222#
++ a_n225_n200# a_n33_n200# a_n419_n374# a_n317_n200# a_159_n200# a_111_n288# a_15_222#
++ a_n273_n288# a_255_n200# a_207_222#
+X0 a_n33_n200# a_n81_n288# a_n129_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_255_n200# a_207_222# a_159_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_n288# a_63_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_n288# a_n317_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_63_n200# a_15_222# a_n33_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_222# a_n225_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element_nodi m1_1126_642# m1_1414_418# a_890_330# m1_1318_642# m1_838_418#
++ m1_1030_418# m1_934_642# m1_1222_418# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_V6SMGN_0 m1_1030_418# a_890_330# m1_1222_418# a_890_330#
++ m1_934_642# m1_1126_642# VSUBS m1_838_418# m1_1318_642# a_890_330# a_890_330# a_890_330#
++ m1_1414_418# a_890_330# sky130_fd_pr__nfet_01v8_lvt_V6SMGN
+.ends
+
+.subckt comp_adv3 Outn VP OutP diffamp_element_nodi_0/a_890_330# diffamp_element_nodi_1/a_890_330#
++ VN
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_0 VP OutP VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_1 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xdiffamp_element_nodi_0 OutP m2_720_n160# diffamp_element_nodi_0/a_890_330# OutP m2_720_n160#
++ m2_720_n160# OutP m2_720_n160# VN diffamp_element_nodi
+Xdiffamp_element_nodi_1 Outn m2_720_n160# diffamp_element_nodi_1/a_890_330# Outn m2_720_n160#
++ m2_720_n160# Outn m2_720_n160# VN diffamp_element_nodi
+Xcurrm_comp_0 VN bias bias VN VN bias VN m2_720_n160# bias m2_720_n160# VN VN m2_720_n160#
++ bias bias bias bias m2_720_n160# bias bias VN bias VN m2_720_n160# VN bias currm_comp
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_XJ7GBL a_n33_n147# a_n73_n50# w_n211_n269# a_15_n50#
+X0 a_15_n50# a_n33_n147# a_n73_n50# w_n211_n269# sky130_fd_pr__pfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U47ZGH a_n221_n200# a_n129_n200# a_63_n200# a_15_n297#
++ a_n81_231# w_n359_n419# a_n177_n297# a_n33_n200# a_159_n200# a_111_231#
+X0 a_159_n200# a_111_231# a_63_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_n297# a_n33_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n129_n200# a_n177_n297# a_n221_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_n33_n200# a_n81_231# a_n129_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_GV8PGY a_15_n200# a_n33_222# a_111_n200# a_n81_n200#
++ a_n129_n288# a_63_n288# a_n275_n374# a_n173_n200#
+X0 a_n81_n200# a_n129_n288# a_n173_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_222# a_n81_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_111_n200# a_63_n288# a_15_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_X4XKHL a_63_n200# a_15_231# a_n33_n200# w_n263_n419#
++ a_n81_n297# a_n125_n200#
+X0 a_63_n200# a_15_231# a_n33_n200# w_n263_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n33_n200# a_n81_n297# a_n125_n200# w_n263_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_LH2JGW a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_YT8PGU a_15_n200# a_n175_n374# a_n73_n200# a_n33_n288#
+X0 a_15_n200# a_n33_n288# a_n73_n200# a_n175_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_PL8DH5 a_n1209_n200# a_262_n288# a_n328_n288# a_1033_n200#
++ a_n501_n200# a_n855_n200# a_616_n288# a_561_n200# a_144_n288# a_n383_n200# a_498_n288#
++ a_915_n200# a_n1154_n288# a_n737_n200# a_443_n200# a_n1311_n374# a_797_n200# a_n265_n200#
++ a_n800_n288# a_n1036_n288# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200#
++ a_n147_n200# a_970_n288# a_n1091_n200# a_207_n200# a_n210_n288# a_n564_n288# a_852_n288#
++ a_n918_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200# a_n446_n288# a_1151_n200#
++ a_734_n288# a_n973_n200# a_1088_n288#
+X0 a_n29_n200# a_n92_n288# a_n147_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_915_n200# a_852_n288# a_797_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n619_n200# a_n682_n288# a_n737_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_n855_n200# a_n918_n288# a_n973_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_325_n200# a_262_n288# a_207_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_561_n200# a_498_n288# a_443_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n265_n200# a_n328_n288# a_n383_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_1151_n200# a_1088_n288# a_1033_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X8 a_797_n200# a_734_n288# a_679_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_89_n200# a_26_n288# a_n29_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X10 a_207_n200# a_144_n288# a_89_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X11 a_n1091_n200# a_n1154_n288# a_n1209_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_n501_n200# a_n564_n288# a_n619_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X13 a_n147_n200# a_n210_n288# a_n265_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X14 a_679_n200# a_616_n288# a_561_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X15 a_1033_n200# a_970_n288# a_915_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X16 a_n737_n200# a_n800_n288# a_n855_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n973_n200# a_n1036_n288# a_n1091_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X18 a_443_n200# a_380_n288# a_325_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n383_n200# a_n446_n288# a_n501_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt comp_to_logic VP In_p In_n VSUBS
+Xsky130_fd_pr__pfet_01v8_XJ7GBL_1 VM6D VM1D VP VP sky130_fd_pr__pfet_01v8_XJ7GBL
+Xsky130_fd_pr__pfet_01v8_XJ7GBL_0 VM1D VP VP VM6D sky130_fd_pr__pfet_01v8_XJ7GBL
+Xsky130_fd_pr__pfet_01v8_U47ZGH_0 VP VM11D VM11D VM1D VM1D VP VM1D VP VP VM1D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__nfet_01v8_GV8PGY_0 VSUBS VM11D VM11D VM11D VM11D VM11D VSUBS VSUBS
++ sky130_fd_pr__nfet_01v8_GV8PGY
+Xsky130_fd_pr__pfet_01v8_U47ZGH_1 VP VM12D VM12D VM6D VM6D VP VM6D VP VP VM6D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__nfet_01v8_GV8PGY_1 VSUBS VM11D VM12D VM12D VM11D VM11D VSUBS VSUBS
++ sky130_fd_pr__nfet_01v8_GV8PGY
+Xsky130_fd_pr__pfet_01v8_U47ZGH_2 VP VM13D VM13D VM17D VM17D VP VM17D VP VP VM17D
++ sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__pfet_01v8_U47ZGH_3 VP Out Out VM13D VM13D VP VM13D VP VP VM13D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__pfet_01v8_X4XKHL_0 VP VM1D VM1D VP VM1D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__pfet_01v8_X4XKHL_2 VP VM12D VM17D VP VM12D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__pfet_01v8_X4XKHL_1 VP VM6D VM6D VP VM6D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 In_n VM4D VM1D In_n VSUBS VM4D sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_2 VM13D VSUBS Out VM13D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_1 In_p VM4D VM6D In_p VSUBS VM4D sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_3 VM17D VSUBS VM13D VM17D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_YT8PGU_0 VM17D VSUBS VSUBS VM12D sky130_fd_pr__nfet_01v8_YT8PGU
+Xsky130_fd_pr__nfet_01v8_PL8DH5_0 VSUBS I_Bias I_Bias VSUBS VM4D VSUBS I_Bias VSUBS
++ I_Bias VSUBS I_Bias VM4D VSUBS VM4D VM4D VSUBS VSUBS VM4D I_Bias I_Bias VSUBS I_Bias
++ VSUBS I_Bias VM4D VSUBS I_Bias VSUBS VM4D I_Bias I_Bias I_Bias I_Bias VM4D I_Bias
++ I_Bias VSUBS I_Bias VSUBS I_Bias I_Bias VSUBS sky130_fd_pr__nfet_01v8_PL8DH5
+.ends
+
+
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0 VN m1_n2250_2600# m1_n3200_150# m1_n2870_2590#
++ m1_n2560_340# m1_n3200_150# m1_n2560_340# comp_adv3_0/OutP m1_n2870_2590# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1 VN m1_n8540_2590# m1_n9500_160# m1_n9180_2590#
++ m1_n8860_160# m1_n9500_160# m1_n8860_160# m1_n9490_2240# m1_n9180_2590# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2 VN InRef m1_n8150_160# m1_n7830_2600# m1_n7520_160#
++ m1_n8150_160# m1_n7520_160# m1_n8540_2590# m1_n7830_2600# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_0 VN m1_n8540_2590# sky130_fd_pr__cap_mim_m3_2_MJMGTW
+Xcomp_adv3_di_0 comp_adv3_di_0/Outn VP m1_n2250_2600# comp_adv3_0/OutP comp_adv3_di_0/Outp
++ VN comp_adv3_di
+Xsky130_fd_pr__cap_mim_m3_1_H9XL9H_0 m1_n2250_2600# comp_adv3_0/Outn sky130_fd_pr__cap_mim_m3_1_H9XL9H
+Xsky130_fd_pr__cap_mim_m3_1_H9XL9H_1 m1_n9490_2240# In sky130_fd_pr__cap_mim_m3_1_H9XL9H
+Xcomp_adv3_0 comp_adv3_0/Outn VP comp_adv3_0/OutP comp_adv3_1/OutP comp_adv3_1/Outn
++ VN comp_adv3
+Xcomp_adv3_1 comp_adv3_1/Outn VP comp_adv3_1/OutP m1_n8540_2590# m1_n9490_2240# VN
++ comp_adv3
+Xcomp_adv3_2 comp_adv3_2/Outn VP comp_adv3_2/OutP comp_adv3_di_0/Outp comp_adv3_di_0/Outn
++ VN comp_adv3
+Xcomp_to_logic_0 VP comp_adv3_4/OutP comp_adv3_4/Outn VN comp_to_logic
+Xcomp_adv3_3 comp_adv3_3/Outn VP comp_adv3_3/OutP comp_adv3_2/OutP comp_adv3_2/Outn
++ VN comp_adv3
+Xcomp_adv3_4 comp_adv3_4/Outn VP comp_adv3_4/OutP comp_adv3_3/OutP comp_adv3_3/Outn
++ VN comp_adv3
+
+
diff --git a/mag/comp/currm_comp.ext b/mag/comp/currm_comp.ext
new file mode 100644
index 0000000..47df3ae
--- /dev/null
+++ b/mag/comp/currm_comp.ext
@@ -0,0 +1,96 @@
+timestamp 1654072472
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_HR8DH9 sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0 1 0 795 0 1 370
+node "m1_1466_170#" 1 100.543 1466 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1230_170#" 1 70.4378 1230 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_994_170#" 1 70.4378 994 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_758_170#" 1 70.4378 758 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_522_170#" 1 70.4378 522 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_286_170#" 1 70.4378 286 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_50_170#" 1 100.858 50 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1348_410#" 1 100.543 1348 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1112_410#" 1 70.4378 1112 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_876_410#" 1 70.4378 876 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_640_410#" 1 70.4378 640 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_404_410#" 1 70.4378 404 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_168_410#" 1 100.858 168 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_404_410#" "m1_640_410#" 75.1148
+cap "m1_994_170#" "m1_1230_170#" 75.1148
+cap "m1_286_170#" "m1_522_170#" 75.1148
+cap "m1_286_170#" "m1_50_170#" 75.1148
+cap "m1_1466_170#" "m1_1230_170#" 75.1148
+cap "m1_640_410#" "m1_876_410#" 75.1148
+cap "m1_404_410#" "m1_168_410#" 75.1148
+cap "m1_1112_410#" "m1_876_410#" 75.1148
+cap "m1_522_170#" "m1_758_170#" 75.1148
+cap "m1_994_170#" "m1_758_170#" 75.1148
+cap "m1_1112_410#" "m1_1348_410#" 75.1148
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" 19.7931
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" -18.2222
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_679_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" -18.2222
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#" 14.4704
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" -36.4444
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" -18.2222
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" 19.7931
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_679_n200#" 14.2964
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#" 14.2974
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_679_n200#" 39.5862
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#" 14.4855
+cap "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_679_n200#" -18.2222
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n839_n374#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_561_n200#" "m1_1348_410#" -81.9028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -640 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n147_n200#" "m1_640_410#" 6.25368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91840 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n501_n200#" "m1_286_170#" 42.7605 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_679_n200#" "m1_1466_170#" -32.8499 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_325_n200#" "m1_1112_410#" -42.419 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16320 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "m1_876_410#" -18.0826 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54080 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n737_n200#" "m1_50_170#" 75.1117 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 186240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n29_n200#" "m1_758_170#" -5.91214 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_207_n200#" "m1_994_170#" -30.2485 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n383_n200#" "m1_404_410#" 30.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 129600 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n619_n200#" "m1_168_410#" 26.0587 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 167360 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n265_n200#" "m1_522_170#" 18.4242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_443_n200#" "m1_1230_170#" -54.5848 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2560 -412 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/comp/currm_comp.mag b/mag/comp/currm_comp.mag
new file mode 100644
index 0000000..c926c07
--- /dev/null
+++ b/mag/comp/currm_comp.mag
@@ -0,0 +1,150 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072472
+<< error_s >>
+rect 117 642 175 648
+rect 235 642 293 648
+rect 353 642 411 648
+rect 471 642 529 648
+rect 589 642 647 648
+rect 707 642 765 648
+rect 825 642 883 648
+rect 943 642 1001 648
+rect 1061 642 1119 648
+rect 1179 642 1237 648
+rect 1297 642 1355 648
+rect 1415 642 1473 648
+rect 117 608 129 642
+rect 235 608 247 642
+rect 353 608 365 642
+rect 471 608 483 642
+rect 589 608 601 642
+rect 707 608 719 642
+rect 825 608 837 642
+rect 943 608 955 642
+rect 1061 608 1073 642
+rect 1179 608 1191 642
+rect 1297 608 1309 642
+rect 1415 608 1427 642
+rect 117 602 175 608
+rect 235 602 293 608
+rect 353 602 411 608
+rect 471 602 529 608
+rect 589 602 647 608
+rect 707 602 765 608
+rect 825 602 883 608
+rect 943 602 1001 608
+rect 1061 602 1119 608
+rect 1179 602 1237 608
+rect 1297 602 1355 608
+rect 1415 602 1473 608
+rect 117 132 175 138
+rect 235 132 293 138
+rect 353 132 411 138
+rect 471 132 529 138
+rect 589 132 647 138
+rect 707 132 765 138
+rect 825 132 883 138
+rect 943 132 1001 138
+rect 1061 132 1119 138
+rect 1179 132 1237 138
+rect 1297 132 1355 138
+rect 1415 132 1473 138
+rect 117 98 129 132
+rect 235 98 247 132
+rect 353 98 365 132
+rect 471 98 483 132
+rect 589 98 601 132
+rect 707 98 719 132
+rect 825 98 837 132
+rect 943 98 955 132
+rect 1061 98 1073 132
+rect 1179 98 1191 132
+rect 1297 98 1309 132
+rect 1415 98 1427 132
+rect 117 92 175 98
+rect 235 92 293 98
+rect 353 92 411 98
+rect 471 92 529 98
+rect 589 92 647 98
+rect 707 92 765 98
+rect 825 92 883 98
+rect 943 92 1001 98
+rect 1061 92 1119 98
+rect 1179 92 1237 98
+rect 1297 92 1355 98
+rect 1415 92 1473 98
+<< metal1 >>
+rect 168 410 178 570
+rect 232 410 242 570
+rect 404 410 414 570
+rect 468 410 478 570
+rect 640 410 650 570
+rect 704 410 714 570
+rect 876 410 886 570
+rect 940 410 950 570
+rect 1112 410 1122 570
+rect 1176 410 1186 570
+rect 1348 410 1358 570
+rect 1412 410 1422 570
+rect 50 170 60 330
+rect 114 170 124 330
+rect 286 170 296 330
+rect 350 170 360 330
+rect 522 170 532 330
+rect 586 170 596 330
+rect 758 170 768 330
+rect 822 170 832 330
+rect 994 170 1004 330
+rect 1058 170 1068 330
+rect 1230 170 1240 330
+rect 1294 170 1304 330
+rect 1466 170 1476 330
+rect 1530 170 1540 330
+<< via1 >>
+rect 178 410 232 570
+rect 414 410 468 570
+rect 650 410 704 570
+rect 886 410 940 570
+rect 1122 410 1176 570
+rect 1358 410 1412 570
+rect 60 170 114 330
+rect 296 170 350 330
+rect 532 170 586 330
+rect 768 170 822 330
+rect 1004 170 1058 330
+rect 1240 170 1294 330
+rect 1476 170 1530 330
+<< metal2 >>
+rect 178 570 232 580
+rect 178 400 232 410
+rect 414 570 468 580
+rect 414 400 468 410
+rect 650 570 704 580
+rect 650 400 704 410
+rect 886 570 940 580
+rect 886 400 940 410
+rect 1122 570 1176 580
+rect 1122 400 1176 410
+rect 1358 570 1412 580
+rect 1358 400 1412 410
+rect 60 330 114 340
+rect 60 160 114 170
+rect 296 330 350 340
+rect 296 160 350 170
+rect 532 330 586 340
+rect 532 160 586 170
+rect 768 330 822 340
+rect 768 160 822 170
+rect 1004 330 1058 340
+rect 1004 160 1058 170
+rect 1240 330 1294 340
+rect 1240 160 1294 170
+rect 1476 330 1530 340
+rect 1476 160 1530 170
+use sky130_fd_pr__nfet_01v8_lvt_HR8DH9  sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0
+timestamp 1654072472
+transform 1 0 795 0 1 370
+box -875 -410 875 410
+<< end >>
diff --git a/mag/comp/diffamp_element.ext b/mag/comp/diffamp_element.ext
new file mode 100644
index 0000000..02bf186
--- /dev/null
+++ b/mag/comp/diffamp_element.ext
@@ -0,0 +1,62 @@
+timestamp 1654015619
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_DG2JGC sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0 1 0 1019 0 1 618
+node "m1_934_420#" 2 189.752 934 420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35520 1404 79560 1244 0 0 0 0 0 0 0 0
+node "m1_550_420#" 1 125.354 550 420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26880 1096 44280 852 0 0 0 0 0 0 0 0
+node "m1_838_660#" 2 292.495 838 660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47360 1872 115200 1640 0 0 0 0 0 0 0 0
+node "m1_646_660#" 1 36.6681 646 660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "li_470_420#" 48 253.346 470 420 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45100 1040 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_890_840#" 1321 912.183 890 840 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72348 2428 0 0 36720 2296 90500 3720 0 0 0 0 0 0 0 0 0 0
+node "a_698_850#" 518 453.641 698 850 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18968 864 0 0 10132 732 58376 2832 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_934_420#" "m1_838_660#" 288.037
+cap "a_698_850#" "m1_550_420#" 441.428
+cap "a_890_840#" "a_698_850#" 184.159
+cap "m1_838_660#" "a_890_840#" 541.73
+cap "m1_646_660#" "m1_550_420#" 35.19
+cap "m1_934_420#" "m1_550_420#" 127.482
+cap "m1_934_420#" "a_890_840#" 364.516
+cap "li_470_420#" "m1_550_420#" 53.9006
+cap "a_890_840#" "m1_550_420#" 1.23
+cap "m1_838_660#" "a_698_850#" 12.8028
+cap "m1_646_660#" "a_698_850#" 145.991
+cap "m1_838_660#" "m1_646_660#" 123.829
+cap "a_698_850#" "li_470_420#" 213.148
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" 7.28815
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" 517.054
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" 501.244
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n369_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" 233.704
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" 63.266
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n369_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" -68.8194
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 280.428
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" -116.96
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#" -54.3214
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" 721.043
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" 676.836
+cap "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n369_n200#" -38.6129
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n417_n288#" "VSUBS" -362.919 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12220 -1684 -15424 -948 0 0 0 0 0 0 0 0 0 0
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n273_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n273_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n461_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n461_n200#" "m1_550_420#"
+merge "m1_550_420#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n563_n374#" "li_470_420#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_351_n288#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_159_n288#" -446.234 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -26856 -1992 0 0 -13464 -1200 -16008 -1248 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_159_n288#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_255_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_255_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n33_n288#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n33_n288#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_63_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_63_222#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n129_222#" "a_890_840#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_303_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_111_n200#" -142.228 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -22080 -1236 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_111_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "m1_934_420#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n369_n200#" "m1_646_660#" -27.7203 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7268 -408 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_399_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_207_n200#" -212.262 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29072 -1632 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_15_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_15_n200#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n177_n200#" "m1_838_660#"
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n225_n288#" "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" -270.921 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7952 -664 0 0 -4488 -400 -5336 -416 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n321_222#" "a_698_850#"
diff --git a/mag/comp/diffamp_element.mag b/mag/comp/diffamp_element.mag
new file mode 100644
index 0000000..81de43e
--- /dev/null
+++ b/mag/comp/diffamp_element.mag
@@ -0,0 +1,148 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654015619
+<< pwell >>
+rect 748 896 846 906
+rect 698 850 846 896
+rect 748 840 846 850
+rect 890 840 1436 906
+rect 710 328 860 396
+rect 902 328 1436 396
+<< poly >>
+rect 748 896 846 906
+rect 698 890 846 896
+rect 698 856 796 890
+rect 830 856 846 890
+rect 698 850 846 856
+rect 748 840 846 850
+rect 890 890 1436 906
+rect 890 856 1002 890
+rect 1036 856 1194 890
+rect 1228 856 1386 890
+rect 1420 856 1436 890
+rect 890 840 1436 856
+rect 710 380 860 396
+rect 710 346 726 380
+rect 760 346 860 380
+rect 710 328 860 346
+rect 902 380 1436 396
+rect 902 346 918 380
+rect 952 346 1098 380
+rect 1132 346 1290 380
+rect 1324 346 1436 380
+rect 902 328 1436 346
+<< polycont >>
+rect 796 856 830 890
+rect 1002 856 1036 890
+rect 1194 856 1228 890
+rect 1386 856 1420 890
+rect 726 346 760 380
+rect 918 346 952 380
+rect 1098 346 1132 380
+rect 1290 346 1324 380
+<< locali >>
+rect 698 856 796 890
+rect 830 856 846 890
+rect 890 856 1002 890
+rect 1036 856 1194 890
+rect 1228 856 1386 890
+rect 1420 856 1436 890
+rect 470 420 580 830
+rect 710 346 726 380
+rect 760 346 860 380
+rect 902 346 918 380
+rect 952 346 1098 380
+rect 1132 346 1290 380
+rect 1324 346 1436 380
+<< viali >>
+rect 796 856 830 890
+rect 1002 856 1036 890
+rect 1194 856 1228 890
+rect 1386 856 1420 890
+rect 726 346 760 380
+rect 918 346 952 380
+rect 1098 346 1132 380
+rect 1290 346 1324 380
+<< metal1 >>
+rect 480 896 700 900
+rect 480 890 846 896
+rect 480 856 796 890
+rect 830 856 846 890
+rect 480 850 846 856
+rect 890 890 1570 900
+rect 890 856 1002 890
+rect 1036 856 1194 890
+rect 1228 856 1386 890
+rect 1420 856 1570 890
+rect 890 850 1570 856
+rect 480 310 520 850
+rect 646 660 656 820
+rect 710 660 720 820
+rect 838 660 848 820
+rect 902 660 912 820
+rect 1030 660 1040 820
+rect 1094 660 1104 820
+rect 1222 660 1232 820
+rect 1286 660 1296 820
+rect 1414 660 1424 820
+rect 1478 660 1488 820
+rect 550 420 560 580
+rect 614 420 624 580
+rect 742 420 752 580
+rect 806 420 816 580
+rect 934 420 944 580
+rect 998 420 1008 580
+rect 1126 420 1136 580
+rect 1190 420 1200 580
+rect 1318 420 1328 580
+rect 1382 420 1392 580
+rect 580 340 620 420
+rect 1520 390 1570 850
+rect 710 386 750 390
+rect 710 380 860 386
+rect 710 346 726 380
+rect 760 346 860 380
+rect 710 340 860 346
+rect 900 380 1570 390
+rect 900 346 918 380
+rect 952 346 1098 380
+rect 1132 346 1290 380
+rect 1324 346 1570 380
+rect 900 340 1570 346
+rect 710 310 750 340
+rect 480 270 750 310
+<< via1 >>
+rect 656 660 710 820
+rect 848 660 902 820
+rect 1040 660 1094 820
+rect 1232 660 1286 820
+rect 1424 660 1478 820
+rect 560 420 614 580
+rect 752 420 806 580
+rect 944 420 998 580
+rect 1136 420 1190 580
+rect 1328 420 1382 580
+<< metal2 >>
+rect 656 820 710 830
+rect 656 650 710 660
+rect 840 820 1480 830
+rect 840 660 848 820
+rect 902 660 1040 820
+rect 1094 660 1232 820
+rect 1286 660 1424 820
+rect 1478 660 1480 820
+rect 840 650 1480 660
+rect 560 580 806 590
+rect 614 420 752 580
+rect 560 410 806 420
+rect 940 580 1382 590
+rect 940 420 944 580
+rect 998 420 1136 580
+rect 1190 420 1328 580
+rect 940 410 1382 420
+use sky130_fd_pr__nfet_01v8_lvt_DG2JGC  sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0
+timestamp 1654002310
+transform 1 0 1019 0 1 618
+box -599 -410 599 410
+<< end >>
diff --git a/mag/comp/diffamp_element_nodi.ext b/mag/comp/diffamp_element_nodi.ext
new file mode 100644
index 0000000..96bc43d
--- /dev/null
+++ b/mag/comp/diffamp_element_nodi.ext
@@ -0,0 +1,66 @@
+timestamp 1654072472
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_V6SMGN sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0 1 0 1163 0 1 618
+node "m1_1414_418#" 1 43.0642 1414 418 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_1222_418#" 1 43.1519 1222 418 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_1030_418#" 1 43.1519 1030 418 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_838_418#" 1 43.2768 838 418 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_1318_642#" 1 46.4152 1318 642 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_1126_642#" 1 43.1492 1126 642 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "m1_934_642#" 1 46.624 934 642 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13024 500 10584 500 0 0 0 0 0 0 0 0
+node "a_890_330#" 1347 1178.54 890 330 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72072 2448 0 0 37128 2320 127000 5080 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_1222_418#" "a_890_330#" 108.188
+cap "m1_934_642#" "m1_1126_642#" 110.571
+cap "m1_1318_642#" "a_890_330#" 146.904
+cap "m1_1222_418#" "m1_1030_418#" 110.571
+cap "a_890_330#" "m1_1030_418#" 108.188
+cap "m1_934_642#" "a_890_330#" 148.541
+cap "m1_1318_642#" "m1_1126_642#" 110.571
+cap "m1_1126_642#" "a_890_330#" 96.167
+cap "m1_1414_418#" "m1_1222_418#" 110.571
+cap "m1_838_418#" "a_890_330#" 340.131
+cap "m1_1414_418#" "a_890_330#" 311.138
+cap "m1_838_418#" "m1_1030_418#" 110.571
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" 101.024
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" 95.5666
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" -55.0373
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 95.5666
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" 101.024
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" -14
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" 101.024
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" -14
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" -14
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" -55.0373
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 103.046
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" 101.024
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" -55.0373
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" 225.873
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" -55.0373
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 52.3086
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" 101.024
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" -14
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 750.961
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" -55.0373
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 243.182
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" -14
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" 50.6719
+cap "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" 101.024
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n419_n374#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_111_n288#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_207_222#" -622.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -26856 -1992 0 0 -13464 -1200 -16008 -1248 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_207_222#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_15_222#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n273_n288#"
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n273_n288#" "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n177_222#" "a_890_330#"
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m1_838_418#" -32.6474 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_63_n200#" "m1_1222_418#" -37.3893 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n33_n200#" "m1_1126_642#" -37.4048 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n225_n200#" "m1_934_642#" -39.2466 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" "m1_1030_418#" -37.3893 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" "m1_1318_642#" -39.0378 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" "m1_1414_418#" -32.2539 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8096 -444 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/comp/diffamp_element_nodi.mag b/mag/comp/diffamp_element_nodi.mag
new file mode 100644
index 0000000..90af37c
--- /dev/null
+++ b/mag/comp/diffamp_element_nodi.mag
@@ -0,0 +1,104 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072472
+<< pwell >>
+rect 890 900 1436 906
+rect 890 850 1480 900
+rect 890 840 1436 850
+rect 890 390 1436 396
+rect 890 340 1474 390
+rect 890 330 1436 340
+<< poly >>
+rect 890 890 1436 906
+rect 890 856 906 890
+rect 940 856 1098 890
+rect 1132 856 1290 890
+rect 1324 856 1436 890
+rect 890 840 1436 856
+rect 890 380 1436 396
+rect 890 346 1002 380
+rect 1036 346 1194 380
+rect 1228 346 1386 380
+rect 1420 346 1436 380
+rect 890 330 1436 346
+<< polycont >>
+rect 906 856 940 890
+rect 1098 856 1132 890
+rect 1290 856 1324 890
+rect 1002 346 1036 380
+rect 1194 346 1228 380
+rect 1386 346 1420 380
+<< locali >>
+rect 890 856 906 890
+rect 940 856 1098 890
+rect 1132 856 1290 890
+rect 1324 856 1436 890
+rect 890 346 1002 380
+rect 1036 346 1194 380
+rect 1228 346 1386 380
+rect 1420 346 1436 380
+<< viali >>
+rect 906 856 940 890
+rect 1098 856 1132 890
+rect 1290 856 1324 890
+rect 1002 346 1036 380
+rect 1194 346 1228 380
+rect 1386 346 1420 380
+<< metal1 >>
+rect 760 890 1570 900
+rect 760 856 906 890
+rect 940 856 1098 890
+rect 1132 856 1290 890
+rect 1324 856 1570 890
+rect 760 850 1570 856
+rect 760 390 810 850
+rect 934 642 944 818
+rect 998 642 1008 818
+rect 1126 642 1136 818
+rect 1190 642 1200 818
+rect 1318 642 1328 818
+rect 1382 642 1392 818
+rect 838 418 848 594
+rect 902 418 912 594
+rect 1030 418 1040 594
+rect 1094 418 1104 594
+rect 1222 418 1232 594
+rect 1286 418 1296 594
+rect 1414 418 1424 594
+rect 1478 418 1488 594
+rect 1520 390 1570 850
+rect 760 380 1570 390
+rect 760 346 1002 380
+rect 1036 346 1194 380
+rect 1228 346 1386 380
+rect 1420 346 1570 380
+rect 760 340 1570 346
+<< via1 >>
+rect 944 642 998 818
+rect 1136 642 1190 818
+rect 1328 642 1382 818
+rect 848 418 902 594
+rect 1040 418 1094 594
+rect 1232 418 1286 594
+rect 1424 418 1478 594
+<< metal2 >>
+rect 944 818 998 828
+rect 944 632 998 642
+rect 1136 818 1190 828
+rect 1136 632 1190 642
+rect 1328 818 1382 828
+rect 1328 632 1382 642
+rect 848 594 902 604
+rect 848 408 902 418
+rect 1040 594 1094 604
+rect 1040 408 1094 418
+rect 1232 594 1286 604
+rect 1232 408 1286 418
+rect 1424 594 1478 604
+rect 1424 408 1478 418
+use sky130_fd_pr__nfet_01v8_lvt_V6SMGN  sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0
+timestamp 1654072472
+transform 1 0 1163 0 1 618
+box -455 -410 455 410
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.ext b/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.ext
new file mode 100644
index 0000000..aaa26df
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.ext
@@ -0,0 +1,12 @@
+timestamp 1654166568
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+node "c1_n550_n500#" 0 0 -550 -500 mim 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 850084 3688 0 0 0 0
+node "m3_n650_n600#" 1 1506.4 -650 -600 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1558800 4998 112896 2544 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c1_n550_n500#" "m3_n650_n600#" 3204.26
+device csubckt sky130_fd_pr__cap_mim_m3_1 -550 -500 -549 -499 w=1000 l=1000 "None" "c1_n550_n500#" 3680 0 "m3_n650_n600#" 400 0
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.mag
new file mode 100644
index 0000000..861b78a
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_1_H9XL9H.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal3 >>
+rect -650 572 649 600
+rect -650 -572 565 572
+rect 629 -572 649 572
+rect -650 -600 649 -572
+<< via3 >>
+rect 565 -572 629 572
+<< mimcap >>
+rect -550 460 450 500
+rect -550 -460 -510 460
+rect 410 -460 450 460
+rect -550 -500 450 -460
+<< mimcapcontact >>
+rect -510 -460 410 460
+<< metal4 >>
+rect 549 572 645 588
+rect -511 460 411 461
+rect -511 -460 -510 460
+rect 410 -460 411 460
+rect -511 -461 411 -460
+rect 549 -572 565 572
+rect 629 -572 645 572
+rect 549 -588 645 -572
+<< properties >>
+string FIXED_BBOX -650 -600 550 600
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 5 l 5 val 53.8 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QDKUJ.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QDKUJ.mag
new file mode 100644
index 0000000..f4365c6
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QDKUJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -2351 1259 2351 1300
+rect -2351 -1259 2095 1259
+rect 2331 -1259 2351 1259
+rect -2351 -1300 2351 -1259
+<< via4 >>
+rect 2095 -1259 2331 1259
+<< mimcap2 >>
+rect -2251 1160 1749 1200
+rect -2251 -1160 -2211 1160
+rect 1709 -1160 1749 1160
+rect -2251 -1200 1749 -1160
+<< mimcap2contact >>
+rect -2211 -1160 1709 1160
+<< metal5 >>
+rect 2053 1259 2373 1301
+rect -2235 1160 1733 1184
+rect -2235 -1160 -2211 1160
+rect 1709 -1160 1733 1160
+rect -2235 -1184 1733 -1160
+rect 2053 -1259 2095 1259
+rect 2331 -1259 2373 1259
+rect 2053 -1301 2373 -1259
+<< properties >>
+string FIXED_BBOX -2351 -1300 1849 1300
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 12 val 492.16 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QF23H.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QF23H.mag
new file mode 100644
index 0000000..45e2d63
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_2QF23H.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -1551 2059 1551 2100
+rect -1551 -2059 1295 2059
+rect 1531 -2059 1551 2059
+rect -1551 -2100 1551 -2059
+<< via4 >>
+rect 1295 -2059 1531 2059
+<< mimcap2 >>
+rect -1451 1960 949 2000
+rect -1451 -1960 -1411 1960
+rect 909 -1960 949 1960
+rect -1451 -2000 949 -1960
+<< mimcap2contact >>
+rect -1411 -1960 909 1960
+<< metal5 >>
+rect 1253 2059 1573 2101
+rect -1435 1960 933 1984
+rect -1435 -1960 -1411 1960
+rect 909 -1960 933 1960
+rect -1435 -1984 933 -1960
+rect 1253 -2059 1295 2059
+rect 1531 -2059 1573 2059
+rect 1253 -2101 1573 -2059
+<< properties >>
+string FIXED_BBOX -1551 -2100 1049 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 12 l 20 val 492.16 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZNXMG.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZNXMG.mag
new file mode 100644
index 0000000..f25bea4
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZNXMG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -2351 1059 2351 1100
+rect -2351 -1059 2095 1059
+rect 2331 -1059 2351 1059
+rect -2351 -1100 2351 -1059
+<< via4 >>
+rect 2095 -1059 2331 1059
+<< mimcap2 >>
+rect -2251 960 1749 1000
+rect -2251 -960 -2211 960
+rect 1709 -960 1749 960
+rect -2251 -1000 1749 -960
+<< mimcap2contact >>
+rect -2211 -960 1709 960
+<< metal5 >>
+rect 2053 1059 2373 1101
+rect -2235 960 1733 984
+rect -2235 -960 -2211 960
+rect 1709 -960 1733 960
+rect -2235 -984 1733 -960
+rect 2053 -1059 2095 1059
+rect 2331 -1059 2373 1059
+rect 2053 -1101 2373 -1059
+<< properties >>
+string FIXED_BBOX -2351 -1100 1849 1100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 10 val 411.4 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZTPNG.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZTPNG.mag
new file mode 100644
index 0000000..11922d7
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_EZTPNG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -1351 2059 1351 2100
+rect -1351 -2059 1095 2059
+rect 1331 -2059 1351 2059
+rect -1351 -2100 1351 -2059
+<< via4 >>
+rect 1095 -2059 1331 2059
+<< mimcap2 >>
+rect -1251 1960 749 2000
+rect -1251 -1960 -1211 1960
+rect 709 -1960 749 1960
+rect -1251 -2000 749 -1960
+<< mimcap2contact >>
+rect -1211 -1960 709 1960
+<< metal5 >>
+rect 1053 2059 1373 2101
+rect -1235 1960 733 1984
+rect -1235 -1960 -1211 1960
+rect 709 -1960 733 1960
+rect -1235 -1984 733 -1960
+rect 1053 -2059 1095 2059
+rect 1331 -2059 1373 2059
+rect 1053 -2101 1373 -2059
+<< properties >>
+string FIXED_BBOX -1351 -2100 849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 10 l 20 val 411.4 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..9604a6c
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext b/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext
new file mode 100644
index 0000000..6ebe3e5
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext
@@ -0,0 +1,12 @@
+timestamp 1654166568
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n2000#" 0 0 -3251 -2000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23681024 19872 0 0
+node "m4_n3351_n2100#" 0 10879.7 -3351 -2100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28148400 21804 1344640 9044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n2000#" "m4_n3351_n2100#" 48790
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -2000 -3250 -1999 w=6000 l=4000 "None" "c2_n3251_n2000#" 19680 0 "m4_n3351_n2100#" 400 0
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
new file mode 100644
index 0000000..1c4c893
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -3351 2059 3351 2100
+rect -3351 -2059 3095 2059
+rect 3331 -2059 3351 2059
+rect -3351 -2100 3351 -2059
+<< via4 >>
+rect 3095 -2059 3331 2059
+<< mimcap2 >>
+rect -3251 1960 2749 2000
+rect -3251 -1960 -3211 1960
+rect 2709 -1960 2749 1960
+rect -3251 -2000 2749 -1960
+<< mimcap2contact >>
+rect -3211 -1960 2709 1960
+<< metal5 >>
+rect 3053 2059 3373 2101
+rect -3235 1960 2733 1984
+rect -3235 -1960 -3211 1960
+rect 2709 -1960 2733 1960
+rect -3235 -1984 2733 -1960
+rect 3053 -2059 3095 2059
+rect 3331 -2059 3373 2059
+rect 3053 -2101 3373 -2059
+<< properties >>
+string FIXED_BBOX -3351 -2100 2849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 20 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag
new file mode 100644
index 0000000..fe6a8dd
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -2351 3059 2351 3100
+rect -2351 -3059 2095 3059
+rect 2331 -3059 2351 3059
+rect -2351 -3100 2351 -3059
+<< via4 >>
+rect 2095 -3059 2331 3059
+<< mimcap2 >>
+rect -2251 2960 1749 3000
+rect -2251 -2960 -2211 2960
+rect 1709 -2960 1749 2960
+rect -2251 -3000 1749 -2960
+<< mimcap2contact >>
+rect -2211 -2960 1709 2960
+<< metal5 >>
+rect 2053 3059 2373 3101
+rect -2235 2960 1733 2984
+rect -2235 -2960 -2211 2960
+rect 1709 -2960 1733 2960
+rect -2235 -2984 1733 -2960
+rect 2053 -3059 2095 3059
+rect 2331 -3059 2373 3059
+rect 2053 -3101 2373 -3059
+<< properties >>
+string FIXED_BBOX -2351 -3100 1849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 30 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag b/mag/comp/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag
new file mode 100644
index 0000000..08e4249
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< metal4 >>
+rect -2351 2059 2351 2100
+rect -2351 -2059 2095 2059
+rect 2331 -2059 2351 2059
+rect -2351 -2100 2351 -2059
+<< via4 >>
+rect 2095 -2059 2331 2059
+<< mimcap2 >>
+rect -2251 1960 1749 2000
+rect -2251 -1960 -2211 1960
+rect 1709 -1960 1749 1960
+rect -2251 -2000 1749 -1960
+<< mimcap2contact >>
+rect -2211 -1960 1709 1960
+<< metal5 >>
+rect 2053 2059 2373 2101
+rect -2235 1960 1733 1984
+rect -2235 -1960 -2211 1960
+rect 1709 -1960 1733 1960
+rect -2235 -1984 1733 -1960
+rect 2053 -2059 2095 2059
+rect 2331 -2059 2373 2059
+rect 2053 -2101 2373 -2059
+<< properties >>
+string FIXED_BBOX -2351 -2100 1849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.ext b/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.ext
new file mode 100644
index 0000000..6e0dd7a
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.ext
@@ -0,0 +1,30 @@
+timestamp 1654097028
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_111_n200#" 929 163.598 111 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n200#" 882 20.3377 15 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n200#" 882 20.3377 -81 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n173_n200#" 929 163.598 -173 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n288#" 837 143.434 63 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n288#" 837 143.688 -129 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_222#" 837 146.822 -33 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n275_n374#" 0 0 -275 -374 ppd 0 0 0 0 0 0 0 0 0 0 83640 4920 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83640 4920 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_222#" "a_n129_n288#" 14.1667
+cap "a_15_n200#" "a_63_n288#" 6.25956
+cap "a_n33_222#" "a_63_n288#" 14.1667
+cap "a_15_n200#" "a_n81_n200#" 479.458
+cap "a_111_n200#" "a_15_n200#" 479.458
+cap "a_n33_222#" "a_n81_n200#" 6.25956
+cap "a_63_n288#" "a_n129_n288#" 28.5878
+cap "a_15_n200#" "a_n33_222#" 6.25956
+cap "a_n173_n200#" "a_n129_n288#" 6.25956
+cap "a_n129_n288#" "a_n81_n200#" 6.25956
+cap "a_111_n200#" "a_63_n288#" 6.25956
+cap "a_n173_n200#" "a_n81_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8 81 -200 82 -199 l=30 w=400 "a_n275_n374#" "a_63_n288#" 60 0 "a_15_n200#" 400 0 "a_111_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -200 -14 -199 l=30 w=400 "a_n275_n374#" "a_n33_222#" 60 0 "a_n81_n200#" 400 0 "a_15_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -200 -110 -199 l=30 w=400 "a_n275_n374#" "a_n129_n288#" 60 0 "a_n173_n200#" 400 0 "a_n81_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.mag b/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.mag
new file mode 100644
index 0000000..ea5db6c
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_GV8PGY.mag
@@ -0,0 +1,145 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097028
+<< error_p >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect -29 232 29 238
+rect -125 -238 -67 -232
+rect 67 -238 125 -232
+rect -125 -272 -113 -238
+rect 67 -272 79 -238
+rect -125 -278 -67 -272
+rect 67 -278 125 -272
+<< pwell >>
+rect -311 -410 311 410
+<< nmos >>
+rect -111 -200 -81 200
+rect -15 -200 15 200
+rect 81 -200 111 200
+<< ndiff >>
+rect -173 188 -111 200
+rect -173 -188 -161 188
+rect -127 -188 -111 188
+rect -173 -200 -111 -188
+rect -81 188 -15 200
+rect -81 -188 -65 188
+rect -31 -188 -15 188
+rect -81 -200 -15 -188
+rect 15 188 81 200
+rect 15 -188 31 188
+rect 65 -188 81 188
+rect 15 -200 81 -188
+rect 111 188 173 200
+rect 111 -188 127 188
+rect 161 -188 173 188
+rect 111 -200 173 -188
+<< ndiffc >>
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+<< psubdiff >>
+rect -275 340 -179 374
+rect 179 340 275 374
+rect -275 278 -241 340
+rect 241 278 275 340
+rect -275 -340 -241 -278
+rect 241 -340 275 -278
+rect -275 -374 -179 -340
+rect 179 -374 275 -340
+<< psubdiffcont >>
+rect -179 340 179 374
+rect -275 -278 -241 278
+rect 241 -278 275 278
+rect -179 -374 179 -340
+<< poly >>
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -111 200 -81 226
+rect -33 222 33 238
+rect -15 200 15 222
+rect 81 200 111 226
+rect -111 -222 -81 -200
+rect -129 -238 -63 -222
+rect -15 -226 15 -200
+rect 81 -222 111 -200
+rect -129 -272 -113 -238
+rect -79 -272 -63 -238
+rect -129 -288 -63 -272
+rect 63 -238 129 -222
+rect 63 -272 79 -238
+rect 113 -272 129 -238
+rect 63 -288 129 -272
+<< polycont >>
+rect -17 238 17 272
+rect -113 -272 -79 -238
+rect 79 -272 113 -238
+<< locali >>
+rect -275 340 -179 374
+rect 179 340 275 374
+rect -275 278 -241 340
+rect 241 278 275 340
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -161 188 -127 204
+rect -161 -204 -127 -188
+rect -65 188 -31 204
+rect -65 -204 -31 -188
+rect 31 188 65 204
+rect 31 -204 65 -188
+rect 127 188 161 204
+rect 127 -204 161 -188
+rect -129 -272 -113 -238
+rect -79 -272 -63 -238
+rect 63 -272 79 -238
+rect 113 -272 129 -238
+rect -275 -340 -241 -278
+rect 241 -340 275 -278
+rect -275 -374 -179 -340
+rect 179 -374 275 -340
+<< viali >>
+rect -17 238 17 272
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+rect -113 -272 -79 -238
+rect 79 -272 113 -238
+<< metal1 >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect -167 188 -121 200
+rect -167 -188 -161 188
+rect -127 -188 -121 188
+rect -167 -200 -121 -188
+rect -71 188 -25 200
+rect -71 -188 -65 188
+rect -31 -188 -25 188
+rect -71 -200 -25 -188
+rect 25 188 71 200
+rect 25 -188 31 188
+rect 65 -188 71 188
+rect 25 -200 71 -188
+rect 121 188 167 200
+rect 121 -188 127 188
+rect 161 -188 167 188
+rect 121 -200 167 -188
+rect -125 -238 -67 -232
+rect -125 -272 -113 -238
+rect -79 -272 -67 -238
+rect -125 -278 -67 -272
+rect 67 -238 125 -232
+rect 67 -272 79 -238
+rect 113 -272 125 -238
+rect 67 -278 125 -272
+<< properties >>
+string FIXED_BBOX -258 -357 258 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 3 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.ext b/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.ext
new file mode 100644
index 0000000..3220659
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.ext
@@ -0,0 +1,68 @@
+timestamp 1654098769
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_679_n200#" 982 164.024 679 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n200#" 982 21.2305 561 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n200#" 982 21.2305 443 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n200#" 982 21.2305 325 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 982 21.2305 207 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n200#" 982 21.2305 89 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.2305 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n200#" 982 21.2305 -147 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n200#" 982 21.2305 -265 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n200#" 982 21.2305 -383 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n200#" 982 21.2305 -501 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n200#" 982 21.2305 -619 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n200#" 982 164.024 -737 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_n288#" 559 229.671 616 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n288#" 559 167.658 498 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n288#" 559 167.658 380 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n288#" 559 167.658 262 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n288#" 559 167.658 144 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n288#" 559 167.658 26 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n288#" 559 167.658 -92 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n288#" 559 167.658 -210 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n288#" 559 167.658 -328 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n288#" 559 167.658 -446 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n288#" 559 167.658 -564 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n288#" 559 230.182 -682 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n839_n374#" 0 0 -839 -374 ppd 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_89_n200#" "a_n29_n200#" 341
+cap "a_n564_n288#" "a_n682_n288#" 149.246
+cap "a_26_n288#" "a_n92_n288#" 149.246
+cap "a_26_n288#" "a_144_n288#" 149.246
+cap "a_n501_n200#" "a_n383_n200#" 341
+cap "a_262_n288#" "a_380_n288#" 149.246
+cap "a_89_n200#" "a_207_n200#" 341
+cap "a_n564_n288#" "a_n446_n288#" 149.246
+cap "a_n210_n288#" "a_n328_n288#" 149.246
+cap "a_498_n288#" "a_616_n288#" 149.246
+cap "a_561_n200#" "a_679_n200#" 341
+cap "a_n29_n200#" "a_n147_n200#" 341
+cap "a_498_n288#" "a_380_n288#" 149.246
+cap "a_443_n200#" "a_325_n200#" 341
+cap "a_325_n200#" "a_207_n200#" 341
+cap "a_n265_n200#" "a_n147_n200#" 341
+cap "a_262_n288#" "a_144_n288#" 149.246
+cap "a_561_n200#" "a_443_n200#" 341
+cap "a_n265_n200#" "a_n383_n200#" 341
+cap "a_n737_n200#" "a_n619_n200#" 341
+cap "a_n446_n288#" "a_n328_n288#" 149.246
+cap "a_n210_n288#" "a_n92_n288#" 149.246
+cap "a_n501_n200#" "a_n619_n200#" 341
+device msubckt sky130_fd_pr__nfet_01v8 619 -200 620 -199 l=60 w=400 "a_n839_n374#" "a_616_n288#" 120 0 "a_561_n200#" 400 0 "a_679_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 501 -200 502 -199 l=60 w=400 "a_n839_n374#" "a_498_n288#" 120 0 "a_443_n200#" 400 0 "a_561_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 383 -200 384 -199 l=60 w=400 "a_n839_n374#" "a_380_n288#" 120 0 "a_325_n200#" 400 0 "a_443_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 265 -200 266 -199 l=60 w=400 "a_n839_n374#" "a_262_n288#" 120 0 "a_207_n200#" 400 0 "a_325_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 147 -200 148 -199 l=60 w=400 "a_n839_n374#" "a_144_n288#" 120 0 "a_89_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=60 w=400 "a_n839_n374#" "a_26_n288#" 120 0 "a_n29_n200#" 400 0 "a_89_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -89 -200 -88 -199 l=60 w=400 "a_n839_n374#" "a_n92_n288#" 120 0 "a_n147_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -200 -206 -199 l=60 w=400 "a_n839_n374#" "a_n210_n288#" 120 0 "a_n265_n200#" 400 0 "a_n147_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -325 -200 -324 -199 l=60 w=400 "a_n839_n374#" "a_n328_n288#" 120 0 "a_n383_n200#" 400 0 "a_n265_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -443 -200 -442 -199 l=60 w=400 "a_n839_n374#" "a_n446_n288#" 120 0 "a_n501_n200#" 400 0 "a_n383_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -561 -200 -560 -199 l=60 w=400 "a_n839_n374#" "a_n564_n288#" 120 0 "a_n619_n200#" 400 0 "a_n501_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -679 -200 -678 -199 l=60 w=400 "a_n839_n374#" "a_n682_n288#" 120 0 "a_n737_n200#" 400 0 "a_n619_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.mag b/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.mag
new file mode 100644
index 0000000..975500a
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_HR8DH9.mag
@@ -0,0 +1,595 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654100279
+<< error_p >>
+rect -678 272 -620 278
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect 620 272 678 278
+rect -678 238 -666 272
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect 620 238 632 272
+rect -678 232 -620 238
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect 620 232 678 238
+rect -678 -238 -620 -232
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect 620 -238 678 -232
+rect -678 -272 -666 -238
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect 620 -272 632 -238
+rect -678 -278 -620 -272
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+rect 620 -278 678 -272
+<< pwell >>
+rect -875 -410 875 410
+<< nmos >>
+rect -679 -200 -619 200
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+rect 619 -200 679 200
+<< ndiff >>
+rect -737 188 -679 200
+rect -737 -188 -725 188
+rect -691 -188 -679 188
+rect -737 -200 -679 -188
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+rect 679 188 737 200
+rect 679 -188 691 188
+rect 725 -188 737 188
+rect 679 -200 737 -188
+<< ndiffc >>
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+<< psubdiff >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< psubdiffcont >>
+rect -743 340 743 374
+rect -839 -278 -805 278
+rect 805 -278 839 278
+rect -743 -374 743 -340
+<< poly >>
+rect -682 272 -616 288
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -682 222 -616 238
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect 616 272 682 288
+rect 616 238 632 272
+rect 666 238 682 272
+rect 616 222 682 238
+rect -679 200 -619 222
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect 619 200 679 222
+rect -679 -222 -619 -200
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect 619 -222 679 -200
+rect -682 -238 -616 -222
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -682 -288 -616 -272
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+rect 616 -238 682 -222
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 616 -288 682 -272
+<< polycont >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< locali >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect 616 238 632 272
+rect 666 238 682 272
+rect -725 188 -691 204
+rect -725 -204 -691 -188
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect 691 188 725 204
+rect 691 -204 725 -188
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< viali >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< metal1 >>
+rect -678 272 -620 278
+rect -678 238 -666 272
+rect -632 238 -620 272
+rect -678 232 -620 238
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect 620 272 678 278
+rect 620 238 632 272
+rect 666 238 678 272
+rect 620 232 678 238
+rect -731 188 -685 200
+rect -731 -188 -725 188
+rect -691 -188 -685 188
+rect -731 -200 -685 -188
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect 685 188 731 200
+rect 685 -188 691 188
+rect 725 -188 731 188
+rect 685 -200 731 -188
+rect -678 -238 -620 -232
+rect -678 -272 -666 -238
+rect -632 -272 -620 -238
+rect -678 -278 -620 -272
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+rect 620 -238 678 -232
+rect 620 -272 632 -238
+rect 666 -272 678 -238
+rect 620 -278 678 -272
+<< properties >>
+string FIXED_BBOX -822 -357 822 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.ext b/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.ext
new file mode 100644
index 0000000..fd79a35
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.ext
@@ -0,0 +1,22 @@
+timestamp 1654097953
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_n81_n288#" "a_n125_n200#" 6.25956
+cap "a_15_222#" "a_n81_n288#" 14.1667
+cap "a_n81_n288#" "a_n33_n200#" 6.25956
+cap "a_15_222#" "a_63_n200#" 6.25956
+cap "a_n33_n200#" "a_n125_n200#" 479.458
+cap "a_n33_n200#" "a_63_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.mag b/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.mag
new file mode 100644
index 0000000..473bea7
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_LH2JGW.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097953
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmos >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_MJG2KS.mag b/mag/comp/sky130_fd_pr__nfet_01v8_MJG2KS.mag
new file mode 100644
index 0000000..59f0b29
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_MJG2KS.mag
@@ -0,0 +1,362 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654074216
+<< pwell >>
+rect -483 -719 483 719
+<< nmos >>
+rect -287 109 -187 509
+rect -129 109 -29 509
+rect 29 109 129 509
+rect 187 109 287 509
+rect -287 -509 -187 -109
+rect -129 -509 -29 -109
+rect 29 -509 129 -109
+rect 187 -509 287 -109
+<< ndiff >>
+rect -345 497 -287 509
+rect -345 121 -333 497
+rect -299 121 -287 497
+rect -345 109 -287 121
+rect -187 497 -129 509
+rect -187 121 -175 497
+rect -141 121 -129 497
+rect -187 109 -129 121
+rect -29 497 29 509
+rect -29 121 -17 497
+rect 17 121 29 497
+rect -29 109 29 121
+rect 129 497 187 509
+rect 129 121 141 497
+rect 175 121 187 497
+rect 129 109 187 121
+rect 287 497 345 509
+rect 287 121 299 497
+rect 333 121 345 497
+rect 287 109 345 121
+rect -345 -121 -287 -109
+rect -345 -497 -333 -121
+rect -299 -497 -287 -121
+rect -345 -509 -287 -497
+rect -187 -121 -129 -109
+rect -187 -497 -175 -121
+rect -141 -497 -129 -121
+rect -187 -509 -129 -497
+rect -29 -121 29 -109
+rect -29 -497 -17 -121
+rect 17 -497 29 -121
+rect -29 -509 29 -497
+rect 129 -121 187 -109
+rect 129 -497 141 -121
+rect 175 -497 187 -121
+rect 129 -509 187 -497
+rect 287 -121 345 -109
+rect 287 -497 299 -121
+rect 333 -497 345 -121
+rect 287 -509 345 -497
+<< ndiffc >>
+rect -333 121 -299 497
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect 299 121 333 497
+rect -333 -497 -299 -121
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+rect 299 -497 333 -121
+<< psubdiff >>
+rect -447 649 -351 683
+rect 351 649 447 683
+rect -447 587 -413 649
+rect 413 587 447 649
+rect -447 -649 -413 -587
+rect 413 -649 447 -587
+rect -447 -683 -351 -649
+rect 351 -683 447 -649
+<< psubdiffcont >>
+rect -351 649 351 683
+rect -447 -587 -413 587
+rect 413 -587 447 587
+rect -351 -683 351 -649
+<< poly >>
+rect -287 581 -187 597
+rect -287 547 -271 581
+rect -203 547 -187 581
+rect -287 509 -187 547
+rect -129 581 -29 597
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect -129 509 -29 547
+rect 29 581 129 597
+rect 29 547 45 581
+rect 113 547 129 581
+rect 29 509 129 547
+rect 187 581 287 597
+rect 187 547 203 581
+rect 271 547 287 581
+rect 187 509 287 547
+rect -287 71 -187 109
+rect -287 37 -271 71
+rect -203 37 -187 71
+rect -287 21 -187 37
+rect -129 71 -29 109
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect -129 21 -29 37
+rect 29 71 129 109
+rect 29 37 45 71
+rect 113 37 129 71
+rect 29 21 129 37
+rect 187 71 287 109
+rect 187 37 203 71
+rect 271 37 287 71
+rect 187 21 287 37
+rect -287 -37 -187 -21
+rect -287 -71 -271 -37
+rect -203 -71 -187 -37
+rect -287 -109 -187 -71
+rect -129 -37 -29 -21
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect -129 -109 -29 -71
+rect 29 -37 129 -21
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect 29 -109 129 -71
+rect 187 -37 287 -21
+rect 187 -71 203 -37
+rect 271 -71 287 -37
+rect 187 -109 287 -71
+rect -287 -547 -187 -509
+rect -287 -581 -271 -547
+rect -203 -581 -187 -547
+rect -287 -597 -187 -581
+rect -129 -547 -29 -509
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect -129 -597 -29 -581
+rect 29 -547 129 -509
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect 29 -597 129 -581
+rect 187 -547 287 -509
+rect 187 -581 203 -547
+rect 271 -581 287 -547
+rect 187 -597 287 -581
+<< polycont >>
+rect -271 547 -203 581
+rect -113 547 -45 581
+rect 45 547 113 581
+rect 203 547 271 581
+rect -271 37 -203 71
+rect -113 37 -45 71
+rect 45 37 113 71
+rect 203 37 271 71
+rect -271 -71 -203 -37
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect 203 -71 271 -37
+rect -271 -581 -203 -547
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+rect 203 -581 271 -547
+<< locali >>
+rect -447 649 -351 683
+rect 351 649 447 683
+rect -447 587 -413 649
+rect 413 587 447 649
+rect -287 547 -271 581
+rect -203 547 -187 581
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect 29 547 45 581
+rect 113 547 129 581
+rect 187 547 203 581
+rect 271 547 287 581
+rect -333 497 -299 513
+rect -333 105 -299 121
+rect -175 497 -141 513
+rect -175 105 -141 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 141 497 175 513
+rect 141 105 175 121
+rect 299 497 333 513
+rect 299 105 333 121
+rect -287 37 -271 71
+rect -203 37 -187 71
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 113 37 129 71
+rect 187 37 203 71
+rect 271 37 287 71
+rect -287 -71 -271 -37
+rect -203 -71 -187 -37
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect 187 -71 203 -37
+rect 271 -71 287 -37
+rect -333 -121 -299 -105
+rect -333 -513 -299 -497
+rect -175 -121 -141 -105
+rect -175 -513 -141 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 141 -121 175 -105
+rect 141 -513 175 -497
+rect 299 -121 333 -105
+rect 299 -513 333 -497
+rect -287 -581 -271 -547
+rect -203 -581 -187 -547
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect 187 -581 203 -547
+rect 271 -581 287 -547
+rect -447 -649 -413 -587
+rect 413 -649 447 -587
+rect -447 -683 -351 -649
+rect 351 -683 447 -649
+<< viali >>
+rect -271 547 -203 581
+rect -113 547 -45 581
+rect 45 547 113 581
+rect 203 547 271 581
+rect -333 121 -299 497
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect 299 121 333 497
+rect -271 37 -203 71
+rect -113 37 -45 71
+rect 45 37 113 71
+rect 203 37 271 71
+rect -271 -71 -203 -37
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect 203 -71 271 -37
+rect -333 -497 -299 -121
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+rect 299 -497 333 -121
+rect -271 -581 -203 -547
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+rect 203 -581 271 -547
+<< metal1 >>
+rect -283 581 -191 587
+rect -283 547 -271 581
+rect -203 547 -191 581
+rect -283 541 -191 547
+rect -125 581 -33 587
+rect -125 547 -113 581
+rect -45 547 -33 581
+rect -125 541 -33 547
+rect 33 581 125 587
+rect 33 547 45 581
+rect 113 547 125 581
+rect 33 541 125 547
+rect 191 581 283 587
+rect 191 547 203 581
+rect 271 547 283 581
+rect 191 541 283 547
+rect -339 497 -293 509
+rect -339 121 -333 497
+rect -299 121 -293 497
+rect -339 109 -293 121
+rect -181 497 -135 509
+rect -181 121 -175 497
+rect -141 121 -135 497
+rect -181 109 -135 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 135 497 181 509
+rect 135 121 141 497
+rect 175 121 181 497
+rect 135 109 181 121
+rect 293 497 339 509
+rect 293 121 299 497
+rect 333 121 339 497
+rect 293 109 339 121
+rect -283 71 -191 77
+rect -283 37 -271 71
+rect -203 37 -191 71
+rect -283 31 -191 37
+rect -125 71 -33 77
+rect -125 37 -113 71
+rect -45 37 -33 71
+rect -125 31 -33 37
+rect 33 71 125 77
+rect 33 37 45 71
+rect 113 37 125 71
+rect 33 31 125 37
+rect 191 71 283 77
+rect 191 37 203 71
+rect 271 37 283 71
+rect 191 31 283 37
+rect -283 -37 -191 -31
+rect -283 -71 -271 -37
+rect -203 -71 -191 -37
+rect -283 -77 -191 -71
+rect -125 -37 -33 -31
+rect -125 -71 -113 -37
+rect -45 -71 -33 -37
+rect -125 -77 -33 -71
+rect 33 -37 125 -31
+rect 33 -71 45 -37
+rect 113 -71 125 -37
+rect 33 -77 125 -71
+rect 191 -37 283 -31
+rect 191 -71 203 -37
+rect 271 -71 283 -37
+rect 191 -77 283 -71
+rect -339 -121 -293 -109
+rect -339 -497 -333 -121
+rect -299 -497 -293 -121
+rect -339 -509 -293 -497
+rect -181 -121 -135 -109
+rect -181 -497 -175 -121
+rect -141 -497 -135 -121
+rect -181 -509 -135 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 135 -121 181 -109
+rect 135 -497 141 -121
+rect 175 -497 181 -121
+rect 135 -509 181 -497
+rect 293 -121 339 -109
+rect 293 -497 299 -121
+rect 333 -497 339 -121
+rect 293 -509 339 -497
+rect -283 -547 -191 -541
+rect -283 -581 -271 -547
+rect -203 -581 -191 -547
+rect -283 -587 -191 -581
+rect -125 -547 -33 -541
+rect -125 -581 -113 -547
+rect -45 -581 -33 -547
+rect -125 -587 -33 -581
+rect 33 -547 125 -541
+rect 33 -581 45 -547
+rect 113 -581 125 -547
+rect 33 -587 125 -581
+rect 191 -547 283 -541
+rect 191 -581 203 -547
+rect 271 -581 283 -547
+rect 191 -587 283 -581
+<< properties >>
+string FIXED_BBOX -430 -666 430 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 2 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.ext b/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.ext
new file mode 100644
index 0000000..8cd4034
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.ext
@@ -0,0 +1,108 @@
+timestamp 1654100279
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1151_n200#" 982 164.024 1151 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1033_n200#" 982 21.2305 1033 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_915_n200#" 982 21.2305 915 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_797_n200#" 982 21.2305 797 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_679_n200#" 982 21.2305 679 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n200#" 982 21.2305 561 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n200#" 982 21.2305 443 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n200#" 982 21.2305 325 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 982 21.2305 207 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n200#" 982 21.2305 89 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.2305 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n200#" 982 21.2305 -147 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n200#" 982 21.2305 -265 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n200#" 982 21.2305 -383 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n200#" 982 21.2305 -501 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n200#" 982 21.2305 -619 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n200#" 982 21.2305 -737 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n855_n200#" 982 21.2305 -855 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n973_n200#" 982 21.2305 -973 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1091_n200#" 982 21.2305 -1091 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1209_n200#" 982 164.024 -1209 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1088_n288#" 559 229.671 1088 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_970_n288#" 559 167.658 970 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_852_n288#" 559 167.658 852 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_734_n288#" 559 167.658 734 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_616_n288#" 559 167.658 616 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n288#" 559 167.658 498 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n288#" 559 167.658 380 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n288#" 559 167.658 262 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n288#" 559 167.658 144 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n288#" 559 167.658 26 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n288#" 559 167.658 -92 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n288#" 559 167.658 -210 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n288#" 559 167.658 -328 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n288#" 559 167.658 -446 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n288#" 559 167.658 -564 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n288#" 559 167.658 -682 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n800_n288#" 559 167.658 -800 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n918_n288#" 559 167.658 -918 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n1036_n288#" 559 167.658 -1036 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n1154_n288#" 559 230.182 -1154 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1311_n374#" 0 0 -1311 -374 ppd 0 0 0 0 0 0 0 0 0 0 224536 13208 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 224536 13208 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_89_n200#" "a_n29_n200#" 341
+cap "a_970_n288#" "a_852_n288#" 149.246
+cap "a_262_n288#" "a_380_n288#" 149.246
+cap "a_325_n200#" "a_443_n200#" 341
+cap "a_n855_n200#" "a_n973_n200#" 341
+cap "a_561_n200#" "a_679_n200#" 341
+cap "a_n1036_n288#" "a_n1154_n288#" 149.246
+cap "a_679_n200#" "a_797_n200#" 341
+cap "a_n800_n288#" "a_n682_n288#" 149.246
+cap "a_1088_n288#" "a_970_n288#" 149.246
+cap "a_207_n200#" "a_325_n200#" 341
+cap "a_n328_n288#" "a_n446_n288#" 149.246
+cap "a_1033_n200#" "a_915_n200#" 341
+cap "a_852_n288#" "a_734_n288#" 149.246
+cap "a_262_n288#" "a_144_n288#" 149.246
+cap "a_n1209_n200#" "a_n1091_n200#" 341
+cap "a_616_n288#" "a_734_n288#" 149.246
+cap "a_n855_n200#" "a_n737_n200#" 341
+cap "a_n1091_n200#" "a_n973_n200#" 341
+cap "a_26_n288#" "a_144_n288#" 149.246
+cap "a_n383_n200#" "a_n265_n200#" 341
+cap "a_26_n288#" "a_n92_n288#" 149.246
+cap "a_n446_n288#" "a_n564_n288#" 149.246
+cap "a_380_n288#" "a_498_n288#" 149.246
+cap "a_n619_n200#" "a_n501_n200#" 341
+cap "a_n328_n288#" "a_n210_n288#" 149.246
+cap "a_n682_n288#" "a_n564_n288#" 149.246
+cap "a_1033_n200#" "a_1151_n200#" 341
+cap "a_n265_n200#" "a_n147_n200#" 341
+cap "a_561_n200#" "a_443_n200#" 341
+cap "a_n92_n288#" "a_n210_n288#" 149.246
+cap "a_89_n200#" "a_207_n200#" 341
+cap "a_n918_n288#" "a_n1036_n288#" 149.246
+cap "a_n619_n200#" "a_n737_n200#" 341
+cap "a_n147_n200#" "a_n29_n200#" 341
+cap "a_616_n288#" "a_498_n288#" 149.246
+cap "a_n800_n288#" "a_n918_n288#" 149.246
+cap "a_n383_n200#" "a_n501_n200#" 341
+cap "a_915_n200#" "a_797_n200#" 341
+device msubckt sky130_fd_pr__nfet_01v8 1091 -200 1092 -199 l=60 w=400 "a_n1311_n374#" "a_1088_n288#" 120 0 "a_1033_n200#" 400 0 "a_1151_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 973 -200 974 -199 l=60 w=400 "a_n1311_n374#" "a_970_n288#" 120 0 "a_915_n200#" 400 0 "a_1033_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 855 -200 856 -199 l=60 w=400 "a_n1311_n374#" "a_852_n288#" 120 0 "a_797_n200#" 400 0 "a_915_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 737 -200 738 -199 l=60 w=400 "a_n1311_n374#" "a_734_n288#" 120 0 "a_679_n200#" 400 0 "a_797_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 619 -200 620 -199 l=60 w=400 "a_n1311_n374#" "a_616_n288#" 120 0 "a_561_n200#" 400 0 "a_679_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 501 -200 502 -199 l=60 w=400 "a_n1311_n374#" "a_498_n288#" 120 0 "a_443_n200#" 400 0 "a_561_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 383 -200 384 -199 l=60 w=400 "a_n1311_n374#" "a_380_n288#" 120 0 "a_325_n200#" 400 0 "a_443_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 265 -200 266 -199 l=60 w=400 "a_n1311_n374#" "a_262_n288#" 120 0 "a_207_n200#" 400 0 "a_325_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 147 -200 148 -199 l=60 w=400 "a_n1311_n374#" "a_144_n288#" 120 0 "a_89_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=60 w=400 "a_n1311_n374#" "a_26_n288#" 120 0 "a_n29_n200#" 400 0 "a_89_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -89 -200 -88 -199 l=60 w=400 "a_n1311_n374#" "a_n92_n288#" 120 0 "a_n147_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -200 -206 -199 l=60 w=400 "a_n1311_n374#" "a_n210_n288#" 120 0 "a_n265_n200#" 400 0 "a_n147_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -325 -200 -324 -199 l=60 w=400 "a_n1311_n374#" "a_n328_n288#" 120 0 "a_n383_n200#" 400 0 "a_n265_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -443 -200 -442 -199 l=60 w=400 "a_n1311_n374#" "a_n446_n288#" 120 0 "a_n501_n200#" 400 0 "a_n383_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -561 -200 -560 -199 l=60 w=400 "a_n1311_n374#" "a_n564_n288#" 120 0 "a_n619_n200#" 400 0 "a_n501_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -679 -200 -678 -199 l=60 w=400 "a_n1311_n374#" "a_n682_n288#" 120 0 "a_n737_n200#" 400 0 "a_n619_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -797 -200 -796 -199 l=60 w=400 "a_n1311_n374#" "a_n800_n288#" 120 0 "a_n855_n200#" 400 0 "a_n737_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -915 -200 -914 -199 l=60 w=400 "a_n1311_n374#" "a_n918_n288#" 120 0 "a_n973_n200#" 400 0 "a_n855_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1033 -200 -1032 -199 l=60 w=400 "a_n1311_n374#" "a_n1036_n288#" 120 0 "a_n1091_n200#" 400 0 "a_n973_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1151 -200 -1150 -199 l=60 w=400 "a_n1311_n374#" "a_n1154_n288#" 120 0 "a_n1209_n200#" 400 0 "a_n1091_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.mag b/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.mag
new file mode 100644
index 0000000..3be37dd
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_PL8DH5.mag
@@ -0,0 +1,955 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654100279
+<< error_p >>
+rect -1150 272 -1092 278
+rect -1032 272 -974 278
+rect -914 272 -856 278
+rect -796 272 -738 278
+rect -678 272 -620 278
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect 620 272 678 278
+rect 738 272 796 278
+rect 856 272 914 278
+rect 974 272 1032 278
+rect 1092 272 1150 278
+rect -1150 238 -1138 272
+rect -1032 238 -1020 272
+rect -914 238 -902 272
+rect -796 238 -784 272
+rect -678 238 -666 272
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect 620 238 632 272
+rect 738 238 750 272
+rect 856 238 868 272
+rect 974 238 986 272
+rect 1092 238 1104 272
+rect -1150 232 -1092 238
+rect -1032 232 -974 238
+rect -914 232 -856 238
+rect -796 232 -738 238
+rect -678 232 -620 238
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect 620 232 678 238
+rect 738 232 796 238
+rect 856 232 914 238
+rect 974 232 1032 238
+rect 1092 232 1150 238
+rect -1150 -238 -1092 -232
+rect -1032 -238 -974 -232
+rect -914 -238 -856 -232
+rect -796 -238 -738 -232
+rect -678 -238 -620 -232
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect 620 -238 678 -232
+rect 738 -238 796 -232
+rect 856 -238 914 -232
+rect 974 -238 1032 -232
+rect 1092 -238 1150 -232
+rect -1150 -272 -1138 -238
+rect -1032 -272 -1020 -238
+rect -914 -272 -902 -238
+rect -796 -272 -784 -238
+rect -678 -272 -666 -238
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect 620 -272 632 -238
+rect 738 -272 750 -238
+rect 856 -272 868 -238
+rect 974 -272 986 -238
+rect 1092 -272 1104 -238
+rect -1150 -278 -1092 -272
+rect -1032 -278 -974 -272
+rect -914 -278 -856 -272
+rect -796 -278 -738 -272
+rect -678 -278 -620 -272
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+rect 620 -278 678 -272
+rect 738 -278 796 -272
+rect 856 -278 914 -272
+rect 974 -278 1032 -272
+rect 1092 -278 1150 -272
+<< pwell >>
+rect -1347 -410 1347 410
+<< nmos >>
+rect -1151 -200 -1091 200
+rect -1033 -200 -973 200
+rect -915 -200 -855 200
+rect -797 -200 -737 200
+rect -679 -200 -619 200
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+rect 619 -200 679 200
+rect 737 -200 797 200
+rect 855 -200 915 200
+rect 973 -200 1033 200
+rect 1091 -200 1151 200
+<< ndiff >>
+rect -1209 188 -1151 200
+rect -1209 -188 -1197 188
+rect -1163 -188 -1151 188
+rect -1209 -200 -1151 -188
+rect -1091 188 -1033 200
+rect -1091 -188 -1079 188
+rect -1045 -188 -1033 188
+rect -1091 -200 -1033 -188
+rect -973 188 -915 200
+rect -973 -188 -961 188
+rect -927 -188 -915 188
+rect -973 -200 -915 -188
+rect -855 188 -797 200
+rect -855 -188 -843 188
+rect -809 -188 -797 188
+rect -855 -200 -797 -188
+rect -737 188 -679 200
+rect -737 -188 -725 188
+rect -691 -188 -679 188
+rect -737 -200 -679 -188
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+rect 679 188 737 200
+rect 679 -188 691 188
+rect 725 -188 737 188
+rect 679 -200 737 -188
+rect 797 188 855 200
+rect 797 -188 809 188
+rect 843 -188 855 188
+rect 797 -200 855 -188
+rect 915 188 973 200
+rect 915 -188 927 188
+rect 961 -188 973 188
+rect 915 -200 973 -188
+rect 1033 188 1091 200
+rect 1033 -188 1045 188
+rect 1079 -188 1091 188
+rect 1033 -200 1091 -188
+rect 1151 188 1209 200
+rect 1151 -188 1163 188
+rect 1197 -188 1209 188
+rect 1151 -200 1209 -188
+<< ndiffc >>
+rect -1197 -188 -1163 188
+rect -1079 -188 -1045 188
+rect -961 -188 -927 188
+rect -843 -188 -809 188
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect 809 -188 843 188
+rect 927 -188 961 188
+rect 1045 -188 1079 188
+rect 1163 -188 1197 188
+<< psubdiff >>
+rect -1311 340 -1215 374
+rect 1215 340 1311 374
+rect -1311 278 -1277 340
+rect 1277 278 1311 340
+rect -1311 -340 -1277 -278
+rect 1277 -340 1311 -278
+rect -1311 -374 -1215 -340
+rect 1215 -374 1311 -340
+<< psubdiffcont >>
+rect -1215 340 1215 374
+rect -1311 -278 -1277 278
+rect 1277 -278 1311 278
+rect -1215 -374 1215 -340
+<< poly >>
+rect -1154 272 -1088 288
+rect -1154 238 -1138 272
+rect -1104 238 -1088 272
+rect -1154 222 -1088 238
+rect -1036 272 -970 288
+rect -1036 238 -1020 272
+rect -986 238 -970 272
+rect -1036 222 -970 238
+rect -918 272 -852 288
+rect -918 238 -902 272
+rect -868 238 -852 272
+rect -918 222 -852 238
+rect -800 272 -734 288
+rect -800 238 -784 272
+rect -750 238 -734 272
+rect -800 222 -734 238
+rect -682 272 -616 288
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -682 222 -616 238
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect 616 272 682 288
+rect 616 238 632 272
+rect 666 238 682 272
+rect 616 222 682 238
+rect 734 272 800 288
+rect 734 238 750 272
+rect 784 238 800 272
+rect 734 222 800 238
+rect 852 272 918 288
+rect 852 238 868 272
+rect 902 238 918 272
+rect 852 222 918 238
+rect 970 272 1036 288
+rect 970 238 986 272
+rect 1020 238 1036 272
+rect 970 222 1036 238
+rect 1088 272 1154 288
+rect 1088 238 1104 272
+rect 1138 238 1154 272
+rect 1088 222 1154 238
+rect -1151 200 -1091 222
+rect -1033 200 -973 222
+rect -915 200 -855 222
+rect -797 200 -737 222
+rect -679 200 -619 222
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect 619 200 679 222
+rect 737 200 797 222
+rect 855 200 915 222
+rect 973 200 1033 222
+rect 1091 200 1151 222
+rect -1151 -222 -1091 -200
+rect -1033 -222 -973 -200
+rect -915 -222 -855 -200
+rect -797 -222 -737 -200
+rect -679 -222 -619 -200
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect 619 -222 679 -200
+rect 737 -222 797 -200
+rect 855 -222 915 -200
+rect 973 -222 1033 -200
+rect 1091 -222 1151 -200
+rect -1154 -238 -1088 -222
+rect -1154 -272 -1138 -238
+rect -1104 -272 -1088 -238
+rect -1154 -288 -1088 -272
+rect -1036 -238 -970 -222
+rect -1036 -272 -1020 -238
+rect -986 -272 -970 -238
+rect -1036 -288 -970 -272
+rect -918 -238 -852 -222
+rect -918 -272 -902 -238
+rect -868 -272 -852 -238
+rect -918 -288 -852 -272
+rect -800 -238 -734 -222
+rect -800 -272 -784 -238
+rect -750 -272 -734 -238
+rect -800 -288 -734 -272
+rect -682 -238 -616 -222
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -682 -288 -616 -272
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+rect 616 -238 682 -222
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 616 -288 682 -272
+rect 734 -238 800 -222
+rect 734 -272 750 -238
+rect 784 -272 800 -238
+rect 734 -288 800 -272
+rect 852 -238 918 -222
+rect 852 -272 868 -238
+rect 902 -272 918 -238
+rect 852 -288 918 -272
+rect 970 -238 1036 -222
+rect 970 -272 986 -238
+rect 1020 -272 1036 -238
+rect 970 -288 1036 -272
+rect 1088 -238 1154 -222
+rect 1088 -272 1104 -238
+rect 1138 -272 1154 -238
+rect 1088 -288 1154 -272
+<< polycont >>
+rect -1138 238 -1104 272
+rect -1020 238 -986 272
+rect -902 238 -868 272
+rect -784 238 -750 272
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect 750 238 784 272
+rect 868 238 902 272
+rect 986 238 1020 272
+rect 1104 238 1138 272
+rect -1138 -272 -1104 -238
+rect -1020 -272 -986 -238
+rect -902 -272 -868 -238
+rect -784 -272 -750 -238
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+rect 750 -272 784 -238
+rect 868 -272 902 -238
+rect 986 -272 1020 -238
+rect 1104 -272 1138 -238
+<< locali >>
+rect -1311 340 -1215 374
+rect 1215 340 1311 374
+rect -1311 278 -1277 340
+rect 1277 278 1311 340
+rect -1154 238 -1138 272
+rect -1104 238 -1088 272
+rect -1036 238 -1020 272
+rect -986 238 -970 272
+rect -918 238 -902 272
+rect -868 238 -852 272
+rect -800 238 -784 272
+rect -750 238 -734 272
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect 616 238 632 272
+rect 666 238 682 272
+rect 734 238 750 272
+rect 784 238 800 272
+rect 852 238 868 272
+rect 902 238 918 272
+rect 970 238 986 272
+rect 1020 238 1036 272
+rect 1088 238 1104 272
+rect 1138 238 1154 272
+rect -1197 188 -1163 204
+rect -1197 -204 -1163 -188
+rect -1079 188 -1045 204
+rect -1079 -204 -1045 -188
+rect -961 188 -927 204
+rect -961 -204 -927 -188
+rect -843 188 -809 204
+rect -843 -204 -809 -188
+rect -725 188 -691 204
+rect -725 -204 -691 -188
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect 691 188 725 204
+rect 691 -204 725 -188
+rect 809 188 843 204
+rect 809 -204 843 -188
+rect 927 188 961 204
+rect 927 -204 961 -188
+rect 1045 188 1079 204
+rect 1045 -204 1079 -188
+rect 1163 188 1197 204
+rect 1163 -204 1197 -188
+rect -1154 -272 -1138 -238
+rect -1104 -272 -1088 -238
+rect -1036 -272 -1020 -238
+rect -986 -272 -970 -238
+rect -918 -272 -902 -238
+rect -868 -272 -852 -238
+rect -800 -272 -784 -238
+rect -750 -272 -734 -238
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 734 -272 750 -238
+rect 784 -272 800 -238
+rect 852 -272 868 -238
+rect 902 -272 918 -238
+rect 970 -272 986 -238
+rect 1020 -272 1036 -238
+rect 1088 -272 1104 -238
+rect 1138 -272 1154 -238
+rect -1311 -340 -1277 -278
+rect 1277 -340 1311 -278
+rect -1311 -374 -1215 -340
+rect 1215 -374 1311 -340
+<< viali >>
+rect -1138 238 -1104 272
+rect -1020 238 -986 272
+rect -902 238 -868 272
+rect -784 238 -750 272
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect 750 238 784 272
+rect 868 238 902 272
+rect 986 238 1020 272
+rect 1104 238 1138 272
+rect -1197 -188 -1163 188
+rect -1079 -188 -1045 188
+rect -961 -188 -927 188
+rect -843 -188 -809 188
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect 809 -188 843 188
+rect 927 -188 961 188
+rect 1045 -188 1079 188
+rect 1163 -188 1197 188
+rect -1138 -272 -1104 -238
+rect -1020 -272 -986 -238
+rect -902 -272 -868 -238
+rect -784 -272 -750 -238
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+rect 750 -272 784 -238
+rect 868 -272 902 -238
+rect 986 -272 1020 -238
+rect 1104 -272 1138 -238
+<< metal1 >>
+rect -1150 272 -1092 278
+rect -1150 238 -1138 272
+rect -1104 238 -1092 272
+rect -1150 232 -1092 238
+rect -1032 272 -974 278
+rect -1032 238 -1020 272
+rect -986 238 -974 272
+rect -1032 232 -974 238
+rect -914 272 -856 278
+rect -914 238 -902 272
+rect -868 238 -856 272
+rect -914 232 -856 238
+rect -796 272 -738 278
+rect -796 238 -784 272
+rect -750 238 -738 272
+rect -796 232 -738 238
+rect -678 272 -620 278
+rect -678 238 -666 272
+rect -632 238 -620 272
+rect -678 232 -620 238
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect 620 272 678 278
+rect 620 238 632 272
+rect 666 238 678 272
+rect 620 232 678 238
+rect 738 272 796 278
+rect 738 238 750 272
+rect 784 238 796 272
+rect 738 232 796 238
+rect 856 272 914 278
+rect 856 238 868 272
+rect 902 238 914 272
+rect 856 232 914 238
+rect 974 272 1032 278
+rect 974 238 986 272
+rect 1020 238 1032 272
+rect 974 232 1032 238
+rect 1092 272 1150 278
+rect 1092 238 1104 272
+rect 1138 238 1150 272
+rect 1092 232 1150 238
+rect -1203 188 -1157 200
+rect -1203 -188 -1197 188
+rect -1163 -188 -1157 188
+rect -1203 -200 -1157 -188
+rect -1085 188 -1039 200
+rect -1085 -188 -1079 188
+rect -1045 -188 -1039 188
+rect -1085 -200 -1039 -188
+rect -967 188 -921 200
+rect -967 -188 -961 188
+rect -927 -188 -921 188
+rect -967 -200 -921 -188
+rect -849 188 -803 200
+rect -849 -188 -843 188
+rect -809 -188 -803 188
+rect -849 -200 -803 -188
+rect -731 188 -685 200
+rect -731 -188 -725 188
+rect -691 -188 -685 188
+rect -731 -200 -685 -188
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect 685 188 731 200
+rect 685 -188 691 188
+rect 725 -188 731 188
+rect 685 -200 731 -188
+rect 803 188 849 200
+rect 803 -188 809 188
+rect 843 -188 849 188
+rect 803 -200 849 -188
+rect 921 188 967 200
+rect 921 -188 927 188
+rect 961 -188 967 188
+rect 921 -200 967 -188
+rect 1039 188 1085 200
+rect 1039 -188 1045 188
+rect 1079 -188 1085 188
+rect 1039 -200 1085 -188
+rect 1157 188 1203 200
+rect 1157 -188 1163 188
+rect 1197 -188 1203 188
+rect 1157 -200 1203 -188
+rect -1150 -238 -1092 -232
+rect -1150 -272 -1138 -238
+rect -1104 -272 -1092 -238
+rect -1150 -278 -1092 -272
+rect -1032 -238 -974 -232
+rect -1032 -272 -1020 -238
+rect -986 -272 -974 -238
+rect -1032 -278 -974 -272
+rect -914 -238 -856 -232
+rect -914 -272 -902 -238
+rect -868 -272 -856 -238
+rect -914 -278 -856 -272
+rect -796 -238 -738 -232
+rect -796 -272 -784 -238
+rect -750 -272 -738 -238
+rect -796 -278 -738 -272
+rect -678 -238 -620 -232
+rect -678 -272 -666 -238
+rect -632 -272 -620 -238
+rect -678 -278 -620 -272
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+rect 620 -238 678 -232
+rect 620 -272 632 -238
+rect 666 -272 678 -238
+rect 620 -278 678 -272
+rect 738 -238 796 -232
+rect 738 -272 750 -238
+rect 784 -272 796 -238
+rect 738 -278 796 -272
+rect 856 -238 914 -232
+rect 856 -272 868 -238
+rect 902 -272 914 -238
+rect 856 -278 914 -272
+rect 974 -238 1032 -232
+rect 974 -272 986 -238
+rect 1020 -272 1032 -238
+rect 974 -278 1032 -272
+rect 1092 -238 1150 -232
+rect 1092 -272 1104 -238
+rect 1138 -272 1150 -238
+rect 1092 -278 1150 -272
+<< properties >>
+string FIXED_BBOX -1294 -357 1294 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 20 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_SDPJLJ.mag b/mag/comp/sky130_fd_pr__nfet_01v8_SDPJLJ.mag
new file mode 100644
index 0000000..bb364e9
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_SDPJLJ.mag
@@ -0,0 +1,655 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654100279
+<< error_p >>
+rect -845 272 -787 278
+rect -653 272 -595 278
+rect -461 272 -403 278
+rect -269 272 -211 278
+rect -77 272 -19 278
+rect 115 272 173 278
+rect 307 272 365 278
+rect 499 272 557 278
+rect 691 272 749 278
+rect 883 272 941 278
+rect -845 238 -833 272
+rect -653 238 -641 272
+rect -461 238 -449 272
+rect -269 238 -257 272
+rect -77 238 -65 272
+rect 115 238 127 272
+rect 307 238 319 272
+rect 499 238 511 272
+rect 691 238 703 272
+rect 883 238 895 272
+rect -845 232 -787 238
+rect -653 232 -595 238
+rect -461 232 -403 238
+rect -269 232 -211 238
+rect -77 232 -19 238
+rect 115 232 173 238
+rect 307 232 365 238
+rect 499 232 557 238
+rect 691 232 749 238
+rect 883 232 941 238
+rect -941 -238 -883 -232
+rect -749 -238 -691 -232
+rect -557 -238 -499 -232
+rect -365 -238 -307 -232
+rect -173 -238 -115 -232
+rect 19 -238 77 -232
+rect 211 -238 269 -232
+rect 403 -238 461 -232
+rect 595 -238 653 -232
+rect 787 -238 845 -232
+rect -941 -272 -929 -238
+rect -749 -272 -737 -238
+rect -557 -272 -545 -238
+rect -365 -272 -353 -238
+rect -173 -272 -161 -238
+rect 19 -272 31 -238
+rect 211 -272 223 -238
+rect 403 -272 415 -238
+rect 595 -272 607 -238
+rect 787 -272 799 -238
+rect -941 -278 -883 -272
+rect -749 -278 -691 -272
+rect -557 -278 -499 -272
+rect -365 -278 -307 -272
+rect -173 -278 -115 -272
+rect 19 -278 77 -272
+rect 211 -278 269 -272
+rect 403 -278 461 -272
+rect 595 -278 653 -272
+rect 787 -278 845 -272
+<< pwell >>
+rect -1127 -410 1127 410
+<< nmos >>
+rect -927 -200 -897 200
+rect -831 -200 -801 200
+rect -735 -200 -705 200
+rect -639 -200 -609 200
+rect -543 -200 -513 200
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect 513 -200 543 200
+rect 609 -200 639 200
+rect 705 -200 735 200
+rect 801 -200 831 200
+rect 897 -200 927 200
+<< ndiff >>
+rect -989 188 -927 200
+rect -989 -188 -977 188
+rect -943 -188 -927 188
+rect -989 -200 -927 -188
+rect -897 188 -831 200
+rect -897 -188 -881 188
+rect -847 -188 -831 188
+rect -897 -200 -831 -188
+rect -801 188 -735 200
+rect -801 -188 -785 188
+rect -751 -188 -735 188
+rect -801 -200 -735 -188
+rect -705 188 -639 200
+rect -705 -188 -689 188
+rect -655 -188 -639 188
+rect -705 -200 -639 -188
+rect -609 188 -543 200
+rect -609 -188 -593 188
+rect -559 -188 -543 188
+rect -609 -200 -543 -188
+rect -513 188 -447 200
+rect -513 -188 -497 188
+rect -463 -188 -447 188
+rect -513 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 513 200
+rect 447 -188 463 188
+rect 497 -188 513 188
+rect 447 -200 513 -188
+rect 543 188 609 200
+rect 543 -188 559 188
+rect 593 -188 609 188
+rect 543 -200 609 -188
+rect 639 188 705 200
+rect 639 -188 655 188
+rect 689 -188 705 188
+rect 639 -200 705 -188
+rect 735 188 801 200
+rect 735 -188 751 188
+rect 785 -188 801 188
+rect 735 -200 801 -188
+rect 831 188 897 200
+rect 831 -188 847 188
+rect 881 -188 897 188
+rect 831 -200 897 -188
+rect 927 188 989 200
+rect 927 -188 943 188
+rect 977 -188 989 188
+rect 927 -200 989 -188
+<< ndiffc >>
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+<< psubdiff >>
+rect -1091 340 -995 374
+rect 995 340 1091 374
+rect -1091 278 -1057 340
+rect 1057 278 1091 340
+rect -1091 -340 -1057 -278
+rect 1057 -340 1091 -278
+rect -1091 -374 -995 -340
+rect 995 -374 1091 -340
+<< psubdiffcont >>
+rect -995 340 995 374
+rect -1091 -278 -1057 278
+rect 1057 -278 1091 278
+rect -995 -374 995 -340
+<< poly >>
+rect -849 272 -783 288
+rect -849 238 -833 272
+rect -799 238 -783 272
+rect -927 200 -897 226
+rect -849 222 -783 238
+rect -657 272 -591 288
+rect -657 238 -641 272
+rect -607 238 -591 272
+rect -831 200 -801 222
+rect -735 200 -705 226
+rect -657 222 -591 238
+rect -465 272 -399 288
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -639 200 -609 222
+rect -543 200 -513 226
+rect -465 222 -399 238
+rect -273 272 -207 288
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -447 200 -417 222
+rect -351 200 -321 226
+rect -273 222 -207 238
+rect -81 272 -15 288
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect -255 200 -225 222
+rect -159 200 -129 226
+rect -81 222 -15 238
+rect 111 272 177 288
+rect 111 238 127 272
+rect 161 238 177 272
+rect -63 200 -33 222
+rect 33 200 63 226
+rect 111 222 177 238
+rect 303 272 369 288
+rect 303 238 319 272
+rect 353 238 369 272
+rect 129 200 159 222
+rect 225 200 255 226
+rect 303 222 369 238
+rect 495 272 561 288
+rect 495 238 511 272
+rect 545 238 561 272
+rect 321 200 351 222
+rect 417 200 447 226
+rect 495 222 561 238
+rect 687 272 753 288
+rect 687 238 703 272
+rect 737 238 753 272
+rect 513 200 543 222
+rect 609 200 639 226
+rect 687 222 753 238
+rect 879 272 945 288
+rect 879 238 895 272
+rect 929 238 945 272
+rect 705 200 735 222
+rect 801 200 831 226
+rect 879 222 945 238
+rect 897 200 927 222
+rect -927 -222 -897 -200
+rect -945 -238 -879 -222
+rect -831 -226 -801 -200
+rect -735 -222 -705 -200
+rect -945 -272 -929 -238
+rect -895 -272 -879 -238
+rect -945 -288 -879 -272
+rect -753 -238 -687 -222
+rect -639 -226 -609 -200
+rect -543 -222 -513 -200
+rect -753 -272 -737 -238
+rect -703 -272 -687 -238
+rect -753 -288 -687 -272
+rect -561 -238 -495 -222
+rect -447 -226 -417 -200
+rect -351 -222 -321 -200
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -561 -288 -495 -272
+rect -369 -238 -303 -222
+rect -255 -226 -225 -200
+rect -159 -222 -129 -200
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -369 -288 -303 -272
+rect -177 -238 -111 -222
+rect -63 -226 -33 -200
+rect 33 -222 63 -200
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect -177 -288 -111 -272
+rect 15 -238 81 -222
+rect 129 -226 159 -200
+rect 225 -222 255 -200
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 15 -288 81 -272
+rect 207 -238 273 -222
+rect 321 -226 351 -200
+rect 417 -222 447 -200
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 207 -288 273 -272
+rect 399 -238 465 -222
+rect 513 -226 543 -200
+rect 609 -222 639 -200
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect 399 -288 465 -272
+rect 591 -238 657 -222
+rect 705 -226 735 -200
+rect 801 -222 831 -200
+rect 591 -272 607 -238
+rect 641 -272 657 -238
+rect 591 -288 657 -272
+rect 783 -238 849 -222
+rect 897 -226 927 -200
+rect 783 -272 799 -238
+rect 833 -272 849 -238
+rect 783 -288 849 -272
+<< polycont >>
+rect -833 238 -799 272
+rect -641 238 -607 272
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect 703 238 737 272
+rect 895 238 929 272
+rect -929 -272 -895 -238
+rect -737 -272 -703 -238
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+rect 607 -272 641 -238
+rect 799 -272 833 -238
+<< locali >>
+rect -1091 340 -995 374
+rect 995 340 1091 374
+rect -1091 278 -1057 340
+rect 1057 278 1091 340
+rect -849 238 -833 272
+rect -799 238 -783 272
+rect -657 238 -641 272
+rect -607 238 -591 272
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect 111 238 127 272
+rect 161 238 177 272
+rect 303 238 319 272
+rect 353 238 369 272
+rect 495 238 511 272
+rect 545 238 561 272
+rect 687 238 703 272
+rect 737 238 753 272
+rect 879 238 895 272
+rect 929 238 945 272
+rect -977 188 -943 204
+rect -977 -204 -943 -188
+rect -881 188 -847 204
+rect -881 -204 -847 -188
+rect -785 188 -751 204
+rect -785 -204 -751 -188
+rect -689 188 -655 204
+rect -689 -204 -655 -188
+rect -593 188 -559 204
+rect -593 -204 -559 -188
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect 559 188 593 204
+rect 559 -204 593 -188
+rect 655 188 689 204
+rect 655 -204 689 -188
+rect 751 188 785 204
+rect 751 -204 785 -188
+rect 847 188 881 204
+rect 847 -204 881 -188
+rect 943 188 977 204
+rect 943 -204 977 -188
+rect -945 -272 -929 -238
+rect -895 -272 -879 -238
+rect -753 -272 -737 -238
+rect -703 -272 -687 -238
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect 591 -272 607 -238
+rect 641 -272 657 -238
+rect 783 -272 799 -238
+rect 833 -272 849 -238
+rect -1091 -340 -1057 -278
+rect 1057 -340 1091 -278
+rect -1091 -374 -995 -340
+rect 995 -374 1091 -340
+<< viali >>
+rect -833 238 -799 272
+rect -641 238 -607 272
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect 703 238 737 272
+rect 895 238 929 272
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+rect -929 -272 -895 -238
+rect -737 -272 -703 -238
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+rect 607 -272 641 -238
+rect 799 -272 833 -238
+<< metal1 >>
+rect -845 272 -787 278
+rect -845 238 -833 272
+rect -799 238 -787 272
+rect -845 232 -787 238
+rect -653 272 -595 278
+rect -653 238 -641 272
+rect -607 238 -595 272
+rect -653 232 -595 238
+rect -461 272 -403 278
+rect -461 238 -449 272
+rect -415 238 -403 272
+rect -461 232 -403 238
+rect -269 272 -211 278
+rect -269 238 -257 272
+rect -223 238 -211 272
+rect -269 232 -211 238
+rect -77 272 -19 278
+rect -77 238 -65 272
+rect -31 238 -19 272
+rect -77 232 -19 238
+rect 115 272 173 278
+rect 115 238 127 272
+rect 161 238 173 272
+rect 115 232 173 238
+rect 307 272 365 278
+rect 307 238 319 272
+rect 353 238 365 272
+rect 307 232 365 238
+rect 499 272 557 278
+rect 499 238 511 272
+rect 545 238 557 272
+rect 499 232 557 238
+rect 691 272 749 278
+rect 691 238 703 272
+rect 737 238 749 272
+rect 691 232 749 238
+rect 883 272 941 278
+rect 883 238 895 272
+rect 929 238 941 272
+rect 883 232 941 238
+rect -983 188 -937 200
+rect -983 -188 -977 188
+rect -943 -188 -937 188
+rect -983 -200 -937 -188
+rect -887 188 -841 200
+rect -887 -188 -881 188
+rect -847 -188 -841 188
+rect -887 -200 -841 -188
+rect -791 188 -745 200
+rect -791 -188 -785 188
+rect -751 -188 -745 188
+rect -791 -200 -745 -188
+rect -695 188 -649 200
+rect -695 -188 -689 188
+rect -655 -188 -649 188
+rect -695 -200 -649 -188
+rect -599 188 -553 200
+rect -599 -188 -593 188
+rect -559 -188 -553 188
+rect -599 -200 -553 -188
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect 553 188 599 200
+rect 553 -188 559 188
+rect 593 -188 599 188
+rect 553 -200 599 -188
+rect 649 188 695 200
+rect 649 -188 655 188
+rect 689 -188 695 188
+rect 649 -200 695 -188
+rect 745 188 791 200
+rect 745 -188 751 188
+rect 785 -188 791 188
+rect 745 -200 791 -188
+rect 841 188 887 200
+rect 841 -188 847 188
+rect 881 -188 887 188
+rect 841 -200 887 -188
+rect 937 188 983 200
+rect 937 -188 943 188
+rect 977 -188 983 188
+rect 937 -200 983 -188
+rect -941 -238 -883 -232
+rect -941 -272 -929 -238
+rect -895 -272 -883 -238
+rect -941 -278 -883 -272
+rect -749 -238 -691 -232
+rect -749 -272 -737 -238
+rect -703 -272 -691 -238
+rect -749 -278 -691 -272
+rect -557 -238 -499 -232
+rect -557 -272 -545 -238
+rect -511 -272 -499 -238
+rect -557 -278 -499 -272
+rect -365 -238 -307 -232
+rect -365 -272 -353 -238
+rect -319 -272 -307 -238
+rect -365 -278 -307 -272
+rect -173 -238 -115 -232
+rect -173 -272 -161 -238
+rect -127 -272 -115 -238
+rect -173 -278 -115 -272
+rect 19 -238 77 -232
+rect 19 -272 31 -238
+rect 65 -272 77 -238
+rect 19 -278 77 -272
+rect 211 -238 269 -232
+rect 211 -272 223 -238
+rect 257 -272 269 -238
+rect 211 -278 269 -272
+rect 403 -238 461 -232
+rect 403 -272 415 -238
+rect 449 -272 461 -238
+rect 403 -278 461 -272
+rect 595 -238 653 -232
+rect 595 -272 607 -238
+rect 641 -272 653 -238
+rect 595 -278 653 -272
+rect 787 -238 845 -232
+rect 787 -272 799 -238
+rect 833 -272 845 -238
+rect 787 -278 845 -272
+<< properties >>
+string FIXED_BBOX -1074 -357 1074 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 20 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.ext b/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.ext
new file mode 100644
index 0000000..eeaef22
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.ext
@@ -0,0 +1,15 @@
+timestamp 1654097028
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_15_n200#" 982 162.362 15 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n73_n200#" 982 162.362 -73 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n288#" 994 292.588 -33 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22032 1356 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n175_n374#" 0 0 -175 -374 ppd 0 0 0 0 0 0 0 0 0 0 70040 4120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70040 4120 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n73_n200#" "a_n33_n288#" 28.3324
+cap "a_15_n200#" "a_n73_n200#" 562.984
+cap "a_15_n200#" "a_n33_n288#" 28.3324
+device msubckt sky130_fd_pr__nfet_01v8 -15 -200 -14 -199 l=30 w=400 "a_n175_n374#" "a_n33_n288#" 60 0 "a_n73_n200#" 400 0 "a_15_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.mag b/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.mag
new file mode 100644
index 0000000..973db59
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_YT8PGU.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097028
+<< error_p >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect -29 232 29 238
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect -29 -278 29 -272
+<< pwell >>
+rect -211 -410 211 410
+<< nmos >>
+rect -15 -200 15 200
+<< ndiff >>
+rect -73 188 -15 200
+rect -73 -188 -61 188
+rect -27 -188 -15 188
+rect -73 -200 -15 -188
+rect 15 188 73 200
+rect 15 -188 27 188
+rect 61 -188 73 188
+rect 15 -200 73 -188
+<< ndiffc >>
+rect -61 -188 -27 188
+rect 27 -188 61 188
+<< psubdiff >>
+rect -175 340 -79 374
+rect 79 340 175 374
+rect -175 278 -141 340
+rect 141 278 175 340
+rect -175 -340 -141 -278
+rect 141 -340 175 -278
+rect -175 -374 -79 -340
+rect 79 -374 175 -340
+<< psubdiffcont >>
+rect -79 340 79 374
+rect -175 -278 -141 278
+rect 141 -278 175 278
+rect -79 -374 79 -340
+<< poly >>
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -33 222 33 238
+rect -15 200 15 222
+rect -15 -222 15 -200
+rect -33 -238 33 -222
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+<< polycont >>
+rect -17 238 17 272
+rect -17 -272 17 -238
+<< locali >>
+rect -175 340 -79 374
+rect 79 340 175 374
+rect -175 278 -141 340
+rect 141 278 175 340
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -61 188 -27 204
+rect -61 -204 -27 -188
+rect 27 188 61 204
+rect 27 -204 61 -188
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -175 -340 -141 -278
+rect 141 -340 175 -278
+rect -175 -374 -79 -340
+rect 79 -374 175 -340
+<< viali >>
+rect -17 238 17 272
+rect -61 -188 -27 188
+rect 27 -188 61 188
+rect -17 -272 17 -238
+<< metal1 >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect -67 188 -21 200
+rect -67 -188 -61 188
+rect -27 -188 -21 188
+rect -67 -200 -21 -188
+rect 21 188 67 200
+rect 21 -188 27 188
+rect 61 -188 67 188
+rect 21 -200 67 -188
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+<< properties >>
+string FIXED_BBOX -158 -357 158 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.ext b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.ext
new file mode 100644
index 0000000..a1399af
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.ext
@@ -0,0 +1,78 @@
+timestamp 1654069286
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_797_n200#" 982 164.024 797 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_679_n200#" 982 21.2305 679 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n200#" 982 21.2305 561 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n200#" 982 21.2305 443 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n200#" 982 21.2305 325 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 982 21.2305 207 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n200#" 982 21.2305 89 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.2305 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n200#" 982 21.2305 -147 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n200#" 982 21.2305 -265 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n200#" 982 21.2305 -383 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n200#" 982 21.2305 -501 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n200#" 982 21.2305 -619 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n200#" 982 21.2305 -737 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n855_n200#" 982 164.024 -855 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_734_n288#" 559 229.671 734 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_616_n288#" 559 167.658 616 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n288#" 559 167.658 498 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n288#" 559 167.658 380 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n288#" 559 167.658 262 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n288#" 559 167.658 144 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n288#" 559 167.658 26 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n288#" 559 167.658 -92 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n288#" 559 167.658 -210 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n288#" 559 167.658 -328 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n288#" 559 167.658 -446 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n288#" 559 167.658 -564 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n288#" 559 167.658 -682 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n800_n288#" 559 230.182 -800 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n957_n374#" 0 0 -957 -374 ppd 0 0 0 0 0 0 0 0 0 0 176392 10376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 176392 10376 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_207_n200#" "a_325_n200#" 341
+cap "a_n619_n200#" "a_n501_n200#" 341
+cap "a_262_n288#" "a_380_n288#" 149.246
+cap "a_144_n288#" "a_262_n288#" 149.246
+cap "a_n210_n288#" "a_n92_n288#" 149.246
+cap "a_498_n288#" "a_616_n288#" 149.246
+cap "a_26_n288#" "a_n92_n288#" 149.246
+cap "a_561_n200#" "a_679_n200#" 341
+cap "a_207_n200#" "a_89_n200#" 341
+cap "a_n265_n200#" "a_n147_n200#" 341
+cap "a_325_n200#" "a_443_n200#" 341
+cap "a_n446_n288#" "a_n328_n288#" 149.246
+cap "a_n446_n288#" "a_n564_n288#" 149.246
+cap "a_n800_n288#" "a_n682_n288#" 149.246
+cap "a_89_n200#" "a_n29_n200#" 341
+cap "a_n501_n200#" "a_n383_n200#" 341
+cap "a_144_n288#" "a_26_n288#" 149.246
+cap "a_n737_n200#" "a_n619_n200#" 341
+cap "a_734_n288#" "a_616_n288#" 149.246
+cap "a_n210_n288#" "a_n328_n288#" 149.246
+cap "a_498_n288#" "a_380_n288#" 149.246
+cap "a_679_n200#" "a_797_n200#" 341
+cap "a_n147_n200#" "a_n29_n200#" 341
+cap "a_443_n200#" "a_561_n200#" 341
+cap "a_n383_n200#" "a_n265_n200#" 341
+cap "a_n737_n200#" "a_n855_n200#" 341
+cap "a_n682_n288#" "a_n564_n288#" 149.246
+device msubckt sky130_fd_pr__nfet_01v8_lvt 737 -200 738 -199 l=60 w=400 "a_n957_n374#" "a_734_n288#" 120 0 "a_679_n200#" 400 0 "a_797_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 619 -200 620 -199 l=60 w=400 "a_n957_n374#" "a_616_n288#" 120 0 "a_561_n200#" 400 0 "a_679_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 501 -200 502 -199 l=60 w=400 "a_n957_n374#" "a_498_n288#" 120 0 "a_443_n200#" 400 0 "a_561_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 383 -200 384 -199 l=60 w=400 "a_n957_n374#" "a_380_n288#" 120 0 "a_325_n200#" 400 0 "a_443_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 265 -200 266 -199 l=60 w=400 "a_n957_n374#" "a_262_n288#" 120 0 "a_207_n200#" 400 0 "a_325_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 147 -200 148 -199 l=60 w=400 "a_n957_n374#" "a_144_n288#" 120 0 "a_89_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 -200 30 -199 l=60 w=400 "a_n957_n374#" "a_26_n288#" 120 0 "a_n29_n200#" 400 0 "a_89_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -89 -200 -88 -199 l=60 w=400 "a_n957_n374#" "a_n92_n288#" 120 0 "a_n147_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -200 -206 -199 l=60 w=400 "a_n957_n374#" "a_n210_n288#" 120 0 "a_n265_n200#" 400 0 "a_n147_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -325 -200 -324 -199 l=60 w=400 "a_n957_n374#" "a_n328_n288#" 120 0 "a_n383_n200#" 400 0 "a_n265_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -443 -200 -442 -199 l=60 w=400 "a_n957_n374#" "a_n446_n288#" 120 0 "a_n501_n200#" 400 0 "a_n383_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -561 -200 -560 -199 l=60 w=400 "a_n957_n374#" "a_n564_n288#" 120 0 "a_n619_n200#" 400 0 "a_n501_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -679 -200 -678 -199 l=60 w=400 "a_n957_n374#" "a_n682_n288#" 120 0 "a_n737_n200#" 400 0 "a_n619_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -797 -200 -796 -199 l=60 w=400 "a_n957_n374#" "a_n800_n288#" 120 0 "a_n855_n200#" 400 0 "a_n737_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.mag
new file mode 100644
index 0000000..c4460cd
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_89U4GD.mag
@@ -0,0 +1,685 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654069286
+<< error_p >>
+rect -796 272 -738 278
+rect -678 272 -620 278
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect 620 272 678 278
+rect 738 272 796 278
+rect -796 238 -784 272
+rect -678 238 -666 272
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect 620 238 632 272
+rect 738 238 750 272
+rect -796 232 -738 238
+rect -678 232 -620 238
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect 620 232 678 238
+rect 738 232 796 238
+rect -796 -238 -738 -232
+rect -678 -238 -620 -232
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect 620 -238 678 -232
+rect 738 -238 796 -232
+rect -796 -272 -784 -238
+rect -678 -272 -666 -238
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect 620 -272 632 -238
+rect 738 -272 750 -238
+rect -796 -278 -738 -272
+rect -678 -278 -620 -272
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+rect 620 -278 678 -272
+rect 738 -278 796 -272
+<< pwell >>
+rect -993 -410 993 410
+<< nmoslvt >>
+rect -797 -200 -737 200
+rect -679 -200 -619 200
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+rect 619 -200 679 200
+rect 737 -200 797 200
+<< ndiff >>
+rect -855 188 -797 200
+rect -855 -188 -843 188
+rect -809 -188 -797 188
+rect -855 -200 -797 -188
+rect -737 188 -679 200
+rect -737 -188 -725 188
+rect -691 -188 -679 188
+rect -737 -200 -679 -188
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+rect 679 188 737 200
+rect 679 -188 691 188
+rect 725 -188 737 188
+rect 679 -200 737 -188
+rect 797 188 855 200
+rect 797 -188 809 188
+rect 843 -188 855 188
+rect 797 -200 855 -188
+<< ndiffc >>
+rect -843 -188 -809 188
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect 809 -188 843 188
+<< psubdiff >>
+rect -957 340 -861 374
+rect 861 340 957 374
+rect -957 278 -923 340
+rect 923 278 957 340
+rect -957 -340 -923 -278
+rect 923 -340 957 -278
+rect -957 -374 -861 -340
+rect 861 -374 957 -340
+<< psubdiffcont >>
+rect -861 340 861 374
+rect -957 -278 -923 278
+rect 923 -278 957 278
+rect -861 -374 861 -340
+<< poly >>
+rect -800 272 -734 288
+rect -800 238 -784 272
+rect -750 238 -734 272
+rect -800 222 -734 238
+rect -682 272 -616 288
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -682 222 -616 238
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect 616 272 682 288
+rect 616 238 632 272
+rect 666 238 682 272
+rect 616 222 682 238
+rect 734 272 800 288
+rect 734 238 750 272
+rect 784 238 800 272
+rect 734 222 800 238
+rect -797 200 -737 222
+rect -679 200 -619 222
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect 619 200 679 222
+rect 737 200 797 222
+rect -797 -222 -737 -200
+rect -679 -222 -619 -200
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect 619 -222 679 -200
+rect 737 -222 797 -200
+rect -800 -238 -734 -222
+rect -800 -272 -784 -238
+rect -750 -272 -734 -238
+rect -800 -288 -734 -272
+rect -682 -238 -616 -222
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -682 -288 -616 -272
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+rect 616 -238 682 -222
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 616 -288 682 -272
+rect 734 -238 800 -222
+rect 734 -272 750 -238
+rect 784 -272 800 -238
+rect 734 -288 800 -272
+<< polycont >>
+rect -784 238 -750 272
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect 750 238 784 272
+rect -784 -272 -750 -238
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+rect 750 -272 784 -238
+<< locali >>
+rect -957 340 -861 374
+rect 861 340 957 374
+rect -957 278 -923 340
+rect 923 278 957 340
+rect -800 238 -784 272
+rect -750 238 -734 272
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect 616 238 632 272
+rect 666 238 682 272
+rect 734 238 750 272
+rect 784 238 800 272
+rect -843 188 -809 204
+rect -843 -204 -809 -188
+rect -725 188 -691 204
+rect -725 -204 -691 -188
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect 691 188 725 204
+rect 691 -204 725 -188
+rect 809 188 843 204
+rect 809 -204 843 -188
+rect -800 -272 -784 -238
+rect -750 -272 -734 -238
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 734 -272 750 -238
+rect 784 -272 800 -238
+rect -957 -340 -923 -278
+rect 923 -340 957 -278
+rect -957 -374 -861 -340
+rect 861 -374 957 -340
+<< viali >>
+rect -784 238 -750 272
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect 750 238 784 272
+rect -843 -188 -809 188
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect 809 -188 843 188
+rect -784 -272 -750 -238
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+rect 750 -272 784 -238
+<< metal1 >>
+rect -796 272 -738 278
+rect -796 238 -784 272
+rect -750 238 -738 272
+rect -796 232 -738 238
+rect -678 272 -620 278
+rect -678 238 -666 272
+rect -632 238 -620 272
+rect -678 232 -620 238
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect 620 272 678 278
+rect 620 238 632 272
+rect 666 238 678 272
+rect 620 232 678 238
+rect 738 272 796 278
+rect 738 238 750 272
+rect 784 238 796 272
+rect 738 232 796 238
+rect -849 188 -803 200
+rect -849 -188 -843 188
+rect -809 -188 -803 188
+rect -849 -200 -803 -188
+rect -731 188 -685 200
+rect -731 -188 -725 188
+rect -691 -188 -685 188
+rect -731 -200 -685 -188
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect 685 188 731 200
+rect 685 -188 691 188
+rect 725 -188 731 188
+rect 685 -200 731 -188
+rect 803 188 849 200
+rect 803 -188 809 188
+rect 843 -188 849 188
+rect 803 -200 849 -188
+rect -796 -238 -738 -232
+rect -796 -272 -784 -238
+rect -750 -272 -738 -238
+rect -796 -278 -738 -272
+rect -678 -238 -620 -232
+rect -678 -272 -666 -238
+rect -632 -272 -620 -238
+rect -678 -278 -620 -272
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+rect 620 -238 678 -232
+rect 620 -272 632 -238
+rect 666 -272 678 -238
+rect 620 -278 678 -272
+rect 738 -238 796 -232
+rect 738 -272 750 -238
+rect 784 -272 796 -238
+rect 738 -278 796 -272
+<< properties >>
+string FIXED_BBOX -940 -357 940 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 14 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.ext b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.ext
new file mode 100644
index 0000000..5fc1145
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.ext
@@ -0,0 +1,78 @@
+timestamp 1654002310
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_399_n200#" 929 163.598 399 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n200#" 882 20.3377 303 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 882 20.3377 207 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n200#" 882 20.3377 111 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n200#" 882 20.3377 15 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n200#" 882 20.3377 -81 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n200#" 882 20.3377 -177 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n200#" 882 20.3377 -273 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n200#" 882 20.3377 -369 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n461_n200#" 929 163.598 -461 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n288#" 837 143.434 351 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n288#" 837 106.785 159 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_222#" 837 126.676 255 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n288#" 837 106.785 -33 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_222#" 837 106.785 63 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n288#" 837 106.785 -225 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_222#" 837 106.785 -129 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n288#" 837 143.688 -417 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_222#" 837 126.93 -321 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n563_n374#" 0 0 -563 -374 ppd 0 0 0 0 0 0 0 0 0 0 122808 7224 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122808 7224 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_63_222#" "a_255_222#" 28.5878
+cap "a_n321_222#" "a_n273_n200#" 6.25956
+cap "a_303_n200#" "a_207_n200#" 479.458
+cap "a_15_n200#" "a_n33_n288#" 6.25956
+cap "a_207_n200#" "a_159_n288#" 6.25956
+cap "a_n321_222#" "a_n369_n200#" 6.25956
+cap "a_63_222#" "a_n33_n288#" 14.1667
+cap "a_111_n200#" "a_207_n200#" 479.458
+cap "a_n81_n200#" "a_n33_n288#" 6.25956
+cap "a_n129_222#" "a_63_222#" 28.5878
+cap "a_n461_n200#" "a_n369_n200#" 479.458
+cap "a_n129_222#" "a_n81_n200#" 6.25956
+cap "a_n129_222#" "a_n33_n288#" 14.1667
+cap "a_255_222#" "a_351_n288#" 14.1667
+cap "a_n321_222#" "a_n225_n288#" 14.1667
+cap "a_255_222#" "a_303_n200#" 6.25956
+cap "a_111_n200#" "a_15_n200#" 479.458
+cap "a_63_222#" "a_159_n288#" 14.1667
+cap "a_255_222#" "a_159_n288#" 14.1667
+cap "a_111_n200#" "a_63_222#" 6.25956
+cap "a_n177_n200#" "a_n81_n200#" 479.458
+cap "a_159_n288#" "a_n33_n288#" 28.5878
+cap "a_399_n200#" "a_351_n288#" 6.25956
+cap "a_303_n200#" "a_399_n200#" 479.458
+cap "a_n177_n200#" "a_n129_222#" 6.25956
+cap "a_n417_n288#" "a_n369_n200#" 6.25956
+cap "a_303_n200#" "a_351_n288#" 6.25956
+cap "a_159_n288#" "a_351_n288#" 28.5878
+cap "a_n225_n288#" "a_n33_n288#" 28.5878
+cap "a_111_n200#" "a_159_n288#" 6.25956
+cap "a_n369_n200#" "a_n273_n200#" 479.458
+cap "a_n177_n200#" "a_n273_n200#" 479.458
+cap "a_n129_222#" "a_n225_n288#" 14.1667
+cap "a_n417_n288#" "a_n225_n288#" 28.5878
+cap "a_255_222#" "a_207_n200#" 6.25956
+cap "a_n129_222#" "a_n321_222#" 28.5878
+cap "a_n225_n288#" "a_n273_n200#" 6.25956
+cap "a_n417_n288#" "a_n321_222#" 14.1667
+cap "a_n177_n200#" "a_n225_n288#" 6.25956
+cap "a_n417_n288#" "a_n461_n200#" 6.25956
+cap "a_63_222#" "a_15_n200#" 6.25956
+cap "a_n81_n200#" "a_15_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8_lvt 369 -200 370 -199 l=30 w=400 "a_n563_n374#" "a_351_n288#" 60 0 "a_303_n200#" 400 0 "a_399_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 273 -200 274 -199 l=30 w=400 "a_n563_n374#" "a_255_222#" 60 0 "a_207_n200#" 400 0 "a_303_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 177 -200 178 -199 l=30 w=400 "a_n563_n374#" "a_159_n288#" 60 0 "a_111_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 81 -200 82 -199 l=30 w=400 "a_n563_n374#" "a_63_222#" 60 0 "a_15_n200#" 400 0 "a_111_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -15 -200 -14 -199 l=30 w=400 "a_n563_n374#" "a_n33_n288#" 60 0 "a_n81_n200#" 400 0 "a_15_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -111 -200 -110 -199 l=30 w=400 "a_n563_n374#" "a_n129_222#" 60 0 "a_n177_n200#" 400 0 "a_n81_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -200 -206 -199 l=30 w=400 "a_n563_n374#" "a_n225_n288#" 60 0 "a_n273_n200#" 400 0 "a_n177_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -303 -200 -302 -199 l=30 w=400 "a_n563_n374#" "a_n321_222#" 60 0 "a_n369_n200#" 400 0 "a_n273_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -399 -200 -398 -199 l=30 w=400 "a_n563_n374#" "a_n417_n288#" 60 0 "a_n461_n200#" 400 0 "a_n369_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.mag
new file mode 100644
index 0000000..a35995c
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_DG2JGC.mag
@@ -0,0 +1,325 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654002310
+<< error_p >>
+rect -317 272 -259 278
+rect -125 272 -67 278
+rect 67 272 125 278
+rect 259 272 317 278
+rect -317 238 -305 272
+rect -125 238 -113 272
+rect 67 238 79 272
+rect 259 238 271 272
+rect -317 232 -259 238
+rect -125 232 -67 238
+rect 67 232 125 238
+rect 259 232 317 238
+rect -413 -238 -355 -232
+rect -221 -238 -163 -232
+rect -29 -238 29 -232
+rect 163 -238 221 -232
+rect 355 -238 413 -232
+rect -413 -272 -401 -238
+rect -221 -272 -209 -238
+rect -29 -272 -17 -238
+rect 163 -272 175 -238
+rect 355 -272 367 -238
+rect -413 -278 -355 -272
+rect -221 -278 -163 -272
+rect -29 -278 29 -272
+rect 163 -278 221 -272
+rect 355 -278 413 -272
+<< pwell >>
+rect -599 -410 599 410
+<< nmoslvt >>
+rect -399 -200 -369 200
+rect -303 -200 -273 200
+rect -207 -200 -177 200
+rect -111 -200 -81 200
+rect -15 -200 15 200
+rect 81 -200 111 200
+rect 177 -200 207 200
+rect 273 -200 303 200
+rect 369 -200 399 200
+<< ndiff >>
+rect -461 188 -399 200
+rect -461 -188 -449 188
+rect -415 -188 -399 188
+rect -461 -200 -399 -188
+rect -369 188 -303 200
+rect -369 -188 -353 188
+rect -319 -188 -303 188
+rect -369 -200 -303 -188
+rect -273 188 -207 200
+rect -273 -188 -257 188
+rect -223 -188 -207 188
+rect -273 -200 -207 -188
+rect -177 188 -111 200
+rect -177 -188 -161 188
+rect -127 -188 -111 188
+rect -177 -200 -111 -188
+rect -81 188 -15 200
+rect -81 -188 -65 188
+rect -31 -188 -15 188
+rect -81 -200 -15 -188
+rect 15 188 81 200
+rect 15 -188 31 188
+rect 65 -188 81 188
+rect 15 -200 81 -188
+rect 111 188 177 200
+rect 111 -188 127 188
+rect 161 -188 177 188
+rect 111 -200 177 -188
+rect 207 188 273 200
+rect 207 -188 223 188
+rect 257 -188 273 188
+rect 207 -200 273 -188
+rect 303 188 369 200
+rect 303 -188 319 188
+rect 353 -188 369 188
+rect 303 -200 369 -188
+rect 399 188 461 200
+rect 399 -188 415 188
+rect 449 -188 461 188
+rect 399 -200 461 -188
+<< ndiffc >>
+rect -449 -188 -415 188
+rect -353 -188 -319 188
+rect -257 -188 -223 188
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+rect 223 -188 257 188
+rect 319 -188 353 188
+rect 415 -188 449 188
+<< psubdiff >>
+rect -563 340 -467 374
+rect 467 340 563 374
+rect -563 278 -529 340
+rect 529 278 563 340
+rect -563 -340 -529 -278
+rect 529 -340 563 -278
+rect -563 -374 -467 -340
+rect 467 -374 563 -340
+<< psubdiffcont >>
+rect -467 340 467 374
+rect -563 -278 -529 278
+rect 529 -278 563 278
+rect -467 -374 467 -340
+<< poly >>
+rect -321 272 -255 288
+rect -321 238 -305 272
+rect -271 238 -255 272
+rect -399 200 -369 226
+rect -321 222 -255 238
+rect -129 272 -63 288
+rect -129 238 -113 272
+rect -79 238 -63 272
+rect -303 200 -273 222
+rect -207 200 -177 226
+rect -129 222 -63 238
+rect 63 272 129 288
+rect 63 238 79 272
+rect 113 238 129 272
+rect -111 200 -81 222
+rect -15 200 15 226
+rect 63 222 129 238
+rect 255 272 321 288
+rect 255 238 271 272
+rect 305 238 321 272
+rect 81 200 111 222
+rect 177 200 207 226
+rect 255 222 321 238
+rect 273 200 303 222
+rect 369 200 399 226
+rect -399 -222 -369 -200
+rect -417 -238 -351 -222
+rect -303 -226 -273 -200
+rect -207 -222 -177 -200
+rect -417 -272 -401 -238
+rect -367 -272 -351 -238
+rect -417 -288 -351 -272
+rect -225 -238 -159 -222
+rect -111 -226 -81 -200
+rect -15 -222 15 -200
+rect -225 -272 -209 -238
+rect -175 -272 -159 -238
+rect -225 -288 -159 -272
+rect -33 -238 33 -222
+rect 81 -226 111 -200
+rect 177 -222 207 -200
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+rect 159 -238 225 -222
+rect 273 -226 303 -200
+rect 369 -222 399 -200
+rect 159 -272 175 -238
+rect 209 -272 225 -238
+rect 159 -288 225 -272
+rect 351 -238 417 -222
+rect 351 -272 367 -238
+rect 401 -272 417 -238
+rect 351 -288 417 -272
+<< polycont >>
+rect -305 238 -271 272
+rect -113 238 -79 272
+rect 79 238 113 272
+rect 271 238 305 272
+rect -401 -272 -367 -238
+rect -209 -272 -175 -238
+rect -17 -272 17 -238
+rect 175 -272 209 -238
+rect 367 -272 401 -238
+<< locali >>
+rect -563 340 -467 374
+rect 467 340 563 374
+rect -563 278 -529 340
+rect 529 278 563 340
+rect -321 238 -305 272
+rect -271 238 -255 272
+rect -129 238 -113 272
+rect -79 238 -63 272
+rect 63 238 79 272
+rect 113 238 129 272
+rect 255 238 271 272
+rect 305 238 321 272
+rect -449 188 -415 204
+rect -449 -204 -415 -188
+rect -353 188 -319 204
+rect -353 -204 -319 -188
+rect -257 188 -223 204
+rect -257 -204 -223 -188
+rect -161 188 -127 204
+rect -161 -204 -127 -188
+rect -65 188 -31 204
+rect -65 -204 -31 -188
+rect 31 188 65 204
+rect 31 -204 65 -188
+rect 127 188 161 204
+rect 127 -204 161 -188
+rect 223 188 257 204
+rect 223 -204 257 -188
+rect 319 188 353 204
+rect 319 -204 353 -188
+rect 415 188 449 204
+rect 415 -204 449 -188
+rect -417 -272 -401 -238
+rect -367 -272 -351 -238
+rect -225 -272 -209 -238
+rect -175 -272 -159 -238
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect 159 -272 175 -238
+rect 209 -272 225 -238
+rect 351 -272 367 -238
+rect 401 -272 417 -238
+rect -563 -340 -529 -278
+rect 529 -340 563 -278
+rect -563 -374 -467 -340
+rect 467 -374 563 -340
+<< viali >>
+rect -305 238 -271 272
+rect -113 238 -79 272
+rect 79 238 113 272
+rect 271 238 305 272
+rect -449 -188 -415 188
+rect -353 -188 -319 188
+rect -257 -188 -223 188
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+rect 223 -188 257 188
+rect 319 -188 353 188
+rect 415 -188 449 188
+rect -401 -272 -367 -238
+rect -209 -272 -175 -238
+rect -17 -272 17 -238
+rect 175 -272 209 -238
+rect 367 -272 401 -238
+<< metal1 >>
+rect -317 272 -259 278
+rect -317 238 -305 272
+rect -271 238 -259 272
+rect -317 232 -259 238
+rect -125 272 -67 278
+rect -125 238 -113 272
+rect -79 238 -67 272
+rect -125 232 -67 238
+rect 67 272 125 278
+rect 67 238 79 272
+rect 113 238 125 272
+rect 67 232 125 238
+rect 259 272 317 278
+rect 259 238 271 272
+rect 305 238 317 272
+rect 259 232 317 238
+rect -455 188 -409 200
+rect -455 -188 -449 188
+rect -415 -188 -409 188
+rect -455 -200 -409 -188
+rect -359 188 -313 200
+rect -359 -188 -353 188
+rect -319 -188 -313 188
+rect -359 -200 -313 -188
+rect -263 188 -217 200
+rect -263 -188 -257 188
+rect -223 -188 -217 188
+rect -263 -200 -217 -188
+rect -167 188 -121 200
+rect -167 -188 -161 188
+rect -127 -188 -121 188
+rect -167 -200 -121 -188
+rect -71 188 -25 200
+rect -71 -188 -65 188
+rect -31 -188 -25 188
+rect -71 -200 -25 -188
+rect 25 188 71 200
+rect 25 -188 31 188
+rect 65 -188 71 188
+rect 25 -200 71 -188
+rect 121 188 167 200
+rect 121 -188 127 188
+rect 161 -188 167 188
+rect 121 -200 167 -188
+rect 217 188 263 200
+rect 217 -188 223 188
+rect 257 -188 263 188
+rect 217 -200 263 -188
+rect 313 188 359 200
+rect 313 -188 319 188
+rect 353 -188 359 188
+rect 313 -200 359 -188
+rect 409 188 455 200
+rect 409 -188 415 188
+rect 449 -188 455 188
+rect 409 -200 455 -188
+rect -413 -238 -355 -232
+rect -413 -272 -401 -238
+rect -367 -272 -355 -238
+rect -413 -278 -355 -272
+rect -221 -238 -163 -232
+rect -221 -272 -209 -238
+rect -175 -272 -163 -238
+rect -221 -278 -163 -272
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+rect 163 -238 221 -232
+rect 163 -272 175 -238
+rect 209 -272 221 -238
+rect 163 -278 221 -272
+rect 355 -238 413 -232
+rect 355 -272 367 -238
+rect 401 -272 413 -238
+rect 355 -278 413 -272
+<< properties >>
+string FIXED_BBOX -546 -357 546 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 9 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.ext b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.ext
new file mode 100644
index 0000000..624ae1a
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.ext
@@ -0,0 +1,68 @@
+timestamp 1654072472
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_679_n200#" 982 164.024 679 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n200#" 982 21.2305 561 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n200#" 982 21.2305 443 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n200#" 982 21.2305 325 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 982 21.2305 207 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n200#" 982 21.2305 89 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.2305 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n200#" 982 21.2305 -147 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n200#" 982 21.2305 -265 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n200#" 982 21.2305 -383 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n200#" 982 21.2305 -501 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n200#" 982 21.2305 -619 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n200#" 982 164.024 -737 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_n288#" 559 229.671 616 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n288#" 559 167.658 498 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n288#" 559 167.658 380 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n288#" 559 167.658 262 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n288#" 559 167.658 144 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n288#" 559 167.658 26 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n288#" 559 167.658 -92 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n288#" 559 167.658 -210 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n288#" 559 167.658 -328 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n288#" 559 167.658 -446 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n288#" 559 167.658 -564 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n288#" 559 230.182 -682 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n839_n374#" 0 0 -839 -374 ppd 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_207_n200#" "a_325_n200#" 341
+cap "a_561_n200#" "a_679_n200#" 341
+cap "a_498_n288#" "a_380_n288#" 149.246
+cap "a_n383_n200#" "a_n501_n200#" 341
+cap "a_325_n200#" "a_443_n200#" 341
+cap "a_n446_n288#" "a_n564_n288#" 149.246
+cap "a_n501_n200#" "a_n619_n200#" 341
+cap "a_n147_n200#" "a_n29_n200#" 341
+cap "a_616_n288#" "a_498_n288#" 149.246
+cap "a_262_n288#" "a_380_n288#" 149.246
+cap "a_n737_n200#" "a_n619_n200#" 341
+cap "a_89_n200#" "a_207_n200#" 341
+cap "a_n147_n200#" "a_n265_n200#" 341
+cap "a_n210_n288#" "a_n328_n288#" 149.246
+cap "a_n265_n200#" "a_n383_n200#" 341
+cap "a_89_n200#" "a_n29_n200#" 341
+cap "a_n446_n288#" "a_n328_n288#" 149.246
+cap "a_144_n288#" "a_26_n288#" 149.246
+cap "a_n564_n288#" "a_n682_n288#" 149.246
+cap "a_144_n288#" "a_262_n288#" 149.246
+cap "a_561_n200#" "a_443_n200#" 341
+cap "a_n92_n288#" "a_26_n288#" 149.246
+cap "a_n210_n288#" "a_n92_n288#" 149.246
+device msubckt sky130_fd_pr__nfet_01v8_lvt 619 -200 620 -199 l=60 w=400 "a_n839_n374#" "a_616_n288#" 120 0 "a_561_n200#" 400 0 "a_679_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 501 -200 502 -199 l=60 w=400 "a_n839_n374#" "a_498_n288#" 120 0 "a_443_n200#" 400 0 "a_561_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 383 -200 384 -199 l=60 w=400 "a_n839_n374#" "a_380_n288#" 120 0 "a_325_n200#" 400 0 "a_443_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 265 -200 266 -199 l=60 w=400 "a_n839_n374#" "a_262_n288#" 120 0 "a_207_n200#" 400 0 "a_325_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 147 -200 148 -199 l=60 w=400 "a_n839_n374#" "a_144_n288#" 120 0 "a_89_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 -200 30 -199 l=60 w=400 "a_n839_n374#" "a_26_n288#" 120 0 "a_n29_n200#" 400 0 "a_89_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -89 -200 -88 -199 l=60 w=400 "a_n839_n374#" "a_n92_n288#" 120 0 "a_n147_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -200 -206 -199 l=60 w=400 "a_n839_n374#" "a_n210_n288#" 120 0 "a_n265_n200#" 400 0 "a_n147_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -325 -200 -324 -199 l=60 w=400 "a_n839_n374#" "a_n328_n288#" 120 0 "a_n383_n200#" 400 0 "a_n265_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -443 -200 -442 -199 l=60 w=400 "a_n839_n374#" "a_n446_n288#" 120 0 "a_n501_n200#" 400 0 "a_n383_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -561 -200 -560 -199 l=60 w=400 "a_n839_n374#" "a_n564_n288#" 120 0 "a_n619_n200#" 400 0 "a_n501_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -679 -200 -678 -199 l=60 w=400 "a_n839_n374#" "a_n682_n288#" 120 0 "a_n737_n200#" 400 0 "a_n619_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.mag
new file mode 100644
index 0000000..4249419
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_HR8DH9.mag
@@ -0,0 +1,595 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072472
+<< error_p >>
+rect -678 272 -620 278
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect 620 272 678 278
+rect -678 238 -666 272
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect 620 238 632 272
+rect -678 232 -620 238
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect 620 232 678 238
+rect -678 -238 -620 -232
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect 620 -238 678 -232
+rect -678 -272 -666 -238
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect 620 -272 632 -238
+rect -678 -278 -620 -272
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+rect 620 -278 678 -272
+<< pwell >>
+rect -875 -410 875 410
+<< nmoslvt >>
+rect -679 -200 -619 200
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+rect 619 -200 679 200
+<< ndiff >>
+rect -737 188 -679 200
+rect -737 -188 -725 188
+rect -691 -188 -679 188
+rect -737 -200 -679 -188
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+rect 679 188 737 200
+rect 679 -188 691 188
+rect 725 -188 737 188
+rect 679 -200 737 -188
+<< ndiffc >>
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+<< psubdiff >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< psubdiffcont >>
+rect -743 340 743 374
+rect -839 -278 -805 278
+rect 805 -278 839 278
+rect -743 -374 743 -340
+<< poly >>
+rect -682 272 -616 288
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -682 222 -616 238
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect 616 272 682 288
+rect 616 238 632 272
+rect 666 238 682 272
+rect 616 222 682 238
+rect -679 200 -619 222
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect 619 200 679 222
+rect -679 -222 -619 -200
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect 619 -222 679 -200
+rect -682 -238 -616 -222
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -682 -288 -616 -272
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+rect 616 -238 682 -222
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 616 -288 682 -272
+<< polycont >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< locali >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect 616 238 632 272
+rect 666 238 682 272
+rect -725 188 -691 204
+rect -725 -204 -691 -188
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect 691 188 725 204
+rect 691 -204 725 -188
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< viali >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< metal1 >>
+rect -678 272 -620 278
+rect -678 238 -666 272
+rect -632 238 -620 272
+rect -678 232 -620 238
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect 620 272 678 278
+rect 620 238 632 272
+rect 666 238 678 272
+rect 620 232 678 238
+rect -731 188 -685 200
+rect -731 -188 -725 188
+rect -691 -188 -685 188
+rect -731 -200 -685 -188
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect 685 188 731 200
+rect 685 -188 691 188
+rect 725 -188 731 188
+rect 685 -200 731 -188
+rect -678 -238 -620 -232
+rect -678 -272 -666 -238
+rect -632 -272 -620 -238
+rect -678 -278 -620 -272
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+rect 620 -238 678 -232
+rect 620 -272 632 -238
+rect 666 -272 678 -238
+rect 620 -278 678 -272
+<< properties >>
+string FIXED_BBOX -822 -357 822 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext
new file mode 100644
index 0000000..96a74ee
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext
@@ -0,0 +1,22 @@
+timestamp 1654099286
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n81_n288#" "a_15_222#" 14.1667
+cap "a_n33_n200#" "a_n81_n288#" 6.25956
+cap "a_63_n200#" "a_15_222#" 6.25956
+cap "a_n33_n200#" "a_15_222#" 6.25956
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n125_n200#" "a_n81_n288#" 6.25956
+cap "a_n33_n200#" "a_n125_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag
new file mode 100644
index 0000000..bb2c16f
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654099286
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmoslvt >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_PFL2KG.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_PFL2KG.mag
new file mode 100644
index 0000000..ac4057d
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_PFL2KG.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653990785
+<< error_p >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect -29 232 29 238
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect -29 -278 29 -272
+<< pwell >>
+rect -226 -410 226 410
+<< nmoslvt >>
+rect -30 -200 30 200
+<< ndiff >>
+rect -88 188 -30 200
+rect -88 -188 -76 188
+rect -42 -188 -30 188
+rect -88 -200 -30 -188
+rect 30 188 88 200
+rect 30 -188 42 188
+rect 76 -188 88 188
+rect 30 -200 88 -188
+<< ndiffc >>
+rect -76 -188 -42 188
+rect 42 -188 76 188
+<< psubdiff >>
+rect -190 340 -94 374
+rect 94 340 190 374
+rect -190 278 -156 340
+rect 156 278 190 340
+rect -190 -340 -156 -278
+rect 156 -340 190 -278
+rect -190 -374 -94 -340
+rect 94 -374 190 -340
+<< psubdiffcont >>
+rect -94 340 94 374
+rect -190 -278 -156 278
+rect 156 -278 190 278
+rect -94 -374 94 -340
+<< poly >>
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -33 222 33 238
+rect -30 200 30 222
+rect -30 -222 30 -200
+rect -33 -238 33 -222
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+<< polycont >>
+rect -17 238 17 272
+rect -17 -272 17 -238
+<< locali >>
+rect -190 340 -94 374
+rect 94 340 190 374
+rect -190 278 -156 340
+rect 156 278 190 340
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -76 188 -42 204
+rect -76 -204 -42 -188
+rect 42 188 76 204
+rect 42 -204 76 -188
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -190 -340 -156 -278
+rect 156 -340 190 -278
+rect -190 -374 -94 -340
+rect 94 -374 190 -340
+<< viali >>
+rect -17 238 17 272
+rect -76 -188 -42 188
+rect 42 -188 76 188
+rect -17 -272 17 -238
+<< metal1 >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect -82 188 -36 200
+rect -82 -188 -76 188
+rect -42 -188 -36 188
+rect -82 -200 -36 -188
+rect 36 188 82 200
+rect 36 -188 42 188
+rect 76 -188 82 188
+rect 36 -200 82 -188
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+<< properties >>
+string FIXED_BBOX -173 -357 173 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_UNK5G5.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_UNK5G5.mag
new file mode 100644
index 0000000..96acf65
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_UNK5G5.mag
@@ -0,0 +1,505 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653990785
+<< error_p >>
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+<< pwell >>
+rect -757 -410 757 410
+<< nmoslvt >>
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+<< ndiff >>
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+<< ndiffc >>
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+<< psubdiff >>
+rect -721 340 -625 374
+rect 625 340 721 374
+rect -721 278 -687 340
+rect 687 278 721 340
+rect -721 -340 -687 -278
+rect 687 -340 721 -278
+rect -721 -374 -625 -340
+rect 625 -374 721 -340
+<< psubdiffcont >>
+rect -625 340 625 374
+rect -721 -278 -687 278
+rect 687 -278 721 278
+rect -625 -374 625 -340
+<< poly >>
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+<< polycont >>
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+<< locali >>
+rect -721 340 -625 374
+rect 625 340 721 374
+rect -721 278 -687 340
+rect 687 278 721 340
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect -721 -340 -687 -278
+rect 687 -340 721 -278
+rect -721 -374 -625 -340
+rect 625 -374 721 -340
+<< viali >>
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+<< metal1 >>
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+<< properties >>
+string FIXED_BBOX -704 -357 704 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.ext b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.ext
new file mode 100644
index 0000000..b9d06a7
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.ext
@@ -0,0 +1,54 @@
+timestamp 1654072472
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_255_n200#" 929 163.557 255 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n200#" 882 20.3377 159 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 882 20.3377 63 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 882 20.3377 -129 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 882 20.3377 -225 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n317_n200#" 929 163.598 -317 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n288#" 837 126.676 111 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_222#" 837 143.434 207 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 106.785 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 106.785 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n288#" 837 143.688 -273 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_222#" 837 126.93 -177 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n419_n374#" 0 0 -419 -374 ppd 0 0 0 0 0 0 0 0 0 0 103224 6072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 103224 6072 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_111_n288#" "a_63_n200#" 6.25956
+cap "a_207_222#" "a_111_n288#" 14.1667
+cap "a_15_222#" "a_n81_n288#" 14.1667
+cap "a_n81_n288#" "a_n129_n200#" 6.25956
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n81_n288#" "a_n273_n288#" 28.5878
+cap "a_n129_n200#" "a_n225_n200#" 479.458
+cap "a_n273_n288#" "a_n225_n200#" 6.25956
+cap "a_n81_n288#" "a_n177_222#" 14.1667
+cap "a_207_222#" "a_255_n200#" 6.25956
+cap "a_n177_222#" "a_n225_n200#" 6.25956
+cap "a_15_222#" "a_n177_222#" 28.5878
+cap "a_n317_n200#" "a_n225_n200#" 479.458
+cap "a_n177_222#" "a_n129_n200#" 6.25956
+cap "a_n273_n288#" "a_n177_222#" 14.1667
+cap "a_n273_n288#" "a_n317_n200#" 6.25956
+cap "a_n81_n288#" "a_111_n288#" 28.5878
+cap "a_n81_n288#" "a_n33_n200#" 6.25956
+cap "a_159_n200#" "a_111_n288#" 6.25956
+cap "a_15_222#" "a_111_n288#" 14.1667
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_n33_n200#" "a_n129_n200#" 479.458
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_15_222#" "a_63_n200#" 6.25956
+cap "a_159_n200#" "a_207_222#" 6.25956
+cap "a_15_222#" "a_207_222#" 28.5878
+cap "a_159_n200#" "a_255_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 -200 226 -199 l=30 w=400 "a_n419_n374#" "a_207_222#" 60 0 "a_159_n200#" 400 0 "a_255_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 129 -200 130 -199 l=30 w=400 "a_n419_n374#" "a_111_n288#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -200 34 -199 l=30 w=400 "a_n419_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -200 -62 -199 l=30 w=400 "a_n419_n374#" "a_n81_n288#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -159 -200 -158 -199 l=30 w=400 "a_n419_n374#" "a_n177_222#" 60 0 "a_n225_n200#" 400 0 "a_n129_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -255 -200 -254 -199 l=30 w=400 "a_n419_n374#" "a_n273_n288#" 60 0 "a_n317_n200#" 400 0 "a_n225_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.mag
new file mode 100644
index 0000000..6ad1fcc
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_V6SMGN.mag
@@ -0,0 +1,235 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072472
+<< error_p >>
+rect -173 272 -115 278
+rect 19 272 77 278
+rect 211 272 269 278
+rect -173 238 -161 272
+rect 19 238 31 272
+rect 211 238 223 272
+rect -173 232 -115 238
+rect 19 232 77 238
+rect 211 232 269 238
+rect -269 -238 -211 -232
+rect -77 -238 -19 -232
+rect 115 -238 173 -232
+rect -269 -272 -257 -238
+rect -77 -272 -65 -238
+rect 115 -272 127 -238
+rect -269 -278 -211 -272
+rect -77 -278 -19 -272
+rect 115 -278 173 -272
+<< pwell >>
+rect -455 -410 455 410
+<< nmoslvt >>
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+<< ndiff >>
+rect -317 188 -255 200
+rect -317 -188 -305 188
+rect -271 -188 -255 188
+rect -317 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 317 200
+rect 255 -188 271 188
+rect 305 -188 317 188
+rect 255 -200 317 -188
+<< ndiffc >>
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+<< psubdiff >>
+rect -419 340 -323 374
+rect 323 340 419 374
+rect -419 278 -385 340
+rect 385 278 419 340
+rect -419 -340 -385 -278
+rect 385 -340 419 -278
+rect -419 -374 -323 -340
+rect 323 -374 419 -340
+<< psubdiffcont >>
+rect -323 340 323 374
+rect -419 -278 -385 278
+rect 385 -278 419 278
+rect -323 -374 323 -340
+<< poly >>
+rect -177 272 -111 288
+rect -177 238 -161 272
+rect -127 238 -111 272
+rect -255 200 -225 226
+rect -177 222 -111 238
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -159 200 -129 222
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 207 272 273 288
+rect 207 238 223 272
+rect 257 238 273 272
+rect 33 200 63 222
+rect 129 200 159 226
+rect 207 222 273 238
+rect 225 200 255 222
+rect -255 -222 -225 -200
+rect -273 -238 -207 -222
+rect -159 -226 -129 -200
+rect -63 -222 -33 -200
+rect -273 -272 -257 -238
+rect -223 -272 -207 -238
+rect -273 -288 -207 -272
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect 129 -222 159 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+rect 111 -238 177 -222
+rect 225 -226 255 -200
+rect 111 -272 127 -238
+rect 161 -272 177 -238
+rect 111 -288 177 -272
+<< polycont >>
+rect -161 238 -127 272
+rect 31 238 65 272
+rect 223 238 257 272
+rect -257 -272 -223 -238
+rect -65 -272 -31 -238
+rect 127 -272 161 -238
+<< locali >>
+rect -419 340 -323 374
+rect 323 340 419 374
+rect -419 278 -385 340
+rect 385 278 419 340
+rect -177 238 -161 272
+rect -127 238 -111 272
+rect 15 238 31 272
+rect 65 238 81 272
+rect 207 238 223 272
+rect 257 238 273 272
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect -273 -272 -257 -238
+rect -223 -272 -207 -238
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect 111 -272 127 -238
+rect 161 -272 177 -238
+rect -419 -340 -385 -278
+rect 385 -340 419 -278
+rect -419 -374 -323 -340
+rect 323 -374 419 -340
+<< viali >>
+rect -161 238 -127 272
+rect 31 238 65 272
+rect 223 238 257 272
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect -257 -272 -223 -238
+rect -65 -272 -31 -238
+rect 127 -272 161 -238
+<< metal1 >>
+rect -173 272 -115 278
+rect -173 238 -161 272
+rect -127 238 -115 272
+rect -173 232 -115 238
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect 211 272 269 278
+rect 211 238 223 272
+rect 257 238 269 272
+rect 211 232 269 238
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect -269 -238 -211 -232
+rect -269 -272 -257 -238
+rect -223 -272 -211 -238
+rect -269 -278 -211 -272
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+rect 115 -238 173 -232
+rect 115 -272 127 -238
+rect 161 -272 173 -238
+rect 115 -278 173 -272
+<< properties >>
+string FIXED_BBOX -402 -357 402 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 6 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_VM8DHP.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_VM8DHP.mag
new file mode 100644
index 0000000..75c93b7
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_VM8DHP.mag
@@ -0,0 +1,640 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653990785
+<< error_p >>
+rect -737 272 -679 278
+rect -619 272 -561 278
+rect -501 272 -443 278
+rect -383 272 -325 278
+rect -265 272 -207 278
+rect -147 272 -89 278
+rect -29 272 29 278
+rect 89 272 147 278
+rect 207 272 265 278
+rect 325 272 383 278
+rect 443 272 501 278
+rect 561 272 619 278
+rect 679 272 737 278
+rect -737 238 -725 272
+rect -619 238 -607 272
+rect -501 238 -489 272
+rect -383 238 -371 272
+rect -265 238 -253 272
+rect -147 238 -135 272
+rect -29 238 -17 272
+rect 89 238 101 272
+rect 207 238 219 272
+rect 325 238 337 272
+rect 443 238 455 272
+rect 561 238 573 272
+rect 679 238 691 272
+rect -737 232 -679 238
+rect -619 232 -561 238
+rect -501 232 -443 238
+rect -383 232 -325 238
+rect -265 232 -207 238
+rect -147 232 -89 238
+rect -29 232 29 238
+rect 89 232 147 238
+rect 207 232 265 238
+rect 325 232 383 238
+rect 443 232 501 238
+rect 561 232 619 238
+rect 679 232 737 238
+rect -737 -238 -679 -232
+rect -619 -238 -561 -232
+rect -501 -238 -443 -232
+rect -383 -238 -325 -232
+rect -265 -238 -207 -232
+rect -147 -238 -89 -232
+rect -29 -238 29 -232
+rect 89 -238 147 -232
+rect 207 -238 265 -232
+rect 325 -238 383 -232
+rect 443 -238 501 -232
+rect 561 -238 619 -232
+rect 679 -238 737 -232
+rect -737 -272 -725 -238
+rect -619 -272 -607 -238
+rect -501 -272 -489 -238
+rect -383 -272 -371 -238
+rect -265 -272 -253 -238
+rect -147 -272 -135 -238
+rect -29 -272 -17 -238
+rect 89 -272 101 -238
+rect 207 -272 219 -238
+rect 325 -272 337 -238
+rect 443 -272 455 -238
+rect 561 -272 573 -238
+rect 679 -272 691 -238
+rect -737 -278 -679 -272
+rect -619 -278 -561 -272
+rect -501 -278 -443 -272
+rect -383 -278 -325 -272
+rect -265 -278 -207 -272
+rect -147 -278 -89 -272
+rect -29 -278 29 -272
+rect 89 -278 147 -272
+rect 207 -278 265 -272
+rect 325 -278 383 -272
+rect 443 -278 501 -272
+rect 561 -278 619 -272
+rect 679 -278 737 -272
+<< pwell >>
+rect -934 -410 934 410
+<< nmoslvt >>
+rect -738 -200 -678 200
+rect -620 -200 -560 200
+rect -502 -200 -442 200
+rect -384 -200 -324 200
+rect -266 -200 -206 200
+rect -148 -200 -88 200
+rect -30 -200 30 200
+rect 88 -200 148 200
+rect 206 -200 266 200
+rect 324 -200 384 200
+rect 442 -200 502 200
+rect 560 -200 620 200
+rect 678 -200 738 200
+<< ndiff >>
+rect -796 188 -738 200
+rect -796 -188 -784 188
+rect -750 -188 -738 188
+rect -796 -200 -738 -188
+rect -678 188 -620 200
+rect -678 -188 -666 188
+rect -632 -188 -620 188
+rect -678 -200 -620 -188
+rect -560 188 -502 200
+rect -560 -188 -548 188
+rect -514 -188 -502 188
+rect -560 -200 -502 -188
+rect -442 188 -384 200
+rect -442 -188 -430 188
+rect -396 -188 -384 188
+rect -442 -200 -384 -188
+rect -324 188 -266 200
+rect -324 -188 -312 188
+rect -278 -188 -266 188
+rect -324 -200 -266 -188
+rect -206 188 -148 200
+rect -206 -188 -194 188
+rect -160 -188 -148 188
+rect -206 -200 -148 -188
+rect -88 188 -30 200
+rect -88 -188 -76 188
+rect -42 -188 -30 188
+rect -88 -200 -30 -188
+rect 30 188 88 200
+rect 30 -188 42 188
+rect 76 -188 88 188
+rect 30 -200 88 -188
+rect 148 188 206 200
+rect 148 -188 160 188
+rect 194 -188 206 188
+rect 148 -200 206 -188
+rect 266 188 324 200
+rect 266 -188 278 188
+rect 312 -188 324 188
+rect 266 -200 324 -188
+rect 384 188 442 200
+rect 384 -188 396 188
+rect 430 -188 442 188
+rect 384 -200 442 -188
+rect 502 188 560 200
+rect 502 -188 514 188
+rect 548 -188 560 188
+rect 502 -200 560 -188
+rect 620 188 678 200
+rect 620 -188 632 188
+rect 666 -188 678 188
+rect 620 -200 678 -188
+rect 738 188 796 200
+rect 738 -188 750 188
+rect 784 -188 796 188
+rect 738 -200 796 -188
+<< ndiffc >>
+rect -784 -188 -750 188
+rect -666 -188 -632 188
+rect -548 -188 -514 188
+rect -430 -188 -396 188
+rect -312 -188 -278 188
+rect -194 -188 -160 188
+rect -76 -188 -42 188
+rect 42 -188 76 188
+rect 160 -188 194 188
+rect 278 -188 312 188
+rect 396 -188 430 188
+rect 514 -188 548 188
+rect 632 -188 666 188
+rect 750 -188 784 188
+<< psubdiff >>
+rect -898 340 -802 374
+rect 802 340 898 374
+rect -898 278 -864 340
+rect 864 278 898 340
+rect -898 -340 -864 -278
+rect 864 -340 898 -278
+rect -898 -374 -802 -340
+rect 802 -374 898 -340
+<< psubdiffcont >>
+rect -802 340 802 374
+rect -898 -278 -864 278
+rect 864 -278 898 278
+rect -802 -374 802 -340
+<< poly >>
+rect -741 272 -675 288
+rect -741 238 -725 272
+rect -691 238 -675 272
+rect -741 222 -675 238
+rect -623 272 -557 288
+rect -623 238 -607 272
+rect -573 238 -557 272
+rect -623 222 -557 238
+rect -505 272 -439 288
+rect -505 238 -489 272
+rect -455 238 -439 272
+rect -505 222 -439 238
+rect -387 272 -321 288
+rect -387 238 -371 272
+rect -337 238 -321 272
+rect -387 222 -321 238
+rect -269 272 -203 288
+rect -269 238 -253 272
+rect -219 238 -203 272
+rect -269 222 -203 238
+rect -151 272 -85 288
+rect -151 238 -135 272
+rect -101 238 -85 272
+rect -151 222 -85 238
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -33 222 33 238
+rect 85 272 151 288
+rect 85 238 101 272
+rect 135 238 151 272
+rect 85 222 151 238
+rect 203 272 269 288
+rect 203 238 219 272
+rect 253 238 269 272
+rect 203 222 269 238
+rect 321 272 387 288
+rect 321 238 337 272
+rect 371 238 387 272
+rect 321 222 387 238
+rect 439 272 505 288
+rect 439 238 455 272
+rect 489 238 505 272
+rect 439 222 505 238
+rect 557 272 623 288
+rect 557 238 573 272
+rect 607 238 623 272
+rect 557 222 623 238
+rect 675 272 741 288
+rect 675 238 691 272
+rect 725 238 741 272
+rect 675 222 741 238
+rect -738 200 -678 222
+rect -620 200 -560 222
+rect -502 200 -442 222
+rect -384 200 -324 222
+rect -266 200 -206 222
+rect -148 200 -88 222
+rect -30 200 30 222
+rect 88 200 148 222
+rect 206 200 266 222
+rect 324 200 384 222
+rect 442 200 502 222
+rect 560 200 620 222
+rect 678 200 738 222
+rect -738 -222 -678 -200
+rect -620 -222 -560 -200
+rect -502 -222 -442 -200
+rect -384 -222 -324 -200
+rect -266 -222 -206 -200
+rect -148 -222 -88 -200
+rect -30 -222 30 -200
+rect 88 -222 148 -200
+rect 206 -222 266 -200
+rect 324 -222 384 -200
+rect 442 -222 502 -200
+rect 560 -222 620 -200
+rect 678 -222 738 -200
+rect -741 -238 -675 -222
+rect -741 -272 -725 -238
+rect -691 -272 -675 -238
+rect -741 -288 -675 -272
+rect -623 -238 -557 -222
+rect -623 -272 -607 -238
+rect -573 -272 -557 -238
+rect -623 -288 -557 -272
+rect -505 -238 -439 -222
+rect -505 -272 -489 -238
+rect -455 -272 -439 -238
+rect -505 -288 -439 -272
+rect -387 -238 -321 -222
+rect -387 -272 -371 -238
+rect -337 -272 -321 -238
+rect -387 -288 -321 -272
+rect -269 -238 -203 -222
+rect -269 -272 -253 -238
+rect -219 -272 -203 -238
+rect -269 -288 -203 -272
+rect -151 -238 -85 -222
+rect -151 -272 -135 -238
+rect -101 -272 -85 -238
+rect -151 -288 -85 -272
+rect -33 -238 33 -222
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+rect 85 -238 151 -222
+rect 85 -272 101 -238
+rect 135 -272 151 -238
+rect 85 -288 151 -272
+rect 203 -238 269 -222
+rect 203 -272 219 -238
+rect 253 -272 269 -238
+rect 203 -288 269 -272
+rect 321 -238 387 -222
+rect 321 -272 337 -238
+rect 371 -272 387 -238
+rect 321 -288 387 -272
+rect 439 -238 505 -222
+rect 439 -272 455 -238
+rect 489 -272 505 -238
+rect 439 -288 505 -272
+rect 557 -238 623 -222
+rect 557 -272 573 -238
+rect 607 -272 623 -238
+rect 557 -288 623 -272
+rect 675 -238 741 -222
+rect 675 -272 691 -238
+rect 725 -272 741 -238
+rect 675 -288 741 -272
+<< polycont >>
+rect -725 238 -691 272
+rect -607 238 -573 272
+rect -489 238 -455 272
+rect -371 238 -337 272
+rect -253 238 -219 272
+rect -135 238 -101 272
+rect -17 238 17 272
+rect 101 238 135 272
+rect 219 238 253 272
+rect 337 238 371 272
+rect 455 238 489 272
+rect 573 238 607 272
+rect 691 238 725 272
+rect -725 -272 -691 -238
+rect -607 -272 -573 -238
+rect -489 -272 -455 -238
+rect -371 -272 -337 -238
+rect -253 -272 -219 -238
+rect -135 -272 -101 -238
+rect -17 -272 17 -238
+rect 101 -272 135 -238
+rect 219 -272 253 -238
+rect 337 -272 371 -238
+rect 455 -272 489 -238
+rect 573 -272 607 -238
+rect 691 -272 725 -238
+<< locali >>
+rect -898 340 -802 374
+rect 802 340 898 374
+rect -898 278 -864 340
+rect 864 278 898 340
+rect -741 238 -725 272
+rect -691 238 -675 272
+rect -623 238 -607 272
+rect -573 238 -557 272
+rect -505 238 -489 272
+rect -455 238 -439 272
+rect -387 238 -371 272
+rect -337 238 -321 272
+rect -269 238 -253 272
+rect -219 238 -203 272
+rect -151 238 -135 272
+rect -101 238 -85 272
+rect -33 238 -17 272
+rect 17 238 33 272
+rect 85 238 101 272
+rect 135 238 151 272
+rect 203 238 219 272
+rect 253 238 269 272
+rect 321 238 337 272
+rect 371 238 387 272
+rect 439 238 455 272
+rect 489 238 505 272
+rect 557 238 573 272
+rect 607 238 623 272
+rect 675 238 691 272
+rect 725 238 741 272
+rect -784 188 -750 204
+rect -784 -204 -750 -188
+rect -666 188 -632 204
+rect -666 -204 -632 -188
+rect -548 188 -514 204
+rect -548 -204 -514 -188
+rect -430 188 -396 204
+rect -430 -204 -396 -188
+rect -312 188 -278 204
+rect -312 -204 -278 -188
+rect -194 188 -160 204
+rect -194 -204 -160 -188
+rect -76 188 -42 204
+rect -76 -204 -42 -188
+rect 42 188 76 204
+rect 42 -204 76 -188
+rect 160 188 194 204
+rect 160 -204 194 -188
+rect 278 188 312 204
+rect 278 -204 312 -188
+rect 396 188 430 204
+rect 396 -204 430 -188
+rect 514 188 548 204
+rect 514 -204 548 -188
+rect 632 188 666 204
+rect 632 -204 666 -188
+rect 750 188 784 204
+rect 750 -204 784 -188
+rect -741 -272 -725 -238
+rect -691 -272 -675 -238
+rect -623 -272 -607 -238
+rect -573 -272 -557 -238
+rect -505 -272 -489 -238
+rect -455 -272 -439 -238
+rect -387 -272 -371 -238
+rect -337 -272 -321 -238
+rect -269 -272 -253 -238
+rect -219 -272 -203 -238
+rect -151 -272 -135 -238
+rect -101 -272 -85 -238
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect 85 -272 101 -238
+rect 135 -272 151 -238
+rect 203 -272 219 -238
+rect 253 -272 269 -238
+rect 321 -272 337 -238
+rect 371 -272 387 -238
+rect 439 -272 455 -238
+rect 489 -272 505 -238
+rect 557 -272 573 -238
+rect 607 -272 623 -238
+rect 675 -272 691 -238
+rect 725 -272 741 -238
+rect -898 -340 -864 -278
+rect 864 -340 898 -278
+rect -898 -374 -802 -340
+rect 802 -374 898 -340
+<< viali >>
+rect -725 238 -691 272
+rect -607 238 -573 272
+rect -489 238 -455 272
+rect -371 238 -337 272
+rect -253 238 -219 272
+rect -135 238 -101 272
+rect -17 238 17 272
+rect 101 238 135 272
+rect 219 238 253 272
+rect 337 238 371 272
+rect 455 238 489 272
+rect 573 238 607 272
+rect 691 238 725 272
+rect -784 -188 -750 188
+rect -666 -188 -632 188
+rect -548 -188 -514 188
+rect -430 -188 -396 188
+rect -312 -188 -278 188
+rect -194 -188 -160 188
+rect -76 -188 -42 188
+rect 42 -188 76 188
+rect 160 -188 194 188
+rect 278 -188 312 188
+rect 396 -188 430 188
+rect 514 -188 548 188
+rect 632 -188 666 188
+rect 750 -188 784 188
+rect -725 -272 -691 -238
+rect -607 -272 -573 -238
+rect -489 -272 -455 -238
+rect -371 -272 -337 -238
+rect -253 -272 -219 -238
+rect -135 -272 -101 -238
+rect -17 -272 17 -238
+rect 101 -272 135 -238
+rect 219 -272 253 -238
+rect 337 -272 371 -238
+rect 455 -272 489 -238
+rect 573 -272 607 -238
+rect 691 -272 725 -238
+<< metal1 >>
+rect -737 272 -679 278
+rect -737 238 -725 272
+rect -691 238 -679 272
+rect -737 232 -679 238
+rect -619 272 -561 278
+rect -619 238 -607 272
+rect -573 238 -561 272
+rect -619 232 -561 238
+rect -501 272 -443 278
+rect -501 238 -489 272
+rect -455 238 -443 272
+rect -501 232 -443 238
+rect -383 272 -325 278
+rect -383 238 -371 272
+rect -337 238 -325 272
+rect -383 232 -325 238
+rect -265 272 -207 278
+rect -265 238 -253 272
+rect -219 238 -207 272
+rect -265 232 -207 238
+rect -147 272 -89 278
+rect -147 238 -135 272
+rect -101 238 -89 272
+rect -147 232 -89 238
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect 89 272 147 278
+rect 89 238 101 272
+rect 135 238 147 272
+rect 89 232 147 238
+rect 207 272 265 278
+rect 207 238 219 272
+rect 253 238 265 272
+rect 207 232 265 238
+rect 325 272 383 278
+rect 325 238 337 272
+rect 371 238 383 272
+rect 325 232 383 238
+rect 443 272 501 278
+rect 443 238 455 272
+rect 489 238 501 272
+rect 443 232 501 238
+rect 561 272 619 278
+rect 561 238 573 272
+rect 607 238 619 272
+rect 561 232 619 238
+rect 679 272 737 278
+rect 679 238 691 272
+rect 725 238 737 272
+rect 679 232 737 238
+rect -790 188 -744 200
+rect -790 -188 -784 188
+rect -750 -188 -744 188
+rect -790 -200 -744 -188
+rect -672 188 -626 200
+rect -672 -188 -666 188
+rect -632 -188 -626 188
+rect -672 -200 -626 -188
+rect -554 188 -508 200
+rect -554 -188 -548 188
+rect -514 -188 -508 188
+rect -554 -200 -508 -188
+rect -436 188 -390 200
+rect -436 -188 -430 188
+rect -396 -188 -390 188
+rect -436 -200 -390 -188
+rect -318 188 -272 200
+rect -318 -188 -312 188
+rect -278 -188 -272 188
+rect -318 -200 -272 -188
+rect -200 188 -154 200
+rect -200 -188 -194 188
+rect -160 -188 -154 188
+rect -200 -200 -154 -188
+rect -82 188 -36 200
+rect -82 -188 -76 188
+rect -42 -188 -36 188
+rect -82 -200 -36 -188
+rect 36 188 82 200
+rect 36 -188 42 188
+rect 76 -188 82 188
+rect 36 -200 82 -188
+rect 154 188 200 200
+rect 154 -188 160 188
+rect 194 -188 200 188
+rect 154 -200 200 -188
+rect 272 188 318 200
+rect 272 -188 278 188
+rect 312 -188 318 188
+rect 272 -200 318 -188
+rect 390 188 436 200
+rect 390 -188 396 188
+rect 430 -188 436 188
+rect 390 -200 436 -188
+rect 508 188 554 200
+rect 508 -188 514 188
+rect 548 -188 554 188
+rect 508 -200 554 -188
+rect 626 188 672 200
+rect 626 -188 632 188
+rect 666 -188 672 188
+rect 626 -200 672 -188
+rect 744 188 790 200
+rect 744 -188 750 188
+rect 784 -188 790 188
+rect 744 -200 790 -188
+rect -737 -238 -679 -232
+rect -737 -272 -725 -238
+rect -691 -272 -679 -238
+rect -737 -278 -679 -272
+rect -619 -238 -561 -232
+rect -619 -272 -607 -238
+rect -573 -272 -561 -238
+rect -619 -278 -561 -272
+rect -501 -238 -443 -232
+rect -501 -272 -489 -238
+rect -455 -272 -443 -238
+rect -501 -278 -443 -272
+rect -383 -238 -325 -232
+rect -383 -272 -371 -238
+rect -337 -272 -325 -238
+rect -383 -278 -325 -272
+rect -265 -238 -207 -232
+rect -265 -272 -253 -238
+rect -219 -272 -207 -238
+rect -265 -278 -207 -272
+rect -147 -238 -89 -232
+rect -147 -272 -135 -238
+rect -101 -272 -89 -238
+rect -147 -278 -89 -272
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+rect 89 -238 147 -232
+rect 89 -272 101 -238
+rect 135 -272 147 -238
+rect 89 -278 147 -272
+rect 207 -238 265 -232
+rect 207 -272 219 -238
+rect 253 -272 265 -238
+rect 207 -278 265 -272
+rect 325 -238 383 -232
+rect 325 -272 337 -238
+rect 371 -272 383 -238
+rect 325 -278 383 -272
+rect 443 -238 501 -232
+rect 443 -272 455 -238
+rect 489 -272 501 -238
+rect 443 -278 501 -272
+rect 561 -238 619 -232
+rect 561 -272 573 -238
+rect 607 -272 619 -238
+rect 561 -278 619 -272
+rect 679 -238 737 -232
+rect 679 -272 691 -238
+rect 725 -272 737 -238
+rect 679 -278 737 -272
+<< properties >>
+string FIXED_BBOX -881 -357 881 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 13 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__nfet_01v8_lvt_Z6SMGA.mag b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_Z6SMGA.mag
new file mode 100644
index 0000000..52f13d8
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__nfet_01v8_lvt_Z6SMGA.mag
@@ -0,0 +1,295 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654002310
+<< error_p >>
+rect -269 272 -211 278
+rect -77 272 -19 278
+rect 115 272 173 278
+rect 307 272 365 278
+rect -269 238 -257 272
+rect -77 238 -65 272
+rect 115 238 127 272
+rect 307 238 319 272
+rect -269 232 -211 238
+rect -77 232 -19 238
+rect 115 232 173 238
+rect 307 232 365 238
+rect -365 -238 -307 -232
+rect -173 -238 -115 -232
+rect 19 -238 77 -232
+rect 211 -238 269 -232
+rect -365 -272 -353 -238
+rect -173 -272 -161 -238
+rect 19 -272 31 -238
+rect 211 -272 223 -238
+rect -365 -278 -307 -272
+rect -173 -278 -115 -272
+rect 19 -278 77 -272
+rect 211 -278 269 -272
+<< pwell >>
+rect -551 -410 551 410
+<< nmoslvt >>
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+<< ndiff >>
+rect -413 188 -351 200
+rect -413 -188 -401 188
+rect -367 -188 -351 188
+rect -413 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 413 200
+rect 351 -188 367 188
+rect 401 -188 413 188
+rect 351 -200 413 -188
+<< ndiffc >>
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+<< psubdiff >>
+rect -515 340 -419 374
+rect 419 340 515 374
+rect -515 278 -481 340
+rect 481 278 515 340
+rect -515 -340 -481 -278
+rect 481 -340 515 -278
+rect -515 -374 -419 -340
+rect 419 -374 515 -340
+<< psubdiffcont >>
+rect -419 340 419 374
+rect -515 -278 -481 278
+rect 481 -278 515 278
+rect -419 -374 419 -340
+<< poly >>
+rect -273 272 -207 288
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -351 200 -321 226
+rect -273 222 -207 238
+rect -81 272 -15 288
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect -255 200 -225 222
+rect -159 200 -129 226
+rect -81 222 -15 238
+rect 111 272 177 288
+rect 111 238 127 272
+rect 161 238 177 272
+rect -63 200 -33 222
+rect 33 200 63 226
+rect 111 222 177 238
+rect 303 272 369 288
+rect 303 238 319 272
+rect 353 238 369 272
+rect 129 200 159 222
+rect 225 200 255 226
+rect 303 222 369 238
+rect 321 200 351 222
+rect -351 -222 -321 -200
+rect -369 -238 -303 -222
+rect -255 -226 -225 -200
+rect -159 -222 -129 -200
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -369 -288 -303 -272
+rect -177 -238 -111 -222
+rect -63 -226 -33 -200
+rect 33 -222 63 -200
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect -177 -288 -111 -272
+rect 15 -238 81 -222
+rect 129 -226 159 -200
+rect 225 -222 255 -200
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 15 -288 81 -272
+rect 207 -238 273 -222
+rect 321 -226 351 -200
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 207 -288 273 -272
+<< polycont >>
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+<< locali >>
+rect -515 340 -419 374
+rect 419 340 515 374
+rect -515 278 -481 340
+rect 481 278 515 340
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect 111 238 127 272
+rect 161 238 177 272
+rect 303 238 319 272
+rect 353 238 369 272
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect -515 -340 -481 -278
+rect 481 -340 515 -278
+rect -515 -374 -419 -340
+rect 419 -374 515 -340
+<< viali >>
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+<< metal1 >>
+rect -269 272 -211 278
+rect -269 238 -257 272
+rect -223 238 -211 272
+rect -269 232 -211 238
+rect -77 272 -19 278
+rect -77 238 -65 272
+rect -31 238 -19 272
+rect -77 232 -19 238
+rect 115 272 173 278
+rect 115 238 127 272
+rect 161 238 173 272
+rect 115 232 173 238
+rect 307 272 365 278
+rect 307 238 319 272
+rect 353 238 365 272
+rect 307 232 365 238
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect -365 -238 -307 -232
+rect -365 -272 -353 -238
+rect -319 -272 -307 -238
+rect -365 -278 -307 -272
+rect -173 -238 -115 -232
+rect -173 -272 -161 -238
+rect -127 -272 -115 -238
+rect -173 -278 -115 -272
+rect 19 -238 77 -232
+rect 19 -272 31 -238
+rect 65 -272 77 -238
+rect 19 -278 77 -272
+rect 211 -238 269 -232
+rect 211 -272 223 -238
+rect 257 -272 269 -238
+rect 211 -278 269 -272
+<< properties >>
+string FIXED_BBOX -498 -357 498 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 8 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.ext b/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.ext
new file mode 100644
index 0000000..637c19d
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.ext
@@ -0,0 +1,48 @@
+timestamp 1654097953
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_159_n200#" 1426 0 159 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 1349 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 1349 0 -129 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n221_n200#" 1426 0 -221 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n297#" 851 0 15 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n297#" 851 0 -177 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_231#" 851 0 111 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_231#" 851 0 -81 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n359_n419#" 11340 1805.05 -359 -419 nw 0 0 0 0 601684 3112 0 0 91392 5376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91392 5376 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_n200#" "w_n359_n419#" 19.5971
+cap "a_15_n297#" "a_111_231#" 13.3939
+cap "a_n81_231#" "w_n359_n419#" 114.376
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_15_n297#" "w_n359_n419#" 114.122
+cap "a_n177_n297#" "a_n221_n200#" 4.90233
+cap "a_n81_231#" "a_n33_n200#" 4.90233
+cap "a_n129_n200#" "a_n177_n297#" 4.90233
+cap "a_15_n297#" "a_63_n200#" 4.90233
+cap "a_15_n297#" "a_n33_n200#" 4.90233
+cap "a_n177_n297#" "w_n359_n419#" 131.095
+cap "a_n81_231#" "a_15_n297#" 13.3939
+cap "a_n129_n200#" "a_n221_n200#" 479.458
+cap "a_n221_n200#" "w_n359_n419#" 162.854
+cap "a_111_231#" "w_n359_n419#" 130.841
+cap "a_n81_231#" "a_n177_n297#" 13.3939
+cap "a_n129_n200#" "w_n359_n419#" 19.5971
+cap "a_159_n200#" "a_111_231#" 4.90233
+cap "a_111_231#" "a_63_n200#" 4.90233
+cap "a_n177_n297#" "a_15_n297#" 29.6522
+cap "a_n81_231#" "a_111_231#" 29.6522
+cap "a_159_n200#" "w_n359_n419#" 162.813
+cap "a_n129_n200#" "a_n33_n200#" 479.458
+cap "a_n129_n200#" "a_n81_231#" 4.90233
+cap "w_n359_n419#" "a_63_n200#" 19.5971
+device msubckt sky130_fd_pr__pfet_01v8 129 -200 130 -199 l=30 w=400 "w_n359_n419#" "a_111_231#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n359_n419#" "a_15_n297#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n359_n419#" "a_n81_231#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -200 -158 -199 l=30 w=400 "w_n359_n419#" "a_n177_n297#" 60 0 "a_n221_n200#" 400 0 "a_n129_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.mag b/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.mag
new file mode 100644
index 0000000..b962c91
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_U47ZGH.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097953
+<< error_p >>
+rect -77 281 -19 287
+rect 115 281 173 287
+rect -77 247 -65 281
+rect 115 247 127 281
+rect -77 241 -19 247
+rect 115 241 173 247
+rect -173 -247 -115 -241
+rect 19 -247 77 -241
+rect -173 -281 -161 -247
+rect 19 -281 31 -247
+rect -173 -287 -115 -281
+rect 19 -287 77 -281
+<< nwell >>
+rect -359 -419 359 419
+<< pmos >>
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+<< pdiff >>
+rect -221 188 -159 200
+rect -221 -188 -209 188
+rect -175 -188 -159 188
+rect -221 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 221 200
+rect 159 -188 175 188
+rect 209 -188 221 188
+rect 159 -200 221 -188
+<< pdiffc >>
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+<< nsubdiff >>
+rect -323 349 -227 383
+rect 227 349 323 383
+rect -323 287 -289 349
+rect 289 287 323 349
+rect -323 -349 -289 -287
+rect 289 -349 323 -287
+rect -323 -383 -227 -349
+rect 227 -383 323 -349
+<< nsubdiffcont >>
+rect -227 349 227 383
+rect -323 -287 -289 287
+rect 289 -287 323 287
+rect -227 -383 227 -349
+<< poly >>
+rect -81 281 -15 297
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect -81 231 -15 247
+rect 111 281 177 297
+rect 111 247 127 281
+rect 161 247 177 281
+rect 111 231 177 247
+rect -159 200 -129 226
+rect -63 200 -33 231
+rect 33 200 63 226
+rect 129 200 159 231
+rect -159 -231 -129 -200
+rect -63 -226 -33 -200
+rect 33 -231 63 -200
+rect 129 -226 159 -200
+rect -177 -247 -111 -231
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect -177 -297 -111 -281
+rect 15 -247 81 -231
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 15 -297 81 -281
+<< polycont >>
+rect -65 247 -31 281
+rect 127 247 161 281
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+<< locali >>
+rect -323 349 -227 383
+rect 227 349 323 383
+rect -323 287 -289 349
+rect 289 287 323 349
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect 111 247 127 281
+rect 161 247 177 281
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect -323 -349 -289 -287
+rect 289 -349 323 -287
+rect -323 -383 -227 -349
+rect 227 -383 323 -349
+<< viali >>
+rect -65 247 -31 281
+rect 127 247 161 281
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+<< metal1 >>
+rect -77 281 -19 287
+rect -77 247 -65 281
+rect -31 247 -19 281
+rect -77 241 -19 247
+rect 115 281 173 287
+rect 115 247 127 281
+rect 161 247 173 281
+rect 115 241 173 247
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect -173 -247 -115 -241
+rect -173 -281 -161 -247
+rect -127 -281 -115 -247
+rect -173 -287 -115 -281
+rect 19 -247 77 -241
+rect 19 -281 31 -247
+rect 65 -281 77 -247
+rect 19 -287 77 -281
+<< properties >>
+string FIXED_BBOX -306 -366 306 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.ext b/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.ext
new file mode 100644
index 0000000..6ea8b9e
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.ext
@@ -0,0 +1,28 @@
+timestamp 1654097028
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 1426 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 1426 0 -125 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n297#" 851 0 -81 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_231#" 851 0 15 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n263_n419#" 10245 1322.36 -263 -419 nw 0 0 0 0 440788 2728 0 0 78336 4608 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78336 4608 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n33_n200#" "a_n81_n297#" 4.90233
+cap "a_15_231#" "w_n263_n419#" 153.118
+cap "a_n33_n200#" "w_n263_n419#" 19.5971
+cap "a_n125_n200#" "a_n81_n297#" 4.90233
+cap "a_n125_n200#" "w_n263_n419#" 162.854
+cap "a_15_231#" "a_n33_n200#" 4.90233
+cap "a_63_n200#" "w_n263_n419#" 162.813
+cap "a_n81_n297#" "w_n263_n419#" 153.118
+cap "a_15_231#" "a_63_n200#" 4.90233
+cap "a_n125_n200#" "a_n33_n200#" 479.458
+cap "a_15_231#" "a_n81_n297#" 13.3939
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n263_n419#" "a_15_231#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n263_n419#" "a_n81_n297#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.mag b/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.mag
new file mode 100644
index 0000000..cfbcde7
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_X4XKHL.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654097028
+<< error_p >>
+rect 19 281 77 287
+rect 19 247 31 281
+rect 19 241 77 247
+rect -77 -247 -19 -241
+rect -77 -281 -65 -247
+rect -77 -287 -19 -281
+<< nwell >>
+rect -263 -419 263 419
+<< pmos >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< pdiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< pdiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< nsubdiff >>
+rect -227 349 -131 383
+rect 131 349 227 383
+rect -227 287 -193 349
+rect 193 287 227 349
+rect -227 -349 -193 -287
+rect 193 -349 227 -287
+rect -227 -383 -131 -349
+rect 131 -383 227 -349
+<< nsubdiffcont >>
+rect -131 349 131 383
+rect -227 -287 -193 287
+rect 193 -287 227 287
+rect -131 -383 131 -349
+<< poly >>
+rect 15 281 81 297
+rect 15 247 31 281
+rect 65 247 81 281
+rect 15 231 81 247
+rect -63 200 -33 226
+rect 33 200 63 231
+rect -63 -231 -33 -200
+rect 33 -226 63 -200
+rect -81 -247 -15 -231
+rect -81 -281 -65 -247
+rect -31 -281 -15 -247
+rect -81 -297 -15 -281
+<< polycont >>
+rect 31 247 65 281
+rect -65 -281 -31 -247
+<< locali >>
+rect -227 349 -131 383
+rect 131 349 227 383
+rect -227 287 -193 349
+rect 193 287 227 349
+rect 15 247 31 281
+rect 65 247 81 281
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -281 -65 -247
+rect -31 -281 -15 -247
+rect -227 -349 -193 -287
+rect 193 -349 227 -287
+rect -227 -383 -131 -349
+rect 131 -383 227 -349
+<< viali >>
+rect 31 247 65 281
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -281 -31 -247
+<< metal1 >>
+rect 19 281 77 287
+rect 19 247 31 281
+rect 65 247 77 281
+rect 19 241 77 247
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -247 -19 -241
+rect -77 -281 -65 -247
+rect -31 -281 -19 -247
+rect -77 -287 -19 -281
+<< properties >>
+string FIXED_BBOX -210 -366 210 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.ext b/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.ext
new file mode 100644
index 0000000..210c47b
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.ext
@@ -0,0 +1,19 @@
+timestamp 1654093589
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_15_n50#" 381 0 15 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n73_n50#" 381 0 -73 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n147#" 543 0 -33 -147 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13572 792 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n211_n269#" 6786 681.108 -211 -269 nw 0 0 0 0 227036 1920 0 0 50864 2992 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50864 2992 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_n147#" "w_n211_n269#" 278.965
+cap "a_15_n50#" "a_n73_n50#" 143.857
+cap "a_15_n50#" "w_n211_n269#" 56.6274
+cap "a_n73_n50#" "w_n211_n269#" 56.6274
+cap "a_n33_n147#" "a_15_n50#" 22.214
+cap "a_n33_n147#" "a_n73_n50#" 22.214
+device msubckt sky130_fd_pr__pfet_01v8 -15 -50 -14 -49 l=30 w=100 "w_n211_n269#" "a_n33_n147#" 60 0 "a_n73_n50#" 100 0 "a_15_n50#" 100 0
diff --git a/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.mag b/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.mag
new file mode 100644
index 0000000..75b3470
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__pfet_01v8_XJ7GBL.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654093589
+<< error_p >>
+rect -29 131 29 137
+rect -29 97 -17 131
+rect -29 91 29 97
+rect -29 -97 29 -91
+rect -29 -131 -17 -97
+rect -29 -137 29 -131
+<< nwell >>
+rect -211 -269 211 269
+<< pmos >>
+rect -15 -50 15 50
+<< pdiff >>
+rect -73 38 -15 50
+rect -73 -38 -61 38
+rect -27 -38 -15 38
+rect -73 -50 -15 -38
+rect 15 38 73 50
+rect 15 -38 27 38
+rect 61 -38 73 38
+rect 15 -50 73 -38
+<< pdiffc >>
+rect -61 -38 -27 38
+rect 27 -38 61 38
+<< nsubdiff >>
+rect -175 199 -79 233
+rect 79 199 175 233
+rect -175 137 -141 199
+rect 141 137 175 199
+rect -175 -199 -141 -137
+rect 141 -199 175 -137
+rect -175 -233 -79 -199
+rect 79 -233 175 -199
+<< nsubdiffcont >>
+rect -79 199 79 233
+rect -175 -137 -141 137
+rect 141 -137 175 137
+rect -79 -233 79 -199
+<< poly >>
+rect -33 131 33 147
+rect -33 97 -17 131
+rect 17 97 33 131
+rect -33 81 33 97
+rect -15 50 15 81
+rect -15 -81 15 -50
+rect -33 -97 33 -81
+rect -33 -131 -17 -97
+rect 17 -131 33 -97
+rect -33 -147 33 -131
+<< polycont >>
+rect -17 97 17 131
+rect -17 -131 17 -97
+<< locali >>
+rect -175 199 -79 233
+rect 79 199 175 233
+rect -175 137 -141 199
+rect 141 137 175 199
+rect -33 97 -17 131
+rect 17 97 33 131
+rect -61 38 -27 54
+rect -61 -54 -27 -38
+rect 27 38 61 54
+rect 27 -54 61 -38
+rect -33 -131 -17 -97
+rect 17 -131 33 -97
+rect -175 -199 -141 -137
+rect 141 -199 175 -137
+rect -175 -233 -79 -199
+rect 79 -233 175 -199
+<< viali >>
+rect -17 97 17 131
+rect -61 -38 -27 38
+rect 27 -38 61 38
+rect -17 -131 17 -97
+<< metal1 >>
+rect -29 131 29 137
+rect -29 97 -17 131
+rect 17 97 29 131
+rect -29 91 29 97
+rect -67 38 -21 50
+rect -67 -38 -61 38
+rect -27 -38 -21 38
+rect -67 -50 -21 -38
+rect 21 38 67 50
+rect 21 -38 27 38
+rect 61 -38 67 38
+rect 21 -50 67 -38
+rect -29 -97 29 -91
+rect -29 -131 -17 -97
+rect 17 -131 29 -97
+rect -29 -137 29 -131
+<< properties >>
+string FIXED_BBOX -158 -216 158 216
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 0.5 l 0.15 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.ext b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.ext
new file mode 100644
index 0000000..682490b
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.ext
@@ -0,0 +1,35 @@
+timestamp 1654166568
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_442_n1432#" 188 469.148 442 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_442_n1000#" 57143 0 442 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_442_1000#" 188 469.148 442 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1432#" 188 294.299 124 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1000#" 57143 0 124 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_124_1000#" 188 294.299 124 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n194_n1432#" 188 294.299 -194 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n194_n1000#" 57143 0 -194 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n194_1000#" 188 294.299 -194 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n512_n1432#" 188 470.377 -512 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n512_n1000#" 57143 0 -512 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n512_1000#" 188 470.377 -512 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n642_n1562#" 0 0 -642 -1562 ppd 0 0 0 0 0 0 0 0 0 0 295120 17360 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 295120 17360 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n194_1000#" "a_n512_1000#" 155.514
+cap "a_124_1000#" "a_n194_1000#" 155.514
+cap "a_124_n1432#" "a_n194_n1432#" 155.514
+cap "a_124_n1432#" "a_442_n1432#" 155.514
+cap "a_n512_n1432#" "a_n194_n1432#" 155.514
+cap "a_442_1000#" "a_124_1000#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 442 -1000 443 -999 l=2000 "a_n642_n1562#" "a_442_n1000#" 0 0 "a_442_n1432#" 70 0 "a_442_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 124 -1000 125 -999 l=2000 "a_n642_n1562#" "a_124_n1000#" 0 0 "a_124_n1432#" 70 0 "a_124_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 -194 -1000 -193 -999 l=2000 "a_n642_n1562#" "a_n194_n1000#" 0 0 "a_n194_n1432#" 70 0 "a_n194_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 -512 -1000 -511 -999 l=2000 "a_n642_n1562#" "a_n512_n1000#" 0 0 "a_n512_n1432#" 70 0 "a_n512_1000#" 70 0
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.mag b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.mag
new file mode 100644
index 0000000..a69da3b
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL.mag
@@ -0,0 +1,96 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< pwell >>
+rect -678 -1598 678 1598
+<< psubdiff >>
+rect -642 1528 -546 1562
+rect 546 1528 642 1562
+rect -642 1466 -608 1528
+rect 608 1466 642 1528
+rect -642 -1528 -608 -1466
+rect 608 -1528 642 -1466
+rect -642 -1562 -546 -1528
+rect 546 -1562 642 -1528
+<< psubdiffcont >>
+rect -546 1528 546 1562
+rect -642 -1466 -608 1466
+rect 608 -1466 642 1466
+rect -546 -1562 546 -1528
+<< xpolycontact >>
+rect -512 1000 -442 1432
+rect -512 -1432 -442 -1000
+rect -194 1000 -124 1432
+rect -194 -1432 -124 -1000
+rect 124 1000 194 1432
+rect 124 -1432 194 -1000
+rect 442 1000 512 1432
+rect 442 -1432 512 -1000
+<< xpolyres >>
+rect -512 -1000 -442 1000
+rect -194 -1000 -124 1000
+rect 124 -1000 194 1000
+rect 442 -1000 512 1000
+<< locali >>
+rect -642 1528 -546 1562
+rect 546 1528 642 1562
+rect -642 1466 -608 1528
+rect 608 1466 642 1528
+rect -642 -1528 -608 -1466
+rect 608 -1528 642 -1466
+rect -642 -1562 -546 -1528
+rect 546 -1562 642 -1528
+<< viali >>
+rect -496 1017 -458 1414
+rect -178 1017 -140 1414
+rect 140 1017 178 1414
+rect 458 1017 496 1414
+rect -496 -1414 -458 -1017
+rect -178 -1414 -140 -1017
+rect 140 -1414 178 -1017
+rect 458 -1414 496 -1017
+<< metal1 >>
+rect -502 1414 -452 1426
+rect -502 1017 -496 1414
+rect -458 1017 -452 1414
+rect -502 1005 -452 1017
+rect -184 1414 -134 1426
+rect -184 1017 -178 1414
+rect -140 1017 -134 1414
+rect -184 1005 -134 1017
+rect 134 1414 184 1426
+rect 134 1017 140 1414
+rect 178 1017 184 1414
+rect 134 1005 184 1017
+rect 452 1414 502 1426
+rect 452 1017 458 1414
+rect 496 1017 502 1414
+rect 452 1005 502 1017
+rect -502 -1017 -452 -1005
+rect -502 -1414 -496 -1017
+rect -458 -1414 -452 -1017
+rect -502 -1426 -452 -1414
+rect -184 -1017 -134 -1005
+rect -184 -1414 -178 -1017
+rect -140 -1414 -134 -1017
+rect -184 -1426 -134 -1414
+rect 134 -1017 184 -1005
+rect 134 -1414 140 -1017
+rect 178 -1414 184 -1017
+rect 134 -1426 184 -1414
+rect 452 -1017 502 -1005
+rect 452 -1414 458 -1017
+rect 496 -1414 502 -1017
+rect 452 -1426 502 -1414
+<< res0p35 >>
+rect -514 -1002 -440 1002
+rect -196 -1002 -122 1002
+rect 122 -1002 196 1002
+rect 440 -1002 514 1002
+<< properties >>
+string FIXED_BBOX -625 -1545 625 1545
+string gencell sky130_fd_pr__res_xhigh_po_0p35
+string library sky130
+string parameters w 0.350 l 10 m 1 nx 4 wmin 0.350 lmin 0.50 rho 2000 val 58.218k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 0.350 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag
new file mode 100644
index 0000000..ff42398
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag
@@ -0,0 +1,68 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654166568
+<< pwell >>
+rect -360 -1598 360 1598
+<< psubdiff >>
+rect -324 1528 -228 1562
+rect 228 1528 324 1562
+rect -324 1466 -290 1528
+rect 290 1466 324 1528
+rect -324 -1528 -290 -1466
+rect 290 -1528 324 -1466
+rect -324 -1562 -228 -1528
+rect 228 -1562 324 -1528
+<< psubdiffcont >>
+rect -228 1528 228 1562
+rect -324 -1466 -290 1466
+rect 290 -1466 324 1466
+rect -228 -1562 228 -1528
+<< xpolycontact >>
+rect -194 1000 -124 1432
+rect -194 -1432 -124 -1000
+rect 124 1000 194 1432
+rect 124 -1432 194 -1000
+<< xpolyres >>
+rect -194 -1000 -124 1000
+rect 124 -1000 194 1000
+<< locali >>
+rect -324 1528 -228 1562
+rect 228 1528 324 1562
+rect -324 1466 -290 1528
+rect 290 1466 324 1528
+rect -324 -1528 -290 -1466
+rect 290 -1528 324 -1466
+rect -324 -1562 -228 -1528
+rect 228 -1562 324 -1528
+<< viali >>
+rect -178 1017 -140 1414
+rect 140 1017 178 1414
+rect -178 -1414 -140 -1017
+rect 140 -1414 178 -1017
+<< metal1 >>
+rect -184 1414 -134 1426
+rect -184 1017 -178 1414
+rect -140 1017 -134 1414
+rect -184 1005 -134 1017
+rect 134 1414 184 1426
+rect 134 1017 140 1414
+rect 178 1017 184 1414
+rect 134 1005 184 1017
+rect -184 -1017 -134 -1005
+rect -184 -1414 -178 -1017
+rect -140 -1414 -134 -1017
+rect -184 -1426 -134 -1414
+rect 134 -1017 184 -1005
+rect 134 -1414 140 -1017
+rect 178 -1414 184 -1017
+rect 134 -1426 184 -1414
+<< res0p35 >>
+rect -196 -1002 -122 1002
+rect 122 -1002 196 1002
+<< properties >>
+string FIXED_BBOX -307 -1545 307 1545
+string gencell sky130_fd_pr__res_xhigh_po_0p35
+string library sky130
+string parameters w 0.350 l 10 m 1 nx 2 wmin 0.350 lmin 0.50 rho 2000 val 58.218k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 0.350 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.ext b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.ext
new file mode 100644
index 0000000..aa04803
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.ext
@@ -0,0 +1,18 @@
+timestamp 1654072730
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_n285_n582#" 77 1059.9 -285 -582 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n285_n150#" 3800 0 -285 -150 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 171000 1740 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n285_150#" 77 1061.65 -285 150 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n415_n712#" 0 0 -415 -712 ppd 0 0 0 0 0 0 0 0 0 0 148648 8744 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148648 8744 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n285_n582#" "a_n285_150#" 117.603
+device rsubckt sky130_fd_pr__res_xhigh_po_2p85 -285 -150 -284 -149 l=300 "a_n415_n712#" "a_n285_n150#" 0 0 "a_n285_n582#" 570 0 "a_n285_150#" 570 0
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.mag b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.mag
new file mode 100644
index 0000000..39841e3
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_8K9944.mag
@@ -0,0 +1,54 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072730
+<< pwell >>
+rect -451 -748 451 748
+<< psubdiff >>
+rect -415 678 -319 712
+rect 319 678 415 712
+rect -415 616 -381 678
+rect 381 616 415 678
+rect -415 -678 -381 -616
+rect 381 -678 415 -616
+rect -415 -712 -319 -678
+rect 319 -712 415 -678
+<< psubdiffcont >>
+rect -319 678 319 712
+rect -415 -616 -381 616
+rect 381 -616 415 616
+rect -319 -712 319 -678
+<< xpolycontact >>
+rect -285 150 285 582
+rect -285 -582 285 -150
+<< xpolyres >>
+rect -285 -150 285 150
+<< locali >>
+rect -415 678 -319 712
+rect 319 678 415 712
+rect -415 616 -381 678
+rect 381 616 415 678
+rect -415 -678 -381 -616
+rect 381 -678 415 -616
+rect -415 -712 -319 -678
+rect 319 -712 415 -678
+<< viali >>
+rect -269 167 269 564
+rect -269 -564 269 -167
+<< metal1 >>
+rect -281 564 281 570
+rect -281 167 -269 564
+rect 269 167 281 564
+rect -281 161 281 167
+rect -281 -167 281 -161
+rect -281 -564 -269 -167
+rect 269 -564 281 -167
+rect -281 -570 281 -564
+<< res2p85 >>
+rect -287 -152 287 152
+<< properties >>
+string FIXED_BBOX -398 -695 398 695
+string gencell sky130_fd_pr__res_xhigh_po_2p85
+string library sky130
+string parameters w 2.850 l 1.5 m 1 nx 1 wmin 2.850 lmin 0.50 rho 2000 val 1.184k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 2.850 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.ext b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.ext
new file mode 100644
index 0000000..a4cc6db
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.ext
@@ -0,0 +1,18 @@
+timestamp 1654072472
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_n285_n532#" 77 1048.86 -285 -532 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n285_n100#" 5700 0 -285 -100 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114000 1540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n285_100#" 77 1050.65 -285 100 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n415_n662#" 0 0 -415 -662 ppd 0 0 0 0 0 0 0 0 0 0 141848 8344 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 141848 8344 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n285_n532#" "a_n285_100#" 173.214
+device rsubckt sky130_fd_pr__res_xhigh_po_2p85 -285 -100 -284 -99 l=200 "a_n415_n662#" "a_n285_n100#" 0 0 "a_n285_n532#" 570 0 "a_n285_100#" 570 0
diff --git a/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.mag b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.mag
new file mode 100644
index 0000000..84347c4
--- /dev/null
+++ b/mag/comp/sky130_fd_pr__res_xhigh_po_2p85_TY94YJ.mag
@@ -0,0 +1,54 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654072472
+<< pwell >>
+rect -451 -698 451 698
+<< psubdiff >>
+rect -415 628 -319 662
+rect 319 628 415 662
+rect -415 566 -381 628
+rect 381 566 415 628
+rect -415 -628 -381 -566
+rect 381 -628 415 -566
+rect -415 -662 -319 -628
+rect 319 -662 415 -628
+<< psubdiffcont >>
+rect -319 628 319 662
+rect -415 -566 -381 566
+rect 381 -566 415 566
+rect -319 -662 319 -628
+<< xpolycontact >>
+rect -285 100 285 532
+rect -285 -532 285 -100
+<< xpolyres >>
+rect -285 -100 285 100
+<< locali >>
+rect -415 628 -319 662
+rect 319 628 415 662
+rect -415 566 -381 628
+rect 381 566 415 628
+rect -415 -628 -381 -566
+rect 381 -628 415 -566
+rect -415 -662 -319 -628
+rect 319 -662 415 -628
+<< viali >>
+rect -269 117 269 514
+rect -269 -514 269 -117
+<< metal1 >>
+rect -281 514 281 520
+rect -281 117 -269 514
+rect 269 117 281 514
+rect -281 111 281 117
+rect -281 -117 281 -111
+rect -281 -514 -269 -117
+rect 269 -514 281 -117
+rect -281 -520 281 -514
+<< res2p85 >>
+rect -287 -102 287 102
+<< properties >>
+string FIXED_BBOX -398 -645 398 645
+string gencell sky130_fd_pr__res_xhigh_po_2p85
+string library sky130
+string parameters w 2.850 l 1 m 1 nx 1 wmin 2.850 lmin 0.50 rho 2000 val 833.824 dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 2.850 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/currm/.magicrc b/mag/currm/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/currm/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/currm/cmirror_channel.ext b/mag/currm/cmirror_channel.ext
new file mode 100644
index 0000000..ee1d023
--- /dev/null
+++ b/mag/currm/cmirror_channel.ext
@@ -0,0 +1,2182 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 0 1 3651 -1 0 -7727
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4 0 1 10181 -1 0 -7717
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5 0 1 16741 -1 0 -7697
+use mirror_p mirror_p_10 -1 0 4480 0 -1 -2110
+use mirror_p mirror_p_2 -1 0 4200 0 -1 1450
+use mirror_p mirror_p_0 -1 0 2550 0 -1 1450
+use mirror_n mirror_n_2 1 0 690 0 1 -3800
+use mirror_n mirror_n_1 1 0 2370 0 1 -3800
+use mirror_n mirror_n_0 1 0 1530 0 1 -3800
+use mirror_p mirror_p_13 -1 0 7180 0 -1 -2110
+use mirror_p mirror_p_12 -1 0 5830 0 -1 -2110
+use mirror_p mirror_p_5 -1 0 5550 0 -1 1450
+use mirror_p mirror_p_4 -1 0 6900 0 -1 1450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 0 -1 3651 1 0 -49
+use mirror_p mirror_p_15 -1 0 9880 0 -1 -2110
+use mirror_p mirror_p_14 -1 0 8530 0 -1 -2110
+use mirror_p mirror_p_11 -1 0 9600 0 -1 1450
+use mirror_p mirror_p_3 -1 0 8250 0 -1 1450
+use mirror_p mirror_p_18 -1 0 13930 0 -1 -2110
+use mirror_p mirror_p_17 -1 0 12580 0 -1 -2110
+use mirror_p mirror_p_16 -1 0 11230 0 -1 -2110
+use mirror_p mirror_p_9 -1 0 10950 0 -1 1450
+use mirror_p mirror_p_8 -1 0 12300 0 -1 1450
+use mirror_p mirror_p_7 -1 0 13650 0 -1 1450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 0 1 10181 -1 0 -18
+use mirror_p mirror_p_6 -1 0 15000 0 -1 1450
+use mirror_p mirror_p_19 -1 0 15280 0 -1 -2110
+use mirror_p mirror_p_20 -1 0 16630 0 -1 -2110
+use mirror_p mirror_p_21 -1 0 19050 0 -1 1450
+use mirror_p mirror_p_22 -1 0 16350 0 -1 1450
+use mirror_p mirror_p_23 -1 0 17700 0 -1 1450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 0 1 16711 -1 0 -17
+node "m5_12520_n2280#" 0 1384 12520 -2280 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1776300 5680 0 0
+node "m5_6110_n2480#" 0 1002.03 6110 -2480 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1849200 6220 0 0
+node "m4_540_n4400#" 0 851.934 540 -4400 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 997500 4160 0 0 0 0
+node "m3_14320_n4260#" 1 3442.92 14320 -4260 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2250400 15900 612664 3146 2013000 5860 0 0
+node "m3_7180_n4260#" 2 4860.83 7180 -4260 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3463300 25840 404534 2546 1742300 5280 0 0
+node "m3_3240_n570#" 0 12231.3 3240 -570 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10460900 76400 0 0 0 0 0 0
+node "VP" 3 17696.9 1500 3200 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20176300 38000 931788 6596 7289328 37172 0 0
+node "TIA_I_Bias1" 4 6289.73 4070 -3810 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5168100 26580 0 0 0 0 0 0 0 0
+node "VN" 2 3514.88 700 -3630 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 181800 3460 1120600 6220 326144 2448 2175252 5928 0 0
+node "m2_4390_n2520#" 9 5086.17 4390 -2520 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2067200 24660 0 0 0 0 0 0 0 0
+node "TIA_I_Bias2" 0 170.416 2530 -720 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51800 1020 0 0 0 0 0 0 0 0
+node "A_Out_I_Bias" 5 7547.86 3930 -210 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5511600 31340 0 0 0 0 0 0 0 0
+node "I_in_channel" 0 209.905 850 -720 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51800 1020 0 0 0 0 0 0 0 0
+node "m2_1730_n720#" 1 694.071 1730 -720 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 259900 3760 0 0 0 0 0 0 0 0
+node "m2_4080_1040#" 11 6104.66 4080 1040 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2533000 30140 0 0 0 0 0 0 0 0
+node "m1_4090_n3150#" 10 8184.43 4090 -3150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2513400 28020 223600 1900 226800 1920 649000 3380 0 0 0 0
+node "m1_n60_n1280#" 3 2259.86 -60 -1280 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 503900 6720 171600 1660 176300 1680 317222 2322 0 0 0 0
+node "m1_890_n610#" 0 88.3929 890 -610 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 440 0 0 0 0 0 0 0 0 0 0
+node "m1_2160_n140#" 2 323.888 2160 -140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86600 2500 0 0 0 0 0 0 0 0 0 0
+node "m1_2160_410#" 15 8776.02 2160 410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2602800 35760 0 0 0 0 0 0 0 0 0 0
+node "li_2850_580#" 110 2063.27 2850 580 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 880000 6140 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "TIA_I_Bias2" "I_in_channel" 9.39416
+cap "m1_n60_n1280#" "m1_2160_410#" 17.9229
+cap "m3_3240_n570#" "m1_2160_410#" 3072.09
+cap "TIA_I_Bias2" "m2_1730_n720#" 38.3252
+cap "A_Out_I_Bias" "m3_3240_n570#" 8464.47
+cap "VN" "TIA_I_Bias1" 12.1084
+cap "A_Out_I_Bias" "m2_1730_n720#" 6.24286
+cap "m2_1730_n720#" "I_in_channel" 19.55
+cap "m3_7180_n4260#" "m5_6110_n2480#" 155.487
+cap "A_Out_I_Bias" "m2_4080_1040#" 654.596
+cap "m5_6110_n2480#" "m2_4390_n2520#" 691.729
+cap "TIA_I_Bias1" "m1_4090_n3150#" 1422.38
+cap "TIA_I_Bias1" "m3_7180_n4260#" 4162.44
+cap "VN" "m4_540_n4400#" 963.071
+cap "m3_7180_n4260#" "m1_4090_n3150#" 949.222
+cap "TIA_I_Bias1" "m2_4390_n2520#" 534.22
+cap "m1_890_n610#" "m1_n60_n1280#" 7.36858
+cap "m1_890_n610#" "I_in_channel" 132.095
+cap "m2_4390_n2520#" "m1_4090_n3150#" 14.8409
+cap "m1_2160_n140#" "m1_2160_410#" 57.217
+cap "m1_n60_n1280#" "m1_2160_n140#" 25.1788
+cap "m2_1730_n720#" "m1_2160_n140#" 282.359
+cap "li_2850_580#" "VP" 206.685
+cap "TIA_I_Bias1" "m3_14320_n4260#" 2889.27
+cap "m1_4090_n3150#" "m3_14320_n4260#" 601.06
+cap "A_Out_I_Bias" "m1_2160_410#" 317.417
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 23.9552
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -141.828
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 167.231
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 63.4564
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 167.231
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 63.4564
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -147.071
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 0.0332098
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2.21581
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 21.0157
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 0.156286
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 32.5613
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -240.746
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -130.653
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 300.615
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 117.269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -136.182
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 54.4034
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1.47252
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 78.618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 26.8008
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -264.273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -275.821
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 0.0166049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 25.9912
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 37.5114
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -261.413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 224.899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 229.444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -250.085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 62.6707
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 27.8946
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 26.8008
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -264.273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -275.821
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 0.0166049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 25.9912
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 37.5114
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 224.899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -261.413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -250.085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 229.444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 27.8946
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 62.6707
+cap "VN" "m4_540_n4400#" 8.69104
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 26.8008
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -264.273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 118.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -275.821
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 25.9912
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 14.1972
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "m3_7180_n4260#" 1.20064
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -261.413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 224.899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -250.085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 27.8946
+cap "m1_4090_n3150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 15.4626
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -20.3682
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -747.004
+cap "m4_540_n4400#" "mirror_n_2/m1_100_180#" -120.622
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_n_1/m1_100_180#" -42.3707
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 21.5172
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 42.3156
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 36.603
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 43.102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 85.2854
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 100.479
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -222.862
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -219.083
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 85.2854
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 100.479
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 78.7923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 20.8672
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_15/m1_n190_n1662#" -266.726
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.937716
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" -13.5881
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 163.533
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -199.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -213.406
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 27.2399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 8.28485
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -742.364
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 22.5565
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 0.245419
+cap "m1_4090_n3150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 79.3423
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 22.5565
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "mirror_p_19/m1_n190_n1662#" -33.8913
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 42.229
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 62.0989
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -76.1204
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 8.20592
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -10.0588
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 8.17434
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 168.858
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 9.49965
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 9.76317
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 497.527
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 52.2438
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 613.225
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 64.1563
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 14.3026
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 1.07615
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 1.75449
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 124.927
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 28.782
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.57174
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_p_10/m1_n190_1320#" 1.1742
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_p_10/m1_n190_1320#" 4.79733
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 83.2091
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 4.77156
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -2029.98
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 8.46591
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 9.49965
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 7.40359
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 17.1568
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 0.925553
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.02638
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 190.683
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 52.2438
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2.36444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" -89.0755
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.06446
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 375.586
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 460.107
+cap "mirror_n_2/m1_100_180#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 46.9812
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/m1_n92_1078#" 65.5996
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 6.07951
+cap "m4_540_n4400#" "mirror_n_1/m1_140_2740#" 341.305
+cap "mirror_p_10/m1_n190_1320#" "mirror_n_1/m1_140_2740#" 0.0281959
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/m1_140_2740#" 16.5794
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 31.9159
+cap "m4_540_n4400#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 967.061
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/m1_140_2740#" 0.954904
+cap "mirror_p_10/m1_n190_1320#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 8.47479
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.57174
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "m4_540_n4400#" 128.541
+cap "mirror_n_2/m1_100_180#" "mirror_n_0/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 36.9914
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 16.1802
+cap "mirror_n_2/m1_100_180#" "m4_540_n4400#" 278.332
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n1215#" "mirror_n_1/m1_140_2740#" 4.01425
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" -49.2001
+cap "mirror_p_10/m1_n190_1320#" "mirror_n_2/m1_100_180#" 37.1118
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 21.5768
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 176.305
+cap "mirror_n_2/m1_100_180#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -14.111
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.342446
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_10/m1_n92_1078#" -17.2315
+cap "mirror_n_2/m1_100_180#" "mirror_p_10/m1_n92_1078#" -69.5884
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_n_1/m1_140_2740#" 196.005
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_n_1/m1_140_2740#" 5.68066
+cap "mirror_n_2/m1_100_180#" "mirror_n_1/m1_140_2740#" 567.607
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "m4_540_n4400#" -16.717
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -69.3963
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 31.6585
+cap "mirror_n_2/m1_100_180#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 643.62
+cap "mirror_p_10/m1_n92_1078#" "m4_540_n4400#" 404.458
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/m1_n92_1078#" 109.607
+cap "mirror_n_2/m1_100_2840#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 4.75888
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/m1_100_180#" 1286.8
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/m1_n190_1320#" 274.269
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/m1_140_2740#" 12.4619
+cap "mirror_p_10/m1_n190_1320#" "mirror_n_1/m1_100_180#" 34.4046
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 1805.68
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/m1_100_180#" 1686.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_n_1/m1_100_180#" 0.741039
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/m1_n92_1078#" 12.4404
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/m1_100_180#" 1.84962
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "mirror_p_10/m1_n190_1320#" 8.47479
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_10/m1_n92_1078#" 244.693
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_n_1/m1_140_2740#" 1.1094
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_10/m1_n190_1320#" -0.298593
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n92_1078#" -375.746
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 8.1768
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n190_1320#" 59.3067
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 6.10456
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 349.842
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_n_1/m1_100_180#" 4630.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 582.208
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 12.8069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_n_1/m1_100_180#" -37.3244
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_1320#" 713.045
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/m1_140_2740#" 0.0529739
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 42.3156
+cap "mirror_p_10/m1_n190_1320#" "mirror_n_1/m1_140_2740#" 4.81304
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 0.342446
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/m1_n92_1078#" 349.439
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -2192.32
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" 0.838074
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 36.603
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 59.8045
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_13/m1_n190_n1662#" -57.091
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_13/m1_n190_n1662#" 3668.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n92_1078#" 2575.43
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -70.4218
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/m1_n92_1078#" 773.578
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -334.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n92_1078#" 4561.87
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3267.65
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 313.722
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -1092.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -84.6077
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 22.7599
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" 3427.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3528.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -39.9125
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/m1_n190_n1662#" -1268.34
+cap "mirror_p_10/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 59.3067
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 43.102
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_13/m1_n190_n1662#" -1171.42
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 704.624
+cap "mirror_p_13/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 698.409
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 59.8045
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/m1_n92_1078#" 1027.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -73.2597
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 947.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 37.2523
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -33.21
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 500.473
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 2691.4
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -228.086
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 108.066
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 8.0387
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/m1_n92_1078#" -394.4
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1134.91
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/m1_n92_1078#" 770.347
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -240.419
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/m1_n92_1078#" 1260.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "mirror_p_13/m1_n190_1320#" 203.207
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -2714.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "mirror_p_13/m1_n92_1078#" -1053.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_15/m1_n190_n1662#" 47.0694
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_1320#" 1250.05
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 123.8
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 414.187
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1506.16
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/m1_n190_1320#" 248.832
+cap "mirror_p_15/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 706.953
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 83.1527
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/m1_n92_1078#" 4130.65
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1113.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 15.5876
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 10379.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 175.549
+cap "mirror_p_15/m1_n190_1320#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 725.672
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 7760.92
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_1320#" 754.035
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3430.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_15/m1_n92_1078#" 1253.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -239.333
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_15/m1_n190_1320#" 934.404
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3.03678
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2.6039
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 354.564
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_1320#" 807.932
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2177.63
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "mirror_p_18/m1_n190_1320#" 764.555
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 671.368
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3906.17
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1195.59
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 0.304933
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 764.584
+cap "mirror_p_18/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3827.25
+cap "mirror_p_18/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 784.506
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 4104.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "mirror_p_18/m1_n92_1078#" 869.624
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 27.2399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 25.3679
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 0.304933
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_1320#" 765.592
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -63.5031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.88217
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1353.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "mirror_p_18/m1_n190_1320#" 213.543
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 2476.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 185.121
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_18/m1_n190_1320#" 1309.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "mirror_p_18/m1_n92_1078#" 228.328
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 3303.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.304933
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 82.5754
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.31392
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "m1_4090_n3150#" 42.349
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_1320#" 2512.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 486.123
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 4294.27
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 127.688
+cap "mirror_p_18/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1449.69
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/m1_n190_1320#" 431.808
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.335947
+cap "mirror_p_19/m1_n190_n1662#" "mirror_p_19/m1_n92_1078#" 110.818
+cap "mirror_p_19/m1_n92_1078#" "mirror_p_19/m1_n190_1320#" 13.9964
+cap "mirror_p_19/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 42.229
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_19/m1_n190_n1662#" 0.304933
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.308229
+cap "mirror_p_19/m1_n190_n1662#" "mirror_p_19/m1_n190_1320#" 528.624
+cap "mirror_p_19/m1_n190_n1662#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1888.66
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_19/m1_n190_n1662#" 553.979
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_19/m1_n190_1320#" 290.645
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 159.267
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 62.0989
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 42.229
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8.20592
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8.17434
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 19.2746
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 846.267
+cap "mirror_n_2/m1_100_180#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 82.0674
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/m1_100_180#" 10.7256
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/m1_100_180#" 182.641
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 84.2735
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_n_2/m1_100_180#" 829.82
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 18.2677
+cap "mirror_p_0/w_230_1520#" "mirror_n_2/m1_100_180#" 0.604317
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 9.17346
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 84.2735
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 14.4317
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_2/m1_100_180#" 55.4439
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 0.99922
+cap "mirror_p_0/w_230_1520#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 4.78126
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 38.8316
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 0.375691
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 19.2746
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 139.171
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/m1_100_180#" 182.641
+cap "mirror_n_2/m1_100_180#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 493.881
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 0.715832
+cap "mirror_n_1/m1_198_3080#" "mirror_n_2/m1_100_180#" 0.898851
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 36.752
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 718.461
+cap "mirror_n_2/m1_100_180#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 247.141
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_n_2/m1_100_180#" 12.7689
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 15.3323
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 4.01761
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 0.180587
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -700.357
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_n_2/m1_100_180#" 6.96999
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/m1_100_180#" 26.7854
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 6.21474
+cap "mirror_n_2/m1_100_180#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -3553.96
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n1215#" 6.25765
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_0/w_230_1520#" 0.428058
+cap "mirror_n_2/m1_100_2840#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 13.8908
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_p_10/m1_n190_n1662#" 82.079
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 464.025
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/m1_n190_n1662#" 0.918424
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 38.5666
+cap "m4_540_n4400#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 779.759
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 10.5062
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 6.04017
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_2/m1_100_180#" 774.964
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 6.48764
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/m1_n190_n1662#" 7.86121
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 113.701
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" -240.678
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 0.900329
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.88676
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n92_1078#" 52.6518
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n190_1320#" 1.4815
+cap "m4_540_n4400#" "mirror_p_10/m1_n190_n1662#" 1213.17
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_1320#" 2.63267
+cap "m4_540_n4400#" "mirror_p_10/m1_n92_1078#" 733.804
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "m4_540_n4400#" 1320.59
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/m1_n190_n1662#" 456.185
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 15.3323
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 23.5264
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_p_0/w_230_1520#" 1.69802
+cap "mirror_n_2/m1_100_180#" "mirror_p_10/m1_n190_n1662#" 195.587
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 60.4263
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -870.71
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/m1_100_180#" 1224.34
+cap "m4_540_n4400#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -139.43
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n190_n1662#" 1.36978
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_2/m1_100_180#" -41.8433
+cap "m4_540_n4400#" "mirror_n_2/m1_100_180#" 400.852
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/m1_100_180#" 52.3852
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_2/m1_100_180#" -64.5268
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 26.3581
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.2997
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 6.60082
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n190_n1662#" 3819.51
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/m1_n190_n1662#" 0.381272
+cap "mirror_n_1/m1_100_180#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.462406
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.88676
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_n_1/m1_100_180#" -283.99
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 545.411
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/m1_100_180#" 0.716729
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.216699
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 39.0155
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/m1_100_180#" 6477.56
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 2242.68
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -6988.46
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" 0.788306
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/m1_n190_n1662#" 1.94205
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 26.8008
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 7.12803
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/m1_100_180#" 3567.95
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n190_n1662#" 1.36978
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" 9.82902
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 2.96517
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 1443.32
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/m1_n190_1320#" 10.1609
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 317.101
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 0.971053
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 4.30201
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_1320#" 7.82494
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 8.50856
+cap "mirror_n_1/m1_100_180#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 1917.47
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -358.262
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 3.9077
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 6.36344
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.88676
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 34.3853
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n190_n1662#" 6421.74
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n190_1320#" 3.4709
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/m1_n92_1078#" 1.20508
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 9.00533
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 38.8162
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 1.00443
+cap "mirror_p_10/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 9.775
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.88676
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/m1_n190_n1662#" 1.2997
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -119.737
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 8030.88
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -256.916
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.216699
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_10/m1_n92_1078#" -167.312
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 9.15591
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 4921.43
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_10/m1_n190_n1662#" 1.2947
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 8429.19
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/m1_n190_n1662#" 820.467
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -123.924
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7718.58
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 1.8773
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" 3774.89
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 2309.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_10/m1_n190_n1662#" -155.385
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_13/m1_n190_1320#" 9.51776
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.216699
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/m1_n190_n1662#" 841.482
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 0.647351
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 9.80326
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -305.741
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 9.00533
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_5/m1_n190_1320#" 3.42137
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -241.892
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.0325048
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.2997
+cap "mirror_p_13/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 125.152
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_5/m1_n190_1320#" 38.8162
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/m1_n190_1320#" 0.452888
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" -438.702
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/m1_n92_1078#" -29.7333
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 4335.31
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 1.77352
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 0.769087
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.216699
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 9.00533
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -271.819
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -284.27
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -6631.11
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_13/m1_n190_n1662#" 9.80326
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" -727.865
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3.75591
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/m1_n190_n1662#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_13/m1_n190_n1662#" 25.9912
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" -311.31
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_13/m1_n190_n1662#" 1.2997
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.184194
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.77352
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 234.154
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_13/m1_n190_n1662#" 38.8162
+cap "mirror_p_13/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 4.44089e-16
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/m1_n190_1320#" 0.452888
+cap "mirror_p_15/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 4.44089e-16
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2505.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1572.01
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_15/m1_n190_n1662#" 1.2997
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 4.09654
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.77352
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.216699
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_1320#" 0.452888
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 970.028
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 5966.05
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 9.00533
+cap "mirror_p_15/m1_n190_1320#" "mirror_p_15/m1_n190_n1662#" 9.51776
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 587.915
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 501.017
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/m1_n190_n1662#" 38.8162
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_15/m1_n190_n1662#" 9.80326
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.77352
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.2997
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 12100
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 824.541
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_1320#" 1.11188
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_15/m1_n190_n1662#" 9.80326
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3.42137
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 38.5621
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 13680
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/m1_n190_n1662#" 38.8162
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2872.51
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.216699
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3847.55
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1949.87
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/m1_n190_1320#" 9.51776
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 9.00533
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.2997
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1815.76
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.216699
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 9.80326
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5235.15
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 9.00533
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 924.21
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/m1_n190_1320#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 4961.78
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1026.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 5835.65
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 1.77352
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_1320#" 1.5512
+cap "mirror_p_18/m1_n190_1320#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -8.88178e-16
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_9/m1_n190_1320#" 38.8162
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 3651.65
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 516.405
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -124.591
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3.42137
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 641.949
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.77352
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/m1_n190_1320#" 1.66533e-16
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_8/m1_n190_1320#" 38.8162
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 9.80326
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_1320#" 1.5512
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/m1_n190_1320#" 9.51776
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 62.6707
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.216699
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 9.00533
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 684.659
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.2997
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -335.075
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -685.722
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/m1_n92_1078#" 4477.88
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -580.116
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_8/m1_n190_1320#" 3.42137
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.216699
+cap "mirror_p_18/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 9.51776
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 9.80326
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 38.8162
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -362.261
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/m1_n92_1078#" 252.244
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 9.00533
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_18/m1_n190_n1662#" -633.753
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/m1_n190_n1662#" 2003.33
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.536812
+cap "mirror_p_18/m1_n190_1320#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.66533e-16
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 3806.5
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" 1.77352
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "mirror_p_18/m1_n190_n1662#" 1.2997
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_7/m1_n190_1320#" 3.42137
+cap "mirror_p_18/m1_n190_1320#" "mirror_p_18/m1_n92_1078#" 1.77087
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_6/m1_n190_1320#" 4.01616
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_19/m1_n190_1320#" 0.643092
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n615#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.335947
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 0.335947
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1469.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2144.85
+cap "mirror_p_19/m1_n92_1078#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 36.8843
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.671895
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2158.92
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" -703.849
+cap "mirror_n_2/li_n30_n30#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 12.7178
+cap "mirror_n_2/li_n30_n30#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -796.322
+cap "mirror_n_2/li_n30_n30#" "mirror_n_1/m1_198_3080#" 4.08584
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 576.592
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/m1_198_3080#" 8.52997
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_n_1/m1_198_3080#" 5.21051
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -166.016
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_2/li_n30_n30#" 15.8476
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/li_n30_n30#" 32.4517
+cap "mirror_n_2/li_n30_n30#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 8.21203
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 33.543
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 30.8976
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 87.7263
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 16.4484
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 68.6991
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 15.3034
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 10.5911
+cap "mirror_n_2/li_n30_n30#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2.71246
+cap "mirror_n_2/li_n30_n30#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 496.779
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 4.71166
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/m1_n190_n1662#" 29.543
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -30.7064
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 3.1596
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/li_n30_n30#" 8.14695
+cap "mirror_n_1/m1_198_3080#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 67.0861
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -1536.98
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/li_n30_n30#" 6.11535
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 14.2247
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 20.5498
+cap "mirror_n_2/li_n30_n30#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 40.6637
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 16.4484
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 692.577
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 154.669
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/li_n30_n30#" 86.0595
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -84.0249
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_n_2/li_n30_n30#" -74.0014
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 92.4851
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n92_1078#" 0.577284
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 33.543
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_10/m1_n190_n1662#" 17.5858
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 3.00164
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 354.961
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 3.19184
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 0.184731
+cap "mirror_n_2/li_n30_n30#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 131.412
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2.46246
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 99.876
+cap "mirror_n_1/m1_198_3080#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 306.508
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_1/m1_198_3080#" 9.59605
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.80121
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 87.7263
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_2/li_n30_n30#" 167.317
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 8.90071
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 49.9314
+cap "mirror_n_1/m1_198_3080#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 8.52997
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 175.453
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_2/li_n30_n30#" 45.6514
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" -11.9344
+cap "mirror_n_1/m1_198_3080#" "mirror_n_2/li_n30_n30#" 87.3756
+cap "mirror_n_1/m1_198_3080#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 147.915
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n190_1320#" 8.88857
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 8.89501
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 3.39813
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 116.909
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 8.02646
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 60.548
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 5.05084
+cap "mirror_n_1/m1_198_3080#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 42.2105
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_2/m1_n92_1078#" 22.0789
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 4.37786
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_10/m1_n190_n1662#" 2.95928
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 391.624
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/m1_n190_n1662#" 236.826
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.02734
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n190_1320#" 7.66196
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 18.1272
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 148.931
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 84.7006
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 10.0625
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 26.873
+cap "mirror_n_1/li_n30_n30#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 15.6489
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/m1_n92_1078#" 46.8662
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n92_1078#" 224.526
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 3.68516
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 95.9424
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/m1_n92_1078#" 27.3977
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 15.3034
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 24.8881
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 426.303
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 39.7829
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_n_1/li_n30_n30#" 11.327
+cap "mirror_n_1/li_n30_n30#" "mirror_p_10/m1_n92_1078#" 32.0835
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n190_n1662#" 2178.64
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 289.02
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 91.9762
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_p_10/m1_n190_n1662#" 50.4529
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 178.914
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 596.147
+cap "mirror_n_1/li_n30_n30#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 155.827
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 363.455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_n_1/li_n30_n30#" 642.403
+cap "mirror_n_1/li_n30_n30#" "mirror_p_10/m1_n190_n1662#" 135.215
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 2.15012
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_2/sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n597#" 0.36501
+cap "mirror_n_1/li_n30_n30#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 33.4412
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -168.172
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/m1_n92_1078#" 8.90071
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 319.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" 154.423
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 3.74076
+cap "mirror_n_2/m1_100_2840#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 4.50164
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/m1_n190_n1662#" 23.5886
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.75651
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 545.193
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 19.1017
+cap "mirror_n_1/li_n30_n30#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 583.166
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n92_1078#" 3.00164
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 31.5074
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -512.141
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/m1_n92_1078#" 29.6519
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3399.34
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 213.184
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 26.8008
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/m1_n92_1078#" 0.132993
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5501.91
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 15.5012
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_2/m1_n190_1320#" 111.226
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n190_1320#" 99.9319
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 274.247
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n389_n1301#" 1.86536
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 2.82182
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" "mirror_p_10/m1_n92_1078#" 1.05027
+cap "mirror_p_2/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1448.84
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 1.1291
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n92_1078#" 118.315
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1037.9
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2292.85
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 166.565
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 25.0793
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/m1_198_3080#" 0.265986
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -5312.39
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/m1_100_2840#" 0.416165
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n389_n1301#" 2.05002
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n190_n1662#" 1.02734
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 2.13603
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 66.2046
+cap "mirror_n_1/m1_198_3080#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.751622
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 0.808229
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_2/m1_n190_1320#" 89.7336
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -522.966
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_1320#" 1.22661
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -584.802
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_2/m1_n190_1320#" 33.6241
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3303.14
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/m1_n92_1078#" 564.499
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_p_2/m1_n190_1320#" 1.0178
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 747.939
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -126.195
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_M8466X_0/a_n389_n1301#" 6.38896
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n190_1320#" 1315.86
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 345.651
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -108.325
+cap "mirror_p_10/m1_n92_1078#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 5.30875
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -117.838
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 99.968
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -264.273
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n92_1078#" -540.74
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 1.43369
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 125.152
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_2/m1_n92_1078#" 17.8293
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 6174.08
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 24.5133
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" 4484.71
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -114.054
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1260.52
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n92_1078#" 15.5414
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_2/m1_n92_1078#" 29.6519
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 14.5764
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -73.0432
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -99.7811
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 686.075
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6373.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 2535.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n92_1078#" 4570.57
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_2/m1_n190_1320#" 34.2925
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -169.025
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7926.86
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2185.12
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 25.0772
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n190_1320#" 1027.7
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n190_n1662#" 1.02734
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_2/m1_n190_1320#" 89.7336
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.643
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_2/m1_n190_1320#" 120.281
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 25.5514
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2607.33
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/m1_n190_n1662#" -69.4133
+cap "mirror_p_10/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6401.69
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 73.9904
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.304933
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 277.234
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/m1_n190_n1662#" 136.659
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n190_1320#" 958.986
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 14.2836
+cap "mirror_p_10/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 621.514
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 178.529
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 14.5686
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -275.821
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 21.9854
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.02734
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_5/m1_n190_1320#" 689.056
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 26.0836
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.15696
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 634.975
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 34.2925
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2303.37
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" 9.94469
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -384.592
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_5/m1_n190_1320#" 1.00868
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.643
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" 22.7922
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -78.7503
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.304933
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/m1_n190_1320#" 0.13907
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 67.0711
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_5/m1_n190_1320#" 235.192
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/m1_n190_1320#" 305.57
+cap "mirror_p_13/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 868.874
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 183.265
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_5/m1_n92_1078#" 29.6519
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 11.9555
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 28.8647
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -1.06868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.152
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" 9.11172
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -23.4798
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 15.693
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_5/m1_n190_1320#" 89.7336
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -1.04563
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" -62.6175
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 13.908
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -70.345
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 271.405
+cap "mirror_p_13/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2867.61
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 91.8961
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 29.6868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -67.5571
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_5/m1_n190_1320#" 729.824
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_13/m1_n92_1078#" -209.763
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_4/m1_n190_1320#" 38.9199
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -479.79
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" "mirror_p_13/m1_n92_1078#" 9.94469
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 20.2298
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_13/m1_n92_1078#" -4148.18
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" "mirror_p_13/m1_n190_n1662#" 9.11172
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/m1_n190_1320#" -316.268
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_13/m1_n190_n1662#" -1757.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -0.0122269
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.643
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.156294
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/m1_n92_1078#" -275.365
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 29.7848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_4/m1_n190_1320#" 23.8206
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 22.5305
+cap "mirror_p_13/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -113.243
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -5740.98
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.02734
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.304933
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 25.9912
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 14.6269
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -176.164
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 552.539
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 48.754
+cap "mirror_p_13/m1_n92_1078#" "mirror_p_4/m1_n190_1320#" 89.9154
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_13/m1_n92_1078#" 658.301
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/m1_n190_1320#" 690.555
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 17.2498
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 12.9945
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_13/m1_n92_1078#" 269.267
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_13/m1_n92_1078#" 27.7586
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_4/m1_n190_1320#" 13.908
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_4/m1_n190_1320#" 125.071
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -41.8712
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_13/m1_n190_n1662#" 2401.51
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 118.364
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -49.4691
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 36.4388
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_4/m1_n92_1078#" 0.0979951
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.0166049
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 191.349
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 16.2035
+cap "mirror_p_11/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 12.9945
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 696.798
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/m1_n92_1078#" 118.364
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 0.154825
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1210.23
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 9.11172
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4120.25
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 48.2005
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_11/m1_n92_1078#" 29.7848
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -41.9681
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/m1_n92_1078#" 96.6376
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_11/m1_n92_1078#" 126.325
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_11/m1_n92_1078#" 27.7586
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/m1_n190_n1662#" 981.75
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -23.7439
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 9.16602
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2500.09
+cap "mirror_p_11/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 786.247
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 9.93559
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2019.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -35.6465
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_1320#" 551.71
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.643
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.304933
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_15/m1_n92_1078#" 909.896
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 9.2806
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 90.6135
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 265.63
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.02734
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 21.2883
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1124.62
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 193.256
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 89.0894
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 36.8277
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/m1_n190_n1662#" 511.5
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 422.381
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 15.2469
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 236.839
+cap "mirror_p_11/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 905.809
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7497.01
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_11/m1_n190_1320#" 85.8196
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 9.11172
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_9/m1_n92_1078#" 29.7848
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.304933
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 44.8839
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 72.702
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_9/m1_n92_1078#" 117.146
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -56.0824
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.02734
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n92_1078#" 12.9945
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 18.532
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 195.164
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 114.116
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 38.5621
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5136.32
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 90.6135
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1206.24
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 7.25835
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_15/m1_n190_n1662#" 1.21859
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2346.83
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_11/m1_n190_1320#" 48.2005
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -29.348
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 0.18605
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_9/m1_n92_1078#" 117.275
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1095.23
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5515.79
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/m1_n190_1320#" 583.722
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_1320#" 1019.09
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 166.144
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_9/m1_n92_1078#" 27.7586
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -547.616
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 418.433
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 8.04666
+cap "mirror_p_15/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 885.396
+cap "mirror_p_15/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 9943.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2095.73
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 48.2005
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/m1_n92_1078#" 117.275
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_8/m1_n92_1078#" 122.125
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 55.9643
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" -51.0667
+cap "mirror_p_18/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 611.466
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_18/m1_n190_n1662#" 1.21859
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_18/m1_n190_n1662#" 9.11172
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_18/m1_n92_1078#" 83.2103
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 656.85
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 8.04666
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -65.551
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 418.433
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" 2583.09
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n190_n1662#" 91.9479
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_8/m1_n92_1078#" 29.7848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 250.303
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_18/m1_n190_n1662#" 0.304933
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3818.07
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_8/m1_n92_1078#" 27.7586
+cap "mirror_p_9/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 685.906
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 192.123
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 5981.49
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.721
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/m1_n92_1078#" 12.9945
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 196.788
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 14.7608
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 64.1516
+cap "mirror_p_9/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 47.8236
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -264.273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 576.843
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n92_1078#" 14.5686
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 699.436
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 19.9493
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 5.35068
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" 1.02734
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -275.821
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_18/m1_n92_1078#" 118.136
+cap "mirror_p_9/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 430.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/m1_n190_n1662#" 2962.75
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -46.9655
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 4388.64
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -1297.85
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_18/m1_n190_n1662#" 9.11172
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 2014.21
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" 14.4358
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 3.72686
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 57.5049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 30.6934
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n190_n1662#" 91.9829
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n92_1078#" 1036.56
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_8/m1_n190_1320#" 804.506
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.721
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -4.20683
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n92_1078#" 14.5686
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_8/m1_n190_1320#" 25.848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -24.8414
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_8/m1_n190_1320#" 83.2103
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 193.827
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/m1_n92_1078#" 12.9945
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_8/m1_n190_1320#" 117.275
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 29.7848
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" 1.02734
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" 3387.07
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n92_1078#" 8.04666
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/m1_n190_n1662#" -195.021
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -250.981
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n92_1078#" 64.0394
+cap "mirror_p_18/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 658.679
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/m1_n190_1320#" 191.805
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 122.243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 24.5997
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/m1_n190_1320#" 418.433
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_18/m1_n92_1078#" 27.7586
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 197.986
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 48.2005
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 62.6707
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_18/m1_n92_1078#" 349.69
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_18/m1_n92_1078#" 83.2103
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n92_1078#" 14.5686
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n92_1078#" 63.7722
+cap "mirror_p_6/m1_n92_1078#" "mirror_p_18/m1_n92_1078#" 27.7586
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 522.187
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -0.620293
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n92_1078#" -6.68402
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_18/m1_n190_n1662#" 9.11172
+cap "mirror_p_7/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 25.848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n92_1078#" 890.374
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_18/m1_n190_n1662#" 6053.96
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n190_n1662#" 90.9185
+cap "mirror_p_6/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 118.364
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/m1_n190_1320#" 418.433
+cap "mirror_p_6/m1_n92_1078#" "mirror_p_7/m1_n190_1320#" 117.275
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -283.951
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 13.8975
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2.52881
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" -415.607
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/m1_n92_1078#" 12.9945
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 48.2005
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 3887.8
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -13.9775
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_7/m1_n190_1320#" 492.138
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 199.752
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 124.721
+cap "mirror_p_6/m1_n92_1078#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 29.7848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1109.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 36.5483
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n615#" 0.335947
+cap "mirror_p_6/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 185.129
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n190_1320#" 96.5681
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1604.74
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n1251#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 0.671895
+cap "mirror_p_6/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1141.88
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_657#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2.70067
+cap "mirror_p_6/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 428.855
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_657#" 9.11172
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n140_970#" 12.9945
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_6/m1_n140_970#" 413.413
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n190_n1662#" 23.2899
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_6/m1_n190_1320#" -455.216
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 970.337
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "mirror_p_6/m1_n140_970#" 0.763067
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_19/m1_n92_1078#" 24.4627
+cap "mirror_p_6/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1827.62
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 2788.2
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_6/m1_n140_970#" 62.0365
+cap "mirror_p_21/m1_n190_1320#" "mirror_p_21/m1_n92_1078#" 20.1859
+cap "mirror_p_20/m1_n190_n1662#" "mirror_p_21/m1_n190_1320#" 213.593
+cap "mirror_p_20/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 80.7845
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_21/m1_n92_1078#" 6.49725
+cap "mirror_p_20/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -18.1304
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_21/m1_n190_1320#" 840.804
+cap "mirror_p_21/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1242.25
+cap "mirror_p_20/m1_n190_n1662#" "mirror_p_21/m1_n92_1078#" 10.2111
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_21/m1_n190_1320#" 339.148
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_2/li_n30_n30#" 15.0489
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_1/m1_198_3080#" 4.57917
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 33.6187
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" -73.5269
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 72.9849
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 857.948
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.5539
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 4.13756
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 3.19184
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 20.879
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 3.1596
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 288.317
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 18.5137
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_2/li_n30_n30#" 10.7804
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 2331.84
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_n_2/li_n30_n30#" 0.828547
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.430968
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 1.22681
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/m1_198_3080#" 2.84326
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/m1_n190_n1662#" 46.749
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 715.862
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 210.453
+cap "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 6.90596
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 4.97295
+cap "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "mirror_p_10/m1_n190_n1662#" 1201.21
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_n_1/m1_198_3080#" -3.96826
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n92_1078#" -21.5466
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_10/m1_n190_n1662#" 82.5725
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -31.8504
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.718525
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 7.93941
+cap "mirror_p_10/m1_n190_n1662#" "mirror_n_1/li_n30_n30#" 0.965517
+cap "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "mirror_p_10/m1_n190_n1662#" 0.618671
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 5.19372
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n92_1078#" 1214.56
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3116.8
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 64.4804
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n92_1078#" 71.1118
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 1.39597
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 361.7
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n92_1078#" 416.759
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n190_1320#" 15.9775
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 46.2066
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1527.05
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 22.0789
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 265.087
+cap "mirror_p_2/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2109
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 15.3039
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/m1_n92_1078#" 67.334
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 1.17183
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/m1_n190_n1662#" 1358.73
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/m1_n190_n1662#" 24.0851
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n92_1078#" 3257.43
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 2.80012
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_10/m1_n190_n1662#" 5.0572
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_p_2/m1_n92_1078#" 5.87798
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 2.68403
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n92_1078#" 1.8731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 6260.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/m1_n190_n1662#" 1089.78
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1561.32
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 37.599
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 1.39597
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n92_1078#" 2275.43
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 2.11482
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_2/m1_n92_1078#" 2.5896
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 26.8008
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/m1_n92_1078#" 23.9721
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 283.778
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 2.3715
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n92_1078#" 835.916
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/m1_n92_1078#" 671.288
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.491893
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/m1_n92_1078#" 5.67974
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" -1244.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" 2721.1
+cap "mirror_p_2/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 759.801
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_10/m1_n190_n1662#" 15.0903
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/m1_n92_1078#" -3987.71
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_10/m1_n190_n1662#" 5.86324
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -264.273
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 21.7019
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n92_1078#" 817.749
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 118.452
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -275.076
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/m1_n190_1320#" 1076.31
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_10/m1_n190_n1662#" 4.38768
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_10/m1_n190_n1662#" 11.1121
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 2.3498
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n92_1078#" 3526.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.152
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 1165.76
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/m1_n92_1078#" 25.8654
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/m1_n92_1078#" 3847.42
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 1.39597
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_2/m1_n92_1078#" 3.27556
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n190_1320#" 960.109
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 8173.23
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 40.5505
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 6.72523
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6026.79
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_10/m1_n190_n1662#" -8.2689
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 16.8323
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.471507
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n92_1078#" 1901.73
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/m1_n190_1320#" 0.491893
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_2/m1_n190_1320#" 1.40988
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 7864.24
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/m1_n92_1078#" 660.056
+cap "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "mirror_p_2/m1_n190_1320#" 255.491
+cap "mirror_p_10/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3685.1
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/m1_n92_1078#" 3.7865
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_2/m1_n92_1078#" 1.37193
+cap "mirror_p_10/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 43.8922
+cap "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" 2.3715
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/m1_n190_1320#" 1.1749
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_5/m1_n190_1320#" 0.491893
+cap "mirror_p_5/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2.2216
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 7.39475
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_13/m1_n190_n1662#" 18.5742
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 851.707
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_5/m1_n92_1078#" 1150.51
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" 0.15696
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.39597
+cap "mirror_p_13/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1912.32
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 44.8009
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/m1_n190_1320#" 2.3498
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/m1_n92_1078#" 0.685965
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 118.452
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_5/m1_n92_1078#" 1.89325
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/m1_n92_1078#" 0.991967
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 105.2
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1465.48
+cap "mirror_p_5/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 43.0234
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_13/m1_n190_n1662#" 47.1817
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 27.7586
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -275.821
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_13/m1_n190_n1662#" 9.37015
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/m1_n92_1078#" 3.86353
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 126.582
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" -135.262
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_13/m1_n190_n1662#" 3.5257
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.152
+cap "mirror_p_5/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2200.74
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 18.7503
+cap "mirror_p_13/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2.3715
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_13/m1_n190_n1662#" 3511.88
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -16.3472
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_4/m1_n92_1078#" 3.96153
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_4/m1_n92_1078#" 663.114
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_4/m1_n92_1078#" 27.7586
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_4/m1_n190_1320#" 0.491893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_4/m1_n92_1078#" 1.22681
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 20.7452
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 50.1349
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/m1_n190_1320#" 47.0066
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 1.1749
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 262.516
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_13/m1_n190_n1662#" 8.089
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_13/m1_n190_n1662#" -276.078
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.45421
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -246.146
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/m1_n190_1320#" -510.469
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.0166049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 25.9912
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/m1_n92_1078#" 3450.82
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 0.156294
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_4/m1_n92_1078#" 806.252
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 0.0979951
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 2.85618
+cap "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2.3715
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/m1_n92_1078#" 181.352
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 932.589
+cap "mirror_p_13/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 7.62819
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 14.4999
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 2.93725
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_13/m1_n190_n1662#" -4086.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -8262.68
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_4/m1_n190_1320#" 23.8647
+cap "mirror_p_11/m1_n92_1078#" "mirror_p_11/m1_n190_1320#" 657.757
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 52.0425
+cap "mirror_p_11/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 3540.44
+cap "mirror_p_3/m1_n92_1078#" "mirror_p_11/m1_n190_1320#" 0.138896
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/m1_n190_1320#" 3.5247
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 238.247
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_15/m1_n190_n1662#" 21.8201
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/m1_n92_1078#" 2416.58
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/m1_n92_1078#" 27.7586
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_1320#" 620.867
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2097.32
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_7/m1_n190_n1662#" 1.85194
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_11/m1_n190_1320#" 169.777
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_15/m1_n190_n1662#" 1009.38
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/m1_n92_1078#" 3.96153
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 9.16602
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 2.31326
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/m1_n190_1320#" -52.7387
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 372.566
+cap "mirror_p_11/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 213.356
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/m1_n190_1320#" 0.587451
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/m1_n190_1320#" 0.491893
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 3.08914
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_15/m1_n190_n1662#" 2.16192
+cap "mirror_p_15/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_15/m1_n190_n1662#" 5.45718
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_11/m1_n92_1078#" 756.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/m1_n190_1320#" 660.944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_15/m1_n190_n1662#" 4447.39
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/m1_n190_1320#" 0.491893
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_15/m1_n190_n1662#" 9.9541
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 2.51963
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_15/m1_n190_n1662#" 4.38228
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_15/m1_n190_n1662#" -57.6713
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 995.049
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_15/m1_n190_n1662#" 10.2509
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.678333
+cap "mirror_p_9/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -364.122
+cap "mirror_p_9/m1_n92_1078#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 3.96153
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 38.5621
+cap "mirror_p_11/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 714.041
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 8943.55
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_15/m1_n190_n1662#" 1022
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 3.5247
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_9/m1_n92_1078#" 638.776
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_15/m1_n190_n1662#" 0.296824
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_9/m1_n92_1078#" 27.7586
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.491893
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -587.219
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 53.9502
+cap "mirror_p_9/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 756.313
+cap "mirror_p_9/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1012.21
+cap "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 7.25835
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 127.48
+cap "mirror_p_11/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1020.94
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 3.76747
+cap "mirror_p_15/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7065.16
+cap "mirror_p_15/m1_n190_n1662#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 23.0743
+cap "mirror_p_9/m1_n92_1078#" "mirror_p_15/m1_n190_n1662#" 3480.6
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 5.35068
+cap "mirror_p_8/m1_n92_1078#" "mirror_p_9/m1_n190_1320#" 638.776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_9/m1_n190_1320#" 431.626
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_9/m1_n190_1320#" 3.5247
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_9/m1_n190_1320#" 549.334
+cap "mirror_p_8/m1_n92_1078#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 756.265
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 55.574
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 614.44
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_9/m1_n190_1320#" 59.5179
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_9/m1_n190_1320#" 16.9525
+cap "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_18/m1_n190_n1662#" 3.12807
+cap "mirror_p_8/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 609.839
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 795.164
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_8/m1_n92_1078#" 3.96153
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_8/m1_n92_1078#" 1838.48
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/m1_n190_n1662#" 1029.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -264.273
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_9/m1_n190_1320#" 0.491893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 84.5381
+cap "mirror_p_8/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 3315.08
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_18/m1_n190_n1662#" 23.4227
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5055.35
+cap "mirror_p_8/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 58.3396
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -275.821
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 3.76747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 7551.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 250.303
+cap "mirror_p_8/m1_n92_1078#" "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 27.7586
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 2.51963
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 1085.47
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_18/m1_n190_n1662#" 10.2509
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_1320#" 127.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 30.6934
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_7/m1_n92_1078#" 1.22681
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_7/m1_n92_1078#" 2074.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_8/m1_n190_1320#" 27.6977
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/m1_n190_1320#" -11.7064
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_7/m1_n92_1078#" 638.776
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 27.7586
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_7/m1_n92_1078#" 3.96153
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.491893
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 3.72686
+cap "mirror_p_18/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_18/m1_n190_n1662#" 2.77968
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_8/m1_n190_1320#" 3.5247
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_18/m1_n190_n1662#" -23.5008
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_18/m1_n190_n1662#" 1829.36
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_18/m1_n190_n1662#" 3282.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 37.2858
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 56.2025
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 756.179
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 127.48
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 139.062
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 3.76747
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 10.2509
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_18/m1_n190_n1662#" 24.0845
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 56.7721
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 1227.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 62.6707
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 37.2858
+cap "mirror_p_7/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 232.379
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.491893
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1939.7
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_6/m1_n92_1078#" 27.7586
+cap "mirror_p_7/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 27.6977
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 10.2509
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/m1_n92_1078#" 2448.95
+cap "mirror_p_18/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -96.0394
+cap "mirror_p_6/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1.22681
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 58.5378
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 2.52881
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 3.5247
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 127.48
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 25.7391
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 677.472
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_6/m1_n92_1078#" 3.96153
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/m1_n92_1078#" 759.714
+cap "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_18/m1_n190_n1662#" 2.11785
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 0.978082
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_18/m1_n190_n1662#" 85.4643
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_6/m1_n92_1078#" 638.35
+cap "mirror_p_18/m1_n190_n1662#" "mirror_p_6/m1_n92_1078#" 2729.15
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 3.76747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 442.803
+cap "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "mirror_p_6/m1_n140_970#" 0.763067
+cap "mirror_p_21/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 286.621
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_21/m1_n92_1078#" 2332.22
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_6/m1_n140_970#" 373.916
+cap "mirror_p_21/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2389.35
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_6/m1_n140_970#" -883.748
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n190_1320#" 610.755
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/m1_n140_970#" 466.558
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" 0.46328
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_6/m1_n140_970#" 127.486
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1060.01
+cap "mirror_p_6/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 185.31
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2525.79
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_6/m1_n190_1320#" -173.828
+cap "mirror_p_6/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 209.412
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n140_970#" 635.998
+cap "mirror_p_21/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1093.57
+cap "mirror_p_20/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -32.414
+cap "mirror_p_21/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3212.12
+cap "mirror_p_21/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 840.702
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 250.446
+cap "mirror_p_21/m1_n190_1320#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 972.703
+cap "mirror_p_20/m1_n190_n1662#" "mirror_p_21/m1_n92_1078#" 618.214
+cap "mirror_p_21/m1_n190_1320#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 51.265
+cap "mirror_p_21/m1_n190_1320#" "mirror_p_20/m1_n190_n1662#" 79.0309
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1623.81
+cap "mirror_p_20/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 8277.39
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1906.63
+cap "mirror_p_21/m1_n190_1320#" "mirror_p_21/m1_n92_1078#" 451.614
+cap "mirror_p_20/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 10097
+cap "mirror_p_0/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5.50772
+cap "mirror_p_0/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2017.37
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 345.1
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n92_1078#" 83.2487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 79.1442
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 244.402
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 2.03315
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_2/m1_n92_1078#" 92.7185
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 2162.27
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_2/m1_n92_1078#" 30.3257
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 619.141
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_0/li_n320_n1880#" -17.499
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_2/m1_n92_1078#" 753.084
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -54.7058
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/m1_n92_1078#" 2196.22
+cap "mirror_p_2/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3501
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -81.3763
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n92_1078#" 2.25164
+cap "mirror_p_2/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1831.05
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_2/m1_n92_1078#" 307.156
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_2/li_n320_n1880#" 576.813
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "mirror_p_2/m1_n92_1078#" 83.2487
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" 107.863
+cap "mirror_p_2/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -3748.42
+cap "mirror_p_2/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2104.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 26.8008
+cap "mirror_p_2/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -294.22
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 762.993
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -2279.72
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1.11022e-16
+cap "mirror_p_2/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1108.15
+cap "mirror_p_2/m1_n92_1078#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 343.675
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5209.91
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_2/m1_n190_1320#" 9.51776
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_2/m1_n92_1078#" 1173.81
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 100.177
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 50.258
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/m1_n92_1078#" 1.04997
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 8625.1
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_2/m1_n92_1078#" 408.523
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -223.499
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/m1_n92_1078#" 1724.74
+cap "mirror_p_2/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3132.32
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_2/m1_n190_1320#" 9.51776
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_2/m1_n92_1078#" 1293.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 8243.57
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 853.25
+cap "mirror_p_2/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 5247.81
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.152
+cap "mirror_p_2/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -382.073
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 100.177
+cap "mirror_p_5/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2173.66
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/m1_n92_1078#" 2.25164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -232.978
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/m1_n190_n1662#" 1289.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_5/m1_n190_n1662#" 1884.83
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/m1_n190_n1662#" -185.956
+cap "mirror_p_5/m1_n92_1078#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 409.731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 63.2285
+cap "mirror_p_5/m1_n190_1320#" "mirror_p_5/m1_n190_n1662#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -13.6215
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 1183.7
+cap "mirror_p_4/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -462.094
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_4/m1_n190_1320#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/m1_n190_n1662#" -5102.24
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 355.796
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 25.9912
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -338.197
+cap "mirror_p_4/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2.25164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -7656.83
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_4/m1_n92_1078#" 2173.66
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 707.428
+cap "mirror_p_4/m1_n92_1078#" "mirror_p_4/m1_n190_n1662#" 1313.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.0166049
+cap "mirror_p_11/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2470.87
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_11/m1_n190_1320#" 9.51776
+cap "mirror_p_11/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 355.796
+cap "mirror_p_11/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2173.66
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_11/m1_n92_1078#" 1355.8
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 78.6961
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_7/m1_n190_n1662#" 1.85194
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_7/m1_n190_n1662#" 1.85194
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 595.009
+cap "mirror_p_11/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4877.96
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n92_1078#" 2.25164
+cap "mirror_p_9/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -977.701
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/m1_n190_n1662#" 8140.81
+cap "mirror_p_9/m1_n92_1078#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 355.796
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_11/m1_n190_n1662#" 579.096
+cap "mirror_p_11/m1_n190_1320#" "mirror_p_11/m1_n190_n1662#" 10.1609
+cap "mirror_p_9/m1_n92_1078#" "mirror_p_11/m1_n190_n1662#" 1283.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_9/m1_n92_1078#" 2.25164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_n1662#" 9862.88
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 38.5621
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1290.34
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -275.821
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/m1_n190_1320#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 236.904
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 250.303
+cap "mirror_p_9/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1137.96
+cap "mirror_p_8/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1076.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -264.273
+cap "mirror_p_8/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1.04997
+cap "mirror_p_9/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7737.93
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_8/m1_n92_1078#" 1240.1
+cap "mirror_p_9/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5033.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 92.3312
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.8244
+cap "mirror_p_8/m1_n92_1078#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 355.796
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 579.05
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_7/m1_n92_1078#" 2173.66
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 62.6707
+cap "mirror_p_8/m1_n190_n1662#" "mirror_p_7/m1_n92_1078#" 1217.62
+cap "mirror_p_7/m1_n92_1078#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 355.796
+cap "mirror_p_7/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2.25164
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_8/m1_n190_n1662#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/m1_n190_n1662#" 2219.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 78.6961
+cap "mirror_p_8/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 577.751
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 30.6934
+cap "mirror_p_7/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2174.96
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/m1_n190_n1662#" 524.617
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_7/m1_n190_n1662#" 9.51776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/m1_n92_1078#" 2173.66
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/m1_n92_1078#" 355.796
+cap "mirror_p_7/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -175.281
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 78.6961
+cap "mirror_p_7/m1_n190_n1662#" "mirror_p_6/m1_n92_1078#" 1240.1
+cap "mirror_p_6/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2.25164
+cap "mirror_p_7/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" 1.30411
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/m1_n140_970#" 78.6961
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_6/m1_n140_970#" 355.796
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_6/m1_n140_970#" 594.077
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_21/m1_n92_1078#" 2.25164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_21/m1_n92_1078#" 2173.66
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_6/m1_n190_n1662#" 10.1609
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_6/m1_n190_n1662#" 984.209
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/m1_n190_n1662#" 2902.53
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_21/m1_n92_1078#" 1302.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 78.6961
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" 43.7966
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_21/m1_n92_1078#" 2.25164
+cap "mirror_p_21/m1_n92_1078#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1909.92
+cap "mirror_p_21/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" -46.274
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_21/m1_n190_n1662#" 14269.6
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_21/m1_n190_n1662#" 11109.9
+cap "mirror_p_21/m1_n190_1320#" "mirror_p_21/m1_n190_n1662#" 8.23158
+cap "mirror_p_21/m1_n92_1078#" "mirror_p_21/m1_n190_n1662#" 455.495
+cap "mirror_p_0/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.8182
+cap "mirror_p_0/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5.50772
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 12.7977
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_0/li_n320_n1880#" 1995.48
+cap "mirror_p_0/li_n320_n1880#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 64.4781
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 6.31444
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 15.9049
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 56.1644
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 6.84023
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_0/li_n320_n1880#" 149.498
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.3819
+cap "mirror_p_0/li_n320_n1880#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.69119
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 5.4988
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/li_n320_n1880#" 84.7303
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -45.8442
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.52993
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/li_n320_n1880#" 4243.91
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 14.1775
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/li_n320_n1880#" 0.342446
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/li_n320_n1880#" 12.7977
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 12.967
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 6.31444
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 6.84023
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/li_n320_n1880#" 9.16604
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/li_n320_n1880#" 64.2664
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/li_n320_n1880#" 15.448
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/li_n320_n1880#" 143.949
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/li_n320_n1880#" 22.2815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "mirror_p_2/li_n320_n1880#" 64.2568
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#" 3.50537
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 129.606
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/li_n320_n1880#" 0.342446
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_2/li_n320_n1880#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 109.891
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 14.4074
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/li_n320_n1880#" 2358.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/li_n320_n1880#" 4447.94
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 36.0854
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -29.8912
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -472.226
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.0006
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/li_n320_n1880#" 15.448
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3.17781
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.52993
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 3132.54
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 18.2274
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 22.7599
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 35.9364
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 0.342446
+cap "mirror_p_2/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -139.524
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 4.76536
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6.88113
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.1388
+cap "mirror_p_2/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 13495.4
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 50.258
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 291.064
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 15.448
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" 3.13847
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 109.891
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" 4.4216
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/m1_n190_n1662#" 93.3194
+cap "mirror_p_2/m1_n190_n1662#" "VP" -57.6377
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 5102.82
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" 4.67953
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.0006
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" 2.73766
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 39.7173
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_2/m1_n190_n1662#" 2527.13
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_2/m1_n190_n1662#" 22.2815
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" 3.13847
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_5/m1_n190_n1662#" -68.3911
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 4.50297
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" 4.4216
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -5.79813
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 3318.2
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 9.52993
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 150.373
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 15.448
+cap "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.64467
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 22.2815
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 39.7173
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 35.9364
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_5/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 0.342446
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -297.697
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_5/m1_n190_n1662#" 109.891
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VP" 216.102
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 18.6389
+cap "mirror_p_5/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1735
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 22.7599
+cap "mirror_p_5/m1_n190_n1662#" "VP" -185.87
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 19.0006
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1.00347
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 109.891
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 264.692
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_4/m1_n190_n1662#" 15.448
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -642.808
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2165.23
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 0.342446
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -304.85
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" 3.13847
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 129.614
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.52993
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.71864
+cap "VP" "mirror_p_4/m1_n190_n1662#" -191.548
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" "mirror_p_4/m1_n190_n1662#" 4.4216
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/m1_n190_n1662#" 2632.99
+cap "mirror_p_4/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -662.256
+cap "mirror_p_4/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3411.96
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 36.0854
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" 0.972474
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7.46318
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5.4988
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/m1_n190_n1662#" 26.7031
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/m1_n190_n1662#" 3.73363
+cap "mirror_p_11/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3161.71
+cap "mirror_p_7/m1_n190_n1662#" "mirror_p_11/m1_n190_n1662#" 1.85194
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/m1_n190_n1662#" 26.7031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VP" 264.692
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" "mirror_p_11/m1_n190_n1662#" 1.90748
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 18.2142
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_n1662#" 1194.61
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 129.614
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -304.915
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_11/m1_n190_n1662#" 109.891
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5.4988
+cap "mirror_p_11/m1_n190_n1662#" "VP" -191.548
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 9.52993
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#" "mirror_p_11/m1_n190_n1662#" 0.343434
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -284.846
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_11/m1_n190_n1662#" 5108.34
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 98.6357
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 264.692
+cap "VP" "mirror_p_11/m1_n190_n1662#" -191.548
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -239.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 11.9267
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 3.73363
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#" 0.336158
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/m1_n190_n1662#" 126.223
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.961415
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.52993
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_11/m1_n190_n1662#" 5676.32
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_11/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_11/m1_n190_n1662#" 18.2142
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -410.712
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 5.4988
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -195.971
+cap "VP" "mirror_p_9/m1_n190_n1662#" -151.186
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_9/m1_n190_n1662#" 26.7031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 53.6418
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.6026
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2.95052
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VP" 118.166
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 77.4152
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 4.76536
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "mirror_p_9/m1_n190_n1662#" 3315.9
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_9/m1_n190_n1662#" 26.7031
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#" "mirror_p_9/m1_n190_n1662#" 0.324693
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -108.912
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/m1_n190_n1662#" 126.223
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_9/m1_n190_n1662#" 5125.49
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/m1_n190_n1662#" 3.73363
+cap "mirror_p_9/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 492.507
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "VP" 40.3512
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_9/m1_n190_n1662#" 18.2142
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 98.6357
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_9/m1_n190_n1662#" -6.04768
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 19.3832
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_8/m1_n190_n1662#" 18.2142
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_8/m1_n190_n1662#" 1573.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -304.856
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_8/m1_n190_n1662#" -193.989
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_8/m1_n190_n1662#" 26.7031
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_8/m1_n190_n1662#" 3.73363
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_8/m1_n190_n1662#" 26.7031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1.41116
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 5.4988
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.52993
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_8/m1_n190_n1662#" 126.223
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_8/m1_n190_n1662#" 98.6357
+cap "mirror_p_8/m1_n190_n1662#" "VP" -191.871
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "VP" 265.219
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_7/m1_n190_n1662#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" -13.8901
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/m1_n190_n1662#" 0.326027
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -305.416
+cap "mirror_p_7/m1_n190_n1662#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/m1_n190_n1662#" 126.223
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_7/m1_n190_n1662#" 2480.53
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_7/m1_n190_n1662#" 566.961
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 9.52993
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/m1_n190_n1662#" 26.7031
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_7/m1_n190_n1662#" 18.2142
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_7/m1_n190_n1662#" 98.6357
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5.4988
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 9.52993
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5.4988
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -305.609
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_6/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 3.73363
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 9.50029
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_6/m1_n190_n1662#" 18.2142
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_6/m1_n190_n1662#" 107.163
+cap "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_6/m1_n190_n1662#" 26.7031
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_6/m1_n190_n1662#" 134.31
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 2.73766
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_6/m1_n190_n1662#" 1046.68
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "mirror_p_6/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2382.09
+cap "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 19.248
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 25.424
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 5.98588
+cap "mirror_p_21/m1_n190_n1662#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 18.0826
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_p_21/m1_n190_n1662#" 7231.75
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 2.73766
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5.4988
+cap "mirror_p_21/m1_n190_n1662#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.6214
+cap "mirror_p_21/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" 26.7031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_21/m1_n190_n1662#" 9042.22
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" 9.50029
+cap "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "mirror_p_21/m1_n190_n1662#" -26.2733
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -307.145
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" 68467.8 0 0 0 0 103320648 -125360 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -123602860 -136880 0 0 0 0 80726500 -97960 -6267692 0 352300 -31734 0 0
+merge "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_5/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_9/m1_n190_n1662#"
+merge "mirror_p_9/m1_n190_n1662#" "mirror_p_4/m1_n190_n1662#"
+merge "mirror_p_4/m1_n190_n1662#" "mirror_p_11/m1_n190_n1662#"
+merge "mirror_p_11/m1_n190_n1662#" "mirror_p_5/m1_n190_n1662#"
+merge "mirror_p_5/m1_n190_n1662#" "mirror_p_2/m1_n190_n1662#"
+merge "mirror_p_2/m1_n190_n1662#" "mirror_p_2/li_n320_n1880#"
+merge "mirror_p_2/li_n320_n1880#" "mirror_p_23/m1_n190_n1662#"
+merge "mirror_p_23/m1_n190_n1662#" "mirror_p_21/m1_n190_n1662#"
+merge "mirror_p_21/m1_n190_n1662#" "mirror_p_22/m1_n190_n1662#"
+merge "mirror_p_22/m1_n190_n1662#" "VP"
+merge "VP" "mirror_p_6/m1_n190_n1662#"
+merge "mirror_p_6/m1_n190_n1662#" "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_23/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_23/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_21/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_23/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_20/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_22/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_19/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_17/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_7/m1_n190_n1662#"
+merge "mirror_p_7/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_8/m1_n190_n1662#"
+merge "mirror_p_8/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_16/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_14/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_12/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_0/li_n320_n1880#"
+merge "mirror_p_0/li_n320_n1880#" "li_2850_580#"
+merge "li_2850_580#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_22/w_230_1520#"
+merge "mirror_p_22/w_230_1520#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_6/w_230_1520#"
+merge "mirror_p_6/w_230_1520#" "mirror_p_7/w_230_1520#"
+merge "mirror_p_7/w_230_1520#" "mirror_p_18/m1_n190_n1662#"
+merge "mirror_p_18/m1_n190_n1662#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_8/w_230_1520#"
+merge "mirror_p_8/w_230_1520#" "mirror_p_17/m1_n190_n1662#"
+merge "mirror_p_17/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/w_230_1520#"
+merge "mirror_p_9/w_230_1520#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_11/w_230_1520#"
+merge "mirror_p_11/w_230_1520#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/w_230_1520#"
+merge "mirror_p_3/w_230_1520#" "mirror_p_4/w_230_1520#"
+merge "mirror_p_4/w_230_1520#" "mirror_p_5/w_230_1520#"
+merge "mirror_p_5/w_230_1520#" "mirror_p_20/m1_n190_n1662#"
+merge "mirror_p_20/m1_n190_n1662#" "mirror_p_2/w_230_1520#"
+merge "mirror_p_2/w_230_1520#" "mirror_p_10/m1_n190_n1662#"
+merge "mirror_p_10/m1_n190_n1662#" "m3_3240_n570#"
+merge "m3_3240_n570#" "mirror_p_19/m1_n190_n1662#"
+merge "mirror_p_19/m1_n190_n1662#" "mirror_p_20/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_20/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_17/w_230_1520#"
+merge "mirror_p_17/w_230_1520#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "m3_14320_n4260#"
+merge "m3_14320_n4260#" "mirror_p_16/w_230_1520#"
+merge "mirror_p_16/w_230_1520#" "mirror_p_14/w_230_1520#"
+merge "mirror_p_14/w_230_1520#" "mirror_p_15/w_230_1520#"
+merge "mirror_p_15/w_230_1520#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "mirror_p_15/m1_n190_n1662#"
+merge "mirror_p_15/m1_n190_n1662#" "mirror_p_14/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_14/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_12/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_12/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_13/m1_n190_n1662#"
+merge "mirror_p_13/m1_n190_n1662#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "m3_7180_n4260#"
+merge "mirror_p_21/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_6/m1_n140_970#" -153462 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -214116680 -33998 -4827680 -1938 0 0 -14212960 -3376 0 0 0 0
+merge "mirror_p_6/m1_n140_970#" "mirror_p_23/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_23/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_22/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_11/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_5/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_0/m1_n190_1320#"
+merge "mirror_p_0/m1_n190_1320#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_n_0/m1_198_3080#"
+merge "mirror_n_0/m1_198_3080#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "m2_1730_n720#"
+merge "m2_1730_n720#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_167_n200#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_167_n200#" "m1_2160_n140#"
+merge "m1_2160_n140#" "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#"
+merge "mirror_p_10/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "m1_2160_410#"
+merge "m1_2160_410#" "mirror_p_20/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_20/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_19/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_18/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_17/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_16/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_15/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_14/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_14/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_13/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_12/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_12/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "mirror_p_10/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "mirror_p_10/m1_n140_970#"
+merge "mirror_p_10/m1_n140_970#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "m1_4090_n3150#"
+merge "mirror_p_21/VSUBS" "mirror_p_23/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "mirror_p_23/VSUBS" "mirror_p_22/VSUBS"
+merge "mirror_p_22/VSUBS" "mirror_p_6/VSUBS"
+merge "mirror_p_6/VSUBS" "mirror_p_7/VSUBS"
+merge "mirror_p_7/VSUBS" "mirror_p_8/VSUBS"
+merge "mirror_p_8/VSUBS" "mirror_p_9/VSUBS"
+merge "mirror_p_9/VSUBS" "mirror_p_11/VSUBS"
+merge "mirror_p_11/VSUBS" "mirror_p_3/VSUBS"
+merge "mirror_p_3/VSUBS" "mirror_p_4/VSUBS"
+merge "mirror_p_4/VSUBS" "mirror_p_5/VSUBS"
+merge "mirror_p_5/VSUBS" "mirror_p_2/VSUBS"
+merge "mirror_p_2/VSUBS" "mirror_p_0/VSUBS"
+merge "mirror_p_0/VSUBS" "mirror_p_20/VSUBS"
+merge "mirror_p_20/VSUBS" "mirror_p_19/VSUBS"
+merge "mirror_p_19/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "mirror_p_18/VSUBS"
+merge "mirror_p_18/VSUBS" "mirror_p_17/VSUBS"
+merge "mirror_p_17/VSUBS" "mirror_p_16/VSUBS"
+merge "mirror_p_16/VSUBS" "mirror_p_15/VSUBS"
+merge "mirror_p_15/VSUBS" "mirror_p_14/VSUBS"
+merge "mirror_p_14/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS" "mirror_p_13/VSUBS"
+merge "mirror_p_13/VSUBS" "mirror_p_12/VSUBS"
+merge "mirror_p_12/VSUBS" "mirror_p_10/VSUBS"
+merge "mirror_p_10/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS" "mirror_n_0/VSUBS"
+merge "mirror_n_0/VSUBS" "mirror_n_1/VSUBS"
+merge "mirror_n_1/VSUBS" "mirror_n_2/VSUBS"
+merge "mirror_n_2/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS" "VSUBS"
+merge "mirror_p_20/m1_n92_1078#" "mirror_p_19/m1_n92_1078#" -38916.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -76318800 -13860 0 0 0 0 0 0 0 0
+merge "mirror_p_19/m1_n92_1078#" "mirror_p_18/m1_n92_1078#"
+merge "mirror_p_18/m1_n92_1078#" "mirror_p_17/m1_n92_1078#"
+merge "mirror_p_17/m1_n92_1078#" "mirror_p_16/m1_n92_1078#"
+merge "mirror_p_16/m1_n92_1078#" "mirror_p_15/m1_n92_1078#"
+merge "mirror_p_15/m1_n92_1078#" "mirror_p_14/m1_n92_1078#"
+merge "mirror_p_14/m1_n92_1078#" "mirror_p_13/m1_n92_1078#"
+merge "mirror_p_13/m1_n92_1078#" "mirror_p_12/m1_n92_1078#"
+merge "mirror_p_12/m1_n92_1078#" "mirror_p_10/m1_n92_1078#"
+merge "mirror_p_10/m1_n92_1078#" "m2_4390_n2520#"
+merge "mirror_p_21/m1_n92_1078#" "mirror_p_23/m1_n92_1078#" -41938.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -74536800 -16940 0 0 0 0 0 0 0 0
+merge "mirror_p_23/m1_n92_1078#" "mirror_p_22/m1_n92_1078#"
+merge "mirror_p_22/m1_n92_1078#" "mirror_p_6/m1_n92_1078#"
+merge "mirror_p_6/m1_n92_1078#" "mirror_p_7/m1_n92_1078#"
+merge "mirror_p_7/m1_n92_1078#" "mirror_p_8/m1_n92_1078#"
+merge "mirror_p_8/m1_n92_1078#" "mirror_p_9/m1_n92_1078#"
+merge "mirror_p_9/m1_n92_1078#" "mirror_p_11/m1_n92_1078#"
+merge "mirror_p_11/m1_n92_1078#" "mirror_p_3/m1_n92_1078#"
+merge "mirror_p_3/m1_n92_1078#" "mirror_p_4/m1_n92_1078#"
+merge "mirror_p_4/m1_n92_1078#" "mirror_p_5/m1_n92_1078#"
+merge "mirror_p_5/m1_n92_1078#" "mirror_p_2/m1_n92_1078#"
+merge "mirror_p_2/m1_n92_1078#" "m2_4080_1040#"
+merge "mirror_p_20/m1_n190_1320#" "mirror_p_19/m1_n190_1320#" -49523.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -101167800 -13000 0 0 0 0 0 0 0 0
+merge "mirror_p_19/m1_n190_1320#" "mirror_p_18/m1_n190_1320#"
+merge "mirror_p_18/m1_n190_1320#" "mirror_p_17/m1_n190_1320#"
+merge "mirror_p_17/m1_n190_1320#" "mirror_p_16/m1_n190_1320#"
+merge "mirror_p_16/m1_n190_1320#" "mirror_p_15/m1_n190_1320#"
+merge "mirror_p_15/m1_n190_1320#" "mirror_p_14/m1_n190_1320#"
+merge "mirror_p_14/m1_n190_1320#" "mirror_p_13/m1_n190_1320#"
+merge "mirror_p_13/m1_n190_1320#" "mirror_p_12/m1_n190_1320#"
+merge "mirror_p_12/m1_n190_1320#" "mirror_p_10/m1_n190_1320#"
+merge "mirror_p_10/m1_n190_1320#" "TIA_I_Bias1"
+merge "mirror_n_0/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" -12729.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -14061480 -3352 368760 -448 0 0 -36930686 -4656 0 0 0 0
+merge "mirror_n_1/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#"
+merge "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" "I_in_channel"
+merge "I_in_channel" "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#"
+merge "mirror_n_2/sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "m1_890_n610#"
+merge "m1_890_n610#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "m4_540_n4400#"
+merge "m4_540_n4400#" "mirror_n_0/m1_140_2740#"
+merge "mirror_n_0/m1_140_2740#" "mirror_n_1/m1_140_2740#"
+merge "mirror_n_1/m1_140_2740#" "mirror_n_2/m1_140_2740#"
+merge "mirror_n_2/m1_140_2740#" "m1_n60_n1280#"
+merge "mirror_p_21/m1_n190_1320#" "mirror_p_23/m1_n190_1320#" -107453 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -236114000 -15790 0 0 0 0 0 0 0 0
+merge "mirror_p_23/m1_n190_1320#" "mirror_p_22/m1_n190_1320#"
+merge "mirror_p_22/m1_n190_1320#" "mirror_p_6/m1_n190_1320#"
+merge "mirror_p_6/m1_n190_1320#" "mirror_p_7/m1_n190_1320#"
+merge "mirror_p_7/m1_n190_1320#" "mirror_p_8/m1_n190_1320#"
+merge "mirror_p_8/m1_n190_1320#" "mirror_p_9/m1_n190_1320#"
+merge "mirror_p_9/m1_n190_1320#" "mirror_p_11/m1_n190_1320#"
+merge "mirror_p_11/m1_n190_1320#" "mirror_p_3/m1_n190_1320#"
+merge "mirror_p_3/m1_n190_1320#" "mirror_p_4/m1_n190_1320#"
+merge "mirror_p_4/m1_n190_1320#" "mirror_p_5/m1_n190_1320#"
+merge "mirror_p_5/m1_n190_1320#" "mirror_p_2/m1_n190_1320#"
+merge "mirror_p_2/m1_n190_1320#" "A_Out_I_Bias"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "mirror_n_1/li_n30_n30#" -79672.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29633740 -10920 0 0 -7981200 -3860 -2759900 0 -3583022 0 1800430 -18840 0 0
+merge "mirror_n_1/li_n30_n30#" "mirror_n_2/li_n30_n30#"
+merge "mirror_n_2/li_n30_n30#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "m5_12520_n2280#"
+merge "m5_12520_n2280#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m5_6110_n2480#"
+merge "m5_6110_n2480#" "mirror_n_0/li_n30_n30#"
+merge "mirror_n_0/li_n30_n30#" "mirror_n_1/m1_100_180#"
+merge "mirror_n_1/m1_100_180#" "mirror_n_2/m1_100_180#"
+merge "mirror_n_2/m1_100_180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VN"
+merge "mirror_n_1/m1_198_3080#" "TIA_I_Bias2" 1157.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3077600 -448 0 0 0 0 0 0 0 0
diff --git a/mag/currm/cmirror_channel.lef b/mag/currm/cmirror_channel.lef
new file mode 100644
index 0000000..eaed0ab
--- /dev/null
+++ b/mag/currm/cmirror_channel.lef
@@ -0,0 +1,75 @@
+VERSION 5.7 ;
+  NOWIREEXTENSIONATPIN ON ;
+  DIVIDERCHAR "/" ;
+  BUSBITCHARS "[]" ;
+MACRO mirror_n
+  CLASS BLOCK ;
+  FOREIGN mirror_n ;
+  ORIGIN 0.150 0.150 ;
+  SIZE 4.250 BY 17.400 ;
+  OBS
+      LAYER pwell ;
+        RECT -0.150 13.220 2.500 17.250 ;
+        RECT -0.150 -0.150 4.100 13.220 ;
+      LAYER li1 ;
+        RECT -0.150 -0.150 4.100 17.250 ;
+      LAYER met1 ;
+        RECT 0.500 0.450 3.450 16.700 ;
+      LAYER met2 ;
+        RECT 0.050 -0.150 3.850 16.250 ;
+  END
+END mirror_n
+MACRO mirror_p
+  CLASS BLOCK ;
+  FOREIGN mirror_p ;
+  ORIGIN 1.600 9.400 ;
+  SIZE 6.850 BY 17.900 ;
+  OBS
+      LAYER nwell ;
+        RECT -1.600 4.330 2.030 8.490 ;
+        RECT -1.600 -9.400 5.230 4.330 ;
+      LAYER li1 ;
+        RECT -1.600 -9.400 5.250 8.500 ;
+      LAYER met1 ;
+        RECT -0.950 -8.750 4.580 7.950 ;
+      LAYER met2 ;
+        RECT -1.200 -8.400 4.800 7.450 ;
+      LAYER met3 ;
+        RECT -1.250 -9.400 4.850 6.275 ;
+  END
+END mirror_p
+MACRO sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+  CLASS BLOCK ;
+  FOREIGN sky130_fd_pr__cap_mim_m3_2_LJ5JLG ;
+  ORIGIN 16.755 15.500 ;
+  SIZE 31.000 BY 31.000 ;
+  OBS
+      LAYER met4 ;
+        RECT -16.755 -15.500 16.755 15.500 ;
+      LAYER met5 ;
+        RECT -16.175 -15.500 14.245 15.500 ;
+        RECT 15.265 -15.505 16.865 15.505 ;
+  END
+END sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+MACRO cmirror_channel
+  CLASS BLOCK ;
+  FOREIGN cmirror_channel ;
+  ORIGIN 0.300 55.500 ;
+  SIZE 99.510 BY 76.120 ;
+  OBS
+      LAYER li1 ;
+        RECT 3.300 -19.150 96.850 16.650 ;
+      LAYER met1 ;
+        RECT -0.300 -21.550 96.200 16.000 ;
+      LAYER met2 ;
+        RECT -0.250 -21.600 96.450 15.650 ;
+      LAYER met3 ;
+        RECT -0.300 -21.575 96.850 20.600 ;
+      LAYER met4 ;
+        RECT -0.255 -55.390 99.205 20.505 ;
+      LAYER met5 ;
+        RECT 2.750 -55.500 99.210 20.620 ;
+  END
+END cmirror_channel
+END LIBRARY
+
diff --git a/mag/currm/cmirror_channel.mag b/mag/currm/cmirror_channel.mag
new file mode 100644
index 0000000..6e3b4d0
--- /dev/null
+++ b/mag/currm/cmirror_channel.mag
@@ -0,0 +1,338 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< locali >>
+rect 2850 580 3170 3330
+<< metal1 >>
+rect 2160 410 19080 560
+rect 2270 -70 2340 130
+rect 2470 -70 2550 130
+rect 2660 -70 2740 130
+rect 2160 -140 2740 -70
+rect 4470 -400 4550 410
+rect 890 -610 960 -460
+rect -60 -1280 -50 -860
+rect 340 -990 350 -860
+rect 900 -990 950 -950
+rect 340 -1100 2840 -990
+rect 340 -1190 970 -1100
+rect 340 -1280 350 -1190
+rect 4090 -3150 16770 -3000
+rect 12900 -3900 13420 -3150
+rect 12890 -4310 12900 -3900
+rect 13420 -4310 13430 -3900
+<< via1 >>
+rect -50 -1280 340 -860
+rect 12900 -4310 13420 -3900
+<< metal2 >>
+rect 4080 1040 18980 1210
+rect 1730 -40 2740 150
+rect 850 -720 990 -350
+rect 1730 -720 1830 -40
+rect 3930 -210 19240 150
+rect 2530 -720 2670 -350
+rect -50 -860 340 -850
+rect -50 -1290 340 -1280
+rect 4390 -2520 16550 -2350
+rect 700 -3460 840 -3450
+rect 700 -3630 840 -3620
+rect 1320 -3460 1690 -3450
+rect 1320 -3630 1690 -3620
+rect 2160 -3460 2520 -3450
+rect 2160 -3630 2520 -3620
+rect 3000 -3460 3140 -3450
+rect 3000 -3630 3140 -3620
+rect 4070 -3810 16950 -3410
+rect 12590 -3820 14200 -3810
+rect 12900 -3900 13420 -3890
+rect 12900 -4320 13420 -4310
+<< via2 >>
+rect -50 -1280 340 -860
+rect 700 -3620 840 -3460
+rect 1320 -3620 1690 -3460
+rect 2160 -3620 2520 -3460
+rect 3000 -3620 3140 -3460
+rect 12900 -4310 13420 -3900
+<< metal3 >>
+rect 1500 4100 19370 4120
+rect 1500 3740 1520 4100
+rect 2770 3740 18030 4100
+rect 19350 3740 19370 4100
+rect 1500 3200 19370 3740
+rect 1580 2990 19370 3200
+rect 3240 790 3490 1080
+rect 3240 -230 3480 790
+rect 4200 -230 4440 970
+rect 4590 -230 4830 970
+rect 5550 -230 5790 970
+rect 5940 -230 6180 970
+rect 6900 -230 7140 970
+rect 7290 -230 7530 970
+rect 8250 -230 8490 970
+rect 8640 -230 8880 970
+rect 9600 -230 9840 970
+rect 9990 -230 10230 970
+rect 10950 -230 11190 970
+rect 11340 -230 11580 970
+rect 12300 -230 12540 970
+rect 12690 -230 12930 970
+rect 13650 -230 13890 970
+rect 14040 -230 14280 970
+rect 15000 -230 15240 970
+rect 16350 -230 16590 970
+rect 16740 -230 16980 970
+rect 3240 -570 16980 -230
+rect -60 -860 350 -855
+rect -60 -1280 -50 -860
+rect 340 -1280 350 -860
+rect -60 -1285 350 -1280
+rect 690 -3460 850 -3455
+rect 1310 -3460 1700 -3455
+rect 2150 -3460 2530 -3455
+rect 2990 -3460 3150 -3455
+rect 690 -3620 700 -3460
+rect 840 -3620 1320 -3460
+rect 1690 -3620 2160 -3460
+rect 2520 -3620 3000 -3460
+rect 3140 -3620 3150 -3460
+rect 690 -3625 3150 -3620
+rect 700 -3680 3150 -3625
+rect 700 -3830 2330 -3680
+rect 2320 -4070 2330 -3830
+rect 3160 -4070 3170 -3680
+rect 7180 -3970 7420 -2580
+rect 7570 -3970 7810 -2580
+rect 8530 -3970 8770 -2580
+rect 8920 -3630 9160 -2580
+rect 8920 -3970 9140 -3630
+rect 7180 -4070 9140 -3970
+rect 9790 -3970 9800 -3630
+rect 10270 -3970 10510 -2580
+rect 11230 -3970 11470 -2580
+rect 9790 -4070 11470 -3970
+rect 7180 -4260 11470 -4070
+rect 12890 -3900 13430 -3895
+rect 12890 -4310 12900 -3900
+rect 13420 -4310 13430 -3900
+rect 14320 -3970 14560 -2580
+rect 15270 -2760 15510 -2580
+rect 15280 -3510 15510 -2760
+rect 15670 -3510 15910 -2580
+rect 15140 -3970 15150 -3510
+rect 14320 -4110 15150 -3970
+rect 16010 -3970 16020 -3510
+rect 16630 -3970 16870 -2580
+rect 16010 -4110 16870 -3970
+rect 14320 -4260 16870 -4110
+rect 12890 -4315 13430 -4310
+<< via3 >>
+rect 1520 3740 2770 4100
+rect 18030 3740 19350 4100
+rect -50 -1280 340 -860
+rect 2330 -4070 3160 -3680
+rect 9140 -4070 9790 -3630
+rect 12900 -4310 13420 -3900
+rect 15150 -4110 16010 -3510
+<< metal4 >>
+rect 1519 4100 2771 4101
+rect 1519 3740 1520 4100
+rect 2770 3740 2771 4100
+rect 1519 3739 2771 3740
+rect 18029 4100 19351 4101
+rect 18029 3740 18030 4100
+rect 19350 3740 19351 4100
+rect 18029 3739 19351 3740
+rect -50 -859 670 -850
+rect -51 -860 670 -859
+rect -51 -1280 -50 -860
+rect 340 -1280 670 -860
+rect -51 -1281 670 -1280
+rect -50 -1290 670 -1281
+rect 540 -4400 1290 -3070
+rect 15149 -3510 16011 -3509
+rect 9139 -3630 9791 -3629
+rect 2329 -3680 3161 -3679
+rect 2329 -4070 2330 -3680
+rect 3160 -4070 3161 -3680
+rect 2329 -4071 3161 -4070
+rect 9139 -4071 9140 -3630
+rect 9790 -4071 9791 -3630
+rect 12820 -3900 13920 -3890
+rect 12820 -4310 12900 -3900
+rect 13420 -4310 13920 -3900
+rect 15149 -4111 15150 -3510
+rect 16010 -4111 16011 -3510
+rect 12820 -4480 13920 -4310
+<< via4 >>
+rect 1520 3740 2770 4100
+rect 18030 3740 19350 4100
+rect 2330 -4070 3160 -3680
+rect 9140 -4070 9790 -3810
+rect 9140 -4250 9790 -4070
+rect 15150 -4110 16010 -3780
+rect 15150 -4220 16010 -4110
+<< metal5 >>
+rect 1496 4120 2794 4124
+rect 18006 4120 19374 4124
+rect 1220 4100 19390 4120
+rect 1220 3740 1520 4100
+rect 2770 3740 18030 4100
+rect 19350 3740 19390 4100
+rect 1220 3720 19390 3740
+rect 1496 3716 2794 3720
+rect 18006 3716 19374 3720
+rect 6110 -2480 8020 -1550
+rect 12520 -2280 14430 -1350
+rect 7630 -2750 7900 -2480
+rect 2310 -3656 3660 -3100
+rect 2306 -3680 3660 -3656
+rect 2306 -4070 2330 -3680
+rect 3160 -4070 3660 -3680
+rect 2306 -4094 3660 -4070
+rect 2310 -4710 3660 -4094
+rect 8800 -3810 10130 -3210
+rect 8800 -4250 9140 -3810
+rect 9790 -4250 10130 -3810
+rect 8800 -4520 10130 -4250
+rect 14790 -3740 16120 -3200
+rect 14790 -3780 16350 -3740
+rect 14790 -4220 15150 -3780
+rect 16010 -4220 16350 -3780
+rect 14790 -4570 16350 -4220
+use mirror_n  mirror_n_0
+timestamp 1647868710
+transform 1 0 1530 0 1 -3800
+box -30 -30 820 3450
+use mirror_n  mirror_n_1
+timestamp 1647868710
+transform 1 0 2370 0 1 -3800
+box -30 -30 820 3450
+use mirror_n  mirror_n_2
+timestamp 1647868710
+transform 1 0 690 0 1 -3800
+box -30 -30 820 3450
+use mirror_p  mirror_p_0
+timestamp 1647868710
+transform -1 0 2550 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_2
+timestamp 1647868710
+transform -1 0 4200 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_3
+timestamp 1647868710
+transform -1 0 8250 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_4
+timestamp 1647868710
+transform -1 0 6900 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_5
+timestamp 1647868710
+transform -1 0 5550 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_6
+timestamp 1647868710
+transform -1 0 15000 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_7
+timestamp 1647868710
+transform -1 0 13650 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_8
+timestamp 1647868710
+transform -1 0 12300 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_9
+timestamp 1647868710
+transform -1 0 10950 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_10
+timestamp 1647868710
+transform -1 0 4480 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_11
+timestamp 1647868710
+transform -1 0 9600 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_12
+timestamp 1647868710
+transform -1 0 5830 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_13
+timestamp 1647868710
+transform -1 0 7180 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_14
+timestamp 1647868710
+transform -1 0 8530 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_15
+timestamp 1647868710
+transform -1 0 9880 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_16
+timestamp 1647868710
+transform -1 0 11230 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_17
+timestamp 1647868710
+transform -1 0 12580 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_18
+timestamp 1647868710
+transform -1 0 13930 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_19
+timestamp 1647868710
+transform -1 0 15280 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_20
+timestamp 1647868710
+transform -1 0 16630 0 -1 -2110
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_21
+timestamp 1647868710
+transform -1 0 19050 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_22
+timestamp 1647868710
+transform -1 0 16350 0 -1 1450
+box -320 -1880 1050 1700
+use mirror_p  mirror_p_23
+timestamp 1647868710
+transform -1 0 17700 0 -1 1450
+box -320 -1880 1050 1700
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0
+timestamp 1647868710
+transform 0 1 10181 -1 0 -18
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1647868710
+transform 0 1 16711 -1 0 -17
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2
+timestamp 1647868710
+transform 0 -1 3651 1 0 -49
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3
+timestamp 1647868710
+transform 0 1 3651 -1 0 -7727
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4
+timestamp 1647868710
+transform 0 1 10181 -1 0 -7717
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5
+timestamp 1647868710
+transform 0 1 16741 -1 0 -7697
+box -3351 -3101 3373 3101
+<< labels >>
+rlabel metal2 15800 -3790 15970 -3630 1 TIA_I_Bias1
+rlabel metal2 18160 -190 18330 -30 1 A_Out_I_Bias
+rlabel metal2 2540 -500 2660 -360 1 TIA_I_Bias2
+rlabel metal2 860 -470 980 -360 1 I_in_channel
+rlabel metal5 2790 -4340 3020 -4200 1 VN
+rlabel metal5 1270 3880 1430 4010 1 VP
+<< end >>
diff --git a/mag/currm/cmirror_channel.spice b/mag/currm/cmirror_channel.spice
new file mode 100644
index 0000000..6bdab0b
--- /dev/null
+++ b/mag/currm/cmirror_channel.spice
@@ -0,0 +1,498 @@
+* SPICE3 file created from cmirror_channel.ext - technology: sky130A
+
+X0 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X1 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X2 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X3 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X4 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X5 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X6 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X7 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X8 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X9 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X10 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X11 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X12 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X13 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X14 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X15 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X16 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X17 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X18 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X19 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X20 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X21 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X22 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X23 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X24 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X25 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X26 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X27 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X28 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X29 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X30 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X31 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X32 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X33 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X34 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X35 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X36 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X37 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X38 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X39 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X40 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X41 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X42 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X43 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X44 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X45 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X46 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X47 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X48 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X49 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X50 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X51 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X52 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X53 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X54 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X55 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X56 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X57 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X58 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X59 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X60 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X61 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X62 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X63 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X64 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X65 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X66 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X67 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X68 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X69 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X70 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X71 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X72 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X73 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X74 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X75 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X76 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X77 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X78 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X79 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X80 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X81 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X82 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X83 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X84 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X85 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X86 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X87 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X88 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X89 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X90 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X91 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X92 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X93 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X94 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X95 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X96 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X97 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X98 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X99 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X100 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X101 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X102 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X103 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X104 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X105 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X106 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X107 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X108 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X109 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X110 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X111 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X112 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X113 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X114 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X115 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X116 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X117 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X118 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X119 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X120 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X121 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X122 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X123 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X124 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X125 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X126 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X127 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X128 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X129 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X130 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X131 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X132 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X133 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X134 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X135 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X136 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X137 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X138 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X139 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X140 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X141 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X142 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X143 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X144 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X145 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X146 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X147 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X148 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X149 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X150 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X151 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X152 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X153 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X154 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X155 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X156 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X157 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X158 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X159 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X160 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X161 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X162 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X163 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X164 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X165 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X166 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X167 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X168 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X169 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X170 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X171 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X172 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X173 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X174 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X175 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X176 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X177 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X178 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X179 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X180 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X181 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X182 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X183 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X184 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X185 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X186 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X187 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X188 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X189 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X190 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X191 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X192 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X193 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X194 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X195 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X196 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X197 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X198 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X199 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X200 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X201 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X202 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X203 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X204 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X205 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X206 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X207 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X208 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X209 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X210 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X211 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X212 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X213 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X214 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X215 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X216 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X217 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X218 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X219 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X220 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X221 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X222 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X223 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X224 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X225 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X226 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X227 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X228 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X229 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X230 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X231 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X232 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X233 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X234 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X235 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X236 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X237 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X238 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X239 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X240 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X241 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X242 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X243 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X244 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X245 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X246 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X247 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X248 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X249 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X250 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X251 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X252 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X253 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X254 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X255 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X256 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X257 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X258 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X259 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X260 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X261 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X262 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X263 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X264 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X265 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X266 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X267 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X268 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X269 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X270 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X271 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X272 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X273 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X274 m2_4390_n2520# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X275 VP m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X276 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X277 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X278 m2_4390_n2520# m1_2160_410# TIA_I_Bias1 VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X279 TIA_I_Bias1 m1_2160_410# m2_4390_n2520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X280 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X281 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X282 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X283 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X284 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X285 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X286 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X287 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X288 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X289 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X290 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X291 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X292 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X293 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X294 mirror_p_0/m1_n92_1078# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X295 VP m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X296 mirror_p_0/m1_n92_1078# m1_2160_410# m1_2160_410# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X297 m1_2160_410# m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X298 mirror_p_0/m1_n92_1078# m1_2160_410# m1_2160_410# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X299 m1_2160_410# m1_2160_410# mirror_p_0/m1_n92_1078# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X300 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X301 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X302 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X303 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X304 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X305 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X306 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X307 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X308 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X309 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X310 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X311 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X312 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X313 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X314 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X315 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X316 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X317 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X318 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X319 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X320 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X321 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X322 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X323 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X324 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X325 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X326 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X327 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X328 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X329 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X330 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X331 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X332 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X333 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X334 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X335 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X336 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X337 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X338 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X339 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X340 mirror_n_0/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X341 VN I_in_channel mirror_n_0/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X342 mirror_n_0/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X343 mirror_n_0/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X344 VN I_in_channel mirror_n_0/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X345 VN I_in_channel mirror_n_0/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X346 mirror_n_0/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X347 VN I_in_channel mirror_n_0/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X348 mirror_n_0/m1_100_2840# I_in_channel m1_2160_410# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X349 m1_2160_410# I_in_channel mirror_n_0/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X350 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X351 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X352 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X353 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X354 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X355 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X356 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X357 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X358 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X359 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X360 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X361 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X362 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X363 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X364 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X365 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X366 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X367 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X368 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X369 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X370 mirror_n_1/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X371 VN I_in_channel mirror_n_1/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X372 mirror_n_1/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X373 mirror_n_1/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X374 VN I_in_channel mirror_n_1/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X375 VN I_in_channel mirror_n_1/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X376 mirror_n_1/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X377 VN I_in_channel mirror_n_1/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X378 mirror_n_1/m1_100_2840# I_in_channel TIA_I_Bias2 VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X379 TIA_I_Bias2 I_in_channel mirror_n_1/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X380 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X381 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X382 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X383 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X384 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X385 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X386 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X387 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X388 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X389 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X390 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X391 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X392 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X393 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X394 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X395 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X396 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X397 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X398 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X399 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X400 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X401 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X402 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X403 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X404 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X405 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X406 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X407 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X408 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X409 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X410 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X411 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X412 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X413 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X414 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X415 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X416 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X417 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X418 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X419 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X420 mirror_n_2/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X421 VN I_in_channel mirror_n_2/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X422 mirror_n_2/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X423 mirror_n_2/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X424 VN I_in_channel mirror_n_2/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X425 VN I_in_channel mirror_n_2/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X426 mirror_n_2/m1_100_2840# I_in_channel VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X427 VN I_in_channel mirror_n_2/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X428 mirror_n_2/m1_100_2840# I_in_channel I_in_channel VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X429 I_in_channel I_in_channel mirror_n_2/m1_100_2840# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X430 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X431 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X432 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X433 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X434 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X435 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X436 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X437 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X438 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X439 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X440 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X441 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X442 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X443 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X444 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X445 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X446 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X447 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X448 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X449 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X450 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X451 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X452 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X453 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X454 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X455 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X456 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X457 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X458 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X459 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X460 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X461 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X462 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X463 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X464 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X465 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X466 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X467 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X468 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X469 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X470 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X471 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X472 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X473 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X474 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X475 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X476 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X477 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X478 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X479 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X480 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X481 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X482 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X483 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X484 m2_4080_1040# m1_2160_410# VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X485 VP m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X486 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X487 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X488 m2_4080_1040# m1_2160_410# A_Out_I_Bias VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X489 A_Out_I_Bias m1_2160_410# m2_4080_1040# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X490 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X491 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X492 VN I_in_channel sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X493 VP m1_2160_410# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X494 VN I_in_channel sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X495 VP m1_2160_410# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
diff --git a/mag/currm/comp_channel.out b/mag/currm/comp_channel.out
new file mode 100644
index 0000000..8e0e5ad
--- /dev/null
+++ b/mag/currm/comp_channel.out
@@ -0,0 +1,22 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+
+Class ../../xschem/bias/current_mirror_channel.spice (0):  Merged 3 parallel devices.
+Class cmirror_channel.spice (1):  Merged 481 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../xschem/bias/current_mirro |Circuit 2: cmirror_channel.spice           
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8 (30->6)            |sky130_fd_pr__nfet_01v8 (30->6)            
+sky130_fd_pr__pfet_01v8 (460->6)           |sky130_fd_pr__pfet_01v8 (460->6)           
+sky130_fd_pr__cap_mim_m3_2 (6->3)          |sky130_fd_pr__cap_mim_m3_2 (6->3)          
+Number of devices: 15                      |Number of devices: 15                      
+Number of nets: 13                         |Number of nets: 13                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Netlists match uniquely.
+Netlists match uniquely.
+Circuits match correctly.
+Cells have no pins;  pin matching not needed.
+Device classes ../../xschem/bias/current_mirror_channel.spice and cmirror_channel.spice are equivalent.
+Circuits match uniquely.
diff --git a/mag/currm/comp_cmirror_eight.out b/mag/currm/comp_cmirror_eight.out
new file mode 100644
index 0000000..0832ec8
--- /dev/null
+++ b/mag/currm/comp_cmirror_eight.out
@@ -0,0 +1,17 @@
+Equate elements:  no current cell.
+
+Class eigth_mirror.spice (1):  Merged 162 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../xschem/bias/current_mirro |Circuit 2: eigth_mirror.spice              
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__pfet_01v8 (180->18)          |sky130_fd_pr__pfet_01v8 (180->18)          
+Number of devices: 18                      |Number of devices: 18                      
+Number of nets: 19                         |Number of nets: 19                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match uniquely.
+Circuits match correctly.
+Cells have no pins;  pin matching not needed.
+Device classes ../../xschem/bias/current_mirrorx8.spice and eigth_mirror.spice are equivalent.
+Circuits match uniquely.
diff --git a/mag/currm/eigth_mirror.ext b/mag/currm/eigth_mirror.ext
new file mode 100644
index 0000000..836076a
--- /dev/null
+++ b/mag/currm/eigth_mirror.ext
@@ -0,0 +1,490 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use mirror_p mirror_p_9 1 0 7080 0 1 1880
+use mirror_p mirror_p_8 1 0 8430 0 1 1880
+use mirror_p mirror_p_7 1 0 9780 0 1 1880
+use mirror_p mirror_p_6 1 0 11130 0 1 1880
+use mirror_p mirror_p_4 1 0 5730 0 1 1880
+use mirror_p mirror_p_3 1 0 4380 0 1 1880
+use mirror_p mirror_p_2 1 0 3030 0 1 1880
+use mirror_p mirror_p_1 1 0 1680 0 1 1880
+use mirror_p mirror_p_0 1 0 330 0 1 1880
+node "m3_100_0#" 2 5933.62 100 0 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3825000 23180 0 0 0 0 0 0
+node "I_out_7" 0 222.1 10940 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_6" 0 216.636 9590 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_5" 0 216.636 8240 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_4" 0 216.636 6890 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_3" 0 216.636 5540 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_2" 0 216.636 4190 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_1" 0 216.636 2840 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_out_0" 0 216.636 1490 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "I_In" 0 198.94 140 3180 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56000 1080 0 0 0 0 0 0 0 0
+node "m1_190_2810#" 13 5346.03 190 2810 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1246300 22880 0 0 0 0 0 0 0 0 0 0
+node "m1_530_3200#" 0 100.085 530 3200 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21600 700 0 0 0 0 0 0 0 0 0 0
+node "m1_140_3200#" 1 191.646 140 3200 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50900 1480 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "I_out_4" "I_out_5" 12.9256
+cap "I_out_4" "I_out_3" 12.9256
+cap "I_In" "I_out_0" 12.9256
+cap "I_out_6" "I_out_7" 12.9256
+cap "I_out_6" "I_out_5" 12.9256
+cap "m1_530_3200#" "m1_190_2810#" 10.5429
+cap "I_out_3" "I_out_2" 12.9256
+cap "m1_530_3200#" "m1_140_3200#" 106.831
+cap "m1_190_2810#" "m1_140_3200#" 22.9527
+cap "m1_140_3200#" "I_In" 176.859
+cap "I_out_1" "I_out_0" 12.9256
+cap "I_out_2" "I_out_1" 12.9256
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 10.447
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_n1662#" 179.344
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 224.584
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/m1_n190_n1662#" 466.797
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 364.914
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 179.344
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 178.33
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/m1_n190_n1662#" 105.095
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 10.447
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 602.833
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 231.74
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 115.791
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 179.344
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 14.2405
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.447
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 645.474
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 230.908
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 166.704
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -37.2246
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 645.474
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_n1662#" -60.2952
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 179.344
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 230.908
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 120.903
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 31.1805
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 31.674
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 36.3821
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 230.908
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 116.017
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 645.474
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 1719.31
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" -33.3944
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 166.359
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.2303
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 112.98
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 32.1913
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 267.29
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -21.2414
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 2441.49
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 645.474
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 162.569
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 162.569
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 645.474
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 35.9072
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 110.389
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_n1662#" 3980.34
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -6.07147
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 267.29
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.447
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 34.1172
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3682.05
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 243.003
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 645.546
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.902735
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 77.7433
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 268.123
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 175.475
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 118.334
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 77.7433
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 71.8818
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 281.233
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 84.5385
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 1423.41
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_n1662#" 424.862
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/m1_n190_n1662#" 465.493
+cap "mirror_p_2/m1_n190_n1662#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 196.377
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 234.454
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.447
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 193.157
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/m1_n190_n1662#" 134.4
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 237.322
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.447
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 680.999
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_n1662#" 196.945
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 10.447
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/m1_n190_n1662#" 14.4172
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/m1_n190_n1662#" 723.712
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/m1_n190_n1662#" 139.56
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 170.877
+cap "mirror_p_4/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 197.498
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 237.322
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 125.021
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 237.322
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 31.3629
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_n1662#" -7.72049
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -42.8697
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 723.712
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 198.006
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 31.8626
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 723.712
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 185.457
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_n1662#" 988.235
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 120.089
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 237.322
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" -45.1527
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 273.704
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 723.712
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_n1662#" 1593.64
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 10.2303
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -29.6749
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 32.3864
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 182.006
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 36.3821
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 117.013
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 39.4945
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 2953.93
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 10.447
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 114.389
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_n1662#" 182.223
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 34.1172
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" -10.3541
+cap "mirror_p_9/m1_n190_n1662#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 723.712
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 273.704
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/w_230_1520#" 742.7
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 273.498
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/w_230_1520#" 723.712
+cap "mirror_p_7/w_230_1520#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 81.3306
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -3.74277
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 134.328
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 207.462
+cap "mirror_p_7/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 261.222
+cap "mirror_p_6/w_230_1520#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 81.3306
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 99.8549
+cap "mirror_p_6/w_230_1520#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 141.259
+cap "mirror_p_6/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 512.075
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 100.383
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 22.2413
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/m1_n190_1320#" 58.0522
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.545788
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/m1_n190_1320#" 3.93931
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.301075
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.68992
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 73.43
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 15.6873
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.0136875
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 391.676
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 431.352
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 110.351
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" -3.6808
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.304933
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/m1_n190_1320#" 86.8795
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 22.2413
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 58.0522
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 15.6873
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/m1_n190_1320#" 58.0522
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.0136875
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.545788
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 169.209
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 257.117
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_1320#" 58.0522
+cap "mirror_p_3/m1_n190_1320#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.99441
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/m1_n190_1320#" 23.4198
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 15.3414
+cap "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_1/m1_n190_1320#" 138.522
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 11.224
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 204.757
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" -2017.93
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/m1_n190_1320#" 117.826
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_3/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" -56.796
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_1320#" 58.0522
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 58.0522
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.99441
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.304933
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_3/m1_n190_1320#" -2.04338
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 11.224
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.0136875
+cap "mirror_p_3/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 71.6173
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_1320#" 58.0522
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 15.3414
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_2/m1_n190_1320#" 86.8795
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 9.97137
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 169.209
+cap "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.545788
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_1320#" 0.155042
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 467.113
+cap "mirror_p_3/m1_n190_1320#" "mirror_p_2/m1_n190_1320#" 108.668
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/m1_n190_1320#" 40.447
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 138.522
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 197.048
+cap "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 11.9491
+cap "mirror_p_1/m1_n190_1320#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.99441
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/m1_n190_1320#" 3.99441
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/m1_n190_1320#" 101.079
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/m1_n190_1320#" 122.225
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 1052.06
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_1320#" 138.522
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.545788
+cap "mirror_p_3/m1_n190_1320#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 44.8928
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 11.3322
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 189.646
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/m1_n190_1320#" 16.3549
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 4.96413
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 3.73822
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_3/m1_n190_1320#" 124.29
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 62.8747
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 9.90897
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_1320#" 58.0522
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 81.896
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 11.9491
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 146.369
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_2/m1_n190_1320#" "mirror_p_3/m1_n190_1320#" 63.3247
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/m1_n190_1320#" 9.97137
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/m1_n190_1320#" 3.99441
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.304933
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.306094
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_2/m1_n190_1320#" 58.0522
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.0136875
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 13.9857
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 13.9964
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 8.85507
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 64.0992
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/m1_n190_1320#" 138.522
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 81.2108
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 59.7385
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/m1_n190_1320#" 61.4193
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.545788
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 0.304933
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 8.2458
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 1077.9
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 11.1925
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_3/m1_n190_1320#" 47.1779
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 11.2496
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 87.2762
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" 81.896
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" -13.8687
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/m1_n190_1320#" 3.99441
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/m1_n190_1320#" 34.2084
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.31392
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_8/m1_n190_1320#" 3.99441
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 188.522
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 87.738
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 60.1399
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 144.568
+cap "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 3.73822
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/m1_n190_1320#" 16.2682
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/m1_n190_1320#" 9.97137
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/m1_n190_1320#" 109.798
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_3/m1_n190_1320#" 58.0522
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.0136875
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 3.73822
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_8/m1_n190_1320#" 118.644
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" 0.545788
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 13.9964
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/m1_n190_1320#" 81.8832
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 29.1806
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" 34.2084
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.304933
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/m1_n190_1320#" 105.479
+cap "mirror_p_7/m1_n190_1320#" "mirror_p_8/m1_n190_1320#" 16.2385
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_4/m1_n190_1320#" 39.7202
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 1.87091
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 3.73822
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 28.051
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 952.722
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/m1_n190_1320#" 7.15565
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 18.8049
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 127.506
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/m1_n190_1320#" 3.99441
+cap "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 42.4619
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" 77.2453
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 81.896
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/m1_n190_1320#" 53.9697
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 24.8531
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.0136875
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_4/m1_n190_1320#" 3.99441
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 14.1936
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 9.97137
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 87.738
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 177.605
+cap "mirror_p_4/m1_n190_1320#" "mirror_p_9/m1_n190_1320#" 47.2568
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" 158.004
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.545788
+cap "mirror_p_8/w_230_1520#" "mirror_p_7/m1_n190_1320#" 113.043
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 22.8648
+cap "mirror_p_8/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.304933
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_7/m1_n190_1320#" 139.206
+cap "mirror_p_8/w_230_1520#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 28.6033
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 18.8113
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/w_230_1520#" 3.99441
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 77.2453
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_8/m1_n190_1320#" 50.0222
+cap "mirror_p_8/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 3.73822
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 83.6718
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_8/w_230_1520#" 86.9578
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/w_230_1520#" 3.73822
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/m1_n190_1320#" 95.4106
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 73.2456
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 3.0327
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/m1_n190_1320#" 29.6783
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/m1_n190_1320#" 24.8626
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 34.2084
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 144.326
+cap "mirror_p_9/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 9.97137
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/w_230_1520#" 4.43608
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 24.8626
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/w_230_1520#" 1001.9
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 109.341
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.0136875
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 32.6015
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 63.5837
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_8/w_230_1520#" 3.99441
+cap "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 6.0886
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 185.87
+cap "mirror_p_7/w_230_1520#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 953.199
+cap "mirror_p_7/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 11.6263
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/m1_n190_1320#" 77.2453
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.0136875
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/m1_n190_1320#" 46.059
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 77.2453
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 9.97137
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_7/w_230_1520#" "mirror_p_7/m1_n190_1320#" 87.5491
+cap "mirror_p_7/w_230_1520#" "mirror_p_8/m1_n190_1320#" 3.99441
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 145.461
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 81.8545
+cap "mirror_p_7/w_230_1520#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 3.73822
+cap "mirror_p_8/m1_n190_1320#" "mirror_p_7/m1_n190_1320#" 33.0297
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 71.5902
+cap "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 23.0415
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/w_230_1520#" 10.3299
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -1.07063
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/m1_n190_1320#" 150.332
+cap "mirror_p_7/w_230_1520#" "mirror_p_6/m1_n190_1320#" 112.779
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/m1_n190_1320#" 24.8626
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 32.5424
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/m1_n190_1320#" 139.206
+cap "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 22.7384
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.545788
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 9.97137
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 4.96413
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 220.873
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_p_6/w_230_1520#" 3.99441
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/w_230_1520#" 3.73822
+cap "mirror_p_6/w_230_1520#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" -2.11191
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.0136875
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 16.5377
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_6/w_230_1520#" 14.2743
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_6/w_230_1520#" 361.177
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 24.8626
+cap "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 24.541
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 19.3169
+cap "mirror_p_6/m1_n190_1320#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 13.9964
+merge "mirror_p_6/VSUBS" "mirror_p_7/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "mirror_p_7/VSUBS" "mirror_p_8/VSUBS"
+merge "mirror_p_8/VSUBS" "mirror_p_9/VSUBS"
+merge "mirror_p_9/VSUBS" "mirror_p_4/VSUBS"
+merge "mirror_p_4/VSUBS" "mirror_p_3/VSUBS"
+merge "mirror_p_3/VSUBS" "mirror_p_0/VSUBS"
+merge "mirror_p_0/VSUBS" "mirror_p_1/VSUBS"
+merge "mirror_p_1/VSUBS" "mirror_p_2/VSUBS"
+merge "mirror_p_2/VSUBS" "VSUBS"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "I_In" -60131.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -88910820 -13644 376200 -660 0 0 0 0 0 0 0 0
+merge "I_In" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "m1_530_3200#"
+merge "m1_530_3200#" "m1_140_3200#"
+merge "m1_140_3200#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "m1_190_2810#"
+merge "mirror_p_1/m1_n190_1320#" "I_out_0" 0.850321 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 425600 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_6/w_230_1520#" "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 83192.4 0 0 0 0 53345960 -44192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -44231200 -44320 0 0 0 0 1191250 -26540 0 0 0 0 0 0
+merge "mirror_p_9/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_7/w_230_1520#"
+merge "mirror_p_7/w_230_1520#" "mirror_p_8/w_230_1520#"
+merge "mirror_p_8/w_230_1520#" "mirror_p_7/m1_n190_n1662#"
+merge "mirror_p_7/m1_n190_n1662#" "mirror_p_8/m1_n190_n1662#"
+merge "mirror_p_8/m1_n190_n1662#" "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_6/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/li_n320_n1880#"
+merge "mirror_p_3/li_n320_n1880#" "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_7/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_2/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_8/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_1/m1_n190_n1662#"
+merge "mirror_p_1/m1_n190_n1662#" "mirror_p_1/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_1/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_4/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_9/m1_n190_n1662#"
+merge "mirror_p_9/m1_n190_n1662#" "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_3/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_4/m1_n190_n1662#"
+merge "mirror_p_4/m1_n190_n1662#" "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_2/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_3/m1_n190_n1662#"
+merge "mirror_p_3/m1_n190_n1662#" "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_0/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "mirror_p_1/sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "mirror_p_2/m1_n190_n1662#"
+merge "mirror_p_2/m1_n190_n1662#" "m3_100_0#"
+merge "mirror_p_9/m1_n190_1320#" "I_out_4" 312.427 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 957600 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_6/m1_n190_1320#" "I_out_7" -13.9723 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 425600 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_3/m1_n190_1320#" "I_out_2" 329.587 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 957600 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_2/m1_n190_1320#" "I_out_1" 230.437 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 969000 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_4/m1_n190_1320#" "I_out_3" 334.659 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 957600 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_8/m1_n190_1320#" "I_out_5" 221.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 969000 -660 0 0 0 0 0 0 0 0
+merge "mirror_p_7/m1_n190_1320#" "I_out_6" 12.101 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 455200 -660 0 0 0 0 0 0 0 0
diff --git a/mag/currm/eigth_mirror.mag b/mag/currm/eigth_mirror.mag
new file mode 100644
index 0000000..9f77e10
--- /dev/null
+++ b/mag/currm/eigth_mirror.mag
@@ -0,0 +1,68 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< metal1 >>
+rect 70 1700 205 1735
+rect 70 1600 110 1700
+rect 165 1600 205 1700
+rect 265 1600 305 1735
+rect 95 1405 5760 1460
+<< metal2 >>
+rect 70 1590 140 1790
+rect 745 1590 815 1790
+rect 1420 1590 1490 1790
+rect 2095 1590 2165 1790
+rect 2770 1590 2840 1790
+rect 3445 1590 3515 1790
+rect 4120 1590 4190 1790
+rect 4795 1590 4865 1790
+rect 5470 1590 5540 1790
+<< metal3 >>
+rect 50 0 5675 170
+use mirror_p  mirror_p_0
+timestamp 1647868710
+transform 1 0 165 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_1
+timestamp 1647868710
+transform 1 0 840 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_2
+timestamp 1647868710
+transform 1 0 1515 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_3
+timestamp 1647868710
+transform 1 0 2190 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_4
+timestamp 1647868710
+transform 1 0 2865 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_6
+timestamp 1647868710
+transform 1 0 5565 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_7
+timestamp 1647868710
+transform 1 0 4890 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_8
+timestamp 1647868710
+transform 1 0 4215 0 1 940
+box -160 -940 525 850
+use mirror_p  mirror_p_9
+timestamp 1647868710
+transform 1 0 3540 0 1 940
+box -160 -940 525 850
+<< labels >>
+rlabel metal2 75 1720 135 1785 1 I_In
+rlabel metal2 750 1720 810 1785 1 I_out_0
+rlabel metal2 1425 1720 1485 1785 1 I_out_1
+rlabel metal2 2100 1720 2160 1785 1 I_out_2
+rlabel metal2 2775 1720 2835 1785 1 I_out_3
+rlabel metal2 3450 1720 3510 1785 1 I_out_4
+rlabel metal2 4125 1720 4185 1785 1 I_out_5
+rlabel metal2 4800 1720 4860 1785 1 I_out_6
+rlabel metal2 5475 1720 5535 1785 1 I_out_7
+<< end >>
diff --git a/mag/currm/eigth_mirror.spice b/mag/currm/eigth_mirror.spice
new file mode 100644
index 0000000..8673726
--- /dev/null
+++ b/mag/currm/eigth_mirror.spice
@@ -0,0 +1,182 @@
+* SPICE3 file created from eigth_mirror.ext - technology: sky130A
+
+X0 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X1 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X2 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X3 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X4 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X5 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X6 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X7 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X8 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X9 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X10 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X11 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X12 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X13 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X14 mirror_p_0/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X15 m3_100_0# I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X16 mirror_p_0/m1_n92_1078# I_In I_In m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X17 I_In I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X18 mirror_p_0/m1_n92_1078# I_In I_In m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X19 I_In I_In mirror_p_0/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X20 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X21 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X22 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X23 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X24 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X25 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X26 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X27 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X28 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X29 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X30 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X31 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X32 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X33 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X34 mirror_p_1/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X35 m3_100_0# I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X36 mirror_p_1/m1_n92_1078# I_In I_out_0 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X37 I_out_0 I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X38 mirror_p_1/m1_n92_1078# I_In I_out_0 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X39 I_out_0 I_In mirror_p_1/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X40 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X41 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X42 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X43 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X44 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X45 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X46 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X47 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X48 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X49 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X50 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X51 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X52 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X53 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X54 mirror_p_2/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X55 m3_100_0# I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X56 mirror_p_2/m1_n92_1078# I_In I_out_1 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X57 I_out_1 I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X58 mirror_p_2/m1_n92_1078# I_In I_out_1 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X59 I_out_1 I_In mirror_p_2/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X60 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X61 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X62 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X63 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X64 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X65 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X66 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X67 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X68 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X69 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X70 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X71 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X72 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X73 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X74 mirror_p_3/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X75 m3_100_0# I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X76 mirror_p_3/m1_n92_1078# I_In I_out_2 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X77 I_out_2 I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X78 mirror_p_3/m1_n92_1078# I_In I_out_2 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X79 I_out_2 I_In mirror_p_3/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X80 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X81 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X82 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X83 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X84 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X85 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X86 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X87 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X88 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X89 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X90 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X91 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X92 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X93 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X94 mirror_p_4/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X95 m3_100_0# I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X96 mirror_p_4/m1_n92_1078# I_In I_out_3 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X97 I_out_3 I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X98 mirror_p_4/m1_n92_1078# I_In I_out_3 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X99 I_out_3 I_In mirror_p_4/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X100 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X101 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X102 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X103 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X104 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X105 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X106 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X107 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X108 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X109 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X110 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X111 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X112 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X113 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X114 mirror_p_6/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X115 m3_100_0# I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X116 mirror_p_6/m1_n92_1078# I_In I_out_7 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X117 I_out_7 I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X118 mirror_p_6/m1_n92_1078# I_In I_out_7 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X119 I_out_7 I_In mirror_p_6/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X120 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X121 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X122 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X123 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X124 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X125 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X126 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X127 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X128 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X129 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X130 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X131 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X132 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X133 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X134 mirror_p_7/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X135 m3_100_0# I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X136 mirror_p_7/m1_n92_1078# I_In I_out_6 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X137 I_out_6 I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X138 mirror_p_7/m1_n92_1078# I_In I_out_6 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X139 I_out_6 I_In mirror_p_7/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X140 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X141 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X142 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X143 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X144 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X145 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X146 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X147 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X148 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X149 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X150 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X151 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X152 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X153 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X154 mirror_p_8/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X155 m3_100_0# I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X156 mirror_p_8/m1_n92_1078# I_In I_out_5 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X157 I_out_5 I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X158 mirror_p_8/m1_n92_1078# I_In I_out_5 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X159 I_out_5 I_In mirror_p_8/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X160 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X161 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X162 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X163 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X164 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X165 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X166 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X167 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X168 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X169 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X170 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X171 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X172 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X173 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X174 mirror_p_9/m1_n92_1078# I_In m3_100_0# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X175 m3_100_0# I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X176 mirror_p_9/m1_n92_1078# I_In I_out_4 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X177 I_out_4 I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X178 mirror_p_9/m1_n92_1078# I_In I_out_4 m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X179 I_out_4 I_In mirror_p_9/m1_n92_1078# m3_100_0# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
diff --git a/mag/currm/mirror_n.ext b/mag/currm/mirror_n.ext
new file mode 100644
index 0000000..2ead444
--- /dev/null
+++ b/mag/currm/mirror_n.ext
@@ -0,0 +1,65 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_WS53KN sky130_fd_pr__nfet_01v8_WS53KN_0 1 0 235 0 1 3040
+use sky130_fd_pr__nfet_01v8_M8466X sky130_fd_pr__nfet_01v8_M8466X_0 1 0 395 0 1 1307
+node "m1_100_180#" 7 652.749 100 180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94720 3744 991800 9740 0 0 0 0 0 0 0 0
+node "m1_100_2840#" 5 727.807 100 2840 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71040 2808 704800 6040 0 0 0 0 0 0 0 0
+node "m1_198_3080#" 1 88.8862 198 3080 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_140_2740#" 8 1714.62 140 2740 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 490820 11556 0 0 0 0 0 0 0 0 0 0
+node "li_n30_n30#" 840 3710.91 -30 -30 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1091100 17180 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_198_3080#" "m1_140_2740#" 87.2324
+cap "m1_100_2840#" "m1_140_2740#" 2907.96
+cap "m1_140_2740#" "m1_100_180#" 1589.65
+cap "li_n30_n30#" "m1_140_2740#" 398.131
+cap "m1_100_2840#" "m1_198_3080#" 35.19
+cap "m1_100_2840#" "m1_100_180#" 2570.32
+cap "m1_100_2840#" "li_n30_n30#" 133.102
+cap "li_n30_n30#" "m1_100_180#" 2477.57
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 0.628652
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" 478.274
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 0.222513
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" 744.081
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" -77.8115
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" -0.804406
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 500.36
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 677.206
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" -111.905
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" 229.178
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 298.341
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" -29.1308
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" 126.201
+cap "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" 2.91935
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_n1127#" "m1_100_180#" -8042.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4749848 -24740 -50352 -3296 0 0 0 0 0 0 0 0 0 0
+merge "m1_100_180#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_n1127#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_n1127#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_n509#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_n509#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_n509#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_n509#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_109#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_109#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_109#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_109#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_727#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_229_727#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_727#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n287_727#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n389_n1301#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n389_n1301#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n229_n374#" "VSUBS"
+merge "VSUBS" "li_n30_n30#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_16_222#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n1215#" -1747.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1346816 -8008 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n1215#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_n1215#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_n1215#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n597#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_n597#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_n597#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_n597#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_21#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_21#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_21#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_21#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_639#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_29_639#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_639#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n229_639#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n82_n288#" "m1_140_2740#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n1127#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n509#" -525.423 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4040 -2472 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_n509#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_109#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_109#" "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_727#"
+merge "sky130_fd_pr__nfet_01v8_M8466X_0/a_n29_727#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_69_n200#" "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n127_n200#" "m1_100_2840#"
+merge "sky130_fd_pr__nfet_01v8_WS53KN_0/a_n29_n200#" "m1_198_3080#" -70.2256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11024 -412 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/currm/mirror_n.mag b/mag/currm/mirror_n.mag
new file mode 100644
index 0000000..8c84c51
--- /dev/null
+++ b/mag/currm/mirror_n.mag
@@ -0,0 +1,127 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< locali >>
+rect -30 3380 500 3450
+rect -30 2690 40 3380
+rect 430 2690 500 3380
+rect -30 2600 820 2690
+rect -30 2580 40 2600
+rect 460 2580 820 2600
+rect -30 40 130 2580
+rect 660 40 820 2580
+rect -30 -30 820 40
+<< metal1 >>
+rect 250 3270 470 3340
+rect 198 3080 208 3240
+rect 262 3080 272 3240
+rect 100 2840 110 3000
+rect 164 2840 174 3000
+rect 296 2840 306 3000
+rect 360 2840 370 3000
+rect 398 2810 470 3270
+rect 140 2740 470 2810
+rect 230 2520 300 2740
+rect 150 2470 630 2520
+rect 100 2034 110 2194
+rect 164 2034 174 2194
+rect 230 2000 300 2470
+rect 358 2274 368 2434
+rect 422 2274 432 2434
+rect 616 2034 626 2194
+rect 680 2034 690 2194
+rect 150 1850 630 2000
+rect 100 1416 110 1576
+rect 164 1416 174 1576
+rect 230 1380 300 1850
+rect 358 1656 368 1816
+rect 422 1656 432 1816
+rect 616 1416 626 1576
+rect 680 1416 690 1576
+rect 150 1230 630 1380
+rect 100 1038 110 1198
+rect 164 1038 174 1198
+rect 230 770 300 1230
+rect 616 1038 626 1198
+rect 680 1038 690 1198
+rect 358 798 368 958
+rect 422 798 432 958
+rect 150 610 630 770
+rect 100 180 110 340
+rect 164 180 174 340
+rect 230 150 300 610
+rect 358 420 368 580
+rect 422 420 432 580
+rect 616 180 626 340
+rect 680 180 690 340
+rect 150 90 630 150
+<< via1 >>
+rect 208 3080 262 3240
+rect 110 2840 164 3000
+rect 306 2840 360 3000
+rect 110 2034 164 2194
+rect 368 2274 422 2434
+rect 626 2034 680 2194
+rect 110 1416 164 1576
+rect 368 1656 422 1816
+rect 626 1416 680 1576
+rect 110 1038 164 1198
+rect 626 1038 680 1198
+rect 368 798 422 958
+rect 110 180 164 340
+rect 368 420 422 580
+rect 626 180 680 340
+<< metal2 >>
+rect 208 3240 262 3250
+rect 208 3070 262 3080
+rect 110 3000 530 3010
+rect 164 2840 306 3000
+rect 360 2840 530 3000
+rect 110 2830 530 2840
+rect 270 2434 530 2830
+rect 270 2274 368 2434
+rect 422 2274 530 2434
+rect 10 2194 200 2210
+rect 10 2034 110 2194
+rect 164 2034 200 2194
+rect 10 1576 200 2034
+rect 10 1416 110 1576
+rect 164 1416 200 1576
+rect 10 1198 200 1416
+rect 10 1038 110 1198
+rect 164 1038 200 1198
+rect 10 340 200 1038
+rect 270 1816 530 2274
+rect 270 1656 368 1816
+rect 422 1656 530 1816
+rect 270 958 530 1656
+rect 270 798 368 958
+rect 422 798 530 958
+rect 270 580 530 798
+rect 270 420 368 580
+rect 422 420 530 580
+rect 270 410 530 420
+rect 580 2194 770 2210
+rect 580 2034 626 2194
+rect 680 2034 770 2194
+rect 580 1576 770 2034
+rect 580 1416 626 1576
+rect 680 1416 770 1576
+rect 580 1198 770 1416
+rect 580 1038 626 1198
+rect 680 1038 770 1198
+rect 580 340 770 1038
+rect 10 180 110 340
+rect 164 180 626 340
+rect 680 180 770 340
+rect 10 -30 770 180
+use sky130_fd_pr__nfet_01v8_M8466X  sky130_fd_pr__nfet_01v8_M8466X_0
+timestamp 1647868710
+transform 1 0 395 0 1 1307
+box -425 -1337 425 1337
+use sky130_fd_pr__nfet_01v8_WS53KN  sky130_fd_pr__nfet_01v8_WS53KN_0
+timestamp 1647868710
+transform 1 0 235 0 1 3040
+box -265 -410 265 410
+<< end >>
diff --git a/mag/currm/mirror_p.ext b/mag/currm/mirror_p.ext
new file mode 100644
index 0000000..6be2a5d
--- /dev/null
+++ b/mag/currm/mirror_p.ext
@@ -0,0 +1,93 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_X9CJL2 sky130_fd_pr__pfet_01v8_X9CJL2_0 1 0 43 0 1 1279
+use sky130_fd_pr__pfet_01v8_LXX5YL sky130_fd_pr__pfet_01v8_LXX5YL_0 1 0 363 0 1 -507
+node "m1_n190_n1662#" 12 2183.34 -190 -1662 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 142080 5616 912000 11120 1504200 12100 0 0 0 0 0 0
+node "m1_n92_1078#" 9 1641.24 -92 1078 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118400 4680 594900 8080 1567100 6590 0 0 0 0 0 0
+node "m1_n190_1320#" 2 379.979 -190 1320 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35520 1404 87400 1300 0 0 0 0 0 0 0 0
+node "m1_n140_970#" 11 2850.43 -140 970 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 851000 17540 0 0 0 0 0 0 0 0 0 0
+node "li_n320_n1880#" 1055 4774.34 -320 -1880 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1174900 19920 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_1520#" 1520 12 230 1520 nw 0 0 0 0 4000 260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_n92_1078#" "m1_n190_1320#" 336.487
+cap "m1_n140_970#" "li_n320_n1880#" 459.237
+cap "m1_n190_n1662#" "li_n320_n1880#" 3078.03
+cap "m1_n140_970#" "m1_n190_1320#" 387.677
+cap "m1_n190_n1662#" "m1_n190_1320#" 45.7611
+cap "m1_n140_970#" "m1_n92_1078#" 2376.76
+cap "m1_n190_n1662#" "m1_n92_1078#" 7722.04
+cap "m1_n140_970#" "w_230_1520#" 2.578
+cap "li_n320_n1880#" "m1_n92_1078#" 185.658
+cap "m1_n190_n1662#" "m1_n140_970#" 2575.68
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 861.144
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 0.215054
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 1823.28
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" 0.215054
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 263.196
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 9.0595
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 891.764
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 1829.41
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" 2.06274
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 373.787
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 205.204
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" 0.5321
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" 160.804
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 110.497
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 310.326
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" 575.696
+cap "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" 457.541
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_114_231#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" -2479.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99056 -16052 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n82_231#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n1251#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n1251#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_n1251#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_n1251#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n1251#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n1251#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n1251#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_n615#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_n615#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_n615#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n615#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_n615#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n615#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_n615#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_21#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_21#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_21#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_21#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_21#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_287_657#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_29_657#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n229_657#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_657#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n487_657#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_16_n297#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n180_n297#" "m1_n140_970#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_n1154#" "w_230_1520#" -7623.11 0 0 0 0 35288 -1724 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3772180 -27804 -76776 -4920 0 0 0 0 0 0 0 0 0 0
+merge "w_230_1520#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_n518#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_n518#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_118#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_118#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_754#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n29_754#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_n1154#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_n1154#" "m1_n190_n1662#"
+merge "m1_n190_n1662#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_n1154#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_n1154#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_n518#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_n518#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_n518#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_n518#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_118#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_118#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_118#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_118#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_754#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_487_754#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_754#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n545_754#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/w_n683_n1373#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/w_n363_n419#" "li_n320_n1880#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/VSUBS" "sky130_fd_pr__pfet_01v8_X9CJL2_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_167_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n29_n200#" -388.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -35070 -1230 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n225_n200#" "m1_n190_1320#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n1154#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n1154#" -1446.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -82112 -4100 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n1154#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_n518#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_n518#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_118#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_118#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_229_754#" "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_754#"
+merge "sky130_fd_pr__pfet_01v8_LXX5YL_0/a_n287_754#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_69_n200#" "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#"
+merge "sky130_fd_pr__pfet_01v8_X9CJL2_0/a_n127_n200#" "m1_n92_1078#"
diff --git a/mag/currm/mirror_p.mag b/mag/currm/mirror_p.mag
new file mode 100644
index 0000000..e78bdeb
--- /dev/null
+++ b/mag/currm/mirror_p.mag
@@ -0,0 +1,303 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect 230 1520 310 1570
+<< locali >>
+rect -320 1630 410 1700
+rect -320 910 -260 1630
+rect 340 910 410 1630
+rect -320 870 410 910
+rect -320 820 1050 870
+rect -320 -1820 -160 820
+rect 340 810 1050 820
+rect 890 -1820 1050 810
+rect -320 -1880 1050 -1820
+<< metal1 >>
+rect -40 1520 390 1590
+rect -190 1320 -180 1480
+rect -126 1320 -116 1480
+rect 6 1320 16 1480
+rect 70 1320 80 1480
+rect 202 1320 212 1480
+rect 266 1320 276 1480
+rect -92 1078 -82 1238
+rect -28 1078 -18 1238
+rect 104 1078 114 1238
+rect 168 1078 178 1238
+rect 310 1040 390 1520
+rect -140 970 390 1040
+rect -70 740 10 970
+rect -130 690 860 740
+rect -190 488 -180 648
+rect -126 488 -116 648
+rect -70 210 10 690
+rect 326 488 336 648
+rect 390 488 400 648
+rect 842 488 852 648
+rect 906 488 916 648
+rect 68 246 78 406
+rect 132 246 142 406
+rect 584 246 594 406
+rect 648 246 658 406
+rect -130 50 860 210
+rect -190 -390 -180 -230
+rect -126 -390 -116 -230
+rect -70 -430 10 50
+rect 68 -148 78 12
+rect 132 -148 142 12
+rect 584 -148 594 12
+rect 648 -148 658 12
+rect 326 -390 336 -230
+rect 390 -390 400 -230
+rect 842 -390 852 -230
+rect 906 -390 916 -230
+rect -130 -590 860 -430
+rect -190 -784 -180 -624
+rect -126 -784 -116 -624
+rect -70 -1060 10 -590
+rect 326 -784 336 -624
+rect 390 -784 400 -624
+rect 842 -784 852 -624
+rect 906 -784 916 -624
+rect 68 -1026 78 -866
+rect 132 -1026 142 -866
+rect 584 -1026 594 -866
+rect 648 -1026 658 -866
+rect -130 -1220 860 -1060
+rect -190 -1662 -180 -1502
+rect -126 -1662 -116 -1502
+rect -70 -1700 10 -1220
+rect 68 -1420 78 -1260
+rect 132 -1420 142 -1260
+rect 584 -1420 594 -1260
+rect 648 -1420 658 -1260
+rect 326 -1662 336 -1502
+rect 390 -1662 400 -1502
+rect 842 -1662 852 -1502
+rect 906 -1662 916 -1502
+rect -130 -1750 860 -1700
+<< via1 >>
+rect -180 1320 -126 1480
+rect 16 1320 70 1480
+rect 212 1320 266 1480
+rect -82 1078 -28 1238
+rect 114 1078 168 1238
+rect -180 488 -126 648
+rect 336 488 390 648
+rect 852 488 906 648
+rect 78 246 132 406
+rect 594 246 648 406
+rect -180 -390 -126 -230
+rect 78 -148 132 12
+rect 594 -148 648 12
+rect 336 -390 390 -230
+rect 852 -390 906 -230
+rect -180 -784 -126 -624
+rect 336 -784 390 -624
+rect 852 -784 906 -624
+rect 78 -1026 132 -866
+rect 594 -1026 648 -866
+rect -180 -1662 -126 -1502
+rect 78 -1420 132 -1260
+rect 594 -1420 648 -1260
+rect 336 -1662 390 -1502
+rect 852 -1662 906 -1502
+<< metal2 >>
+rect -190 1480 270 1490
+rect -190 1320 -180 1480
+rect -126 1320 16 1480
+rect 70 1320 212 1480
+rect 266 1320 270 1480
+rect -190 1300 270 1320
+rect 70 1250 650 1260
+rect -90 1238 70 1250
+rect -90 1078 -82 1238
+rect -28 1078 70 1238
+rect -90 1060 70 1078
+rect 70 1050 650 1060
+rect -240 650 960 660
+rect 0 648 720 650
+rect 0 488 336 648
+rect 390 488 720 648
+rect 0 480 720 488
+rect -240 470 960 480
+rect 70 410 650 420
+rect 70 406 80 410
+rect 640 406 650 410
+rect 70 246 78 406
+rect 648 246 650 406
+rect 70 240 80 246
+rect 640 240 650 246
+rect 70 230 650 240
+rect 70 20 650 30
+rect 70 12 80 20
+rect 640 12 650 20
+rect 70 -148 78 12
+rect 648 -148 650 12
+rect 70 -150 80 -148
+rect 640 -150 650 -148
+rect 70 -160 650 -150
+rect -240 -230 960 -220
+rect 0 -390 336 -230
+rect 390 -390 720 -230
+rect 0 -400 720 -390
+rect -240 -410 960 -400
+rect -240 -620 960 -610
+rect 0 -624 720 -620
+rect 0 -784 336 -624
+rect 390 -784 720 -624
+rect 0 -790 720 -784
+rect -240 -800 960 -790
+rect 70 -860 660 -850
+rect 70 -866 80 -860
+rect 640 -866 660 -860
+rect 70 -1026 78 -866
+rect 648 -1026 660 -866
+rect 70 -1030 80 -1026
+rect 640 -1030 660 -1026
+rect 70 -1040 660 -1030
+rect 70 -1260 650 -1250
+rect 70 -1420 78 -1260
+rect 648 -1420 650 -1260
+rect 70 -1430 80 -1420
+rect 640 -1430 650 -1420
+rect 70 -1440 650 -1430
+rect -240 -1500 960 -1490
+rect 0 -1502 720 -1500
+rect 0 -1662 336 -1502
+rect 390 -1662 720 -1502
+rect 0 -1670 720 -1662
+rect -240 -1680 960 -1670
+<< via2 >>
+rect 70 1238 650 1250
+rect 70 1078 114 1238
+rect 114 1078 168 1238
+rect 168 1078 650 1238
+rect 70 1060 650 1078
+rect -240 648 0 650
+rect 720 648 960 650
+rect -240 488 -180 648
+rect -180 488 -126 648
+rect -126 488 0 648
+rect 720 488 852 648
+rect 852 488 906 648
+rect 906 488 960 648
+rect -240 480 0 488
+rect 720 480 960 488
+rect 80 406 640 410
+rect 80 246 132 406
+rect 132 246 594 406
+rect 594 246 640 406
+rect 80 240 640 246
+rect 80 12 640 20
+rect 80 -148 132 12
+rect 132 -148 594 12
+rect 594 -148 640 12
+rect 80 -150 640 -148
+rect -240 -390 -180 -230
+rect -180 -390 -126 -230
+rect -126 -390 0 -230
+rect 720 -390 852 -230
+rect 852 -390 906 -230
+rect 906 -390 960 -230
+rect -240 -400 0 -390
+rect 720 -400 960 -390
+rect -240 -624 0 -620
+rect 720 -624 960 -620
+rect -240 -784 -180 -624
+rect -180 -784 -126 -624
+rect -126 -784 0 -624
+rect 720 -784 852 -624
+rect 852 -784 906 -624
+rect 906 -784 960 -624
+rect -240 -790 0 -784
+rect 720 -790 960 -784
+rect 80 -866 640 -860
+rect 80 -1026 132 -866
+rect 132 -1026 594 -866
+rect 594 -1026 640 -866
+rect 80 -1030 640 -1026
+rect 80 -1420 132 -1260
+rect 132 -1420 594 -1260
+rect 594 -1420 640 -1260
+rect 80 -1430 640 -1420
+rect -240 -1502 0 -1500
+rect 720 -1502 960 -1500
+rect -240 -1662 -180 -1502
+rect -180 -1662 -126 -1502
+rect -126 -1662 0 -1502
+rect 720 -1662 852 -1502
+rect 852 -1662 906 -1502
+rect 906 -1662 960 -1502
+rect -240 -1670 0 -1662
+rect 720 -1670 960 -1662
+<< metal3 >>
+rect 60 1250 660 1255
+rect 60 1060 70 1250
+rect 650 1060 660 1250
+rect 60 1055 660 1060
+rect -230 655 10 660
+rect -250 650 10 655
+rect -250 480 -240 650
+rect 0 480 10 650
+rect -250 475 10 480
+rect -230 -225 10 475
+rect -250 -230 10 -225
+rect -250 -400 -240 -230
+rect 0 -400 10 -230
+rect -250 -405 10 -400
+rect -230 -615 10 -405
+rect -250 -620 10 -615
+rect -250 -790 -240 -620
+rect 0 -790 10 -620
+rect -250 -795 10 -790
+rect -230 -1495 10 -795
+rect 70 410 650 1055
+rect 70 240 80 410
+rect 640 240 650 410
+rect 70 20 650 240
+rect 70 -150 80 20
+rect 640 -150 650 20
+rect 70 -860 650 -150
+rect 70 -1030 80 -860
+rect 640 -1030 650 -860
+rect 70 -1260 650 -1030
+rect 70 -1430 80 -1260
+rect 640 -1430 650 -1260
+rect 70 -1440 650 -1430
+rect 710 655 960 660
+rect 710 650 970 655
+rect 710 480 720 650
+rect 960 480 970 650
+rect 710 475 970 480
+rect 710 -225 960 475
+rect 710 -230 970 -225
+rect 710 -400 720 -230
+rect 960 -400 970 -230
+rect 710 -405 970 -400
+rect 710 -615 960 -405
+rect 710 -620 970 -615
+rect 710 -790 720 -620
+rect 960 -790 970 -620
+rect 710 -795 970 -790
+rect -250 -1500 10 -1495
+rect -250 -1670 -240 -1500
+rect 0 -1540 10 -1500
+rect 710 -1495 960 -795
+rect 710 -1500 970 -1495
+rect 710 -1540 720 -1500
+rect 0 -1670 720 -1540
+rect 960 -1670 970 -1500
+rect -250 -1675 970 -1670
+rect -230 -1880 960 -1675
+use sky130_fd_pr__pfet_01v8_LXX5YL  sky130_fd_pr__pfet_01v8_LXX5YL_0
+timestamp 1647868710
+transform 1 0 363 0 1 -507
+box -683 -1373 683 1373
+use sky130_fd_pr__pfet_01v8_X9CJL2  sky130_fd_pr__pfet_01v8_X9CJL2_0
+timestamp 1647868710
+transform 1 0 43 0 1 1279
+box -363 -419 363 419
+<< end >>
diff --git "a/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag" "b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag"
new file mode 100644
index 0000000..8d0f695
--- /dev/null
+++ "b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646406276
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
new file mode 100644
index 0000000..7189fe2
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n3100#" "c2_n3251_n3000#" 71399.6
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git a/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..c2006ac
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.ext b/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.ext
new file mode 100644
index 0000000..779cbc0
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.ext
@@ -0,0 +1,82 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_229_n1127#" 982 174.991 229 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n1127#" 982 81.0238 -29 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n1127#" 982 175.535 -287 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n1215#" 320 427.495 29 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n1215#" 320 435.156 -229 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_229_n509#" 982 172.624 229 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n509#" 982 78.6564 -29 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n509#" 982 173.168 -287 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n597#" 320 328.124 29 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n597#" 320 335.785 -229 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_229_109#" 982 175.609 229 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_109#" 982 81.6419 -29 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_109#" 982 176.153 -287 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_21#" 320 348.795 29 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_21#" 320 356.456 -229 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_229_727#" 982 182.326 229 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_727#" 982 88.3584 -29 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_727#" 982 182.87 -287 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_639#" 320 478.53 29 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_639#" 320 486.191 -229 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n389_n1301#" 0 0 -389 -1301 ppd 0 0 0 0 0 0 0 0 0 0 225216 13248 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225216 13248 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n1127#" "a_n287_n1127#" 120.623
+cap "a_n287_727#" "a_n287_109#" 12.3196
+cap "a_229_n1127#" "a_n287_n1127#" 55.1055
+cap "a_229_n1127#" "a_229_727#" 1.82577
+cap "a_n29_727#" "a_229_727#" 120.623
+cap "a_229_727#" "a_229_109#" 12.3196
+cap "a_n229_n597#" "a_29_n597#" 135.85
+cap "a_29_n1215#" "a_29_639#" 12.3935
+cap "a_n229_639#" "a_n229_n1215#" 12.3935
+cap "a_n229_n597#" "a_n229_21#" 326.516
+cap "a_n287_727#" "a_n287_n509#" 3.18014
+cap "a_n287_109#" "a_n287_n509#" 12.3196
+cap "a_229_n509#" "a_n287_n509#" 55.1055
+cap "a_29_n597#" "a_29_639#" 44.8879
+cap "a_229_n509#" "a_229_n1127#" 12.3196
+cap "a_n287_727#" "a_n29_727#" 120.623
+cap "a_n29_n509#" "a_229_n509#" 120.623
+cap "a_n287_109#" "a_229_109#" 55.1055
+cap "a_229_n509#" "a_229_109#" 12.3196
+cap "a_n229_n597#" "a_n229_639#" 44.8879
+cap "a_n287_109#" "a_n29_109#" 120.623
+cap "a_29_21#" "a_29_n1215#" 44.8879
+cap "a_n229_639#" "a_n229_21#" 326.516
+cap "a_n287_727#" "a_n287_n1127#" 1.82577
+cap "a_n287_109#" "a_n287_n1127#" 3.18014
+cap "a_n287_727#" "a_229_727#" 55.1055
+cap "a_229_n509#" "a_229_727#" 3.18014
+cap "a_n29_n509#" "a_n287_n509#" 120.623
+cap "a_29_n1215#" "a_n229_n1215#" 135.85
+cap "a_229_n1127#" "a_n29_n1127#" 120.623
+cap "a_n229_639#" "a_29_639#" 135.85
+cap "a_29_21#" "a_29_n597#" 326.516
+cap "a_n29_n509#" "a_n29_n1127#" 12.3196
+cap "a_n29_727#" "a_n29_n1127#" 1.82577
+cap "a_229_n1127#" "a_229_109#" 3.18014
+cap "a_n29_n509#" "a_n29_727#" 3.18014
+cap "a_29_21#" "a_n229_21#" 135.85
+cap "a_n229_n597#" "a_n229_n1215#" 326.516
+cap "a_n29_n1127#" "a_n29_109#" 3.18014
+cap "a_n287_n1127#" "a_n287_n509#" 12.3196
+cap "a_n29_n509#" "a_n29_109#" 12.3196
+cap "a_n29_727#" "a_n29_109#" 12.3196
+cap "a_29_21#" "a_29_639#" 326.516
+cap "a_229_109#" "a_n29_109#" 120.623
+cap "a_n229_n1215#" "a_n229_21#" 44.8879
+cap "a_29_n597#" "a_29_n1215#" 326.516
+device msubckt sky130_fd_pr__nfet_01v8 29 -1127 30 -1126 l=200 w=400 "a_n389_n1301#" "a_29_n1215#" 400 0 "a_n29_n1127#" 400 0 "a_229_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -229 -1127 -228 -1126 l=200 w=400 "a_n389_n1301#" "a_n229_n1215#" 400 0 "a_n287_n1127#" 400 0 "a_n29_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -509 30 -508 l=200 w=400 "a_n389_n1301#" "a_29_n597#" 400 0 "a_n29_n509#" 400 0 "a_229_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -229 -509 -228 -508 l=200 w=400 "a_n389_n1301#" "a_n229_n597#" 400 0 "a_n287_n509#" 400 0 "a_n29_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 109 30 110 l=200 w=400 "a_n389_n1301#" "a_29_21#" 400 0 "a_n29_109#" 400 0 "a_229_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -229 109 -228 110 l=200 w=400 "a_n389_n1301#" "a_n229_21#" 400 0 "a_n287_109#" 400 0 "a_n29_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 727 30 728 l=200 w=400 "a_n389_n1301#" "a_29_639#" 400 0 "a_n29_727#" 400 0 "a_229_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -229 727 -228 728 l=200 w=400 "a_n389_n1301#" "a_n229_639#" 400 0 "a_n287_727#" 400 0 "a_n29_727#" 400 0
diff --git a/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.mag b/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.mag
new file mode 100644
index 0000000..8d4d173
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__nfet_01v8_M8466X.mag
@@ -0,0 +1,386 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -425 -1337 425 1337
+<< nmos >>
+rect -229 727 -29 1127
+rect 29 727 229 1127
+rect -229 109 -29 509
+rect 29 109 229 509
+rect -229 -509 -29 -109
+rect 29 -509 229 -109
+rect -229 -1127 -29 -727
+rect 29 -1127 229 -727
+<< ndiff >>
+rect -287 1115 -229 1127
+rect -287 739 -275 1115
+rect -241 739 -229 1115
+rect -287 727 -229 739
+rect -29 1115 29 1127
+rect -29 739 -17 1115
+rect 17 739 29 1115
+rect -29 727 29 739
+rect 229 1115 287 1127
+rect 229 739 241 1115
+rect 275 739 287 1115
+rect 229 727 287 739
+rect -287 497 -229 509
+rect -287 121 -275 497
+rect -241 121 -229 497
+rect -287 109 -229 121
+rect -29 497 29 509
+rect -29 121 -17 497
+rect 17 121 29 497
+rect -29 109 29 121
+rect 229 497 287 509
+rect 229 121 241 497
+rect 275 121 287 497
+rect 229 109 287 121
+rect -287 -121 -229 -109
+rect -287 -497 -275 -121
+rect -241 -497 -229 -121
+rect -287 -509 -229 -497
+rect -29 -121 29 -109
+rect -29 -497 -17 -121
+rect 17 -497 29 -121
+rect -29 -509 29 -497
+rect 229 -121 287 -109
+rect 229 -497 241 -121
+rect 275 -497 287 -121
+rect 229 -509 287 -497
+rect -287 -739 -229 -727
+rect -287 -1115 -275 -739
+rect -241 -1115 -229 -739
+rect -287 -1127 -229 -1115
+rect -29 -739 29 -727
+rect -29 -1115 -17 -739
+rect 17 -1115 29 -739
+rect -29 -1127 29 -1115
+rect 229 -739 287 -727
+rect 229 -1115 241 -739
+rect 275 -1115 287 -739
+rect 229 -1127 287 -1115
+<< ndiffc >>
+rect -275 739 -241 1115
+rect -17 739 17 1115
+rect 241 739 275 1115
+rect -275 121 -241 497
+rect -17 121 17 497
+rect 241 121 275 497
+rect -275 -497 -241 -121
+rect -17 -497 17 -121
+rect 241 -497 275 -121
+rect -275 -1115 -241 -739
+rect -17 -1115 17 -739
+rect 241 -1115 275 -739
+<< psubdiff >>
+rect -389 1267 -293 1301
+rect 293 1267 389 1301
+rect -389 1205 -355 1267
+rect 355 1205 389 1267
+rect -389 -1267 -355 -1205
+rect 355 -1267 389 -1205
+rect -389 -1301 -293 -1267
+rect 293 -1301 389 -1267
+<< psubdiffcont >>
+rect -293 1267 293 1301
+rect -389 -1205 -355 1205
+rect 355 -1205 389 1205
+rect -293 -1301 293 -1267
+<< poly >>
+rect -229 1199 -29 1215
+rect -229 1165 -213 1199
+rect -45 1165 -29 1199
+rect -229 1127 -29 1165
+rect 29 1199 229 1215
+rect 29 1165 45 1199
+rect 213 1165 229 1199
+rect 29 1127 229 1165
+rect -229 689 -29 727
+rect -229 655 -213 689
+rect -45 655 -29 689
+rect -229 639 -29 655
+rect 29 689 229 727
+rect 29 655 45 689
+rect 213 655 229 689
+rect 29 639 229 655
+rect -229 581 -29 597
+rect -229 547 -213 581
+rect -45 547 -29 581
+rect -229 509 -29 547
+rect 29 581 229 597
+rect 29 547 45 581
+rect 213 547 229 581
+rect 29 509 229 547
+rect -229 71 -29 109
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect -229 21 -29 37
+rect 29 71 229 109
+rect 29 37 45 71
+rect 213 37 229 71
+rect 29 21 229 37
+rect -229 -37 -29 -21
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect -229 -109 -29 -71
+rect 29 -37 229 -21
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 29 -109 229 -71
+rect -229 -547 -29 -509
+rect -229 -581 -213 -547
+rect -45 -581 -29 -547
+rect -229 -597 -29 -581
+rect 29 -547 229 -509
+rect 29 -581 45 -547
+rect 213 -581 229 -547
+rect 29 -597 229 -581
+rect -229 -655 -29 -639
+rect -229 -689 -213 -655
+rect -45 -689 -29 -655
+rect -229 -727 -29 -689
+rect 29 -655 229 -639
+rect 29 -689 45 -655
+rect 213 -689 229 -655
+rect 29 -727 229 -689
+rect -229 -1165 -29 -1127
+rect -229 -1199 -213 -1165
+rect -45 -1199 -29 -1165
+rect -229 -1215 -29 -1199
+rect 29 -1165 229 -1127
+rect 29 -1199 45 -1165
+rect 213 -1199 229 -1165
+rect 29 -1215 229 -1199
+<< polycont >>
+rect -213 1165 -45 1199
+rect 45 1165 213 1199
+rect -213 655 -45 689
+rect 45 655 213 689
+rect -213 547 -45 581
+rect 45 547 213 581
+rect -213 37 -45 71
+rect 45 37 213 71
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect -213 -581 -45 -547
+rect 45 -581 213 -547
+rect -213 -689 -45 -655
+rect 45 -689 213 -655
+rect -213 -1199 -45 -1165
+rect 45 -1199 213 -1165
+<< locali >>
+rect -389 1267 -293 1301
+rect 293 1267 389 1301
+rect -389 1205 -355 1267
+rect 355 1205 389 1267
+rect -229 1165 -213 1199
+rect -45 1165 -29 1199
+rect 29 1165 45 1199
+rect 213 1165 229 1199
+rect -275 1115 -241 1131
+rect -275 723 -241 739
+rect -17 1115 17 1131
+rect -17 723 17 739
+rect 241 1115 275 1131
+rect 241 723 275 739
+rect -229 655 -213 689
+rect -45 655 -29 689
+rect 29 655 45 689
+rect 213 655 229 689
+rect -229 547 -213 581
+rect -45 547 -29 581
+rect 29 547 45 581
+rect 213 547 229 581
+rect -275 497 -241 513
+rect -275 105 -241 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 241 497 275 513
+rect 241 105 275 121
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 213 37 229 71
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect -275 -121 -241 -105
+rect -275 -513 -241 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 241 -121 275 -105
+rect 241 -513 275 -497
+rect -229 -581 -213 -547
+rect -45 -581 -29 -547
+rect 29 -581 45 -547
+rect 213 -581 229 -547
+rect -229 -689 -213 -655
+rect -45 -689 -29 -655
+rect 29 -689 45 -655
+rect 213 -689 229 -655
+rect -275 -739 -241 -723
+rect -275 -1131 -241 -1115
+rect -17 -739 17 -723
+rect -17 -1131 17 -1115
+rect 241 -739 275 -723
+rect 241 -1131 275 -1115
+rect -229 -1199 -213 -1165
+rect -45 -1199 -29 -1165
+rect 29 -1199 45 -1165
+rect 213 -1199 229 -1165
+rect -389 -1267 -355 -1205
+rect 355 -1267 389 -1205
+rect -389 -1301 -293 -1267
+rect 293 -1301 389 -1267
+<< viali >>
+rect -213 1165 -45 1199
+rect 45 1165 213 1199
+rect -275 739 -241 1115
+rect -17 739 17 1115
+rect 241 739 275 1115
+rect -213 655 -45 689
+rect 45 655 213 689
+rect -213 547 -45 581
+rect 45 547 213 581
+rect -275 121 -241 497
+rect -17 121 17 497
+rect 241 121 275 497
+rect -213 37 -45 71
+rect 45 37 213 71
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect -275 -497 -241 -121
+rect -17 -497 17 -121
+rect 241 -497 275 -121
+rect -213 -581 -45 -547
+rect 45 -581 213 -547
+rect -213 -689 -45 -655
+rect 45 -689 213 -655
+rect -275 -1115 -241 -739
+rect -17 -1115 17 -739
+rect 241 -1115 275 -739
+rect -213 -1199 -45 -1165
+rect 45 -1199 213 -1165
+<< metal1 >>
+rect -225 1199 -33 1205
+rect -225 1165 -213 1199
+rect -45 1165 -33 1199
+rect -225 1159 -33 1165
+rect 33 1199 225 1205
+rect 33 1165 45 1199
+rect 213 1165 225 1199
+rect 33 1159 225 1165
+rect -281 1115 -235 1127
+rect -281 739 -275 1115
+rect -241 739 -235 1115
+rect -281 727 -235 739
+rect -23 1115 23 1127
+rect -23 739 -17 1115
+rect 17 739 23 1115
+rect -23 727 23 739
+rect 235 1115 281 1127
+rect 235 739 241 1115
+rect 275 739 281 1115
+rect 235 727 281 739
+rect -225 689 -33 695
+rect -225 655 -213 689
+rect -45 655 -33 689
+rect -225 649 -33 655
+rect 33 689 225 695
+rect 33 655 45 689
+rect 213 655 225 689
+rect 33 649 225 655
+rect -225 581 -33 587
+rect -225 547 -213 581
+rect -45 547 -33 581
+rect -225 541 -33 547
+rect 33 581 225 587
+rect 33 547 45 581
+rect 213 547 225 581
+rect 33 541 225 547
+rect -281 497 -235 509
+rect -281 121 -275 497
+rect -241 121 -235 497
+rect -281 109 -235 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 235 497 281 509
+rect 235 121 241 497
+rect 275 121 281 497
+rect 235 109 281 121
+rect -225 71 -33 77
+rect -225 37 -213 71
+rect -45 37 -33 71
+rect -225 31 -33 37
+rect 33 71 225 77
+rect 33 37 45 71
+rect 213 37 225 71
+rect 33 31 225 37
+rect -225 -37 -33 -31
+rect -225 -71 -213 -37
+rect -45 -71 -33 -37
+rect -225 -77 -33 -71
+rect 33 -37 225 -31
+rect 33 -71 45 -37
+rect 213 -71 225 -37
+rect 33 -77 225 -71
+rect -281 -121 -235 -109
+rect -281 -497 -275 -121
+rect -241 -497 -235 -121
+rect -281 -509 -235 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 235 -121 281 -109
+rect 235 -497 241 -121
+rect 275 -497 281 -121
+rect 235 -509 281 -497
+rect -225 -547 -33 -541
+rect -225 -581 -213 -547
+rect -45 -581 -33 -547
+rect -225 -587 -33 -581
+rect 33 -547 225 -541
+rect 33 -581 45 -547
+rect 213 -581 225 -547
+rect 33 -587 225 -581
+rect -225 -655 -33 -649
+rect -225 -689 -213 -655
+rect -45 -689 -33 -655
+rect -225 -695 -33 -689
+rect 33 -655 225 -649
+rect 33 -689 45 -655
+rect 213 -689 225 -655
+rect 33 -695 225 -689
+rect -281 -739 -235 -727
+rect -281 -1115 -275 -739
+rect -241 -1115 -235 -739
+rect -281 -1127 -235 -1115
+rect -23 -739 23 -727
+rect -23 -1115 -17 -739
+rect 17 -1115 23 -739
+rect -23 -1127 23 -1115
+rect 235 -739 281 -727
+rect 235 -1115 241 -739
+rect 275 -1115 281 -739
+rect 235 -1127 281 -1115
+rect -225 -1165 -33 -1159
+rect -225 -1199 -213 -1165
+rect -45 -1199 -33 -1165
+rect -225 -1205 -33 -1199
+rect 33 -1165 225 -1159
+rect 33 -1199 45 -1165
+rect 213 -1199 225 -1165
+rect 33 -1205 225 -1199
+<< properties >>
+string FIXED_BBOX -372 -1284 372 1284
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 1 m 4 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.ext b/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.ext
new file mode 100644
index 0000000..d7b7c38
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.ext
@@ -0,0 +1,23 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_69_n200#" 982 204.938 69 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 148.837 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n127_n200#" 982 205.292 -127 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n82_n288#" 653 170.165 -82 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_16_222#" 653 170.165 16 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n229_n374#" 0 0 -229 -374 ppd 0 0 0 0 0 0 0 0 0 0 77384 4552 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77384 4552 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n200#" "a_69_n200#" 462.346
+cap "a_n29_n200#" "a_n82_n288#" 4.2829
+cap "a_n29_n200#" "a_16_222#" 4.2829
+cap "a_n127_n200#" "a_n29_n200#" 462.346
+cap "a_69_n200#" "a_16_222#" 4.2829
+cap "a_n127_n200#" "a_69_n200#" 168.919
+cap "a_16_222#" "a_n82_n288#" 15.9188
+cap "a_n127_n200#" "a_n82_n288#" 4.2829
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=40 w=400 "a_n229_n374#" "a_16_222#" 80 0 "a_n29_n200#" 400 0 "a_69_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -69 -200 -68 -199 l=40 w=400 "a_n229_n374#" "a_n82_n288#" 80 0 "a_n127_n200#" 400 0 "a_n29_n200#" 400 0
diff --git a/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.mag b/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.mag
new file mode 100644
index 0000000..1edf91b
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__nfet_01v8_WS53KN.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect 20 272 78 278
+rect 20 238 32 272
+rect 20 232 78 238
+rect -78 -238 -20 -232
+rect -78 -272 -66 -238
+rect -78 -278 -20 -272
+<< pwell >>
+rect -265 -410 265 410
+<< nmos >>
+rect -69 -200 -29 200
+rect 29 -200 69 200
+<< ndiff >>
+rect -127 188 -69 200
+rect -127 -188 -115 188
+rect -81 -188 -69 188
+rect -127 -200 -69 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 69 188 127 200
+rect 69 -188 81 188
+rect 115 -188 127 188
+rect 69 -200 127 -188
+<< ndiffc >>
+rect -115 -188 -81 188
+rect -17 -188 17 188
+rect 81 -188 115 188
+<< psubdiff >>
+rect -229 340 -133 374
+rect 133 340 229 374
+rect -229 278 -195 340
+rect 195 278 229 340
+rect -229 -340 -195 -278
+rect 195 -340 229 -278
+rect -229 -374 -133 -340
+rect 133 -374 229 -340
+<< psubdiffcont >>
+rect -133 340 133 374
+rect -229 -278 -195 278
+rect 195 -278 229 278
+rect -133 -374 133 -340
+<< poly >>
+rect 16 272 82 288
+rect 16 238 32 272
+rect 66 238 82 272
+rect -69 200 -29 226
+rect 16 222 82 238
+rect 29 200 69 222
+rect -69 -222 -29 -200
+rect -82 -238 -16 -222
+rect 29 -226 69 -200
+rect -82 -272 -66 -238
+rect -32 -272 -16 -238
+rect -82 -288 -16 -272
+<< polycont >>
+rect 32 238 66 272
+rect -66 -272 -32 -238
+<< locali >>
+rect -229 340 -133 374
+rect 133 340 229 374
+rect -229 278 -195 340
+rect 195 278 229 340
+rect 16 238 32 272
+rect 66 238 82 272
+rect -115 188 -81 204
+rect -115 -204 -81 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 81 188 115 204
+rect 81 -204 115 -188
+rect -82 -272 -66 -238
+rect -32 -272 -16 -238
+rect -229 -340 -195 -278
+rect 195 -340 229 -278
+rect -229 -374 -133 -340
+rect 133 -374 229 -340
+<< viali >>
+rect 32 238 66 272
+rect -115 -188 -81 188
+rect -17 -188 17 188
+rect 81 -188 115 188
+rect -66 -272 -32 -238
+<< metal1 >>
+rect 20 272 78 278
+rect 20 238 32 272
+rect 66 238 78 272
+rect 20 232 78 238
+rect -121 188 -75 200
+rect -121 -188 -115 188
+rect -81 -188 -75 188
+rect -121 -200 -75 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 75 188 121 200
+rect 75 -188 81 188
+rect 115 -188 121 188
+rect 75 -200 121 -188
+rect -78 -238 -20 -232
+rect -78 -272 -66 -238
+rect -32 -272 -20 -238
+rect -78 -278 -20 -272
+<< properties >>
+string FIXED_BBOX -212 -357 212 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__nfet_01v8_ZRZL87.mag b/mag/currm/sky130_fd_pr__nfet_01v8_ZRZL87.mag
new file mode 100644
index 0000000..ea12c25
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__nfet_01v8_ZRZL87.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646400034
+<< error_p >>
+rect -78 172 -20 178
+rect 118 172 176 178
+rect -78 138 -66 172
+rect 118 138 130 172
+rect -78 132 -20 138
+rect 118 132 176 138
+rect -176 -138 -118 -132
+rect 20 -138 78 -132
+rect -176 -172 -164 -138
+rect 20 -172 32 -138
+rect -176 -178 -118 -172
+rect 20 -178 78 -172
+<< pwell >>
+rect -363 -310 363 310
+<< nmos >>
+rect -167 -100 -127 100
+rect -69 -100 -29 100
+rect 29 -100 69 100
+rect 127 -100 167 100
+<< ndiff >>
+rect -225 88 -167 100
+rect -225 -88 -213 88
+rect -179 -88 -167 88
+rect -225 -100 -167 -88
+rect -127 88 -69 100
+rect -127 -88 -115 88
+rect -81 -88 -69 88
+rect -127 -100 -69 -88
+rect -29 88 29 100
+rect -29 -88 -17 88
+rect 17 -88 29 88
+rect -29 -100 29 -88
+rect 69 88 127 100
+rect 69 -88 81 88
+rect 115 -88 127 88
+rect 69 -100 127 -88
+rect 167 88 225 100
+rect 167 -88 179 88
+rect 213 -88 225 88
+rect 167 -100 225 -88
+<< ndiffc >>
+rect -213 -88 -179 88
+rect -115 -88 -81 88
+rect -17 -88 17 88
+rect 81 -88 115 88
+rect 179 -88 213 88
+<< psubdiff >>
+rect -327 240 -231 274
+rect 231 240 327 274
+rect -327 178 -293 240
+rect 293 178 327 240
+rect -327 -240 -293 -178
+rect 293 -240 327 -178
+rect -327 -274 -231 -240
+rect 231 -274 327 -240
+<< psubdiffcont >>
+rect -231 240 231 274
+rect -327 -178 -293 178
+rect 293 -178 327 178
+rect -231 -274 231 -240
+<< poly >>
+rect -82 172 -16 188
+rect -82 138 -66 172
+rect -32 138 -16 172
+rect -167 100 -127 126
+rect -82 122 -16 138
+rect 114 172 180 188
+rect 114 138 130 172
+rect 164 138 180 172
+rect -69 100 -29 122
+rect 29 100 69 126
+rect 114 122 180 138
+rect 127 100 167 122
+rect -167 -122 -127 -100
+rect -180 -138 -114 -122
+rect -69 -126 -29 -100
+rect 29 -122 69 -100
+rect -180 -172 -164 -138
+rect -130 -172 -114 -138
+rect -180 -188 -114 -172
+rect 16 -138 82 -122
+rect 127 -126 167 -100
+rect 16 -172 32 -138
+rect 66 -172 82 -138
+rect 16 -188 82 -172
+<< polycont >>
+rect -66 138 -32 172
+rect 130 138 164 172
+rect -164 -172 -130 -138
+rect 32 -172 66 -138
+<< locali >>
+rect -327 240 -231 274
+rect 231 240 327 274
+rect -327 178 -293 240
+rect 293 178 327 240
+rect -82 138 -66 172
+rect -32 138 -16 172
+rect 114 138 130 172
+rect 164 138 180 172
+rect -213 88 -179 104
+rect -213 -104 -179 -88
+rect -115 88 -81 104
+rect -115 -104 -81 -88
+rect -17 88 17 104
+rect -17 -104 17 -88
+rect 81 88 115 104
+rect 81 -104 115 -88
+rect 179 88 213 104
+rect 179 -104 213 -88
+rect -180 -172 -164 -138
+rect -130 -172 -114 -138
+rect 16 -172 32 -138
+rect 66 -172 82 -138
+rect -327 -240 -293 -178
+rect 293 -240 327 -178
+rect -327 -274 -231 -240
+rect 231 -274 327 -240
+<< viali >>
+rect -66 138 -32 172
+rect 130 138 164 172
+rect -213 -88 -179 88
+rect -115 -88 -81 88
+rect -17 -88 17 88
+rect 81 -88 115 88
+rect 179 -88 213 88
+rect -164 -172 -130 -138
+rect 32 -172 66 -138
+<< metal1 >>
+rect -78 172 -20 178
+rect -78 138 -66 172
+rect -32 138 -20 172
+rect -78 132 -20 138
+rect 118 172 176 178
+rect 118 138 130 172
+rect 164 138 176 172
+rect 118 132 176 138
+rect -219 88 -173 100
+rect -219 -88 -213 88
+rect -179 -88 -173 88
+rect -219 -100 -173 -88
+rect -121 88 -75 100
+rect -121 -88 -115 88
+rect -81 -88 -75 88
+rect -121 -100 -75 -88
+rect -23 88 23 100
+rect -23 -88 -17 88
+rect 17 -88 23 88
+rect -23 -100 23 -88
+rect 75 88 121 100
+rect 75 -88 81 88
+rect 115 -88 121 88
+rect 75 -100 121 -88
+rect 173 88 219 100
+rect 173 -88 179 88
+rect 213 -88 219 88
+rect 173 -100 219 -88
+rect -176 -138 -118 -132
+rect -176 -172 -164 -138
+rect -130 -172 -118 -138
+rect -176 -178 -118 -172
+rect 20 -138 78 -132
+rect 20 -172 32 -138
+rect 66 -172 78 -138
+rect 20 -178 78 -172
+<< properties >>
+string FIXED_BBOX -310 -257 310 257
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 1 l 0.2 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_3HMKL2.mag b/mag/currm/sky130_fd_pr__pfet_01v8_3HMKL2.mag
new file mode 100644
index 0000000..7674131
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_3HMKL2.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646400034
+<< error_p >>
+rect -78 181 -20 187
+rect 118 181 176 187
+rect -78 147 -66 181
+rect 118 147 130 181
+rect -78 141 -20 147
+rect 118 141 176 147
+rect -176 -147 -118 -141
+rect 20 -147 78 -141
+rect -176 -181 -164 -147
+rect 20 -181 32 -147
+rect -176 -187 -118 -181
+rect 20 -187 78 -181
+<< nwell >>
+rect -363 -319 363 319
+<< pmos >>
+rect -167 -100 -127 100
+rect -69 -100 -29 100
+rect 29 -100 69 100
+rect 127 -100 167 100
+<< pdiff >>
+rect -225 88 -167 100
+rect -225 -88 -213 88
+rect -179 -88 -167 88
+rect -225 -100 -167 -88
+rect -127 88 -69 100
+rect -127 -88 -115 88
+rect -81 -88 -69 88
+rect -127 -100 -69 -88
+rect -29 88 29 100
+rect -29 -88 -17 88
+rect 17 -88 29 88
+rect -29 -100 29 -88
+rect 69 88 127 100
+rect 69 -88 81 88
+rect 115 -88 127 88
+rect 69 -100 127 -88
+rect 167 88 225 100
+rect 167 -88 179 88
+rect 213 -88 225 88
+rect 167 -100 225 -88
+<< pdiffc >>
+rect -213 -88 -179 88
+rect -115 -88 -81 88
+rect -17 -88 17 88
+rect 81 -88 115 88
+rect 179 -88 213 88
+<< nsubdiff >>
+rect -327 249 -231 283
+rect 231 249 327 283
+rect -327 187 -293 249
+rect 293 187 327 249
+rect -327 -249 -293 -187
+rect 293 -249 327 -187
+rect -327 -283 -231 -249
+rect 231 -283 327 -249
+<< nsubdiffcont >>
+rect -231 249 231 283
+rect -327 -187 -293 187
+rect 293 -187 327 187
+rect -231 -283 231 -249
+<< poly >>
+rect -82 181 -16 197
+rect -82 147 -66 181
+rect -32 147 -16 181
+rect -82 131 -16 147
+rect 114 181 180 197
+rect 114 147 130 181
+rect 164 147 180 181
+rect 114 131 180 147
+rect -167 100 -127 126
+rect -69 100 -29 131
+rect 29 100 69 126
+rect 127 100 167 131
+rect -167 -131 -127 -100
+rect -69 -126 -29 -100
+rect 29 -131 69 -100
+rect 127 -126 167 -100
+rect -180 -147 -114 -131
+rect -180 -181 -164 -147
+rect -130 -181 -114 -147
+rect -180 -197 -114 -181
+rect 16 -147 82 -131
+rect 16 -181 32 -147
+rect 66 -181 82 -147
+rect 16 -197 82 -181
+<< polycont >>
+rect -66 147 -32 181
+rect 130 147 164 181
+rect -164 -181 -130 -147
+rect 32 -181 66 -147
+<< locali >>
+rect -327 249 -231 283
+rect 231 249 327 283
+rect -327 187 -293 249
+rect 293 187 327 249
+rect -82 147 -66 181
+rect -32 147 -16 181
+rect 114 147 130 181
+rect 164 147 180 181
+rect -213 88 -179 104
+rect -213 -104 -179 -88
+rect -115 88 -81 104
+rect -115 -104 -81 -88
+rect -17 88 17 104
+rect -17 -104 17 -88
+rect 81 88 115 104
+rect 81 -104 115 -88
+rect 179 88 213 104
+rect 179 -104 213 -88
+rect -180 -181 -164 -147
+rect -130 -181 -114 -147
+rect 16 -181 32 -147
+rect 66 -181 82 -147
+rect -327 -249 -293 -187
+rect 293 -249 327 -187
+rect -327 -283 -231 -249
+rect 231 -283 327 -249
+<< viali >>
+rect -66 147 -32 181
+rect 130 147 164 181
+rect -213 -88 -179 88
+rect -115 -88 -81 88
+rect -17 -88 17 88
+rect 81 -88 115 88
+rect 179 -88 213 88
+rect -164 -181 -130 -147
+rect 32 -181 66 -147
+<< metal1 >>
+rect -78 181 -20 187
+rect -78 147 -66 181
+rect -32 147 -20 181
+rect -78 141 -20 147
+rect 118 181 176 187
+rect 118 147 130 181
+rect 164 147 176 181
+rect 118 141 176 147
+rect -219 88 -173 100
+rect -219 -88 -213 88
+rect -179 -88 -173 88
+rect -219 -100 -173 -88
+rect -121 88 -75 100
+rect -121 -88 -115 88
+rect -81 -88 -75 88
+rect -121 -100 -75 -88
+rect -23 88 23 100
+rect -23 -88 -17 88
+rect 17 -88 23 88
+rect -23 -100 23 -88
+rect 75 88 121 100
+rect 75 -88 81 88
+rect 115 -88 121 88
+rect 75 -100 121 -88
+rect 173 88 219 100
+rect 173 -88 179 88
+rect 213 -88 219 88
+rect 173 -100 219 -88
+rect -176 -147 -118 -141
+rect -176 -181 -164 -147
+rect -130 -181 -118 -147
+rect -176 -187 -118 -181
+rect 20 -147 78 -141
+rect 20 -181 32 -147
+rect 66 -181 78 -147
+rect 20 -187 78 -181
+<< properties >>
+string FIXED_BBOX -310 -266 310 266
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 1 l 0.2 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_J2YKMP.mag b/mag/currm/sky130_fd_pr__pfet_01v8_J2YKMP.mag
new file mode 100644
index 0000000..b4663b6
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_J2YKMP.mag
@@ -0,0 +1,202 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646400034
+<< nwell >>
+rect -683 -619 683 619
+<< pmos >>
+rect -487 -400 -287 400
+rect -229 -400 -29 400
+rect 29 -400 229 400
+rect 287 -400 487 400
+<< pdiff >>
+rect -545 388 -487 400
+rect -545 -388 -533 388
+rect -499 -388 -487 388
+rect -545 -400 -487 -388
+rect -287 388 -229 400
+rect -287 -388 -275 388
+rect -241 -388 -229 388
+rect -287 -400 -229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 229 388 287 400
+rect 229 -388 241 388
+rect 275 -388 287 388
+rect 229 -400 287 -388
+rect 487 388 545 400
+rect 487 -388 499 388
+rect 533 -388 545 388
+rect 487 -400 545 -388
+<< pdiffc >>
+rect -533 -388 -499 388
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+rect 499 -388 533 388
+<< nsubdiff >>
+rect -647 549 -551 583
+rect 551 549 647 583
+rect -647 487 -613 549
+rect 613 487 647 549
+rect -647 -549 -613 -487
+rect 613 -549 647 -487
+rect -647 -583 -551 -549
+rect 551 -583 647 -549
+<< nsubdiffcont >>
+rect -551 549 551 583
+rect -647 -487 -613 487
+rect 613 -487 647 487
+rect -551 -583 551 -549
+<< poly >>
+rect -487 481 -287 497
+rect -487 447 -471 481
+rect -303 447 -287 481
+rect -487 400 -287 447
+rect -229 481 -29 497
+rect -229 447 -213 481
+rect -45 447 -29 481
+rect -229 400 -29 447
+rect 29 481 229 497
+rect 29 447 45 481
+rect 213 447 229 481
+rect 29 400 229 447
+rect 287 481 487 497
+rect 287 447 303 481
+rect 471 447 487 481
+rect 287 400 487 447
+rect -487 -447 -287 -400
+rect -487 -481 -471 -447
+rect -303 -481 -287 -447
+rect -487 -497 -287 -481
+rect -229 -447 -29 -400
+rect -229 -481 -213 -447
+rect -45 -481 -29 -447
+rect -229 -497 -29 -481
+rect 29 -447 229 -400
+rect 29 -481 45 -447
+rect 213 -481 229 -447
+rect 29 -497 229 -481
+rect 287 -447 487 -400
+rect 287 -481 303 -447
+rect 471 -481 487 -447
+rect 287 -497 487 -481
+<< polycont >>
+rect -471 447 -303 481
+rect -213 447 -45 481
+rect 45 447 213 481
+rect 303 447 471 481
+rect -471 -481 -303 -447
+rect -213 -481 -45 -447
+rect 45 -481 213 -447
+rect 303 -481 471 -447
+<< locali >>
+rect -647 549 -551 583
+rect 551 549 647 583
+rect -647 487 -613 549
+rect 613 487 647 549
+rect -487 447 -471 481
+rect -303 447 -287 481
+rect -229 447 -213 481
+rect -45 447 -29 481
+rect 29 447 45 481
+rect 213 447 229 481
+rect 287 447 303 481
+rect 471 447 487 481
+rect -533 388 -499 404
+rect -533 -404 -499 -388
+rect -275 388 -241 404
+rect -275 -404 -241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 241 388 275 404
+rect 241 -404 275 -388
+rect 499 388 533 404
+rect 499 -404 533 -388
+rect -487 -481 -471 -447
+rect -303 -481 -287 -447
+rect -229 -481 -213 -447
+rect -45 -481 -29 -447
+rect 29 -481 45 -447
+rect 213 -481 229 -447
+rect 287 -481 303 -447
+rect 471 -481 487 -447
+rect -647 -549 -613 -487
+rect 613 -549 647 -487
+rect -647 -583 -551 -549
+rect 551 -583 647 -549
+<< viali >>
+rect -471 447 -303 481
+rect -213 447 -45 481
+rect 45 447 213 481
+rect 303 447 471 481
+rect -533 -388 -499 388
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+rect 499 -388 533 388
+rect -471 -481 -303 -447
+rect -213 -481 -45 -447
+rect 45 -481 213 -447
+rect 303 -481 471 -447
+<< metal1 >>
+rect -483 481 -291 487
+rect -483 447 -471 481
+rect -303 447 -291 481
+rect -483 441 -291 447
+rect -225 481 -33 487
+rect -225 447 -213 481
+rect -45 447 -33 481
+rect -225 441 -33 447
+rect 33 481 225 487
+rect 33 447 45 481
+rect 213 447 225 481
+rect 33 441 225 447
+rect 291 481 483 487
+rect 291 447 303 481
+rect 471 447 483 481
+rect 291 441 483 447
+rect -539 388 -493 400
+rect -539 -388 -533 388
+rect -499 -388 -493 388
+rect -539 -400 -493 -388
+rect -281 388 -235 400
+rect -281 -388 -275 388
+rect -241 -388 -235 388
+rect -281 -400 -235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 235 388 281 400
+rect 235 -388 241 388
+rect 275 -388 281 388
+rect 235 -400 281 -388
+rect 493 388 539 400
+rect 493 -388 499 388
+rect 533 -388 539 388
+rect 493 -400 539 -388
+rect -483 -447 -291 -441
+rect -483 -481 -471 -447
+rect -303 -481 -291 -447
+rect -483 -487 -291 -481
+rect -225 -447 -33 -441
+rect -225 -481 -213 -447
+rect -45 -481 -33 -447
+rect -225 -487 -33 -481
+rect 33 -447 225 -441
+rect 33 -481 45 -447
+rect 213 -481 225 -447
+rect 33 -487 225 -481
+rect 291 -447 483 -441
+rect 291 -481 303 -447
+rect 471 -481 483 -447
+rect 291 -487 483 -481
+<< properties >>
+string FIXED_BBOX -630 -566 630 566
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 1 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.ext b/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.ext
new file mode 100644
index 0000000..25c8333
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.ext
@@ -0,0 +1,215 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_487_n1154#" 1513 0 487 -1154 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_229_n1154#" 1513 0 229 -1154 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n1154#" 1513 0 -29 -1154 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n1154#" 1513 0 -287 -1154 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n545_n1154#" 1513 0 -545 -1154 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n1251#" 324 0 287 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n1251#" 324 0 29 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n1251#" 324 0 -229 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_n1251#" 324 0 -487 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_487_n518#" 1513 0 487 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_229_n518#" 1513 0 229 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n518#" 1513 0 -29 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n518#" 1513 0 -287 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n545_n518#" 1513 0 -545 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n615#" 324 0 287 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n615#" 324 0 29 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n615#" 324 0 -229 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_n615#" 324 0 -487 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_487_118#" 1513 0 487 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_229_118#" 1513 0 229 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_118#" 1513 0 -29 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_118#" 1513 0 -287 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n545_118#" 1513 0 -545 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_21#" 324 0 287 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_21#" 324 0 29 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_21#" 324 0 -229 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_21#" 324 0 -487 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_487_754#" 1513 0 487 754 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_229_754#" 1513 0 229 754 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_754#" 1513 0 -29 754 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_754#" 1513 0 -287 754 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n545_754#" 1513 0 -545 754 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_657#" 324 0 287 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_657#" 324 0 29 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_657#" 324 0 -229 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_657#" 324 0 -487 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n683_n1373#" 32110 11253.1 -683 -1373 nw 0 0 0 0 3751036 8224 0 0 265200 15600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 265200 15600 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_229_118#" "a_n545_118#" 35.7126
+cap "a_n287_n518#" "a_487_n518#" 35.7126
+cap "w_n683_n1373#" "a_n29_n1154#" 51.9181
+cap "a_487_754#" "a_n29_754#" 55.1055
+cap "a_n487_n1251#" "a_287_n1251#" 14.8957
+cap "a_229_118#" "w_n683_n1373#" 61.4067
+cap "a_229_n1154#" "a_n29_n1154#" 120.623
+cap "a_29_n615#" "a_287_n615#" 141.126
+cap "a_n229_21#" "a_n487_21#" 141.126
+cap "a_n29_754#" "a_n29_118#" 11.3678
+cap "a_n545_118#" "a_n545_754#" 11.3678
+cap "a_n229_21#" "a_n229_n615#" 324.813
+cap "a_n29_754#" "a_229_754#" 120.623
+cap "a_n229_n1251#" "a_n229_657#" 12.0589
+cap "a_n229_n615#" "a_287_n615#" 26.9398
+cap "a_229_118#" "a_229_n1154#" 3.04841
+cap "a_487_n518#" "w_n683_n1373#" 163.994
+cap "a_n287_n1154#" "a_n545_n1154#" 120.623
+cap "a_n287_n518#" "w_n683_n1373#" 59.1798
+cap "a_n229_n1251#" "w_n683_n1373#" 299.248
+cap "a_n29_n518#" "a_n545_n518#" 55.1055
+cap "a_229_n518#" "a_229_118#" 11.3678
+cap "a_n545_754#" "w_n683_n1373#" 174.201
+cap "a_n487_657#" "a_n229_657#" 141.126
+cap "a_n545_118#" "w_n683_n1373#" 167.991
+cap "a_n487_657#" "w_n683_n1373#" 425.93
+cap "a_487_n518#" "a_229_n518#" 120.623
+cap "a_n229_657#" "w_n683_n1373#" 350.765
+cap "a_n287_n518#" "a_229_n518#" 55.1055
+cap "a_29_657#" "a_n487_657#" 26.9398
+cap "a_n29_754#" "a_n29_n518#" 3.04841
+cap "a_487_n1154#" "a_n545_n1154#" 26.4165
+cap "a_29_21#" "a_29_n615#" 324.813
+cap "a_287_n1251#" "a_29_n1251#" 141.126
+cap "a_29_657#" "a_n229_657#" 141.126
+cap "a_n487_21#" "a_29_21#" 26.9398
+cap "w_n683_n1373#" "a_229_n1154#" 60.3895
+cap "a_n487_n1251#" "a_n487_21#" 43.6567
+cap "a_29_657#" "w_n683_n1373#" 334.617
+cap "a_287_21#" "w_n683_n1373#" 258.034
+cap "a_229_n518#" "w_n683_n1373#" 58.4996
+cap "a_n487_657#" "a_287_657#" 14.8957
+cap "a_n545_n1154#" "a_n545_n518#" 11.3678
+cap "a_487_118#" "a_229_118#" 120.623
+cap "a_n287_n518#" "a_n287_754#" 3.04841
+cap "a_n229_657#" "a_287_657#" 26.9398
+cap "a_n287_n1154#" "a_n29_n1154#" 120.623
+cap "a_n545_754#" "a_n287_754#" 120.623
+cap "a_29_n615#" "a_n229_n615#" 141.126
+cap "a_229_n518#" "a_229_n1154#" 11.3678
+cap "a_n29_118#" "a_n29_n1154#" 3.04841
+cap "a_287_657#" "w_n683_n1373#" 387.74
+cap "a_n487_657#" "a_n487_n615#" 43.6567
+cap "a_487_n518#" "a_487_118#" 11.3678
+cap "a_229_118#" "a_n29_118#" 120.623
+cap "a_n287_118#" "a_229_118#" 55.1055
+cap "a_29_21#" "a_29_n1251#" 43.6567
+cap "a_229_754#" "a_229_118#" 11.3678
+cap "a_n487_n1251#" "a_29_n1251#" 26.9398
+cap "a_487_754#" "a_487_n518#" 3.04841
+cap "a_29_657#" "a_287_657#" 141.126
+cap "a_n287_754#" "w_n683_n1373#" 68.2966
+cap "a_287_21#" "a_287_657#" 324.813
+cap "a_487_754#" "a_n545_754#" 26.4165
+cap "a_487_118#" "a_n545_118#" 26.4165
+cap "a_n487_n615#" "w_n683_n1373#" 275.68
+cap "a_n287_n518#" "a_n287_n1154#" 11.3678
+cap "a_487_n1154#" "a_n29_n1154#" 55.1055
+cap "a_n287_118#" "a_n287_n518#" 11.3678
+cap "a_n229_n1251#" "a_n229_21#" 43.6567
+cap "a_29_n615#" "a_29_n1251#" 324.813
+cap "a_229_754#" "a_n545_754#" 35.7126
+cap "a_487_118#" "w_n683_n1373#" 166.902
+cap "a_n29_n518#" "a_n29_n1154#" 11.3678
+cap "a_n545_118#" "a_n29_118#" 55.1055
+cap "a_n287_118#" "a_n545_118#" 120.623
+cap "a_n229_n1251#" "a_287_n1251#" 26.9398
+cap "a_487_754#" "w_n683_n1373#" 173.111
+cap "a_n229_21#" "a_n229_657#" 324.813
+cap "a_n287_n1154#" "w_n683_n1373#" 61.0698
+cap "a_487_n1154#" "a_487_n518#" 11.3678
+cap "a_n29_118#" "w_n683_n1373#" 52.9352
+cap "a_n287_118#" "w_n683_n1373#" 62.0869
+cap "a_n229_21#" "w_n683_n1373#" 221.059
+cap "a_229_754#" "w_n683_n1373#" 67.6163
+cap "a_287_n615#" "w_n683_n1373#" 237.489
+cap "a_n287_n1154#" "a_229_n1154#" 55.1055
+cap "a_487_n518#" "a_n29_n518#" 55.1055
+cap "a_287_n1251#" "w_n683_n1373#" 336.223
+cap "a_n287_n518#" "a_n29_n518#" 120.623
+cap "a_229_754#" "a_229_n1154#" 1.76026
+cap "a_n229_21#" "a_287_21#" 26.9398
+cap "a_487_n518#" "a_n545_n518#" 26.4165
+cap "a_n29_754#" "a_n29_n1154#" 1.76026
+cap "a_229_n518#" "a_229_754#" 3.04841
+cap "a_287_21#" "a_287_n615#" 324.813
+cap "a_n287_n518#" "a_n545_n518#" 120.623
+cap "a_487_n1154#" "w_n683_n1373#" 165.884
+cap "a_n545_754#" "a_n545_n518#" 3.04841
+cap "a_n487_n1251#" "a_n229_n1251#" 141.126
+cap "a_287_n1251#" "a_287_21#" 43.6567
+cap "a_n545_n1154#" "a_n29_n1154#" 55.1055
+cap "a_n545_118#" "a_n545_n518#" 11.3678
+cap "a_n29_n518#" "w_n683_n1373#" 50.0281
+cap "a_n487_n1251#" "a_n487_657#" 12.0589
+cap "a_487_n1154#" "a_229_n1154#" 120.623
+cap "a_287_n615#" "a_287_657#" 43.6567
+cap "a_487_754#" "a_n287_754#" 35.7126
+cap "a_287_n1251#" "a_287_657#" 12.0589
+cap "a_29_21#" "w_n683_n1373#" 204.912
+cap "a_n545_n518#" "w_n683_n1373#" 165.084
+cap "a_n287_n1154#" "a_n287_754#" 1.76026
+cap "a_n229_n1251#" "a_n229_n615#" 324.813
+cap "a_n29_754#" "a_n545_754#" 55.1055
+cap "a_n487_n1251#" "w_n683_n1373#" 374.414
+cap "a_n287_118#" "a_n287_754#" 11.3678
+cap "a_229_754#" "a_n287_754#" 55.1055
+cap "a_n487_21#" "a_n487_657#" 324.813
+cap "a_229_n518#" "a_n29_n518#" 120.623
+cap "a_487_754#" "a_487_118#" 11.3678
+cap "a_n487_n615#" "a_287_n615#" 14.8957
+cap "a_29_657#" "a_29_21#" 324.813
+cap "a_29_21#" "a_287_21#" 141.126
+cap "a_n545_754#" "a_n545_n1154#" 1.76026
+cap "a_n229_657#" "a_n229_n615#" 43.6567
+cap "a_29_n615#" "w_n683_n1373#" 184.367
+cap "a_229_n518#" "a_n545_n518#" 35.7126
+cap "a_487_118#" "a_n29_118#" 55.1055
+cap "a_n287_118#" "a_487_118#" 35.7126
+cap "a_n487_21#" "w_n683_n1373#" 296.225
+cap "a_n545_118#" "a_n545_n1154#" 3.04841
+cap "a_n29_754#" "w_n683_n1373#" 59.1448
+cap "a_n229_n615#" "w_n683_n1373#" 200.515
+cap "a_487_754#" "a_229_754#" 120.623
+cap "a_29_657#" "a_29_n615#" 43.6567
+cap "a_n229_n1251#" "a_29_n1251#" 141.126
+cap "a_n287_118#" "a_n287_n1154#" 3.04841
+cap "a_n287_118#" "a_n29_118#" 120.623
+cap "a_n545_n1154#" "w_n683_n1373#" 166.974
+cap "a_n487_21#" "a_287_21#" 14.8957
+cap "a_487_n1154#" "a_487_118#" 3.04841
+cap "a_n545_n1154#" "a_229_n1154#" 35.7126
+cap "a_487_n1154#" "a_487_754#" 1.76026
+cap "a_287_n1251#" "a_287_n615#" 324.813
+cap "a_n487_n1251#" "a_n487_n615#" 324.813
+cap "a_29_n1251#" "w_n683_n1373#" 283.101
+cap "a_487_n1154#" "a_n287_n1154#" 35.7126
+cap "a_29_657#" "a_29_n1251#" 12.0589
+cap "a_n487_n615#" "a_29_n615#" 26.9398
+cap "a_n29_n518#" "a_n29_118#" 11.3678
+cap "a_n29_754#" "a_n287_754#" 120.623
+cap "a_n487_21#" "a_n487_n615#" 324.813
+cap "a_n487_n615#" "a_n229_n615#" 141.126
+cap "a_n229_21#" "a_29_21#" 141.126
+device msubckt sky130_fd_pr__pfet_01v8 287 -1154 288 -1153 l=200 w=400 "w_n683_n1373#" "a_287_n1251#" 400 0 "a_229_n1154#" 400 0 "a_487_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -1154 30 -1153 l=200 w=400 "w_n683_n1373#" "a_29_n1251#" 400 0 "a_n29_n1154#" 400 0 "a_229_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -229 -1154 -228 -1153 l=200 w=400 "w_n683_n1373#" "a_n229_n1251#" 400 0 "a_n287_n1154#" 400 0 "a_n29_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -487 -1154 -486 -1153 l=200 w=400 "w_n683_n1373#" "a_n487_n1251#" 400 0 "a_n545_n1154#" 400 0 "a_n287_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 287 -518 288 -517 l=200 w=400 "w_n683_n1373#" "a_287_n615#" 400 0 "a_229_n518#" 400 0 "a_487_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -518 30 -517 l=200 w=400 "w_n683_n1373#" "a_29_n615#" 400 0 "a_n29_n518#" 400 0 "a_229_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -229 -518 -228 -517 l=200 w=400 "w_n683_n1373#" "a_n229_n615#" 400 0 "a_n287_n518#" 400 0 "a_n29_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -487 -518 -486 -517 l=200 w=400 "w_n683_n1373#" "a_n487_n615#" 400 0 "a_n545_n518#" 400 0 "a_n287_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 287 118 288 119 l=200 w=400 "w_n683_n1373#" "a_287_21#" 400 0 "a_229_118#" 400 0 "a_487_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 118 30 119 l=200 w=400 "w_n683_n1373#" "a_29_21#" 400 0 "a_n29_118#" 400 0 "a_229_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -229 118 -228 119 l=200 w=400 "w_n683_n1373#" "a_n229_21#" 400 0 "a_n287_118#" 400 0 "a_n29_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -487 118 -486 119 l=200 w=400 "w_n683_n1373#" "a_n487_21#" 400 0 "a_n545_118#" 400 0 "a_n287_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 287 754 288 755 l=200 w=400 "w_n683_n1373#" "a_287_657#" 400 0 "a_229_754#" 400 0 "a_487_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 754 30 755 l=200 w=400 "w_n683_n1373#" "a_29_657#" 400 0 "a_n29_754#" 400 0 "a_229_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -229 754 -228 755 l=200 w=400 "w_n683_n1373#" "a_n229_657#" 400 0 "a_n287_754#" 400 0 "a_n29_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -487 754 -486 755 l=200 w=400 "w_n683_n1373#" "a_n487_657#" 400 0 "a_n545_754#" 400 0 "a_n287_754#" 400 0
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.mag b/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.mag
new file mode 100644
index 0000000..7cbc545
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_LXX5YL.mag
@@ -0,0 +1,682 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -683 -1373 683 1373
+<< pmos >>
+rect -487 754 -287 1154
+rect -229 754 -29 1154
+rect 29 754 229 1154
+rect 287 754 487 1154
+rect -487 118 -287 518
+rect -229 118 -29 518
+rect 29 118 229 518
+rect 287 118 487 518
+rect -487 -518 -287 -118
+rect -229 -518 -29 -118
+rect 29 -518 229 -118
+rect 287 -518 487 -118
+rect -487 -1154 -287 -754
+rect -229 -1154 -29 -754
+rect 29 -1154 229 -754
+rect 287 -1154 487 -754
+<< pdiff >>
+rect -545 1142 -487 1154
+rect -545 766 -533 1142
+rect -499 766 -487 1142
+rect -545 754 -487 766
+rect -287 1142 -229 1154
+rect -287 766 -275 1142
+rect -241 766 -229 1142
+rect -287 754 -229 766
+rect -29 1142 29 1154
+rect -29 766 -17 1142
+rect 17 766 29 1142
+rect -29 754 29 766
+rect 229 1142 287 1154
+rect 229 766 241 1142
+rect 275 766 287 1142
+rect 229 754 287 766
+rect 487 1142 545 1154
+rect 487 766 499 1142
+rect 533 766 545 1142
+rect 487 754 545 766
+rect -545 506 -487 518
+rect -545 130 -533 506
+rect -499 130 -487 506
+rect -545 118 -487 130
+rect -287 506 -229 518
+rect -287 130 -275 506
+rect -241 130 -229 506
+rect -287 118 -229 130
+rect -29 506 29 518
+rect -29 130 -17 506
+rect 17 130 29 506
+rect -29 118 29 130
+rect 229 506 287 518
+rect 229 130 241 506
+rect 275 130 287 506
+rect 229 118 287 130
+rect 487 506 545 518
+rect 487 130 499 506
+rect 533 130 545 506
+rect 487 118 545 130
+rect -545 -130 -487 -118
+rect -545 -506 -533 -130
+rect -499 -506 -487 -130
+rect -545 -518 -487 -506
+rect -287 -130 -229 -118
+rect -287 -506 -275 -130
+rect -241 -506 -229 -130
+rect -287 -518 -229 -506
+rect -29 -130 29 -118
+rect -29 -506 -17 -130
+rect 17 -506 29 -130
+rect -29 -518 29 -506
+rect 229 -130 287 -118
+rect 229 -506 241 -130
+rect 275 -506 287 -130
+rect 229 -518 287 -506
+rect 487 -130 545 -118
+rect 487 -506 499 -130
+rect 533 -506 545 -130
+rect 487 -518 545 -506
+rect -545 -766 -487 -754
+rect -545 -1142 -533 -766
+rect -499 -1142 -487 -766
+rect -545 -1154 -487 -1142
+rect -287 -766 -229 -754
+rect -287 -1142 -275 -766
+rect -241 -1142 -229 -766
+rect -287 -1154 -229 -1142
+rect -29 -766 29 -754
+rect -29 -1142 -17 -766
+rect 17 -1142 29 -766
+rect -29 -1154 29 -1142
+rect 229 -766 287 -754
+rect 229 -1142 241 -766
+rect 275 -1142 287 -766
+rect 229 -1154 287 -1142
+rect 487 -766 545 -754
+rect 487 -1142 499 -766
+rect 533 -1142 545 -766
+rect 487 -1154 545 -1142
+<< pdiffc >>
+rect -533 766 -499 1142
+rect -275 766 -241 1142
+rect -17 766 17 1142
+rect 241 766 275 1142
+rect 499 766 533 1142
+rect -533 130 -499 506
+rect -275 130 -241 506
+rect -17 130 17 506
+rect 241 130 275 506
+rect 499 130 533 506
+rect -533 -506 -499 -130
+rect -275 -506 -241 -130
+rect -17 -506 17 -130
+rect 241 -506 275 -130
+rect 499 -506 533 -130
+rect -533 -1142 -499 -766
+rect -275 -1142 -241 -766
+rect -17 -1142 17 -766
+rect 241 -1142 275 -766
+rect 499 -1142 533 -766
+<< nsubdiff >>
+rect -647 1303 -551 1337
+rect 551 1303 647 1337
+rect -647 1241 -613 1303
+rect 613 1241 647 1303
+rect -647 -1303 -613 -1241
+rect 613 -1303 647 -1241
+rect -647 -1337 -551 -1303
+rect 551 -1337 647 -1303
+<< nsubdiffcont >>
+rect -551 1303 551 1337
+rect -647 -1241 -613 1241
+rect 613 -1241 647 1241
+rect -551 -1337 551 -1303
+<< poly >>
+rect -487 1235 -287 1251
+rect -487 1201 -471 1235
+rect -303 1201 -287 1235
+rect -487 1154 -287 1201
+rect -229 1235 -29 1251
+rect -229 1201 -213 1235
+rect -45 1201 -29 1235
+rect -229 1154 -29 1201
+rect 29 1235 229 1251
+rect 29 1201 45 1235
+rect 213 1201 229 1235
+rect 29 1154 229 1201
+rect 287 1235 487 1251
+rect 287 1201 303 1235
+rect 471 1201 487 1235
+rect 287 1154 487 1201
+rect -487 707 -287 754
+rect -487 673 -471 707
+rect -303 673 -287 707
+rect -487 657 -287 673
+rect -229 707 -29 754
+rect -229 673 -213 707
+rect -45 673 -29 707
+rect -229 657 -29 673
+rect 29 707 229 754
+rect 29 673 45 707
+rect 213 673 229 707
+rect 29 657 229 673
+rect 287 707 487 754
+rect 287 673 303 707
+rect 471 673 487 707
+rect 287 657 487 673
+rect -487 599 -287 615
+rect -487 565 -471 599
+rect -303 565 -287 599
+rect -487 518 -287 565
+rect -229 599 -29 615
+rect -229 565 -213 599
+rect -45 565 -29 599
+rect -229 518 -29 565
+rect 29 599 229 615
+rect 29 565 45 599
+rect 213 565 229 599
+rect 29 518 229 565
+rect 287 599 487 615
+rect 287 565 303 599
+rect 471 565 487 599
+rect 287 518 487 565
+rect -487 71 -287 118
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -487 21 -287 37
+rect -229 71 -29 118
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect -229 21 -29 37
+rect 29 71 229 118
+rect 29 37 45 71
+rect 213 37 229 71
+rect 29 21 229 37
+rect 287 71 487 118
+rect 287 37 303 71
+rect 471 37 487 71
+rect 287 21 487 37
+rect -487 -37 -287 -21
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -487 -118 -287 -71
+rect -229 -37 -29 -21
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect -229 -118 -29 -71
+rect 29 -37 229 -21
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 29 -118 229 -71
+rect 287 -37 487 -21
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 287 -118 487 -71
+rect -487 -565 -287 -518
+rect -487 -599 -471 -565
+rect -303 -599 -287 -565
+rect -487 -615 -287 -599
+rect -229 -565 -29 -518
+rect -229 -599 -213 -565
+rect -45 -599 -29 -565
+rect -229 -615 -29 -599
+rect 29 -565 229 -518
+rect 29 -599 45 -565
+rect 213 -599 229 -565
+rect 29 -615 229 -599
+rect 287 -565 487 -518
+rect 287 -599 303 -565
+rect 471 -599 487 -565
+rect 287 -615 487 -599
+rect -487 -673 -287 -657
+rect -487 -707 -471 -673
+rect -303 -707 -287 -673
+rect -487 -754 -287 -707
+rect -229 -673 -29 -657
+rect -229 -707 -213 -673
+rect -45 -707 -29 -673
+rect -229 -754 -29 -707
+rect 29 -673 229 -657
+rect 29 -707 45 -673
+rect 213 -707 229 -673
+rect 29 -754 229 -707
+rect 287 -673 487 -657
+rect 287 -707 303 -673
+rect 471 -707 487 -673
+rect 287 -754 487 -707
+rect -487 -1201 -287 -1154
+rect -487 -1235 -471 -1201
+rect -303 -1235 -287 -1201
+rect -487 -1251 -287 -1235
+rect -229 -1201 -29 -1154
+rect -229 -1235 -213 -1201
+rect -45 -1235 -29 -1201
+rect -229 -1251 -29 -1235
+rect 29 -1201 229 -1154
+rect 29 -1235 45 -1201
+rect 213 -1235 229 -1201
+rect 29 -1251 229 -1235
+rect 287 -1201 487 -1154
+rect 287 -1235 303 -1201
+rect 471 -1235 487 -1201
+rect 287 -1251 487 -1235
+<< polycont >>
+rect -471 1201 -303 1235
+rect -213 1201 -45 1235
+rect 45 1201 213 1235
+rect 303 1201 471 1235
+rect -471 673 -303 707
+rect -213 673 -45 707
+rect 45 673 213 707
+rect 303 673 471 707
+rect -471 565 -303 599
+rect -213 565 -45 599
+rect 45 565 213 599
+rect 303 565 471 599
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect -471 -599 -303 -565
+rect -213 -599 -45 -565
+rect 45 -599 213 -565
+rect 303 -599 471 -565
+rect -471 -707 -303 -673
+rect -213 -707 -45 -673
+rect 45 -707 213 -673
+rect 303 -707 471 -673
+rect -471 -1235 -303 -1201
+rect -213 -1235 -45 -1201
+rect 45 -1235 213 -1201
+rect 303 -1235 471 -1201
+<< locali >>
+rect -647 1303 -551 1337
+rect 551 1303 647 1337
+rect -647 1241 -613 1303
+rect 613 1241 647 1303
+rect -487 1201 -471 1235
+rect -303 1201 -287 1235
+rect -229 1201 -213 1235
+rect -45 1201 -29 1235
+rect 29 1201 45 1235
+rect 213 1201 229 1235
+rect 287 1201 303 1235
+rect 471 1201 487 1235
+rect -533 1142 -499 1158
+rect -533 750 -499 766
+rect -275 1142 -241 1158
+rect -275 750 -241 766
+rect -17 1142 17 1158
+rect -17 750 17 766
+rect 241 1142 275 1158
+rect 241 750 275 766
+rect 499 1142 533 1158
+rect 499 750 533 766
+rect -487 673 -471 707
+rect -303 673 -287 707
+rect -229 673 -213 707
+rect -45 673 -29 707
+rect 29 673 45 707
+rect 213 673 229 707
+rect 287 673 303 707
+rect 471 673 487 707
+rect -487 565 -471 599
+rect -303 565 -287 599
+rect -229 565 -213 599
+rect -45 565 -29 599
+rect 29 565 45 599
+rect 213 565 229 599
+rect 287 565 303 599
+rect 471 565 487 599
+rect -533 506 -499 522
+rect -533 114 -499 130
+rect -275 506 -241 522
+rect -275 114 -241 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 241 506 275 522
+rect 241 114 275 130
+rect 499 506 533 522
+rect 499 114 533 130
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 213 37 229 71
+rect 287 37 303 71
+rect 471 37 487 71
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect -533 -130 -499 -114
+rect -533 -522 -499 -506
+rect -275 -130 -241 -114
+rect -275 -522 -241 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 241 -130 275 -114
+rect 241 -522 275 -506
+rect 499 -130 533 -114
+rect 499 -522 533 -506
+rect -487 -599 -471 -565
+rect -303 -599 -287 -565
+rect -229 -599 -213 -565
+rect -45 -599 -29 -565
+rect 29 -599 45 -565
+rect 213 -599 229 -565
+rect 287 -599 303 -565
+rect 471 -599 487 -565
+rect -487 -707 -471 -673
+rect -303 -707 -287 -673
+rect -229 -707 -213 -673
+rect -45 -707 -29 -673
+rect 29 -707 45 -673
+rect 213 -707 229 -673
+rect 287 -707 303 -673
+rect 471 -707 487 -673
+rect -533 -766 -499 -750
+rect -533 -1158 -499 -1142
+rect -275 -766 -241 -750
+rect -275 -1158 -241 -1142
+rect -17 -766 17 -750
+rect -17 -1158 17 -1142
+rect 241 -766 275 -750
+rect 241 -1158 275 -1142
+rect 499 -766 533 -750
+rect 499 -1158 533 -1142
+rect -487 -1235 -471 -1201
+rect -303 -1235 -287 -1201
+rect -229 -1235 -213 -1201
+rect -45 -1235 -29 -1201
+rect 29 -1235 45 -1201
+rect 213 -1235 229 -1201
+rect 287 -1235 303 -1201
+rect 471 -1235 487 -1201
+rect -647 -1303 -613 -1241
+rect 613 -1303 647 -1241
+rect -647 -1337 -551 -1303
+rect 551 -1337 647 -1303
+<< viali >>
+rect -471 1201 -303 1235
+rect -213 1201 -45 1235
+rect 45 1201 213 1235
+rect 303 1201 471 1235
+rect -533 766 -499 1142
+rect -275 766 -241 1142
+rect -17 766 17 1142
+rect 241 766 275 1142
+rect 499 766 533 1142
+rect -471 673 -303 707
+rect -213 673 -45 707
+rect 45 673 213 707
+rect 303 673 471 707
+rect -471 565 -303 599
+rect -213 565 -45 599
+rect 45 565 213 599
+rect 303 565 471 599
+rect -533 130 -499 506
+rect -275 130 -241 506
+rect -17 130 17 506
+rect 241 130 275 506
+rect 499 130 533 506
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect -533 -506 -499 -130
+rect -275 -506 -241 -130
+rect -17 -506 17 -130
+rect 241 -506 275 -130
+rect 499 -506 533 -130
+rect -471 -599 -303 -565
+rect -213 -599 -45 -565
+rect 45 -599 213 -565
+rect 303 -599 471 -565
+rect -471 -707 -303 -673
+rect -213 -707 -45 -673
+rect 45 -707 213 -673
+rect 303 -707 471 -673
+rect -533 -1142 -499 -766
+rect -275 -1142 -241 -766
+rect -17 -1142 17 -766
+rect 241 -1142 275 -766
+rect 499 -1142 533 -766
+rect -471 -1235 -303 -1201
+rect -213 -1235 -45 -1201
+rect 45 -1235 213 -1201
+rect 303 -1235 471 -1201
+<< metal1 >>
+rect -483 1235 -291 1241
+rect -483 1201 -471 1235
+rect -303 1201 -291 1235
+rect -483 1195 -291 1201
+rect -225 1235 -33 1241
+rect -225 1201 -213 1235
+rect -45 1201 -33 1235
+rect -225 1195 -33 1201
+rect 33 1235 225 1241
+rect 33 1201 45 1235
+rect 213 1201 225 1235
+rect 33 1195 225 1201
+rect 291 1235 483 1241
+rect 291 1201 303 1235
+rect 471 1201 483 1235
+rect 291 1195 483 1201
+rect -539 1142 -493 1154
+rect -539 766 -533 1142
+rect -499 766 -493 1142
+rect -539 754 -493 766
+rect -281 1142 -235 1154
+rect -281 766 -275 1142
+rect -241 766 -235 1142
+rect -281 754 -235 766
+rect -23 1142 23 1154
+rect -23 766 -17 1142
+rect 17 766 23 1142
+rect -23 754 23 766
+rect 235 1142 281 1154
+rect 235 766 241 1142
+rect 275 766 281 1142
+rect 235 754 281 766
+rect 493 1142 539 1154
+rect 493 766 499 1142
+rect 533 766 539 1142
+rect 493 754 539 766
+rect -483 707 -291 713
+rect -483 673 -471 707
+rect -303 673 -291 707
+rect -483 667 -291 673
+rect -225 707 -33 713
+rect -225 673 -213 707
+rect -45 673 -33 707
+rect -225 667 -33 673
+rect 33 707 225 713
+rect 33 673 45 707
+rect 213 673 225 707
+rect 33 667 225 673
+rect 291 707 483 713
+rect 291 673 303 707
+rect 471 673 483 707
+rect 291 667 483 673
+rect -483 599 -291 605
+rect -483 565 -471 599
+rect -303 565 -291 599
+rect -483 559 -291 565
+rect -225 599 -33 605
+rect -225 565 -213 599
+rect -45 565 -33 599
+rect -225 559 -33 565
+rect 33 599 225 605
+rect 33 565 45 599
+rect 213 565 225 599
+rect 33 559 225 565
+rect 291 599 483 605
+rect 291 565 303 599
+rect 471 565 483 599
+rect 291 559 483 565
+rect -539 506 -493 518
+rect -539 130 -533 506
+rect -499 130 -493 506
+rect -539 118 -493 130
+rect -281 506 -235 518
+rect -281 130 -275 506
+rect -241 130 -235 506
+rect -281 118 -235 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 235 506 281 518
+rect 235 130 241 506
+rect 275 130 281 506
+rect 235 118 281 130
+rect 493 506 539 518
+rect 493 130 499 506
+rect 533 130 539 506
+rect 493 118 539 130
+rect -483 71 -291 77
+rect -483 37 -471 71
+rect -303 37 -291 71
+rect -483 31 -291 37
+rect -225 71 -33 77
+rect -225 37 -213 71
+rect -45 37 -33 71
+rect -225 31 -33 37
+rect 33 71 225 77
+rect 33 37 45 71
+rect 213 37 225 71
+rect 33 31 225 37
+rect 291 71 483 77
+rect 291 37 303 71
+rect 471 37 483 71
+rect 291 31 483 37
+rect -483 -37 -291 -31
+rect -483 -71 -471 -37
+rect -303 -71 -291 -37
+rect -483 -77 -291 -71
+rect -225 -37 -33 -31
+rect -225 -71 -213 -37
+rect -45 -71 -33 -37
+rect -225 -77 -33 -71
+rect 33 -37 225 -31
+rect 33 -71 45 -37
+rect 213 -71 225 -37
+rect 33 -77 225 -71
+rect 291 -37 483 -31
+rect 291 -71 303 -37
+rect 471 -71 483 -37
+rect 291 -77 483 -71
+rect -539 -130 -493 -118
+rect -539 -506 -533 -130
+rect -499 -506 -493 -130
+rect -539 -518 -493 -506
+rect -281 -130 -235 -118
+rect -281 -506 -275 -130
+rect -241 -506 -235 -130
+rect -281 -518 -235 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 235 -130 281 -118
+rect 235 -506 241 -130
+rect 275 -506 281 -130
+rect 235 -518 281 -506
+rect 493 -130 539 -118
+rect 493 -506 499 -130
+rect 533 -506 539 -130
+rect 493 -518 539 -506
+rect -483 -565 -291 -559
+rect -483 -599 -471 -565
+rect -303 -599 -291 -565
+rect -483 -605 -291 -599
+rect -225 -565 -33 -559
+rect -225 -599 -213 -565
+rect -45 -599 -33 -565
+rect -225 -605 -33 -599
+rect 33 -565 225 -559
+rect 33 -599 45 -565
+rect 213 -599 225 -565
+rect 33 -605 225 -599
+rect 291 -565 483 -559
+rect 291 -599 303 -565
+rect 471 -599 483 -565
+rect 291 -605 483 -599
+rect -483 -673 -291 -667
+rect -483 -707 -471 -673
+rect -303 -707 -291 -673
+rect -483 -713 -291 -707
+rect -225 -673 -33 -667
+rect -225 -707 -213 -673
+rect -45 -707 -33 -673
+rect -225 -713 -33 -707
+rect 33 -673 225 -667
+rect 33 -707 45 -673
+rect 213 -707 225 -673
+rect 33 -713 225 -707
+rect 291 -673 483 -667
+rect 291 -707 303 -673
+rect 471 -707 483 -673
+rect 291 -713 483 -707
+rect -539 -766 -493 -754
+rect -539 -1142 -533 -766
+rect -499 -1142 -493 -766
+rect -539 -1154 -493 -1142
+rect -281 -766 -235 -754
+rect -281 -1142 -275 -766
+rect -241 -1142 -235 -766
+rect -281 -1154 -235 -1142
+rect -23 -766 23 -754
+rect -23 -1142 -17 -766
+rect 17 -1142 23 -766
+rect -23 -1154 23 -1142
+rect 235 -766 281 -754
+rect 235 -1142 241 -766
+rect 275 -1142 281 -766
+rect 235 -1154 281 -1142
+rect 493 -766 539 -754
+rect 493 -1142 499 -766
+rect 533 -1142 539 -766
+rect 493 -1154 539 -1142
+rect -483 -1201 -291 -1195
+rect -483 -1235 -471 -1201
+rect -303 -1235 -291 -1201
+rect -483 -1241 -291 -1235
+rect -225 -1201 -33 -1195
+rect -225 -1235 -213 -1201
+rect -45 -1235 -33 -1201
+rect -225 -1241 -33 -1235
+rect 33 -1201 225 -1195
+rect 33 -1235 45 -1201
+rect 213 -1235 225 -1201
+rect 33 -1241 225 -1235
+rect 291 -1201 483 -1195
+rect 291 -1235 303 -1201
+rect 471 -1235 483 -1201
+rect 291 -1241 483 -1235
+<< properties >>
+string FIXED_BBOX -630 -1320 630 1320
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 1 m 4 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_M2YXZJ.mag b/mag/currm/sky130_fd_pr__pfet_01v8_M2YXZJ.mag
new file mode 100644
index 0000000..29d5f4e
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_M2YXZJ.mag
@@ -0,0 +1,522 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646400034
+<< nwell >>
+rect -1083 -755 1083 755
+<< pmos >>
+rect -887 336 -487 536
+rect -429 336 -29 536
+rect 29 336 429 536
+rect 487 336 887 536
+rect -887 -100 -487 100
+rect -429 -100 -29 100
+rect 29 -100 429 100
+rect 487 -100 887 100
+rect -887 -536 -487 -336
+rect -429 -536 -29 -336
+rect 29 -536 429 -336
+rect 487 -536 887 -336
+<< pdiff >>
+rect -945 524 -887 536
+rect -945 348 -933 524
+rect -899 348 -887 524
+rect -945 336 -887 348
+rect -487 524 -429 536
+rect -487 348 -475 524
+rect -441 348 -429 524
+rect -487 336 -429 348
+rect -29 524 29 536
+rect -29 348 -17 524
+rect 17 348 29 524
+rect -29 336 29 348
+rect 429 524 487 536
+rect 429 348 441 524
+rect 475 348 487 524
+rect 429 336 487 348
+rect 887 524 945 536
+rect 887 348 899 524
+rect 933 348 945 524
+rect 887 336 945 348
+rect -945 88 -887 100
+rect -945 -88 -933 88
+rect -899 -88 -887 88
+rect -945 -100 -887 -88
+rect -487 88 -429 100
+rect -487 -88 -475 88
+rect -441 -88 -429 88
+rect -487 -100 -429 -88
+rect -29 88 29 100
+rect -29 -88 -17 88
+rect 17 -88 29 88
+rect -29 -100 29 -88
+rect 429 88 487 100
+rect 429 -88 441 88
+rect 475 -88 487 88
+rect 429 -100 487 -88
+rect 887 88 945 100
+rect 887 -88 899 88
+rect 933 -88 945 88
+rect 887 -100 945 -88
+rect -945 -348 -887 -336
+rect -945 -524 -933 -348
+rect -899 -524 -887 -348
+rect -945 -536 -887 -524
+rect -487 -348 -429 -336
+rect -487 -524 -475 -348
+rect -441 -524 -429 -348
+rect -487 -536 -429 -524
+rect -29 -348 29 -336
+rect -29 -524 -17 -348
+rect 17 -524 29 -348
+rect -29 -536 29 -524
+rect 429 -348 487 -336
+rect 429 -524 441 -348
+rect 475 -524 487 -348
+rect 429 -536 487 -524
+rect 887 -348 945 -336
+rect 887 -524 899 -348
+rect 933 -524 945 -348
+rect 887 -536 945 -524
+<< pdiffc >>
+rect -933 348 -899 524
+rect -475 348 -441 524
+rect -17 348 17 524
+rect 441 348 475 524
+rect 899 348 933 524
+rect -933 -88 -899 88
+rect -475 -88 -441 88
+rect -17 -88 17 88
+rect 441 -88 475 88
+rect 899 -88 933 88
+rect -933 -524 -899 -348
+rect -475 -524 -441 -348
+rect -17 -524 17 -348
+rect 441 -524 475 -348
+rect 899 -524 933 -348
+<< nsubdiff >>
+rect -1047 685 -951 719
+rect 951 685 1047 719
+rect -1047 623 -1013 685
+rect 1013 623 1047 685
+rect -1047 -685 -1013 -623
+rect 1013 -685 1047 -623
+rect -1047 -719 -951 -685
+rect 951 -719 1047 -685
+<< nsubdiffcont >>
+rect -951 685 951 719
+rect -1047 -623 -1013 623
+rect 1013 -623 1047 623
+rect -951 -719 951 -685
+<< poly >>
+rect -887 617 -487 633
+rect -887 583 -871 617
+rect -503 583 -487 617
+rect -887 536 -487 583
+rect -429 617 -29 633
+rect -429 583 -413 617
+rect -45 583 -29 617
+rect -429 536 -29 583
+rect 29 617 429 633
+rect 29 583 45 617
+rect 413 583 429 617
+rect 29 536 429 583
+rect 487 617 887 633
+rect 487 583 503 617
+rect 871 583 887 617
+rect 487 536 887 583
+rect -887 289 -487 336
+rect -887 255 -871 289
+rect -503 255 -487 289
+rect -887 239 -487 255
+rect -429 289 -29 336
+rect -429 255 -413 289
+rect -45 255 -29 289
+rect -429 239 -29 255
+rect 29 289 429 336
+rect 29 255 45 289
+rect 413 255 429 289
+rect 29 239 429 255
+rect 487 289 887 336
+rect 487 255 503 289
+rect 871 255 887 289
+rect 487 239 887 255
+rect -887 181 -487 197
+rect -887 147 -871 181
+rect -503 147 -487 181
+rect -887 100 -487 147
+rect -429 181 -29 197
+rect -429 147 -413 181
+rect -45 147 -29 181
+rect -429 100 -29 147
+rect 29 181 429 197
+rect 29 147 45 181
+rect 413 147 429 181
+rect 29 100 429 147
+rect 487 181 887 197
+rect 487 147 503 181
+rect 871 147 887 181
+rect 487 100 887 147
+rect -887 -147 -487 -100
+rect -887 -181 -871 -147
+rect -503 -181 -487 -147
+rect -887 -197 -487 -181
+rect -429 -147 -29 -100
+rect -429 -181 -413 -147
+rect -45 -181 -29 -147
+rect -429 -197 -29 -181
+rect 29 -147 429 -100
+rect 29 -181 45 -147
+rect 413 -181 429 -147
+rect 29 -197 429 -181
+rect 487 -147 887 -100
+rect 487 -181 503 -147
+rect 871 -181 887 -147
+rect 487 -197 887 -181
+rect -887 -255 -487 -239
+rect -887 -289 -871 -255
+rect -503 -289 -487 -255
+rect -887 -336 -487 -289
+rect -429 -255 -29 -239
+rect -429 -289 -413 -255
+rect -45 -289 -29 -255
+rect -429 -336 -29 -289
+rect 29 -255 429 -239
+rect 29 -289 45 -255
+rect 413 -289 429 -255
+rect 29 -336 429 -289
+rect 487 -255 887 -239
+rect 487 -289 503 -255
+rect 871 -289 887 -255
+rect 487 -336 887 -289
+rect -887 -583 -487 -536
+rect -887 -617 -871 -583
+rect -503 -617 -487 -583
+rect -887 -633 -487 -617
+rect -429 -583 -29 -536
+rect -429 -617 -413 -583
+rect -45 -617 -29 -583
+rect -429 -633 -29 -617
+rect 29 -583 429 -536
+rect 29 -617 45 -583
+rect 413 -617 429 -583
+rect 29 -633 429 -617
+rect 487 -583 887 -536
+rect 487 -617 503 -583
+rect 871 -617 887 -583
+rect 487 -633 887 -617
+<< polycont >>
+rect -871 583 -503 617
+rect -413 583 -45 617
+rect 45 583 413 617
+rect 503 583 871 617
+rect -871 255 -503 289
+rect -413 255 -45 289
+rect 45 255 413 289
+rect 503 255 871 289
+rect -871 147 -503 181
+rect -413 147 -45 181
+rect 45 147 413 181
+rect 503 147 871 181
+rect -871 -181 -503 -147
+rect -413 -181 -45 -147
+rect 45 -181 413 -147
+rect 503 -181 871 -147
+rect -871 -289 -503 -255
+rect -413 -289 -45 -255
+rect 45 -289 413 -255
+rect 503 -289 871 -255
+rect -871 -617 -503 -583
+rect -413 -617 -45 -583
+rect 45 -617 413 -583
+rect 503 -617 871 -583
+<< locali >>
+rect -1047 685 -951 719
+rect 951 685 1047 719
+rect -1047 623 -1013 685
+rect 1013 623 1047 685
+rect -887 583 -871 617
+rect -503 583 -487 617
+rect -429 583 -413 617
+rect -45 583 -29 617
+rect 29 583 45 617
+rect 413 583 429 617
+rect 487 583 503 617
+rect 871 583 887 617
+rect -933 524 -899 540
+rect -933 332 -899 348
+rect -475 524 -441 540
+rect -475 332 -441 348
+rect -17 524 17 540
+rect -17 332 17 348
+rect 441 524 475 540
+rect 441 332 475 348
+rect 899 524 933 540
+rect 899 332 933 348
+rect -887 255 -871 289
+rect -503 255 -487 289
+rect -429 255 -413 289
+rect -45 255 -29 289
+rect 29 255 45 289
+rect 413 255 429 289
+rect 487 255 503 289
+rect 871 255 887 289
+rect -887 147 -871 181
+rect -503 147 -487 181
+rect -429 147 -413 181
+rect -45 147 -29 181
+rect 29 147 45 181
+rect 413 147 429 181
+rect 487 147 503 181
+rect 871 147 887 181
+rect -933 88 -899 104
+rect -933 -104 -899 -88
+rect -475 88 -441 104
+rect -475 -104 -441 -88
+rect -17 88 17 104
+rect -17 -104 17 -88
+rect 441 88 475 104
+rect 441 -104 475 -88
+rect 899 88 933 104
+rect 899 -104 933 -88
+rect -887 -181 -871 -147
+rect -503 -181 -487 -147
+rect -429 -181 -413 -147
+rect -45 -181 -29 -147
+rect 29 -181 45 -147
+rect 413 -181 429 -147
+rect 487 -181 503 -147
+rect 871 -181 887 -147
+rect -887 -289 -871 -255
+rect -503 -289 -487 -255
+rect -429 -289 -413 -255
+rect -45 -289 -29 -255
+rect 29 -289 45 -255
+rect 413 -289 429 -255
+rect 487 -289 503 -255
+rect 871 -289 887 -255
+rect -933 -348 -899 -332
+rect -933 -540 -899 -524
+rect -475 -348 -441 -332
+rect -475 -540 -441 -524
+rect -17 -348 17 -332
+rect -17 -540 17 -524
+rect 441 -348 475 -332
+rect 441 -540 475 -524
+rect 899 -348 933 -332
+rect 899 -540 933 -524
+rect -887 -617 -871 -583
+rect -503 -617 -487 -583
+rect -429 -617 -413 -583
+rect -45 -617 -29 -583
+rect 29 -617 45 -583
+rect 413 -617 429 -583
+rect 487 -617 503 -583
+rect 871 -617 887 -583
+rect -1047 -685 -1013 -623
+rect 1013 -685 1047 -623
+rect -1047 -719 -951 -685
+rect 951 -719 1047 -685
+<< viali >>
+rect -871 583 -503 617
+rect -413 583 -45 617
+rect 45 583 413 617
+rect 503 583 871 617
+rect -933 348 -899 524
+rect -475 348 -441 524
+rect -17 348 17 524
+rect 441 348 475 524
+rect 899 348 933 524
+rect -871 255 -503 289
+rect -413 255 -45 289
+rect 45 255 413 289
+rect 503 255 871 289
+rect -871 147 -503 181
+rect -413 147 -45 181
+rect 45 147 413 181
+rect 503 147 871 181
+rect -933 -88 -899 88
+rect -475 -88 -441 88
+rect -17 -88 17 88
+rect 441 -88 475 88
+rect 899 -88 933 88
+rect -871 -181 -503 -147
+rect -413 -181 -45 -147
+rect 45 -181 413 -147
+rect 503 -181 871 -147
+rect -871 -289 -503 -255
+rect -413 -289 -45 -255
+rect 45 -289 413 -255
+rect 503 -289 871 -255
+rect -933 -524 -899 -348
+rect -475 -524 -441 -348
+rect -17 -524 17 -348
+rect 441 -524 475 -348
+rect 899 -524 933 -348
+rect -871 -617 -503 -583
+rect -413 -617 -45 -583
+rect 45 -617 413 -583
+rect 503 -617 871 -583
+<< metal1 >>
+rect -883 617 -491 623
+rect -883 583 -871 617
+rect -503 583 -491 617
+rect -883 577 -491 583
+rect -425 617 -33 623
+rect -425 583 -413 617
+rect -45 583 -33 617
+rect -425 577 -33 583
+rect 33 617 425 623
+rect 33 583 45 617
+rect 413 583 425 617
+rect 33 577 425 583
+rect 491 617 883 623
+rect 491 583 503 617
+rect 871 583 883 617
+rect 491 577 883 583
+rect -939 524 -893 536
+rect -939 348 -933 524
+rect -899 348 -893 524
+rect -939 336 -893 348
+rect -481 524 -435 536
+rect -481 348 -475 524
+rect -441 348 -435 524
+rect -481 336 -435 348
+rect -23 524 23 536
+rect -23 348 -17 524
+rect 17 348 23 524
+rect -23 336 23 348
+rect 435 524 481 536
+rect 435 348 441 524
+rect 475 348 481 524
+rect 435 336 481 348
+rect 893 524 939 536
+rect 893 348 899 524
+rect 933 348 939 524
+rect 893 336 939 348
+rect -883 289 -491 295
+rect -883 255 -871 289
+rect -503 255 -491 289
+rect -883 249 -491 255
+rect -425 289 -33 295
+rect -425 255 -413 289
+rect -45 255 -33 289
+rect -425 249 -33 255
+rect 33 289 425 295
+rect 33 255 45 289
+rect 413 255 425 289
+rect 33 249 425 255
+rect 491 289 883 295
+rect 491 255 503 289
+rect 871 255 883 289
+rect 491 249 883 255
+rect -883 181 -491 187
+rect -883 147 -871 181
+rect -503 147 -491 181
+rect -883 141 -491 147
+rect -425 181 -33 187
+rect -425 147 -413 181
+rect -45 147 -33 181
+rect -425 141 -33 147
+rect 33 181 425 187
+rect 33 147 45 181
+rect 413 147 425 181
+rect 33 141 425 147
+rect 491 181 883 187
+rect 491 147 503 181
+rect 871 147 883 181
+rect 491 141 883 147
+rect -939 88 -893 100
+rect -939 -88 -933 88
+rect -899 -88 -893 88
+rect -939 -100 -893 -88
+rect -481 88 -435 100
+rect -481 -88 -475 88
+rect -441 -88 -435 88
+rect -481 -100 -435 -88
+rect -23 88 23 100
+rect -23 -88 -17 88
+rect 17 -88 23 88
+rect -23 -100 23 -88
+rect 435 88 481 100
+rect 435 -88 441 88
+rect 475 -88 481 88
+rect 435 -100 481 -88
+rect 893 88 939 100
+rect 893 -88 899 88
+rect 933 -88 939 88
+rect 893 -100 939 -88
+rect -883 -147 -491 -141
+rect -883 -181 -871 -147
+rect -503 -181 -491 -147
+rect -883 -187 -491 -181
+rect -425 -147 -33 -141
+rect -425 -181 -413 -147
+rect -45 -181 -33 -147
+rect -425 -187 -33 -181
+rect 33 -147 425 -141
+rect 33 -181 45 -147
+rect 413 -181 425 -147
+rect 33 -187 425 -181
+rect 491 -147 883 -141
+rect 491 -181 503 -147
+rect 871 -181 883 -147
+rect 491 -187 883 -181
+rect -883 -255 -491 -249
+rect -883 -289 -871 -255
+rect -503 -289 -491 -255
+rect -883 -295 -491 -289
+rect -425 -255 -33 -249
+rect -425 -289 -413 -255
+rect -45 -289 -33 -255
+rect -425 -295 -33 -289
+rect 33 -255 425 -249
+rect 33 -289 45 -255
+rect 413 -289 425 -255
+rect 33 -295 425 -289
+rect 491 -255 883 -249
+rect 491 -289 503 -255
+rect 871 -289 883 -255
+rect 491 -295 883 -289
+rect -939 -348 -893 -336
+rect -939 -524 -933 -348
+rect -899 -524 -893 -348
+rect -939 -536 -893 -524
+rect -481 -348 -435 -336
+rect -481 -524 -475 -348
+rect -441 -524 -435 -348
+rect -481 -536 -435 -524
+rect -23 -348 23 -336
+rect -23 -524 -17 -348
+rect 17 -524 23 -348
+rect -23 -536 23 -524
+rect 435 -348 481 -336
+rect 435 -524 441 -348
+rect 475 -524 481 -348
+rect 435 -536 481 -524
+rect 893 -348 939 -336
+rect 893 -524 899 -348
+rect 933 -524 939 -348
+rect 893 -536 939 -524
+rect -883 -583 -491 -577
+rect -883 -617 -871 -583
+rect -503 -617 -491 -583
+rect -883 -623 -491 -617
+rect -425 -583 -33 -577
+rect -425 -617 -413 -583
+rect -45 -617 -33 -583
+rect -425 -623 -33 -617
+rect 33 -583 425 -577
+rect 33 -617 45 -583
+rect 413 -617 425 -583
+rect 33 -623 425 -617
+rect 491 -583 883 -577
+rect 491 -617 503 -583
+rect 871 -617 883 -583
+rect 491 -623 883 -617
+<< properties >>
+string FIXED_BBOX -1030 -702 1030 702
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 1 l 2 m 3 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_T2YK62.mag b/mag/currm/sky130_fd_pr__pfet_01v8_T2YK62.mag
new file mode 100644
index 0000000..03e7d59
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_T2YK62.mag
@@ -0,0 +1,202 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646400034
+<< nwell >>
+rect -1883 -319 1883 319
+<< pmos >>
+rect -1687 -100 -887 100
+rect -829 -100 -29 100
+rect 29 -100 829 100
+rect 887 -100 1687 100
+<< pdiff >>
+rect -1745 88 -1687 100
+rect -1745 -88 -1733 88
+rect -1699 -88 -1687 88
+rect -1745 -100 -1687 -88
+rect -887 88 -829 100
+rect -887 -88 -875 88
+rect -841 -88 -829 88
+rect -887 -100 -829 -88
+rect -29 88 29 100
+rect -29 -88 -17 88
+rect 17 -88 29 88
+rect -29 -100 29 -88
+rect 829 88 887 100
+rect 829 -88 841 88
+rect 875 -88 887 88
+rect 829 -100 887 -88
+rect 1687 88 1745 100
+rect 1687 -88 1699 88
+rect 1733 -88 1745 88
+rect 1687 -100 1745 -88
+<< pdiffc >>
+rect -1733 -88 -1699 88
+rect -875 -88 -841 88
+rect -17 -88 17 88
+rect 841 -88 875 88
+rect 1699 -88 1733 88
+<< nsubdiff >>
+rect -1847 249 -1751 283
+rect 1751 249 1847 283
+rect -1847 187 -1813 249
+rect 1813 187 1847 249
+rect -1847 -249 -1813 -187
+rect 1813 -249 1847 -187
+rect -1847 -283 -1751 -249
+rect 1751 -283 1847 -249
+<< nsubdiffcont >>
+rect -1751 249 1751 283
+rect -1847 -187 -1813 187
+rect 1813 -187 1847 187
+rect -1751 -283 1751 -249
+<< poly >>
+rect -1687 181 -887 197
+rect -1687 147 -1671 181
+rect -903 147 -887 181
+rect -1687 100 -887 147
+rect -829 181 -29 197
+rect -829 147 -813 181
+rect -45 147 -29 181
+rect -829 100 -29 147
+rect 29 181 829 197
+rect 29 147 45 181
+rect 813 147 829 181
+rect 29 100 829 147
+rect 887 181 1687 197
+rect 887 147 903 181
+rect 1671 147 1687 181
+rect 887 100 1687 147
+rect -1687 -147 -887 -100
+rect -1687 -181 -1671 -147
+rect -903 -181 -887 -147
+rect -1687 -197 -887 -181
+rect -829 -147 -29 -100
+rect -829 -181 -813 -147
+rect -45 -181 -29 -147
+rect -829 -197 -29 -181
+rect 29 -147 829 -100
+rect 29 -181 45 -147
+rect 813 -181 829 -147
+rect 29 -197 829 -181
+rect 887 -147 1687 -100
+rect 887 -181 903 -147
+rect 1671 -181 1687 -147
+rect 887 -197 1687 -181
+<< polycont >>
+rect -1671 147 -903 181
+rect -813 147 -45 181
+rect 45 147 813 181
+rect 903 147 1671 181
+rect -1671 -181 -903 -147
+rect -813 -181 -45 -147
+rect 45 -181 813 -147
+rect 903 -181 1671 -147
+<< locali >>
+rect -1847 249 -1751 283
+rect 1751 249 1847 283
+rect -1847 187 -1813 249
+rect 1813 187 1847 249
+rect -1687 147 -1671 181
+rect -903 147 -887 181
+rect -829 147 -813 181
+rect -45 147 -29 181
+rect 29 147 45 181
+rect 813 147 829 181
+rect 887 147 903 181
+rect 1671 147 1687 181
+rect -1733 88 -1699 104
+rect -1733 -104 -1699 -88
+rect -875 88 -841 104
+rect -875 -104 -841 -88
+rect -17 88 17 104
+rect -17 -104 17 -88
+rect 841 88 875 104
+rect 841 -104 875 -88
+rect 1699 88 1733 104
+rect 1699 -104 1733 -88
+rect -1687 -181 -1671 -147
+rect -903 -181 -887 -147
+rect -829 -181 -813 -147
+rect -45 -181 -29 -147
+rect 29 -181 45 -147
+rect 813 -181 829 -147
+rect 887 -181 903 -147
+rect 1671 -181 1687 -147
+rect -1847 -249 -1813 -187
+rect 1813 -249 1847 -187
+rect -1847 -283 -1751 -249
+rect 1751 -283 1847 -249
+<< viali >>
+rect -1671 147 -903 181
+rect -813 147 -45 181
+rect 45 147 813 181
+rect 903 147 1671 181
+rect -1733 -88 -1699 88
+rect -875 -88 -841 88
+rect -17 -88 17 88
+rect 841 -88 875 88
+rect 1699 -88 1733 88
+rect -1671 -181 -903 -147
+rect -813 -181 -45 -147
+rect 45 -181 813 -147
+rect 903 -181 1671 -147
+<< metal1 >>
+rect -1683 181 -891 187
+rect -1683 147 -1671 181
+rect -903 147 -891 181
+rect -1683 141 -891 147
+rect -825 181 -33 187
+rect -825 147 -813 181
+rect -45 147 -33 181
+rect -825 141 -33 147
+rect 33 181 825 187
+rect 33 147 45 181
+rect 813 147 825 181
+rect 33 141 825 147
+rect 891 181 1683 187
+rect 891 147 903 181
+rect 1671 147 1683 181
+rect 891 141 1683 147
+rect -1739 88 -1693 100
+rect -1739 -88 -1733 88
+rect -1699 -88 -1693 88
+rect -1739 -100 -1693 -88
+rect -881 88 -835 100
+rect -881 -88 -875 88
+rect -841 -88 -835 88
+rect -881 -100 -835 -88
+rect -23 88 23 100
+rect -23 -88 -17 88
+rect 17 -88 23 88
+rect -23 -100 23 -88
+rect 835 88 881 100
+rect 835 -88 841 88
+rect 875 -88 881 88
+rect 835 -100 881 -88
+rect 1693 88 1739 100
+rect 1693 -88 1699 88
+rect 1733 -88 1739 88
+rect 1693 -100 1739 -88
+rect -1683 -147 -891 -141
+rect -1683 -181 -1671 -147
+rect -903 -181 -891 -147
+rect -1683 -187 -891 -181
+rect -825 -147 -33 -141
+rect -825 -181 -813 -147
+rect -45 -181 -33 -147
+rect -825 -187 -33 -181
+rect 33 -147 825 -141
+rect 33 -181 45 -147
+rect 813 -181 825 -147
+rect 33 -187 825 -181
+rect 891 -147 1683 -141
+rect 891 -181 903 -147
+rect 1671 -181 1683 -147
+rect 891 -187 1683 -181
+<< properties >>
+string FIXED_BBOX -1830 -266 1830 266
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 1 l 4 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.ext b/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.ext
new file mode 100644
index 0000000..e9ebd57
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.ext
@@ -0,0 +1,55 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_167_n200#" 1513 0 167 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_69_n200#" 1513 0 69 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n127_n200#" 1513 0 -127 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 1513 0 -225 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_16_n297#" 664 0 16 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n180_n297#" 664 0 -180 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_114_231#" 664 0 114 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n82_231#" 664 0 -82 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n363_n419#" 11391 1825.16 -363 -419 nw 0 0 0 0 608388 3128 0 0 91936 5408 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91936 5408 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n200#" "a_69_n200#" 462.346
+cap "a_167_n200#" "w_n363_n419#" 187.006
+cap "w_n363_n419#" "a_69_n200#" 114.462
+cap "a_n29_n200#" "a_n225_n200#" 168.919
+cap "a_16_n297#" "a_69_n200#" 3.35116
+cap "a_n127_n200#" "a_n180_n297#" 3.35116
+cap "a_167_n200#" "a_69_n200#" 462.346
+cap "w_n363_n419#" "a_n225_n200#" 187.653
+cap "a_n127_n200#" "a_n82_231#" 3.35116
+cap "a_n180_n297#" "a_n82_231#" 15.2414
+cap "a_167_n200#" "a_n225_n200#" 74.5696
+cap "a_n225_n200#" "a_69_n200#" 103.455
+cap "a_114_231#" "a_n180_n297#" 3.48031
+cap "a_n29_n200#" "a_n127_n200#" 462.346
+cap "a_114_231#" "a_n82_231#" 34.4654
+cap "a_n127_n200#" "w_n363_n419#" 114.764
+cap "w_n363_n419#" "a_n180_n297#" 143.612
+cap "a_n29_n200#" "a_n82_231#" 3.35116
+cap "a_16_n297#" "a_n180_n297#" 34.4654
+cap "a_167_n200#" "a_n127_n200#" 103.455
+cap "w_n363_n419#" "a_n82_231#" 125.566
+cap "a_n127_n200#" "a_69_n200#" 168.919
+cap "a_16_n297#" "a_n82_231#" 15.2414
+cap "w_n363_n419#" "a_114_231#" 138.616
+cap "a_n127_n200#" "a_n225_n200#" 462.346
+cap "a_n180_n297#" "a_n225_n200#" 3.35116
+cap "a_16_n297#" "a_114_231#" 15.2414
+cap "a_167_n200#" "a_114_231#" 3.35116
+cap "a_n29_n200#" "w_n363_n419#" 102.672
+cap "a_114_231#" "a_69_n200#" 3.35116
+cap "a_16_n297#" "a_n29_n200#" 3.35116
+cap "a_n29_n200#" "a_167_n200#" 168.919
+cap "a_16_n297#" "w_n363_n419#" 122.549
+device msubckt sky130_fd_pr__pfet_01v8 127 -200 128 -199 l=40 w=400 "w_n363_n419#" "a_114_231#" 80 0 "a_69_n200#" 400 0 "a_167_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -200 30 -199 l=40 w=400 "w_n363_n419#" "a_16_n297#" 80 0 "a_n29_n200#" 400 0 "a_69_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -69 -200 -68 -199 l=40 w=400 "w_n363_n419#" "a_n82_231#" 80 0 "a_n127_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -167 -200 -166 -199 l=40 w=400 "w_n363_n419#" "a_n180_n297#" 80 0 "a_n225_n200#" 400 0 "a_n127_n200#" 400 0
diff --git a/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.mag b/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.mag
new file mode 100644
index 0000000..c967aab
--- /dev/null
+++ b/mag/currm/sky130_fd_pr__pfet_01v8_X9CJL2.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -78 281 -20 287
+rect 118 281 176 287
+rect -78 247 -66 281
+rect 118 247 130 281
+rect -78 241 -20 247
+rect 118 241 176 247
+rect -176 -247 -118 -241
+rect 20 -247 78 -241
+rect -176 -281 -164 -247
+rect 20 -281 32 -247
+rect -176 -287 -118 -281
+rect 20 -287 78 -281
+<< nwell >>
+rect -363 -419 363 419
+<< pmos >>
+rect -167 -200 -127 200
+rect -69 -200 -29 200
+rect 29 -200 69 200
+rect 127 -200 167 200
+<< pdiff >>
+rect -225 188 -167 200
+rect -225 -188 -213 188
+rect -179 -188 -167 188
+rect -225 -200 -167 -188
+rect -127 188 -69 200
+rect -127 -188 -115 188
+rect -81 -188 -69 188
+rect -127 -200 -69 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 69 188 127 200
+rect 69 -188 81 188
+rect 115 -188 127 188
+rect 69 -200 127 -188
+rect 167 188 225 200
+rect 167 -188 179 188
+rect 213 -188 225 188
+rect 167 -200 225 -188
+<< pdiffc >>
+rect -213 -188 -179 188
+rect -115 -188 -81 188
+rect -17 -188 17 188
+rect 81 -188 115 188
+rect 179 -188 213 188
+<< nsubdiff >>
+rect -327 349 -231 383
+rect 231 349 327 383
+rect -327 287 -293 349
+rect 293 287 327 349
+rect -327 -349 -293 -287
+rect 293 -349 327 -287
+rect -327 -383 -231 -349
+rect 231 -383 327 -349
+<< nsubdiffcont >>
+rect -231 349 231 383
+rect -327 -287 -293 287
+rect 293 -287 327 287
+rect -231 -383 231 -349
+<< poly >>
+rect -82 281 -16 297
+rect -82 247 -66 281
+rect -32 247 -16 281
+rect -82 231 -16 247
+rect 114 281 180 297
+rect 114 247 130 281
+rect 164 247 180 281
+rect 114 231 180 247
+rect -167 200 -127 226
+rect -69 200 -29 231
+rect 29 200 69 226
+rect 127 200 167 231
+rect -167 -231 -127 -200
+rect -69 -226 -29 -200
+rect 29 -231 69 -200
+rect 127 -226 167 -200
+rect -180 -247 -114 -231
+rect -180 -281 -164 -247
+rect -130 -281 -114 -247
+rect -180 -297 -114 -281
+rect 16 -247 82 -231
+rect 16 -281 32 -247
+rect 66 -281 82 -247
+rect 16 -297 82 -281
+<< polycont >>
+rect -66 247 -32 281
+rect 130 247 164 281
+rect -164 -281 -130 -247
+rect 32 -281 66 -247
+<< locali >>
+rect -327 349 -231 383
+rect 231 349 327 383
+rect -327 287 -293 349
+rect 293 287 327 349
+rect -82 247 -66 281
+rect -32 247 -16 281
+rect 114 247 130 281
+rect 164 247 180 281
+rect -213 188 -179 204
+rect -213 -204 -179 -188
+rect -115 188 -81 204
+rect -115 -204 -81 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 81 188 115 204
+rect 81 -204 115 -188
+rect 179 188 213 204
+rect 179 -204 213 -188
+rect -180 -281 -164 -247
+rect -130 -281 -114 -247
+rect 16 -281 32 -247
+rect 66 -281 82 -247
+rect -327 -349 -293 -287
+rect 293 -349 327 -287
+rect -327 -383 -231 -349
+rect 231 -383 327 -349
+<< viali >>
+rect -66 247 -32 281
+rect 130 247 164 281
+rect -213 -188 -179 188
+rect -115 -188 -81 188
+rect -17 -188 17 188
+rect 81 -188 115 188
+rect 179 -188 213 188
+rect -164 -281 -130 -247
+rect 32 -281 66 -247
+<< metal1 >>
+rect -78 281 -20 287
+rect -78 247 -66 281
+rect -32 247 -20 281
+rect -78 241 -20 247
+rect 118 281 176 287
+rect 118 247 130 281
+rect 164 247 176 281
+rect 118 241 176 247
+rect -219 188 -173 200
+rect -219 -188 -213 188
+rect -179 -188 -173 188
+rect -219 -200 -173 -188
+rect -121 188 -75 200
+rect -121 -188 -115 188
+rect -81 -188 -75 188
+rect -121 -200 -75 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 75 188 121 200
+rect 75 -188 81 188
+rect 115 -188 121 188
+rect 75 -200 121 -188
+rect 173 188 219 200
+rect 173 -188 179 188
+rect 213 -188 219 188
+rect 173 -200 219 -188
+rect -176 -247 -118 -241
+rect -176 -281 -164 -247
+rect -130 -281 -118 -247
+rect -176 -287 -118 -281
+rect 20 -247 78 -241
+rect 20 -281 32 -247
+rect 66 -281 78 -247
+rect 20 -287 78 -281
+<< properties >>
+string FIXED_BBOX -310 -366 310 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/esd/.magicrc b/mag/esd/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/esd/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/esd/comp.out b/mag/esd/comp.out
new file mode 100644
index 0000000..cca780a
--- /dev/null
+++ b/mag/esd/comp.out
@@ -0,0 +1,29 @@
+
+Class ../../xschem/esd/esd_diodes.spice (0):  Merged 18 parallel devices.
+Class esd-array.spice (1):  Merged 18 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../xschem/esd/esd_diodes.spi |Circuit 2: esd-array.spice                 
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__diode_pd2nw_11v0 (10->1)     |sky130_fd_pr__diode_pd2nw_11v0 (10->1)     
+sky130_fd_pr__diode_pw2nd_11v0 (10->1)     |sky130_fd_pr__diode_pw2nd_11v0 (10->1)     
+Number of devices: 2                       |Number of devices: 2                       
+Number of nets: 3                          |Number of nets: 3                          
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Property errors were found.
+Netlists match uniquely.
+There were property errors.
+sky130_fd_pr__diode_pw2nd_11v0:11 vs. sky130_fd_pr__diode_pw2nd_11v0:10:
+ area circuit1: 4e+12   circuit2: 4   (delta=200%, cutoff=2%)
+sky130_fd_pr__diode_pw2nd_11v0:11 vs. sky130_fd_pr__diode_pw2nd_11v0:10:
+Property pj in circuit2 has no matching property in circuit1
+sky130_fd_pr__diode_pd2nw_11v0:1 vs. sky130_fd_pr__diode_pd2nw_11v0:0:
+ area circuit1: 4e+12   circuit2: 4   (delta=200%, cutoff=2%)
+sky130_fd_pr__diode_pd2nw_11v0:1 vs. sky130_fd_pr__diode_pd2nw_11v0:0:
+Property pj in circuit2 has no matching property in circuit1
+Cells have no pins;  pin matching not needed.
+Device classes ../../xschem/esd/esd_diodes.spice and esd-array.spice are equivalent.
+Circuits match uniquely.
+Property errors were found.
+The following cells had property errors:
+ ../../xschem/esd/esd_diodes.spice
diff --git a/mag/esd/esd-array.ext b/mag/esd/esd-array.ext
new file mode 100644
index 0000000..333275f
--- /dev/null
+++ b/mag/esd/esd-array.ext
@@ -0,0 +1,80 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__diode_pw2nd_11v0_T9UBGD sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0 1 0 -5276 0 1 672
+use sky130_fd_pr__diode_pd2nw_11v0_33C8ED sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0 1 0 -5270 0 1 1608
+node "m1_n9140_490#" 10 11797.7 -9140 490 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2900600 30480 10280900 18120 0 0 0 0 0 0 0 0
+node "li_n9200_1250#" 1673 14981.6 -9200 1250 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2814800 38540 4537464 39516 0 0 0 0 0 0 0 0 0 0
+node "li_n9430_300#" 29 24882.1 -9430 300 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3952500 62500 3420436 41800 0 0 0 0 0 0 0 0 0 0
+node "w_n2010_1280#" 13110 103.5 -2010 1280 nw 0 0 0 0 34500 1480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_n9200_1250#" "w_n2010_1280#" 31.9039
+cap "li_n9430_300#" "m1_n9140_490#" 20502.2
+cap "li_n9200_1250#" "m1_n9140_490#" 23542.7
+cap "li_n9200_1250#" "li_n9430_300#" 9682.34
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3872_n200#" 334.565
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n4008_n336#" -224.76
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n4008_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3872_n200#" 464.658
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3192_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3056_n200#" -482.677
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3056_n200#" -323.088
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3192_n336#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -174.586
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2376_n336#" -183.822
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n1424_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2376_n336#" -511.573
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n1424_n200#" -358.768
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n744_n336#" -194.166
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n744_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_208_n200#" -192.437
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_208_n200#" -88.1326
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1024_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_888_n336#" -573.428
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_888_n336#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -174.586
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1024_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -386.462
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2520_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2656_n200#" -563.129
+cap "w_n2010_1280#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2656_n200#" -351.51
+cap "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2520_n336#" "w_n2010_1280#" -214.244
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n3782_n200#" 3.55271e-15
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n3782_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" 346.422
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -183.332
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2986_n200#" 243.502
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" -595.332
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2986_n200#" -5.77316e-15
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n1394_n200#" 260.811
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" -604.568
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -614.912
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_198_n200#" 328.595
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" -595.332
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_1790_n200#" 206.705
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_1790_n200#" 7.10543e-15
+cap "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "w_n2010_1280#" -606.485
+cap "w_n2010_1280#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_2586_n200#" 173.273
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2520_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_888_n336#" -16255.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2555068 -77640 -359020 -13782 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_888_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n744_n336#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n744_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2376_n336#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2376_n336#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3192_n336#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3192_n336#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n4124_n542#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n4008_n336#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n4008_n336#" "VSUBS"
+merge "VSUBS" "li_n9430_300#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_3382_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_3472_n200#" -935.963 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2426612 -30416 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_3472_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_2586_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_2586_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2656_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_2656_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1840_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1840_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_1790_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_1790_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_994_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_994_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1024_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_1024_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_198_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_198_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n598_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n598_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_208_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_208_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n608_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n608_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n1394_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n1394_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2190_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2190_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n1424_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n1424_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2240_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n2240_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2986_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n2986_n200#" "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n3782_n200#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/a_n3782_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3056_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3056_n200#" "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3872_n200#"
+merge "sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0/a_n3872_n200#" "m1_n9140_490#"
+merge "sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0/w_n3980_n398#" "w_n2010_1280#" -7956.31 0 0 0 0 -951492 -4580 0 0 0 0 0 0 1757632 -7104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1322504 -48978 4543960 -26152 0 0 0 0 0 0 0 0 0 0
+merge "w_n2010_1280#" "li_n9200_1250#"
diff --git a/mag/esd/esd-array.mag b/mag/esd/esd-array.mag
new file mode 100644
index 0000000..6293c09
--- /dev/null
+++ b/mag/esd/esd-array.mag
@@ -0,0 +1,314 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< nwell >>
+rect -1005 640 -980 985
+<< pwell >>
+rect -4320 160 -4220 510
+rect -3910 155 -3810 505
+rect -3505 150 -3405 500
+rect -3095 150 -2995 500
+rect -2690 150 -2590 500
+rect -2280 150 -2180 500
+rect -1870 150 -1770 500
+rect -1460 150 -1360 500
+rect -1055 150 -955 500
+rect -645 150 -555 550
+<< locali >>
+rect -4715 1055 -555 1095
+rect -4715 550 -4680 1055
+rect -4565 935 -4290 940
+rect -4565 670 -4560 935
+rect -4295 670 -4290 935
+rect -4565 665 -4290 670
+rect -4170 935 -3890 940
+rect -4170 670 -4160 935
+rect -3895 670 -3890 935
+rect -4170 665 -3890 670
+rect -3770 935 -3490 940
+rect -3770 670 -3765 935
+rect -3495 670 -3490 935
+rect -3770 665 -3490 670
+rect -3370 935 -3095 940
+rect -3370 670 -3365 935
+rect -3100 670 -3095 935
+rect -3370 665 -3095 670
+rect -2975 935 -2695 940
+rect -2975 670 -2970 935
+rect -2700 670 -2695 935
+rect -2975 665 -2695 670
+rect -2575 935 -2300 940
+rect -2575 670 -2570 935
+rect -2305 670 -2300 935
+rect -2575 665 -2300 670
+rect -2180 935 -1900 940
+rect -2180 670 -2175 935
+rect -1905 670 -1900 935
+rect -2180 665 -1900 670
+rect -1780 935 -1500 940
+rect -1780 670 -1775 935
+rect -1505 670 -1500 935
+rect -1780 665 -1500 670
+rect -1385 670 -1375 940
+rect -1105 670 -1100 940
+rect -1385 665 -1100 670
+rect -985 670 -980 940
+rect -710 670 -705 940
+rect -985 665 -705 670
+rect -590 550 -555 1055
+rect -560 150 -555 550
+<< viali >>
+rect -4600 940 -665 985
+rect -4600 665 -4565 940
+rect -4290 665 -4170 940
+rect -3890 665 -3770 940
+rect -3490 665 -3370 940
+rect -3095 665 -2975 940
+rect -2695 665 -2575 940
+rect -2300 665 -2180 940
+rect -1900 665 -1780 940
+rect -1500 665 -1385 940
+rect -1100 665 -985 940
+rect -705 665 -665 940
+rect -4600 625 -665 665
+rect -4715 485 -560 550
+rect -4715 190 -4620 485
+rect -4325 190 -4215 485
+rect -3915 190 -3805 485
+rect -3510 190 -3400 485
+rect -3100 190 -2990 485
+rect -2695 190 -2585 485
+rect -2285 190 -2175 485
+rect -1875 190 -1765 485
+rect -1470 190 -1360 485
+rect -1060 190 -950 485
+rect -655 190 -560 485
+rect -4715 150 -560 190
+<< metal1 >>
+rect -4605 988 -660 1095
+rect -4606 985 -659 988
+rect -4606 937 -4600 985
+rect -4603 668 -4600 937
+rect -4606 625 -4600 668
+rect -4565 937 -4290 940
+rect -4565 668 -4562 937
+rect -4530 710 -4525 895
+rect -4335 710 -4330 895
+rect -4293 668 -4290 937
+rect -4565 665 -4290 668
+rect -4170 937 -3890 940
+rect -4170 668 -4167 937
+rect -4130 710 -4125 895
+rect -3935 710 -3930 895
+rect -3893 668 -3890 937
+rect -4170 665 -3890 668
+rect -3770 937 -3490 940
+rect -3770 668 -3767 937
+rect -3730 710 -3725 895
+rect -3535 710 -3530 895
+rect -3493 668 -3490 937
+rect -3770 665 -3490 668
+rect -3370 937 -3095 940
+rect -3370 668 -3367 937
+rect -3335 710 -3330 895
+rect -3140 710 -3135 895
+rect -3098 668 -3095 937
+rect -3370 665 -3095 668
+rect -2975 937 -2695 940
+rect -2975 668 -2972 937
+rect -2935 710 -2930 895
+rect -2740 710 -2735 895
+rect -2698 668 -2695 937
+rect -2975 665 -2695 668
+rect -2575 937 -2300 940
+rect -2575 668 -2572 937
+rect -2540 710 -2535 895
+rect -2345 710 -2340 895
+rect -2303 668 -2300 937
+rect -2575 665 -2300 668
+rect -2180 937 -1900 940
+rect -2180 668 -2177 937
+rect -2140 710 -2135 895
+rect -1945 710 -1940 895
+rect -1903 668 -1900 937
+rect -2180 665 -1900 668
+rect -1780 937 -1500 940
+rect -1780 668 -1777 937
+rect -1740 710 -1735 895
+rect -1545 710 -1540 895
+rect -1503 668 -1500 937
+rect -1780 665 -1500 668
+rect -1385 937 -1100 940
+rect -1385 668 -1382 937
+rect -1340 710 -1335 895
+rect -1150 710 -1145 895
+rect -1103 668 -1100 937
+rect -1385 665 -1100 668
+rect -985 937 -705 940
+rect -985 668 -982 937
+rect -940 710 -935 895
+rect -750 710 -745 895
+rect -708 668 -705 937
+rect -985 665 -705 668
+rect -665 937 -659 985
+rect -665 668 -662 937
+rect -665 625 -659 668
+rect -4606 622 -659 625
+rect -4603 619 -4562 622
+rect -4293 619 -4167 622
+rect -3893 619 -3767 622
+rect -3493 619 -3367 622
+rect -3098 619 -2972 622
+rect -2698 619 -2572 622
+rect -2303 619 -2177 622
+rect -1903 619 -1777 622
+rect -1503 619 -1382 622
+rect -1103 619 -982 622
+rect -708 619 -662 622
+rect -4718 553 -4617 556
+rect -4328 553 -4212 556
+rect -3918 553 -3802 556
+rect -3513 553 -3397 556
+rect -3103 553 -2987 556
+rect -2698 553 -2582 556
+rect -2288 553 -2172 556
+rect -1878 553 -1762 556
+rect -1473 553 -1357 556
+rect -1063 553 -947 556
+rect -658 553 -557 556
+rect -4721 550 -554 553
+rect -4721 482 -4715 550
+rect -4718 193 -4715 482
+rect -4721 150 -4715 193
+rect -4620 482 -4325 485
+rect -4620 193 -4617 482
+rect -4570 245 -4565 425
+rect -4385 245 -4380 425
+rect -4328 193 -4325 482
+rect -4620 190 -4325 193
+rect -4215 482 -3915 485
+rect -4215 193 -4212 482
+rect -4160 245 -4155 425
+rect -3975 245 -3970 425
+rect -3918 193 -3915 482
+rect -4215 190 -3915 193
+rect -3805 482 -3510 485
+rect -3805 193 -3802 482
+rect -3755 245 -3750 430
+rect -3565 245 -3560 430
+rect -3513 193 -3510 482
+rect -3805 190 -3510 193
+rect -3400 482 -3100 485
+rect -3400 193 -3397 482
+rect -3345 245 -3340 430
+rect -3155 245 -3150 430
+rect -3103 193 -3100 482
+rect -3400 190 -3100 193
+rect -2990 482 -2695 485
+rect -2990 193 -2987 482
+rect -2940 245 -2935 430
+rect -2750 245 -2745 430
+rect -2698 193 -2695 482
+rect -2990 190 -2695 193
+rect -2585 482 -2285 485
+rect -2585 193 -2582 482
+rect -2530 245 -2525 430
+rect -2340 245 -2335 430
+rect -2288 193 -2285 482
+rect -2585 190 -2285 193
+rect -2175 482 -1875 485
+rect -2175 193 -2172 482
+rect -2125 245 -2120 430
+rect -1935 245 -1930 430
+rect -1878 193 -1875 482
+rect -2175 190 -1875 193
+rect -1765 482 -1470 485
+rect -1765 193 -1762 482
+rect -1715 245 -1710 430
+rect -1525 245 -1520 430
+rect -1473 193 -1470 482
+rect -1765 190 -1470 193
+rect -1360 482 -1060 485
+rect -1360 193 -1357 482
+rect -1305 245 -1300 430
+rect -1115 245 -1110 430
+rect -1063 193 -1060 482
+rect -1360 190 -1060 193
+rect -950 482 -655 485
+rect -950 193 -947 482
+rect -900 245 -895 430
+rect -710 245 -705 430
+rect -658 193 -655 482
+rect -950 190 -655 193
+rect -560 482 -554 550
+rect -560 193 -557 482
+rect -560 150 -554 193
+rect -4721 147 -554 150
+rect -4718 144 -4617 147
+rect -4328 144 -4212 147
+rect -3918 144 -3802 147
+rect -3513 144 -3397 147
+rect -3103 144 -2987 147
+rect -2698 144 -2582 147
+rect -2288 144 -2172 147
+rect -1878 144 -1762 147
+rect -1473 144 -1357 147
+rect -1063 144 -947 147
+rect -658 144 -557 147
+<< via1 >>
+rect -4525 710 -4335 895
+rect -4125 710 -3935 895
+rect -3725 710 -3535 895
+rect -3330 710 -3140 895
+rect -2930 710 -2740 895
+rect -2535 710 -2345 895
+rect -2135 710 -1945 895
+rect -1735 710 -1545 895
+rect -1335 710 -1150 895
+rect -935 710 -750 895
+rect -4565 245 -4385 425
+rect -4155 245 -3975 425
+rect -3750 245 -3565 430
+rect -3340 245 -3155 430
+rect -2935 245 -2750 430
+rect -2525 245 -2340 430
+rect -2120 245 -1935 430
+rect -1710 245 -1525 430
+rect -1300 245 -1115 430
+rect -895 245 -710 430
+<< metal2 >>
+rect -4570 895 -705 905
+rect -4570 710 -4525 895
+rect -4335 710 -4125 895
+rect -3935 710 -3725 895
+rect -3535 710 -3330 895
+rect -3140 710 -2930 895
+rect -2740 710 -2535 895
+rect -2345 710 -2135 895
+rect -1945 710 -1735 895
+rect -1545 710 -1335 895
+rect -1150 710 -935 895
+rect -750 710 -705 895
+rect -4570 430 -705 710
+rect -4570 425 -3750 430
+rect -4570 245 -4565 425
+rect -4385 245 -4155 425
+rect -3975 245 -3750 425
+rect -3565 245 -3340 430
+rect -3155 245 -2935 430
+rect -2750 245 -2525 430
+rect -2340 245 -2120 430
+rect -1935 245 -1710 430
+rect -1525 245 -1300 430
+rect -1115 245 -895 430
+rect -710 245 -705 430
+rect -4570 240 -705 245
+use sky130_fd_pr__diode_pd2nw_11v0_33C8ED  sky130_fd_pr__diode_pd2nw_11v0_33C8ED_0
+timestamp 1647868710
+transform 1 0 -2635 0 1 804
+box -2080 -289 2080 289
+use sky130_fd_pr__diode_pw2nd_11v0_T9UBGD  sky130_fd_pr__diode_pw2nd_11v0_T9UBGD_0
+timestamp 1647868710
+transform 1 0 -2638 0 1 336
+box -2022 -186 2022 186
+<< end >>
diff --git a/mag/esd/esd-array.spice b/mag/esd/esd-array.spice
new file mode 100644
index 0000000..f12a7d9
--- /dev/null
+++ b/mag/esd/esd-array.spice
@@ -0,0 +1,22 @@
+* SPICE3 file created from esd-array.ext - technology: sky130A
+
+D0 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D1 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D2 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D3 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D4 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D5 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D6 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D7 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D8 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D9 m1_n9140_490# w_n2010_1280# sky130_fd_pr__diode_pd2nw_11v0 pj=8e+06u area=4e+12p
+D10 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D11 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D12 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D13 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D14 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D15 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D16 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D17 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D18 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
+D19 VSUBS m1_n9140_490# sky130_fd_pr__diode_pw2nd_11v0 pj=8e+06u area=4e+12p
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.ext b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.ext
new file mode 100644
index 0000000..274543f
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.ext
@@ -0,0 +1,48 @@
+timestamp 1646921651
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pd2nw_05v5 a=area p=pj
+node "a_3094_n200#" 14 184.949 3094 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_2362_n200#" 14 123.523 2362 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_1630_n200#" 14 123.523 1630 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_898_n200#" 14 123.523 898 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_166_n200#" 14 123.523 166 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n566_n200#" 14 123.523 -566 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n1298_n200#" 14 123.523 -1298 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2030_n200#" 14 123.523 -2030 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2762_n200#" 14 123.523 -2762 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n3494_n200#" 14 184.949 -3494 -200 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "w_n3632_n338#" 98997 18947.8 -3632 -338 nw 0 0 0 0 4910464 15880 0 0 775200 45600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 775200 45600 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "a_n3734_n440#" 0 0 -3734 -440 ppd 0 0 0 0 0 0 0 0 0 0 563040 33120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 563040 33120 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n3632_n338#" "a_1630_n200#" 999.298
+cap "w_n3632_n338#" "a_n566_n200#" 999.298
+cap "w_n3632_n338#" "a_3094_n200#" 944.395
+cap "a_2362_n200#" "a_1630_n200#" 90.8867
+cap "a_n566_n200#" "a_166_n200#" 90.8867
+cap "a_3094_n200#" "a_2362_n200#" 90.8867
+cap "a_n2762_n200#" "a_n3494_n200#" 90.8867
+cap "w_n3632_n338#" "a_n1298_n200#" 999.298
+cap "w_n3632_n338#" "a_n2030_n200#" 999.298
+cap "a_n2030_n200#" "a_n2762_n200#" 90.8867
+cap "w_n3632_n338#" "a_898_n200#" 999.298
+cap "a_166_n200#" "a_898_n200#" 90.8867
+cap "a_n1298_n200#" "a_n566_n200#" 90.8867
+cap "w_n3632_n338#" "a_166_n200#" 999.298
+cap "w_n3632_n338#" "a_2362_n200#" 999.298
+cap "a_n2030_n200#" "a_n1298_n200#" 90.8867
+cap "a_898_n200#" "a_1630_n200#" 90.8867
+cap "w_n3632_n338#" "a_n2762_n200#" 999.298
+cap "w_n3632_n338#" "a_n3494_n200#" 944.395
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 3094 -200 3095 -199 a=160000 p=1600 "w_n3632_n338#" "a_3094_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 2362 -200 2363 -199 a=160000 p=1600 "w_n3632_n338#" "a_2362_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 1630 -200 1631 -199 a=160000 p=1600 "w_n3632_n338#" "a_1630_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 898 -200 899 -199 a=160000 p=1600 "w_n3632_n338#" "a_898_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 166 -200 167 -199 a=160000 p=1600 "w_n3632_n338#" "a_166_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -566 -200 -565 -199 a=160000 p=1600 "w_n3632_n338#" "a_n566_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -1298 -200 -1297 -199 a=160000 p=1600 "w_n3632_n338#" "a_n1298_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -2030 -200 -2029 -199 a=160000 p=1600 "w_n3632_n338#" "a_n2030_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -2762 -200 -2761 -199 a=160000 p=1600 "w_n3632_n338#" "a_n2762_n200#" 752 0 "w_n3632_n338#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -3494 -200 -3493 -199 a=160000 p=1600 "w_n3632_n338#" "a_n3494_n200#" 752 0 "w_n3632_n338#" 0 0
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.mag b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.mag
new file mode 100644
index 0000000..775f8ee
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_33C8ED.mag
@@ -0,0 +1,365 @@
+magic
+tech sky130A
+timestamp 1646911677
+<< nwell >>
+rect -1816 -169 1816 169
+<< pwell >>
+rect -1885 169 1885 238
+rect -1885 -169 -1816 169
+rect 1816 -169 1885 169
+rect -1885 -238 1885 -169
+<< psubdiff >>
+rect -1867 203 -1819 220
+rect 1819 203 1867 220
+rect -1867 172 -1850 203
+rect 1850 172 1867 203
+rect -1867 -203 -1850 -172
+rect 1850 -203 1867 -172
+rect -1867 -220 -1819 -203
+rect 1819 -220 1867 -203
+<< nsubdiff >>
+rect -1798 134 -1750 151
+rect -1544 134 -1496 151
+rect -1798 103 -1781 134
+rect -1513 103 -1496 134
+rect -1798 -134 -1781 -103
+rect -1513 -134 -1496 -103
+rect -1798 -151 -1750 -134
+rect -1544 -151 -1496 -134
+rect -1432 134 -1384 151
+rect -1178 134 -1130 151
+rect -1432 103 -1415 134
+rect -1147 103 -1130 134
+rect -1432 -134 -1415 -103
+rect -1147 -134 -1130 -103
+rect -1432 -151 -1384 -134
+rect -1178 -151 -1130 -134
+rect -1066 134 -1018 151
+rect -812 134 -764 151
+rect -1066 103 -1049 134
+rect -781 103 -764 134
+rect -1066 -134 -1049 -103
+rect -781 -134 -764 -103
+rect -1066 -151 -1018 -134
+rect -812 -151 -764 -134
+rect -700 134 -652 151
+rect -446 134 -398 151
+rect -700 103 -683 134
+rect -415 103 -398 134
+rect -700 -134 -683 -103
+rect -415 -134 -398 -103
+rect -700 -151 -652 -134
+rect -446 -151 -398 -134
+rect -334 134 -286 151
+rect -80 134 -32 151
+rect -334 103 -317 134
+rect -49 103 -32 134
+rect -334 -134 -317 -103
+rect -49 -134 -32 -103
+rect -334 -151 -286 -134
+rect -80 -151 -32 -134
+rect 32 134 80 151
+rect 286 134 334 151
+rect 32 103 49 134
+rect 317 103 334 134
+rect 32 -134 49 -103
+rect 317 -134 334 -103
+rect 32 -151 80 -134
+rect 286 -151 334 -134
+rect 398 134 446 151
+rect 652 134 700 151
+rect 398 103 415 134
+rect 683 103 700 134
+rect 398 -134 415 -103
+rect 683 -134 700 -103
+rect 398 -151 446 -134
+rect 652 -151 700 -134
+rect 764 134 812 151
+rect 1018 134 1066 151
+rect 764 103 781 134
+rect 1049 103 1066 134
+rect 764 -134 781 -103
+rect 1049 -134 1066 -103
+rect 764 -151 812 -134
+rect 1018 -151 1066 -134
+rect 1130 134 1178 151
+rect 1384 134 1432 151
+rect 1130 103 1147 134
+rect 1415 103 1432 134
+rect 1130 -134 1147 -103
+rect 1415 -134 1432 -103
+rect 1130 -151 1178 -134
+rect 1384 -151 1432 -134
+rect 1496 134 1544 151
+rect 1750 134 1798 151
+rect 1496 103 1513 134
+rect 1781 103 1798 134
+rect 1496 -134 1513 -103
+rect 1781 -134 1798 -103
+rect 1496 -151 1544 -134
+rect 1750 -151 1798 -134
+<< psubdiffcont >>
+rect -1819 203 1819 220
+rect -1867 -172 -1850 172
+rect 1850 -172 1867 172
+rect -1819 -220 1819 -203
+<< nsubdiffcont >>
+rect -1750 134 -1544 151
+rect -1798 -103 -1781 103
+rect -1513 -103 -1496 103
+rect -1750 -151 -1544 -134
+rect -1384 134 -1178 151
+rect -1432 -103 -1415 103
+rect -1147 -103 -1130 103
+rect -1384 -151 -1178 -134
+rect -1018 134 -812 151
+rect -1066 -103 -1049 103
+rect -781 -103 -764 103
+rect -1018 -151 -812 -134
+rect -652 134 -446 151
+rect -700 -103 -683 103
+rect -415 -103 -398 103
+rect -652 -151 -446 -134
+rect -286 134 -80 151
+rect -334 -103 -317 103
+rect -49 -103 -32 103
+rect -286 -151 -80 -134
+rect 80 134 286 151
+rect 32 -103 49 103
+rect 317 -103 334 103
+rect 80 -151 286 -134
+rect 446 134 652 151
+rect 398 -103 415 103
+rect 683 -103 700 103
+rect 446 -151 652 -134
+rect 812 134 1018 151
+rect 764 -103 781 103
+rect 1049 -103 1066 103
+rect 812 -151 1018 -134
+rect 1178 134 1384 151
+rect 1130 -103 1147 103
+rect 1415 -103 1432 103
+rect 1178 -151 1384 -134
+rect 1544 134 1750 151
+rect 1496 -103 1513 103
+rect 1781 -103 1798 103
+rect 1544 -151 1750 -134
+<< pdiode >>
+rect -1747 94 -1547 100
+rect -1747 -94 -1741 94
+rect -1553 -94 -1547 94
+rect -1747 -100 -1547 -94
+rect -1381 94 -1181 100
+rect -1381 -94 -1375 94
+rect -1187 -94 -1181 94
+rect -1381 -100 -1181 -94
+rect -1015 94 -815 100
+rect -1015 -94 -1009 94
+rect -821 -94 -815 94
+rect -1015 -100 -815 -94
+rect -649 94 -449 100
+rect -649 -94 -643 94
+rect -455 -94 -449 94
+rect -649 -100 -449 -94
+rect -283 94 -83 100
+rect -283 -94 -277 94
+rect -89 -94 -83 94
+rect -283 -100 -83 -94
+rect 83 94 283 100
+rect 83 -94 89 94
+rect 277 -94 283 94
+rect 83 -100 283 -94
+rect 449 94 649 100
+rect 449 -94 455 94
+rect 643 -94 649 94
+rect 449 -100 649 -94
+rect 815 94 1015 100
+rect 815 -94 821 94
+rect 1009 -94 1015 94
+rect 815 -100 1015 -94
+rect 1181 94 1381 100
+rect 1181 -94 1187 94
+rect 1375 -94 1381 94
+rect 1181 -100 1381 -94
+rect 1547 94 1747 100
+rect 1547 -94 1553 94
+rect 1741 -94 1747 94
+rect 1547 -100 1747 -94
+<< pdiodec >>
+rect -1741 -94 -1553 94
+rect -1375 -94 -1187 94
+rect -1009 -94 -821 94
+rect -643 -94 -455 94
+rect -277 -94 -89 94
+rect 89 -94 277 94
+rect 455 -94 643 94
+rect 821 -94 1009 94
+rect 1187 -94 1375 94
+rect 1553 -94 1741 94
+<< locali >>
+rect -1867 203 -1819 220
+rect 1819 203 1867 220
+rect -1867 172 -1850 203
+rect 1850 172 1867 203
+rect -1798 134 -1750 151
+rect -1544 134 -1496 151
+rect -1798 103 -1781 134
+rect -1513 103 -1496 134
+rect -1749 -94 -1741 94
+rect -1553 -94 -1545 94
+rect -1798 -134 -1781 -103
+rect -1513 -134 -1496 -103
+rect -1798 -151 -1750 -134
+rect -1544 -151 -1496 -134
+rect -1432 134 -1384 151
+rect -1178 134 -1130 151
+rect -1432 103 -1415 134
+rect -1147 103 -1130 134
+rect -1383 -94 -1375 94
+rect -1187 -94 -1179 94
+rect -1432 -134 -1415 -103
+rect -1147 -134 -1130 -103
+rect -1432 -151 -1384 -134
+rect -1178 -151 -1130 -134
+rect -1066 134 -1018 151
+rect -812 134 -764 151
+rect -1066 103 -1049 134
+rect -781 103 -764 134
+rect -1017 -94 -1009 94
+rect -821 -94 -813 94
+rect -1066 -134 -1049 -103
+rect -781 -134 -764 -103
+rect -1066 -151 -1018 -134
+rect -812 -151 -764 -134
+rect -700 134 -652 151
+rect -446 134 -398 151
+rect -700 103 -683 134
+rect -415 103 -398 134
+rect -651 -94 -643 94
+rect -455 -94 -447 94
+rect -700 -134 -683 -103
+rect -415 -134 -398 -103
+rect -700 -151 -652 -134
+rect -446 -151 -398 -134
+rect -334 134 -286 151
+rect -80 134 -32 151
+rect -334 103 -317 134
+rect -49 103 -32 134
+rect -285 -94 -277 94
+rect -89 -94 -81 94
+rect -334 -134 -317 -103
+rect -49 -134 -32 -103
+rect -334 -151 -286 -134
+rect -80 -151 -32 -134
+rect 32 134 80 151
+rect 286 134 334 151
+rect 32 103 49 134
+rect 317 103 334 134
+rect 81 -94 89 94
+rect 277 -94 285 94
+rect 32 -134 49 -103
+rect 317 -134 334 -103
+rect 32 -151 80 -134
+rect 286 -151 334 -134
+rect 398 134 446 151
+rect 652 134 700 151
+rect 398 103 415 134
+rect 683 103 700 134
+rect 447 -94 455 94
+rect 643 -94 651 94
+rect 398 -134 415 -103
+rect 683 -134 700 -103
+rect 398 -151 446 -134
+rect 652 -151 700 -134
+rect 764 134 812 151
+rect 1018 134 1066 151
+rect 764 103 781 134
+rect 1049 103 1066 134
+rect 813 -94 821 94
+rect 1009 -94 1017 94
+rect 764 -134 781 -103
+rect 1049 -134 1066 -103
+rect 764 -151 812 -134
+rect 1018 -151 1066 -134
+rect 1130 134 1178 151
+rect 1384 134 1432 151
+rect 1130 103 1147 134
+rect 1415 103 1432 134
+rect 1179 -94 1187 94
+rect 1375 -94 1383 94
+rect 1130 -134 1147 -103
+rect 1415 -134 1432 -103
+rect 1130 -151 1178 -134
+rect 1384 -151 1432 -134
+rect 1496 134 1544 151
+rect 1750 134 1798 151
+rect 1496 103 1513 134
+rect 1781 103 1798 134
+rect 1545 -94 1553 94
+rect 1741 -94 1749 94
+rect 1496 -134 1513 -103
+rect 1781 -134 1798 -103
+rect 1496 -151 1544 -134
+rect 1750 -151 1798 -134
+rect -1867 -203 -1850 -172
+rect 1850 -203 1867 -172
+rect -1867 -220 -1819 -203
+rect 1819 -220 1867 -203
+<< viali >>
+rect -1741 -94 -1553 94
+rect -1375 -94 -1187 94
+rect -1009 -94 -821 94
+rect -643 -94 -455 94
+rect -277 -94 -89 94
+rect 89 -94 277 94
+rect 455 -94 643 94
+rect 821 -94 1009 94
+rect 1187 -94 1375 94
+rect 1553 -94 1741 94
+<< metal1 >>
+rect -1747 94 -1547 97
+rect -1747 -94 -1741 94
+rect -1553 -94 -1547 94
+rect -1747 -97 -1547 -94
+rect -1381 94 -1181 97
+rect -1381 -94 -1375 94
+rect -1187 -94 -1181 94
+rect -1381 -97 -1181 -94
+rect -1015 94 -815 97
+rect -1015 -94 -1009 94
+rect -821 -94 -815 94
+rect -1015 -97 -815 -94
+rect -649 94 -449 97
+rect -649 -94 -643 94
+rect -455 -94 -449 94
+rect -649 -97 -449 -94
+rect -283 94 -83 97
+rect -283 -94 -277 94
+rect -89 -94 -83 94
+rect -283 -97 -83 -94
+rect 83 94 283 97
+rect 83 -94 89 94
+rect 277 -94 283 94
+rect 83 -97 283 -94
+rect 449 94 649 97
+rect 449 -94 455 94
+rect 643 -94 649 94
+rect 449 -97 649 -94
+rect 815 94 1015 97
+rect 815 -94 821 94
+rect 1009 -94 1015 94
+rect 815 -97 1015 -94
+rect 1181 94 1381 97
+rect 1181 -94 1187 94
+rect 1375 -94 1381 94
+rect 1181 -97 1381 -94
+rect 1547 94 1747 97
+rect 1547 -94 1553 94
+rect 1741 -94 1747 94
+rect 1547 -97 1747 -94
+<< properties >>
+string FIXED_BBOX 1504 -142 1789 142
+string gencell sky130_fd_pr__diode_pd2nw_05v5
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 glc 1 grc 1 gtc 1 gbc 1 doverlap 0 compatible {sky130_fd_pr__diode_pd2nw_05v5 sky130_fd_pr__diode_pd2nw_05v5_lvt  sky130_fd_pr__diode_pd2nw_05v5_hvt sky130_fd_pr__diode_pd2nw_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.ext b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.ext
new file mode 100644
index 0000000..9ca7445
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.ext
@@ -0,0 +1,48 @@
+timestamp 1646653136
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pd2nw_05v5 a=area p=pj
+node "a_2294_n100#" 15 -144.435 2294 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_1762_n100#" 15 -173.188 1762 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_1230_n100#" 15 -173.188 1230 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_698_n100#" 15 -173.188 698 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_166_n100#" 15 -173.188 166 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n366_n100#" 15 -173.188 -366 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n898_n100#" 15 -173.188 -898 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n1430_n100#" 15 -173.188 -1430 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n1962_n100#" 15 -173.188 -1962 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n2494_n100#" 15 -144.435 -2494 -100 pdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "w_n2632_n238#" 68047 10337.2 -2632 -238 nw 0 0 0 0 2505664 11480 0 0 503200 29600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 503200 29600 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "w_n2770_n376#" 0 0 -2770 -376 pw 1660416 24064 0 0 0 0 0 0 0 0 413440 24320 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 413440 24320 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_1230_n100#" "a_698_n100#" 43.4079
+cap "a_n2494_n100#" "w_n2632_n238#" 696.622
+cap "a_n2494_n100#" "a_n1962_n100#" 43.4079
+cap "w_n2632_n238#" "a_166_n100#" 722.321
+cap "w_n2632_n238#" "a_n898_n100#" 722.321
+cap "w_n2632_n238#" "a_n1962_n100#" 722.321
+cap "a_n898_n100#" "a_n1430_n100#" 43.4079
+cap "w_n2632_n238#" "a_n1430_n100#" 722.321
+cap "a_n1430_n100#" "a_n1962_n100#" 43.4079
+cap "w_n2632_n238#" "a_1762_n100#" 722.321
+cap "w_n2632_n238#" "a_1230_n100#" 722.321
+cap "a_166_n100#" "a_698_n100#" 43.4079
+cap "w_n2632_n238#" "a_2294_n100#" 696.622
+cap "a_1230_n100#" "a_1762_n100#" 43.4079
+cap "w_n2632_n238#" "a_698_n100#" 722.321
+cap "a_1762_n100#" "a_2294_n100#" 43.4079
+cap "a_n366_n100#" "a_166_n100#" 43.4079
+cap "a_n366_n100#" "a_n898_n100#" 43.4079
+cap "w_n2632_n238#" "a_n366_n100#" 722.321
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 2294 -100 2295 -99 a=40000 p=800 "w_n2632_n238#" "a_2294_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 1762 -100 1763 -99 a=40000 p=800 "w_n2632_n238#" "a_1762_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 1230 -100 1231 -99 a=40000 p=800 "w_n2632_n238#" "a_1230_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 698 -100 699 -99 a=40000 p=800 "w_n2632_n238#" "a_698_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 166 -100 167 -99 a=40000 p=800 "w_n2632_n238#" "a_166_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -366 -100 -365 -99 a=40000 p=800 "w_n2632_n238#" "a_n366_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -898 -100 -897 -99 a=40000 p=800 "w_n2632_n238#" "a_n898_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -1430 -100 -1429 -99 a=40000 p=800 "w_n2632_n238#" "a_n1430_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -1962 -100 -1961 -99 a=40000 p=800 "w_n2632_n238#" "a_n1962_n100#" 352 0 "w_n2632_n238#" 0 0
+device pdiode sky130_fd_pr__diode_pd2nw_05v5 -2494 -100 -2493 -99 a=40000 p=800 "w_n2632_n238#" "a_n2494_n100#" 352 0 "w_n2632_n238#" 0 0
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.mag b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.mag
new file mode 100644
index 0000000..080a478
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_AEDW7W.mag
@@ -0,0 +1,365 @@
+magic
+tech sky130A
+timestamp 1646653136
+<< nwell >>
+rect -1316 -119 1316 119
+<< pwell >>
+rect -1385 119 1385 188
+rect -1385 -119 -1316 119
+rect 1316 -119 1385 119
+rect -1385 -188 1385 -119
+<< psubdiff >>
+rect -1367 153 -1319 170
+rect 1319 153 1367 170
+rect -1367 122 -1350 153
+rect 1350 122 1367 153
+rect -1367 -153 -1350 -122
+rect 1350 -153 1367 -122
+rect -1367 -170 -1319 -153
+rect 1319 -170 1367 -153
+<< nsubdiff >>
+rect -1298 84 -1250 101
+rect -1144 84 -1096 101
+rect -1298 53 -1281 84
+rect -1113 53 -1096 84
+rect -1298 -84 -1281 -53
+rect -1113 -84 -1096 -53
+rect -1298 -101 -1250 -84
+rect -1144 -101 -1096 -84
+rect -1032 84 -984 101
+rect -878 84 -830 101
+rect -1032 53 -1015 84
+rect -847 53 -830 84
+rect -1032 -84 -1015 -53
+rect -847 -84 -830 -53
+rect -1032 -101 -984 -84
+rect -878 -101 -830 -84
+rect -766 84 -718 101
+rect -612 84 -564 101
+rect -766 53 -749 84
+rect -581 53 -564 84
+rect -766 -84 -749 -53
+rect -581 -84 -564 -53
+rect -766 -101 -718 -84
+rect -612 -101 -564 -84
+rect -500 84 -452 101
+rect -346 84 -298 101
+rect -500 53 -483 84
+rect -315 53 -298 84
+rect -500 -84 -483 -53
+rect -315 -84 -298 -53
+rect -500 -101 -452 -84
+rect -346 -101 -298 -84
+rect -234 84 -186 101
+rect -80 84 -32 101
+rect -234 53 -217 84
+rect -49 53 -32 84
+rect -234 -84 -217 -53
+rect -49 -84 -32 -53
+rect -234 -101 -186 -84
+rect -80 -101 -32 -84
+rect 32 84 80 101
+rect 186 84 234 101
+rect 32 53 49 84
+rect 217 53 234 84
+rect 32 -84 49 -53
+rect 217 -84 234 -53
+rect 32 -101 80 -84
+rect 186 -101 234 -84
+rect 298 84 346 101
+rect 452 84 500 101
+rect 298 53 315 84
+rect 483 53 500 84
+rect 298 -84 315 -53
+rect 483 -84 500 -53
+rect 298 -101 346 -84
+rect 452 -101 500 -84
+rect 564 84 612 101
+rect 718 84 766 101
+rect 564 53 581 84
+rect 749 53 766 84
+rect 564 -84 581 -53
+rect 749 -84 766 -53
+rect 564 -101 612 -84
+rect 718 -101 766 -84
+rect 830 84 878 101
+rect 984 84 1032 101
+rect 830 53 847 84
+rect 1015 53 1032 84
+rect 830 -84 847 -53
+rect 1015 -84 1032 -53
+rect 830 -101 878 -84
+rect 984 -101 1032 -84
+rect 1096 84 1144 101
+rect 1250 84 1298 101
+rect 1096 53 1113 84
+rect 1281 53 1298 84
+rect 1096 -84 1113 -53
+rect 1281 -84 1298 -53
+rect 1096 -101 1144 -84
+rect 1250 -101 1298 -84
+<< psubdiffcont >>
+rect -1319 153 1319 170
+rect -1367 -122 -1350 122
+rect 1350 -122 1367 122
+rect -1319 -170 1319 -153
+<< nsubdiffcont >>
+rect -1250 84 -1144 101
+rect -1298 -53 -1281 53
+rect -1113 -53 -1096 53
+rect -1250 -101 -1144 -84
+rect -984 84 -878 101
+rect -1032 -53 -1015 53
+rect -847 -53 -830 53
+rect -984 -101 -878 -84
+rect -718 84 -612 101
+rect -766 -53 -749 53
+rect -581 -53 -564 53
+rect -718 -101 -612 -84
+rect -452 84 -346 101
+rect -500 -53 -483 53
+rect -315 -53 -298 53
+rect -452 -101 -346 -84
+rect -186 84 -80 101
+rect -234 -53 -217 53
+rect -49 -53 -32 53
+rect -186 -101 -80 -84
+rect 80 84 186 101
+rect 32 -53 49 53
+rect 217 -53 234 53
+rect 80 -101 186 -84
+rect 346 84 452 101
+rect 298 -53 315 53
+rect 483 -53 500 53
+rect 346 -101 452 -84
+rect 612 84 718 101
+rect 564 -53 581 53
+rect 749 -53 766 53
+rect 612 -101 718 -84
+rect 878 84 984 101
+rect 830 -53 847 53
+rect 1015 -53 1032 53
+rect 878 -101 984 -84
+rect 1144 84 1250 101
+rect 1096 -53 1113 53
+rect 1281 -53 1298 53
+rect 1144 -101 1250 -84
+<< pdiode >>
+rect -1247 44 -1147 50
+rect -1247 -44 -1241 44
+rect -1153 -44 -1147 44
+rect -1247 -50 -1147 -44
+rect -981 44 -881 50
+rect -981 -44 -975 44
+rect -887 -44 -881 44
+rect -981 -50 -881 -44
+rect -715 44 -615 50
+rect -715 -44 -709 44
+rect -621 -44 -615 44
+rect -715 -50 -615 -44
+rect -449 44 -349 50
+rect -449 -44 -443 44
+rect -355 -44 -349 44
+rect -449 -50 -349 -44
+rect -183 44 -83 50
+rect -183 -44 -177 44
+rect -89 -44 -83 44
+rect -183 -50 -83 -44
+rect 83 44 183 50
+rect 83 -44 89 44
+rect 177 -44 183 44
+rect 83 -50 183 -44
+rect 349 44 449 50
+rect 349 -44 355 44
+rect 443 -44 449 44
+rect 349 -50 449 -44
+rect 615 44 715 50
+rect 615 -44 621 44
+rect 709 -44 715 44
+rect 615 -50 715 -44
+rect 881 44 981 50
+rect 881 -44 887 44
+rect 975 -44 981 44
+rect 881 -50 981 -44
+rect 1147 44 1247 50
+rect 1147 -44 1153 44
+rect 1241 -44 1247 44
+rect 1147 -50 1247 -44
+<< pdiodec >>
+rect -1241 -44 -1153 44
+rect -975 -44 -887 44
+rect -709 -44 -621 44
+rect -443 -44 -355 44
+rect -177 -44 -89 44
+rect 89 -44 177 44
+rect 355 -44 443 44
+rect 621 -44 709 44
+rect 887 -44 975 44
+rect 1153 -44 1241 44
+<< locali >>
+rect -1367 153 -1319 170
+rect 1319 153 1367 170
+rect -1367 122 -1350 153
+rect 1350 122 1367 153
+rect -1298 84 -1250 101
+rect -1144 84 -1096 101
+rect -1298 53 -1281 84
+rect -1113 53 -1096 84
+rect -1249 -44 -1241 44
+rect -1153 -44 -1145 44
+rect -1298 -84 -1281 -53
+rect -1113 -84 -1096 -53
+rect -1298 -101 -1250 -84
+rect -1144 -101 -1096 -84
+rect -1032 84 -984 101
+rect -878 84 -830 101
+rect -1032 53 -1015 84
+rect -847 53 -830 84
+rect -983 -44 -975 44
+rect -887 -44 -879 44
+rect -1032 -84 -1015 -53
+rect -847 -84 -830 -53
+rect -1032 -101 -984 -84
+rect -878 -101 -830 -84
+rect -766 84 -718 101
+rect -612 84 -564 101
+rect -766 53 -749 84
+rect -581 53 -564 84
+rect -717 -44 -709 44
+rect -621 -44 -613 44
+rect -766 -84 -749 -53
+rect -581 -84 -564 -53
+rect -766 -101 -718 -84
+rect -612 -101 -564 -84
+rect -500 84 -452 101
+rect -346 84 -298 101
+rect -500 53 -483 84
+rect -315 53 -298 84
+rect -451 -44 -443 44
+rect -355 -44 -347 44
+rect -500 -84 -483 -53
+rect -315 -84 -298 -53
+rect -500 -101 -452 -84
+rect -346 -101 -298 -84
+rect -234 84 -186 101
+rect -80 84 -32 101
+rect -234 53 -217 84
+rect -49 53 -32 84
+rect -185 -44 -177 44
+rect -89 -44 -81 44
+rect -234 -84 -217 -53
+rect -49 -84 -32 -53
+rect -234 -101 -186 -84
+rect -80 -101 -32 -84
+rect 32 84 80 101
+rect 186 84 234 101
+rect 32 53 49 84
+rect 217 53 234 84
+rect 81 -44 89 44
+rect 177 -44 185 44
+rect 32 -84 49 -53
+rect 217 -84 234 -53
+rect 32 -101 80 -84
+rect 186 -101 234 -84
+rect 298 84 346 101
+rect 452 84 500 101
+rect 298 53 315 84
+rect 483 53 500 84
+rect 347 -44 355 44
+rect 443 -44 451 44
+rect 298 -84 315 -53
+rect 483 -84 500 -53
+rect 298 -101 346 -84
+rect 452 -101 500 -84
+rect 564 84 612 101
+rect 718 84 766 101
+rect 564 53 581 84
+rect 749 53 766 84
+rect 613 -44 621 44
+rect 709 -44 717 44
+rect 564 -84 581 -53
+rect 749 -84 766 -53
+rect 564 -101 612 -84
+rect 718 -101 766 -84
+rect 830 84 878 101
+rect 984 84 1032 101
+rect 830 53 847 84
+rect 1015 53 1032 84
+rect 879 -44 887 44
+rect 975 -44 983 44
+rect 830 -84 847 -53
+rect 1015 -84 1032 -53
+rect 830 -101 878 -84
+rect 984 -101 1032 -84
+rect 1096 84 1144 101
+rect 1250 84 1298 101
+rect 1096 53 1113 84
+rect 1281 53 1298 84
+rect 1145 -44 1153 44
+rect 1241 -44 1249 44
+rect 1096 -84 1113 -53
+rect 1281 -84 1298 -53
+rect 1096 -101 1144 -84
+rect 1250 -101 1298 -84
+rect -1367 -153 -1350 -122
+rect 1350 -153 1367 -122
+rect -1367 -170 -1319 -153
+rect 1319 -170 1367 -153
+<< viali >>
+rect -1241 -44 -1153 44
+rect -975 -44 -887 44
+rect -709 -44 -621 44
+rect -443 -44 -355 44
+rect -177 -44 -89 44
+rect 89 -44 177 44
+rect 355 -44 443 44
+rect 621 -44 709 44
+rect 887 -44 975 44
+rect 1153 -44 1241 44
+<< metal1 >>
+rect -1247 44 -1147 47
+rect -1247 -44 -1241 44
+rect -1153 -44 -1147 44
+rect -1247 -47 -1147 -44
+rect -981 44 -881 47
+rect -981 -44 -975 44
+rect -887 -44 -881 44
+rect -981 -47 -881 -44
+rect -715 44 -615 47
+rect -715 -44 -709 44
+rect -621 -44 -615 44
+rect -715 -47 -615 -44
+rect -449 44 -349 47
+rect -449 -44 -443 44
+rect -355 -44 -349 44
+rect -449 -47 -349 -44
+rect -183 44 -83 47
+rect -183 -44 -177 44
+rect -89 -44 -83 44
+rect -183 -47 -83 -44
+rect 83 44 183 47
+rect 83 -44 89 44
+rect 177 -44 183 44
+rect 83 -47 183 -44
+rect 349 44 449 47
+rect 349 -44 355 44
+rect 443 -44 449 44
+rect 349 -47 449 -44
+rect 615 44 715 47
+rect 615 -44 621 44
+rect 709 -44 715 44
+rect 615 -47 715 -44
+rect 881 44 981 47
+rect 881 -44 887 44
+rect 975 -44 981 44
+rect 881 -47 981 -44
+rect 1147 44 1247 47
+rect 1147 -44 1153 44
+rect 1241 -44 1247 44
+rect 1147 -47 1247 -44
+<< properties >>
+string FIXED_BBOX 1104 -92 1289 92
+string gencell sky130_fd_pr__diode_pd2nw_05v5
+string library sky130
+string parameters w 1 l 1 area 1.0 peri 4.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 glc 1 grc 1 gtc 1 gbc 1 doverlap 0 compatible {sky130_fd_pr__diode_pd2nw_05v5 sky130_fd_pr__diode_pd2nw_05v5_lvt  sky130_fd_pr__diode_pd2nw_05v5_hvt sky130_fd_pr__diode_pd2nw_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_WW7YB9.mag b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_WW7YB9.mag
new file mode 100644
index 0000000..e445ed7
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_05v5_WW7YB9.mag
@@ -0,0 +1,77 @@
+magic
+tech sky130A
+timestamp 1646911677
+<< nwell >>
+rect -169 -169 169 169
+<< pwell >>
+rect -238 169 238 238
+rect -238 -169 -169 169
+rect 169 -169 238 169
+rect -238 -238 238 -169
+<< psubdiff >>
+rect -220 203 -172 220
+rect 172 203 220 220
+rect -220 172 -203 203
+rect 203 172 220 203
+rect -220 -203 -203 -172
+rect 203 -203 220 -172
+rect -220 -220 -172 -203
+rect 172 -220 220 -203
+<< nsubdiff >>
+rect -151 134 -103 151
+rect 103 134 151 151
+rect -151 103 -134 134
+rect 134 103 151 134
+rect -151 -134 -134 -103
+rect 134 -134 151 -103
+rect -151 -151 -103 -134
+rect 103 -151 151 -134
+<< psubdiffcont >>
+rect -172 203 172 220
+rect -220 -172 -203 172
+rect 203 -172 220 172
+rect -172 -220 172 -203
+<< nsubdiffcont >>
+rect -103 134 103 151
+rect -151 -103 -134 103
+rect 134 -103 151 103
+rect -103 -151 103 -134
+<< pdiode >>
+rect -100 94 100 100
+rect -100 -94 -94 94
+rect 94 -94 100 94
+rect -100 -100 100 -94
+<< pdiodec >>
+rect -94 -94 94 94
+<< locali >>
+rect -220 203 -172 220
+rect 172 203 220 220
+rect -220 172 -203 203
+rect 203 172 220 203
+rect -151 134 -103 151
+rect 103 134 151 151
+rect -151 103 -134 134
+rect 134 103 151 134
+rect -102 -94 -94 94
+rect 94 -94 102 94
+rect -151 -134 -134 -103
+rect 134 -134 151 -103
+rect -151 -151 -103 -134
+rect 103 -151 151 -134
+rect -220 -203 -203 -172
+rect 203 -203 220 -172
+rect -220 -220 -172 -203
+rect 172 -220 220 -203
+<< viali >>
+rect -94 -94 94 94
+<< metal1 >>
+rect -100 94 100 97
+rect -100 -94 -94 94
+rect 94 -94 100 94
+rect -100 -97 100 -94
+<< properties >>
+string FIXED_BBOX -142 -142 142 142
+string gencell sky130_fd_pr__diode_pd2nw_05v5
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 1 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 glc 1 grc 1 gtc 1 gbc 1 doverlap 0 compatible {sky130_fd_pr__diode_pd2nw_05v5 sky130_fd_pr__diode_pd2nw_05v5_lvt  sky130_fd_pr__diode_pd2nw_05v5_hvt sky130_fd_pr__diode_pd2nw_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.ext b/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.ext
new file mode 100644
index 0000000..ca1aa6c
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.ext
@@ -0,0 +1,48 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pd2nw_11v0 a=area p=pj
+node "a_3382_n200#" 14 127.993 3382 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_2586_n200#" 14 86.1304 2586 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_1790_n200#" 14 86.1304 1790 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_994_n200#" 14 86.1304 994 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_198_n200#" 14 86.1304 198 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n598_n200#" 14 86.1304 -598 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n1394_n200#" 14 86.1304 -1394 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2190_n200#" 14 86.1304 -2190 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2986_n200#" 14 86.1304 -2986 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n3782_n200#" 14 127.993 -3782 -200 mvpdi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "w_n3980_n398#" 9627 21609.3 -3980 -398 nw 0 0 0 0 6336160 17512 0 0 0 0 0 0 1405920 48480 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 824160 48480 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "a_n4124_n542#" 0 0 -4124 -542 mvppd 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1069056 36864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 626688 36864 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n3980_n398#" "a_2586_n200#" 822.655
+cap "a_n2986_n200#" "a_n2190_n200#" 75.3407
+cap "a_n2986_n200#" "w_n3980_n398#" 822.655
+cap "a_1790_n200#" "w_n3980_n398#" 822.655
+cap "a_1790_n200#" "a_994_n200#" 75.3407
+cap "a_n3782_n200#" "w_n3980_n398#" 777.714
+cap "a_n2190_n200#" "a_n1394_n200#" 75.3407
+cap "w_n3980_n398#" "a_n1394_n200#" 822.655
+cap "a_1790_n200#" "a_2586_n200#" 75.3407
+cap "a_3382_n200#" "w_n3980_n398#" 777.714
+cap "w_n3980_n398#" "a_198_n200#" 822.655
+cap "w_n3980_n398#" "a_n2190_n200#" 822.655
+cap "a_n1394_n200#" "a_n598_n200#" 75.3407
+cap "a_198_n200#" "a_n598_n200#" 75.3407
+cap "a_198_n200#" "a_994_n200#" 75.3407
+cap "a_3382_n200#" "a_2586_n200#" 75.3407
+cap "a_n2986_n200#" "a_n3782_n200#" 75.3407
+cap "w_n3980_n398#" "a_n598_n200#" 822.655
+cap "w_n3980_n398#" "a_994_n200#" 822.655
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 3382 -200 3383 -199 a=160000 p=1600 "w_n3980_n398#" "a_3382_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 2586 -200 2587 -199 a=160000 p=1600 "w_n3980_n398#" "a_2586_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 1790 -200 1791 -199 a=160000 p=1600 "w_n3980_n398#" "a_1790_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 994 -200 995 -199 a=160000 p=1600 "w_n3980_n398#" "a_994_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 198 -200 199 -199 a=160000 p=1600 "w_n3980_n398#" "a_198_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 -598 -200 -597 -199 a=160000 p=1600 "w_n3980_n398#" "a_n598_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 -1394 -200 -1393 -199 a=160000 p=1600 "w_n3980_n398#" "a_n1394_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 -2190 -200 -2189 -199 a=160000 p=1600 "w_n3980_n398#" "a_n2190_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 -2986 -200 -2985 -199 a=160000 p=1600 "w_n3980_n398#" "a_n2986_n200#" 752 0 "w_n3980_n398#" 348 0
+device pdiode sky130_fd_pr__diode_pd2nw_11v0 -3782 -200 -3781 -199 a=160000 p=1600 "w_n3980_n398#" "a_n3782_n200#" 752 0 "w_n3980_n398#" 348 0
diff --git a/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.mag b/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.mag
new file mode 100644
index 0000000..d36ad49
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pd2nw_11v0_33C8ED.mag
@@ -0,0 +1,453 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< nwell >>
+rect -1990 -199 1990 199
+<< pwell >>
+rect -2080 199 2080 289
+rect -2080 -199 -1990 199
+rect 1990 -199 2080 199
+rect -2080 -289 2080 -199
+<< mvpsubdiff >>
+rect -2062 265 2062 271
+rect -2062 248 -2008 265
+rect 2008 248 2062 265
+rect -2062 242 2062 248
+rect -2062 217 -2033 242
+rect -2062 -217 -2056 217
+rect -2039 -217 -2033 217
+rect 2033 217 2062 242
+rect -2062 -242 -2033 -217
+rect 2033 -217 2039 217
+rect 2056 -217 2062 217
+rect 2033 -242 2062 -217
+rect -2062 -248 2062 -242
+rect -2062 -265 -2008 -248
+rect 2008 -265 2062 -248
+rect -2062 -271 2062 -265
+<< mvnsubdiff >>
+rect -1957 160 -1625 166
+rect -1957 143 -1903 160
+rect -1679 143 -1625 160
+rect -1957 137 -1625 143
+rect -1957 112 -1928 137
+rect -1957 -112 -1951 112
+rect -1934 -112 -1928 112
+rect -1654 112 -1625 137
+rect -1957 -137 -1928 -112
+rect -1654 -112 -1648 112
+rect -1631 -112 -1625 112
+rect -1654 -137 -1625 -112
+rect -1957 -143 -1625 -137
+rect -1957 -160 -1903 -143
+rect -1679 -160 -1625 -143
+rect -1957 -166 -1625 -160
+rect -1559 160 -1227 166
+rect -1559 143 -1505 160
+rect -1281 143 -1227 160
+rect -1559 137 -1227 143
+rect -1559 112 -1530 137
+rect -1559 -112 -1553 112
+rect -1536 -112 -1530 112
+rect -1256 112 -1227 137
+rect -1559 -137 -1530 -112
+rect -1256 -112 -1250 112
+rect -1233 -112 -1227 112
+rect -1256 -137 -1227 -112
+rect -1559 -143 -1227 -137
+rect -1559 -160 -1505 -143
+rect -1281 -160 -1227 -143
+rect -1559 -166 -1227 -160
+rect -1161 160 -829 166
+rect -1161 143 -1107 160
+rect -883 143 -829 160
+rect -1161 137 -829 143
+rect -1161 112 -1132 137
+rect -1161 -112 -1155 112
+rect -1138 -112 -1132 112
+rect -858 112 -829 137
+rect -1161 -137 -1132 -112
+rect -858 -112 -852 112
+rect -835 -112 -829 112
+rect -858 -137 -829 -112
+rect -1161 -143 -829 -137
+rect -1161 -160 -1107 -143
+rect -883 -160 -829 -143
+rect -1161 -166 -829 -160
+rect -763 160 -431 166
+rect -763 143 -709 160
+rect -485 143 -431 160
+rect -763 137 -431 143
+rect -763 112 -734 137
+rect -763 -112 -757 112
+rect -740 -112 -734 112
+rect -460 112 -431 137
+rect -763 -137 -734 -112
+rect -460 -112 -454 112
+rect -437 -112 -431 112
+rect -460 -137 -431 -112
+rect -763 -143 -431 -137
+rect -763 -160 -709 -143
+rect -485 -160 -431 -143
+rect -763 -166 -431 -160
+rect -365 160 -33 166
+rect -365 143 -311 160
+rect -87 143 -33 160
+rect -365 137 -33 143
+rect -365 112 -336 137
+rect -365 -112 -359 112
+rect -342 -112 -336 112
+rect -62 112 -33 137
+rect -365 -137 -336 -112
+rect -62 -112 -56 112
+rect -39 -112 -33 112
+rect -62 -137 -33 -112
+rect -365 -143 -33 -137
+rect -365 -160 -311 -143
+rect -87 -160 -33 -143
+rect -365 -166 -33 -160
+rect 33 160 365 166
+rect 33 143 87 160
+rect 311 143 365 160
+rect 33 137 365 143
+rect 33 112 62 137
+rect 33 -112 39 112
+rect 56 -112 62 112
+rect 336 112 365 137
+rect 33 -137 62 -112
+rect 336 -112 342 112
+rect 359 -112 365 112
+rect 336 -137 365 -112
+rect 33 -143 365 -137
+rect 33 -160 87 -143
+rect 311 -160 365 -143
+rect 33 -166 365 -160
+rect 431 160 763 166
+rect 431 143 485 160
+rect 709 143 763 160
+rect 431 137 763 143
+rect 431 112 460 137
+rect 431 -112 437 112
+rect 454 -112 460 112
+rect 734 112 763 137
+rect 431 -137 460 -112
+rect 734 -112 740 112
+rect 757 -112 763 112
+rect 734 -137 763 -112
+rect 431 -143 763 -137
+rect 431 -160 485 -143
+rect 709 -160 763 -143
+rect 431 -166 763 -160
+rect 829 160 1161 166
+rect 829 143 883 160
+rect 1107 143 1161 160
+rect 829 137 1161 143
+rect 829 112 858 137
+rect 829 -112 835 112
+rect 852 -112 858 112
+rect 1132 112 1161 137
+rect 829 -137 858 -112
+rect 1132 -112 1138 112
+rect 1155 -112 1161 112
+rect 1132 -137 1161 -112
+rect 829 -143 1161 -137
+rect 829 -160 883 -143
+rect 1107 -160 1161 -143
+rect 829 -166 1161 -160
+rect 1227 160 1559 166
+rect 1227 143 1281 160
+rect 1505 143 1559 160
+rect 1227 137 1559 143
+rect 1227 112 1256 137
+rect 1227 -112 1233 112
+rect 1250 -112 1256 112
+rect 1530 112 1559 137
+rect 1227 -137 1256 -112
+rect 1530 -112 1536 112
+rect 1553 -112 1559 112
+rect 1530 -137 1559 -112
+rect 1227 -143 1559 -137
+rect 1227 -160 1281 -143
+rect 1505 -160 1559 -143
+rect 1227 -166 1559 -160
+rect 1625 160 1957 166
+rect 1625 143 1679 160
+rect 1903 143 1957 160
+rect 1625 137 1957 143
+rect 1625 112 1654 137
+rect 1625 -112 1631 112
+rect 1648 -112 1654 112
+rect 1928 112 1957 137
+rect 1625 -137 1654 -112
+rect 1928 -112 1934 112
+rect 1951 -112 1957 112
+rect 1928 -137 1957 -112
+rect 1625 -143 1957 -137
+rect 1625 -160 1679 -143
+rect 1903 -160 1957 -143
+rect 1625 -166 1957 -160
+<< mvpsubdiffcont >>
+rect -2008 248 2008 265
+rect -2056 -217 -2039 217
+rect 2039 -217 2056 217
+rect -2008 -265 2008 -248
+<< mvnsubdiffcont >>
+rect -1903 143 -1679 160
+rect -1951 -112 -1934 112
+rect -1648 -112 -1631 112
+rect -1903 -160 -1679 -143
+rect -1505 143 -1281 160
+rect -1553 -112 -1536 112
+rect -1250 -112 -1233 112
+rect -1505 -160 -1281 -143
+rect -1107 143 -883 160
+rect -1155 -112 -1138 112
+rect -852 -112 -835 112
+rect -1107 -160 -883 -143
+rect -709 143 -485 160
+rect -757 -112 -740 112
+rect -454 -112 -437 112
+rect -709 -160 -485 -143
+rect -311 143 -87 160
+rect -359 -112 -342 112
+rect -56 -112 -39 112
+rect -311 -160 -87 -143
+rect 87 143 311 160
+rect 39 -112 56 112
+rect 342 -112 359 112
+rect 87 -160 311 -143
+rect 485 143 709 160
+rect 437 -112 454 112
+rect 740 -112 757 112
+rect 485 -160 709 -143
+rect 883 143 1107 160
+rect 835 -112 852 112
+rect 1138 -112 1155 112
+rect 883 -160 1107 -143
+rect 1281 143 1505 160
+rect 1233 -112 1250 112
+rect 1536 -112 1553 112
+rect 1281 -160 1505 -143
+rect 1679 143 1903 160
+rect 1631 -112 1648 112
+rect 1934 -112 1951 112
+rect 1679 -160 1903 -143
+<< mvpdiode >>
+rect -1891 94 -1691 100
+rect -1891 -94 -1885 94
+rect -1697 -94 -1691 94
+rect -1891 -100 -1691 -94
+rect -1493 94 -1293 100
+rect -1493 -94 -1487 94
+rect -1299 -94 -1293 94
+rect -1493 -100 -1293 -94
+rect -1095 94 -895 100
+rect -1095 -94 -1089 94
+rect -901 -94 -895 94
+rect -1095 -100 -895 -94
+rect -697 94 -497 100
+rect -697 -94 -691 94
+rect -503 -94 -497 94
+rect -697 -100 -497 -94
+rect -299 94 -99 100
+rect -299 -94 -293 94
+rect -105 -94 -99 94
+rect -299 -100 -99 -94
+rect 99 94 299 100
+rect 99 -94 105 94
+rect 293 -94 299 94
+rect 99 -100 299 -94
+rect 497 94 697 100
+rect 497 -94 503 94
+rect 691 -94 697 94
+rect 497 -100 697 -94
+rect 895 94 1095 100
+rect 895 -94 901 94
+rect 1089 -94 1095 94
+rect 895 -100 1095 -94
+rect 1293 94 1493 100
+rect 1293 -94 1299 94
+rect 1487 -94 1493 94
+rect 1293 -100 1493 -94
+rect 1691 94 1891 100
+rect 1691 -94 1697 94
+rect 1885 -94 1891 94
+rect 1691 -100 1891 -94
+<< mvpdiodec >>
+rect -1885 -94 -1697 94
+rect -1487 -94 -1299 94
+rect -1089 -94 -901 94
+rect -691 -94 -503 94
+rect -293 -94 -105 94
+rect 105 -94 293 94
+rect 503 -94 691 94
+rect 901 -94 1089 94
+rect 1299 -94 1487 94
+rect 1697 -94 1885 94
+<< locali >>
+rect -2056 248 -2008 265
+rect 2008 248 2056 265
+rect -2056 217 -2039 248
+rect 2039 217 2056 248
+rect -1951 143 -1903 160
+rect -1679 143 -1631 160
+rect -1951 112 -1934 143
+rect -1648 112 -1631 143
+rect -1893 -94 -1885 94
+rect -1697 -94 -1689 94
+rect -1951 -143 -1934 -112
+rect -1648 -143 -1631 -112
+rect -1951 -160 -1903 -143
+rect -1679 -160 -1631 -143
+rect -1553 143 -1505 160
+rect -1281 143 -1233 160
+rect -1553 112 -1536 143
+rect -1250 112 -1233 143
+rect -1495 -94 -1487 94
+rect -1299 -94 -1291 94
+rect -1553 -143 -1536 -112
+rect -1250 -143 -1233 -112
+rect -1553 -160 -1505 -143
+rect -1281 -160 -1233 -143
+rect -1155 143 -1107 160
+rect -883 143 -835 160
+rect -1155 112 -1138 143
+rect -852 112 -835 143
+rect -1097 -94 -1089 94
+rect -901 -94 -893 94
+rect -1155 -143 -1138 -112
+rect -852 -143 -835 -112
+rect -1155 -160 -1107 -143
+rect -883 -160 -835 -143
+rect -757 143 -709 160
+rect -485 143 -437 160
+rect -757 112 -740 143
+rect -454 112 -437 143
+rect -699 -94 -691 94
+rect -503 -94 -495 94
+rect -757 -143 -740 -112
+rect -454 -143 -437 -112
+rect -757 -160 -709 -143
+rect -485 -160 -437 -143
+rect -359 143 -311 160
+rect -87 143 -39 160
+rect -359 112 -342 143
+rect -56 112 -39 143
+rect -301 -94 -293 94
+rect -105 -94 -97 94
+rect -359 -143 -342 -112
+rect -56 -143 -39 -112
+rect -359 -160 -311 -143
+rect -87 -160 -39 -143
+rect 39 143 87 160
+rect 311 143 359 160
+rect 39 112 56 143
+rect 342 112 359 143
+rect 97 -94 105 94
+rect 293 -94 301 94
+rect 39 -143 56 -112
+rect 342 -143 359 -112
+rect 39 -160 87 -143
+rect 311 -160 359 -143
+rect 437 143 485 160
+rect 709 143 757 160
+rect 437 112 454 143
+rect 740 112 757 143
+rect 495 -94 503 94
+rect 691 -94 699 94
+rect 437 -143 454 -112
+rect 740 -143 757 -112
+rect 437 -160 485 -143
+rect 709 -160 757 -143
+rect 835 143 883 160
+rect 1107 143 1155 160
+rect 835 112 852 143
+rect 1138 112 1155 143
+rect 893 -94 901 94
+rect 1089 -94 1097 94
+rect 835 -143 852 -112
+rect 1138 -143 1155 -112
+rect 835 -160 883 -143
+rect 1107 -160 1155 -143
+rect 1233 143 1281 160
+rect 1505 143 1553 160
+rect 1233 112 1250 143
+rect 1536 112 1553 143
+rect 1291 -94 1299 94
+rect 1487 -94 1495 94
+rect 1233 -143 1250 -112
+rect 1536 -143 1553 -112
+rect 1233 -160 1281 -143
+rect 1505 -160 1553 -143
+rect 1631 143 1679 160
+rect 1903 143 1951 160
+rect 1631 112 1648 143
+rect 1934 112 1951 143
+rect 1689 -94 1697 94
+rect 1885 -94 1893 94
+rect 1631 -143 1648 -112
+rect 1934 -143 1951 -112
+rect 1631 -160 1679 -143
+rect 1903 -160 1951 -143
+rect -2056 -248 -2039 -217
+rect 2039 -248 2056 -217
+rect -2056 -265 -2008 -248
+rect 2008 -265 2056 -248
+<< viali >>
+rect -1885 -94 -1697 94
+rect -1487 -94 -1299 94
+rect -1089 -94 -901 94
+rect -691 -94 -503 94
+rect -293 -94 -105 94
+rect 105 -94 293 94
+rect 503 -94 691 94
+rect 901 -94 1089 94
+rect 1299 -94 1487 94
+rect 1697 -94 1885 94
+<< metal1 >>
+rect -1891 94 -1691 97
+rect -1891 -94 -1885 94
+rect -1697 -94 -1691 94
+rect -1891 -97 -1691 -94
+rect -1493 94 -1293 97
+rect -1493 -94 -1487 94
+rect -1299 -94 -1293 94
+rect -1493 -97 -1293 -94
+rect -1095 94 -895 97
+rect -1095 -94 -1089 94
+rect -901 -94 -895 94
+rect -1095 -97 -895 -94
+rect -697 94 -497 97
+rect -697 -94 -691 94
+rect -503 -94 -497 94
+rect -697 -97 -497 -94
+rect -299 94 -99 97
+rect -299 -94 -293 94
+rect -105 -94 -99 94
+rect -299 -97 -99 -94
+rect 99 94 299 97
+rect 99 -94 105 94
+rect 293 -94 299 94
+rect 99 -97 299 -94
+rect 497 94 697 97
+rect 497 -94 503 94
+rect 691 -94 697 94
+rect 497 -97 697 -94
+rect 895 94 1095 97
+rect 895 -94 901 94
+rect 1089 -94 1095 94
+rect 895 -97 1095 -94
+rect 1293 94 1493 97
+rect 1293 -94 1299 94
+rect 1487 -94 1493 94
+rect 1293 -97 1493 -94
+rect 1691 94 1891 97
+rect 1691 -94 1697 94
+rect 1885 -94 1891 94
+rect 1691 -97 1891 -94
+<< properties >>
+string FIXED_BBOX 1639 -151 1942 151
+string gencell sky130_fd_pr__diode_pd2nw_11v0
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 glc 1 grc 1 gtc 1 gbc 1 doverlap 0 compatible {sky130_fd_pr__diode_pd2nw_05v5 sky130_fd_pr__diode_pd2nw_05v5_lvt  sky130_fd_pr__diode_pd2nw_05v5_hvt sky130_fd_pr__diode_pd2nw_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_97KUCP.mag b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_97KUCP.mag
new file mode 100644
index 0000000..7312f84
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_97KUCP.mag
@@ -0,0 +1,50 @@
+magic
+tech sky130A
+timestamp 1646911677
+<< pwell >>
+rect -169 -169 169 169
+<< psubdiff >>
+rect -151 134 -103 151
+rect 103 134 151 151
+rect -151 103 -134 134
+rect 134 103 151 134
+rect -151 -134 -134 -103
+rect 134 -134 151 -103
+rect -151 -151 -103 -134
+rect 103 -151 151 -134
+<< psubdiffcont >>
+rect -103 134 103 151
+rect -151 -103 -134 103
+rect 134 -103 151 103
+rect -103 -151 103 -134
+<< ndiode >>
+rect -100 94 100 100
+rect -100 -94 -94 94
+rect 94 -94 100 94
+rect -100 -100 100 -94
+<< ndiodec >>
+rect -94 -94 94 94
+<< locali >>
+rect -151 134 -103 151
+rect 103 134 151 151
+rect -151 103 -134 134
+rect 134 103 151 134
+rect -102 -94 -94 94
+rect 94 -94 102 94
+rect -151 -134 -134 -103
+rect 134 -134 151 -103
+rect -151 -151 -103 -134
+rect 103 -151 151 -134
+<< viali >>
+rect -94 -94 94 94
+<< metal1 >>
+rect -100 94 100 97
+rect -100 -94 -94 94
+rect 94 -94 100 94
+rect -100 -97 100 -94
+<< properties >>
+string FIXED_BBOX -142 -142 142 142
+string gencell sky130_fd_pr__diode_pw2nd_05v5
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 1 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 doverlap 0 compatible {sky130_fd_pr__diode_pw2nd_05v5 sky130_fd_pr__diode_pw2nd_05v5_lvt  sky130_fd_pr__diode_pw2nd_05v5_nvt sky130_fd_pr__diode_pw2nd_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.ext b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.ext
new file mode 100644
index 0000000..39eee30
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.ext
@@ -0,0 +1,37 @@
+timestamp 1646921651
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pw2nd_05v5 a=area p=pj
+node "a_3094_n200#" 14 944.395 3094 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_2362_n200#" 14 999.298 2362 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_1630_n200#" 14 999.298 1630 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_898_n200#" 14 999.298 898 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_166_n200#" 14 999.298 166 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n566_n200#" 14 999.298 -566 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n1298_n200#" 14 999.298 -1298 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2030_n200#" 14 999.298 -2030 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2762_n200#" 14 999.298 -2762 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n3494_n200#" 14 944.395 -3494 -200 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+substrate "a_n3596_n302#" 0 0 -3596 -302 ppd 0 0 0 0 0 0 0 0 0 0 775200 45600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 775200 45600 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n2762_n200#" "a_n3494_n200#" 90.8867
+cap "a_n566_n200#" "a_166_n200#" 90.8867
+cap "a_2362_n200#" "a_3094_n200#" 90.8867
+cap "a_898_n200#" "a_166_n200#" 90.8867
+cap "a_1630_n200#" "a_898_n200#" 90.8867
+cap "a_n2030_n200#" "a_n1298_n200#" 90.8867
+cap "a_n566_n200#" "a_n1298_n200#" 90.8867
+cap "a_n2030_n200#" "a_n2762_n200#" 90.8867
+cap "a_1630_n200#" "a_2362_n200#" 90.8867
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 3094 -200 3095 -199 a=160000 p=1600 "a_n3596_n302#" "a_3094_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 2362 -200 2363 -199 a=160000 p=1600 "a_n3596_n302#" "a_2362_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 1630 -200 1631 -199 a=160000 p=1600 "a_n3596_n302#" "a_1630_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 898 -200 899 -199 a=160000 p=1600 "a_n3596_n302#" "a_898_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 166 -200 167 -199 a=160000 p=1600 "a_n3596_n302#" "a_166_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -566 -200 -565 -199 a=160000 p=1600 "a_n3596_n302#" "a_n566_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -1298 -200 -1297 -199 a=160000 p=1600 "a_n3596_n302#" "a_n1298_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -2030 -200 -2029 -199 a=160000 p=1600 "a_n3596_n302#" "a_n2030_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -2762 -200 -2761 -199 a=160000 p=1600 "a_n3596_n302#" "a_n2762_n200#" 752 0 "a_n3596_n302#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -3494 -200 -3493 -199 a=160000 p=1600 "a_n3596_n302#" "a_n3494_n200#" 752 0 "a_n3596_n302#" 0 0
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.mag b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.mag
new file mode 100644
index 0000000..24c1cb8
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_T9UBGD.mag
@@ -0,0 +1,338 @@
+magic
+tech sky130A
+timestamp 1646911677
+<< pwell >>
+rect -1816 -169 1816 169
+<< psubdiff >>
+rect -1798 134 -1750 151
+rect -1544 134 -1496 151
+rect -1798 103 -1781 134
+rect -1513 103 -1496 134
+rect -1798 -134 -1781 -103
+rect -1513 -134 -1496 -103
+rect -1798 -151 -1750 -134
+rect -1544 -151 -1496 -134
+rect -1432 134 -1384 151
+rect -1178 134 -1130 151
+rect -1432 103 -1415 134
+rect -1147 103 -1130 134
+rect -1432 -134 -1415 -103
+rect -1147 -134 -1130 -103
+rect -1432 -151 -1384 -134
+rect -1178 -151 -1130 -134
+rect -1066 134 -1018 151
+rect -812 134 -764 151
+rect -1066 103 -1049 134
+rect -781 103 -764 134
+rect -1066 -134 -1049 -103
+rect -781 -134 -764 -103
+rect -1066 -151 -1018 -134
+rect -812 -151 -764 -134
+rect -700 134 -652 151
+rect -446 134 -398 151
+rect -700 103 -683 134
+rect -415 103 -398 134
+rect -700 -134 -683 -103
+rect -415 -134 -398 -103
+rect -700 -151 -652 -134
+rect -446 -151 -398 -134
+rect -334 134 -286 151
+rect -80 134 -32 151
+rect -334 103 -317 134
+rect -49 103 -32 134
+rect -334 -134 -317 -103
+rect -49 -134 -32 -103
+rect -334 -151 -286 -134
+rect -80 -151 -32 -134
+rect 32 134 80 151
+rect 286 134 334 151
+rect 32 103 49 134
+rect 317 103 334 134
+rect 32 -134 49 -103
+rect 317 -134 334 -103
+rect 32 -151 80 -134
+rect 286 -151 334 -134
+rect 398 134 446 151
+rect 652 134 700 151
+rect 398 103 415 134
+rect 683 103 700 134
+rect 398 -134 415 -103
+rect 683 -134 700 -103
+rect 398 -151 446 -134
+rect 652 -151 700 -134
+rect 764 134 812 151
+rect 1018 134 1066 151
+rect 764 103 781 134
+rect 1049 103 1066 134
+rect 764 -134 781 -103
+rect 1049 -134 1066 -103
+rect 764 -151 812 -134
+rect 1018 -151 1066 -134
+rect 1130 134 1178 151
+rect 1384 134 1432 151
+rect 1130 103 1147 134
+rect 1415 103 1432 134
+rect 1130 -134 1147 -103
+rect 1415 -134 1432 -103
+rect 1130 -151 1178 -134
+rect 1384 -151 1432 -134
+rect 1496 134 1544 151
+rect 1750 134 1798 151
+rect 1496 103 1513 134
+rect 1781 103 1798 134
+rect 1496 -134 1513 -103
+rect 1781 -134 1798 -103
+rect 1496 -151 1544 -134
+rect 1750 -151 1798 -134
+<< psubdiffcont >>
+rect -1750 134 -1544 151
+rect -1798 -103 -1781 103
+rect -1513 -103 -1496 103
+rect -1750 -151 -1544 -134
+rect -1384 134 -1178 151
+rect -1432 -103 -1415 103
+rect -1147 -103 -1130 103
+rect -1384 -151 -1178 -134
+rect -1018 134 -812 151
+rect -1066 -103 -1049 103
+rect -781 -103 -764 103
+rect -1018 -151 -812 -134
+rect -652 134 -446 151
+rect -700 -103 -683 103
+rect -415 -103 -398 103
+rect -652 -151 -446 -134
+rect -286 134 -80 151
+rect -334 -103 -317 103
+rect -49 -103 -32 103
+rect -286 -151 -80 -134
+rect 80 134 286 151
+rect 32 -103 49 103
+rect 317 -103 334 103
+rect 80 -151 286 -134
+rect 446 134 652 151
+rect 398 -103 415 103
+rect 683 -103 700 103
+rect 446 -151 652 -134
+rect 812 134 1018 151
+rect 764 -103 781 103
+rect 1049 -103 1066 103
+rect 812 -151 1018 -134
+rect 1178 134 1384 151
+rect 1130 -103 1147 103
+rect 1415 -103 1432 103
+rect 1178 -151 1384 -134
+rect 1544 134 1750 151
+rect 1496 -103 1513 103
+rect 1781 -103 1798 103
+rect 1544 -151 1750 -134
+<< ndiode >>
+rect -1747 94 -1547 100
+rect -1747 -94 -1741 94
+rect -1553 -94 -1547 94
+rect -1747 -100 -1547 -94
+rect -1381 94 -1181 100
+rect -1381 -94 -1375 94
+rect -1187 -94 -1181 94
+rect -1381 -100 -1181 -94
+rect -1015 94 -815 100
+rect -1015 -94 -1009 94
+rect -821 -94 -815 94
+rect -1015 -100 -815 -94
+rect -649 94 -449 100
+rect -649 -94 -643 94
+rect -455 -94 -449 94
+rect -649 -100 -449 -94
+rect -283 94 -83 100
+rect -283 -94 -277 94
+rect -89 -94 -83 94
+rect -283 -100 -83 -94
+rect 83 94 283 100
+rect 83 -94 89 94
+rect 277 -94 283 94
+rect 83 -100 283 -94
+rect 449 94 649 100
+rect 449 -94 455 94
+rect 643 -94 649 94
+rect 449 -100 649 -94
+rect 815 94 1015 100
+rect 815 -94 821 94
+rect 1009 -94 1015 94
+rect 815 -100 1015 -94
+rect 1181 94 1381 100
+rect 1181 -94 1187 94
+rect 1375 -94 1381 94
+rect 1181 -100 1381 -94
+rect 1547 94 1747 100
+rect 1547 -94 1553 94
+rect 1741 -94 1747 94
+rect 1547 -100 1747 -94
+<< ndiodec >>
+rect -1741 -94 -1553 94
+rect -1375 -94 -1187 94
+rect -1009 -94 -821 94
+rect -643 -94 -455 94
+rect -277 -94 -89 94
+rect 89 -94 277 94
+rect 455 -94 643 94
+rect 821 -94 1009 94
+rect 1187 -94 1375 94
+rect 1553 -94 1741 94
+<< locali >>
+rect -1798 134 -1750 151
+rect -1544 134 -1496 151
+rect -1798 103 -1781 134
+rect -1513 103 -1496 134
+rect -1749 -94 -1741 94
+rect -1553 -94 -1545 94
+rect -1798 -134 -1781 -103
+rect -1513 -134 -1496 -103
+rect -1798 -151 -1750 -134
+rect -1544 -151 -1496 -134
+rect -1432 134 -1384 151
+rect -1178 134 -1130 151
+rect -1432 103 -1415 134
+rect -1147 103 -1130 134
+rect -1383 -94 -1375 94
+rect -1187 -94 -1179 94
+rect -1432 -134 -1415 -103
+rect -1147 -134 -1130 -103
+rect -1432 -151 -1384 -134
+rect -1178 -151 -1130 -134
+rect -1066 134 -1018 151
+rect -812 134 -764 151
+rect -1066 103 -1049 134
+rect -781 103 -764 134
+rect -1017 -94 -1009 94
+rect -821 -94 -813 94
+rect -1066 -134 -1049 -103
+rect -781 -134 -764 -103
+rect -1066 -151 -1018 -134
+rect -812 -151 -764 -134
+rect -700 134 -652 151
+rect -446 134 -398 151
+rect -700 103 -683 134
+rect -415 103 -398 134
+rect -651 -94 -643 94
+rect -455 -94 -447 94
+rect -700 -134 -683 -103
+rect -415 -134 -398 -103
+rect -700 -151 -652 -134
+rect -446 -151 -398 -134
+rect -334 134 -286 151
+rect -80 134 -32 151
+rect -334 103 -317 134
+rect -49 103 -32 134
+rect -285 -94 -277 94
+rect -89 -94 -81 94
+rect -334 -134 -317 -103
+rect -49 -134 -32 -103
+rect -334 -151 -286 -134
+rect -80 -151 -32 -134
+rect 32 134 80 151
+rect 286 134 334 151
+rect 32 103 49 134
+rect 317 103 334 134
+rect 81 -94 89 94
+rect 277 -94 285 94
+rect 32 -134 49 -103
+rect 317 -134 334 -103
+rect 32 -151 80 -134
+rect 286 -151 334 -134
+rect 398 134 446 151
+rect 652 134 700 151
+rect 398 103 415 134
+rect 683 103 700 134
+rect 447 -94 455 94
+rect 643 -94 651 94
+rect 398 -134 415 -103
+rect 683 -134 700 -103
+rect 398 -151 446 -134
+rect 652 -151 700 -134
+rect 764 134 812 151
+rect 1018 134 1066 151
+rect 764 103 781 134
+rect 1049 103 1066 134
+rect 813 -94 821 94
+rect 1009 -94 1017 94
+rect 764 -134 781 -103
+rect 1049 -134 1066 -103
+rect 764 -151 812 -134
+rect 1018 -151 1066 -134
+rect 1130 134 1178 151
+rect 1384 134 1432 151
+rect 1130 103 1147 134
+rect 1415 103 1432 134
+rect 1179 -94 1187 94
+rect 1375 -94 1383 94
+rect 1130 -134 1147 -103
+rect 1415 -134 1432 -103
+rect 1130 -151 1178 -134
+rect 1384 -151 1432 -134
+rect 1496 134 1544 151
+rect 1750 134 1798 151
+rect 1496 103 1513 134
+rect 1781 103 1798 134
+rect 1545 -94 1553 94
+rect 1741 -94 1749 94
+rect 1496 -134 1513 -103
+rect 1781 -134 1798 -103
+rect 1496 -151 1544 -134
+rect 1750 -151 1798 -134
+<< viali >>
+rect -1741 -94 -1553 94
+rect -1375 -94 -1187 94
+rect -1009 -94 -821 94
+rect -643 -94 -455 94
+rect -277 -94 -89 94
+rect 89 -94 277 94
+rect 455 -94 643 94
+rect 821 -94 1009 94
+rect 1187 -94 1375 94
+rect 1553 -94 1741 94
+<< metal1 >>
+rect -1747 94 -1547 97
+rect -1747 -94 -1741 94
+rect -1553 -94 -1547 94
+rect -1747 -97 -1547 -94
+rect -1381 94 -1181 97
+rect -1381 -94 -1375 94
+rect -1187 -94 -1181 94
+rect -1381 -97 -1181 -94
+rect -1015 94 -815 97
+rect -1015 -94 -1009 94
+rect -821 -94 -815 94
+rect -1015 -97 -815 -94
+rect -649 94 -449 97
+rect -649 -94 -643 94
+rect -455 -94 -449 94
+rect -649 -97 -449 -94
+rect -283 94 -83 97
+rect -283 -94 -277 94
+rect -89 -94 -83 94
+rect -283 -97 -83 -94
+rect 83 94 283 97
+rect 83 -94 89 94
+rect 277 -94 283 94
+rect 83 -97 283 -94
+rect 449 94 649 97
+rect 449 -94 455 94
+rect 643 -94 649 94
+rect 449 -97 649 -94
+rect 815 94 1015 97
+rect 815 -94 821 94
+rect 1009 -94 1015 94
+rect 815 -97 1015 -94
+rect 1181 94 1381 97
+rect 1181 -94 1187 94
+rect 1375 -94 1381 94
+rect 1181 -97 1381 -94
+rect 1547 94 1747 97
+rect 1547 -94 1553 94
+rect 1741 -94 1747 94
+rect 1547 -97 1747 -94
+<< properties >>
+string FIXED_BBOX 1504 -142 1789 142
+string gencell sky130_fd_pr__diode_pw2nd_05v5
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 doverlap 0 compatible {sky130_fd_pr__diode_pw2nd_05v5 sky130_fd_pr__diode_pw2nd_05v5_lvt  sky130_fd_pr__diode_pw2nd_05v5_nvt sky130_fd_pr__diode_pw2nd_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.ext b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.ext
new file mode 100644
index 0000000..c7097cb
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.ext
@@ -0,0 +1,37 @@
+timestamp 1646653136
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pw2nd_05v5 a=area p=pj
+node "a_2294_n100#" 15 540.822 2294 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_1762_n100#" 15 566.521 1762 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_1230_n100#" 15 566.521 1230 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_698_n100#" 15 566.521 698 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_166_n100#" 15 566.521 166 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n366_n100#" 15 566.521 -366 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n898_n100#" 15 566.521 -898 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n1430_n100#" 15 566.521 -1430 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n1962_n100#" 15 566.521 -1962 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+node "a_n2494_n100#" 15 540.822 -2494 -100 ndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36608 768 37600 776 0 0 0 0 0 0 0 0 0 0
+substrate "w_n2632_n238#" 0 0 -2632 -238 pw 2505664 11480 0 0 0 0 0 0 0 0 503200 29600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 503200 29600 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_698_n100#" "a_1230_n100#" 43.4079
+cap "a_n1430_n100#" "a_n898_n100#" 43.4079
+cap "a_n366_n100#" "a_166_n100#" 43.4079
+cap "a_2294_n100#" "a_1762_n100#" 43.4079
+cap "a_698_n100#" "a_166_n100#" 43.4079
+cap "a_n2494_n100#" "a_n1962_n100#" 43.4079
+cap "a_n1962_n100#" "a_n1430_n100#" 43.4079
+cap "a_n366_n100#" "a_n898_n100#" 43.4079
+cap "a_1762_n100#" "a_1230_n100#" 43.4079
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 2294 -100 2295 -99 a=40000 p=800 "w_n2632_n238#" "a_2294_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 1762 -100 1763 -99 a=40000 p=800 "w_n2632_n238#" "a_1762_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 1230 -100 1231 -99 a=40000 p=800 "w_n2632_n238#" "a_1230_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 698 -100 699 -99 a=40000 p=800 "w_n2632_n238#" "a_698_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 166 -100 167 -99 a=40000 p=800 "w_n2632_n238#" "a_166_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -366 -100 -365 -99 a=40000 p=800 "w_n2632_n238#" "a_n366_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -898 -100 -897 -99 a=40000 p=800 "w_n2632_n238#" "a_n898_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -1430 -100 -1429 -99 a=40000 p=800 "w_n2632_n238#" "a_n1430_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -1962 -100 -1961 -99 a=40000 p=800 "w_n2632_n238#" "a_n1962_n100#" 352 0 "w_n2632_n238#" 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_05v5 -2494 -100 -2493 -99 a=40000 p=800 "w_n2632_n238#" "a_n2494_n100#" 352 0 "w_n2632_n238#" 0 0
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.mag b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.mag
new file mode 100644
index 0000000..08e4c8e
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_05v5_Z3EYSA.mag
@@ -0,0 +1,338 @@
+magic
+tech sky130A
+timestamp 1646653136
+<< pwell >>
+rect -1316 -119 1316 119
+<< psubdiff >>
+rect -1298 84 -1250 101
+rect -1144 84 -1096 101
+rect -1298 53 -1281 84
+rect -1113 53 -1096 84
+rect -1298 -84 -1281 -53
+rect -1113 -84 -1096 -53
+rect -1298 -101 -1250 -84
+rect -1144 -101 -1096 -84
+rect -1032 84 -984 101
+rect -878 84 -830 101
+rect -1032 53 -1015 84
+rect -847 53 -830 84
+rect -1032 -84 -1015 -53
+rect -847 -84 -830 -53
+rect -1032 -101 -984 -84
+rect -878 -101 -830 -84
+rect -766 84 -718 101
+rect -612 84 -564 101
+rect -766 53 -749 84
+rect -581 53 -564 84
+rect -766 -84 -749 -53
+rect -581 -84 -564 -53
+rect -766 -101 -718 -84
+rect -612 -101 -564 -84
+rect -500 84 -452 101
+rect -346 84 -298 101
+rect -500 53 -483 84
+rect -315 53 -298 84
+rect -500 -84 -483 -53
+rect -315 -84 -298 -53
+rect -500 -101 -452 -84
+rect -346 -101 -298 -84
+rect -234 84 -186 101
+rect -80 84 -32 101
+rect -234 53 -217 84
+rect -49 53 -32 84
+rect -234 -84 -217 -53
+rect -49 -84 -32 -53
+rect -234 -101 -186 -84
+rect -80 -101 -32 -84
+rect 32 84 80 101
+rect 186 84 234 101
+rect 32 53 49 84
+rect 217 53 234 84
+rect 32 -84 49 -53
+rect 217 -84 234 -53
+rect 32 -101 80 -84
+rect 186 -101 234 -84
+rect 298 84 346 101
+rect 452 84 500 101
+rect 298 53 315 84
+rect 483 53 500 84
+rect 298 -84 315 -53
+rect 483 -84 500 -53
+rect 298 -101 346 -84
+rect 452 -101 500 -84
+rect 564 84 612 101
+rect 718 84 766 101
+rect 564 53 581 84
+rect 749 53 766 84
+rect 564 -84 581 -53
+rect 749 -84 766 -53
+rect 564 -101 612 -84
+rect 718 -101 766 -84
+rect 830 84 878 101
+rect 984 84 1032 101
+rect 830 53 847 84
+rect 1015 53 1032 84
+rect 830 -84 847 -53
+rect 1015 -84 1032 -53
+rect 830 -101 878 -84
+rect 984 -101 1032 -84
+rect 1096 84 1144 101
+rect 1250 84 1298 101
+rect 1096 53 1113 84
+rect 1281 53 1298 84
+rect 1096 -84 1113 -53
+rect 1281 -84 1298 -53
+rect 1096 -101 1144 -84
+rect 1250 -101 1298 -84
+<< psubdiffcont >>
+rect -1250 84 -1144 101
+rect -1298 -53 -1281 53
+rect -1113 -53 -1096 53
+rect -1250 -101 -1144 -84
+rect -984 84 -878 101
+rect -1032 -53 -1015 53
+rect -847 -53 -830 53
+rect -984 -101 -878 -84
+rect -718 84 -612 101
+rect -766 -53 -749 53
+rect -581 -53 -564 53
+rect -718 -101 -612 -84
+rect -452 84 -346 101
+rect -500 -53 -483 53
+rect -315 -53 -298 53
+rect -452 -101 -346 -84
+rect -186 84 -80 101
+rect -234 -53 -217 53
+rect -49 -53 -32 53
+rect -186 -101 -80 -84
+rect 80 84 186 101
+rect 32 -53 49 53
+rect 217 -53 234 53
+rect 80 -101 186 -84
+rect 346 84 452 101
+rect 298 -53 315 53
+rect 483 -53 500 53
+rect 346 -101 452 -84
+rect 612 84 718 101
+rect 564 -53 581 53
+rect 749 -53 766 53
+rect 612 -101 718 -84
+rect 878 84 984 101
+rect 830 -53 847 53
+rect 1015 -53 1032 53
+rect 878 -101 984 -84
+rect 1144 84 1250 101
+rect 1096 -53 1113 53
+rect 1281 -53 1298 53
+rect 1144 -101 1250 -84
+<< ndiode >>
+rect -1247 44 -1147 50
+rect -1247 -44 -1241 44
+rect -1153 -44 -1147 44
+rect -1247 -50 -1147 -44
+rect -981 44 -881 50
+rect -981 -44 -975 44
+rect -887 -44 -881 44
+rect -981 -50 -881 -44
+rect -715 44 -615 50
+rect -715 -44 -709 44
+rect -621 -44 -615 44
+rect -715 -50 -615 -44
+rect -449 44 -349 50
+rect -449 -44 -443 44
+rect -355 -44 -349 44
+rect -449 -50 -349 -44
+rect -183 44 -83 50
+rect -183 -44 -177 44
+rect -89 -44 -83 44
+rect -183 -50 -83 -44
+rect 83 44 183 50
+rect 83 -44 89 44
+rect 177 -44 183 44
+rect 83 -50 183 -44
+rect 349 44 449 50
+rect 349 -44 355 44
+rect 443 -44 449 44
+rect 349 -50 449 -44
+rect 615 44 715 50
+rect 615 -44 621 44
+rect 709 -44 715 44
+rect 615 -50 715 -44
+rect 881 44 981 50
+rect 881 -44 887 44
+rect 975 -44 981 44
+rect 881 -50 981 -44
+rect 1147 44 1247 50
+rect 1147 -44 1153 44
+rect 1241 -44 1247 44
+rect 1147 -50 1247 -44
+<< ndiodec >>
+rect -1241 -44 -1153 44
+rect -975 -44 -887 44
+rect -709 -44 -621 44
+rect -443 -44 -355 44
+rect -177 -44 -89 44
+rect 89 -44 177 44
+rect 355 -44 443 44
+rect 621 -44 709 44
+rect 887 -44 975 44
+rect 1153 -44 1241 44
+<< locali >>
+rect -1298 84 -1250 101
+rect -1144 84 -1096 101
+rect -1298 53 -1281 84
+rect -1113 53 -1096 84
+rect -1249 -44 -1241 44
+rect -1153 -44 -1145 44
+rect -1298 -84 -1281 -53
+rect -1113 -84 -1096 -53
+rect -1298 -101 -1250 -84
+rect -1144 -101 -1096 -84
+rect -1032 84 -984 101
+rect -878 84 -830 101
+rect -1032 53 -1015 84
+rect -847 53 -830 84
+rect -983 -44 -975 44
+rect -887 -44 -879 44
+rect -1032 -84 -1015 -53
+rect -847 -84 -830 -53
+rect -1032 -101 -984 -84
+rect -878 -101 -830 -84
+rect -766 84 -718 101
+rect -612 84 -564 101
+rect -766 53 -749 84
+rect -581 53 -564 84
+rect -717 -44 -709 44
+rect -621 -44 -613 44
+rect -766 -84 -749 -53
+rect -581 -84 -564 -53
+rect -766 -101 -718 -84
+rect -612 -101 -564 -84
+rect -500 84 -452 101
+rect -346 84 -298 101
+rect -500 53 -483 84
+rect -315 53 -298 84
+rect -451 -44 -443 44
+rect -355 -44 -347 44
+rect -500 -84 -483 -53
+rect -315 -84 -298 -53
+rect -500 -101 -452 -84
+rect -346 -101 -298 -84
+rect -234 84 -186 101
+rect -80 84 -32 101
+rect -234 53 -217 84
+rect -49 53 -32 84
+rect -185 -44 -177 44
+rect -89 -44 -81 44
+rect -234 -84 -217 -53
+rect -49 -84 -32 -53
+rect -234 -101 -186 -84
+rect -80 -101 -32 -84
+rect 32 84 80 101
+rect 186 84 234 101
+rect 32 53 49 84
+rect 217 53 234 84
+rect 81 -44 89 44
+rect 177 -44 185 44
+rect 32 -84 49 -53
+rect 217 -84 234 -53
+rect 32 -101 80 -84
+rect 186 -101 234 -84
+rect 298 84 346 101
+rect 452 84 500 101
+rect 298 53 315 84
+rect 483 53 500 84
+rect 347 -44 355 44
+rect 443 -44 451 44
+rect 298 -84 315 -53
+rect 483 -84 500 -53
+rect 298 -101 346 -84
+rect 452 -101 500 -84
+rect 564 84 612 101
+rect 718 84 766 101
+rect 564 53 581 84
+rect 749 53 766 84
+rect 613 -44 621 44
+rect 709 -44 717 44
+rect 564 -84 581 -53
+rect 749 -84 766 -53
+rect 564 -101 612 -84
+rect 718 -101 766 -84
+rect 830 84 878 101
+rect 984 84 1032 101
+rect 830 53 847 84
+rect 1015 53 1032 84
+rect 879 -44 887 44
+rect 975 -44 983 44
+rect 830 -84 847 -53
+rect 1015 -84 1032 -53
+rect 830 -101 878 -84
+rect 984 -101 1032 -84
+rect 1096 84 1144 101
+rect 1250 84 1298 101
+rect 1096 53 1113 84
+rect 1281 53 1298 84
+rect 1145 -44 1153 44
+rect 1241 -44 1249 44
+rect 1096 -84 1113 -53
+rect 1281 -84 1298 -53
+rect 1096 -101 1144 -84
+rect 1250 -101 1298 -84
+<< viali >>
+rect -1241 -44 -1153 44
+rect -975 -44 -887 44
+rect -709 -44 -621 44
+rect -443 -44 -355 44
+rect -177 -44 -89 44
+rect 89 -44 177 44
+rect 355 -44 443 44
+rect 621 -44 709 44
+rect 887 -44 975 44
+rect 1153 -44 1241 44
+<< metal1 >>
+rect -1247 44 -1147 47
+rect -1247 -44 -1241 44
+rect -1153 -44 -1147 44
+rect -1247 -47 -1147 -44
+rect -981 44 -881 47
+rect -981 -44 -975 44
+rect -887 -44 -881 44
+rect -981 -47 -881 -44
+rect -715 44 -615 47
+rect -715 -44 -709 44
+rect -621 -44 -615 44
+rect -715 -47 -615 -44
+rect -449 44 -349 47
+rect -449 -44 -443 44
+rect -355 -44 -349 44
+rect -449 -47 -349 -44
+rect -183 44 -83 47
+rect -183 -44 -177 44
+rect -89 -44 -83 44
+rect -183 -47 -83 -44
+rect 83 44 183 47
+rect 83 -44 89 44
+rect 177 -44 183 44
+rect 83 -47 183 -44
+rect 349 44 449 47
+rect 349 -44 355 44
+rect 443 -44 449 44
+rect 349 -47 449 -44
+rect 615 44 715 47
+rect 615 -44 621 44
+rect 709 -44 715 44
+rect 615 -47 715 -44
+rect 881 44 981 47
+rect 881 -44 887 44
+rect 975 -44 981 44
+rect 881 -47 981 -44
+rect 1147 44 1247 47
+rect 1147 -44 1153 44
+rect 1241 -44 1247 44
+rect 1147 -47 1247 -44
+<< properties >>
+string FIXED_BBOX 1104 -92 1289 92
+string gencell sky130_fd_pr__diode_pw2nd_05v5
+string library sky130
+string parameters w 1 l 1 area 1.0 peri 4.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 doverlap 0 compatible {sky130_fd_pr__diode_pw2nd_05v5 sky130_fd_pr__diode_pw2nd_05v5_lvt  sky130_fd_pr__diode_pw2nd_05v5_nvt sky130_fd_pr__diode_pw2nd_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.ext b/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.ext
new file mode 100644
index 0000000..a025bb8
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.ext
@@ -0,0 +1,28 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__diode_pw2nd_11v0 a=area p=pj
+node "a_3472_n200#" 14 750.735 3472 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_2656_n200#" 14 793.179 2656 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_1840_n200#" 14 793.179 1840 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_1024_n200#" 14 793.179 1024 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_208_n200#" 14 793.179 208 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n608_n200#" 14 793.179 -608 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n1424_n200#" 14 793.179 -1424 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n2240_n200#" 14 793.179 -2240 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n3056_n200#" 14 793.179 -3056 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+node "a_n3872_n200#" 14 750.735 -3872 -200 mvndi 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153408 1568 155200 1576 0 0 0 0 0 0 0 0 0 0
+substrate "a_n4008_n336#" 0 0 -4008 -336 mvppd 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1424480 49120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 835040 49120 0 0 0 0 0 0 0 0 0 0 0 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 3472 -200 3473 -199 a=160000 p=1600 "a_n4008_n336#" "a_3472_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 2656 -200 2657 -199 a=160000 p=1600 "a_n4008_n336#" "a_2656_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 1840 -200 1841 -199 a=160000 p=1600 "a_n4008_n336#" "a_1840_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 1024 -200 1025 -199 a=160000 p=1600 "a_n4008_n336#" "a_1024_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 208 -200 209 -199 a=160000 p=1600 "a_n4008_n336#" "a_208_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 -608 -200 -607 -199 a=160000 p=1600 "a_n4008_n336#" "a_n608_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 -1424 -200 -1423 -199 a=160000 p=1600 "a_n4008_n336#" "a_n1424_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 -2240 -200 -2239 -199 a=160000 p=1600 "a_n4008_n336#" "a_n2240_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 -3056 -200 -3055 -199 a=160000 p=1600 "a_n4008_n336#" "a_n3056_n200#" 752 0 "a_n4008_n336#" 348 0
+device ndiode sky130_fd_pr__diode_pw2nd_11v0 -3872 -200 -3871 -199 a=160000 p=1600 "a_n4008_n336#" "a_n3872_n200#" 752 0 "a_n4008_n336#" 348 0
diff --git a/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.mag b/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.mag
new file mode 100644
index 0000000..2cee6c6
--- /dev/null
+++ b/mag/esd/sky130_fd_pr__diode_pw2nd_11v0_T9UBGD.mag
@@ -0,0 +1,418 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< pwell >>
+rect -2022 -186 2022 186
+<< mvpsubdiff >>
+rect -2004 162 -1668 168
+rect -2004 145 -1950 162
+rect -1722 145 -1668 162
+rect -2004 139 -1668 145
+rect -2004 114 -1975 139
+rect -2004 -114 -1998 114
+rect -1981 -114 -1975 114
+rect -1697 114 -1668 139
+rect -2004 -139 -1975 -114
+rect -1697 -114 -1691 114
+rect -1674 -114 -1668 114
+rect -1697 -139 -1668 -114
+rect -2004 -145 -1668 -139
+rect -2004 -162 -1950 -145
+rect -1722 -162 -1668 -145
+rect -2004 -168 -1668 -162
+rect -1596 162 -1260 168
+rect -1596 145 -1542 162
+rect -1314 145 -1260 162
+rect -1596 139 -1260 145
+rect -1596 114 -1567 139
+rect -1596 -114 -1590 114
+rect -1573 -114 -1567 114
+rect -1289 114 -1260 139
+rect -1596 -139 -1567 -114
+rect -1289 -114 -1283 114
+rect -1266 -114 -1260 114
+rect -1289 -139 -1260 -114
+rect -1596 -145 -1260 -139
+rect -1596 -162 -1542 -145
+rect -1314 -162 -1260 -145
+rect -1596 -168 -1260 -162
+rect -1188 162 -852 168
+rect -1188 145 -1134 162
+rect -906 145 -852 162
+rect -1188 139 -852 145
+rect -1188 114 -1159 139
+rect -1188 -114 -1182 114
+rect -1165 -114 -1159 114
+rect -881 114 -852 139
+rect -1188 -139 -1159 -114
+rect -881 -114 -875 114
+rect -858 -114 -852 114
+rect -881 -139 -852 -114
+rect -1188 -145 -852 -139
+rect -1188 -162 -1134 -145
+rect -906 -162 -852 -145
+rect -1188 -168 -852 -162
+rect -780 162 -444 168
+rect -780 145 -726 162
+rect -498 145 -444 162
+rect -780 139 -444 145
+rect -780 114 -751 139
+rect -780 -114 -774 114
+rect -757 -114 -751 114
+rect -473 114 -444 139
+rect -780 -139 -751 -114
+rect -473 -114 -467 114
+rect -450 -114 -444 114
+rect -473 -139 -444 -114
+rect -780 -145 -444 -139
+rect -780 -162 -726 -145
+rect -498 -162 -444 -145
+rect -780 -168 -444 -162
+rect -372 162 -36 168
+rect -372 145 -318 162
+rect -90 145 -36 162
+rect -372 139 -36 145
+rect -372 114 -343 139
+rect -372 -114 -366 114
+rect -349 -114 -343 114
+rect -65 114 -36 139
+rect -372 -139 -343 -114
+rect -65 -114 -59 114
+rect -42 -114 -36 114
+rect -65 -139 -36 -114
+rect -372 -145 -36 -139
+rect -372 -162 -318 -145
+rect -90 -162 -36 -145
+rect -372 -168 -36 -162
+rect 36 162 372 168
+rect 36 145 90 162
+rect 318 145 372 162
+rect 36 139 372 145
+rect 36 114 65 139
+rect 36 -114 42 114
+rect 59 -114 65 114
+rect 343 114 372 139
+rect 36 -139 65 -114
+rect 343 -114 349 114
+rect 366 -114 372 114
+rect 343 -139 372 -114
+rect 36 -145 372 -139
+rect 36 -162 90 -145
+rect 318 -162 372 -145
+rect 36 -168 372 -162
+rect 444 162 780 168
+rect 444 145 498 162
+rect 726 145 780 162
+rect 444 139 780 145
+rect 444 114 473 139
+rect 444 -114 450 114
+rect 467 -114 473 114
+rect 751 114 780 139
+rect 444 -139 473 -114
+rect 751 -114 757 114
+rect 774 -114 780 114
+rect 751 -139 780 -114
+rect 444 -145 780 -139
+rect 444 -162 498 -145
+rect 726 -162 780 -145
+rect 444 -168 780 -162
+rect 852 162 1188 168
+rect 852 145 906 162
+rect 1134 145 1188 162
+rect 852 139 1188 145
+rect 852 114 881 139
+rect 852 -114 858 114
+rect 875 -114 881 114
+rect 1159 114 1188 139
+rect 852 -139 881 -114
+rect 1159 -114 1165 114
+rect 1182 -114 1188 114
+rect 1159 -139 1188 -114
+rect 852 -145 1188 -139
+rect 852 -162 906 -145
+rect 1134 -162 1188 -145
+rect 852 -168 1188 -162
+rect 1260 162 1596 168
+rect 1260 145 1314 162
+rect 1542 145 1596 162
+rect 1260 139 1596 145
+rect 1260 114 1289 139
+rect 1260 -114 1266 114
+rect 1283 -114 1289 114
+rect 1567 114 1596 139
+rect 1260 -139 1289 -114
+rect 1567 -114 1573 114
+rect 1590 -114 1596 114
+rect 1567 -139 1596 -114
+rect 1260 -145 1596 -139
+rect 1260 -162 1314 -145
+rect 1542 -162 1596 -145
+rect 1260 -168 1596 -162
+rect 1668 162 2004 168
+rect 1668 145 1722 162
+rect 1950 145 2004 162
+rect 1668 139 2004 145
+rect 1668 114 1697 139
+rect 1668 -114 1674 114
+rect 1691 -114 1697 114
+rect 1975 114 2004 139
+rect 1668 -139 1697 -114
+rect 1975 -114 1981 114
+rect 1998 -114 2004 114
+rect 1975 -139 2004 -114
+rect 1668 -145 2004 -139
+rect 1668 -162 1722 -145
+rect 1950 -162 2004 -145
+rect 1668 -168 2004 -162
+<< mvpsubdiffcont >>
+rect -1950 145 -1722 162
+rect -1998 -114 -1981 114
+rect -1691 -114 -1674 114
+rect -1950 -162 -1722 -145
+rect -1542 145 -1314 162
+rect -1590 -114 -1573 114
+rect -1283 -114 -1266 114
+rect -1542 -162 -1314 -145
+rect -1134 145 -906 162
+rect -1182 -114 -1165 114
+rect -875 -114 -858 114
+rect -1134 -162 -906 -145
+rect -726 145 -498 162
+rect -774 -114 -757 114
+rect -467 -114 -450 114
+rect -726 -162 -498 -145
+rect -318 145 -90 162
+rect -366 -114 -349 114
+rect -59 -114 -42 114
+rect -318 -162 -90 -145
+rect 90 145 318 162
+rect 42 -114 59 114
+rect 349 -114 366 114
+rect 90 -162 318 -145
+rect 498 145 726 162
+rect 450 -114 467 114
+rect 757 -114 774 114
+rect 498 -162 726 -145
+rect 906 145 1134 162
+rect 858 -114 875 114
+rect 1165 -114 1182 114
+rect 906 -162 1134 -145
+rect 1314 145 1542 162
+rect 1266 -114 1283 114
+rect 1573 -114 1590 114
+rect 1314 -162 1542 -145
+rect 1722 145 1950 162
+rect 1674 -114 1691 114
+rect 1981 -114 1998 114
+rect 1722 -162 1950 -145
+<< mvndiode >>
+rect -1936 94 -1736 100
+rect -1936 -94 -1930 94
+rect -1742 -94 -1736 94
+rect -1936 -100 -1736 -94
+rect -1528 94 -1328 100
+rect -1528 -94 -1522 94
+rect -1334 -94 -1328 94
+rect -1528 -100 -1328 -94
+rect -1120 94 -920 100
+rect -1120 -94 -1114 94
+rect -926 -94 -920 94
+rect -1120 -100 -920 -94
+rect -712 94 -512 100
+rect -712 -94 -706 94
+rect -518 -94 -512 94
+rect -712 -100 -512 -94
+rect -304 94 -104 100
+rect -304 -94 -298 94
+rect -110 -94 -104 94
+rect -304 -100 -104 -94
+rect 104 94 304 100
+rect 104 -94 110 94
+rect 298 -94 304 94
+rect 104 -100 304 -94
+rect 512 94 712 100
+rect 512 -94 518 94
+rect 706 -94 712 94
+rect 512 -100 712 -94
+rect 920 94 1120 100
+rect 920 -94 926 94
+rect 1114 -94 1120 94
+rect 920 -100 1120 -94
+rect 1328 94 1528 100
+rect 1328 -94 1334 94
+rect 1522 -94 1528 94
+rect 1328 -100 1528 -94
+rect 1736 94 1936 100
+rect 1736 -94 1742 94
+rect 1930 -94 1936 94
+rect 1736 -100 1936 -94
+<< mvndiodec >>
+rect -1930 -94 -1742 94
+rect -1522 -94 -1334 94
+rect -1114 -94 -926 94
+rect -706 -94 -518 94
+rect -298 -94 -110 94
+rect 110 -94 298 94
+rect 518 -94 706 94
+rect 926 -94 1114 94
+rect 1334 -94 1522 94
+rect 1742 -94 1930 94
+<< locali >>
+rect -1998 145 -1950 162
+rect -1722 145 -1674 162
+rect -1998 114 -1981 145
+rect -1691 114 -1674 145
+rect -1938 -94 -1930 94
+rect -1742 -94 -1734 94
+rect -1998 -145 -1981 -114
+rect -1691 -145 -1674 -114
+rect -1998 -162 -1950 -145
+rect -1722 -162 -1674 -145
+rect -1590 145 -1542 162
+rect -1314 145 -1266 162
+rect -1590 114 -1573 145
+rect -1283 114 -1266 145
+rect -1530 -94 -1522 94
+rect -1334 -94 -1326 94
+rect -1590 -145 -1573 -114
+rect -1283 -145 -1266 -114
+rect -1590 -162 -1542 -145
+rect -1314 -162 -1266 -145
+rect -1182 145 -1134 162
+rect -906 145 -858 162
+rect -1182 114 -1165 145
+rect -875 114 -858 145
+rect -1122 -94 -1114 94
+rect -926 -94 -918 94
+rect -1182 -145 -1165 -114
+rect -875 -145 -858 -114
+rect -1182 -162 -1134 -145
+rect -906 -162 -858 -145
+rect -774 145 -726 162
+rect -498 145 -450 162
+rect -774 114 -757 145
+rect -467 114 -450 145
+rect -714 -94 -706 94
+rect -518 -94 -510 94
+rect -774 -145 -757 -114
+rect -467 -145 -450 -114
+rect -774 -162 -726 -145
+rect -498 -162 -450 -145
+rect -366 145 -318 162
+rect -90 145 -42 162
+rect -366 114 -349 145
+rect -59 114 -42 145
+rect -306 -94 -298 94
+rect -110 -94 -102 94
+rect -366 -145 -349 -114
+rect -59 -145 -42 -114
+rect -366 -162 -318 -145
+rect -90 -162 -42 -145
+rect 42 145 90 162
+rect 318 145 366 162
+rect 42 114 59 145
+rect 349 114 366 145
+rect 102 -94 110 94
+rect 298 -94 306 94
+rect 42 -145 59 -114
+rect 349 -145 366 -114
+rect 42 -162 90 -145
+rect 318 -162 366 -145
+rect 450 145 498 162
+rect 726 145 774 162
+rect 450 114 467 145
+rect 757 114 774 145
+rect 510 -94 518 94
+rect 706 -94 714 94
+rect 450 -145 467 -114
+rect 757 -145 774 -114
+rect 450 -162 498 -145
+rect 726 -162 774 -145
+rect 858 145 906 162
+rect 1134 145 1182 162
+rect 858 114 875 145
+rect 1165 114 1182 145
+rect 918 -94 926 94
+rect 1114 -94 1122 94
+rect 858 -145 875 -114
+rect 1165 -145 1182 -114
+rect 858 -162 906 -145
+rect 1134 -162 1182 -145
+rect 1266 145 1314 162
+rect 1542 145 1590 162
+rect 1266 114 1283 145
+rect 1573 114 1590 145
+rect 1326 -94 1334 94
+rect 1522 -94 1530 94
+rect 1266 -145 1283 -114
+rect 1573 -145 1590 -114
+rect 1266 -162 1314 -145
+rect 1542 -162 1590 -145
+rect 1674 145 1722 162
+rect 1950 145 1998 162
+rect 1674 114 1691 145
+rect 1981 114 1998 145
+rect 1734 -94 1742 94
+rect 1930 -94 1938 94
+rect 1674 -145 1691 -114
+rect 1981 -145 1998 -114
+rect 1674 -162 1722 -145
+rect 1950 -162 1998 -145
+<< viali >>
+rect -1930 -94 -1742 94
+rect -1522 -94 -1334 94
+rect -1114 -94 -926 94
+rect -706 -94 -518 94
+rect -298 -94 -110 94
+rect 110 -94 298 94
+rect 518 -94 706 94
+rect 926 -94 1114 94
+rect 1334 -94 1522 94
+rect 1742 -94 1930 94
+<< metal1 >>
+rect -1936 94 -1736 97
+rect -1936 -94 -1930 94
+rect -1742 -94 -1736 94
+rect -1936 -97 -1736 -94
+rect -1528 94 -1328 97
+rect -1528 -94 -1522 94
+rect -1334 -94 -1328 94
+rect -1528 -97 -1328 -94
+rect -1120 94 -920 97
+rect -1120 -94 -1114 94
+rect -926 -94 -920 94
+rect -1120 -97 -920 -94
+rect -712 94 -512 97
+rect -712 -94 -706 94
+rect -518 -94 -512 94
+rect -712 -97 -512 -94
+rect -304 94 -104 97
+rect -304 -94 -298 94
+rect -110 -94 -104 94
+rect -304 -97 -104 -94
+rect 104 94 304 97
+rect 104 -94 110 94
+rect 298 -94 304 94
+rect 104 -97 304 -94
+rect 512 94 712 97
+rect 512 -94 518 94
+rect 706 -94 712 94
+rect 512 -97 712 -94
+rect 920 94 1120 97
+rect 920 -94 926 94
+rect 1114 -94 1120 94
+rect 920 -97 1120 -94
+rect 1328 94 1528 97
+rect 1328 -94 1334 94
+rect 1522 -94 1528 94
+rect 1328 -97 1528 -94
+rect 1736 94 1936 97
+rect 1736 -94 1742 94
+rect 1930 -94 1936 94
+rect 1736 -97 1936 -94
+<< properties >>
+string FIXED_BBOX 1682 -153 1989 153
+string gencell sky130_fd_pr__diode_pw2nd_11v0
+string library sky130
+string parameters w 2 l 2 area 4.0 peri 8.0 nx 10 ny 1 dummy 0 lmin 0.45 wmin 0.45 elc 1 erc 1 etc 1 ebc 1 doverlap 0 compatible {sky130_fd_pr__diode_pw2nd_05v5 sky130_fd_pr__diode_pw2nd_05v5_lvt  sky130_fd_pr__diode_pw2nd_05v5_nvt sky130_fd_pr__diode_pw2nd_11v0} full_metal 1 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/feedback/.magicrc b/mag/feedback/.magicrc
new file mode 120000
index 0000000..d7f5712
--- /dev/null
+++ b/mag/feedback/.magicrc
@@ -0,0 +1 @@
+../.magicrc
\ No newline at end of file
diff --git a/mag/feedback/comp.out b/mag/feedback/comp.out
new file mode 100644
index 0000000..e800f3b
--- /dev/null
+++ b/mag/feedback/comp.out
@@ -0,0 +1,50 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Flattening unmatched subcell currm_p in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_lvt_4LMUGG in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_lvt_LKHJAY in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell currm_ps in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PD4XN5 in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PWGH in circuit fb_amp.spice (1)(22 instances)
+Flattening unmatched subcell currm_n in circuit fb_amp.spice (1)(50 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_PJG2KG in circuit fb_amp.spice (1)(50 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_82JNGJ in circuit fb_amp.spice (1)(50 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_6H2JYD in circuit fb_amp.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U47ZGH in circuit fb_amp.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_N3PKNJ in circuit fb_amp.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_MJMGTW in circuit fb_amp.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_LH2JGW in circuit fb_amp.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_E6B2KN in circuit fb_amp.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_UAQRRG in circuit fb_amp.spice (1)(1 instance)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG in circuit fb_amp.spice (1)(2 instances)
+
+Class ../../analog/tia/feedback_sukwani_amp3.spice (0):  Merged 5 parallel devices.
+Class fb_amp.spice (1):  Merged 656 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../analog/tia/feedback_sukwa |Circuit 2: fb_amp.spice                    
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8 (261->30)          |sky130_fd_pr__nfet_01v8 (261->30)          
+sky130_fd_pr__cap_mim_m3_2 (6->3)          |sky130_fd_pr__cap_mim_m3_2 (6->3)          
+sky130_fd_pr__pfet_01v8_lvt (220->12)      |sky130_fd_pr__pfet_01v8_lvt (220->12)      
+sky130_fd_pr__pfet_01v8 (229->15)          |sky130_fd_pr__pfet_01v8 (229->15)          
+Number of devices: 60                      |Number of devices: 60                      
+Number of nets: 42                         |Number of nets: 42                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Property errors were found.
+Netlists match uniquely.
+There were property errors.
+sky130_fd_pr__cap_mim_m3_2:C3 vs. sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+sky130_fd_pr__cap_mim_m3_2:C20 vs. sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+sky130_fd_pr__cap_mim_m3_2:C8 vs. sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+Cells have no pins;  pin matching not needed.
+Device classes ../../analog/tia/feedback_sukwani_amp3.spice and fb_amp.spice are equivalent.
+Circuits match uniquely.
+Property errors were found.
+The following cells had property errors:
+ ../../analog/tia/feedback_sukwani_amp3.spice
diff --git a/mag/feedback/currm_n.ext b/mag/feedback/currm_n.ext
new file mode 100644
index 0000000..b8ad942
--- /dev/null
+++ b/mag/feedback/currm_n.ext
@@ -0,0 +1,50 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_PJG2KG sky130_fd_pr__nfet_01v8_PJG2KG_0 1 0 306 0 1 -460
+use sky130_fd_pr__nfet_01v8_82JNGJ sky130_fd_pr__nfet_01v8_82JNGJ_0 1 0 299 0 1 350
+node "m1_390_n660#" 1 121.677 390 -660 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36900 900 17100 560 0 0 0 0 0 0 0 0
+node "m1_68_150#" 3 424.102 68 150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53440 1948 117120 2504 0 0 0 0 0 0 0 0
+node "m1_164_390#" 1 147.544 164 390 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24960 952 42480 940 0 0 0 0 0 0 0 0
+node "li_80_n100#" 143 573.452 80 -100 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 119700 2520 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_122_62#" 930 993.47 122 62 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46728 1680 0 0 24072 1552 78408 4596 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_390_n660#" "m1_68_150#" 8.10431
+cap "li_80_n100#" "m1_68_150#" 61.0511
+cap "li_80_n100#" "m1_390_n660#" 203.62
+cap "m1_164_390#" "m1_68_150#" 103.615
+cap "a_122_62#" "m1_68_150#" 586.099
+cap "a_122_62#" "m1_390_n660#" 104.99
+cap "li_80_n100#" "a_122_62#" 189.747
+cap "m1_164_390#" "a_122_62#" 254.166
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 501.6
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 466.116
+cap "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 64.6979
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" -70.3128
+cap "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" -14
+cap "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" 507.71
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" -7
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" 44.8267
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -14
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 131.467
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 123.226
+cap "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" 66.3366
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_50_n200#" -1404.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -683244 -4260 -121856 -316 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_50_n200#" "VSUBS"
+merge "VSUBS" "m1_390_n660#"
+merge "m1_390_n660#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#"
+merge "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "li_80_n100#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -114.664 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -27792 -824 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "m1_164_390#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_15_n288#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_111_222#" 125.125 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 175344 -1328 0 0 53856 -800 219732 -1120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_111_222#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n177_n288#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n177_n288#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n81_222#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n81_222#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "a_122_62#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n33_n200#" -271.127 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -108276 -1608 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#"
+merge "sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#"
+merge "sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "m1_68_150#"
diff --git a/mag/feedback/currm_n.mag b/mag/feedback/currm_n.mag
new file mode 100644
index 0000000..93cad0b
--- /dev/null
+++ b/mag/feedback/currm_n.mag
@@ -0,0 +1,104 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< pwell >>
+rect 122 572 476 638
+rect 122 62 476 128
+<< poly >>
+rect 122 622 476 638
+rect 122 588 138 622
+rect 172 588 330 622
+rect 364 588 476 622
+rect 122 572 476 588
+rect 122 112 476 128
+rect 122 78 234 112
+rect 268 78 426 112
+rect 460 78 476 112
+rect 122 62 476 78
+<< polycont >>
+rect 138 588 172 622
+rect 330 588 364 622
+rect 234 78 268 112
+rect 426 78 460 112
+<< locali >>
+rect 122 588 138 622
+rect 172 588 330 622
+rect 364 588 476 622
+rect 122 78 234 112
+rect 268 78 426 112
+rect 460 78 476 112
+rect 80 -100 530 -10
+rect 390 -820 500 -100
+<< viali >>
+rect 138 588 172 622
+rect 330 588 364 622
+rect 234 78 268 112
+rect 426 78 460 112
+<< metal1 >>
+rect 122 622 476 628
+rect 122 620 138 622
+rect 0 590 138 620
+rect 0 110 30 590
+rect 122 588 138 590
+rect 172 588 330 622
+rect 364 588 476 622
+rect 122 582 476 588
+rect 164 390 174 550
+rect 232 390 242 550
+rect 356 390 366 550
+rect 424 390 434 550
+rect 68 150 78 310
+rect 136 150 146 310
+rect 260 150 270 310
+rect 328 150 338 310
+rect 452 150 462 310
+rect 520 150 530 310
+rect 290 118 320 120
+rect 122 112 476 118
+rect 122 110 234 112
+rect 0 80 234 110
+rect 122 78 234 80
+rect 268 78 426 112
+rect 460 78 476 112
+rect 122 72 476 78
+rect 130 -420 140 -260
+rect 220 -420 230 -260
+rect 290 -730 320 72
+rect 390 -660 520 -520
+rect 420 -830 430 -660
+rect 520 -830 530 -660
+<< via1 >>
+rect 174 390 232 550
+rect 366 390 424 550
+rect 78 150 136 310
+rect 270 150 328 310
+rect 462 150 520 310
+rect 140 -420 220 -260
+rect 430 -830 520 -660
+<< metal2 >>
+rect 170 550 430 560
+rect 170 410 174 550
+rect 232 410 366 550
+rect 174 380 232 390
+rect 424 410 430 550
+rect 366 380 424 390
+rect 78 310 136 320
+rect 270 310 328 320
+rect 136 150 270 290
+rect 462 310 520 320
+rect 328 150 462 290
+rect 78 140 520 150
+rect 140 -260 220 140
+rect 140 -430 220 -420
+rect 430 -660 520 -650
+rect 430 -840 520 -830
+use sky130_fd_pr__nfet_01v8_82JNGJ  sky130_fd_pr__nfet_01v8_82JNGJ_0
+timestamp 1653925904
+transform 1 0 299 0 1 350
+box -359 -410 359 410
+use sky130_fd_pr__nfet_01v8_PJG2KG  sky130_fd_pr__nfet_01v8_PJG2KG_0
+timestamp 1653925904
+transform 1 0 306 0 1 -460
+box -246 -410 246 410
+<< end >>
diff --git a/mag/feedback/currm_p.ext b/mag/feedback/currm_p.ext
new file mode 100644
index 0000000..dede6ad
--- /dev/null
+++ b/mag/feedback/currm_p.ext
@@ -0,0 +1,59 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_lvt_LKHJAY sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0 1 0 365 0 1 429
+use sky130_fd_pr__pfet_01v8_lvt_4LMUGG sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0 1 0 619 0 1 -391
+node "m1_190_n590#" 3 397.832 190 -590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54400 2000 134100 2280 0 0 0 0 0 0 0 0
+node "m1_60_n360#" 5 704.733 60 -360 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 84200 3040 259200 4080 0 0 0 0 0 0 0 0
+node "m1_70_460#" 1 242.028 70 460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27200 1000 99300 1560 0 0 0 0 0 0 0 0
+node "m1_n50_n680#" 11 1326.85 -50 -680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 227800 9000 0 0 0 0 0 0 0 0 0 0
+node "li_n20_n20#" 234 869.281 -20 -20 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192500 3960 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_n20_n20#" "m1_60_n360#" 86.9385
+cap "m1_n50_n680#" "m1_70_460#" 302.384
+cap "li_n20_n20#" "m1_n50_n680#" 83.7475
+cap "m1_n50_n680#" "m1_60_n360#" 889.286
+cap "m1_190_n590#" "m1_60_n360#" 394.91
+cap "m1_190_n590#" "m1_n50_n680#" 394.18
+cap "li_n20_n20#" "m1_70_460#" 184.843
+cap "m1_60_n360#" "m1_70_460#" 102.294
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 651.559
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1146.05
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" 117.476
+cap "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 165.922
+cap "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" 678.338
+cap "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 36.9875
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 216.43
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" 31.5446
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" 40.2976
+cap "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" 0.254273
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_285_n297#" -2332.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1641888 -5360 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_285_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_29_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n99_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n99_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_29_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n50_n680#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/VSUBS" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_355_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_99_n200#" -579.957 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -313864 -1728 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_99_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n157_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n157_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "m1_190_n590#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_483_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_227_n200#" -781.632 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -166466 -2602 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_227_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n29_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#" "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n29_n200#" "m1_60_n360#"
+merge "sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_229_n200#" -1505.88 0 0 0 0 -15300 -1736 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -287720 -7052 -28264 -860 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_229_n200#" "m1_70_460#"
+merge "m1_70_460#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n287_n200#"
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n287_n200#" "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "li_n20_n20#"
diff --git a/mag/feedback/currm_p.mag b/mag/feedback/currm_p.mag
new file mode 100644
index 0000000..bb2ddac
--- /dev/null
+++ b/mag/feedback/currm_p.mag
@@ -0,0 +1,95 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< locali >>
+rect -10 70 100 630
+rect 630 70 740 630
+rect -20 -20 750 70
+<< metal1 >>
+rect 130 670 600 720
+rect 70 460 80 630
+rect 140 460 150 630
+rect 190 190 240 670
+rect 580 460 590 630
+rect 650 460 660 630
+rect 320 230 330 410
+rect 400 230 410 410
+rect 130 140 600 190
+rect 190 -100 240 140
+rect -50 -150 1110 -100
+rect -50 -630 10 -150
+rect 60 -360 70 -190
+rect 130 -360 140 -190
+rect 320 -360 330 -190
+rect 390 -360 400 -190
+rect 580 -360 590 -190
+rect 650 -360 660 -190
+rect 830 -360 840 -190
+rect 900 -360 910 -190
+rect 1090 -360 1100 -190
+rect 1160 -360 1170 -190
+rect 190 -590 200 -420
+rect 260 -590 270 -420
+rect 450 -590 460 -420
+rect 520 -590 530 -420
+rect 710 -590 720 -420
+rect 780 -590 790 -420
+rect 960 -590 970 -420
+rect 1030 -590 1040 -420
+rect -50 -680 1110 -630
+<< via1 >>
+rect 80 460 140 630
+rect 590 460 650 630
+rect 330 230 400 410
+rect 70 -360 130 -190
+rect 330 -360 390 -190
+rect 590 -360 650 -190
+rect 840 -360 900 -190
+rect 1100 -360 1160 -190
+rect 200 -590 260 -420
+rect 460 -590 520 -420
+rect 720 -590 780 -420
+rect 970 -590 1030 -420
+<< metal2 >>
+rect 80 630 650 640
+rect 140 470 590 630
+rect 80 450 140 460
+rect 590 450 650 460
+rect 330 410 400 420
+rect 290 230 330 330
+rect 400 230 440 330
+rect 70 -190 130 -180
+rect 290 -190 440 230
+rect 590 -190 650 -180
+rect 840 -190 900 -180
+rect 1100 -190 1160 -180
+rect 130 -340 330 -190
+rect 70 -370 130 -360
+rect 390 -340 590 -190
+rect 330 -370 390 -360
+rect 650 -340 840 -190
+rect 590 -370 650 -360
+rect 900 -340 1100 -190
+rect 840 -370 900 -360
+rect 1100 -370 1160 -360
+rect 200 -420 260 -410
+rect 460 -420 520 -410
+rect 260 -590 460 -440
+rect 720 -420 780 -410
+rect 520 -590 720 -440
+rect 970 -420 1030 -410
+rect 780 -590 970 -440
+rect 200 -600 260 -590
+rect 460 -600 520 -590
+rect 720 -600 780 -590
+rect 970 -600 1030 -590
+use sky130_fd_pr__pfet_01v8_lvt_4LMUGG  sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0
+timestamp 1653925904
+transform 1 0 619 0 1 -391
+box -679 -419 679 419
+use sky130_fd_pr__pfet_01v8_lvt_LKHJAY  sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0
+timestamp 1653925904
+transform 1 0 365 0 1 429
+box -425 -419 425 419
+<< end >>
diff --git a/mag/feedback/currm_ps.ext b/mag/feedback/currm_ps.ext
new file mode 100644
index 0000000..225660f
--- /dev/null
+++ b/mag/feedback/currm_ps.ext
@@ -0,0 +1,72 @@
+timestamp 1653409843
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_U4PWGH sky130_fd_pr__pfet_01v8_U4PWGH_0 1 0 501 0 1 369
+use sky130_fd_pr__pfet_01v8_PD4XN5 sky130_fd_pr__pfet_01v8_PD4XN5_0 1 0 275 0 1 1189
+node "m1_170_170#" 3 319.52 170 170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54400 2000 113600 1780 0 0 0 0 0 0 0 0
+node "m1_80_400#" 4 595.331 80 400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83300 3020 229800 3380 0 0 0 0 0 0 0 0
+node "m1_70_1220#" 1 162.833 70 1220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30600 1040 69100 1200 0 0 0 0 0 0 0 0
+node "li_n10_740#" 91 209.349 -10 740 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45600 1300 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_440_830#" 92 280.301 440 830 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72000 1640 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_10_830#" 92 280.301 10 830 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72000 1640 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_132_72#" 1886 1384.24 132 72 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100236 3404 0 0 50184 3088 209700 7740 0 0 0 0 0 0 0 0 0 0
+node "w_132_72#" 11969 151.164 132 72 nw 0 0 0 0 50388 1720 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_132_600#" 11533 149.544 132 600 nw 0 0 0 0 49848 1684 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_440_830#" "a_132_72#" 295.897
+cap "li_10_830#" "li_440_830#" 61.0909
+cap "m1_170_170#" "a_132_72#" 413.862
+cap "m1_80_400#" "a_132_72#" 1049.29
+cap "a_132_72#" "m1_70_1220#" 290.781
+cap "m1_80_400#" "m1_170_170#" 471.807
+cap "li_440_830#" "m1_70_1220#" 51.282
+cap "li_10_830#" "m1_70_1220#" 113.328
+cap "m1_80_400#" "m1_70_1220#" 114.974
+cap "a_132_72#" "li_n10_740#" 220.535
+cap "li_440_830#" "li_n10_740#" 280
+cap "li_10_830#" "li_n10_740#" 280
+cap "m1_80_400#" "li_n10_740#" 36.6267
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 185.189
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" 1447.35
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" 1418.82
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" 175.092
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 560.557
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" -15.263
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" 0.139384
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" 45.9647
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 17.5567
+cap "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" 273.657
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/VSUBS" "sky130_fd_pr__pfet_01v8_U4PWGH_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_351_n200#" -672.23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -166006 -2582 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_351_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_159_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n225_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "m1_80_400#"
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 4541.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1734372 -2700 0 0 491040 -1600 1134960 -2768 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_207_n297#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_207_n297#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_15_n297#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n369_n297#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n369_n297#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_303_231#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_303_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_111_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n81_231#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n273_231#" "a_132_72#"
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_129_n200#" "m1_70_1220#" 3314.93 0 0 0 0 1521072 -4740 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -286240 -7644 -28804 -860 0 0 0 0 0 0 0 0 0 0
+merge "m1_70_1220#" "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n187_n200#"
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n187_n200#" "sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "li_440_830#"
+merge "li_440_830#" "li_10_830#"
+merge "li_10_830#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "li_n10_740#"
+merge "li_n10_740#" "w_132_72#"
+merge "w_132_72#" "w_132_600#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_255_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_63_n200#" -501.646 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -313864 -1728 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n129_n200#" "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#"
+merge "sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" "m1_170_170#"
diff --git a/mag/feedback/currm_ps.mag b/mag/feedback/currm_ps.mag
new file mode 100644
index 0000000..b07627b
--- /dev/null
+++ b/mag/feedback/currm_ps.mag
@@ -0,0 +1,170 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653409843
+<< nwell >>
+rect 132 600 870 666
+rect 150 590 180 600
+rect 342 590 372 600
+rect 534 590 564 600
+rect 726 592 756 600
+rect 246 138 276 152
+rect 438 138 468 152
+rect 630 138 660 152
+rect 822 138 852 152
+rect 132 72 870 138
+<< poly >>
+rect 132 650 870 666
+rect 132 616 148 650
+rect 182 616 340 650
+rect 374 616 532 650
+rect 566 616 724 650
+rect 758 616 870 650
+rect 132 600 870 616
+rect 150 590 180 600
+rect 342 590 372 600
+rect 534 590 564 600
+rect 726 592 756 600
+rect 246 138 276 152
+rect 438 138 468 152
+rect 630 138 660 152
+rect 822 138 852 152
+rect 132 122 870 138
+rect 132 88 244 122
+rect 278 88 436 122
+rect 470 88 628 122
+rect 662 88 820 122
+rect 854 88 870 122
+rect 132 72 870 88
+<< polycont >>
+rect 148 616 182 650
+rect 340 616 374 650
+rect 532 616 566 650
+rect 724 616 758 650
+rect 244 88 278 122
+rect 436 88 470 122
+rect 628 88 662 122
+rect 820 88 854 122
+<< locali >>
+rect 10 830 110 1550
+rect 440 830 540 1550
+rect -10 740 560 820
+rect 132 616 148 650
+rect 182 616 340 650
+rect 374 616 532 650
+rect 566 616 724 650
+rect 758 616 870 650
+rect 132 88 244 122
+rect 278 88 436 122
+rect 470 88 628 122
+rect 662 88 820 122
+rect 854 88 870 122
+<< viali >>
+rect 148 616 182 650
+rect 340 616 374 650
+rect 532 616 566 650
+rect 724 616 758 650
+rect 244 88 278 122
+rect 436 88 470 122
+rect 628 88 662 122
+rect 820 88 854 122
+<< metal1 >>
+rect 140 1430 580 1490
+rect 70 1220 80 1390
+rect 150 1220 160 1390
+rect 390 1220 400 1390
+rect 470 1220 480 1390
+rect 230 990 240 1160
+rect 310 990 320 1160
+rect 520 950 580 1430
+rect 140 890 580 950
+rect 320 660 390 890
+rect -10 650 870 660
+rect -10 616 148 650
+rect 182 616 340 650
+rect 374 616 532 650
+rect 566 616 724 650
+rect 758 616 870 650
+rect -10 610 870 616
+rect -10 130 40 610
+rect 80 400 90 570
+rect 150 400 160 570
+rect 270 400 280 570
+rect 340 400 350 570
+rect 460 400 470 570
+rect 530 400 540 570
+rect 650 400 660 570
+rect 720 400 730 570
+rect 850 400 860 570
+rect 920 400 930 570
+rect 170 170 180 340
+rect 240 170 250 340
+rect 370 170 380 340
+rect 440 170 450 340
+rect 560 170 570 340
+rect 630 170 640 340
+rect 750 170 760 340
+rect 820 170 830 340
+rect -10 122 870 130
+rect -10 88 244 122
+rect 278 88 436 122
+rect 470 88 628 122
+rect 662 88 820 122
+rect 854 88 870 122
+rect -10 80 870 88
+<< via1 >>
+rect 80 1220 150 1390
+rect 400 1220 470 1390
+rect 240 990 310 1160
+rect 90 400 150 570
+rect 280 400 340 570
+rect 470 400 530 570
+rect 660 400 720 570
+rect 860 400 920 570
+rect 180 170 240 340
+rect 380 170 440 340
+rect 570 170 630 340
+rect 760 170 820 340
+<< metal2 >>
+rect 80 1390 150 1400
+rect 400 1390 470 1400
+rect 150 1220 400 1390
+rect 80 1210 150 1220
+rect 400 1210 470 1220
+rect 240 1160 310 1170
+rect 230 990 240 1160
+rect 310 990 370 1160
+rect 90 570 150 580
+rect 230 570 370 990
+rect 470 570 530 580
+rect 660 570 720 580
+rect 860 570 920 580
+rect 150 400 280 570
+rect 340 400 470 570
+rect 530 400 660 570
+rect 720 400 860 570
+rect 90 390 150 400
+rect 280 390 340 400
+rect 470 390 530 400
+rect 660 390 720 400
+rect 860 390 920 400
+rect 180 340 240 350
+rect 380 340 440 350
+rect 570 340 630 350
+rect 760 340 820 350
+rect 240 170 380 340
+rect 440 170 570 340
+rect 630 170 760 340
+rect 180 160 240 170
+rect 380 160 440 170
+rect 570 160 630 170
+rect 760 160 820 170
+use sky130_fd_pr__pfet_01v8_PD4XN5  sky130_fd_pr__pfet_01v8_PD4XN5_0
+timestamp 1653409082
+transform 1 0 275 0 1 1189
+box -325 -419 325 419
+use sky130_fd_pr__pfet_01v8_U4PWGH  sky130_fd_pr__pfet_01v8_U4PWGH_0
+timestamp 1653409082
+transform 1 0 501 0 1 369
+box -551 -419 551 419
+<< end >>
diff --git a/mag/feedback/fb_amp.ext b/mag/feedback/fb_amp.ext
new file mode 100644
index 0000000..4d12068
--- /dev/null
+++ b/mag/feedback/fb_amp.ext
@@ -0,0 +1,3707 @@
+timestamp 1653928575
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use currm_n currm_n_48 1 0 -8160 0 1 -1030
+use currm_n currm_n_34 1 0 -8860 0 1 -1030
+use currm_n currm_n_31 1 0 -9560 0 1 -1030
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0 1 0 -2149 0 1 -2449
+use currm_n currm_n_49 1 0 -7460 0 1 -1030
+use sky130_fd_pr__nfet_01v8_LH2JGW sky130_fd_pr__nfet_01v8_LH2JGW_1 1 0 -6177 0 1 -680
+use currm_n currm_n_25 1 0 -5870 0 1 -1030
+use currm_n currm_n_21 1 0 -5170 0 1 -1030
+use currm_n currm_n_22 1 0 -3770 0 1 -1030
+use currm_n currm_n_23 1 0 -4470 0 1 -1030
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1 -1 0 5083 0 -1 -2449
+use sky130_fd_pr__nfet_01v8_LH2JGW sky130_fd_pr__nfet_01v8_LH2JGW_0 1 0 -207 0 1 -1460
+use currm_n currm_n_46 1 0 120 0 1 -1030
+use sky130_fd_pr__nfet_01v8_6H2JYD sky130_fd_pr__nfet_01v8_6H2JYD_0 1 0 -669 0 1 -1560
+use sky130_fd_pr__pfet_01v8_UAQRRG sky130_fd_pr__pfet_01v8_UAQRRG_0 1 0 -689 0 1 -911
+use currm_n currm_n_44 1 0 1520 0 1 -1030
+use currm_n currm_n_45 1 0 2220 0 1 -1030
+use currm_n currm_n_47 1 0 820 0 1 -1030
+use sky130_fd_pr__nfet_01v8_LH2JGW sky130_fd_pr__nfet_01v8_LH2JGW_2 1 0 9123 0 1 -690
+use currm_n currm_n_12 1 0 7510 0 1 -1030
+use currm_n currm_n_13 1 0 6810 0 1 -1030
+use currm_n currm_n_14 1 0 6110 0 1 -1030
+use currm_n currm_n_24 1 0 8210 0 1 -1030
+use currm_n currm_n_35 1 0 9700 0 1 -1030
+use currm_n currm_n_32 1 0 11800 0 1 -1030
+use currm_n currm_n_36 1 0 10400 0 1 -1030
+use currm_n currm_n_37 1 0 11100 0 1 -1030
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW sky130_fd_pr__cap_mim_m3_2_MJMGTW_1 0 1 -7689 -1 0 3443
+use currm_n currm_n_27 1 0 -8860 0 1 590
+use currm_n currm_n_28 1 0 -8160 0 1 590
+use currm_n currm_n_30 1 0 -9560 0 1 590
+use currm_ps currm_ps_21 1 0 -8470 0 1 2690
+use currm_ps currm_ps_20 1 0 -9560 0 1 2690
+use currm_ps currm_ps_17 1 0 -8470 0 1 4330
+use currm_ps currm_ps_16 1 0 -9560 0 1 4330
+use currm_n currm_n_29 1 0 -7460 0 1 590
+use currm_n currm_n_26 1 0 -6760 0 1 590
+use currm_n currm_n_15 1 0 -5170 0 1 590
+use currm_n currm_n_33 1 0 -5870 0 1 590
+use currm_ps currm_ps_15 1 0 -7380 0 1 2690
+use currm_ps currm_ps_14 1 0 -7380 0 1 4330
+use currm_ps currm_ps_19 1 0 -6290 0 1 2690
+use currm_p currm_p_11 1 0 -5190 0 1 3450
+use currm_ps currm_ps_18 1 0 -6290 0 1 4330
+use currm_p currm_p_9 1 0 -5190 0 1 5090
+use currm_n currm_n_20 1 0 -1670 0 1 590
+use currm_n currm_n_19 1 0 -3070 0 1 590
+use currm_n currm_n_18 1 0 -2370 0 1 590
+use currm_n currm_n_17 1 0 -3770 0 1 590
+use currm_n currm_n_16 1 0 -4470 0 1 590
+use currm_p currm_p_4 1 0 -2510 0 1 5090
+use currm_p currm_p_6 1 0 -3850 0 1 5090
+use currm_p currm_p_3 1 0 -2510 0 1 3450
+use currm_p currm_p_8 1 0 -3850 0 1 3450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 0 1 -2159 -1 0 3473
+use currm_n currm_n_3 1 0 120 0 1 590
+use currm_n currm_n_5 1 0 -580 0 1 590
+use currm_n currm_n_0 1 0 820 0 1 590
+use currm_n currm_n_1 1 0 1520 0 1 590
+use currm_n currm_n_2 1 0 2220 0 1 590
+use currm_n currm_n_4 1 0 2920 0 1 590
+use currm_n currm_n_6 1 0 4010 0 1 590
+use currm_n currm_n_7 1 0 4710 0 1 590
+use sky130_fd_pr__nfet_01v8_E6B2KN sky130_fd_pr__nfet_01v8_E6B2KN_0 1 0 1155 0 1 1760
+use sky130_fd_pr__nfet_01v8_E6B2KN sky130_fd_pr__nfet_01v8_E6B2KN_1 1 0 1795 0 1 1760
+use currm_p currm_p_21 1 0 4190 0 1 3450
+use currm_p currm_p_20 1 0 4190 0 1 5090
+use currm_p currm_p_12 1 0 2850 0 1 3450
+use currm_p currm_p_1 1 0 1510 0 1 3450
+use currm_p currm_p_0 1 0 170 0 1 3450
+use currm_p currm_p_2 1 0 -1170 0 1 3450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 0 1 5041 -1 0 3483
+use currm_n currm_n_8 1 0 5410 0 1 590
+use currm_n currm_n_9 1 0 7510 0 1 590
+use currm_n currm_n_10 1 0 6810 0 1 590
+use currm_n currm_n_11 1 0 6110 0 1 590
+use currm_n currm_n_38 1 0 9000 0 1 590
+use currm_n currm_n_41 1 0 9700 0 1 590
+use currm_n currm_n_43 1 0 8210 0 1 590
+use currm_n currm_n_39 1 0 11100 0 1 590
+use currm_n currm_n_40 1 0 10400 0 1 590
+use currm_n currm_n_42 1 0 11800 0 1 590
+use currm_p currm_p_16 1 0 5530 0 1 3450
+use currm_p currm_p_15 1 0 6870 0 1 3450
+use currm_ps currm_ps_0 1 0 8200 0 1 2690
+use currm_ps currm_ps_1 1 0 9290 0 1 2690
+use currm_ps currm_ps_6 1 0 10380 0 1 2690
+use currm_ps currm_ps_9 1 0 11470 0 1 2690
+use currm_p currm_p_17 1 0 5530 0 1 5090
+use currm_p currm_p_14 1 0 6870 0 1 5090
+use currm_ps currm_ps_10 1 0 8200 0 1 4330
+use currm_ps currm_ps_2 1 0 9290 0 1 4330
+use currm_ps currm_ps_5 1 0 10380 0 1 4330
+use currm_ps currm_ps_8 1 0 11470 0 1 4330
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW sky130_fd_pr__cap_mim_m3_2_MJMGTW_0 0 1 10711 -1 0 3483
+use currm_ps currm_ps_13 1 0 -8470 0 1 5970
+use currm_ps currm_ps_12 1 0 -9560 0 1 5970
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_0 1 0 -5981 0 1 6339
+use currm_ps currm_ps_11 1 0 -7380 0 1 5970
+use currm_p currm_p_10 1 0 -5190 0 1 6730
+use currm_p currm_p_7 1 0 -3850 0 1 6730
+use currm_p currm_p_5 1 0 -2510 0 1 6730
+use currm_p currm_p_19 1 0 4190 0 1 6730
+use sky130_fd_pr__pfet_01v8_U47ZGH sky130_fd_pr__pfet_01v8_U47ZGH_1 1 0 8509 0 1 6339
+use currm_p currm_p_18 1 0 5530 0 1 6730
+use currm_p currm_p_13 1 0 6870 0 1 6730
+use currm_ps currm_ps_3 1 0 9290 0 1 5970
+use currm_ps currm_ps_4 1 0 10380 0 1 5970
+use currm_ps currm_ps_7 1 0 11470 0 1 5970
+node "m5_670_1940#" 0 267.017 670 1940 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 547600 3700 0 0
+node "m4_670_1940#" 0 297.242 670 1940 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 547600 3700 0 0 0 0
+node "m4_210_2860#" 0 240.019 210 2860 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 108000 1340 0 0 0 0
+node "m2_200_n880#" 2 424.683 200 -880 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 340800 4580 0 0 0 0 0 0 0 0
+node "m2_9090_740#" 6 1705.9 9090 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 897600 12180 510400 7840 0 0 0 0 0 0
+node "m2_4080_740#" 6 1550.55 4080 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 923200 12500 510400 7840 0 0 0 0 0 0
+node "m2_250_740#" 2 435.024 250 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 369600 4940 0 0 0 0 0 0 0 0
+node "m2_n5090_n880#" 6 1573.01 -5090 -880 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 917900 12120 510400 7840 0 0 0 0 0 0
+node "m2_n9490_740#" 6 1292.91 -9490 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 883200 11680 165300 3800 0 0 0 0 0 0
+node "m2_3320_1130#" 0 7.4401 3320 1130 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200 60 0 0 0 0 0 0 0 0
+node "OutN" 11 6698.03 9170 980 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4437200 32420 3796400 34820 0 0 0 0 0 0
+node "m2_9370_4730#" 9 2531.61 9370 4730 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1328200 17220 1228550 14750 0 0 0 0 0 0
+node "m2_4260_3100#" 12 3438.44 4260 3100 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1716300 23720 1329250 14790 0 0 0 0 0 0
+node "m2_n5800_4500#" 19 5578.53 -5800 4500 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3108700 39760 1837750 22610 0 0 0 0 0 0
+node "OutP" 10 4773.12 -9390 -630 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2675300 29380 4038600 15220 0 0 0 0 0 0
+node "m2_n9350_4740#" 9 2026.69 -9350 4740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1324000 17520 283400 7140 0 0 0 0 0 0
+node "m2_n5120_4740#" 11 3073.62 -5120 4740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1644300 22760 1327350 14770 0 0 0 0 0 0
+node "m1_n710_n1640#" 1 12.2394 -710 -1640 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 120 0 0 0 0 0 0 0 0 0 0
+node "m1_n250_n1430#" 1 980.539 -250 -1430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13600 500 237700 3020 74000 1140 519124 3606 0 0 0 0
+node "m1_9750_n950#" 10 789.827 9750 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74400 5020 0 0 0 0 0 0 0 0 0 0
+node "m1_6180_n950#" 7 508.628 6180 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47100 3200 0 0 0 0 0 0 0 0 0 0
+node "m1_1980_n950#" 1 93.3823 1980 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_1290_n950#" 1 98.3419 1290 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_560_n950#" 1 93.6482 560 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_9760_n440#" 16 1185.84 9760 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114600 7700 0 0 0 0 0 0 0 0 0 0
+node "m1_9390_670#" 10 730.101 9390 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75000 5060 0 0 0 0 0 0 0 0 0 0
+node "m1_9390_1180#" 10 793.59 9390 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75000 5060 0 0 0 0 0 0 0 0 0 0
+node "m1_8440_n420#" 3 1444.48 8440 -420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22000 900 190800 2940 739400 7810 0 0 0 0 0 0
+node "m1_7800_n440#" 2 128.362 7800 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 860 0 0 0 0 0 0 0 0 0 0
+node "m1_6150_n440#" 10 714.221 6150 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69300 4680 0 0 0 0 0 0 0 0 0 0
+node "m1_2510_n430#" 1 131.554 2510 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_1980_n440#" 1 89.2589 1980 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_1810_n430#" 1 101.964 1810 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "I_Bias" 2 1009.9 1370 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11400 520 356900 4500 68400 1120 1273704 6646 0 0 0 0
+node "m1_1110_n420#" 1 101.311 1110 -420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10200 740 0 0 0 0 0 0 0 0 0 0
+node "m1_570_n440#" 1 91.1032 570 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_410_n430#" 1 125.645 410 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_4960_670#" 13 874.275 4960 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90300 6080 0 0 0 0 0 0 0 0 0 0
+node "m1_4460_670#" 1 108.835 4460 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9600 700 0 0 0 0 0 0 0 0 0 0
+node "m1_4960_1180#" 13 453.766 4960 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90600 6100 0 0 0 0 0 0 0 0 0 0
+node "m1_4450_1180#" 1 51.6455 4450 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9600 700 0 0 0 0 0 0 0 0 0 0
+node "m1_3040_1180#" 0 17.1279 3040 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 180 0 0 0 0 0 0 0 0 0 0
+node "m1_3120_1200#" 2 612.081 3120 1200 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20400 580 300600 4340 0 0 0 0 0 0 0 0
+node "InN" 3 207.559 1510 1460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81800 2780 0 0 0 0 0 0 0 0 0 0
+node "m1_950_1560#" 5 828.122 950 1560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61200 2080 652800 7880 0 0 0 0 0 0 0 0
+node "m1_n400_1190#" 2 570.133 -400 1190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10200 460 317400 4520 0 0 0 0 0 0 0 0
+node "m1_n5090_n950#" 6 464.11 -5090 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43200 2940 0 0 0 0 0 0 0 0 0 0
+node "VN" 6 25654.5 -6310 -880 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91200 3400 19507300 91620 1913600 12400 1835320 12140 16480940 55428 0 0
+node "m1_n6220_n640#" 3 1519.48 -6220 -640 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25600 960 169700 2780 923650 7910 0 0 0 0 0 0
+node "m1_n9530_n940#" 9 718.215 -9530 -940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67500 4560 0 0 0 0 0 0 0 0 0 0
+node "m1_n3480_n440#" 2 152.599 -3480 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12600 900 0 0 0 0 0 0 0 0 0 0
+node "Disable_FB" 32 3346.73 -6390 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 264800 12260 37600 1540 959900 31970 0 0 0 0 0 0
+node "m1_n5090_n440#" 9 675.658 -5090 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66600 4500 0 0 0 0 0 0 0 0 0 0
+node "m1_n5100_670#" 15 1032.73 -5100 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105900 7120 0 0 0 0 0 0 0 0 0 0
+node "m1_n5100_1180#" 15 649.587 -5100 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105600 7100 0 0 0 0 0 0 0 0 0 0
+node "m1_n5490_1180#" 32 4297.55 -5490 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 883800 30180 0 0 0 0 0 0 0 0 0 0
+node "InP" 3 197.979 1020 1460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81800 2780 0 0 0 0 0 0 0 0 0 0
+node "m1_n170_1370#" 22 1512.53 -170 1370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 179100 10480 97300 3240 0 0 0 0 0 0 0 0
+node "m1_n1280_1370#" 21 945.413 -1280 1370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198700 10720 110300 3300 0 0 0 0 0 0 0 0
+node "m1_n7170_n410#" 1 119.909 -7170 -410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10200 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n9530_n430#" 13 988.468 -9530 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96900 6520 0 0 0 0 0 0 0 0 0 0
+node "m1_n9530_670#" 12 836.348 -9530 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86400 5820 0 0 0 0 0 0 0 0 0 0
+node "VM31D" 80 3729.61 -6000 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 572100 38240 0 0 0 0 0 0 0 0 0 0
+node "m1_n9530_1180#" 12 913.084 -9530 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86400 5820 0 0 0 0 0 0 0 0 0 0
+node "VM30D" 77 2544.33 -6320 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606300 38420 25200 1200 0 0 0 0 0 0 0 0
+node "m1_11220_2770#" 1 128.195 11220 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10140_2770#" 1 121.76 10140 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9030_2770#" 1 124.005 9030 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_11190_3300#" 1 119.672 11190 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10140_3300#" 1 112.887 10140 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9040_3300#" 1 124 9040 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_11990_4150#" 1 144.471 11990 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_11220_4410#" 1 109.594 11220 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10900_4150#" 1 130.437 10900 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_4410#" 1 108.203 10120 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9810_4150#" 1 134.045 9810 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_8720_4120#" 1 128.727 8720 4120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_11230_4940#" 1 117.065 11230 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_4940#" 1 116.236 10120 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_8350_5220#" 0 26.3601 8350 5220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1800 180 0 0 0 0 0 0 0 0 0 0
+node "m1_11990_5780#" 1 145.286 11990 5780 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_11230_6050#" 1 113.036 11230 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10900_5780#" 1 132.5 10900 5780 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_10130_6050#" 1 112.421 10130 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9810_5770#" 1 145.461 9810 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_3850_2770#" 9 966.909 3850 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188000 7620 0 0 0 0 0 0 0 0 0 0
+node "m1_2590_2770#" 1 68.696 2590 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "VM14D" 2 1083.51 1750 1790 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38300 1180 288500 3360 92800 1480 121814 1446 332100 2440 0 0
+node "VM16D" 2 765.625 970 2730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30700 1100 308900 3180 58500 1080 262844 2146 0 0 0 0
+node "m1_n110_2770#" 1 68.1438 -110 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n1510_2770#" 1 86.3737 -1510 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n2860_2770#" 1 88.3578 -2860 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n4100_2770#" 1 72.7489 -4100 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_6600_3300#" 1 107.798 6600 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_5250_3300#" 1 107.45 5250 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_3850_3300#" 1 115.255 3850 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_2550_3300#" 1 121.16 2550 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n120_3300#" 1 117.782 -120 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n1520_3300#" 1 151.835 -1520 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n2890_3300#" 1 145.922 -2890 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n4160_3300#" 1 110.815 -4160 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_4140_4410#" 12 2002.36 4140 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240000 9700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2320_4140#" 1 143.946 -2320 4140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2810_4410#" 1 102.074 -2810 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n3660_4140#" 1 139.751 -3660 4140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n4160_4410#" 1 100.154 -4160 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n5000_4150#" 1 102.094 -5000 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_6550_4940#" 1 136.909 6550 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_5210_4940#" 1 137.969 5210 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_n2790_4940#" 1 107.969 -2790 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n4150_4940#" 1 106.08 -4150 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_11200_6580#" 1 128.246 11200 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_6580#" 1 125.747 10120 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_4140_6050#" 12 2006.7 4140 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240000 9700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2320_5790#" 1 142.093 -2320 5790 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2790_6050#" 1 108.089 -2790 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n3660_5770#" 1 141.765 -3660 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n4140_6050#" 1 111.388 -4140 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n5000_5770#" 1 104.609 -5000 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n6170_2770#" 1 68.6907 -6170 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n6530_2770#" 1 88.5421 -6530 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n7620_2770#" 1 118.778 -7620 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n8700_2770#" 1 109.989 -8700 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n6170_3300#" 2 283.668 -6170 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37500 1600 0 0 0 0 0 0 0 0 0 0
+node "m1_n6540_3300#" 1 92.9837 -6540 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n7620_3300#" 1 110.754 -7620 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n8710_3300#" 1 102.31 -8710 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n5770_4120#" 1 101.105 -5770 4120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n6550_4410#" 1 91.2068 -6550 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n6860_4120#" 1 138.311 -6860 4120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n7650_4410#" 1 110.782 -7650 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n7950_4120#" 1 140.106 -7950 4120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n8740_4410#" 1 112.305 -8740 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n9040_4120#" 1 152.451 -9040 4120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n6550_4940#" 1 106.859 -6550 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n7620_4940#" 1 106.16 -7620 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n8740_4940#" 1 102.522 -8740 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14000 660 0 0 0 0 0 0 0 0 0 0
+node "m1_n6860_5760#" 1 154.127 -6860 5760 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n7950_5760#" 1 143.627 -7950 5760 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "VM34D" 22 7126.54 8160 4500 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40000 1460 2770200 37520 4290350 44890 0 0 0 0 0 0
+node "m1_6540_6580#" 1 149.005 6540 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_5210_6580#" 1 149.041 5210 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_n2820_6580#" 1 123.539 -2820 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n4170_6580#" 1 123.5 -4170 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n8700_6050#" 1 113.6 -8700 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "m1_n9040_5760#" 1 152.682 -9040 5760 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 0 0 0 0 0 0 0 0 0 0
+node "m1_n6130_4370#" 3 740.806 -6130 4370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48800 1700 135000 2080 510300 4220 0 0 0 0 0 0
+node "VP" 7 36405.3 -6210 6380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88000 3320 24978500 130100 7202700 40230 1162176 8692 12789836 49624 0 0
+node "Disable_FB_B" 2 7795.08 -6150 6060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1023500 54080 105900 2800 0 0 0 0 0 0 0 0
+node "m1_n8730_6580#" 1 128.304 -8730 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 740 0 0 0 0 0 0 0 0 0 0
+node "li_n110_n1590#" 48 207.735 -110 -1590 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18200 660 16728 572 0 0 0 0 0 0 0 0 0 0
+node "li_n630_n1600#" 22 67.7747 -630 -1600 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8400 380 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n640_n960#" 20 70.8345 -640 -960 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7700 360 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_850_1310#" 388 1374.86 850 1310 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 245600 5640 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n1290_4230#" 993 151.8 -1290 4230 nw 0 0 0 0 50600 900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "VN" "m1_n5090_n950#" 129.05
+cap "m1_6550_4940#" "VP" 77.1555
+cap "m1_9390_670#" "m1_9760_n440#" 74.128
+cap "m1_1810_n430#" "m1_1980_n440#" 5.27143
+cap "m1_6540_6580#" "Disable_FB_B" 0.742953
+cap "VP" "VM14D" 18.8422
+cap "m1_410_n430#" "Disable_FB_B" 10.7625
+cap "m2_200_n880#" "m1_n250_n1430#" 143.134
+cap "m1_n1280_1370#" "m5_670_1940#" 11.985
+cap "m1_n1520_3300#" "m1_n2890_3300#" 1.92188
+cap "m1_11220_4410#" "m1_11990_4150#" 3.35455
+cap "m1_10130_6050#" "m1_9810_5770#" 2.83846
+cap "Disable_FB" "m1_8440_n420#" 90.4727
+cap "VM34D" "m1_6150_n440#" 143.222
+cap "m1_n7950_4120#" "m1_n9040_4120#" 10.3893
+cap "m1_3850_2770#" "Disable_FB_B" 634.58
+cap "m1_5210_4940#" "m1_4140_6050#" 13.9245
+cap "m4_670_1940#" "VM16D" 243.124
+cap "Disable_FB_B" "m1_n4170_6580#" 0.990604
+cap "m1_8440_n420#" "OutN" 85.6864
+cap "m2_n5800_4500#" "m1_n6130_4370#" 132.94
+cap "m1_950_1560#" "InP" 421.699
+cap "VP" "m1_10900_4150#" 44.6579
+cap "Disable_FB" "Disable_FB_B" 153.679
+cap "m1_n3660_4140#" "VP" 53.7204
+cap "m1_410_n430#" "VN" 52.2853
+cap "Disable_FB" "m1_n9530_n430#" 0.829213
+cap "VM31D" "VM16D" 33.8084
+cap "I_Bias" "m1_n250_n1430#" 70.8849
+cap "m1_4140_4410#" "m1_5210_4940#" 30.75
+cap "m1_n9040_5760#" "m1_n9040_4120#" 1.67727
+cap "Disable_FB" "li_n110_n1590#" 46.3009
+cap "VN" "m1_1810_n430#" 45.5968
+cap "m4_670_1940#" "m1_n170_1370#" 99.451
+cap "m1_9810_5770#" "m1_9810_4150#" 1.67727
+cap "m1_n6860_4120#" "m1_n6130_4370#" 2.20299
+cap "m1_8720_4120#" "Disable_FB_B" 19.68
+cap "m1_6180_n950#" "m1_6150_n440#" 118.388
+cap "m1_n400_1190#" "m1_950_1560#" 13.3106
+cap "VM31D" "m1_n170_1370#" 1.845
+cap "m2_n5800_4500#" "Disable_FB_B" 104.564
+cap "m1_n5490_1180#" "VM30D" 17.1321
+cap "VN" "Disable_FB" 11716.4
+cap "m1_n7650_4410#" "OutP" 62.3687
+cap "VM34D" "m2_4080_740#" 5676.86
+cap "VM34D" "m1_4960_1180#" 58.722
+cap "m1_10130_6050#" "m1_10900_5780#" 2.51591
+cap "li_n110_n1590#" "li_n630_n1600#" 4.78333
+cap "m1_11190_3300#" "m1_11220_2770#" 23.0625
+cap "m1_n4150_4940#" "m1_n4140_6050#" 9.74717
+cap "m1_n7650_4410#" "m1_n7950_4120#" 4.6125
+cap "m1_n1280_1370#" "VM14D" 43.9401
+cap "VN" "OutN" 1998.24
+cap "m1_9390_670#" "m2_9090_740#" 26.3362
+cap "InN" "m1_950_1560#" 420.24
+cap "m1_n6550_4940#" "Disable_FB_B" 1.94211
+cap "m1_n3660_4140#" "m1_n4160_4410#" 5.27143
+cap "m1_n6540_3300#" "m1_n6530_2770#" 20.7563
+cap "VN" "li_n630_n1600#" 59.3898
+cap "m1_9760_n440#" "m2_9090_740#" 47.7322
+cap "m1_n400_1190#" "Disable_FB_B" 189.923
+cap "m1_n1280_1370#" "m2_n5090_n880#" 6.8
+cap "m1_9390_1180#" "OutN" 542.994
+cap "m1_n2790_6050#" "m1_n3660_5770#" 0.9
+cap "m1_11200_6580#" "m1_11230_6050#" 23.0625
+cap "m1_n8700_2770#" "m1_n8710_3300#" 20.7563
+cap "m2_n5800_4500#" "VN" 1145.18
+cap "m1_11220_2770#" "OutN" 93.122
+cap "m1_n6860_4120#" "m1_n5770_4120#" 8.95631
+cap "VN" "m1_1110_n420#" 45.4051
+cap "m2_n5090_n880#" "m1_n5100_670#" 57.5655
+cap "m1_n1280_1370#" "VP" 19.1449
+cap "m1_11230_4940#" "m1_11230_6050#" 11.4877
+cap "m2_4080_740#" "m1_6150_n440#" 24.4539
+cap "m1_1980_n950#" "m1_1980_n440#" 20.7563
+cap "VN" "m1_n6220_n640#" 1420.83
+cap "m2_n5120_4740#" "m1_n5000_4150#" 29.7694
+cap "m1_10130_6050#" "m1_10120_6580#" 24.6
+cap "m1_n2320_5790#" "m1_n3660_5770#" 7.43721
+cap "m1_n170_1370#" "VM16D" 54.7732
+cap "m1_n5090_n440#" "m2_n5090_n880#" 27.9169
+cap "m1_6540_6580#" "m1_4140_6050#" 30.75
+cap "m1_3850_2770#" "m1_6600_3300#" 23.0625
+cap "m1_3850_2770#" "m1_5250_3300#" 23.0625
+cap "m1_8440_n420#" "m1_7800_n440#" 3.62951
+cap "Disable_FB" "VM30D" 4.95392
+cap "VN" "m1_n400_1190#" 10.9116
+cap "Disable_FB_B" "m1_n5000_5770#" 39.5357
+cap "m1_10120_4410#" "m1_10120_4940#" 25.3687
+cap "m1_6540_6580#" "m1_5210_6580#" 1.98387
+cap "m1_n8740_4410#" "m1_n8710_3300#" 9.74717
+cap "VM34D" "m1_n5490_1180#" 90.3145
+cap "Disable_FB" "m1_n250_n1430#" 261.996
+cap "m1_n5490_1180#" "VM31D" 615.882
+cap "m1_n2790_6050#" "m1_n2820_6580#" 21.525
+cap "m1_n6540_3300#" "m1_n7620_3300#" 2.42763
+cap "m2_4080_740#" "m1_n170_1370#" 5.865
+cap "VN" "m1_9750_n950#" 219.656
+cap "VN" "m1_1980_n950#" 25.9406
+cap "VN" "m1_560_n950#" 26.0135
+cap "m1_n5490_1180#" "m1_2510_n430#" 0.878571
+cap "m1_n6540_3300#" "m1_n6170_3300#" 20.5
+cap "m2_n5800_4500#" "VM30D" 26.4424
+cap "m1_3850_2770#" "m1_4140_4410#" 81.4073
+cap "m1_n5000_4150#" "m1_n5000_5770#" 1.39773
+cap "li_850_1310#" "m1_950_1560#" 173.716
+cap "VM14D" "m4_210_2860#" 0.56244
+cap "m2_9370_4730#" "OutN" 9230.02
+cap "Disable_FB_B" "m1_n1510_2770#" 68.7682
+cap "VM14D" "m1_950_1560#" 186.89
+cap "VM30D" "m1_n6220_n640#" 24.3111
+cap "m1_n9530_1180#" "m1_n8700_2770#" 6.62308
+cap "m1_10900_5780#" "m1_9810_5770#" 9.67282
+cap "m1_n120_3300#" "m1_n110_2770#" 22.2937
+cap "m2_200_n880#" "I_Bias" 1062.25
+cap "m1_n7950_5760#" "m1_n7950_4120#" 1.67727
+cap "m1_n9530_1180#" "m1_n9530_670#" 221.4
+cap "VN" "m1_7800_n440#" 56.142
+cap "Disable_FB_B" "m1_570_n440#" 0.271324
+cap "m1_4960_670#" "m1_7800_n440#" 1.55915
+cap "m1_3850_2770#" "m1_2590_2770#" 1.92188
+cap "m1_n110_2770#" "m1_n1510_2770#" 1.86364
+cap "VP" "m1_n2320_4140#" 54.4605
+cap "m1_n3660_4140#" "m1_n2320_4140#" 7.72326
+cap "m2_n9490_740#" "m2_n5090_n880#" 5.30169
+cap "VP" "m1_n6130_4370#" 1702.78
+cap "VM30D" "m1_n400_1190#" 17.9066
+cap "m1_10120_4410#" "m1_9810_4150#" 5.904
+cap "VM34D" "m1_3850_2770#" 45.5319
+cap "m1_6550_4940#" "Disable_FB_B" 1.63274
+cap "li_850_1310#" "m2_250_740#" 45.6078
+cap "m1_n2860_2770#" "m1_n1510_2770#" 1.96277
+cap "m1_1810_n430#" "m1_2510_n430#" 18.1746
+cap "VM14D" "Disable_FB_B" 89.9797
+cap "m1_n2790_6050#" "m1_n2790_4940#" 10.0953
+cap "VM34D" "Disable_FB" 33.3907
+cap "m1_n7950_5760#" "m1_n9040_5760#" 10.3893
+cap "Disable_FB" "VM31D" 9.225
+cap "m1_n8700_2770#" "m1_n7620_2770#" 2.30625
+cap "m1_n2320_5790#" "VP" 48.3668
+cap "VM14D" "m1_3120_1200#" 25.0801
+cap "VP" "m1_8440_n420#" 8.68889
+cap "VM34D" "OutN" 17.5456
+cap "m4_670_1940#" "InP" 30.1751
+cap "m2_n5800_4500#" "OutP" 13.0497
+cap "OutN" "m1_9810_4150#" 48.5032
+cap "m1_n110_2770#" "VM14D" 0.473077
+cap "m2_n5090_n880#" "m2_250_740#" 4.34444
+cap "m1_n6530_2770#" "m1_n6170_2770#" 23.0625
+cap "li_n640_n960#" "li_n630_n1600#" 4.91228
+cap "m1_n6220_n640#" "OutP" 136.137
+cap "VN" "m1_570_n440#" 25.3159
+cap "m1_n5090_n440#" "m1_n5100_670#" 50.3587
+cap "m1_n5490_1180#" "m1_n170_1370#" 338.135
+cap "m2_n9350_4740#" "OutP" 6440.6
+cap "m1_n3660_4140#" "Disable_FB_B" 1.16038
+cap "VP" "Disable_FB_B" 1717.91
+cap "m1_8720_4120#" "m1_9810_4150#" 10.3893
+cap "m1_n7950_4120#" "m2_n9350_4740#" 23.7999
+cap "m1_4960_1180#" "m1_n5490_1180#" 591.329
+cap "m1_9030_2770#" "Disable_FB_B" 2.02747
+cap "m1_2550_3300#" "m1_3850_3300#" 1.845
+cap "VM30D" "m1_7800_n440#" 12.5697
+cap "m1_n1280_1370#" "m1_3040_1180#" 29.52
+cap "m2_n5800_4500#" "VM31D" 37.6685
+cap "VP" "m1_n5770_4120#" 85.1766
+cap "VP" "m1_3120_1200#" 7.09167
+cap "Disable_FB" "m1_6180_n950#" 0.807303
+cap "VM31D" "m1_n6220_n640#" 109.649
+cap "m1_n6860_4120#" "m1_n7950_4120#" 10.3893
+cap "m2_3320_1130#" "m1_3120_1200#" 9.775
+cap "m1_n7620_3300#" "m1_n8710_3300#" 2.27778
+cap "m2_n9490_740#" "m1_n9530_670#" 22.6516
+cap "VN" "m2_n5090_n880#" 1605.31
+cap "VP" "m2_4260_3100#" 3012.93
+cap "VN" "m1_9760_n440#" 311.328
+cap "Disable_FB" "m1_n9530_n940#" 1.24382
+cap "m1_9390_670#" "m1_9390_1180#" 192.188
+cap "m1_n5490_1180#" "I_Bias" 4.64151
+cap "m1_n3660_4140#" "m1_n5000_4150#" 7.43721
+cap "m1_n9530_1180#" "m1_n7620_2770#" 7.56923
+cap "m1_n5000_4150#" "VP" 39.6664
+cap "m1_11990_4150#" "m1_10900_4150#" 9.31456
+cap "m1_n7650_4410#" "m1_n6550_4410#" 0.946154
+cap "VN" "VP" 647.651
+cap "InN" "m4_670_1940#" 30.1891
+cap "m1_n400_1190#" "VM31D" 25.5607
+cap "m1_5250_3300#" "m1_3850_3300#" 1.67727
+cap "VN" "m2_3320_1130#" 0.774257
+cap "m1_10140_2770#" "OutN" 89.4694
+cap "m1_n1280_1370#" "m1_950_1560#" 15.8557
+cap "VM16D" "InP" 204.116
+cap "m1_9810_5770#" "OutN" 45.6331
+cap "Disable_FB_B" "m1_n4160_4410#" 0.329464
+cap "m4_670_1940#" "m5_670_1940#" 935.438
+cap "m1_n9530_n430#" "m1_n9530_670#" 78.9576
+cap "Disable_FB_B" "m1_n6170_2770#" 3.48113
+cap "m1_n6530_2770#" "m1_n7620_2770#" 2.3961
+cap "VM30D" "VM14D" 22.9818
+cap "m1_n6170_3300#" "m1_n6170_2770#" 24.6
+cap "m1_n6860_5760#" "m1_n7950_5760#" 11.4641
+cap "m2_4080_740#" "Disable_FB" 20.1926
+cap "m1_1810_n430#" "I_Bias" 3.075
+cap "m1_9390_670#" "VM30D" 2.17059
+cap "VM31D" "m5_670_1940#" 124.932
+cap "m1_n170_1370#" "InP" 269.87
+cap "m1_n1280_1370#" "Disable_FB_B" 85.6679
+cap "m1_10120_4940#" "m1_11230_4940#" 2.36538
+cap "m1_4140_4410#" "m1_3850_3300#" 0.348113
+cap "m1_6550_4940#" "m1_4140_6050#" 13.9245
+cap "m1_9760_n440#" "VM30D" 11.3896
+cap "VM34D" "m1_7800_n440#" 14.8471
+cap "m1_n400_1190#" "VM16D" 27.2418
+cap "Disable_FB_B" "m1_n5100_670#" 1.476
+cap "m1_n7170_n410#" "m1_n9530_670#" 1.49595
+cap "m1_n5000_4150#" "m1_n4160_4410#" 1.86835
+cap "Disable_FB" "I_Bias" 989.088
+cap "VN" "m1_n710_n1640#" 38.3145
+cap "m1_n1280_1370#" "m1_3120_1200#" 299.765
+cap "VP" "VM30D" 20.5018
+cap "m1_410_n430#" "m1_n5490_1180#" 0.878571
+cap "m1_n3480_n440#" "m1_n5100_670#" 1.60435
+cap "VP" "m1_6600_3300#" 60.4932
+cap "m1_6550_4940#" "m1_4140_4410#" 30.75
+cap "m1_n4150_4940#" "m1_n2790_4940#" 1.7243
+cap "VN" "m2_9090_740#" 1858.34
+cap "m1_n1280_1370#" "VN" 2.33932
+cap "m1_4460_670#" "m1_4450_1180#" 23.8313
+cap "m1_1810_n430#" "m1_n5490_1180#" 0.878571
+cap "m1_n3480_n440#" "m1_n5090_n440#" 33.2431
+cap "m1_10900_5780#" "OutN" 39.9667
+cap "VP" "m1_n250_n1430#" 97.3951
+cap "m1_n400_1190#" "m1_n170_1370#" 417.741
+cap "Disable_FB" "m1_n5090_n950#" 0.979646
+cap "m1_n5490_1180#" "m1_n5100_1180#" 354.739
+cap "m1_11190_3300#" "m1_11220_4410#" 10.4434
+cap "m1_10120_4410#" "m1_11220_4410#" 0.479221
+cap "VP" "m1_4140_6050#" 186.511
+cap "li_850_1310#" "m4_670_1940#" 22.0102
+cap "m1_7800_n440#" "m1_6150_n440#" 39.198
+cap "VM16D" "m5_670_1940#" 76.3055
+cap "m2_9370_4730#" "VP" 3435.16
+cap "m1_n7620_3300#" "m1_n7620_2770#" 24.6
+cap "m1_n4170_6580#" "m1_n4140_6050#" 21.525
+cap "m1_1110_n420#" "I_Bias" 1.60435
+cap "m4_670_1940#" "VM14D" 227.638
+cap "InN" "m1_n170_1370#" 269.87
+cap "m1_n2860_2770#" "m1_n2890_3300#" 29.2125
+cap "VM14D" "m1_2590_2770#" 3.02459
+cap "m1_n2320_5790#" "m1_n2320_4140#" 1.36667
+cap "m1_n6860_5760#" "m1_n6860_4120#" 1.67727
+cap "VN" "m1_n5090_n440#" 230.145
+cap "VM14D" "VM31D" 33.6975
+cap "VP" "m1_4140_4410#" 332.097
+cap "m1_n2320_5790#" "m1_n2790_6050#" 9.225
+cap "m1_n7650_4410#" "m1_n6860_4120#" 2.35532
+cap "m1_3040_1180#" "m1_3120_1200#" 24.6
+cap "VP" "OutP" 2410.59
+cap "m1_n170_1370#" "m5_670_1940#" 11.985
+cap "m1_10140_3300#" "m1_9040_3300#" 2.3961
+cap "m1_n2320_4140#" "Disable_FB_B" 1.16038
+cap "m1_n4150_4940#" "m1_n4160_4410#" 21.525
+cap "m1_n6170_3300#" "m1_n6130_4370#" 10.4912
+cap "VP" "m1_n7950_4120#" 55.8171
+cap "m1_n6130_4370#" "Disable_FB_B" 233.826
+cap "m1_n5490_1180#" "InP" 77.5208
+cap "VM30D" "m1_n6170_2770#" 31.9135
+cap "m1_11990_5780#" "m1_11230_6050#" 2.57442
+cap "I_Bias" "m1_1290_n950#" 51.5468
+cap "VM34D" "VP" 6538.9
+cap "m2_n5800_4500#" "m1_n5490_1180#" 80.6189
+cap "m1_9810_4150#" "m1_10900_4150#" 9.31456
+cap "m1_n6130_4370#" "m1_n5770_4120#" 36.9
+cap "m1_n8740_4940#" "m1_n8700_6050#" 8.35472
+cap "VP" "li_n640_n960#" 58.9195
+cap "m1_950_1560#" "m2_250_740#" 1128.94
+cap "m1_9030_2770#" "m1_9040_3300#" 24.6
+cap "VM34D" "m2_3320_1130#" 0.46
+cap "m1_1110_n420#" "m1_n5490_1180#" 0.878571
+cap "VP" "VM31D" 23.8977
+cap "VP" "m1_9810_4150#" 44.6579
+cap "m1_n5490_1180#" "m1_n6220_n640#" 144.615
+cap "m1_9030_2770#" "VM31D" 1.41019
+cap "m1_n9040_5760#" "VP" 58.4869
+cap "m1_950_1560#" "m1_3120_1200#" 13.3594
+cap "m1_n9530_1180#" "VM30D" 3.35455
+cap "VM14D" "VM16D" 336.357
+cap "m1_n5490_1180#" "m1_n400_1190#" 64.3761
+cap "m1_n6170_3300#" "Disable_FB_B" 18.45
+cap "m1_410_n430#" "m1_1110_n420#" 18.1746
+cap "OutP" "m1_n9530_670#" 99.8752
+cap "m1_n6550_4940#" "m1_n6550_4410#" 21.525
+cap "VN" "m2_n9490_740#" 1066.44
+cap "m1_n4160_3300#" "m1_n4160_4410#" 10.0953
+cap "m1_n9040_5760#" "m1_n8700_6050#" 3.95357
+cap "m2_n5800_4500#" "m1_n5100_1180#" 40.5223
+cap "Disable_FB_B" "m1_n5770_4120#" 30.2769
+cap "m1_n6860_4120#" "m1_n6550_4410#" 4.428
+cap "m1_1810_n430#" "m1_1110_n420#" 18.1746
+cap "Disable_FB_B" "m1_3120_1200#" 34.3386
+cap "m1_n6170_3300#" "m1_n5770_4120#" 2.87532
+cap "li_850_1310#" "m1_n170_1370#" 50.9495
+cap "InN" "m1_n5490_1180#" 73.4406
+cap "m1_n110_2770#" "Disable_FB_B" 50.3182
+cap "VN" "m1_8440_n420#" 988.077
+cap "m1_n8740_4940#" "m1_n7620_4940#" 2.19643
+cap "VM14D" "m1_n170_1370#" 41.0118
+cap "m1_10140_3300#" "m1_10140_2770#" 25.3687
+cap "m1_6550_4940#" "m1_5210_4940#" 1.96277
+cap "VP" "m1_n9040_4120#" 58.6261
+cap "OutP" "m1_n7620_4940#" 59.3095
+cap "m1_n8740_4940#" "m1_n8740_4410#" 21.525
+cap "VP" "VM16D" 14.8995
+cap "VN" "m1_1980_n440#" 24.8104
+cap "m1_n2860_2770#" "Disable_FB_B" 68.7682
+cap "VM30D" "m1_n6530_2770#" 6.98108
+cap "VM31D" "m1_n9530_670#" 1.70308
+cap "m1_n7950_5760#" "m2_n9350_4740#" 23.8061
+cap "m2_n5800_4500#" "Disable_FB" 15.2326
+cap "m1_n5000_4150#" "Disable_FB_B" 39.5357
+cap "m1_n8740_4410#" "m1_n7950_4120#" 2.35532
+cap "m1_n5000_5770#" "m1_n4140_6050#" 0.911111
+cap "VN" "m2_250_740#" 145.679
+cap "VN" "Disable_FB_B" 181.872
+cap "Disable_FB" "m1_n6220_n640#" 141.764
+cap "m1_n1280_1370#" "m4_670_1940#" 45.8247
+cap "VP" "m1_9810_5770#" 52.8703
+cap "m1_n3660_5770#" "m1_n4140_6050#" 4.34118
+cap "m1_n9530_n430#" "m1_n7170_n410#" 25.9733
+cap "m1_570_n440#" "I_Bias" 1.39245
+cap "VN" "m1_n9530_n430#" 150.438
+cap "m1_9030_2770#" "m1_10140_2770#" 2.36538
+cap "m1_n9530_1180#" "OutP" 593.93
+cap "VN" "m1_n3480_n440#" 77.7233
+cap "VN" "m1_3120_1200#" 6.46944
+cap "m1_n1280_1370#" "VM31D" 2012.4
+cap "m1_10130_6050#" "m1_11230_6050#" 0.958442
+cap "VN" "li_n110_n1590#" 298.059
+cap "m1_n2890_3300#" "m1_n4160_3300#" 1.88265
+cap "m1_n3660_4140#" "m1_n2810_4410#" 1.38375
+cap "VM31D" "m1_n5100_670#" 1.27241
+cap "m1_n2810_4410#" "m1_n2790_4940#" 20.7563
+cap "m2_n5800_4500#" "m1_n6220_n640#" 445.274
+cap "VM31D" "m1_n5090_n440#" 14.7403
+cap "VN" "m1_n7170_n410#" 52.6641
+cap "m1_n6860_5760#" "VP" 58.3596
+cap "VM30D" "m1_8440_n420#" 32.5649
+cap "m1_n6540_3300#" "m1_n6550_4410#" 9.39906
+cap "m2_n5800_4500#" "m2_n5120_4740#" 8516.23
+cap "m1_n170_1370#" "m1_4450_1180#" 3.81724
+cap "Disable_FB" "m1_9750_n950#" 2.63571
+cap "m1_11990_5780#" "m1_11990_4150#" 1.66466
+cap "m1_n7620_2770#" "OutP" 66.4742
+cap "m1_n5490_1180#" "m1_570_n440#" 6.26604
+cap "m2_n5120_4740#" "m2_n9350_4740#" 8.48101
+cap "Disable_FB" "m1_560_n950#" 1.11818
+cap "m2_n5800_4500#" "m1_n400_1190#" 12.4285
+cap "m1_4960_1180#" "m1_4450_1180#" 5.82632
+cap "m1_11200_6580#" "m1_10120_6580#" 2.46
+cap "VM30D" "Disable_FB_B" 4540.13
+cap "m1_11220_4410#" "m1_11230_4940#" 24.6
+cap "m1_10900_5780#" "m1_10900_4150#" 1.66466
+cap "m2_n5800_4500#" "m1_n1520_3300#" 21.6062
+cap "m1_n6170_3300#" "VM30D" 30.75
+cap "m1_n8740_4410#" "m1_n9040_4120#" 4.6125
+cap "li_850_1310#" "m1_n5490_1180#" 63.6522
+cap "InN" "InP" 316.286
+cap "m1_10900_5780#" "VP" 47.3436
+cap "m1_n1280_1370#" "VM16D" 24.6126
+cap "m1_6600_3300#" "Disable_FB_B" 1.56356
+cap "m1_n4150_4940#" "Disable_FB_B" 1.63274
+cap "m1_n6130_4370#" "OutP" 121.599
+cap "VM30D" "m1_3120_1200#" 20.7108
+cap "Disable_FB_B" "m1_n250_n1430#" 56.4394
+cap "m5_670_1940#" "InP" 9.9875
+cap "m1_410_n430#" "m1_570_n440#" 5.67692
+cap "m1_9390_1180#" "m1_11220_2770#" 7.80577
+cap "m1_3850_2770#" "m1_3850_3300#" 23.0625
+cap "m1_n2810_4410#" "m1_n4160_4410#" 0.696226
+cap "Disable_FB_B" "m1_4140_6050#" 27.3888
+cap "m2_n9490_740#" "OutP" 3367.31
+cap "m1_4460_670#" "m1_4960_670#" 6.15
+cap "m1_n1280_1370#" "m1_n170_1370#" 3919.04
+cap "m1_11220_4410#" "m1_10900_4150#" 5.67692
+cap "VN" "VM30D" 182.789
+cap "m1_10130_6050#" "Disable_FB_B" 0.845038
+cap "VM30D" "m1_4960_670#" 1.27241
+cap "m1_n5490_1180#" "VP" 53.9439
+cap "m2_4080_740#" "m2_9090_740#" 5.9581
+cap "VM34D" "m1_950_1560#" 1.00903
+cap "VP" "m1_10120_6580#" 33.0898
+cap "m1_n2820_6580#" "m1_n4170_6580#" 1.77404
+cap "m1_4140_4410#" "Disable_FB_B" 30.6232
+cap "m1_n7620_3300#" "OutP" 62.3544
+cap "m2_4260_3100#" "m1_4140_6050#" 138.999
+cap "m2_n5120_4740#" "m1_n5000_5770#" 29.2757
+cap "m2_9370_4730#" "m2_4260_3100#" 8.6872
+cap "m1_n4160_3300#" "Disable_FB_B" 1.64732
+cap "VN" "m1_n250_n1430#" 2372.75
+cap "VM34D" "m1_8440_n420#" 385.128
+cap "m1_n7650_4410#" "m1_n7620_4940#" 21.525
+cap "m1_n9530_n430#" "OutP" 428.877
+cap "m1_8440_n420#" "VM31D" 27.9185
+cap "m1_n7650_4410#" "m1_n8740_4410#" 0.958442
+cap "m1_11190_3300#" "m1_10140_3300#" 2.5625
+cap "m1_9040_3300#" "Disable_FB_B" 2.00543
+cap "m1_1980_n950#" "m1_1290_n950#" 2.63571
+cap "m1_560_n950#" "m1_1290_n950#" 2.40652
+cap "m1_n5490_1180#" "m1_4450_1180#" 62.1474
+cap "m1_10120_4410#" "m1_10140_3300#" 10.7915
+cap "m1_2590_2770#" "Disable_FB_B" 50.3182
+cap "m1_n2890_3300#" "m1_n2810_4410#" 10.0953
+cap "VM34D" "Disable_FB_B" 475.564
+cap "w_n1290_4230#" "VP" 19.0568
+cap "InN" "m5_670_1940#" 9.9875
+cap "m1_4140_4410#" "m2_4260_3100#" 130.773
+cap "VM31D" "Disable_FB_B" 16.5385
+cap "m1_10120_4410#" "m1_10900_4150#" 3.28
+cap "m1_2510_n430#" "m1_1980_n440#" 2.83846
+cap "li_850_1310#" "InP" 152.358
+cap "Disable_FB" "m2_n5090_n880#" 19.1193
+cap "VM34D" "m1_3120_1200#" 10.3086
+cap "m1_9760_n440#" "Disable_FB" 1.71628
+cap "m1_9390_670#" "OutN" 109.183
+cap "m1_3850_2770#" "VP" 93.31
+cap "m1_1110_n420#" "m1_570_n440#" 1.36667
+cap "m1_n170_1370#" "m1_3040_1180#" 0.730693
+cap "m1_n7170_n410#" "OutP" 7.78563
+cap "m1_n1520_3300#" "m1_n120_3300#" 1.86364
+cap "m1_n7950_5760#" "VP" 55.6779
+cap "VN" "OutP" 2547.93
+cap "VM31D" "m1_3120_1200#" 28.365
+cap "m4_210_2860#" "VM16D" 63.0165
+cap "Disable_FB_B" "m1_n4100_2770#" 50.2045
+cap "VM16D" "m1_950_1560#" 166.212
+cap "VM34D" "m2_4260_3100#" 8674.85
+cap "Disable_FB" "VP" 170.972
+cap "m1_9760_n440#" "OutN" 143.658
+cap "m1_n1520_3300#" "m1_n1510_2770#" 30.75
+cap "m1_n5000_5770#" "m1_n3660_5770#" 8.0093
+cap "OutN" "m1_10900_4150#" 40.8596
+cap "m1_n7950_5760#" "m1_n8700_6050#" 2.57442
+cap "VM34D" "VN" 1775.31
+cap "VP" "OutN" 2501.02
+cap "m1_5250_3300#" "m1_6600_3300#" 1.75714
+cap "VM34D" "m1_4960_670#" 114.315
+cap "m1_n1280_1370#" "m1_n5490_1180#" 324.675
+cap "m1_n7170_n410#" "VM31D" 11.0053
+cap "VN" "VM31D" 171.982
+cap "m2_n5800_4500#" "m2_n5090_n880#" 5088.27
+cap "m1_n5090_n440#" "m1_n5090_n950#" 110.7
+cap "m1_10900_5780#" "m1_11230_6050#" 4.1
+cap "m1_n2810_4410#" "m1_n2320_4140#" 5.535
+cap "m1_n2860_2770#" "m1_n4100_2770#" 1.94211
+cap "m2_n5090_n880#" "m1_n6220_n640#" 0.432308
+cap "m1_n170_1370#" "m1_950_1560#" 27.4798
+cap "VP" "m1_8720_4120#" 87.6691
+cap "Disable_FB_B" "VM16D" 85.304
+cap "VN" "m1_2510_n430#" 53.9528
+cap "m2_n5800_4500#" "VP" 3204.7
+cap "m1_9390_1180#" "VM31D" 3.485
+cap "m1_n9530_n430#" "m1_n9530_n940#" 172.969
+cap "VP" "m1_n6220_n640#" 26.8061
+cap "li_850_1310#" "InN" 134.359
+cap "VP" "m2_n9350_4740#" 994.156
+cap "m1_2550_3300#" "m1_2590_2770#" 19.9875
+cap "m1_9810_5770#" "Disable_FB_B" 0.372727
+cap "m1_570_n440#" "m1_560_n950#" 19.9875
+cap "InN" "VM14D" 204.116
+cap "m1_n110_2770#" "VM16D" 1.41923
+cap "m2_n5120_4740#" "VP" 2816.42
+cap "VN" "m1_6150_n440#" 178.562
+cap "m2_4080_740#" "m1_8440_n420#" 240.969
+cap "Disable_FB" "m1_n710_n1640#" 8.35806
+cap "m1_4960_670#" "m1_6150_n440#" 54.71
+cap "m1_4140_4410#" "m1_6600_3300#" 10.4434
+cap "m1_5250_3300#" "m1_4140_4410#" 10.4434
+cap "Disable_FB_B" "m1_n170_1370#" 8.34643
+cap "m1_n1280_1370#" "m1_n5100_1180#" 3.57097
+cap "li_850_1310#" "m5_670_1940#" 13.4855
+cap "VN" "m1_6180_n950#" 141.418
+cap "m1_10130_6050#" "m1_10120_4940#" 11.1396
+cap "m1_n6860_4120#" "VP" 55.8171
+cap "m1_4140_6050#" "m1_5210_6580#" 30.75
+cap "VP" "m1_n400_1190#" 6.44505
+cap "VM14D" "m5_670_1940#" 269.477
+cap "VN" "m1_n9530_n940#" 199.734
+cap "VM34D" "VM30D" 41.5042
+cap "m1_4140_4410#" "m1_4140_6050#" 89.9941
+cap "m2_4080_740#" "m2_250_740#" 4.11579
+cap "m1_n5100_1180#" "m1_n5100_670#" 270.6
+cap "m1_n170_1370#" "m1_3120_1200#" 69.3598
+cap "Disable_FB_B" "m1_8350_5220#" 11.0453
+cap "m1_n5490_1180#" "m1_3040_1180#" 10.25
+cap "m1_9760_n440#" "m1_9750_n950#" 189.881
+cap "VM30D" "VM31D" 11436.3
+cap "m1_n7650_4410#" "m1_n7620_3300#" 10.0953
+cap "m1_n6860_5760#" "Disable_FB_B" 8.61511
+cap "m1_1980_n440#" "I_Bias" 0.9
+cap "OutN" "m2_9090_740#" 4783.21
+cap "m1_n8700_6050#" "m1_n8730_6580#" 22.2937
+cap "li_n640_n960#" "m1_n250_n1430#" 2.76187
+cap "VN" "m2_200_n880#" 340.1
+cap "m1_10140_2770#" "m1_9390_1180#" 7.80577
+cap "VM34D" "m1_4140_6050#" 177.867
+cap "m2_9370_4730#" "VM34D" 31.7291
+cap "VN" "m1_n170_1370#" 2.20726
+cap "m1_10140_2770#" "m1_11220_2770#" 2.46
+cap "m1_n3660_4140#" "m1_n3660_5770#" 1.38722
+cap "VP" "m1_n5000_5770#" 42.2448
+cap "VP" "m1_n3660_5770#" 53.7506
+cap "m1_n2790_6050#" "m1_n4140_6050#" 1.06442
+cap "VN" "m2_4080_740#" 1356.13
+cap "m1_4960_1180#" "m1_4960_670#" 231.394
+cap "m2_n5800_4500#" "m1_n1280_1370#" 1.77727
+cap "m2_4080_740#" "m1_4960_670#" 39.911
+cap "m1_n5490_1180#" "m1_950_1560#" 94.1461
+cap "m1_n6130_4370#" "m1_n6550_4410#" 10.5429
+cap "VM34D" "m1_4140_4410#" 170.801
+cap "m2_n5800_4500#" "m1_n5100_670#" 53.8916
+cap "m1_n6550_4940#" "m1_n7620_4940#" 2.33544
+cap "m1_n5490_1180#" "m1_1980_n440#" 6.26604
+cap "VM30D" "VM16D" 23.0926
+cap "VN" "I_Bias" 2948
+cap "m2_n5800_4500#" "m1_n5090_n440#" 45.2924
+cap "Disable_FB_B" "m1_n4140_6050#" 0.890132
+cap "m1_n5490_1180#" "Disable_FB_B" 49.6352
+cap "m1_n1280_1370#" "m1_n400_1190#" 18.9923
+cap "m4_670_1940#" "VM31D" 156.895
+cap "Disable_FB_B" "m1_10120_6580#" 1.13538
+cap "VM34D" "VM31D" 60.8884
+cap "m1_10900_5780#" "m1_11990_5780#" 9.67282
+cap "m1_n4160_3300#" "m1_n4100_2770#" 17.6812
+cap "Disable_FB_B" "m1_n6550_4410#" 0.388421
+cap "m1_n5490_1180#" "m1_3120_1200#" 113.903
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_25/m1_390_n660#" 5.93081
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 16.7141
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 54.18
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_46/m1_164_390#" 54.18
+cap "currm_n_45/m1_390_n660#" "I_Bias" 6.4443
+cap "currm_n_12/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 11.0657
+cap "currm_n_48/m1_164_390#" "currm_n_48/m1_68_150#" -75.6161
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_164_390#" 14.1973
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_390_n660#" 374.61
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_68_150#" 16.8993
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_390_n660#" 19.8238
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_164_390#" 7.51365
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_68_150#" 229.998
+cap "currm_n_48/m1_390_n660#" "currm_n_48/m1_68_150#" -411.336
+cap "currm_n_48/m1_390_n660#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 5.53208
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_164_390#" -101.233
+cap "currm_n_48/m1_390_n660#" "currm_n_48/a_122_62#" -1818.22
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 1.08694
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "currm_n_48/a_122_62#" 9.56851
+cap "currm_n_48/m1_390_n660#" "currm_n_48/a_122_62#" 270.627
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 18.366
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/a_122_62#" 1.8949
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 8.5
+cap "currm_n_48/m1_390_n660#" "currm_n_21/m1_68_150#" -2.6474
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_48/m1_390_n660#" 217.176
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 89.9227
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_48/a_122_62#" 0.566555
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" -0.489823
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 2.09927
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -6.18139
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 18.8501
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 8.88333
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 8.04279
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_48/m1_390_n660#" 159.912
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_390_n660#" 215.198
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_49/m1_390_n660#" 651.884
+cap "currm_n_29/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 0.666234
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_n_21/a_122_62#" -5.82613
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 28.6871
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_49/m1_390_n660#" 56.6361
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 7.54342
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_n_49/m1_390_n660#" 249.559
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 72.2743
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "currm_n_21/a_122_62#" -0.489823
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -280.82
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 21.4381
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_49/m1_390_n660#" 92.1298
+cap "currm_n_21/a_122_62#" "currm_n_49/m1_390_n660#" 56.8862
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -0.897318
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_21/a_122_62#" 22.3434
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_21/m1_68_150#" 121.135
+cap "currm_n_49/m1_390_n660#" "currm_n_21/m1_68_150#" 372.534
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 716.12
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "currm_n_49/m1_390_n660#" -509.772
+cap "currm_n_21/a_122_62#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 28.2176
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_164_390#" 2.84217e-14
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 47.8366
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 22.237
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 26.3315
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_n_21/a_122_62#" -227.071
+cap "Disable_FB" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 43.1795
+cap "currm_n_25/m1_390_n660#" "currm_n_21/a_122_62#" 2100.83
+cap "currm_n_25/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 256.391
+cap "currm_n_21/m1_68_150#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.168534
+cap "currm_n_21/m1_68_150#" "currm_n_21/a_122_62#" 72.9837
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_21/a_122_62#" -1866.26
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -330.578
+cap "currm_n_25/m1_390_n660#" "Disable_FB" 80.3336
+cap "Disable_FB" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 331.686
+cap "currm_n_21/m1_68_150#" "currm_n_25/m1_390_n660#" 1423.41
+cap "currm_n_25/a_122_62#" "currm_n_21/a_122_62#" 4.22914
+cap "currm_n_25/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -677.414
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.0761
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 49.3106
+cap "currm_n_21/m1_164_390#" "currm_n_21/a_122_62#" 2.84217e-14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_22/m1_390_n660#" 42.5367
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1865.32
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1341.38
+cap "currm_n_22/m1_390_n660#" "currm_n_22/m1_68_150#" 11.8329
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_22/m1_390_n660#" 607.33
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.0761
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 41.5848
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 31.6379
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 122.063
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "currm_n_5/a_122_62#" 1.64477
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 29.892
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 2120.44
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.470356
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 80.5157
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 147.589
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 0.198387
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 7.68993
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 126.581
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 44.1922
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 39.4984
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.50259
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 173.725
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 1.91034
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 2140.77
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 18.5707
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" -87.8236
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1011.28
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 4341.01
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 15.6866
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 1.03304
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 22.4042
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 0.198387
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_3/m1_68_150#" 4.19854
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 391.151
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_46/m1_68_150#" 40.4577
+cap "Disable_FB" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 210.388
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_46/a_122_62#" 17.6808
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_46/m1_68_150#" 561.657
+cap "currm_n_3/m1_68_150#" "currm_n_46/a_122_62#" 4.19854
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 0.60381
+cap "Disable_FB" "currm_n_46/a_122_62#" 414.812
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_46/a_122_62#" -37.0822
+cap "currm_n_46/m1_68_150#" "currm_n_46/a_122_62#" 300.244
+cap "currm_n_44/m1_68_150#" "currm_n_44/m1_390_n660#" 44.5452
+cap "currm_n_44/m1_390_n660#" "currm_n_44/a_122_62#" 400.089
+cap "Disable_FB" "currm_n_44/a_122_62#" 764.501
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_44/m1_390_n660#" 36.2286
+cap "Disable_FB" "currm_n_44/m1_390_n660#" -226.64
+cap "currm_n_45/m1_390_n660#" "Disable_FB" 127.166
+cap "currm_n_45/m1_390_n660#" "I_Bias" -188.743
+cap "I_Bias" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 27.8866
+cap "I_Bias" "Disable_FB" 917.258
+cap "currm_n_45/m1_390_n660#" "currm_n_13/m1_68_150#" 14.0516
+cap "currm_n_45/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 42.2667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 27.8866
+cap "currm_n_12/m1_68_150#" "currm_n_12/a_122_62#" 71.8058
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_12/m1_390_n660#" 417.795
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_12/m1_390_n660#" -172.426
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -331.608
+cap "currm_n_12/m1_164_390#" "currm_n_12/m1_390_n660#" -0.21429
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -1816.45
+cap "Disable_FB" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" 253.366
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_390_n660#" 400.48
+cap "Disable_FB" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 480.316
+cap "currm_n_24/a_122_62#" "currm_n_12/a_122_62#" 0.714673
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_390_n660#" 95.3906
+cap "currm_n_12/m1_68_150#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 8.46902
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 76.7823
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 17.7836
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_164_390#" -22.9033
+cap "currm_n_12/m1_164_390#" "currm_n_12/a_122_62#" 7.10543e-15
+cap "currm_n_12/m1_164_390#" "currm_n_12/m1_68_150#" 49.0139
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 181.801
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" -68.5866
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" -1.13729
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 1657.76
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -51.2744
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_68_150#" 103.529
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1571.57
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 73.8234
+cap "currm_n_12/m1_164_390#" "currm_n_12/a_122_62#" 5.68434e-14
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 28.2176
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 1.02311
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 47.8936
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 22.5284
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 1581.33
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_12/m1_68_150#" 65.8099
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_12/m1_68_150#" 857.174
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" -0.403651
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 495.137
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 23.7684
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 0.826995
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -0.13356
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -307.632
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -3.6581
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 607.214
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 4.41452
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1887.53
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 9.8488
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_12/m1_68_150#" -2.6201
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 268.471
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 137.355
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_12/m1_68_150#" 16.902
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "currm_n_35/m1_68_150#" 2.7014
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/m1_68_150#" 50.2204
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 65.2981
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 8.27247
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 3361.12
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "currm_n_35/a_122_62#" 26.1847
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 82.7536
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/a_122_62#" -21.0597
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 9.12333
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1231.16
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 52.9091
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.00796
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" -0.403651
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 0.162808
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 1.06845
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" 25.3639
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 160.229
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 201.131
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 9.62449
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 4.21239
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 481.572
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 1.62794
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" 30.0715
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_390_n660#" 387.131
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 207.864
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 66.6693
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_n_48/m1_390_n660#" 32.9851
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_390_n660#" 536.165
+cap "currm_n_48/m1_164_390#" "currm_n_48/m1_390_n660#" 52.0667
+cap "currm_n_48/m1_390_n660#" "currm_n_48/a_122_62#" 449.714
+cap "currm_n_48/m1_164_390#" "currm_n_48/m1_68_150#" -80.4464
+cap "currm_n_48/m1_68_150#" "currm_n_48/a_122_62#" 120.966
+cap "currm_n_48/m1_164_390#" "currm_n_48/a_122_62#" 289.758
+cap "currm_n_48/m1_390_n660#" "currm_n_48/a_122_62#" -1956.5
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 59.973
+cap "currm_n_48/m1_390_n660#" "currm_n_48/m1_164_390#" 1393.37
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 1.89756
+cap "currm_n_48/m1_164_390#" "currm_n_48/a_122_62#" -1274.95
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -1747.17
+cap "currm_n_48/m1_390_n660#" "currm_n_33/a_122_62#" -3652.16
+cap "currm_n_48/m1_390_n660#" "currm_n_48/m1_68_150#" -272.065
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 2.34849
+cap "currm_n_48/m1_68_150#" "currm_n_48/a_122_62#" 212.404
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 0.369
+cap "currm_n_48/m1_164_390#" "currm_n_48/m1_68_150#" 200.406
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_48/m1_68_150#" 6.34404
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 365.275
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_33/a_122_62#" 18.1105
+cap "currm_n_48/m1_390_n660#" "currm_n_48/a_122_62#" 593.371
+cap "currm_n_48/m1_390_n660#" "currm_n_48/m1_68_150#" 454.275
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" -25.3848
+cap "currm_n_21/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 15.4508
+cap "currm_n_48/m1_390_n660#" "currm_n_21/m1_164_390#" -2.44375
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/a_122_62#" -2.89862
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_48/a_122_62#" 24.2581
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 28.1368
+cap "currm_n_21/a_122_62#" "currm_n_33/a_122_62#" 0.325588
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_48/m1_68_150#" 23.6531
+cap "currm_n_48/m1_390_n660#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 49.6612
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/m1_164_390#" -3.83185
+cap "currm_n_48/m1_390_n660#" "currm_n_48/m1_164_390#" 2.22159
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "currm_n_48/m1_68_150#" 17.9781
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 2.70166
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 133.714
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 183.428
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_68_150#" 2.66454e-14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_48/m1_390_n660#" 41.7864
+cap "currm_n_48/m1_390_n660#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 93.8211
+cap "currm_n_48/m1_390_n660#" "currm_n_33/a_122_62#" 9.27159
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 2.09126
+cap "currm_n_48/m1_390_n660#" "currm_n_21/m1_68_150#" -0.600856
+cap "currm_n_48/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 295.874
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 548.419
+cap "currm_n_49/m1_390_n660#" "currm_n_21/a_122_62#" 143.923
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 22.708
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_68_150#" 501.498
+cap "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 8.47838
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/a_122_62#" 4.66568
+cap "currm_n_49/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 210.992
+cap "currm_n_49/m1_390_n660#" "currm_n_21/m1_164_390#" 155.243
+cap "currm_n_21/m1_164_390#" "currm_n_21/a_122_62#" 148.619
+cap "currm_n_49/m1_390_n660#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 16.025
+cap "currm_n_49/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 600.193
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/a_122_62#" 30.6526
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" 0.434118
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 2.69558
+cap "currm_n_21/a_122_62#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 54.1247
+cap "currm_n_49/m1_390_n660#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 57.1999
+cap "currm_n_33/a_122_62#" "currm_n_21/a_122_62#" 18.5311
+cap "currm_n_49/m1_390_n660#" "currm_n_33/a_122_62#" 64.8896
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_164_390#" 281.353
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -88.7316
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -272.6
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 21.4381
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 130.019
+cap "currm_n_49/m1_390_n660#" "currm_n_21/m1_68_150#" 458.254
+cap "currm_n_21/m1_68_150#" "currm_n_25/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.314213
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_164_390#" 56.3647
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_164_390#" 334.422
+cap "currm_n_21/m1_164_390#" "currm_n_25/m1_164_390#" -0.00823937
+cap "currm_n_21/m1_68_150#" "currm_n_25/m1_390_n660#" 1892.25
+cap "currm_n_21/a_122_62#" "currm_n_25/m1_390_n660#" 1775.21
+cap "currm_n_21/a_122_62#" "currm_n_33/a_122_62#" 3.85672
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_25/m1_390_n660#" -296.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 28.0761
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_68_150#" 485.517
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 142.982
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -2850.29
+cap "currm_n_21/a_122_62#" "currm_n_25/a_122_62#" 0.183887
+cap "currm_n_21/m1_164_390#" "currm_n_25/m1_390_n660#" -74.9205
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 217.929
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 5.20685
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 229.808
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1525.28
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_22/m1_68_150#" 9.48465
+cap "currm_n_22/m1_68_150#" "currm_n_22/a_122_62#" 1.42109e-13
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 1.66412
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.0761
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1068.51
+cap "currm_n_22/m1_68_150#" "currm_n_22/m1_390_n660#" 185.776
+cap "currm_n_22/a_122_62#" "currm_n_22/m1_390_n660#" 175.569
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 73.1948
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 67.5214
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_20/m1_68_150#" 5.17472
+cap "currm_n_20/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 5545.49
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_3/m1_68_150#" 31.939
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_20/m1_68_150#" 9.48465
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 3.40203
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" -2.68183
+cap "currm_n_3/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 15.4508
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 85.4462
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.33181
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "currm_n_5/a_122_62#" 29.8058
+cap "currm_n_20/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 22.485
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1529.94
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_5/a_122_62#" 8.94111
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 116.966
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 154.102
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 23.1914
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 5.82794
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" -0.479502
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 21.0747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 417.117
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 38.756
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 1.00636
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_5/a_122_62#" 30.6798
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_20/a_122_62#" 71.5586
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 44.3946
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "currm_n_5/a_122_62#" 4.00595
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 1.07273
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 39.2559
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3.6601
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_3/m1_68_150#" 249.896
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1720.51
+cap "currm_n_3/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 22.708
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" 635.876
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_46/m1_68_150#" 105.281
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_5/a_122_62#" 2.16364
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 3.54505
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1.00636
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 10.3478
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 1.01727
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 126.456
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_3/m1_68_150#" 29.1996
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 103.883
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_46/m1_68_150#" -344.223
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_3/m1_164_390#" 0.519744
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "currm_n_5/a_122_62#" 13.28
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 2.8
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 282.863
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 588.891
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 90.4231
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 31.939
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 5.42084
+cap "currm_n_46/a_122_62#" "currm_n_4/a_122_62#" 13.28
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 340.12
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 104.906
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 22.708
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_164_390#" 0.519744
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 223.307
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 29.1996
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3.68434
+cap "currm_n_46/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 254.118
+cap "currm_n_4/a_122_62#" "currm_n_44/a_122_62#" 8.94111
+cap "currm_n_44/m1_390_n660#" "currm_n_6/a_122_62#" 2.87658
+cap "m4_670_1940#" "currm_n_6/m1_68_150#" 56.5624
+cap "currm_n_44/m1_390_n660#" "currm_n_4/a_122_62#" 55.7259
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/m1_68_150#" 18.9693
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "m4_670_1940#" 125.842
+cap "currm_n_44/m1_390_n660#" "currm_n_44/a_122_62#" 13.0519
+cap "currm_n_44/m1_390_n660#" "currm_n_0/m1_68_150#" 10.3478
+cap "currm_n_4/a_122_62#" "m4_670_1940#" 74.998
+cap "currm_n_44/m1_390_n660#" "currm_n_44/m1_68_150#" 5.41006
+cap "currm_n_4/a_122_62#" "currm_n_6/a_122_62#" 5.61955
+cap "currm_n_44/m1_390_n660#" "currm_n_6/m1_68_150#" 60.5058
+cap "currm_n_44/m1_390_n660#" "m4_670_1940#" -161.351
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_0/m1_68_150#" 15.4508
+cap "currm_n_44/m1_390_n660#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 72.291
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_13/m1_68_150#" 8.9528
+cap "I_Bias" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 27.8866
+cap "currm_n_13/a_122_62#" "currm_n_45/m1_390_n660#" 150.216
+cap "currm_n_13/a_122_62#" "currm_n_13/m1_68_150#" 2.27374e-13
+cap "currm_n_13/a_122_62#" "currm_n_4/a_122_62#" 5.61955
+cap "currm_n_13/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 165.042
+cap "currm_n_45/m1_390_n660#" "currm_n_13/m1_68_150#" 193.37
+cap "currm_n_45/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1000.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_13/m1_68_150#" 1348.69
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_68_150#" 120.283
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/a_122_62#" 132.227
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 27.8866
+cap "currm_n_12/m1_164_390#" "currm_n_12/m1_68_150#" 441.036
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/m1_164_390#" 419.88
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_12/m1_68_150#" 0.145678
+cap "currm_n_12/m1_390_n660#" "currm_n_12/m1_68_150#" 617.283
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/m1_390_n660#" 1212.01
+cap "currm_n_12/m1_164_390#" "currm_n_12/a_122_62#" -18.3394
+cap "currm_n_12/m1_390_n660#" "currm_n_12/a_122_62#" 255.878
+cap "currm_n_12/m1_390_n660#" "currm_n_12/m1_164_390#" -665.303
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 7.14888
+cap "currm_n_24/a_122_62#" "currm_n_12/a_122_62#" 0.714673
+cap "currm_n_24/a_122_62#" "currm_n_12/m1_164_390#" 0.00693684
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/m1_68_150#" 4097.8
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 1.91782
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 2.08417
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.086
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 593.165
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_164_390#" 171.211
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 42.3635
+cap "currm_n_12/m1_68_150#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 8.06774
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 22.5284
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 77.4223
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 0.906852
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1999.98
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1134.01
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 54.1247
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3346.28
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 38.1588
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_164_390#" 234.763
+cap "currm_n_43/a_122_62#" "currm_n_12/a_122_62#" 13.28
+cap "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 46.9221
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 34.0402
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 6.54199
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 5.77748
+cap "currm_n_38/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 13.1226
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5503.94
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -727.849
+cap "currm_n_12/m1_68_150#" "currm_n_12/a_122_62#" 145.825
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 68.8159
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 0.152505
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -0.604639
+cap "currm_n_12/m1_68_150#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.21688
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 8.90229
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 51.5084
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" -3.30773
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" -29.6455
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 2.12175
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 202.61
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 246.391
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 14.0875
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 4294.4
+cap "currm_n_43/a_122_62#" "currm_n_12/a_122_62#" 8.94111
+cap "currm_n_35/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 1.7614
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.651943
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 22.0837
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" -0.328472
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 186.371
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 126.627
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -1.13663
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_24/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 372.177
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 39.746
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 0.673826
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/m1_68_150#" 26.9845
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 65.0256
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 42.5202
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_35/a_122_62#" 34.7262
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 68.1345
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 99.1284
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 353.112
+cap "currm_n_35/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 6.79397
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 101.002
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "currm_n_35/a_122_62#" 1.35551
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/m1_68_150#" 987.771
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 2.5457
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 57.887
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/a_122_62#" 579.411
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 347.754
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/m1_164_390#" 1367.67
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" 714.218
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" 0.129151
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" -591.064
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 168.814
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_390_n660#" 972.95
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 189.359
+cap "currm_n_35/m1_164_390#" "currm_n_35/m1_390_n660#" 2399.73
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_390_n660#" 40.9343
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 668.312
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_48/m1_68_150#" 362.614
+cap "currm_ps_21/a_132_72#" "currm_n_48/a_122_62#" 10.5688
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_n_48/a_122_62#" -1.98529
+cap "currm_n_48/m1_164_390#" "currm_n_48/a_122_62#" 123.488
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_n_48/m1_68_150#" -10.9464
+cap "currm_n_48/m1_164_390#" "currm_n_48/m1_68_150#" -116.993
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_48/m1_164_390#" 353.54
+cap "currm_n_48/m1_68_150#" "currm_n_48/a_122_62#" 187.159
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_48/a_122_62#" 186.42
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 10.9985
+cap "currm_n_48/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 836.057
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -295.494
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_n_48/m1_164_390#" -386.735
+cap "currm_ps_21/a_132_72#" "currm_n_48/a_122_62#" 12.8162
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -2307.59
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_164_390#" -2314.51
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -340.614
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -493.993
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -3568.63
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -483.545
+cap "currm_ps_21/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 12.6637
+cap "currm_n_33/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -649.784
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_48/m1_68_150#" 1.63565
+cap "currm_n_48/a_122_62#" "currm_n_48/m1_68_150#" 373.897
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 1.29602
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_164_390#" -10.4825
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -2763.82
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -585.831
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -4696.42
+cap "currm_n_33/m1_164_390#" "currm_n_48/m1_164_390#" -2.1513
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -129.962
+cap "currm_n_48/m1_164_390#" "currm_n_48/a_122_62#" 153.581
+cap "currm_n_21/m1_164_390#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 4.19263
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_n_21/m1_164_390#" 9.0007
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 88.7493
+cap "currm_n_33/a_122_62#" "currm_n_21/a_122_62#" 3.13862
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 680.635
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 326.832
+cap "currm_n_21/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 5.00641
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 64.2434
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 61.6696
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 3403.5
+cap "currm_n_48/m1_68_150#" "currm_n_21/m1_68_150#" -2.65085
+cap "currm_n_48/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 21.369
+cap "currm_n_48/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 3360.89
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_ps_21/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 10.7107
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" 10.7783
+cap "currm_n_48/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 2891.73
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_n_48/a_122_62#" 5249.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 110.837
+cap "currm_n_48/m1_164_390#" "currm_n_21/m1_164_390#" 0.845913
+cap "currm_n_33/a_122_62#" "currm_n_21/m1_164_390#" 0.870458
+cap "currm_n_48/m1_68_150#" "currm_n_48/a_122_62#" 176.528
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/a_122_62#" -0.636207
+cap "currm_n_48/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 1110.64
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -1.94811
+cap "currm_n_48/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 1445.81
+cap "currm_n_33/a_122_62#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -8.37158
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -88.312
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "currm_n_48/a_122_62#" -0.348113
+cap "currm_ps_21/a_132_72#" "currm_n_48/a_122_62#" 8.01512
+cap "currm_n_48/m1_68_150#" "currm_n_48/m1_164_390#" -44.0694
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "currm_n_21/m1_164_390#" 142.382
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -240.956
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -3.96198
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -0.636207
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_164_390#" 85.4703
+cap "currm_n_29/m1_164_390#" "currm_n_21/m1_164_390#" -3.71854
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_164_390#" 804.544
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 57.6615
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_164_390#" 111.898
+cap "currm_n_21/m1_68_150#" "currm_n_29/m1_68_150#" -2.65085
+cap "currm_n_21/a_122_62#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 82.3423
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_n_21/m1_164_390#" 111.615
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 28.5334
+cap "currm_ps_15/w_132_72#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 13.0132
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 109.868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 384.372
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_21/m1_164_390#" -11.2273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -258.09
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" -163.39
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" -312.5
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -32.4592
+cap "currm_n_21/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 33.6069
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_29/m1_68_150#" 1.908
+cap "currm_n_21/m1_68_150#" "currm_n_21/m1_164_390#" 34.4207
+cap "currm_n_33/a_122_62#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.31685
+cap "currm_n_33/a_122_62#" "currm_n_21/m1_164_390#" 9.83502
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 88.6836
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 283.566
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 110.837
+cap "currm_n_21/a_122_62#" "currm_n_33/a_122_62#" 28.5656
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 199.135
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 118.95
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" 20.7862
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_33/a_122_62#" -156.432
+cap "currm_n_15/m1_390_n660#" "currm_n_21/m1_164_390#" 60.8053
+cap "currm_n_21/m1_164_390#" "currm_n_21/a_122_62#" 105.075
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_68_150#" -1697.28
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -72.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 11.0958
+cap "currm_n_33/a_122_62#" "currm_n_21/a_122_62#" 11.052
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.753267
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_15/m1_390_n660#" -200.628
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/a_122_62#" -2470.07
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -955.082
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_164_390#" 136.915
+cap "currm_n_21/m1_68_150#" "currm_n_15/m1_390_n660#" 174.547
+cap "currm_n_21/m1_68_150#" "currm_n_21/a_122_62#" 378.684
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_21/a_122_62#" -48.4356
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 0.482747
+cap "currm_n_21/m1_68_150#" "currm_n_21/m1_164_390#" 9.56773
+cap "currm_n_15/m1_390_n660#" "currm_n_21/a_122_62#" -108.889
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_21/m1_164_390#" -15.6643
+cap "currm_n_15/m1_390_n660#" "currm_ps_19/w_132_72#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_22/a_122_62#" 1024.27
+cap "currm_n_22/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.59528
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_22/m1_68_150#" 870.246
+cap "currm_n_3/a_122_62#" "currm_n_22/a_122_62#" 29.9018
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_20/m1_390_n660#" 247.866
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_22/m1_164_390#" 127.327
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_22/m1_68_150#" 750.686
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_22/a_122_62#" 381.076
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_3/a_122_62#" 102.343
+cap "Disable_FB_B" "currm_n_22/a_122_62#" 3.56962
+cap "currm_n_22/m1_68_150#" "currm_n_22/m1_164_390#" -61.2722
+cap "currm_n_22/m1_164_390#" "currm_n_22/a_122_62#" 78.3508
+cap "currm_n_22/m1_68_150#" "currm_n_22/a_122_62#" 349.706
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_20/m1_390_n660#" 117.751
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_20/m1_390_n660#" 12.7254
+cap "currm_n_22/m1_164_390#" "currm_n_20/m1_390_n660#" 60.9668
+cap "currm_n_22/m1_68_150#" "currm_n_20/m1_390_n660#" 174.547
+cap "currm_n_20/m1_390_n660#" "currm_n_22/a_122_62#" -121.941
+cap "currm_n_5/a_122_62#" "currm_n_22/m1_164_390#" -2.54818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_3/a_122_62#" -8.25281
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_22/m1_164_390#" 454.36
+cap "currm_n_3/m1_164_390#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -215.899
+cap "currm_n_20/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 195.1
+cap "currm_n_20/m1_390_n660#" "currm_n_46/a_122_62#" 4.10345
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_46/a_122_62#" 185.144
+cap "Disable_FB_B" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 176.61
+cap "currm_n_20/a_122_62#" "Disable_FB_B" 6.95952
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "currm_n_5/a_122_62#" 64.1945
+cap "currm_n_3/m1_68_150#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -2341.33
+cap "currm_n_3/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 18.379
+cap "currm_n_20/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 605.897
+cap "currm_n_20/m1_68_150#" "Disable_FB_B" 44.8071
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n33_n197#" "currm_n_5/a_122_62#" 1.61935
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 117.838
+cap "currm_n_20/a_122_62#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 3280.32
+cap "currm_n_20/m1_68_150#" "currm_n_3/m1_68_150#" -2.17222
+cap "currm_n_5/a_122_62#" "currm_n_20/m1_390_n660#" -46.0915
+cap "currm_n_20/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 13.9089
+cap "currm_n_5/a_122_62#" "currm_n_46/a_122_62#" 44.3662
+cap "currm_n_20/m1_68_150#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2447.67
+cap "currm_n_20/m1_68_150#" "currm_n_20/a_122_62#" 3.87316
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_20/m1_390_n660#" 9.27166
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 949.886
+cap "currm_n_20/m1_164_390#" "currm_n_5/a_122_62#" 1.29659
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 159.254
+cap "Disable_FB_B" "currm_n_46/a_122_62#" -1.99942
+cap "currm_n_3/m1_68_150#" "currm_n_20/m1_390_n660#" 28.56
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -185.779
+cap "currm_n_3/m1_164_390#" "currm_n_5/a_122_62#" 4.71272
+cap "currm_n_20/m1_390_n660#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 19.6111
+cap "currm_n_20/m1_390_n660#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -475.561
+cap "currm_n_20/a_122_62#" "currm_n_20/m1_390_n660#" 41.8923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 627.24
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_46/a_122_62#" 42.0394
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_46/a_122_62#" -109.181
+cap "currm_n_20/a_122_62#" "currm_n_46/a_122_62#" 10.2326
+cap "currm_n_20/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1799.83
+cap "currm_n_20/m1_68_150#" "currm_n_20/m1_390_n660#" 9.34759
+cap "currm_n_20/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3232.46
+cap "currm_n_5/a_122_62#" "Disable_FB_B" 120.567
+cap "currm_n_20/m1_68_150#" "currm_n_46/a_122_62#" 4.72596
+cap "currm_n_20/m1_164_390#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 599.334
+cap "currm_n_20/m1_164_390#" "currm_n_20/a_122_62#" 2.89396
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "currm_n_20/m1_390_n660#" 163.452
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "currm_n_46/a_122_62#" -2.71263
+cap "currm_n_20/m1_68_150#" "currm_n_20/m1_164_390#" -41.7866
+cap "currm_n_5/a_122_62#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 30.8201
+cap "currm_n_5/a_122_62#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 466.996
+cap "currm_n_3/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 18.8097
+cap "currm_n_46/m1_68_150#" "currm_n_46/a_122_62#" 3.11375
+cap "currm_n_5/a_122_62#" "currm_n_20/m1_390_n660#" 4.76
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 13.7435
+cap "currm_n_3/m1_164_390#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 250.522
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 200.162
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_46/a_122_62#" 2.20811
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_20/m1_390_n660#" 8.70175
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 486.583
+cap "currm_n_3/m1_68_150#" "currm_n_20/m1_390_n660#" 121.212
+cap "currm_n_3/m1_164_390#" "currm_n_46/a_122_62#" 2.57091
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_20/m1_390_n660#" -9.35482
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -54.2986
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_46/a_122_62#" 168.106
+cap "currm_n_5/a_122_62#" "currm_n_3/m1_164_390#" 4.88909
+cap "currm_n_46/a_122_62#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 452.509
+cap "currm_n_3/m1_164_390#" "currm_n_20/m1_390_n660#" -141.841
+cap "currm_n_46/a_122_62#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 41.1712
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_20/m1_390_n660#" 1689.51
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_20/m1_390_n660#" 1950.18
+cap "currm_n_20/m1_68_150#" "currm_n_3/m1_68_150#" -2.17222
+cap "currm_n_3/m1_164_390#" "currm_n_3/m1_68_150#" -88.8697
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 270.738
+cap "currm_n_5/a_122_62#" "currm_n_46/a_122_62#" 9.65805
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_20/m1_390_n660#" 34
+cap "currm_n_3/m1_68_150#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 213.588
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 15.1885
+cap "currm_n_20/a_122_62#" "currm_n_46/a_122_62#" -0.390993
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 77.567
+cap "currm_n_46/a_122_62#" "currm_n_20/m1_390_n660#" -143.728
+cap "currm_n_3/m1_390_n660#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 7.90321
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_164_390#" 3.97538
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_164_390#" 40.449
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "currm_n_3/m1_68_150#" 210.915
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_63_n200#" "currm_n_3/m1_164_390#" -1.85443
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 122.984
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 18.9799
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 5.68434e-14
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 470.181
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_68_150#" 69.152
+cap "currm_n_3/m1_390_n660#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -38.2711
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "currm_n_3/m1_390_n660#" 143.819
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_68_150#" 41.1712
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/m1_390_n660#" -59.5078
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 19.7024
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 198.61
+cap "currm_n_5/a_122_62#" "currm_n_46/a_122_62#" -0.3936
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -0.51843
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "currm_n_46/a_122_62#" 242.897
+cap "currm_n_46/m1_68_150#" "currm_n_46/a_122_62#" 3.11375
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 73.8881
+cap "currm_n_6/m1_68_150#" "currm_n_3/m1_68_150#" -2.05789
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 544.047
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 274.085
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_390_n660#" 4.10345
+cap "currm_n_3/m1_68_150#" "currm_n_3/m1_164_390#" -65.1759
+cap "currm_n_6/m1_164_390#" "currm_n_3/m1_164_390#" -0.504516
+cap "currm_n_5/a_122_62#" "currm_n_3/m1_164_390#" 2.65514
+cap "currm_n_3/m1_390_n660#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 28.56
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_390_n660#" -1465.34
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 269.521
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "currm_n_3/m1_164_390#" 323.129
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/m1_164_390#" 0.401766
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_390_n660#" -7.16521
+cap "currm_n_46/a_122_62#" "currm_n_4/a_122_62#" 9.17873
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_164_390#" -79.6018
+cap "currm_n_6/a_122_62#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" -16.1663
+cap "m4_670_1940#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" -1101.82
+cap "currm_n_44/a_122_62#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 7.70926
+cap "currm_n_4/a_122_62#" "currm_n_44/a_122_62#" 52.1914
+cap "m4_670_1940#" "currm_n_44/a_122_62#" -78.899
+cap "currm_n_6/a_122_62#" "currm_n_44/a_122_62#" 23.8947
+cap "currm_n_4/a_122_62#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -1.8596
+cap "currm_n_6/m1_68_150#" "currm_n_0/m1_68_150#" -2.05789
+cap "currm_n_6/a_122_62#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 25.9179
+cap "m4_670_1940#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 154.62
+cap "currm_n_6/a_122_62#" "currm_n_4/a_122_62#" 21.2128
+cap "m4_670_1940#" "currm_n_4/a_122_62#" 568.473
+cap "currm_n_4/a_122_62#" "currm_n_6/m1_164_390#" 3.84463
+cap "m4_670_1940#" "currm_n_6/a_122_62#" 165.62
+cap "m4_670_1940#" "currm_n_6/m1_164_390#" -5.63513
+cap "currm_n_6/a_122_62#" "currm_n_6/m1_164_390#" 0.534949
+cap "currm_n_1/m1_164_390#" "currm_n_4/a_122_62#" 10.5055
+cap "currm_n_6/m1_68_150#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 8.37667
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" -285.983
+cap "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_0/m1_68_150#" 34
+cap "currm_n_1/m1_164_390#" "currm_n_6/m1_164_390#" -0.504516
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_44/a_122_62#" -10.564
+cap "currm_n_6/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 15.3528
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 8.55213
+cap "currm_n_0/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 18.379
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_4/a_122_62#" 4.55043
+cap "currm_n_4/a_122_62#" "currm_n_0/m1_68_150#" 41.1712
+cap "m4_670_1940#" "currm_n_6/m1_68_150#" 15.7042
+cap "currm_n_6/a_122_62#" "currm_n_6/m1_68_150#" 0.307442
+cap "m4_670_1940#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 72.8655
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -46.4478
+cap "currm_n_6/m1_68_150#" "currm_n_6/m1_164_390#" -5.9325
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_6/m1_164_390#" -20.4245
+cap "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_44/a_122_62#" 4.76
+cap "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 53.5399
+cap "currm_n_4/a_122_62#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 33.5942
+cap "currm_n_13/m1_164_390#" "currm_n_13/m1_68_150#" -54.7525
+cap "currm_n_2/m1_390_n660#" "currm_n_13/a_122_62#" -127.207
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_13/a_122_62#" 364.411
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_2/m1_390_n660#" 117.751
+cap "currm_n_13/m1_68_150#" "currm_n_13/a_122_62#" 363.522
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_13/m1_68_150#" 141.419
+cap "currm_n_13/m1_68_150#" "currm_n_2/m1_390_n660#" 171.872
+cap "currm_n_2/a_122_62#" "currm_n_13/a_122_62#" 105.842
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_2/m1_390_n660#" 12.7254
+cap "currm_n_13/m1_164_390#" "currm_n_2/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_63_n200#" -0.498089
+cap "currm_n_13/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.55476
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_2/a_122_62#" -26.442
+cap "currm_n_13/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1077.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_13/a_122_62#" 968.436
+cap "currm_n_4/a_122_62#" "currm_n_13/m1_164_390#" -1.18834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_2/m1_390_n660#" 249.001
+cap "currm_n_4/a_122_62#" "currm_n_13/a_122_62#" 1.44856
+cap "currm_n_13/m1_164_390#" "currm_n_13/a_122_62#" 76.7625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_13/m1_68_150#" 446.35
+cap "currm_n_13/m1_164_390#" "currm_n_2/m1_390_n660#" 60.9668
+cap "currm_n_13/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 968.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_2/a_122_62#" 59.8878
+cap "currm_n_6/m1_390_n660#" "currm_n_12/a_122_62#" -114.596
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/a_122_62#" 2634.46
+cap "currm_n_12/m1_68_150#" "currm_n_12/a_122_62#" 507.19
+cap "currm_n_12/m1_68_150#" "currm_n_6/m1_390_n660#" 171.908
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_6/m1_390_n660#" 462.137
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_12/m1_164_390#" 3528.79
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 966.478
+cap "currm_n_43/a_122_62#" "currm_n_12/m1_164_390#" 0.917449
+cap "currm_n_12/m1_164_390#" "currm_n_12/a_122_62#" -131.036
+cap "currm_n_12/m1_164_390#" "currm_n_6/m1_390_n660#" 111.486
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_164_390#" 156.571
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/m1_164_390#" 3815.9
+cap "currm_n_12/m1_164_390#" "currm_n_24/a_122_62#" 644.235
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_43/a_122_62#" 272.283
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_6/m1_390_n660#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_12/a_122_62#" 1496.04
+cap "currm_n_43/a_122_62#" "currm_n_12/a_122_62#" 23.3078
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_6/m1_390_n660#" 433.387
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_12/m1_68_150#" -776.784
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.46582
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_43/a_122_62#" 127.448
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 13.2805
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 464.972
+cap "currm_n_38/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 3.23636
+cap "currm_n_43/a_122_62#" "currm_n_12/a_122_62#" 31.2554
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 608.087
+cap "currm_n_43/a_122_62#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.72967
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3810.8
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5503.93
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 712.082
+cap "currm_n_43/a_122_62#" "currm_n_12/m1_164_390#" 43.0726
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -103.762
+cap "currm_n_12/m1_164_390#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 73.5114
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_164_390#" -53.6889
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 14.1977
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -47.2069
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" -492.256
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" -0.636207
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -89.0355
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_12/m1_164_390#" 89.3108
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 88.0556
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -186.449
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 348.736
+cap "currm_n_43/a_122_62#" "currm_n_35/a_122_62#" 3.14045
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_12/m1_164_390#" -888.964
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -64.7828
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1787.73
+cap "currm_n_12/m1_68_150#" "currm_n_38/m1_68_150#" -2.97905
+cap "currm_n_35/m1_164_390#" "currm_n_12/m1_164_390#" -3.14954
+cap "currm_n_12/m1_68_150#" "currm_n_43/a_122_62#" 90.0516
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1240.33
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 35.8039
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_12/m1_164_390#" 4941.9
+cap "currm_n_12/m1_68_150#" "currm_n_12/a_122_62#" 224.249
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 502.357
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_164_390#" -580.157
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 117.204
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/m1_68_150#" 236.216
+cap "currm_n_35/a_122_62#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.950374
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 87.8723
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 43.634
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_43/a_122_62#" 47.1578
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 5.06074
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 44.7938
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 163.814
+cap "currm_n_12/m1_164_390#" "currm_n_43/a_122_62#" 1.48713
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_164_390#" 120.058
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 88.0556
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_43/a_122_62#" 90.501
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_68_150#" -2.25723
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_12/a_122_62#" -0.636207
+cap "currm_n_12/a_122_62#" "currm_n_43/a_122_62#" 1.42986
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -195.964
+cap "currm_ps_1/m1_170_170#" "currm_n_35/m1_164_390#" 0.128618
+cap "currm_n_35/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 26.7181
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 11.7386
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_68_150#" 179.366
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "currm_n_35/a_122_62#" 2.34929
+cap "currm_n_12/m1_164_390#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 14.5963
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 91.7882
+cap "currm_n_35/m1_68_150#" "currm_n_12/m1_68_150#" -2.97905
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" -52.2657
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/a_122_62#" 72.2649
+cap "currm_n_35/a_122_62#" "currm_n_43/a_122_62#" 5.79981
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 270.535
+cap "currm_n_43/a_122_62#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 24.6179
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_35/a_122_62#" 161.342
+cap "currm_n_12/m1_164_390#" "currm_n_35/m1_164_390#" 5.52266
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_35/m1_164_390#" 375.181
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" 0.370624
+cap "currm_n_35/a_122_62#" "currm_ps_0/a_132_72#" 8.54149
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -428.8
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 407.733
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -2556.13
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_68_150#" -1504.81
+cap "currm_n_35/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.76544
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_35/a_122_62#" 1.23535
+cap "currm_n_35/m1_164_390#" "currm_n_35/m1_68_150#" -117.72
+cap "currm_ps_0/a_132_72#" "currm_n_35/a_122_62#" 12.698
+cap "currm_n_35/m1_164_390#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" -697.55
+cap "currm_n_35/m1_164_390#" "currm_n_43/m1_164_390#" -1.85576
+cap "currm_ps_0/w_132_72#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" 13.116
+cap "currm_n_35/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -191.61
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 379.313
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_41/m1_390_n660#" 602.105
+cap "currm_n_35/m1_68_150#" "currm_n_41/m1_390_n660#" 4518.59
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/a_122_62#" 316.835
+cap "currm_n_35/m1_164_390#" "currm_n_41/m1_390_n660#" 4884.23
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_68_150#" 224.345
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_68_150#" 5082.68
+cap "currm_ps_1/w_132_72#" "currm_n_41/m1_390_n660#" 11.2863
+cap "currm_n_35/a_122_62#" "currm_ps_1/a_132_72#" 8.74778
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 19.5494
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_164_390#" 3071.54
+cap "currm_n_35/m1_164_390#" "currm_n_35/m1_68_150#" -1616.61
+cap "currm_n_35/a_122_62#" "currm_n_41/m1_390_n660#" 661.959
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_70_1220#" -14.2692
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_70_1220#" 616.786
+cap "currm_ps_21/m1_80_400#" "currm_n_27/m1_164_390#" -305.996
+cap "currm_n_27/a_122_62#" "currm_ps_21/a_132_72#" 10.5688
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_70_1220#" 231.888
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 361.76
+cap "currm_n_30/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_ps_21/m1_70_1220#" 10.9985
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/m1_80_400#" 53.7407
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_80_400#" 197.034
+cap "currm_ps_21/m1_70_1220#" "currm_n_27/m1_164_390#" 71.2152
+cap "currm_ps_21/a_132_72#" "currm_n_27/m1_164_390#" 43.4382
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_80_400#" 282.185
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_27/m1_164_390#" 262.02
+cap "currm_ps_21/m1_70_1220#" "currm_n_30/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 12.6637
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_80_400#" 71.33
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/a_132_72#" -1756.34
+cap "currm_ps_19/m1_170_170#" "currm_n_27/m1_164_390#" -1.47731
+cap "currm_ps_21/m1_80_400#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 5.24462
+cap "currm_ps_21/m1_70_1220#" "currm_n_27/m1_164_390#" 351.734
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_70_1220#" -6.63597
+cap "currm_n_27/m1_164_390#" "currm_ps_21/a_132_72#" 176.06
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/m1_80_400#" 62.8497
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/a_132_72#" -321.184
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_n_27/m1_164_390#" -6.63039
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_80_400#" 217.063
+cap "currm_n_27/m1_164_390#" "currm_ps_21/m1_80_400#" -346.027
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -3523.3
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_27/a_122_62#" -264.088
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_19/m1_170_170#" -3444.64
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_70_1220#" -2628.8
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/a_132_72#" -5342.35
+cap "currm_n_27/a_122_62#" "currm_ps_21/a_132_72#" 12.8162
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_27/m1_164_390#" 2117
+cap "VM31D" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -264.088
+cap "currm_ps_21/a_132_72#" "currm_ps_19/m1_170_170#" -360.521
+cap "currm_n_27/m1_164_390#" "currm_ps_21/a_132_72#" 5.59618
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 344.941
+cap "currm_ps_21/m1_80_400#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 35.734
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_19/m1_170_170#" 571.872
+cap "currm_ps_21/m1_70_1220#" "currm_n_27/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" 10.7107
+cap "currm_n_27/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 4362.3
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/m1_70_1220#" -22.6666
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 4731.55
+cap "currm_ps_21/a_132_72#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -11.1747
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -264.273
+cap "currm_n_27/m1_68_150#" "currm_n_27/a_122_62#" 0.860816
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/a_132_72#" 1717.65
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 5.7561
+cap "currm_n_27/m1_164_390#" "currm_ps_19/m1_170_170#" 11.4984
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 170.401
+cap "Disable_FB_B" "currm_ps_21/a_132_72#" 1.77773
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 1904.57
+cap "currm_ps_21/a_132_72#" "currm_n_27/a_122_62#" 42.3332
+cap "VM31D" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 46.7139
+cap "currm_n_27/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 4269.15
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/m1_170_170#" -3.09057
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_27/a_122_62#" 83.3576
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_21/a_132_72#" 1.70167
+cap "currm_ps_21/m1_70_1220#" "currm_ps_19/m1_170_170#" -107.917
+cap "currm_n_27/m1_164_390#" "currm_ps_21/m1_70_1220#" -0.847943
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/a_132_72#" 180.911
+cap "VM31D" "currm_n_33/a_122_62#" 4.80348
+cap "currm_ps_21/m1_80_400#" "currm_p_11/m1_60_n360#" -2.11351
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 118.452
+cap "VM31D" "currm_ps_19/m1_170_170#" -1.25456
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 487.669
+cap "currm_ps_19/m1_170_170#" "currm_n_27/a_122_62#" -2.7287
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 1707.8
+cap "currm_ps_21/m1_70_1220#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 24.1741
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 5093.94
+cap "Disable_FB_B" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.0954428
+cap "currm_ps_21/m1_80_400#" "currm_n_27/m1_164_390#" -228.211
+cap "currm_n_29/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "currm_ps_15/m1_70_1220#" 13.0132
+cap "currm_p_11/m1_60_n360#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 45.0664
+cap "VM31D" "currm_n_33/a_122_62#" 1.82435
+cap "currm_n_15/m1_164_390#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 146.169
+cap "currm_p_11/m1_60_n360#" "currm_ps_15/m1_70_1220#" 41.9793
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/m1_170_170#" -226.288
+cap "currm_n_15/m1_164_390#" "currm_ps_19/m1_170_170#" -29.4093
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_15/m1_70_1220#" -6.21732
+cap "currm_n_15/m1_164_390#" "currm_ps_15/m1_70_1220#" 874.801
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 118.452
+cap "VM31D" "currm_n_15/m1_164_390#" 2.61612
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 144.409
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_19/m1_170_170#" 14.3891
+cap "currm_ps_19/m1_170_170#" "currm_n_29/a_122_62#" -0.411815
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_15/m1_70_1220#" 7.76943
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 173.223
+cap "VM31D" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -18.6151
+cap "VM31D" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 57.4498
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_15/m1_70_1220#" 0.452042
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 37.3831
+cap "currm_p_11/m1_60_n360#" "currm_n_15/m1_164_390#" -233.215
+cap "Disable_FB_B" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 722.737
+cap "currm_n_15/m1_164_390#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -4.99557
+cap "Disable_FB_B" "currm_ps_15/m1_70_1220#" 263.591
+cap "currm_ps_15/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" "currm_ps_19/m1_170_170#" -2.73665
+cap "currm_n_15/m1_164_390#" "currm_n_29/a_122_62#" 9.26857
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_n_29/a_122_62#" 4.87456
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 440.673
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 19.1039
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_15/m1_164_390#" 18.8526
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 871.071
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.96111
+cap "currm_n_15/m1_164_390#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.65277
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_15/m1_164_390#" -9.56979
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_29/a_122_62#" -52.7747
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 250.303
+cap "currm_n_29/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.2263
+cap "currm_p_11/m1_60_n360#" "currm_ps_15/m1_80_400#" -2.11351
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -275.821
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_15/m1_70_1220#" -222.739
+cap "Disable_FB_B" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 294.384
+cap "Disable_FB_B" "currm_n_15/m1_164_390#" 1.82514
+cap "currm_ps_15/m1_80_400#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.829037
+cap "currm_ps_19/m1_170_170#" "currm_ps_15/m1_70_1220#" -91.4471
+cap "VM31D" "currm_ps_19/m1_170_170#" 1.50577
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 34.2429
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_15/m1_164_390#" 79.7624
+cap "currm_n_15/m1_164_390#" "currm_ps_19/m1_170_170#" 0.460608
+cap "VM30D" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 17.247
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "Disable_FB_B" 199.679
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -1.88157
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/w_132_72#" 44.3117
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -62.828
+cap "currm_ps_19/w_132_72#" "currm_n_15/m1_164_390#" 72.2312
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "VM31D" -97.0611
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" 1.10276
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1173.27
+cap "currm_p_11/m1_60_n360#" "currm_n_15/m1_164_390#" -265.962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 4.86442
+cap "VM31D" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 17.247
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_19/w_132_72#" -682.662
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -210.012
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_19/w_132_72#" -30.7546
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 29.5211
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 75.8711
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "VM30D" -145.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_15/m1_164_390#" -2486.23
+cap "currm_ps_19/w_132_72#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "Disable_FB_B" -228.333
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 216.013
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 968.536
+cap "currm_p_11/m1_60_n360#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 112.728
+cap "currm_n_5/a_122_62#" "currm_p_11/m1_190_n590#" 6.68432
+cap "m4_210_2860#" "Disable_FB_B" 217.847
+cap "m4_210_2860#" "currm_p_11/m1_190_n590#" 810.72
+cap "Disable_FB_B" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 190.047
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_60_n360#" 67.278
+cap "currm_p_11/m1_190_n590#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 188.167
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 292.625
+cap "m4_210_2860#" "VM31D" 159.014
+cap "m4_210_2860#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1184.95
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_n_16/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "VM30D" 79.209
+cap "currm_p_11/m1_60_n360#" "currm_p_11/m1_190_n590#" -94.2815
+cap "currm_p_11/m1_190_n590#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 107.936
+cap "currm_p_11/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 20.2514
+cap "m4_210_2860#" "currm_p_11/m1_60_n360#" 591.729
+cap "m4_210_2860#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 490.499
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "Disable_FB_B" 144.524
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_190_n590#" 70.7096
+cap "currm_p_11/m1_60_n360#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 279.276
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 971.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "VM31D" 79.209
+cap "m4_210_2860#" "VM30D" 110.965
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 1491.69
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 9.27166
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "Disable_FB_B" 448.667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "VM31D" 284.661
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_n_20/a_122_62#" 68.4439
+cap "currm_n_5/a_122_62#" "VM31D" -0.0277046
+cap "currm_p_4/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3508.54
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1257.04
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "VM14D" 0.233048
+cap "currm_p_4/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 36.6323
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "VM30D" 101.595
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_n_5/a_122_62#" -12.6506
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 161.934
+cap "currm_p_4/m1_60_n360#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" -6.97228
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 316.145
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_n_5/a_122_62#" 226.966
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -215.899
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "Disable_FB_B" -9.36362
+cap "Disable_FB_B" "currm_n_5/a_122_62#" 2.54117
+cap "currm_n_20/a_122_62#" "currm_n_5/a_122_62#" -0.0277046
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_1/m1_n50_n680#" 0.305379
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "VM30D" 284.661
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "VM31D" 181.534
+cap "currm_n_5/a_122_62#" "VM30D" -0.0277046
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 4036.09
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_4/m1_60_n360#" 3590.74
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 423.874
+cap "currm_p_4/m1_190_n590#" "currm_n_5/a_122_62#" 7.27796
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7649
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_n_5/a_122_62#" 463.132
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7743
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 22.6598
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_5/a_122_62#" 198.37
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_12/m1_70_460#" 2767.59
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 33.6239
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "Disable_FB_B" 453.672
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_12/m1_70_460#" 40.0804
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 313.583
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -52.2693
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 30.0632
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/a_122_62#" 2.01802
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 1.17852
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM31D" 331.083
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_20/a_122_62#" 294.803
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM30D" 241.396
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "Disable_FB_B" 6.58654
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -0.633763
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/a_122_62#" -8.2247
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 34.7864
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7649
+cap "currm_n_3/m1_164_390#" "currm_n_5/a_122_62#" 2.65514
+cap "VM31D" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 476.675
+cap "currm_n_20/a_122_62#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 111.489
+cap "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "VM30D" 286.19
+cap "currm_n_3/m1_164_390#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 0.349107
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_5/a_122_62#" 729.202
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/m1_68_150#" 0.497908
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 3657.72
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 57.4754
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_12/m1_70_460#" 1062.61
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/m1_164_390#" -6.34219
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 34
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 12.9064
+cap "currm_n_5/a_122_62#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 431.411
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "Disable_FB_B" 224.149
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 57.59
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 0.352252
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 204.545
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM31D" 130.804
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 239.218
+cap "currm_n_3/m1_164_390#" "currm_n_5/a_122_62#" 2.65514
+cap "currm_p_21/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -8.49404
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 249.646
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "VM30D" 17.9651
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 57.4754
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 147.815
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -0.441382
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -47.6652
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 0.0192811
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 191.687
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "Disable_FB_B" 149.231
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "VM31D" 182.57
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -2.65567
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7743
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_4/a_122_62#" 148.788
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_5/a_122_62#" 139.564
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_5/a_122_62#" 199.066
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "currm_n_3/a_122_62#" -8.2247
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7649
+cap "currm_p_21/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 34
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 315.66
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 197.962
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/a_122_62#" 1.76577
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -6.34219
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" -19.5743
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "Disable_FB_B" 32.2359
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/m1_68_150#" 0.497908
+cap "currm_p_21/m1_70_460#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 34
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_21/m1_70_460#" 39.4783
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 841.364
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 104.408
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 1115.23
+cap "m4_670_1940#" "currm_n_6/a_122_62#" 254.6
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM30D" 17.247
+cap "m4_670_1940#" "currm_p_21/m1_70_460#" -297.128
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM31D" 17.247
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 66.528
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 191.229
+cap "m4_670_1940#" "Disable_FB_B" -95.3438
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 34
+cap "currm_n_4/a_122_62#" "VM31D" -5.68434e-14
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 34
+cap "currm_n_4/a_122_62#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -10.8811
+cap "currm_n_4/a_122_62#" "currm_p_21/m1_190_n590#" 6.92215
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 86.3516
+cap "m4_670_1940#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -1899.29
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 2.8248
+cap "currm_n_4/a_122_62#" "currm_n_6/a_122_62#" -0.106707
+cap "m4_670_1940#" "VM30D" -114.521
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "Disable_FB_B" 178.511
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 0.192941
+cap "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_21/m1_70_460#" 8.55213
+cap "m4_670_1940#" "VM31D" -28.5574
+cap "currm_n_4/a_122_62#" "m4_670_1940#" 554.598
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "m4_670_1940#" 300.041
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 53.3184
+cap "currm_n_4/a_122_62#" "currm_p_21/m1_70_460#" 63.5979
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" -7.74779
+cap "currm_n_4/a_122_62#" "Disable_FB_B" -9.5048
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 21.7743
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 21.7649
+cap "currm_n_6/m1_164_390#" "currm_p_21/m1_60_n360#" -200.355
+cap "currm_n_6/m1_164_390#" "currm_p_21/m1_70_460#" 108.954
+cap "currm_p_21/m1_60_n360#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 278.539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "VM30D" 110.965
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 944.534
+cap "Disable_FB_B" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1.722
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 440.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VM31D" 79.209
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 755.206
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 22.2661
+cap "currm_n_2/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "currm_p_21/m1_70_460#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_60_n360#" -11.7625
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 113.024
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 655.507
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_70_460#" 328.803
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "VM31D" 175.415
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "Disable_FB_B" 79.209
+cap "currm_n_6/m1_164_390#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 127.746
+cap "currm_n_6/m1_164_390#" "currm_n_4/a_122_62#" 6.92086
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 499.075
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_70_460#" 530.667
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 132.444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VM30D" 79.209
+cap "currm_p_21/m1_60_n360#" "Disable_FB_B" 0.017243
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_21/m1_60_n360#" 0.606202
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1033.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "Disable_FB_B" 219.754
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1433.93
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1274.8
+cap "currm_p_21/m1_60_n360#" "currm_n_6/m1_164_390#" -118.153
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_60_n360#" 1709.36
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_6/m1_164_390#" 1502.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "VM31D" 73.1047
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "Disable_FB_B" 29.8885
+cap "currm_p_21/m1_70_460#" "currm_n_6/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "VM30D" 18.7827
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "Disable_FB_B" 283.824
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" 220.233
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 98.2853
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_6/m1_164_390#" 183.025
+cap "currm_p_21/m1_70_460#" "currm_n_6/m1_164_390#" 210.843
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1319.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_60_n360#" 1876.58
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2053.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_6/m1_164_390#" 260.249
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VM31D" 245.301
+cap "currm_n_6/m1_164_390#" "currm_ps_0/m1_170_170#" -0.141667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VM30D" 245.301
+cap "VM30D" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 351.473
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -9.43525
+cap "currm_p_16/m1_60_n360#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -7.63828
+cap "VM30D" "currm_ps_0/m1_170_170#" -0.0758749
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1734.99
+cap "Disable_FB_B" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 275.942
+cap "currm_n_43/a_122_62#" "currm_n_38/a_122_62#" 1.34244
+cap "currm_p_16/m1_60_n360#" "Disable_FB_B" 315.742
+cap "currm_p_16/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1023.4
+cap "currm_n_8/m1_164_390#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 479.36
+cap "currm_ps_0/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -22.1563
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 32.7697
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 479.961
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 4128.3
+cap "currm_ps_1/m1_80_400#" "currm_p_16/m1_60_n360#" -2.15625
+cap "currm_p_16/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 35.0463
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -34.472
+cap "currm_n_8/m1_164_390#" "currm_p_16/m1_60_n360#" -325.909
+cap "currm_n_8/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -80.784
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/m1_170_170#" -2.9808
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 444.69
+cap "currm_n_8/m1_164_390#" "Disable_FB_B" 301.703
+cap "currm_n_8/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1494.37
+cap "currm_n_8/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 13.2805
+cap "currm_n_8/m1_164_390#" "currm_n_38/a_122_62#" 0.234929
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.379612
+cap "VM30D" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 416.432
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -12.1801
+cap "currm_n_8/m1_164_390#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.752742
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1499.61
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1207.36
+cap "currm_n_8/m1_164_390#" "VM30D" 21.1818
+cap "currm_ps_0/m1_170_170#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -218.574
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 87.8723
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 94.8291
+cap "currm_p_16/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 566.012
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_16/m1_60_n360#" 12.772
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -200.598
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4424.88
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -45.074
+cap "Disable_FB_B" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 343.265
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "Disable_FB_B" 99.2705
+cap "currm_n_8/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -77.352
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 345.892
+cap "currm_n_8/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 301.666
+cap "currm_n_8/m1_164_390#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 135.444
+cap "currm_ps_0/m1_170_170#" "currm_n_38/a_122_62#" 0.0234929
+cap "currm_n_8/m1_164_390#" "currm_ps_0/m1_170_170#" -312.121
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 87.8723
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 38.9525
+cap "VM30D" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 124.6
+cap "currm_n_9/m1_164_390#" "currm_n_38/a_122_62#" 8.54149
+cap "currm_n_9/m1_164_390#" "Disable_FB_B" 7.12667
+cap "currm_n_9/m1_164_390#" "currm_ps_0/m1_170_170#" 41.0652
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_9/m1_164_390#" 374.641
+cap "currm_n_9/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 199.191
+cap "currm_ps_1/m1_80_400#" "currm_n_9/m1_164_390#" 31.2849
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.74726
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -211.038
+cap "currm_n_38/a_122_62#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.950374
+cap "currm_n_9/m1_164_390#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 3.25875
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -1.59396
+cap "currm_p_15/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 5.52679
+cap "currm_ps_0/m1_170_170#" "currm_n_38/a_122_62#" -0.717854
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_0/m1_170_170#" 51.9546
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_38/a_122_62#" 75.481
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/m1_170_170#" 126.855
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 207.036
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_1/m1_80_400#" 85.3895
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 317.557
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.452042
+cap "currm_ps_1/m1_170_170#" "currm_n_9/m1_164_390#" 73.138
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 94.8291
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -9.73863
+cap "currm_n_9/m1_164_390#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 163.194
+cap "VM30D" "currm_n_9/m1_164_390#" 51.0737
+cap "currm_n_38/a_122_62#" "currm_n_43/a_122_62#" 4.75019
+cap "currm_p_15/m1_60_n360#" "currm_ps_1/m1_80_400#" -2.15625
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/m1_170_170#" 10.3326
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_1/m1_170_170#" 46.3235
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 413.127
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/m1_170_170#" -242.699
+cap "currm_n_10/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 11.7386
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_0/m1_170_170#" -7.4526
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -13.2996
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "VM30D" -1.07123
+cap "VM30D" "currm_n_38/a_122_62#" -0.176371
+cap "VM30D" "currm_ps_0/m1_170_170#" -4.43205
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 137.681
+cap "currm_n_9/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -42.84
+cap "currm_ps_0/a_132_72#" "currm_n_38/a_122_62#" 12.698
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/a_132_72#" 189.821
+cap "currm_ps_0/a_132_72#" "currm_n_38/m1_164_390#" -1311.18
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 1.96515
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/m1_70_1220#" -16.2531
+cap "currm_ps_0/m1_70_1220#" "currm_ps_1/m1_80_400#" 45.781
+cap "currm_ps_0/m1_70_1220#" "currm_n_38/m1_164_390#" -626.794
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_80_400#" -1.63631
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_38/m1_164_390#" -203.658
+cap "currm_ps_1/m1_80_400#" "currm_n_38/m1_164_390#" -386.454
+cap "currm_ps_0/m1_70_1220#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 13.116
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -3038.72
+cap "currm_ps_0/m1_170_170#" "currm_n_38/m1_164_390#" 0.884183
+cap "currm_ps_0/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -1214.67
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -2157.89
+cap "currm_n_38/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -1414.27
+cap "currm_ps_0/m1_70_1220#" "currm_ps_0/a_132_72#" 331.72
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/a_132_72#" -87.456
+cap "currm_ps_1/a_132_72#" "currm_ps_1/m1_70_1220#" 1843.18
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_6/m1_80_400#" 883.56
+cap "currm_ps_6/m1_80_400#" "currm_ps_1/m1_70_1220#" 70.8465
+cap "currm_n_41/a_122_62#" "currm_ps_1/a_132_72#" 8.74778
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_41/m1_164_390#" 1150.15
+cap "currm_ps_1/a_132_72#" "currm_n_41/m1_164_390#" 2851.5
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/a_132_72#" 5431.45
+cap "currm_n_41/m1_164_390#" "currm_ps_6/m1_80_400#" -239.139
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_6/m1_80_400#" 361.564
+cap "currm_ps_1/a_132_72#" "currm_ps_6/m1_80_400#" 262.437
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_70_1220#" 1562.49
+cap "currm_n_38/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_ps_1/m1_70_1220#" 11.2863
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_41/m1_164_390#" 2294.73
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_70_1220#" 1496.3
+cap "currm_n_41/m1_164_390#" "currm_ps_1/m1_70_1220#" 989.177
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/a_132_72#" 5358.47
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 670.029
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/a_132_72#" 135.942
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 291.821
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/a_132_72#" 306.644
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/m1_170_170#" 33.3151
+cap "currm_ps_21/m1_170_170#" "currm_ps_21/m1_80_400#" -287.264
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -21.5176
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/m1_80_400#" 96.7966
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 35.7793
+cap "currm_ps_21/m1_170_170#" "currm_ps_21/a_132_72#" 27.0632
+cap "currm_ps_21/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 194.344
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/a_132_72#" 455.642
+cap "currm_ps_21/m1_80_400#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 8.42325
+cap "currm_ps_21/m1_170_170#" "currm_ps_21/m1_70_1220#" 264.367
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_70_1220#" -268.627
+cap "currm_ps_21/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -6.33401
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -2436.9
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_70_1220#" -10095.5
+cap "currm_ps_21/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 1834.11
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_170_170#" 214.076
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_70_1220#" -577.639
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -212.848
+cap "currm_ps_21/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.838303
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -2961.28
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/m1_170_170#" -262.512
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/m1_70_1220#" 195.844
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 35.4644
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 592.408
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/a_132_72#" 175.651
+cap "currm_ps_19/m1_170_170#" "currm_ps_21/m1_70_1220#" -2.44375
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_170_170#" -2.32253
+cap "currm_ps_21/a_132_72#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 137.573
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_21/a_132_72#" -15.309
+cap "currm_ps_21/a_132_72#" "currm_ps_21/m1_70_1220#" 2907.14
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_21/m1_70_1220#" 1.41667
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 362.806
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_70_1220#" 4018.16
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_170_170#" 3392.48
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 12.13
+cap "currm_p_11/m1_60_n360#" "currm_ps_21/m1_80_400#" -1.46293
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 7406.19
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 118.452
+cap "currm_p_11/m1_60_n360#" "currm_ps_21/m1_70_1220#" 6.46154
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/m1_170_170#" -216.529
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 7.79059
+cap "currm_ps_21/m1_80_400#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 8.42325
+cap "currm_p_11/m1_60_n360#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 1.14864
+cap "currm_ps_21/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 21.2512
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/m1_70_1220#" 6.53057
+cap "currm_ps_19/m1_170_170#" "currm_ps_21/a_132_72#" 3.45441
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -264.273
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" 38.5704
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_21/m1_70_1220#" 89.8309
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/m1_170_170#" -15.8164
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_21/m1_70_1220#" 6.67343
+cap "currm_ps_21/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 454.928
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 6840.25
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_70_1220#" 5094.85
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_170_170#" 3469.87
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 108.705
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 54.0432
+cap "currm_ps_21/m1_80_400#" "currm_ps_21/a_132_72#" 127.392
+cap "currm_ps_19/m1_170_170#" "currm_ps_15/a_132_72#" 1.79614
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 891.993
+cap "currm_ps_15/m1_70_1220#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 14.439
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 115.313
+cap "currm_ps_15/a_132_72#" "currm_ps_14/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" 0.628656
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_15/a_132_72#" 1007.42
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 118.452
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 1.50606
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 7.79059
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.96111
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -11.58
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 22.2929
+cap "currm_ps_15/a_132_72#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.802174
+cap "currm_ps_15/m1_70_1220#" "currm_p_11/m1_60_n360#" 141.741
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_15/m1_70_1220#" 77.1116
+cap "currm_ps_15/m1_70_1220#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 14.434
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -9.34821
+cap "currm_ps_15/m1_70_1220#" "currm_ps_15/a_132_72#" 357.135
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 124.355
+cap "currm_p_11/m1_60_n360#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 22.4242
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 250.303
+cap "currm_p_11/m1_60_n360#" "currm_ps_15/a_132_72#" -135.322
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_15/a_132_72#" 239.779
+cap "currm_ps_15/m1_70_1220#" "currm_ps_19/m1_170_170#" -2.88807
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" 182.547
+cap "currm_ps_15/a_132_72#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 87.2756
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -275.821
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 418.013
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" 455.849
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" 248.335
+cap "currm_ps_14/m1_80_400#" "currm_p_11/m1_60_n360#" -1.46293
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 54.1881
+cap "currm_ps_14/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.414518
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" 11.3991
+cap "currm_p_11/m1_60_n360#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 170.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 4.86442
+cap "currm_p_11/m1_190_n590#" "currm_p_11/m1_60_n360#" -302.844
+cap "currm_p_11/m1_60_n360#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" 0.551381
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 88.2064
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_19/w_132_72#" -305.012
+cap "currm_p_11/m1_190_n590#" "currm_ps_19/w_132_72#" 28.1146
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_60_n360#" 50.8385
+cap "currm_p_11/m1_190_n590#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 4.05251
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_19/w_132_72#" -1269.51
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -610.155
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "Disable_FB_B" 13.6166
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_ps_19/w_132_72#" -61.96
+cap "currm_p_11/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -2042.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 29.5211
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/w_132_72#" 73.589
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -259.574
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_190_n590#" -1.73045
+cap "currm_p_11/m1_60_n360#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 370.853
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/m1_190_n590#" 77.934
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1280.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_190_n590#" 70.7096
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 653.223
+cap "Disable_FB_B" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 11.8064
+cap "currm_p_11/m1_190_n590#" "m4_210_2860#" 1093.76
+cap "currm_p_11/m1_60_n360#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 208.87
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m4_210_2860#" 932.264
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 99.4038
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_11/m1_190_n590#" 169.289
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 567.275
+cap "currm_p_11/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_11/m1_60_n360#" "m4_210_2860#" 1241.54
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 6.15571
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "m4_210_2860#" 1060.54
+cap "currm_p_11/m1_60_n360#" "currm_p_11/m1_190_n590#" -120.656
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "Disable_FB_B" -1.15852
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 28.6828
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/m1_60_n360#" 28.5064
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 6.15571
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_4/m1_60_n360#" 2428.36
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 3054.27
+cap "currm_p_4/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/m1_190_n590#" -3.22253
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 116.72
+cap "Disable_FB_B" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 7.96283
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/m1_190_n590#" 0.868889
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_4/m1_60_n360#" 2137.38
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2547.69
+cap "currm_p_12/m1_70_460#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1572.2
+cap "Disable_FB_B" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 12.3866
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 117.898
+cap "currm_p_12/m1_n50_n680#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -27.4647
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 6.15571
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 28.668
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_12/m1_70_460#" "currm_p_12/m1_n50_n680#" 752.31
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_70_460#" 13.39
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 117.839
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -3.02672
+cap "currm_p_21/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 28.668
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#" 0.0412979
+cap "Disable_FB_B" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 12.3866
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 25.5357
+cap "currm_p_21/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" 480.89
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 6.15571
+cap "currm_p_21/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 13.39
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" 99.3385
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" -13.167
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 34.7837
+cap "currm_p_21/m1_190_n590#" "currm_p_21/m1_70_460#" 0.488932
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 558.882
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.80686
+cap "Disable_FB_B" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 12.3866
+cap "currm_p_12/m1_190_n590#" "currm_p_21/m1_70_460#" -3.25833
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 13.39
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "m4_670_1940#" 120.925
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 6.80686
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m4_670_1940#" 154.474
+cap "m4_670_1940#" "currm_p_21/m1_70_460#" 185.665
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -3.02672
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1500.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_60_n360#" 1125.29
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 303.712
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_190_n590#" 186.193
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 174.21
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 6.80686
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 7.27441
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_190_n590#" 1057.52
+cap "Disable_FB_B" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 12.3866
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_190_n590#" 135.225
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_70_460#" 1018.54
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_190_n590#" -112.076
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_60_n360#" 33.5094
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 327.608
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" 261.891
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 602.317
+cap "currm_p_21/m1_190_n590#" "currm_p_21/m1_60_n360#" -59.4164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_70_460#" 5090.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_70_460#" 5057.64
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 12.9518
+cap "currm_p_21/m1_60_n360#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.454651
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" -341.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 271.849
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 329.305
+cap "currm_p_21/m1_190_n590#" "currm_p_21/m1_70_460#" 206.552
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 216.328
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_190_n590#" 1064.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_60_n360#" 1201.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_190_n590#" 260.249
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_60_n360#" 1223.43
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_190_n590#" 168.594
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" -4.08285
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/m1_60_n360#" 7.1071
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_16/m1_60_n360#" 1530.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 6024.29
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 24.0282
+cap "currm_p_16/m1_190_n590#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -234.092
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -201.666
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -12.1801
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 6356.51
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 94.8291
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -200.598
+cap "currm_p_16/m1_190_n590#" "currm_ps_1/m1_170_170#" 0.299591
+cap "currm_ps_0/m1_170_170#" "currm_p_16/m1_190_n590#" 0.885563
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 63.2077
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/m1_190_n590#" 111.057
+cap "currm_ps_0/m1_170_170#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -0.434444
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 32.79
+cap "currm_p_16/m1_190_n590#" "currm_p_16/m1_60_n360#" -286.899
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_16/m1_60_n360#" 81.986
+cap "currm_p_16/m1_190_n590#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -23.0761
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 301.666
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 2737.62
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 156.884
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 4787.18
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/m1_60_n360#" 22.0519
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 241.297
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 0.189806
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 7.34527
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1323.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 5499.7
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -165.045
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -9.43525
+cap "currm_ps_1/m1_80_400#" "currm_p_16/m1_60_n360#" -1.45896
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 87.8723
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_16/m1_60_n360#" 76.971
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" "currm_p_16/m1_60_n360#" 262.912
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_16/m1_60_n360#" 583.776
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_80_400#" 5.03294
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/m1_170_170#" -243.085
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_15/m1_60_n360#" 1.16526
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 15.2887
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_1/m1_80_400#" 162.208
+cap "currm_p_15/m1_190_n590#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -18.4704
+cap "currm_p_15/m1_190_n590#" "currm_ps_1/m1_80_400#" 62.9421
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -211.038
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 21.9703
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_170_170#" 453.512
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1729.49
+cap "currm_p_15/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 98.14
+cap "currm_p_15/m1_190_n590#" "VM30D" 1.71992
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "VM30D" -1.07123
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_170_170#" -13.3436
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 44.8166
+cap "currm_p_15/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -35.3777
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -6.05971
+cap "currm_p_15/m1_190_n590#" "currm_ps_1/m1_170_170#" 25.4239
+cap "currm_p_15/m1_60_n360#" "currm_ps_1/m1_80_400#" -1.45896
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_15/m1_60_n360#" 7.1071
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_1/m1_170_170#" -20.8799
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 14.1911
+cap "currm_p_15/m1_190_n590#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1128.43
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 94.8291
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 87.8723
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 16.8465
+cap "currm_p_15/m1_190_n590#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 122.996
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 219.109
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_80_400#" 721.52
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_0/m1_170_170#" -3.91
+cap "currm_p_15/m1_190_n590#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 15.7178
+cap "currm_p_15/m1_190_n590#" "currm_ps_0/m1_170_170#" 4.32647
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 0.0392553
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_80_400#" -1446.7
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -3017.97
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -979.088
+cap "currm_ps_0/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -4806.84
+cap "currm_ps_0/a_132_72#" "currm_ps_1/m1_80_400#" 128.963
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_80_400#" 47.0817
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -263.303
+cap "currm_ps_1/m1_170_170#" "currm_ps_1/m1_80_400#" -427.644
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/a_132_72#" -55.9913
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -32.0674
+cap "currm_ps_0/m1_70_1220#" "currm_ps_1/m1_80_400#" 377.171
+cap "currm_ps_0/a_132_72#" "currm_ps_0/m1_70_1220#" -398.492
+cap "currm_ps_0/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -181.463
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/m1_70_1220#" 457.931
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 0.980444
+cap "currm_ps_6/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1410.88
+cap "currm_ps_1/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2831.71
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/a_132_72#" 3005.08
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_170_170#" 1714.66
+cap "currm_ps_1/m1_70_1220#" "currm_ps_6/m1_80_400#" 172.934
+cap "currm_ps_6/m1_80_400#" "currm_ps_1/a_132_72#" 241.218
+cap "currm_ps_1/m1_70_1220#" "currm_ps_1/a_132_72#" 1074.2
+cap "currm_ps_6/m1_80_400#" "currm_ps_1/m1_170_170#" 10.8998
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_6/m1_80_400#" 401.47
+cap "currm_ps_1/m1_70_1220#" "currm_ps_1/m1_170_170#" 98.0137
+cap "currm_ps_1/m1_170_170#" "currm_ps_1/a_132_72#" 233.072
+cap "currm_ps_1/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 2432.22
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/a_132_72#" 2864.94
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/m1_170_170#" 678.399
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/m1_170_170#" 81.236
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/a_132_72#" 359.727
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/a_132_72#" 633.471
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_21/m1_70_1220#" 947.625
+cap "currm_ps_17/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 17.902
+cap "currm_ps_17/m1_80_400#" "currm_ps_21/a_132_72#" 143.699
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 304.236
+cap "currm_ps_17/m1_80_400#" "currm_ps_21/m1_70_1220#" 37.2698
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/a_132_72#" -73.0492
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_21/m1_70_1220#" -21.5176
+cap "currm_ps_17/m1_170_170#" "currm_ps_21/a_132_72#" -113.49
+cap "currm_ps_17/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 149.702
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 20.3087
+cap "currm_ps_17/m1_170_170#" "currm_ps_21/m1_70_1220#" 39.4408
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_17/m1_170_170#" 1788.49
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" -264.088
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 181.423
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -3662.98
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -8724.61
+cap "currm_ps_17/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 12.8296
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 647.281
+cap "currm_ps_21/a_132_72#" "currm_ps_17/m1_170_170#" 309.402
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -2172.81
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 0.880147
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_17/m1_170_170#" 362.665
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -2021.66
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/m1_170_170#" 60.5887
+cap "currm_ps_21/a_132_72#" "currm_ps_17/m1_80_400#" 174.694
+cap "currm_ps_17/m1_80_400#" "currm_p_9/m1_60_n360#" -0.664067
+cap "currm_ps_21/a_132_72#" "currm_ps_17/m1_170_170#" -1.30227
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.0954428
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 4874.13
+cap "currm_ps_21/m1_70_1220#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 48.539
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 13.7783
+cap "currm_p_9/m1_60_n360#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 12.3981
+cap "currm_ps_21/m1_70_1220#" "currm_ps_17/m1_170_170#" 4494.27
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 8.71086
+cap "currm_ps_21/m1_70_1220#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -270.342
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 118.452
+cap "currm_ps_17/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 22.9061
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 442.102
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/m1_170_170#" -18.0403
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -66.0179
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 37.7347
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 141.901
+cap "currm_ps_21/m1_70_1220#" "currm_ps_21/a_132_72#" 10755
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n29_n200#" "currm_ps_21/a_132_72#" 0.668663
+cap "currm_ps_17/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 4503.84
+cap "currm_ps_21/m1_70_1220#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 269.891
+cap "currm_ps_21/m1_70_1220#" "currm_p_9/m1_60_n360#" 11.7427
+cap "currm_ps_21/a_132_72#" "currm_ps_17/m1_80_400#" 70.9943
+cap "currm_ps_21/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 10135.1
+cap "currm_ps_21/m1_70_1220#" "currm_ps_17/m1_80_400#" 369.698
+cap "currm_ps_21/a_132_72#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 463.702
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -275.821
+cap "currm_ps_14/m1_80_400#" "currm_p_9/m1_60_n360#" -0.664067
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_15/m1_70_1220#" 7.72622
+cap "currm_p_9/m1_60_n360#" "currm_ps_15/a_132_72#" 6.86146
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n29_n200#" 0.255283
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_15/m1_70_1220#" 199.086
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 7.39345
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 14.8333
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5.87122
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 158.527
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "currm_ps_15/a_132_72#" 58.8136
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 0.296334
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 506.12
+cap "currm_ps_14/m1_80_400#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.414518
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_9/m1_60_n360#" 21.9206
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_15/a_132_72#" -3.76076
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 1.50928
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_60_n360#" 147.544
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_15/a_132_72#" 221.011
+cap "currm_p_9/m1_60_n360#" "currm_ps_15/m1_70_1220#" 56.1825
+cap "currm_ps_15/m1_70_1220#" "currm_ps_15/a_132_72#" 499.739
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 48.4286
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 157.693
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 222.844
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 809.855
+cap "currm_ps_15/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 118.452
+cap "currm_ps_15/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 965.892
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 250.303
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "currm_ps_15/m1_70_1220#" 337.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -1382.66
+cap "Disable_FB_B" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.962684
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_18/m1_170_170#" 59.8451
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" "currm_p_9/m1_60_n360#" 0.398646
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/m1_60_n360#" 37.7285
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 24.335
+cap "currm_ps_18/m1_170_170#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 17.2031
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 29.5211
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_18/m1_170_170#" -2767.7
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_60_n360#" 151.135
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_60_n360#" 101.784
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -525.837
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 4.86442
+cap "currm_ps_18/m1_170_170#" "currm_p_9/m1_60_n360#" -202.892
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_ps_18/m1_170_170#" 29.1636
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -666.834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -773.136
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/m1_60_n360#" 29.868
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_9/m1_190_n590#" 171.644
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "m4_210_2860#" 1005.86
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/m1_60_n360#" 254.167
+cap "m4_210_2860#" "currm_p_9/m1_60_n360#" 1268.45
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1306.45
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/m1_190_n590#" 146.154
+cap "m4_210_2860#" "currm_p_9/m1_190_n590#" 1113.53
+cap "currm_p_9/m1_60_n360#" "currm_p_9/m1_190_n590#" -103.66
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 465.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/m1_60_n360#" 91.1125
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2546.67
+cap "m4_210_2860#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1743.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/m1_190_n590#" 94.312
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_9/m1_60_n360#" 384.216
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_4/m1_60_n360#" 0.1968
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2210.32
+cap "currm_p_4/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3203.86
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/m1_190_n590#" 0.434444
+cap "currm_p_4/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3713.09
+cap "currm_p_4/m1_60_n360#" "currm_p_4/m1_190_n590#" 1.77636e-15
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2769.53
+cap "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/m1_60_n360#" 16.17
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 41.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -32.7176
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 54.0341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 54.0341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 41.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -37.3935
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_190_n590#" 0.0364875
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 882.443
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -35.9524
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_70_460#" 1019.72
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 48.7469
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_60_n360#" -8.48096
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_60_n360#" 20.0159
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_60_n360#" 317.278
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_60_n360#" 298.081
+cap "currm_p_20/m1_60_n360#" "currm_p_20/m1_190_n590#" -4.11758
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1296.02
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 562.608
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_190_n590#" 1003.61
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 891.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 348.42
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1101.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_190_n590#" 21.429
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_190_n590#" 161.867
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_190_n590#" 184.968
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1114.24
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 0.158
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -829.264
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_190_n590#" 1421.1
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" 0.017243
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_60_n360#" 44.1733
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 5422.68
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 556.447
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_190_n590#" 165.444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_60_n360#" 1714.7
+cap "currm_p_20/m1_60_n360#" "currm_p_20/m1_190_n590#" 89.6735
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_190_n590#" 285.024
+cap "currm_p_20/m1_60_n360#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.15155
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_60_n360#" -9.75829
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 694.174
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" -213.193
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_60_n360#" 1858.93
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5216.28
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_190_n590#" 215.863
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -12.1801
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -200.598
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5727.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_17/m1_60_n360#" 584.046
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_17/m1_60_n360#" 153.85
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/a_132_72#" -208.102
+cap "currm_p_17/m1_60_n360#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 46.2428
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 84.2356
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1210.35
+cap "currm_p_17/m1_60_n360#" "currm_ps_0/a_132_72#" -231.596
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 8212.94
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1504.92
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 34.4513
+cap "currm_ps_0/a_132_72#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -9.91204
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 5147.91
+cap "currm_p_17/m1_60_n360#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 20.1015
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_ps_0/a_132_72#" 312.553
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_0/a_132_72#" -471.933
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 605.817
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 116.677
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 87.8723
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_2/m1_80_400#" 0.189806
+cap "currm_p_17/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1617.15
+cap "currm_p_17/m1_60_n360#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 79.4344
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 8679.59
+cap "currm_p_17/m1_60_n360#" "currm_ps_2/m1_80_400#" -0.728397
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 9.93629
+cap "currm_ps_0/a_132_72#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -1.16186
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" -0.748523
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/m1_170_170#" 459.76
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_2/m1_170_170#" -20.8742
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1917.2
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 29.5498
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 152.478
+cap "currm_ps_2/m1_80_400#" "currm_ps_0/a_132_72#" 75.5536
+cap "currm_ps_0/a_132_72#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n29_n200#" 0.668663
+cap "currm_p_14/m1_60_n360#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 11.4686
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 68.2184
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/m1_170_170#" -101.848
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 94.8291
+cap "currm_ps_2/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 642.952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 87.8723
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_2/m1_80_400#" 60.7474
+cap "currm_ps_2/m1_80_400#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 34.7912
+cap "currm_ps_0/a_132_72#" "currm_ps_2/m1_170_170#" 42.4934
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 36.3524
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 9.62399
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_0/a_132_72#" 495.802
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 207.496
+cap "currm_ps_2/m1_80_400#" "currm_p_14/m1_60_n360#" -0.728397
+cap "currm_ps_0/a_132_72#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 408.674
+cap "currm_ps_0/a_132_72#" "currm_ps_2/m1_80_400#" 122.657
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_ps_0/a_132_72#" 0.0948752
+cap "currm_ps_0/m1_70_1220#" "currm_ps_2/m1_170_170#" 252.053
+cap "currm_ps_0/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -4745.18
+cap "currm_ps_2/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 116.048
+cap "currm_ps_2/m1_80_400#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 1.12952
+cap "currm_ps_2/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -2096.61
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/m1_170_170#" 354.252
+cap "currm_ps_0/m1_70_1220#" "currm_ps_2/m1_80_400#" 192.146
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -4714.74
+cap "currm_ps_0/a_132_72#" "currm_ps_2/m1_170_170#" -204.423
+cap "currm_ps_0/m1_70_1220#" "currm_ps_0/a_132_72#" -1304.99
+cap "currm_ps_1/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 3465.23
+cap "currm_ps_5/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1385.29
+cap "currm_ps_1/m1_70_1220#" "currm_ps_5/m1_80_400#" 124.81
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/m1_170_170#" 695.429
+cap "currm_ps_1/a_132_72#" "currm_ps_2/m1_170_170#" 234.741
+cap "currm_ps_1/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 3036.23
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 5876.46
+cap "currm_ps_5/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 379.788
+cap "currm_ps_1/m1_70_1220#" "currm_ps_1/a_132_72#" 2130.94
+cap "currm_ps_5/m1_80_400#" "currm_ps_1/a_132_72#" 285.767
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/m1_170_170#" 1690.91
+cap "currm_ps_1/m1_70_1220#" "currm_ps_2/m1_170_170#" 142.911
+cap "currm_ps_5/m1_80_400#" "currm_ps_2/m1_170_170#" 209.158
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 5729.89
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -117.74
+cap "currm_ps_17/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 116.688
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 112.54
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 57.7443
+cap "currm_ps_17/m1_80_400#" "currm_ps_13/m1_170_170#" -301.209
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/a_132_72#" 129.77
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 324.694
+cap "currm_ps_17/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 269.965
+cap "currm_ps_17/m1_70_1220#" "currm_ps_17/a_132_72#" 149.123
+cap "currm_ps_17/m1_70_1220#" "currm_ps_13/m1_170_170#" 4.83171
+cap "currm_ps_17/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 231.045
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/m1_70_1220#" 40.8343
+cap "currm_ps_17/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -41.5539
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 29.4361
+cap "currm_ps_17/a_132_72#" "currm_ps_13/m1_170_170#" 0.790215
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 73.2532
+cap "currm_ps_17/a_132_72#" "currm_ps_13/m1_170_170#" 22.6686
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -27.2699
+cap "currm_ps_17/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" -894.684
+cap "currm_ps_17/m1_80_400#" "currm_ps_13/m1_170_170#" -350.532
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/a_132_72#" 56.7587
+cap "currm_ps_17/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" 293.857
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" -0.995785
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" 15.3425
+cap "currm_ps_17/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -715.544
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "currm_ps_17/a_132_72#" 0.788409
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" -4330.87
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_17/a_132_72#" 0.0581102
+cap "currm_ps_13/m1_170_170#" "currm_ps_17/a_132_72#" -8.3347
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" 96.8531
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_13/m1_170_170#" 2778.13
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/m1_70_1220#" 412.424
+cap "currm_ps_13/m1_170_170#" "currm_ps_17/m1_80_400#" -218.166
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_17/a_132_72#" 2316.34
+cap "currm_ps_17/m1_70_1220#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 215.276
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 21.2725
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_17/m1_70_1220#" 1.20514
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 16.6664
+cap "currm_ps_17/m1_80_400#" "currm_ps_17/a_132_72#" -7.78787
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_17/m1_80_400#" 484.404
+cap "currm_ps_17/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 10.4764
+cap "currm_ps_17/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 38.6019
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 56.1387
+cap "currm_p_9/m1_60_n360#" "currm_ps_17/m1_70_1220#" 31.1696
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "currm_ps_17/m1_70_1220#" 461.678
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_17/m1_70_1220#" -352.249
+cap "currm_ps_13/m1_170_170#" "currm_ps_17/m1_70_1220#" 2726.03
+cap "currm_ps_13/m1_170_170#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" 1.17224
+cap "currm_ps_17/a_132_72#" "currm_ps_17/m1_70_1220#" 5606.64
+cap "currm_ps_17/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -196.585
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_17/m1_70_1220#" 2503.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 133.868
+cap "currm_ps_11/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n321_n200#" "currm_ps_14/m1_70_1220#" 0.201546
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "currm_p_9/m1_60_n360#" -330.268
+cap "currm_ps_14/m1_70_1220#" "currm_ps_11/m1_80_400#" 7.42026
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_ps_14/m1_70_1220#" -183.95
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3.19353
+cap "currm_ps_14/m1_70_1220#" "currm_p_9/m1_60_n360#" 74.0784
+cap "currm_ps_14/m1_70_1220#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" -95.5306
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 97.2606
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_60_n360#" 486.412
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" 128.597
+cap "currm_ps_14/m1_70_1220#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 0.80678
+cap "currm_ps_14/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 311.585
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_60_n360#" 15.2934
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_14/a_132_72#" 0.0581102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -357.695
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 18.1944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_14/m1_70_1220#" 286.737
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" 16.4485
+cap "currm_ps_14/m1_70_1220#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 180.9
+cap "currm_p_10/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -0.0267631
+cap "currm_p_10/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 41.4975
+cap "currm_p_10/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1663.46
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 146.556
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 11.4711
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 77.5517
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 134.152
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -390.745
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -273.425
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -733.153
+cap "currm_p_10/m1_190_n590#" "currm_p_9/m1_60_n360#" -311.883
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -134.851
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -302.886
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "Disable_FB_B" -0.419996
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -383.884
+cap "currm_p_10/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.843389
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_4/m1_70_460#" 1256.05
+cap "currm_p_10/m1_190_n590#" "currm_p_4/m1_70_460#" -13.1517
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/m1_60_n360#" 67.2389
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_4/m1_70_460#" 633.021
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 905.2
+cap "currm_p_10/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 271.028
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -394.084
+cap "currm_p_9/m1_60_n360#" "currm_p_4/m1_70_460#" 100.403
+cap "currm_p_10/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 23.4631
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 653.223
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_10/m1_190_n590#" 103.604
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 701.847
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_4/m1_70_460#" 421.393
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 171.438
+cap "currm_p_9/m1_60_n360#" "currm_p_10/m1_190_n590#" -269.717
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_4/m1_60_n360#" 2414.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -395.13
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_4/m1_70_460#" 1135.54
+cap "currm_p_7/m1_190_n590#" "currm_p_4/m1_70_460#" 0.434444
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_4/m1_60_n360#" 2733.07
+cap "currm_p_4/m1_60_n360#" "currm_p_4/m1_70_460#" 11.0834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_4/m1_70_460#" 1392.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 17.6769
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 233.453
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -240.072
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 16.933
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -227.061
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_70_460#" 222.392
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 16.933
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 17.6769
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_70_460#" 442.928
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_70_460#" 455.787
+cap "currm_p_19/m1_190_n590#" "currm_p_20/m1_70_460#" 0.452445
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -399.486
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 45.3645
+cap "currm_p_20/m1_60_n360#" "currm_p_20/m1_70_460#" 12.1178
+cap "currm_p_20/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 413.478
+cap "currm_p_20/m1_60_n360#" "currm_p_20/m1_70_460#" 153.873
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -399.486
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -11.7625
+cap "currm_p_19/m1_190_n590#" "currm_p_20/m1_70_460#" -35.0997
+cap "currm_p_19/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 24.662
+cap "currm_p_20/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 760.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 332.46
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 143.311
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 617.931
+cap "currm_p_19/m1_190_n590#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -20.1451
+cap "currm_p_20/m1_70_460#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 494.384
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 174.21
+cap "currm_p_19/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 182.267
+cap "currm_p_20/m1_60_n360#" "currm_p_19/m1_190_n590#" -311.339
+cap "currm_p_20/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 666.66
+cap "currm_p_20/m1_70_460#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 18.6683
+cap "currm_p_20/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1113.45
+cap "currm_p_20/m1_70_460#" "currm_p_20/m1_60_n360#" 106.551
+cap "currm_p_20/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1416.02
+cap "currm_p_20/m1_70_460#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -717.095
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 288.672
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "currm_p_20/m1_60_n360#" -305.52
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 446.981
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1663.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -399.486
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -8.08915
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1774.46
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 357.438
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" -0.21578
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_60_n360#" 150.136
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 340.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -356.863
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1835.35
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" -6.4358
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1997.35
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "currm_p_17/m1_60_n360#" -299.626
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 0.477296
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_17/m1_60_n360#" 28.7996
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 0.803425
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_2/a_132_72#" 0.0567692
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 1.85239
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 315.177
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 36.6553
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 1.8831
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -125.545
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_17/m1_60_n360#" 566.012
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" 484.113
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 94.2694
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2188.65
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_17/m1_60_n360#" 1170.17
+cap "currm_p_17/m1_60_n360#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 117.483
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2396.81
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 5451.67
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 11.6279
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 268.023
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/m1_80_400#" -217.624
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 13.6178
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" -7.73097
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_14/m1_60_n360#" 11.2283
+cap "currm_ps_2/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 46.0737
+cap "currm_ps_2/a_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 30.1652
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 0.8085
+cap "currm_ps_2/a_132_72#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.0567692
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 2.19778
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_2/m1_80_400#" 52.0894
+cap "currm_ps_3/m1_170_170#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -39.7085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 31.7
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_10/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.133904
+cap "currm_ps_2/a_132_72#" "currm_ps_2/m1_80_400#" -18.1961
+cap "currm_ps_2/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 335.59
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/a_132_72#" -16.3288
+cap "currm_ps_3/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 63.1227
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 36.6553
+cap "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 286.199
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 910.59
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_2/a_132_72#" 216.734
+cap "currm_ps_3/m1_170_170#" "currm_ps_10/m1_70_1220#" -4.42382
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_10/m1_70_1220#" -1652.47
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/a_132_72#" 108.45
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/a_132_72#" -5.37381
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/m1_80_400#" -588.927
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/a_132_72#" -1612.99
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/m1_80_400#" -1570.49
+cap "currm_ps_10/m1_70_1220#" "currm_ps_2/a_132_72#" -1152.18
+cap "currm_ps_10/m1_70_1220#" "currm_ps_2/m1_80_400#" 59.8204
+cap "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "currm_ps_2/a_132_72#" 0.118393
+cap "currm_ps_3/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -1144.58
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/a_132_72#" 37.0524
+cap "currm_ps_2/m1_70_1220#" "currm_ps_2/a_132_72#" 1007.99
+cap "currm_ps_3/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 710.654
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/m1_70_1220#" 2322.77
+cap "currm_ps_5/m1_80_400#" "currm_ps_2/a_132_72#" 133.556
+cap "currm_ps_2/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2951.62
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_5/m1_80_400#" 392.716
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -130.151
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/m1_70_1220#" 64.5202
+cap "currm_ps_3/m1_170_170#" "currm_ps_5/m1_80_400#" -120.086
+cap "currm_ps_5/m1_80_400#" "currm_ps_2/m1_70_1220#" 23.2185
+cap "currm_ps_3/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 849.966
+cap "currm_ps_2/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1094.52
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/a_132_72#" 2966.83
+cap "currm_ps_5/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1016.92
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n2820_6580#" -163520 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -205395012 -10832 -1589200 -800 -6015200 0 -29813524 -5162 0 0 0 0
+merge "m1_n2820_6580#" "m1_n4170_6580#"
+merge "m1_n4170_6580#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n2320_5790#"
+merge "m1_n2320_5790#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n2790_6050#"
+merge "m1_n2790_6050#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n3660_5770#"
+merge "m1_n3660_5770#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n4140_6050#"
+merge "m1_n4140_6050#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n5000_5770#"
+merge "m1_n5000_5770#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n2320_4140#"
+merge "m1_n2320_4140#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n2810_4410#"
+merge "m1_n2810_4410#" "m1_n3660_4140#"
+merge "m1_n3660_4140#" "m1_n2790_4940#"
+merge "m1_n2790_4940#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n4160_4410#"
+merge "m1_n4160_4410#" "m1_n4150_4940#"
+merge "m1_n4150_4940#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n5000_4150#"
+merge "m1_n5000_4150#" "currm_p_0/m1_190_n590#"
+merge "currm_p_0/m1_190_n590#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "VM16D"
+merge "VM16D" "m4_210_2860#"
+merge "m4_210_2860#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "m4_670_1940#"
+merge "m4_670_1940#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_0/m1_n50_n680#"
+merge "currm_p_0/m1_n50_n680#" "m1_n110_2770#"
+merge "m1_n110_2770#" "m1_n120_3300#"
+merge "m1_n120_3300#" "currm_p_2/m1_n50_n680#"
+merge "currm_p_2/m1_n50_n680#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n1510_2770#"
+merge "m1_n1510_2770#" "m1_n1520_3300#"
+merge "m1_n1520_3300#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n2860_2770#"
+merge "m1_n2860_2770#" "m1_n2890_3300#"
+merge "m1_n2890_3300#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n4100_2770#"
+merge "m1_n4100_2770#" "m1_n4160_3300#"
+merge "currm_ps_7/VSUBS" "currm_ps_4/VSUBS" -87001 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -16090832 -11628 52686824 -2908 -155385400 -27540 0 0 0 0 3883200 -12170 0 0
+merge "currm_ps_4/VSUBS" "currm_ps_3/VSUBS"
+merge "currm_ps_3/VSUBS" "sky130_fd_pr__pfet_01v8_U47ZGH_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/VSUBS" "currm_p_13/VSUBS"
+merge "currm_p_13/VSUBS" "currm_p_18/VSUBS"
+merge "currm_p_18/VSUBS" "currm_p_19/VSUBS"
+merge "currm_p_19/VSUBS" "currm_p_5/VSUBS"
+merge "currm_p_5/VSUBS" "currm_p_7/VSUBS"
+merge "currm_p_7/VSUBS" "currm_p_10/VSUBS"
+merge "currm_p_10/VSUBS" "sky130_fd_pr__pfet_01v8_U47ZGH_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/VSUBS" "currm_ps_11/VSUBS"
+merge "currm_ps_11/VSUBS" "currm_ps_12/VSUBS"
+merge "currm_ps_12/VSUBS" "currm_ps_13/VSUBS"
+merge "currm_ps_13/VSUBS" "currm_ps_8/VSUBS"
+merge "currm_ps_8/VSUBS" "currm_ps_5/VSUBS"
+merge "currm_ps_5/VSUBS" "currm_ps_2/VSUBS"
+merge "currm_ps_2/VSUBS" "currm_ps_10/VSUBS"
+merge "currm_ps_10/VSUBS" "currm_p_14/VSUBS"
+merge "currm_p_14/VSUBS" "currm_p_17/VSUBS"
+merge "currm_p_17/VSUBS" "currm_p_20/VSUBS"
+merge "currm_p_20/VSUBS" "currm_p_4/VSUBS"
+merge "currm_p_4/VSUBS" "currm_p_6/VSUBS"
+merge "currm_p_6/VSUBS" "currm_p_9/VSUBS"
+merge "currm_p_9/VSUBS" "currm_ps_18/VSUBS"
+merge "currm_ps_18/VSUBS" "currm_ps_14/VSUBS"
+merge "currm_ps_14/VSUBS" "currm_ps_16/VSUBS"
+merge "currm_ps_16/VSUBS" "currm_ps_17/VSUBS"
+merge "currm_ps_17/VSUBS" "currm_ps_9/VSUBS"
+merge "currm_ps_9/VSUBS" "currm_ps_6/VSUBS"
+merge "currm_ps_6/VSUBS" "currm_ps_1/VSUBS"
+merge "currm_ps_1/VSUBS" "currm_ps_0/VSUBS"
+merge "currm_ps_0/VSUBS" "currm_p_15/VSUBS"
+merge "currm_p_15/VSUBS" "currm_p_16/VSUBS"
+merge "currm_p_16/VSUBS" "currm_p_21/VSUBS"
+merge "currm_p_21/VSUBS" "currm_p_12/VSUBS"
+merge "currm_p_12/VSUBS" "currm_p_1/VSUBS"
+merge "currm_p_1/VSUBS" "currm_p_0/VSUBS"
+merge "currm_p_0/VSUBS" "currm_p_2/VSUBS"
+merge "currm_p_2/VSUBS" "currm_p_3/VSUBS"
+merge "currm_p_3/VSUBS" "currm_p_8/VSUBS"
+merge "currm_p_8/VSUBS" "currm_p_11/VSUBS"
+merge "currm_p_11/VSUBS" "currm_ps_19/VSUBS"
+merge "currm_ps_19/VSUBS" "currm_ps_15/VSUBS"
+merge "currm_ps_15/VSUBS" "currm_ps_20/VSUBS"
+merge "currm_ps_20/VSUBS" "currm_ps_21/VSUBS"
+merge "currm_ps_21/VSUBS" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n289_n374#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n289_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#" "currm_n_42/VSUBS"
+merge "currm_n_42/VSUBS" "currm_n_42/m1_390_n660#"
+merge "currm_n_42/m1_390_n660#" "currm_n_39/m1_390_n660#"
+merge "currm_n_39/m1_390_n660#" "currm_n_40/VSUBS"
+merge "currm_n_40/VSUBS" "currm_n_40/m1_390_n660#"
+merge "currm_n_40/m1_390_n660#" "currm_n_39/VSUBS"
+merge "currm_n_39/VSUBS" "currm_n_41/m1_390_n660#"
+merge "currm_n_41/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_43/m1_390_n660#"
+merge "currm_n_43/m1_390_n660#" "currm_n_41/VSUBS"
+merge "currm_n_41/VSUBS" "currm_n_38/VSUBS"
+merge "currm_n_38/VSUBS" "currm_n_38/m1_390_n660#"
+merge "currm_n_38/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS" "currm_n_43/VSUBS"
+merge "currm_n_43/VSUBS" "currm_n_10/m1_390_n660#"
+merge "currm_n_10/m1_390_n660#" "currm_n_9/VSUBS"
+merge "currm_n_9/VSUBS" "currm_n_9/m1_390_n660#"
+merge "currm_n_9/m1_390_n660#" "currm_n_11/VSUBS"
+merge "currm_n_11/VSUBS" "currm_n_11/m1_390_n660#"
+merge "currm_n_11/m1_390_n660#" "currm_n_10/VSUBS"
+merge "currm_n_10/VSUBS" "currm_n_8/m1_390_n660#"
+merge "currm_n_8/m1_390_n660#" "currm_n_8/VSUBS"
+merge "currm_n_8/VSUBS" "currm_n_7/VSUBS"
+merge "currm_n_7/VSUBS" "currm_n_7/m1_390_n660#"
+merge "currm_n_7/m1_390_n660#" "currm_n_6/m1_390_n660#"
+merge "currm_n_6/m1_390_n660#" "currm_n_6/VSUBS"
+merge "currm_n_6/VSUBS" "currm_n_4/m1_390_n660#"
+merge "currm_n_4/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS" "currm_n_4/VSUBS"
+merge "currm_n_4/VSUBS" "currm_n_2/VSUBS"
+merge "currm_n_2/VSUBS" "currm_n_2/m1_390_n660#"
+merge "currm_n_2/m1_390_n660#" "currm_n_1/VSUBS"
+merge "currm_n_1/VSUBS" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#"
+merge "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_0/VSUBS"
+merge "currm_n_0/VSUBS" "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#"
+merge "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "li_850_1310#"
+merge "li_850_1310#" "currm_n_3/m1_390_n660#"
+merge "currm_n_3/m1_390_n660#" "currm_n_5/VSUBS"
+merge "currm_n_5/VSUBS" "currm_n_5/m1_390_n660#"
+merge "currm_n_5/m1_390_n660#" "currm_n_3/VSUBS"
+merge "currm_n_3/VSUBS" "currm_n_18/VSUBS"
+merge "currm_n_18/VSUBS" "currm_n_18/m1_390_n660#"
+merge "currm_n_18/m1_390_n660#" "currm_n_20/VSUBS"
+merge "currm_n_20/VSUBS" "currm_n_20/m1_390_n660#"
+merge "currm_n_20/m1_390_n660#" "currm_n_17/VSUBS"
+merge "currm_n_17/VSUBS" "currm_n_17/m1_390_n660#"
+merge "currm_n_17/m1_390_n660#" "currm_n_19/VSUBS"
+merge "currm_n_19/VSUBS" "currm_n_19/m1_390_n660#"
+merge "currm_n_19/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS" "currm_n_16/VSUBS"
+merge "currm_n_16/VSUBS" "currm_n_16/m1_390_n660#"
+merge "currm_n_16/m1_390_n660#" "currm_n_15/VSUBS"
+merge "currm_n_15/VSUBS" "currm_n_15/m1_390_n660#"
+merge "currm_n_15/m1_390_n660#" "currm_n_33/VSUBS"
+merge "currm_n_33/VSUBS" "currm_n_33/m1_390_n660#"
+merge "currm_n_33/m1_390_n660#" "currm_n_26/m1_390_n660#"
+merge "currm_n_26/m1_390_n660#" "currm_n_26/VSUBS"
+merge "currm_n_26/VSUBS" "currm_n_29/VSUBS"
+merge "currm_n_29/VSUBS" "currm_n_29/m1_390_n660#"
+merge "currm_n_29/m1_390_n660#" "currm_n_30/VSUBS"
+merge "currm_n_30/VSUBS" "currm_n_30/m1_390_n660#"
+merge "currm_n_30/m1_390_n660#" "currm_n_28/VSUBS"
+merge "currm_n_28/VSUBS" "currm_n_28/m1_390_n660#"
+merge "currm_n_28/m1_390_n660#" "currm_n_27/VSUBS"
+merge "currm_n_27/VSUBS" "currm_n_27/m1_390_n660#"
+merge "currm_n_27/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/VSUBS" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/m4_n3351_n2100#" "currm_n_37/m1_390_n660#"
+merge "currm_n_37/m1_390_n660#" "currm_n_32/VSUBS"
+merge "currm_n_32/VSUBS" "currm_n_32/m1_390_n660#"
+merge "currm_n_32/m1_390_n660#" "currm_n_37/VSUBS"
+merge "currm_n_37/VSUBS" "currm_n_36/VSUBS"
+merge "currm_n_36/VSUBS" "currm_n_36/m1_390_n660#"
+merge "currm_n_36/m1_390_n660#" "currm_n_35/m1_390_n660#"
+merge "currm_n_35/m1_390_n660#" "currm_n_35/VSUBS"
+merge "currm_n_35/VSUBS" "currm_n_24/m1_390_n660#"
+merge "currm_n_24/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n125_n200#" "currm_n_24/VSUBS"
+merge "currm_n_24/VSUBS" "currm_n_13/m1_390_n660#"
+merge "currm_n_13/m1_390_n660#" "currm_n_12/VSUBS"
+merge "currm_n_12/VSUBS" "currm_n_12/m1_390_n660#"
+merge "currm_n_12/m1_390_n660#" "currm_n_14/VSUBS"
+merge "currm_n_14/VSUBS" "currm_n_14/m1_390_n660#"
+merge "currm_n_14/m1_390_n660#" "currm_n_13/VSUBS"
+merge "currm_n_13/VSUBS" "currm_n_45/VSUBS"
+merge "currm_n_45/VSUBS" "currm_n_45/m1_390_n660#"
+merge "currm_n_45/m1_390_n660#" "currm_n_44/m1_390_n660#"
+merge "currm_n_44/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/VSUBS" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_47/VSUBS"
+merge "currm_n_47/VSUBS" "currm_n_47/m1_390_n660#"
+merge "currm_n_47/m1_390_n660#" "currm_n_44/VSUBS"
+merge "currm_n_44/VSUBS" "currm_n_46/m1_390_n660#"
+merge "currm_n_46/m1_390_n660#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/VSUBS" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n175_n274#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n175_n274#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_15_n100#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_15_n100#" "li_n630_n1600#"
+merge "li_n630_n1600#" "currm_n_46/VSUBS"
+merge "currm_n_46/VSUBS" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "currm_n_22/VSUBS"
+merge "currm_n_22/VSUBS" "currm_n_23/VSUBS"
+merge "currm_n_23/VSUBS" "currm_n_21/VSUBS"
+merge "currm_n_21/VSUBS" "currm_n_25/VSUBS"
+merge "currm_n_25/VSUBS" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/VSUBS" "currm_n_49/VSUBS"
+merge "currm_n_49/VSUBS" "currm_n_31/VSUBS"
+merge "currm_n_31/VSUBS" "currm_n_34/VSUBS"
+merge "currm_n_34/VSUBS" "currm_n_48/VSUBS"
+merge "currm_n_48/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "li_n110_n1590#"
+merge "li_n110_n1590#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_n_22/m1_390_n660#"
+merge "currm_n_22/m1_390_n660#" "currm_n_23/m1_390_n660#"
+merge "currm_n_23/m1_390_n660#" "currm_n_21/m1_390_n660#"
+merge "currm_n_21/m1_390_n660#" "currm_n_25/m1_390_n660#"
+merge "currm_n_25/m1_390_n660#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n125_n200#" "currm_n_49/m1_390_n660#"
+merge "currm_n_49/m1_390_n660#" "currm_n_31/m1_390_n660#"
+merge "currm_n_31/m1_390_n660#" "currm_n_34/m1_390_n660#"
+merge "currm_n_34/m1_390_n660#" "currm_n_48/m1_390_n660#"
+merge "currm_n_48/m1_390_n660#" "VN"
+merge "currm_p_2/m1_190_n590#" "currm_n_9/a_122_62#" 214.571 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21498612 -16324 -25626180 -1460 0 0 0 0 0 0 0 0
+merge "currm_n_9/a_122_62#" "m1_4960_1180#"
+merge "m1_4960_1180#" "m1_4450_1180#"
+merge "m1_4450_1180#" "currm_n_5/m1_164_390#"
+merge "currm_n_5/m1_164_390#" "currm_n_5/a_122_62#"
+merge "currm_n_5/a_122_62#" "m1_n170_1370#"
+merge "m1_n170_1370#" "m1_n400_1190#"
+merge "m1_n400_1190#" "currm_n_11/a_122_62#"
+merge "currm_n_11/a_122_62#" "m1_7800_n440#"
+merge "m1_7800_n440#" "currm_n_10/a_122_62#"
+merge "currm_n_10/a_122_62#" "currm_n_12/a_122_62#"
+merge "currm_n_12/a_122_62#" "m1_6150_n440#"
+merge "m1_6150_n440#" "currm_n_14/a_122_62#"
+merge "currm_n_14/a_122_62#" "currm_n_13/a_122_62#"
+merge "currm_n_13/a_122_62#" "m1_6180_n950#"
+merge "m1_6180_n950#" "currm_n_8/a_122_62#"
+merge "currm_n_8/a_122_62#" "currm_n_7/a_122_62#"
+merge "currm_n_7/a_122_62#" "m1_4960_670#"
+merge "m1_4960_670#" "currm_n_6/a_122_62#"
+merge "currm_n_6/a_122_62#" "m1_4460_670#"
+merge "currm_p_12/m1_190_n590#" "currm_n_4/m1_164_390#" 23243.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54847772 -16764 -22029800 -1300 0 0 0 0 0 0 0 0
+merge "currm_n_4/m1_164_390#" "m2_3320_1130#"
+merge "m2_3320_1130#" "currm_n_4/a_122_62#"
+merge "currm_n_4/a_122_62#" "m1_3120_1200#"
+merge "m1_3120_1200#" "m1_3040_1180#"
+merge "m1_3040_1180#" "currm_n_18/a_122_62#"
+merge "currm_n_18/a_122_62#" "m1_n1280_1370#"
+merge "m1_n1280_1370#" "m1_n5100_1180#"
+merge "m1_n5100_1180#" "currm_n_20/a_122_62#"
+merge "currm_n_20/a_122_62#" "currm_n_17/a_122_62#"
+merge "currm_n_17/a_122_62#" "currm_n_19/a_122_62#"
+merge "currm_n_19/a_122_62#" "currm_n_16/a_122_62#"
+merge "currm_n_16/a_122_62#" "m1_n3480_n440#"
+merge "m1_n3480_n440#" "currm_n_15/a_122_62#"
+merge "currm_n_15/a_122_62#" "m1_n5100_670#"
+merge "m1_n5100_670#" "currm_n_22/a_122_62#"
+merge "currm_n_22/a_122_62#" "m1_n5090_n440#"
+merge "m1_n5090_n440#" "currm_n_23/a_122_62#"
+merge "currm_n_23/a_122_62#" "currm_n_21/a_122_62#"
+merge "currm_n_21/a_122_62#" "m1_n5090_n950#"
+merge "currm_ps_7/a_132_72#" "m1_11200_6580#" -30499.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -97882200 -10424 112147340 -27540 -2332600 0 0 0 0 0 0 0
+merge "m1_11200_6580#" "m1_10120_6580#"
+merge "m1_10120_6580#" "currm_ps_4/a_132_72#"
+merge "currm_ps_4/a_132_72#" "m1_11990_5780#"
+merge "m1_11990_5780#" "m1_11230_6050#"
+merge "m1_11230_6050#" "currm_ps_3/a_132_72#"
+merge "currm_ps_3/a_132_72#" "m1_10130_6050#"
+merge "m1_10130_6050#" "m1_10900_5780#"
+merge "m1_10900_5780#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_63_n200#" "m1_9810_5770#"
+merge "m1_9810_5770#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n129_n200#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#"
+merge "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/a_n129_n297#" "m1_8350_5220#"
+merge "m1_8350_5220#" "currm_p_13/m1_190_n590#"
+merge "currm_p_13/m1_190_n590#" "currm_p_18/m1_190_n590#"
+merge "currm_p_18/m1_190_n590#" "currm_p_19/m1_190_n590#"
+merge "currm_p_19/m1_190_n590#" "currm_ps_8/a_132_72#"
+merge "currm_ps_8/a_132_72#" "currm_ps_5/a_132_72#"
+merge "currm_ps_5/a_132_72#" "m1_11990_4150#"
+merge "m1_11990_4150#" "m1_11220_4410#"
+merge "m1_11220_4410#" "m1_11230_4940#"
+merge "m1_11230_4940#" "currm_ps_2/a_132_72#"
+merge "currm_ps_2/a_132_72#" "m1_10120_4410#"
+merge "m1_10120_4410#" "m1_10120_4940#"
+merge "m1_10120_4940#" "m1_10900_4150#"
+merge "m1_10900_4150#" "currm_ps_10/m1_170_170#"
+merge "currm_ps_10/m1_170_170#" "currm_ps_9/a_132_72#"
+merge "currm_ps_9/a_132_72#" "m1_9810_4150#"
+merge "m1_9810_4150#" "m1_8720_4120#"
+merge "m1_8720_4120#" "currm_ps_6/a_132_72#"
+merge "currm_ps_6/a_132_72#" "m1_11220_2770#"
+merge "m1_11220_2770#" "m1_11190_3300#"
+merge "m1_11190_3300#" "currm_ps_1/a_132_72#"
+merge "currm_ps_1/a_132_72#" "m1_10140_2770#"
+merge "m1_10140_2770#" "m1_10140_3300#"
+merge "m1_10140_3300#" "currm_ps_0/a_132_72#"
+merge "currm_ps_0/a_132_72#" "m1_9030_2770#"
+merge "m1_9030_2770#" "m1_9040_3300#"
+merge "m1_9040_3300#" "currm_ps_10/a_132_72#"
+merge "currm_ps_10/a_132_72#" "currm_p_14/m1_190_n590#"
+merge "currm_p_14/m1_190_n590#" "currm_p_17/m1_190_n590#"
+merge "currm_p_17/m1_190_n590#" "currm_p_20/m1_190_n590#"
+merge "currm_p_20/m1_190_n590#" "currm_p_15/m1_190_n590#"
+merge "currm_p_15/m1_190_n590#" "currm_p_16/m1_190_n590#"
+merge "currm_p_16/m1_190_n590#" "currm_p_21/m1_190_n590#"
+merge "currm_p_21/m1_190_n590#" "currm_n_43/m1_164_390#"
+merge "currm_n_43/m1_164_390#" "currm_n_9/m1_164_390#"
+merge "currm_n_9/m1_164_390#" "currm_n_11/m1_164_390#"
+merge "currm_n_11/m1_164_390#" "currm_n_10/m1_164_390#"
+merge "currm_n_10/m1_164_390#" "currm_n_8/m1_164_390#"
+merge "currm_n_8/m1_164_390#" "currm_n_7/m1_164_390#"
+merge "currm_n_7/m1_164_390#" "currm_n_6/m1_164_390#"
+merge "currm_n_6/m1_164_390#" "currm_n_12/m1_164_390#"
+merge "currm_n_12/m1_164_390#" "currm_n_14/m1_164_390#"
+merge "currm_n_14/m1_164_390#" "currm_n_13/m1_164_390#"
+merge "currm_n_13/m1_164_390#" "VM34D"
+merge "currm_n_43/a_122_62#" "currm_n_2/a_122_62#" -21838.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4651204 -7508 -18299000 -3180 -8383750 0 -9486541 -7604 0 0 0 0
+merge "currm_n_2/a_122_62#" "currm_n_1/a_122_62#"
+merge "currm_n_1/a_122_62#" "currm_n_0/a_122_62#"
+merge "currm_n_0/a_122_62#" "currm_n_3/a_122_62#"
+merge "currm_n_3/a_122_62#" "currm_n_33/a_122_62#"
+merge "currm_n_33/a_122_62#" "m1_n5490_1180#"
+merge "m1_n5490_1180#" "currm_n_2/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_2/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_1/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_1/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_0/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_0/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "m1_2510_n430#"
+merge "m1_2510_n430#" "m1_1810_n430#"
+merge "m1_1810_n430#" "m1_1980_n440#"
+merge "m1_1980_n440#" "currm_n_3/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_3/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_45/a_122_62#"
+merge "currm_n_45/a_122_62#" "m1_1110_n420#"
+merge "m1_1110_n420#" "m1_410_n430#"
+merge "m1_410_n430#" "m1_570_n440#"
+merge "m1_570_n440#" "currm_n_47/a_122_62#"
+merge "currm_n_47/a_122_62#" "m1_1980_n950#"
+merge "m1_1980_n950#" "currm_n_44/a_122_62#"
+merge "currm_n_44/a_122_62#" "m1_1290_n950#"
+merge "m1_1290_n950#" "currm_n_46/a_122_62#"
+merge "currm_n_46/a_122_62#" "m1_560_n950#"
+merge "m1_560_n950#" "currm_n_45/m1_164_390#"
+merge "currm_n_45/m1_164_390#" "currm_n_44/m1_164_390#"
+merge "currm_n_44/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_47/m1_164_390#"
+merge "currm_n_47/m1_164_390#" "currm_n_46/m1_164_390#"
+merge "currm_n_46/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "I_Bias"
+merge "I_Bias" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "m1_n250_n1430#"
+merge "currm_n_42/m1_68_150#" "currm_n_40/m1_68_150#" 42517.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 123385280 -11432 0 0 0 0 0 0 0 0
+merge "currm_n_40/m1_68_150#" "currm_n_39/m1_68_150#"
+merge "currm_n_39/m1_68_150#" "currm_n_41/m1_68_150#"
+merge "currm_n_41/m1_68_150#" "currm_n_38/m1_68_150#"
+merge "currm_n_38/m1_68_150#" "currm_n_32/m1_68_150#"
+merge "currm_n_32/m1_68_150#" "currm_n_37/m1_68_150#"
+merge "currm_n_37/m1_68_150#" "currm_n_36/m1_68_150#"
+merge "currm_n_36/m1_68_150#" "currm_n_35/m1_68_150#"
+merge "currm_n_35/m1_68_150#" "m2_9090_740#"
+merge "currm_ps_2/m1_70_1220#" "currm_ps_5/w_132_600#" -140809 0 0 0 0 -32425152 -109720 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42361760 -2460 -47174700 -59840 2611100 0 2602476 0 2470804 -10898 0 0
+merge "currm_ps_5/w_132_600#" "currm_ps_10/m1_70_1220#"
+merge "currm_ps_10/m1_70_1220#" "currm_ps_10/w_132_600#"
+merge "currm_ps_10/w_132_600#" "currm_p_20/m1_70_460#"
+merge "currm_p_20/m1_70_460#" "currm_p_4/m1_70_460#"
+merge "currm_p_4/m1_70_460#" "currm_ps_14/m1_70_1220#"
+merge "currm_ps_14/m1_70_1220#" "currm_ps_18/w_132_600#"
+merge "currm_ps_18/w_132_600#" "currm_ps_14/w_132_600#"
+merge "currm_ps_14/w_132_600#" "currm_ps_16/w_132_600#"
+merge "currm_ps_16/w_132_600#" "currm_ps_17/m1_70_1220#"
+merge "currm_ps_17/m1_70_1220#" "currm_ps_7/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_7/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_6/w_132_600#"
+merge "currm_ps_6/w_132_600#" "currm_ps_4/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_4/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/w_132_600#"
+merge "currm_ps_0/w_132_600#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_19/w_132_600#"
+merge "currm_ps_19/w_132_600#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_11/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_11/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_15/w_132_600#"
+merge "currm_ps_15/w_132_600#" "currm_ps_20/w_132_600#"
+merge "currm_ps_20/w_132_600#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_1/c2_n3251_n2000#" "currm_ps_7/w_132_72#"
+merge "currm_ps_7/w_132_72#" "currm_ps_8/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_8/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_4/w_132_72#"
+merge "currm_ps_4/w_132_72#" "currm_ps_5/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_5/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_3/w_132_72#"
+merge "currm_ps_3/w_132_72#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_159_n200#" "currm_ps_2/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_2/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_10/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n221_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/w_n359_n419#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_ps_12/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_12/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_159_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n221_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n221_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/w_n359_n419#" "currm_ps_18/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_18/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_14/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_14/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_11/w_132_72#"
+merge "currm_ps_11/w_132_72#" "currm_ps_12/w_132_72#"
+merge "currm_ps_12/w_132_72#" "currm_ps_13/w_132_72#"
+merge "currm_ps_13/w_132_72#" "currm_ps_1/m1_70_1220#"
+merge "currm_ps_1/m1_70_1220#" "currm_ps_8/w_132_72#"
+merge "currm_ps_8/w_132_72#" "currm_ps_0/m1_70_1220#"
+merge "currm_ps_0/m1_70_1220#" "currm_ps_5/w_132_72#"
+merge "currm_ps_5/w_132_72#" "currm_ps_2/w_132_72#"
+merge "currm_ps_2/w_132_72#" "currm_ps_10/w_132_72#"
+merge "currm_ps_10/w_132_72#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_21/m1_70_460#"
+merge "currm_p_21/m1_70_460#" "currm_p_12/m1_70_460#"
+merge "currm_p_12/m1_70_460#" "currm_p_1/m1_70_460#"
+merge "currm_p_1/m1_70_460#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "w_n1290_4230#"
+merge "w_n1290_4230#" "currm_ps_15/m1_70_1220#"
+merge "currm_ps_15/m1_70_1220#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_ps_16/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_16/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_ps_18/w_132_72#"
+merge "currm_ps_18/w_132_72#" "currm_ps_14/w_132_72#"
+merge "currm_ps_14/w_132_72#" "currm_ps_16/w_132_72#"
+merge "currm_ps_16/w_132_72#" "currm_ps_17/w_132_72#"
+merge "currm_ps_17/w_132_72#" "currm_ps_9/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_9/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_21/m1_70_1220#"
+merge "currm_ps_21/m1_70_1220#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "VP"
+merge "VP" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "li_n640_n960#"
+merge "li_n640_n960#" "currm_ps_6/w_132_72#"
+merge "currm_ps_6/w_132_72#" "currm_ps_1/w_132_72#"
+merge "currm_ps_1/w_132_72#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_0/w_132_72#"
+merge "currm_ps_0/w_132_72#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_19/w_132_72#"
+merge "currm_ps_19/w_132_72#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_20/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_20/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_15/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_15/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_15/w_132_72#"
+merge "currm_ps_15/w_132_72#" "currm_ps_20/w_132_72#"
+merge "currm_ps_20/w_132_72#" "currm_ps_21/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_n_42/a_122_62#" "currm_ps_19/m1_170_170#" 31791.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53382064 -42356 11665380 -840 0 0 0 0 0 0 0 0
+merge "currm_ps_19/m1_170_170#" "currm_n_42/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_42/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_25/m1_164_390#"
+merge "currm_n_25/m1_164_390#" "VM31D"
+merge "VM31D" "currm_n_25/a_122_62#"
+merge "currm_n_25/a_122_62#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n33_n200#" "m1_n6220_n640#"
+merge "m1_n6220_n640#" "m1_9390_1180#"
+merge "m1_9390_1180#" "currm_n_40/a_122_62#"
+merge "currm_n_40/a_122_62#" "currm_n_39/a_122_62#"
+merge "currm_n_39/a_122_62#" "currm_n_41/a_122_62#"
+merge "currm_n_41/a_122_62#" "currm_n_38/a_122_62#"
+merge "currm_n_38/a_122_62#" "m1_9390_670#"
+merge "m1_9390_670#" "currm_n_32/a_122_62#"
+merge "currm_n_32/a_122_62#" "m1_9760_n440#"
+merge "m1_9760_n440#" "currm_n_37/a_122_62#"
+merge "currm_n_37/a_122_62#" "currm_n_36/a_122_62#"
+merge "currm_n_36/a_122_62#" "currm_n_35/a_122_62#"
+merge "currm_n_35/a_122_62#" "m1_9750_n950#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_111_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" 14735.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40896640 -33954 -5516600 -2800 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n81_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_111_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n81_231#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_1/a_n177_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_15_n297#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n177_n297#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "m1_n710_n1640#"
+merge "m1_n710_n1640#" "Disable_FB_B"
+merge "currm_n_26/m1_68_150#" "currm_n_29/m1_68_150#" 3198.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14110440 -11112 0 0 0 0 0 0 0 0
+merge "currm_n_29/m1_68_150#" "currm_n_30/m1_68_150#"
+merge "currm_n_30/m1_68_150#" "currm_n_28/m1_68_150#"
+merge "currm_n_28/m1_68_150#" "currm_n_27/m1_68_150#"
+merge "currm_n_27/m1_68_150#" "currm_n_49/m1_68_150#"
+merge "currm_n_49/m1_68_150#" "currm_n_31/m1_68_150#"
+merge "currm_n_31/m1_68_150#" "currm_n_34/m1_68_150#"
+merge "currm_n_34/m1_68_150#" "currm_n_48/m1_68_150#"
+merge "currm_n_48/m1_68_150#" "m2_n9490_740#"
+merge "currm_ps_7/m1_80_400#" "currm_ps_4/m1_80_400#" 22284.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75447500 -16080 0 0 0 0 0 0 0 0
+merge "currm_ps_4/m1_80_400#" "currm_ps_3/m1_80_400#"
+merge "currm_ps_3/m1_80_400#" "currm_ps_8/m1_80_400#"
+merge "currm_ps_8/m1_80_400#" "currm_ps_5/m1_80_400#"
+merge "currm_ps_5/m1_80_400#" "currm_ps_2/m1_80_400#"
+merge "currm_ps_2/m1_80_400#" "currm_ps_9/m1_80_400#"
+merge "currm_ps_9/m1_80_400#" "currm_ps_6/m1_80_400#"
+merge "currm_ps_6/m1_80_400#" "currm_ps_1/m1_80_400#"
+merge "currm_ps_1/m1_80_400#" "m2_9370_4730#"
+merge "currm_p_5/m1_190_n590#" "m1_n8730_6580#" -25133.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -103206440 -12004 130896260 -20360 0 0 0 0 0 0 0 0
+merge "m1_n8730_6580#" "currm_p_7/m1_190_n590#"
+merge "currm_p_7/m1_190_n590#" "currm_p_10/m1_190_n590#"
+merge "currm_p_10/m1_190_n590#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_U47ZGH_0/a_n129_n200#" "currm_ps_11/a_132_72#"
+merge "currm_ps_11/a_132_72#" "currm_ps_12/a_132_72#"
+merge "currm_ps_12/a_132_72#" "currm_ps_13/a_132_72#"
+merge "currm_ps_13/a_132_72#" "m1_n8700_6050#"
+merge "m1_n8700_6050#" "currm_p_4/m1_190_n590#"
+merge "currm_p_4/m1_190_n590#" "m1_n6860_5760#"
+merge "m1_n6860_5760#" "m1_n9040_5760#"
+merge "m1_n9040_5760#" "m1_n7950_5760#"
+merge "m1_n7950_5760#" "currm_p_6/m1_190_n590#"
+merge "currm_p_6/m1_190_n590#" "currm_p_9/m1_190_n590#"
+merge "currm_p_9/m1_190_n590#" "currm_ps_18/m1_170_170#"
+merge "currm_ps_18/m1_170_170#" "currm_p_3/m1_190_n590#"
+merge "currm_p_3/m1_190_n590#" "currm_p_8/m1_190_n590#"
+merge "currm_p_8/m1_190_n590#" "currm_p_11/m1_190_n590#"
+merge "currm_p_11/m1_190_n590#" "currm_n_18/m1_164_390#"
+merge "currm_n_18/m1_164_390#" "currm_n_20/m1_164_390#"
+merge "currm_n_20/m1_164_390#" "currm_n_17/m1_164_390#"
+merge "currm_n_17/m1_164_390#" "currm_n_19/m1_164_390#"
+merge "currm_n_19/m1_164_390#" "currm_n_16/m1_164_390#"
+merge "currm_n_16/m1_164_390#" "currm_n_15/m1_164_390#"
+merge "currm_n_15/m1_164_390#" "currm_n_33/m1_164_390#"
+merge "currm_n_33/m1_164_390#" "currm_n_22/m1_164_390#"
+merge "currm_n_22/m1_164_390#" "currm_n_23/m1_164_390#"
+merge "currm_n_23/m1_164_390#" "currm_n_21/m1_164_390#"
+merge "currm_n_21/m1_164_390#" "m2_n5800_4500#"
+merge "m2_n5800_4500#" "currm_ps_18/a_132_72#"
+merge "currm_ps_18/a_132_72#" "m1_n6130_4370#"
+merge "m1_n6130_4370#" "currm_ps_14/a_132_72#"
+merge "currm_ps_14/a_132_72#" "m1_n5770_4120#"
+merge "m1_n5770_4120#" "m1_n6550_4410#"
+merge "m1_n6550_4410#" "m1_n6550_4940#"
+merge "m1_n6550_4940#" "currm_ps_16/a_132_72#"
+merge "currm_ps_16/a_132_72#" "m1_n6860_4120#"
+merge "m1_n6860_4120#" "currm_ps_17/a_132_72#"
+merge "currm_ps_17/a_132_72#" "m1_n8740_4410#"
+merge "m1_n8740_4410#" "m1_n8740_4940#"
+merge "m1_n8740_4940#" "m1_n7650_4410#"
+merge "m1_n7650_4410#" "m1_n7620_4940#"
+merge "m1_n7620_4940#" "currm_ps_19/a_132_72#"
+merge "currm_ps_19/a_132_72#" "m1_n9040_4120#"
+merge "m1_n9040_4120#" "m1_n7950_4120#"
+merge "m1_n7950_4120#" "m1_n6170_2770#"
+merge "m1_n6170_2770#" "m1_n6170_3300#"
+merge "m1_n6170_3300#" "currm_ps_15/a_132_72#"
+merge "currm_ps_15/a_132_72#" "m1_n6530_2770#"
+merge "m1_n6530_2770#" "m1_n6540_3300#"
+merge "m1_n6540_3300#" "currm_ps_20/a_132_72#"
+merge "currm_ps_20/a_132_72#" "currm_ps_21/a_132_72#"
+merge "currm_ps_21/a_132_72#" "m1_n8700_2770#"
+merge "m1_n8700_2770#" "m1_n8710_3300#"
+merge "m1_n8710_3300#" "m1_n7620_2770#"
+merge "m1_n7620_2770#" "m1_n7620_3300#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_6540_6580#" -135548 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -179350792 -28772 -1410000 -880 -1656500 0 -3824583 0 6510560 -3302 0 0
+merge "m1_6540_6580#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_5210_6580#"
+merge "m1_5210_6580#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_4140_6050#"
+merge "m1_4140_6050#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_6550_4940#"
+merge "m1_6550_4940#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_5210_4940#"
+merge "m1_5210_4940#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_4140_4410#"
+merge "m1_4140_4410#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_6600_3300#"
+merge "m1_6600_3300#" "currm_p_1/m1_n50_n680#"
+merge "currm_p_1/m1_n50_n680#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_5250_3300#"
+merge "m1_5250_3300#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_3850_3300#"
+merge "m1_3850_3300#" "m1_3850_2770#"
+merge "m1_3850_2770#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "m5_670_1940#"
+merge "m5_670_1940#" "currm_p_1/m1_190_n590#"
+merge "currm_p_1/m1_190_n590#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "VM14D"
+merge "VM14D" "currm_p_12/m1_n50_n680#"
+merge "currm_p_12/m1_n50_n680#" "m1_2590_2770#"
+merge "m1_2590_2770#" "m1_2550_3300#"
+merge "currm_ps_0/m1_170_170#" "currm_n_26/a_122_62#" 6591.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16055108 -43626 2580560 -2640 0 0 0 0 0 0 0 0
+merge "currm_n_26/a_122_62#" "currm_n_24/a_122_62#"
+merge "currm_n_24/a_122_62#" "VM30D"
+merge "VM30D" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n33_n200#" "currm_n_24/m1_164_390#"
+merge "currm_n_24/m1_164_390#" "m1_8440_n420#"
+merge "m1_8440_n420#" "m1_n9530_1180#"
+merge "m1_n9530_1180#" "currm_n_29/a_122_62#"
+merge "currm_n_29/a_122_62#" "currm_n_30/a_122_62#"
+merge "currm_n_30/a_122_62#" "currm_n_28/a_122_62#"
+merge "currm_n_28/a_122_62#" "currm_n_27/a_122_62#"
+merge "currm_n_27/a_122_62#" "m1_n9530_670#"
+merge "m1_n9530_670#" "currm_n_49/a_122_62#"
+merge "currm_n_49/a_122_62#" "m1_n7170_n410#"
+merge "m1_n7170_n410#" "m1_n9530_n430#"
+merge "m1_n9530_n430#" "currm_n_31/a_122_62#"
+merge "currm_n_31/a_122_62#" "currm_n_34/a_122_62#"
+merge "currm_n_34/a_122_62#" "currm_n_48/a_122_62#"
+merge "currm_n_48/a_122_62#" "m1_n9530_n940#"
+merge "currm_n_18/m1_68_150#" "currm_n_20/m1_68_150#" 25911.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78488600 -11468 0 0 0 0 0 0 0 0
+merge "currm_n_20/m1_68_150#" "currm_n_17/m1_68_150#"
+merge "currm_n_17/m1_68_150#" "currm_n_19/m1_68_150#"
+merge "currm_n_19/m1_68_150#" "currm_n_16/m1_68_150#"
+merge "currm_n_16/m1_68_150#" "currm_n_15/m1_68_150#"
+merge "currm_n_15/m1_68_150#" "currm_n_22/m1_68_150#"
+merge "currm_n_22/m1_68_150#" "currm_n_23/m1_68_150#"
+merge "currm_n_23/m1_68_150#" "currm_n_21/m1_68_150#"
+merge "currm_n_21/m1_68_150#" "m2_n5090_n880#"
+merge "currm_ps_11/m1_80_400#" "currm_ps_12/m1_80_400#" 19308.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62245200 -16320 0 0 0 0 0 0 0 0
+merge "currm_ps_12/m1_80_400#" "currm_ps_13/m1_80_400#"
+merge "currm_ps_13/m1_80_400#" "currm_ps_14/m1_80_400#"
+merge "currm_ps_14/m1_80_400#" "currm_ps_16/m1_80_400#"
+merge "currm_ps_16/m1_80_400#" "currm_ps_17/m1_80_400#"
+merge "currm_ps_17/m1_80_400#" "currm_ps_15/m1_80_400#"
+merge "currm_ps_15/m1_80_400#" "currm_ps_20/m1_80_400#"
+merge "currm_ps_20/m1_80_400#" "currm_ps_21/m1_80_400#"
+merge "currm_ps_21/m1_80_400#" "m2_n9350_4740#"
+merge "currm_n_45/m1_68_150#" "currm_n_47/m1_68_150#" 3113.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9393760 -4232 0 0 0 0 0 0 0 0
+merge "currm_n_47/m1_68_150#" "currm_n_44/m1_68_150#"
+merge "currm_n_44/m1_68_150#" "currm_n_46/m1_68_150#"
+merge "currm_n_46/m1_68_150#" "m2_200_n880#"
+merge "currm_ps_7/m1_170_170#" "currm_ps_4/m1_170_170#" 52182.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 141272980 -23160 0 0 0 0 0 0 0 0
+merge "currm_ps_4/m1_170_170#" "currm_ps_3/m1_170_170#"
+merge "currm_ps_3/m1_170_170#" "currm_ps_8/m1_170_170#"
+merge "currm_ps_8/m1_170_170#" "currm_ps_5/m1_170_170#"
+merge "currm_ps_5/m1_170_170#" "currm_ps_2/m1_170_170#"
+merge "currm_ps_2/m1_170_170#" "currm_ps_9/m1_170_170#"
+merge "currm_ps_9/m1_170_170#" "currm_ps_6/m1_170_170#"
+merge "currm_ps_6/m1_170_170#" "currm_ps_1/m1_170_170#"
+merge "currm_ps_1/m1_170_170#" "currm_n_42/m1_164_390#"
+merge "currm_n_42/m1_164_390#" "currm_n_40/m1_164_390#"
+merge "currm_n_40/m1_164_390#" "currm_n_39/m1_164_390#"
+merge "currm_n_39/m1_164_390#" "currm_n_41/m1_164_390#"
+merge "currm_n_41/m1_164_390#" "currm_n_38/m1_164_390#"
+merge "currm_n_38/m1_164_390#" "currm_n_32/m1_164_390#"
+merge "currm_n_32/m1_164_390#" "currm_n_37/m1_164_390#"
+merge "currm_n_37/m1_164_390#" "currm_n_36/m1_164_390#"
+merge "currm_n_36/m1_164_390#" "currm_n_35/m1_164_390#"
+merge "currm_n_35/m1_164_390#" "OutN"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" -18678 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -22207376 -1888 -5174000 0 375600 -14000 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_2/a_n81_n288#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n33_n197#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n33_n197#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_1/a_n81_n288#" "Disable_FB"
+merge "currm_ps_11/m1_170_170#" "currm_ps_12/m1_170_170#" 5171.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25818320 -22060 -13192000 0 0 0 0 0 0 0
+merge "currm_ps_12/m1_170_170#" "currm_ps_13/m1_170_170#"
+merge "currm_ps_13/m1_170_170#" "currm_ps_14/m1_170_170#"
+merge "currm_ps_14/m1_170_170#" "currm_ps_16/m1_170_170#"
+merge "currm_ps_16/m1_170_170#" "currm_ps_17/m1_170_170#"
+merge "currm_ps_17/m1_170_170#" "currm_ps_15/m1_170_170#"
+merge "currm_ps_15/m1_170_170#" "currm_ps_20/m1_170_170#"
+merge "currm_ps_20/m1_170_170#" "currm_ps_21/m1_170_170#"
+merge "currm_ps_21/m1_170_170#" "currm_n_26/m1_164_390#"
+merge "currm_n_26/m1_164_390#" "currm_n_29/m1_164_390#"
+merge "currm_n_29/m1_164_390#" "currm_n_30/m1_164_390#"
+merge "currm_n_30/m1_164_390#" "currm_n_28/m1_164_390#"
+merge "currm_n_28/m1_164_390#" "currm_n_27/m1_164_390#"
+merge "currm_n_27/m1_164_390#" "currm_n_49/m1_164_390#"
+merge "currm_n_49/m1_164_390#" "currm_n_31/m1_164_390#"
+merge "currm_n_31/m1_164_390#" "currm_n_34/m1_164_390#"
+merge "currm_n_34/m1_164_390#" "currm_n_48/m1_164_390#"
+merge "currm_n_48/m1_164_390#" "OutP"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_129_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n187_n200#" 11091.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21863240 -1728 -7802320 -3480 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n187_n200#" "currm_n_2/m1_164_390#"
+merge "currm_n_2/m1_164_390#" "currm_n_1/m1_164_390#"
+merge "currm_n_1/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_129_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_129_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#" "currm_n_0/m1_164_390#"
+merge "currm_n_0/m1_164_390#" "currm_n_3/m1_164_390#"
+merge "currm_n_3/m1_164_390#" "m1_950_1560#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_29_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -21545.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -33426036 -1104 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "InP"
+merge "currm_p_5/m1_60_n360#" "currm_p_7/m1_60_n360#" 32184.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97825600 -21780 0 0 0 0 0 0 0 0
+merge "currm_p_7/m1_60_n360#" "currm_p_10/m1_60_n360#"
+merge "currm_p_10/m1_60_n360#" "currm_p_4/m1_60_n360#"
+merge "currm_p_4/m1_60_n360#" "currm_p_6/m1_60_n360#"
+merge "currm_p_6/m1_60_n360#" "currm_p_9/m1_60_n360#"
+merge "currm_p_9/m1_60_n360#" "currm_p_3/m1_60_n360#"
+merge "currm_p_3/m1_60_n360#" "currm_p_8/m1_60_n360#"
+merge "currm_p_8/m1_60_n360#" "currm_p_11/m1_60_n360#"
+merge "currm_p_11/m1_60_n360#" "m2_n5120_4740#"
+merge "currm_n_2/m1_68_150#" "currm_n_1/m1_68_150#" 5494.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16584320 -4632 0 0 0 0 0 0 0 0
+merge "currm_n_1/m1_68_150#" "currm_n_0/m1_68_150#"
+merge "currm_n_0/m1_68_150#" "currm_n_3/m1_68_150#"
+merge "currm_n_3/m1_68_150#" "m2_250_740#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_29_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -19316.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29896936 -1104 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "InN"
+merge "currm_n_9/m1_68_150#" "currm_n_11/m1_68_150#" 41665.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 121169980 -11756 0 0 0 0 0 0 0 0
+merge "currm_n_11/m1_68_150#" "currm_n_10/m1_68_150#"
+merge "currm_n_10/m1_68_150#" "currm_n_8/m1_68_150#"
+merge "currm_n_8/m1_68_150#" "currm_n_7/m1_68_150#"
+merge "currm_n_7/m1_68_150#" "currm_n_6/m1_68_150#"
+merge "currm_n_6/m1_68_150#" "currm_n_12/m1_68_150#"
+merge "currm_n_12/m1_68_150#" "currm_n_14/m1_68_150#"
+merge "currm_n_14/m1_68_150#" "currm_n_13/m1_68_150#"
+merge "currm_n_13/m1_68_150#" "m2_4080_740#"
+merge "currm_p_13/m1_60_n360#" "currm_p_18/m1_60_n360#" 29299 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94002500 -22520 0 0 0 0 0 0 0 0
+merge "currm_p_18/m1_60_n360#" "currm_p_19/m1_60_n360#"
+merge "currm_p_19/m1_60_n360#" "currm_p_14/m1_60_n360#"
+merge "currm_p_14/m1_60_n360#" "currm_p_17/m1_60_n360#"
+merge "currm_p_17/m1_60_n360#" "currm_p_20/m1_60_n360#"
+merge "currm_p_20/m1_60_n360#" "currm_p_15/m1_60_n360#"
+merge "currm_p_15/m1_60_n360#" "currm_p_16/m1_60_n360#"
+merge "currm_p_16/m1_60_n360#" "currm_p_21/m1_60_n360#"
+merge "currm_p_21/m1_60_n360#" "m2_4260_3100#"
diff --git a/mag/feedback/fb_amp.mag b/mag/feedback/fb_amp.mag
new file mode 100644
index 0000000..87e566a
--- /dev/null
+++ b/mag/feedback/fb_amp.mag
@@ -0,0 +1,2136 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653928699
+<< nwell >>
+rect -1290 4230 -1060 4450
+<< pwell >>
+rect 4450 1180 4770 1210
+rect 4960 1180 7980 1210
+rect 4460 670 4780 700
+rect 4960 670 7970 700
+rect 8670 -450 8860 -400
+rect 8380 -500 8910 -480
+rect 8380 -660 9150 -500
+<< locali >>
+rect 1420 1400 1520 2140
+rect 850 1310 2090 1400
+rect 1430 560 1510 1310
+rect -640 -960 -530 -890
+rect -630 -1600 -510 -1530
+rect -110 -1590 -30 -1520
+<< viali >>
+rect -30 -1670 40 -1490
+<< metal1 >>
+rect -8730 6580 -8410 6630
+rect -6060 6590 -5660 6620
+rect -6210 6380 -6200 6540
+rect -6140 6380 -6130 6540
+rect -6020 6380 -6010 6540
+rect -5950 6380 -5940 6540
+rect -5830 6380 -5820 6540
+rect -5760 6380 -5750 6540
+rect -6120 6140 -6110 6300
+rect -6050 6140 -6040 6300
+rect -5930 6140 -5920 6300
+rect -5860 6140 -5850 6300
+rect -9040 5760 -8980 6080
+rect -8700 6050 -8380 6100
+rect -5690 6090 -5660 6590
+rect -4170 6580 -3860 6630
+rect -2820 6580 -2510 6630
+rect 5210 6580 5610 6630
+rect 6540 6580 6940 6630
+rect 8430 6590 8820 6620
+rect 8280 6380 8290 6540
+rect 8350 6380 8360 6540
+rect 8470 6380 8480 6540
+rect 8540 6380 8550 6540
+rect 8660 6380 8670 6540
+rect 8730 6380 8740 6540
+rect 8370 6140 8380 6300
+rect 8440 6140 8450 6300
+rect 8560 6140 8570 6300
+rect 8630 6140 8640 6300
+rect -7950 5760 -7890 6080
+rect -6860 5760 -6800 6080
+rect -6150 6060 -5280 6090
+rect -8740 4940 -8460 4990
+rect -7620 4940 -7340 4990
+rect -6550 4940 -6270 4990
+rect -9040 4120 -8980 4440
+rect -8740 4410 -8420 4460
+rect -7950 4120 -7890 4440
+rect -7650 4410 -7330 4460
+rect -6860 4120 -6800 4440
+rect -6550 4410 -6270 4460
+rect -6130 4370 -6120 4450
+rect -5850 4370 -5840 4450
+rect -5770 4120 -5710 4440
+rect -8710 3300 -8430 3350
+rect -7620 3300 -7300 3350
+rect -6540 3300 -6260 3350
+rect -6170 3300 -5420 3350
+rect -8700 2770 -8420 2820
+rect -7620 2770 -7300 2820
+rect -6530 2770 -6250 2820
+rect -6170 2770 -5850 2820
+rect -5320 2550 -5280 6060
+rect -5000 5770 -4950 6070
+rect -4140 6050 -3830 6100
+rect -3660 5770 -3610 6070
+rect -2790 6050 -2480 6100
+rect -2320 5790 -2270 6090
+rect 4140 6050 7980 6100
+rect 8790 6090 8820 6590
+rect 10120 6580 10450 6630
+rect 11200 6580 11530 6630
+rect 8080 6060 8820 6090
+rect 4380 5730 4430 6050
+rect 5720 5730 5770 6050
+rect 7060 5730 7110 6050
+rect -4150 4940 -3860 4990
+rect -2790 4940 -2500 4990
+rect 5210 4940 5610 4990
+rect 6550 4940 6950 4990
+rect -5000 4150 -4950 4450
+rect -4160 4410 -3870 4460
+rect -3660 4140 -3610 4440
+rect -2810 4410 -2520 4460
+rect -2320 4140 -2270 4440
+rect 4140 4410 7980 4460
+rect 4380 4090 4430 4410
+rect 5720 4090 5770 4410
+rect 7060 4090 7110 4410
+rect -4160 3300 -3870 3350
+rect -2890 3300 -2480 3350
+rect -1520 3300 -1110 3350
+rect -120 3300 180 3350
+rect 2550 3300 2850 3350
+rect 3850 3300 4150 3350
+rect 5250 3300 5550 3350
+rect 6600 3300 6900 3350
+rect -4100 2770 -3810 2820
+rect -2860 2770 -2450 2820
+rect -1510 2770 -1100 2820
+rect -110 2770 190 2820
+rect 970 2730 980 2800
+rect 1180 2730 1190 2800
+rect 1750 2720 1760 2820
+rect 1970 2720 1980 2820
+rect 2590 2770 2890 2820
+rect 3850 2770 7610 2820
+rect 8080 2550 8120 6060
+rect 9810 5770 9870 6070
+rect 10130 6050 10460 6100
+rect 10900 5780 10960 6080
+rect 11230 6050 11560 6100
+rect 11990 5780 12050 6080
+rect 8350 5220 8380 5280
+rect 10120 4940 10450 4990
+rect 11230 4940 11560 4990
+rect 8160 4500 8170 4660
+rect 8240 4500 8250 4660
+rect 8720 4120 8780 4440
+rect 9810 4150 9870 4450
+rect 10120 4410 10450 4460
+rect 10900 4150 10960 4450
+rect 11220 4410 11550 4460
+rect 11990 4150 12050 4450
+rect 9040 3300 9370 3350
+rect 10140 3300 10470 3350
+rect 11190 3300 11520 3350
+rect 9030 2770 9360 2820
+rect 10140 2770 10470 2820
+rect 11220 2770 11550 2820
+rect -5320 2510 -800 2550
+rect -810 2470 -800 2510
+rect -720 2510 8120 2550
+rect -720 2470 -710 2510
+rect 8810 2400 8820 2440
+rect -6320 2370 8820 2400
+rect 8900 2370 8910 2440
+rect -9530 1180 -6650 1210
+rect -6320 1180 -6290 2370
+rect -6000 2290 9030 2320
+rect -9530 670 -6650 700
+rect -9270 -400 -9240 -80
+rect -8570 -400 -8540 -70
+rect -7870 -400 -7840 -70
+rect -9530 -430 -7280 -400
+rect -7170 -410 -7140 -70
+rect -6000 -410 -5970 2290
+rect 2910 2210 2920 2250
+rect -1270 2180 2920 2210
+rect 2990 2180 3000 2250
+rect -1270 1880 -1190 2180
+rect -160 2140 4160 2150
+rect -170 2070 -160 2140
+rect -90 2120 4160 2140
+rect -90 2070 -80 2120
+rect 1020 1990 1440 2060
+rect -1280 1810 -1270 1880
+rect -1190 1810 -1180 1880
+rect 1110 1790 1120 1960
+rect 1190 1790 1200 1960
+rect -5490 1580 200 1660
+rect -5490 1180 -5400 1580
+rect -1280 1370 -1270 1440
+rect -1190 1370 -1180 1440
+rect -170 1370 -160 1440
+rect -90 1370 -80 1440
+rect -5100 1180 -1580 1210
+rect -1270 1180 -1190 1370
+rect -830 1270 -820 1370
+rect -730 1270 -720 1370
+rect -5100 670 -1570 700
+rect -4880 -410 -4850 -20
+rect -4180 -410 -4150 -20
+rect -6390 -440 -6120 -410
+rect -6000 -440 -5810 -410
+rect -5090 -440 -3650 -410
+rect -3480 -440 -3450 -20
+rect -9530 -940 -7280 -910
+rect -6390 -920 -6350 -440
+rect -6220 -640 -6210 -480
+rect -6150 -640 -6140 -480
+rect -5900 -640 -5890 -480
+rect -5830 -640 -5820 -480
+rect -6310 -880 -6300 -720
+rect -6240 -880 -6230 -720
+rect -6120 -880 -6110 -720
+rect -6050 -880 -6040 -720
+rect -6390 -950 -6220 -920
+rect -5090 -950 -3650 -920
+rect -6260 -1120 -6220 -950
+rect -820 -960 -790 1270
+rect -400 1190 -390 1250
+rect -240 1190 -230 1250
+rect -160 1180 -90 1370
+rect 120 1220 200 1580
+rect 950 1560 960 1730
+rect 1030 1560 1040 1730
+rect 1270 1560 1280 1730
+rect 1350 1560 1360 1730
+rect 1390 1530 1440 1990
+rect 1020 1460 1440 1530
+rect 1510 1990 1930 2060
+rect 4100 1990 4160 2120
+rect 1510 1530 1560 1990
+rect 1750 1790 1760 1960
+rect 1830 1790 1840 1960
+rect 4090 1930 4100 1990
+rect 4160 1930 4170 1990
+rect 8820 1960 8830 2020
+rect 8890 1960 8900 2020
+rect 1590 1560 1600 1730
+rect 1670 1560 1680 1730
+rect 1910 1560 1920 1730
+rect 1990 1560 2000 1730
+rect 1510 1460 1930 1530
+rect 2620 1400 8280 1440
+rect 2620 1220 2720 1400
+rect 2910 1300 2920 1360
+rect 2990 1300 3000 1360
+rect 120 1180 2720 1220
+rect 2920 1180 2990 1300
+rect 3120 1240 3130 1320
+rect 3280 1240 3290 1320
+rect 4090 1310 4100 1370
+rect 4160 1310 4170 1370
+rect 3040 1180 3090 1220
+rect 3120 1200 3290 1240
+rect 4100 1180 4160 1310
+rect 4450 1180 4770 1210
+rect 4960 1180 7980 1210
+rect 8210 1180 8280 1400
+rect 4460 670 4780 700
+rect 4960 670 7970 700
+rect 410 -430 440 -80
+rect 570 -440 840 -410
+rect 1110 -420 1140 -80
+rect 1370 -440 1400 -410
+rect 1390 -470 1400 -440
+rect 1560 -470 1570 -410
+rect 1810 -430 1840 -80
+rect 1980 -440 2250 -410
+rect 2510 -430 2540 -80
+rect 6400 -410 6430 -40
+rect 7100 -410 7130 -40
+rect 6150 -440 7720 -410
+rect 7800 -440 7830 -40
+rect 8440 -420 8450 -360
+rect 8570 -420 8580 -360
+rect 8840 -400 8880 1960
+rect 9000 1200 9030 2290
+rect 9000 1180 9090 1200
+rect 9390 1180 11890 1210
+rect 9390 670 11890 700
+rect 8670 -450 8880 -400
+rect 9990 -410 10020 -80
+rect 10690 -410 10720 -80
+rect 11390 -410 11420 -80
+rect 12090 -410 12120 -80
+rect 9140 -450 9330 -420
+rect 9760 -440 12260 -410
+rect 9080 -660 9090 -490
+rect 9150 -660 9160 -490
+rect -720 -770 -430 -720
+rect -820 -990 -730 -960
+rect -650 -980 -640 -840
+rect -580 -980 -570 -840
+rect -6280 -1200 -6270 -1120
+rect -6190 -1200 -6180 -1120
+rect -820 -1460 -790 -990
+rect -470 -1050 -430 -770
+rect 8990 -890 9000 -720
+rect 9060 -890 9070 -720
+rect 9180 -890 9190 -720
+rect 9250 -890 9260 -720
+rect 560 -950 830 -920
+rect 1290 -950 1560 -920
+rect 1980 -950 2250 -920
+rect 6180 -950 7750 -920
+rect 9290 -930 9330 -450
+rect -720 -1100 -430 -1050
+rect -470 -1180 -430 -1100
+rect 9050 -960 9330 -930
+rect 9750 -950 12230 -920
+rect -470 -1230 -130 -1180
+rect 9050 -1230 9090 -960
+rect -470 -1380 -420 -1230
+rect -700 -1430 -420 -1380
+rect -250 -1430 -240 -1260
+rect -180 -1430 -170 -1260
+rect 9020 -1350 9030 -1230
+rect 9140 -1350 9150 -1230
+rect -820 -1500 -710 -1460
+rect -710 -1640 -700 -1590
+rect -640 -1650 -630 -1510
+rect -570 -1650 -560 -1510
+rect -470 -1690 -420 -1430
+rect -36 -1490 46 -1478
+rect -340 -1660 -330 -1490
+rect -270 -1660 -260 -1490
+rect -150 -1660 -140 -1490
+rect -80 -1660 -70 -1490
+rect -36 -1670 -30 -1490
+rect 40 -1670 46 -1490
+rect -36 -1682 46 -1670
+rect -710 -1710 -220 -1690
+rect -960 -1740 -220 -1710
+rect -1030 -1870 -1020 -1800
+rect -960 -1870 -930 -1740
+rect -280 -1760 -220 -1740
+rect 20 -1760 30 -1740
+rect -280 -1800 30 -1760
+rect 20 -1830 30 -1800
+rect 110 -1830 120 -1740
+<< via1 >>
+rect -6200 6380 -6140 6540
+rect -6010 6380 -5950 6540
+rect -5820 6380 -5760 6540
+rect -6110 6140 -6050 6300
+rect -5920 6140 -5860 6300
+rect 8290 6380 8350 6540
+rect 8480 6380 8540 6540
+rect 8670 6380 8730 6540
+rect 8380 6140 8440 6300
+rect 8570 6140 8630 6300
+rect -6120 4370 -5850 4450
+rect 980 2730 1180 2800
+rect 1760 2720 1970 2820
+rect 8170 4500 8240 4660
+rect -800 2470 -720 2550
+rect 8820 2370 8900 2440
+rect 2920 2180 2990 2250
+rect -160 2070 -90 2140
+rect -1270 1810 -1190 1880
+rect 1120 1790 1190 1960
+rect -1270 1370 -1190 1440
+rect -160 1370 -90 1440
+rect -820 1270 -730 1370
+rect -6210 -640 -6150 -480
+rect -5890 -640 -5830 -480
+rect -6300 -880 -6240 -720
+rect -6110 -880 -6050 -720
+rect -390 1190 -240 1250
+rect 960 1560 1030 1730
+rect 1280 1560 1350 1730
+rect 1760 1790 1830 1960
+rect 4100 1930 4160 1990
+rect 8830 1960 8890 2020
+rect 1600 1560 1670 1730
+rect 1920 1560 1990 1730
+rect 2920 1300 2990 1360
+rect 3130 1240 3280 1320
+rect 4100 1310 4160 1370
+rect 1400 -470 1560 -410
+rect 8450 -420 8570 -360
+rect 9090 -660 9150 -490
+rect -640 -980 -580 -840
+rect -6270 -1200 -6190 -1120
+rect 9000 -890 9060 -720
+rect 9190 -890 9250 -720
+rect -240 -1430 -180 -1260
+rect 9030 -1350 9140 -1230
+rect -630 -1650 -570 -1510
+rect -330 -1660 -270 -1490
+rect -140 -1660 -80 -1490
+rect -1020 -1870 -960 -1800
+rect 30 -1830 110 -1740
+<< metal2 >>
+rect -6280 7560 -5770 7570
+rect -9460 7200 -6280 7560
+rect -6310 7190 -6280 7200
+rect -5770 7530 -570 7560
+rect 8470 7550 9100 7560
+rect -5770 7190 -1200 7530
+rect -5770 7040 -5220 7190
+rect -1200 7050 -570 7060
+rect -6280 7030 -5220 7040
+rect -6240 6778 -5220 7030
+rect -5790 6550 -5220 6778
+rect -6200 6540 -5220 6550
+rect -1990 6540 -1800 6550
+rect -9350 6520 -6590 6540
+rect -9350 6380 -8000 6520
+rect -7920 6380 -6590 6520
+rect -6140 6380 -6010 6540
+rect -5950 6380 -5820 6540
+rect -5760 6380 -5220 6540
+rect -5120 6530 -1990 6540
+rect -5120 6390 -5110 6530
+rect -8000 6370 -7920 6380
+rect -6200 6370 -6140 6380
+rect -6010 6370 -5950 6380
+rect -5820 6370 -5220 6380
+rect -4920 6390 -1990 6530
+rect -1800 6390 -1350 6540
+rect -1990 6380 -1800 6390
+rect -5110 6370 -4920 6380
+rect -6120 6300 -5850 6310
+rect -9350 6290 -6590 6300
+rect -9350 6140 -7780 6290
+rect -7200 6140 -6590 6290
+rect -7780 6130 -7200 6140
+rect -6120 6120 -5850 6130
+rect -5790 5920 -5220 6370
+rect -4800 6300 -4610 6310
+rect -1660 6300 -1470 6310
+rect -4990 6150 -4800 6300
+rect -4610 6150 -1660 6300
+rect -4800 6140 -4610 6150
+rect -1660 6140 -1470 6150
+rect -1030 5920 -570 7050
+rect -9450 5560 -570 5920
+rect -6240 5550 -6170 5560
+rect -5760 5550 -570 5560
+rect -9350 4890 -6590 4900
+rect -5110 4890 -4920 4900
+rect -1990 4890 -1800 4900
+rect -9350 4750 -8000 4890
+rect -7920 4750 -6590 4890
+rect -9350 4740 -6590 4750
+rect -5120 4740 -5110 4890
+rect -4920 4740 -1990 4890
+rect -1800 4740 -1600 4890
+rect -5110 4730 -4920 4740
+rect -1990 4730 -1800 4740
+rect -6120 4660 -5850 4670
+rect -9350 4650 -6590 4660
+rect -9350 4500 -7780 4650
+rect -7200 4500 -6590 4650
+rect -5800 4660 -4610 4670
+rect -1660 4660 -1470 4670
+rect -5800 4510 -4800 4660
+rect -4610 4510 -1660 4660
+rect -5800 4500 -4610 4510
+rect -1660 4500 -1470 4510
+rect -7780 4490 -7200 4500
+rect -6120 4450 -5850 4500
+rect -6120 4360 -5850 4370
+rect -1030 4290 -570 5550
+rect 2990 7540 3620 7550
+rect 3620 7180 8470 7540
+rect 2990 7060 3620 7070
+rect 9100 7190 11940 7550
+rect 2990 5910 3450 7060
+rect 8470 6550 9100 7080
+rect 4260 6540 4450 6550
+rect 8290 6540 9100 6550
+rect 4450 6530 8020 6540
+rect 4450 6390 7390 6530
+rect 4260 6380 4450 6390
+rect 7580 6390 8020 6530
+rect 7390 6370 7580 6380
+rect 8350 6380 8480 6540
+rect 8540 6380 8670 6540
+rect 8730 6380 9100 6540
+rect 9380 6540 9540 6550
+rect 8290 6370 9100 6380
+rect 9370 6370 9380 6530
+rect 11770 6530 11960 6540
+rect 9540 6380 11770 6530
+rect 9540 6370 11960 6380
+rect 7700 6300 7890 6310
+rect 4590 6290 4780 6300
+rect 5970 6290 6190 6300
+rect 4380 6140 4590 6290
+rect 4780 6140 5970 6290
+rect 6190 6150 7700 6290
+rect 8380 6300 8630 6310
+rect 7890 6150 7900 6290
+rect 6190 6140 7900 6150
+rect 8440 6140 8570 6150
+rect 4590 6130 4780 6140
+rect 5970 6130 6190 6140
+rect 8380 6130 8630 6140
+rect 8680 5910 9100 6370
+rect 9380 6360 9540 6370
+rect 9670 6310 9830 6320
+rect 9460 6140 9670 6300
+rect 12110 6300 12300 6310
+rect 9830 6290 12020 6300
+rect 9830 6150 10660 6290
+rect 11050 6150 12020 6290
+rect 9830 6140 12020 6150
+rect 12110 6140 12300 6150
+rect 9670 6130 9830 6140
+rect 2990 5880 11920 5910
+rect 2990 5590 6420 5880
+rect 6990 5590 8700 5880
+rect 2990 5580 8700 5590
+rect 2990 5550 8320 5580
+rect 9300 5710 11920 5880
+rect 9300 5570 11930 5710
+rect 8700 5550 11930 5570
+rect -5290 4280 -240 4290
+rect 2990 4280 3450 5550
+rect 4260 4900 4450 4910
+rect 9380 4900 9540 4910
+rect 4450 4890 8030 4900
+rect 4450 4750 7390 4890
+rect 4260 4740 4450 4750
+rect 7580 4750 8030 4890
+rect 7390 4730 7580 4740
+rect 9370 4730 9380 4890
+rect 11770 4890 11960 4900
+rect 9540 4740 11770 4890
+rect 9540 4730 11960 4740
+rect 9380 4720 9540 4730
+rect 9670 4670 9830 4680
+rect 7700 4660 7890 4670
+rect 8170 4660 8240 4670
+rect 4590 4650 4780 4660
+rect 5970 4650 6190 4660
+rect 7200 4650 7700 4660
+rect 4380 4500 4590 4650
+rect 4780 4500 5970 4650
+rect 6190 4510 7700 4650
+rect 7890 4510 8170 4660
+rect 6190 4500 8170 4510
+rect 8240 4650 8690 4660
+rect 8240 4510 8390 4650
+rect 8590 4510 8690 4650
+rect 9460 4510 9670 4670
+rect 8240 4500 8690 4510
+rect 9830 4660 12020 4670
+rect 9830 4520 10660 4660
+rect 11050 4520 12020 4660
+rect 9830 4510 12020 4520
+rect 12110 4660 12300 4670
+rect 12110 4500 12300 4510
+rect 4590 4490 4780 4500
+rect 5970 4490 6190 4500
+rect 8170 4490 8240 4500
+rect 9670 4490 9830 4500
+rect -9470 4270 8120 4280
+rect -9470 3940 -5710 4270
+rect -5280 4260 8120 4270
+rect 9200 4260 11900 4270
+rect -5280 4240 11900 4260
+rect -5280 4080 8700 4240
+rect -5280 3940 -600 4080
+rect -9470 3920 -600 3940
+rect -5730 3910 -600 3920
+rect -480 3910 6420 4080
+rect 6990 3930 8700 4080
+rect 9300 4080 11900 4240
+rect 9300 3930 11940 4080
+rect 6990 3910 8150 3930
+rect 8700 3920 11940 3930
+rect 8780 3910 11940 3920
+rect -600 3900 -480 3910
+rect 6420 3900 6990 3910
+rect -1990 3260 -1800 3270
+rect 4260 3260 4450 3270
+rect 9380 3260 9540 3270
+rect -5110 3250 -1990 3260
+rect -9340 3240 -6590 3250
+rect -9340 3100 -8000 3240
+rect -7920 3100 -6590 3240
+rect -9340 3090 -6590 3100
+rect -4920 3110 -1990 3250
+rect -1800 3110 -1590 3260
+rect 4450 3250 8020 3260
+rect 4450 3110 7390 3250
+rect -1990 3100 -1800 3110
+rect 4260 3100 4450 3110
+rect 7580 3110 8020 3250
+rect -5110 3090 -4920 3100
+rect 7390 3090 7580 3100
+rect 9540 3250 12220 3260
+rect 9540 3100 11770 3250
+rect 11960 3100 12220 3250
+rect 9540 3090 12220 3100
+rect 9380 3080 9540 3090
+rect 9670 3030 9830 3040
+rect -5700 3020 -5460 3030
+rect -4800 3020 -4610 3030
+rect -1660 3020 -1470 3030
+rect -9340 3010 -6590 3020
+rect -9340 2860 -7780 3010
+rect -7200 2860 -6590 3010
+rect -7780 2850 -7200 2860
+rect -5700 2850 -5460 2860
+rect -5000 2870 -4800 3020
+rect -4610 2870 -1660 3020
+rect 1190 3020 1320 3030
+rect 7700 3020 7890 3030
+rect -5000 2860 -4610 2870
+rect -1660 2860 -1470 2870
+rect -9380 1220 -6330 1230
+rect -9380 990 -7780 1220
+rect -7200 990 -6330 1220
+rect -9380 980 -6330 990
+rect -5700 1140 -5450 1150
+rect -5000 1140 -4780 2860
+rect -800 2550 -720 2560
+rect -1270 1880 -1190 1890
+rect -1270 1440 -1190 1810
+rect -800 1410 -720 2470
+rect -1270 1360 -1190 1370
+rect -820 1370 -720 1410
+rect -820 1260 -730 1270
+rect -390 1250 -240 3000
+rect 980 2800 1190 3010
+rect 1180 2730 1190 2800
+rect 980 2640 1190 2730
+rect 1530 3010 1860 3020
+rect 4590 3010 4780 3020
+rect 5970 3010 6190 3020
+rect 7650 3010 7700 3020
+rect 1860 2860 1970 2920
+rect 3130 2890 3280 3010
+rect 1530 2850 1970 2860
+rect 980 2630 1320 2640
+rect 1760 2820 1970 2850
+rect 3100 2820 3280 2890
+rect 4390 2860 4590 3010
+rect 4780 2860 5970 3010
+rect 6190 2870 7700 3010
+rect 8390 3020 8590 3030
+rect 7890 2870 7910 3010
+rect 6190 2860 7910 2870
+rect 9460 2860 9670 3030
+rect 9830 3020 12300 3030
+rect 9830 2860 10660 3020
+rect 11050 2870 12110 3020
+rect 11050 2860 12300 2870
+rect 4590 2850 4780 2860
+rect 5970 2850 6190 2860
+rect 7650 2850 7870 2860
+rect 8390 2850 8590 2860
+rect -160 2140 -90 2150
+rect -160 1440 -90 2070
+rect 980 1960 1190 2630
+rect 980 1790 1120 1960
+rect 1120 1780 1190 1790
+rect 1760 1960 1970 2720
+rect 1830 1790 1970 1960
+rect 1760 1780 1970 1790
+rect 2920 2250 2990 2260
+rect 960 1730 1030 1740
+rect 1280 1730 1350 1740
+rect 1600 1730 1670 1740
+rect 1920 1730 1990 1740
+rect 1030 1560 1280 1730
+rect 1350 1560 1600 1730
+rect 1670 1560 1920 1730
+rect 960 1550 1990 1560
+rect -160 1360 -90 1370
+rect -390 1140 -240 1190
+rect 1360 1140 1580 1550
+rect 2920 1360 2990 2180
+rect 2920 1290 2990 1300
+rect 3130 1320 3280 2820
+rect 9470 2540 12300 2860
+rect 8820 2440 8900 2450
+rect 8820 2360 8900 2370
+rect 8840 2030 8880 2360
+rect 8830 2020 8890 2030
+rect 4100 1990 4160 2000
+rect 8830 1950 8890 1960
+rect 4100 1370 4160 1930
+rect 11750 1340 12300 2540
+rect 4100 1300 4160 1310
+rect -5700 1130 -1260 1140
+rect -5700 990 -5000 1130
+rect -4860 990 -3660 1130
+rect -3520 990 -1260 1130
+rect -5700 980 -1260 990
+rect -410 980 -170 1140
+rect 300 980 2640 1140
+rect 3130 1020 3280 1240
+rect 9180 1150 12300 1340
+rect 5970 1140 6190 1150
+rect 6810 1140 7220 1150
+rect 9180 1140 10840 1150
+rect 3320 1130 3340 1140
+rect 4190 980 5970 1140
+rect 6190 1130 8460 1140
+rect 6190 990 6270 1130
+rect 6410 990 7660 1130
+rect 7880 990 8460 1130
+rect 6190 980 8460 990
+rect 9170 1130 10840 1140
+rect 9170 990 9870 1130
+rect 10010 990 10840 1130
+rect 11230 1130 12300 1150
+rect 11230 990 11870 1130
+rect 12010 1050 12300 1130
+rect 12010 990 12200 1050
+rect 9170 980 12200 990
+rect 5970 970 6190 980
+rect 6810 970 7220 980
+rect -9490 890 -6270 900
+rect -9490 750 -8200 890
+rect -8110 750 -6270 890
+rect -9490 740 -6270 750
+rect -5090 890 -1190 900
+rect -5090 750 -4790 890
+rect -4650 750 -3390 890
+rect -3250 750 -1190 890
+rect -5090 740 -1190 750
+rect 250 740 2560 900
+rect 4080 890 8040 900
+rect 4080 750 6510 890
+rect 6650 750 7890 890
+rect 8030 750 8040 890
+rect 4080 740 8040 750
+rect 9090 890 12010 900
+rect 9090 750 10130 890
+rect 10270 750 12010 890
+rect 9090 740 12010 750
+rect 12160 890 12300 900
+rect 12160 740 12300 750
+rect -990 100 3030 120
+rect 3180 100 5470 120
+rect 5720 100 9000 120
+rect -9130 90 9000 100
+rect -9130 -70 12310 90
+rect -9130 -240 12320 -70
+rect -9130 -290 -930 -240
+rect -7780 -390 -7200 -380
+rect -9390 -620 -7780 -390
+rect -7200 -620 -7030 -390
+rect -9390 -630 -7030 -620
+rect -6860 -410 -6330 -290
+rect -9260 -720 -6960 -710
+rect -9260 -860 -8200 -720
+rect -8110 -860 -6960 -720
+rect -9260 -870 -6960 -860
+rect -6860 -1000 -6850 -410
+rect -6350 -710 -6330 -410
+rect -3050 -420 -930 -290
+rect -6210 -480 -6150 -470
+rect -5890 -480 -5830 -470
+rect -6150 -640 -5890 -480
+rect -5830 -490 -5450 -480
+rect -5830 -640 -5700 -490
+rect -5000 -490 -3340 -480
+rect -4860 -630 -3660 -490
+rect -3520 -630 -3340 -490
+rect -5000 -640 -3340 -630
+rect -6210 -650 -6150 -640
+rect -5890 -650 -5830 -640
+rect -5700 -650 -5450 -640
+rect -6350 -720 -6050 -710
+rect -6350 -880 -6300 -720
+rect -6240 -880 -6110 -720
+rect -5040 -730 -3250 -720
+rect -5090 -870 -4790 -730
+rect -4650 -870 -3390 -730
+rect -5090 -880 -3250 -870
+rect -6350 -890 -6050 -880
+rect -6350 -1000 -6330 -890
+rect -6860 -1510 -6330 -1000
+rect -3050 -1000 -3020 -420
+rect -2140 -830 -930 -420
+rect 1400 -410 1560 -400
+rect 1270 -460 1400 -450
+rect 2860 -420 3710 -240
+rect 1560 -460 1630 -450
+rect -600 -540 -480 -530
+rect -600 -670 -480 -660
+rect -50 -640 310 -480
+rect 430 -630 1270 -470
+rect 1630 -630 2440 -470
+rect 430 -640 2440 -630
+rect -600 -830 -510 -670
+rect -2140 -1000 -2110 -830
+rect -3050 -1030 -2110 -1000
+rect -6270 -1120 -6190 -1110
+rect -6270 -1210 -6190 -1200
+rect -3050 -1510 -2120 -1030
+rect -9140 -1900 -2120 -1510
+rect -1150 -1490 -930 -830
+rect -640 -840 -510 -830
+rect -580 -930 -510 -840
+rect -50 -870 130 -640
+rect -640 -990 -580 -980
+rect 200 -880 2330 -720
+rect -50 -1250 130 -1230
+rect -240 -1260 130 -1250
+rect -180 -1430 130 -1260
+rect -240 -1440 130 -1430
+rect 2860 -990 2900 -420
+rect 3680 -990 3710 -420
+rect -330 -1490 -270 -1480
+rect -140 -1490 -80 -1480
+rect -1150 -1510 -330 -1490
+rect -1150 -1650 -630 -1510
+rect -570 -1650 -330 -1510
+rect -1150 -1660 -330 -1650
+rect -270 -1660 -140 -1490
+rect -80 -1530 200 -1490
+rect 2860 -1530 3710 -990
+rect -80 -1660 3710 -1530
+rect -330 -1670 3710 -1660
+rect 30 -1740 110 -1730
+rect -1020 -1800 -960 -1790
+rect 30 -1840 110 -1830
+rect 190 -1860 3710 -1670
+rect 5350 -430 6070 -240
+rect 9010 -280 9650 -240
+rect 5350 -1000 5360 -430
+rect 6040 -1000 6070 -430
+rect 8450 -360 8570 -350
+rect 6890 -480 7220 -470
+rect 8450 -480 8570 -420
+rect 9290 -420 9650 -280
+rect 6270 -490 6890 -480
+rect 6410 -630 6890 -490
+rect 6270 -640 6890 -630
+rect 7220 -490 7940 -480
+rect 7220 -630 7660 -490
+rect 7800 -630 7940 -490
+rect 7220 -640 7940 -630
+rect 8380 -490 9150 -480
+rect 8380 -630 8390 -490
+rect 8590 -630 9090 -490
+rect 6890 -650 7220 -640
+rect 8380 -660 9090 -630
+rect 9090 -670 9150 -660
+rect 9290 -710 9310 -420
+rect 9000 -720 9310 -710
+rect 6180 -730 7850 -720
+rect 6180 -870 6510 -730
+rect 6650 -870 7850 -730
+rect 6180 -880 7850 -870
+rect 7890 -730 8030 -720
+rect 7890 -880 8030 -870
+rect 9060 -890 9190 -720
+rect 9250 -890 9310 -720
+rect 9000 -900 9310 -890
+rect 5350 -1530 6070 -1000
+rect 9290 -1000 9310 -900
+rect 9630 -1000 9650 -420
+rect 9870 -490 12220 -480
+rect 10010 -630 10840 -490
+rect 11230 -630 11870 -490
+rect 12010 -630 12220 -490
+rect 9870 -640 12220 -630
+rect 9770 -730 12320 -720
+rect 9770 -870 10130 -730
+rect 10270 -870 12160 -730
+rect 12300 -870 12320 -730
+rect 9770 -880 12320 -870
+rect 9030 -1230 9140 -1220
+rect 9030 -1360 9140 -1350
+rect 9290 -1530 9650 -1000
+rect 5350 -1860 12330 -1530
+rect 190 -1870 3440 -1860
+rect -1020 -1880 -960 -1870
+<< via2 >>
+rect -6280 7040 -5770 7560
+rect -1200 7060 -570 7530
+rect -8000 6380 -7920 6520
+rect -5110 6380 -4920 6530
+rect -1990 6390 -1800 6540
+rect -7780 6140 -7200 6290
+rect -6120 6140 -6110 6300
+rect -6110 6140 -6050 6300
+rect -6050 6140 -5920 6300
+rect -5920 6140 -5860 6300
+rect -5860 6140 -5850 6300
+rect -6120 6130 -5850 6140
+rect -4800 6150 -4610 6300
+rect -1660 6150 -1470 6300
+rect -8000 4750 -7920 4890
+rect -5110 4740 -4920 4890
+rect -1990 4740 -1800 4890
+rect -7780 4500 -7200 4650
+rect -6120 4500 -5850 4660
+rect -4800 4510 -4610 4660
+rect -1660 4510 -1470 4660
+rect 2990 7070 3620 7540
+rect 8470 7080 9100 7550
+rect 4260 6390 4450 6540
+rect 7390 6380 7580 6530
+rect 9380 6370 9540 6540
+rect 11770 6380 11960 6530
+rect 4590 6140 4780 6290
+rect 5970 6140 6190 6290
+rect 7700 6150 7890 6300
+rect 8390 6150 8440 6300
+rect 8440 6150 8570 6300
+rect 8570 6150 8590 6300
+rect 9670 6140 9830 6310
+rect 10660 6150 11050 6290
+rect 12110 6150 12300 6300
+rect 6420 5590 6990 5880
+rect 8700 5570 9300 5880
+rect 4260 4750 4450 4900
+rect 7390 4740 7580 4890
+rect 9380 4730 9540 4900
+rect 11770 4740 11960 4890
+rect 4590 4500 4780 4650
+rect 5970 4500 6190 4650
+rect 7700 4510 7890 4660
+rect 8390 4510 8590 4650
+rect 9670 4500 9830 4670
+rect 10660 4520 11050 4660
+rect 12110 4510 12300 4660
+rect -5710 3940 -5280 4270
+rect -600 3910 -480 4080
+rect 6420 3910 6990 4080
+rect 8700 3930 9300 4240
+rect -8000 3100 -7920 3240
+rect -5110 3100 -4920 3250
+rect -1990 3110 -1800 3260
+rect 4260 3110 4450 3260
+rect 7390 3100 7580 3250
+rect 9380 3090 9540 3260
+rect 11770 3100 11960 3250
+rect -7780 2860 -7200 3010
+rect -5700 2860 -5460 3020
+rect -4800 2870 -4610 3020
+rect -1660 2870 -1470 3020
+rect -7780 990 -7200 1220
+rect 1190 2640 1320 3020
+rect 1530 2860 1860 3010
+rect 4590 2860 4780 3010
+rect 5970 2860 6190 3010
+rect 7700 2870 7890 3020
+rect 8390 2860 8590 3020
+rect 9670 2860 9830 3030
+rect 10660 2860 11050 3020
+rect 12110 2870 12300 3020
+rect -5000 990 -4860 1130
+rect -3660 990 -3520 1130
+rect 5970 980 6190 1140
+rect 6270 990 6410 1130
+rect 7660 990 7880 1130
+rect 9870 990 10010 1130
+rect 10840 990 11230 1150
+rect 11870 990 12010 1130
+rect -8200 750 -8110 890
+rect -4790 750 -4650 890
+rect -3390 750 -3250 890
+rect 6510 750 6650 890
+rect 7890 750 8030 890
+rect 10130 750 10270 890
+rect 12160 750 12300 890
+rect -7780 -620 -7200 -390
+rect -8200 -860 -8110 -720
+rect -6850 -1000 -6350 -410
+rect -5700 -640 -5450 -490
+rect -5000 -630 -4860 -490
+rect -3660 -630 -3520 -490
+rect -4790 -870 -4650 -730
+rect -3390 -870 -3250 -730
+rect -3020 -1000 -2140 -420
+rect 1270 -470 1400 -460
+rect 1400 -470 1560 -460
+rect 1560 -470 1630 -460
+rect -600 -660 -480 -540
+rect 1270 -630 1630 -470
+rect -6270 -1200 -6190 -1120
+rect -50 -1230 130 -870
+rect 2900 -990 3680 -420
+rect -1020 -1870 -960 -1800
+rect 30 -1830 110 -1740
+rect 5360 -1000 6040 -430
+rect 6270 -630 6410 -490
+rect 6890 -640 7220 -480
+rect 7660 -630 7800 -490
+rect 8390 -630 8590 -490
+rect 6510 -870 6650 -730
+rect 7890 -870 8030 -730
+rect 9310 -1000 9630 -420
+rect 9870 -630 10010 -490
+rect 10840 -630 11230 -490
+rect 11870 -630 12010 -490
+rect 10130 -870 10270 -730
+rect 12160 -870 12300 -730
+rect 9030 -1350 9140 -1230
+<< metal3 >>
+rect -6290 7560 -5760 7565
+rect -6290 7040 -6280 7560
+rect -5770 7300 -5360 7560
+rect 8460 7550 9110 7555
+rect 2980 7540 3630 7545
+rect -1210 7530 -560 7535
+rect -5770 7040 -5280 7300
+rect -1210 7060 -1200 7530
+rect -570 7060 -560 7530
+rect 2980 7070 2990 7540
+rect 3620 7070 3630 7540
+rect 8460 7080 8470 7550
+rect 9100 7080 9300 7550
+rect 8460 7075 9300 7080
+rect 2980 7065 3630 7070
+rect -1210 7055 -560 7060
+rect -6290 6980 -5280 7040
+rect -8010 6520 -7910 6525
+rect -8010 6380 -8000 6520
+rect -7920 6380 -7910 6520
+rect -8010 6375 -7910 6380
+rect -8000 4895 -7920 6375
+rect -6130 6300 -5840 6305
+rect -7780 6295 -7200 6300
+rect -7790 6290 -7190 6295
+rect -7790 6140 -7780 6290
+rect -7200 6140 -7190 6290
+rect -7790 6135 -7190 6140
+rect -8010 4890 -7910 4895
+rect -8010 4750 -8000 4890
+rect -7920 4750 -7910 4890
+rect -8010 4745 -7910 4750
+rect -8000 3245 -7920 4745
+rect -7780 4655 -7200 6135
+rect -6130 6130 -6120 6300
+rect -5850 6130 -5840 6300
+rect -6130 6125 -5840 6130
+rect -6120 4665 -5840 6125
+rect -6130 4660 -5840 4665
+rect -7790 4650 -7190 4655
+rect -7790 4500 -7780 4650
+rect -7200 4500 -7190 4650
+rect -7790 4495 -7190 4500
+rect -6130 4500 -6120 4660
+rect -5850 4500 -5840 4660
+rect -6130 4495 -5840 4500
+rect -8010 3240 -7910 3245
+rect -8010 3100 -8000 3240
+rect -7920 3100 -7910 3240
+rect -8010 3095 -7910 3100
+rect -7780 3015 -7200 4495
+rect -5710 4275 -5280 6980
+rect -2000 6540 -1790 6545
+rect -5110 6535 -4920 6540
+rect -5120 6530 -4910 6535
+rect -5120 6380 -5110 6530
+rect -4920 6380 -4910 6530
+rect -5120 6375 -4910 6380
+rect -2000 6390 -1990 6540
+rect -1800 6390 -1790 6540
+rect -2000 6385 -1790 6390
+rect 4250 6540 4460 6545
+rect 4250 6390 4260 6540
+rect 4450 6390 4460 6540
+rect 7390 6535 7580 6550
+rect 4250 6385 4460 6390
+rect 7380 6530 7590 6535
+rect -5110 4895 -4920 6375
+rect -4800 6305 -4610 6310
+rect -4810 6300 -4600 6305
+rect -4810 6150 -4800 6300
+rect -4610 6150 -4600 6300
+rect -4810 6145 -4600 6150
+rect -5120 4890 -4910 4895
+rect -5120 4740 -5110 4890
+rect -4920 4740 -4910 4890
+rect -5120 4735 -4910 4740
+rect -5720 4270 -5270 4275
+rect -5720 3940 -5710 4270
+rect -5280 3940 -5270 4270
+rect -5720 3935 -5270 3940
+rect -5110 3255 -4920 4735
+rect -4800 4665 -4610 6145
+rect -2000 4895 -1810 6385
+rect -1670 6300 -1460 6305
+rect -1670 6150 -1660 6300
+rect -1470 6150 -1460 6300
+rect -1670 6145 -1460 6150
+rect -2000 4890 -1790 4895
+rect -2000 4740 -1990 4890
+rect -1800 4740 -1790 4890
+rect -2000 4735 -1790 4740
+rect -4810 4660 -4600 4665
+rect -4810 4510 -4800 4660
+rect -4610 4510 -4600 4660
+rect -4810 4505 -4600 4510
+rect -5120 3250 -4910 3255
+rect -5120 3100 -5110 3250
+rect -4920 3100 -4910 3250
+rect -5120 3095 -4910 3100
+rect -5700 3025 -5450 3030
+rect -4800 3025 -4610 4505
+rect -2000 3265 -1810 4735
+rect -1660 4665 -1470 6145
+rect 4260 4905 4450 6385
+rect 7380 6380 7390 6530
+rect 7580 6380 7590 6530
+rect 7380 6375 7590 6380
+rect 4580 6290 4790 6295
+rect 4580 6140 4590 6290
+rect 4780 6140 4790 6290
+rect 4580 6135 4790 6140
+rect 5960 6290 6200 6295
+rect 5960 6140 5970 6290
+rect 6190 6140 6200 6290
+rect 5960 6135 6200 6140
+rect 4250 4900 4460 4905
+rect 4250 4750 4260 4900
+rect 4450 4750 4460 4900
+rect 4250 4745 4460 4750
+rect -1670 4660 -1460 4665
+rect -1670 4510 -1660 4660
+rect -1470 4510 -1460 4660
+rect -1670 4505 -1460 4510
+rect -2000 3260 -1790 3265
+rect -2000 3110 -1990 3260
+rect -1800 3110 -1790 3260
+rect -2000 3105 -1790 3110
+rect -1660 3025 -1470 4505
+rect -610 4080 -470 4085
+rect -610 3910 -600 4080
+rect -480 3910 -470 4080
+rect -610 3905 -470 3910
+rect -5710 3020 -5450 3025
+rect -7790 3010 -7190 3015
+rect -7790 2860 -7780 3010
+rect -7200 2860 -7190 3010
+rect -7790 2855 -7190 2860
+rect -5710 2860 -5700 3020
+rect -5460 2860 -5450 3020
+rect -4810 3020 -4600 3025
+rect -4810 2870 -4800 3020
+rect -4610 2870 -4600 3020
+rect -4810 2865 -4600 2870
+rect -1670 3020 -1460 3025
+rect -1670 2870 -1660 3020
+rect -1470 2870 -1460 3020
+rect -1670 2865 -1460 2870
+rect -5710 2855 -5450 2860
+rect -7780 1225 -7200 2855
+rect -7790 1220 -7190 1225
+rect -7790 990 -7780 1220
+rect -7200 990 -7190 1220
+rect -7790 985 -7190 990
+rect -8200 895 -8110 900
+rect -8210 890 -8100 895
+rect -8210 750 -8200 890
+rect -8110 750 -8100 890
+rect -8210 745 -8100 750
+rect -8200 -715 -8110 745
+rect -7780 -385 -7200 985
+rect -7790 -390 -7190 -385
+rect -7790 -620 -7780 -390
+rect -7200 -620 -7190 -390
+rect -7790 -625 -7190 -620
+rect -6860 -410 -6340 -405
+rect -7780 -630 -7200 -625
+rect -8210 -720 -8100 -715
+rect -8210 -860 -8200 -720
+rect -8110 -860 -8100 -720
+rect -8210 -865 -8100 -860
+rect -8200 -870 -8110 -865
+rect -6860 -1000 -6850 -410
+rect -6350 -1000 -6340 -410
+rect -5700 -485 -5450 2855
+rect -5000 1135 -4860 1140
+rect -3660 1135 -3520 1140
+rect -5010 1130 -4850 1135
+rect -5010 990 -5000 1130
+rect -4860 990 -4850 1130
+rect -5010 985 -4850 990
+rect -3670 1130 -3510 1135
+rect -3670 990 -3660 1130
+rect -3520 990 -3510 1130
+rect -3670 985 -3510 990
+rect -5000 -485 -4860 985
+rect -4790 895 -4650 900
+rect -4800 890 -4640 895
+rect -4800 750 -4790 890
+rect -4650 750 -4640 890
+rect -4800 745 -4640 750
+rect -5710 -490 -5440 -485
+rect -5710 -640 -5700 -490
+rect -5450 -640 -5440 -490
+rect -5010 -490 -4850 -485
+rect -5010 -630 -5000 -490
+rect -4860 -630 -4850 -490
+rect -5010 -635 -4850 -630
+rect -5000 -640 -4860 -635
+rect -5710 -645 -5440 -640
+rect -4790 -725 -4650 745
+rect -3660 -485 -3520 985
+rect -3390 895 -3250 900
+rect -3400 890 -3240 895
+rect -3400 750 -3390 890
+rect -3250 750 -3240 890
+rect -3400 745 -3240 750
+rect -3670 -490 -3510 -485
+rect -3670 -630 -3660 -490
+rect -3520 -630 -3510 -490
+rect -3670 -635 -3510 -630
+rect -3660 -640 -3520 -635
+rect -3390 -725 -3250 745
+rect -3030 -420 -2130 -415
+rect -4800 -730 -4640 -725
+rect -4800 -870 -4790 -730
+rect -4650 -870 -4640 -730
+rect -4800 -875 -4640 -870
+rect -3400 -730 -3240 -725
+rect -3400 -870 -3390 -730
+rect -3250 -870 -3240 -730
+rect -3400 -875 -3240 -870
+rect -4790 -880 -4650 -875
+rect -3390 -880 -3250 -875
+rect -6860 -1005 -6340 -1000
+rect -3030 -1000 -3020 -420
+rect -2140 -1000 -2130 -420
+rect -600 -535 -480 3905
+rect 4260 3265 4450 4745
+rect 4590 4655 4780 6135
+rect 5970 4655 6190 6135
+rect 6410 5880 7000 5885
+rect 6410 5590 6420 5880
+rect 6990 5590 7000 5880
+rect 6410 5585 7000 5590
+rect 4580 4650 4790 4655
+rect 4580 4500 4590 4650
+rect 4780 4500 4790 4650
+rect 4580 4495 4790 4500
+rect 5960 4650 6200 4655
+rect 5960 4500 5970 4650
+rect 6190 4500 6200 4650
+rect 5960 4495 6200 4500
+rect 4250 3260 4460 3265
+rect 4250 3110 4260 3260
+rect 4450 3110 4460 3260
+rect 4250 3105 4460 3110
+rect 1180 3020 1330 3025
+rect 1180 2640 1190 3020
+rect 1320 2640 1330 3020
+rect 1520 2640 1530 3030
+rect 1670 3015 1680 3030
+rect 4590 3015 4780 4495
+rect 5970 3015 6190 4495
+rect 6420 4085 6990 5585
+rect 7390 4895 7580 6375
+rect 7700 6305 7890 6310
+rect 7690 6300 7900 6305
+rect 7690 6150 7700 6300
+rect 7890 6150 7900 6300
+rect 7690 6145 7900 6150
+rect 8380 6300 8600 6305
+rect 8380 6150 8390 6300
+rect 8590 6150 8600 6300
+rect 8380 6145 8600 6150
+rect 7380 4890 7590 4895
+rect 7380 4740 7390 4890
+rect 7580 4740 7590 4890
+rect 7380 4735 7590 4740
+rect 6410 4080 7000 4085
+rect 6410 3910 6420 4080
+rect 6990 3910 7000 4080
+rect 6410 3905 7000 3910
+rect 1670 3010 1870 3015
+rect 1860 2860 1870 3010
+rect 1670 2855 1870 2860
+rect 4580 3010 4790 3015
+rect 4580 2860 4590 3010
+rect 4780 2860 4790 3010
+rect 4580 2855 4790 2860
+rect 5960 3010 6200 3015
+rect 5960 2860 5970 3010
+rect 6190 2860 6200 3010
+rect 5960 2855 6200 2860
+rect 1670 2640 1680 2855
+rect 1180 2635 1330 2640
+rect 5970 1145 6190 2855
+rect 6420 2720 6990 3905
+rect 7390 3255 7580 4735
+rect 7700 4665 7890 6145
+rect 7690 4660 7900 4665
+rect 7690 4510 7700 4660
+rect 7890 4510 7900 4660
+rect 8390 4655 8590 6145
+rect 8700 5885 9300 7075
+rect 9370 6540 9550 6545
+rect 9370 6370 9380 6540
+rect 9540 6370 9550 6540
+rect 11760 6530 11970 6535
+rect 11760 6380 11770 6530
+rect 11960 6380 11970 6530
+rect 11760 6375 11970 6380
+rect 9370 6365 9550 6370
+rect 8690 5880 9310 5885
+rect 8690 5570 8700 5880
+rect 9300 5570 9310 5880
+rect 8690 5565 9310 5570
+rect 7690 4505 7900 4510
+rect 8380 4650 8600 4655
+rect 8380 4510 8390 4650
+rect 8590 4510 8600 4650
+rect 8380 4505 8600 4510
+rect 7380 3250 7590 3255
+rect 7380 3100 7390 3250
+rect 7580 3100 7590 3250
+rect 7380 3095 7590 3100
+rect 7700 3040 7890 4505
+rect 8700 4245 9300 5565
+rect 9380 4905 9540 6365
+rect 9660 6310 9840 6315
+rect 9660 6140 9670 6310
+rect 9830 6140 9840 6310
+rect 10650 6290 11060 6295
+rect 10650 6150 10660 6290
+rect 11050 6150 11060 6290
+rect 10650 6145 11060 6150
+rect 9660 6135 9840 6140
+rect 9370 4900 9550 4905
+rect 9370 4730 9380 4900
+rect 9540 4730 9550 4900
+rect 9370 4725 9550 4730
+rect 8690 4240 9310 4245
+rect 8690 3930 8700 4240
+rect 9300 3930 9310 4240
+rect 8690 3925 9310 3930
+rect 9380 3265 9540 4725
+rect 9670 4675 9830 6135
+rect 9660 4670 9840 4675
+rect 9660 4500 9670 4670
+rect 9830 4500 9840 4670
+rect 10660 4665 11050 6145
+rect 11770 4895 11960 6375
+rect 12100 6300 12310 6305
+rect 12100 6150 12110 6300
+rect 12300 6150 12310 6300
+rect 12100 6145 12310 6150
+rect 11760 4890 11970 4895
+rect 11760 4740 11770 4890
+rect 11960 4740 11970 4890
+rect 11760 4735 11970 4740
+rect 10650 4660 11060 4665
+rect 10650 4520 10660 4660
+rect 11050 4520 11060 4660
+rect 10650 4515 11060 4520
+rect 9660 4495 9840 4500
+rect 9370 3260 9550 3265
+rect 9370 3090 9380 3260
+rect 9540 3090 9550 3260
+rect 9370 3085 9550 3090
+rect 7700 3025 7900 3040
+rect 9670 3035 9830 4495
+rect 9660 3030 9840 3035
+rect 8390 3025 8590 3030
+rect 7690 3020 7900 3025
+rect 7690 2870 7700 3020
+rect 7890 2870 7900 3020
+rect 7690 2865 7900 2870
+rect 5960 1140 6200 1145
+rect 7700 1140 7900 2865
+rect 8380 3020 8600 3025
+rect 8380 2860 8390 3020
+rect 8590 2860 8600 3020
+rect 8380 2855 8600 2860
+rect 9660 2860 9670 3030
+rect 9830 2860 9840 3030
+rect 10660 3025 11050 4515
+rect 11770 3255 11960 4735
+rect 12110 4665 12300 6145
+rect 12100 4660 12310 4665
+rect 12100 4510 12110 4660
+rect 12300 4510 12310 4660
+rect 12100 4505 12310 4510
+rect 11760 3250 11970 3255
+rect 11760 3100 11770 3250
+rect 11960 3100 11970 3250
+rect 11760 3095 11970 3100
+rect 11770 3090 11960 3095
+rect 12110 3025 12300 4505
+rect 9660 2855 9840 2860
+rect 10650 3020 11060 3025
+rect 10650 2860 10660 3020
+rect 11050 2860 11060 3020
+rect 12100 3020 12310 3025
+rect 12100 2870 12110 3020
+rect 12300 2870 12310 3020
+rect 12100 2865 12310 2870
+rect 12110 2860 12300 2865
+rect 10650 2855 11060 2860
+rect 5960 980 5970 1140
+rect 6190 1130 6430 1140
+rect 7660 1135 7900 1140
+rect 6190 990 6270 1130
+rect 6410 990 6430 1130
+rect 6190 980 6430 990
+rect 7650 1130 7900 1135
+rect 7650 990 7660 1130
+rect 7880 1090 7900 1130
+rect 7880 990 7890 1090
+rect 7650 985 7890 990
+rect 7660 980 7890 985
+rect 5960 975 6200 980
+rect 2890 -420 3690 -415
+rect 1260 -460 1640 -455
+rect -610 -540 -470 -535
+rect -610 -660 -600 -540
+rect -480 -660 -470 -540
+rect 1260 -630 1270 -460
+rect 1630 -630 1640 -460
+rect 1260 -635 1640 -630
+rect -610 -665 -470 -660
+rect -3030 -1005 -2130 -1000
+rect -60 -870 140 -865
+rect -6280 -1120 -6180 -1115
+rect -6280 -1200 -6270 -1120
+rect -6190 -1200 -6180 -1120
+rect -6280 -1205 -6180 -1200
+rect -6280 -1820 -6220 -1205
+rect -60 -1230 -50 -870
+rect 130 -1230 140 -870
+rect 2890 -990 2900 -420
+rect 3680 -990 3690 -420
+rect 2890 -995 3690 -990
+rect 5350 -430 6050 -425
+rect 5350 -1000 5360 -430
+rect 6040 -1000 6050 -430
+rect 6270 -485 6410 980
+rect 6510 895 6650 900
+rect 6500 890 6660 895
+rect 6500 750 6510 890
+rect 6650 750 6660 890
+rect 6500 745 6660 750
+rect 6260 -490 6420 -485
+rect 6260 -630 6270 -490
+rect 6410 -630 6420 -490
+rect 6260 -635 6420 -630
+rect 6270 -640 6410 -635
+rect 6510 -725 6650 745
+rect 6890 -475 7220 960
+rect 6880 -480 7230 -475
+rect 6880 -640 6890 -480
+rect 7220 -640 7230 -480
+rect 7660 -485 7800 980
+rect 7890 895 8030 900
+rect 7880 890 8040 895
+rect 7880 750 7890 890
+rect 8030 750 8040 890
+rect 7880 745 8040 750
+rect 7650 -490 7810 -485
+rect 7650 -630 7660 -490
+rect 7800 -630 7810 -490
+rect 7650 -635 7810 -630
+rect 7660 -640 7800 -635
+rect 6880 -645 7230 -640
+rect 7890 -725 8030 745
+rect 8390 -485 8590 2855
+rect 10830 1150 11240 1155
+rect 9870 1135 10010 1140
+rect 9860 1130 10020 1135
+rect 9860 990 9870 1130
+rect 10010 990 10020 1130
+rect 9860 985 10020 990
+rect 10830 990 10840 1150
+rect 11230 990 11240 1150
+rect 11870 1135 12010 1140
+rect 10830 985 11240 990
+rect 11860 1130 12020 1135
+rect 11860 990 11870 1130
+rect 12010 990 12020 1130
+rect 11860 985 12020 990
+rect 9300 -420 9640 -415
+rect 8380 -490 8600 -485
+rect 8380 -630 8390 -490
+rect 8590 -630 8600 -490
+rect 8380 -635 8600 -630
+rect 6500 -730 6660 -725
+rect 6500 -870 6510 -730
+rect 6650 -870 6660 -730
+rect 6500 -875 6660 -870
+rect 7880 -730 8040 -725
+rect 7880 -870 7890 -730
+rect 8030 -870 8040 -730
+rect 7880 -875 8040 -870
+rect 6510 -880 6650 -875
+rect 7890 -880 8030 -875
+rect 5350 -1005 6050 -1000
+rect 9300 -1000 9310 -420
+rect 9630 -1000 9640 -420
+rect 9870 -485 10010 985
+rect 10130 895 10270 900
+rect 10120 890 10280 895
+rect 10120 750 10130 890
+rect 10270 750 10280 890
+rect 10120 745 10280 750
+rect 9860 -490 10020 -485
+rect 9860 -630 9870 -490
+rect 10010 -630 10020 -490
+rect 9860 -635 10020 -630
+rect 9870 -640 10010 -635
+rect 10130 -725 10270 745
+rect 10840 -485 11230 985
+rect 11870 -485 12010 985
+rect 12160 895 12300 900
+rect 12150 890 12310 895
+rect 12150 750 12160 890
+rect 12300 750 12310 890
+rect 12150 745 12310 750
+rect 10830 -490 11240 -485
+rect 10830 -630 10840 -490
+rect 11230 -630 11240 -490
+rect 10830 -635 11240 -630
+rect 11860 -490 12020 -485
+rect 11860 -630 11870 -490
+rect 12010 -630 12020 -490
+rect 11860 -635 12020 -630
+rect 10840 -640 11230 -635
+rect 11870 -640 12010 -635
+rect 12160 -725 12300 745
+rect 10120 -730 10280 -725
+rect 10120 -870 10130 -730
+rect 10270 -870 10280 -730
+rect 10120 -875 10280 -870
+rect 12150 -730 12310 -725
+rect 12150 -870 12160 -730
+rect 12300 -870 12310 -730
+rect 12150 -875 12310 -870
+rect 10130 -880 10270 -875
+rect 12160 -880 12300 -875
+rect 9300 -1005 9640 -1000
+rect -60 -1235 140 -1230
+rect 9020 -1230 9150 -1225
+rect 9020 -1350 9030 -1230
+rect 9140 -1350 9150 -1230
+rect 9020 -1355 9150 -1350
+rect 20 -1740 120 -1735
+rect -1030 -1800 -950 -1795
+rect -1030 -1820 -1020 -1800
+rect -6280 -1870 -1020 -1820
+rect -960 -1870 -950 -1800
+rect 20 -1830 30 -1740
+rect 110 -1770 120 -1740
+rect 9070 -1770 9130 -1355
+rect 110 -1830 9130 -1770
+rect 20 -1835 120 -1830
+rect -6280 -1875 -950 -1870
+rect -6280 -1880 -990 -1875
+<< via3 >>
+rect -6280 7040 -5770 7560
+rect -1200 7060 -570 7530
+rect 2990 7070 3620 7540
+rect 8470 7080 9100 7550
+rect -6850 -1000 -6350 -410
+rect -3020 -1000 -2140 -420
+rect 1190 2640 1320 3020
+rect 1530 3010 1670 3030
+rect 1530 2860 1670 3010
+rect 1530 2640 1670 2860
+rect 1270 -630 1630 -460
+rect -50 -1230 130 -870
+rect 2900 -990 3680 -420
+rect 5360 -1000 6040 -430
+rect 9310 -1000 9630 -420
+<< metal4 >>
+rect -6281 7560 -5769 7561
+rect -6281 7040 -6280 7560
+rect -5770 7040 -5769 7560
+rect 8469 7550 9101 7551
+rect 2989 7540 3621 7541
+rect -1201 7530 -569 7531
+rect -1201 7060 -1200 7530
+rect -570 7060 -569 7530
+rect 2989 7070 2990 7540
+rect 3620 7070 3621 7540
+rect 8469 7080 8470 7550
+rect 9100 7080 9101 7550
+rect 8469 7079 9101 7080
+rect 2989 7069 3621 7070
+rect -1201 7059 -569 7060
+rect -6281 7039 -5769 7040
+rect 210 2860 480 3260
+rect 1529 3030 1671 3031
+rect 1189 3020 1321 3021
+rect 630 2640 1190 3020
+rect 1320 2640 1321 3020
+rect 1189 2639 1321 2640
+rect 1529 2640 1530 3030
+rect 1670 3010 1671 3030
+rect 1670 2640 1671 2660
+rect 1529 2639 1671 2640
+rect 670 1940 2150 2310
+rect -6851 -410 -6349 -409
+rect -6851 -1000 -6850 -410
+rect -6350 -1000 -6349 -410
+rect -6851 -1001 -6349 -1000
+rect -3021 -420 -2139 -419
+rect -3021 -1000 -3020 -420
+rect -2140 -1000 -2139 -420
+rect 2899 -420 3681 -419
+rect 1269 -460 1631 -459
+rect 1269 -630 1270 -460
+rect 1630 -630 1631 -460
+rect 1269 -631 1631 -630
+rect -51 -870 131 -869
+rect -3021 -1001 -2139 -1000
+rect -1310 -1230 -50 -870
+rect 130 -1230 131 -870
+rect -51 -1231 131 -1230
+rect 1270 -1310 1630 -631
+rect 2899 -990 2900 -420
+rect 3680 -990 3681 -420
+rect 9309 -420 9631 -419
+rect 2899 -991 3681 -990
+rect 5359 -430 6041 -429
+rect 5359 -1000 5360 -430
+rect 6040 -1000 6041 -430
+rect 5359 -1001 6041 -1000
+rect 9309 -1000 9310 -420
+rect 9630 -1000 9631 -420
+rect 9309 -1001 9631 -1000
+rect 700 -1380 2630 -1310
+rect 700 -1850 2470 -1380
+<< via4 >>
+rect -6280 7040 -5770 7560
+rect -1200 7060 -570 7530
+rect 2990 7070 3620 7540
+rect 8470 7080 9100 7550
+rect 1530 2660 1670 3010
+rect 1670 2660 1860 3010
+rect -6850 -1000 -6350 -410
+rect -3020 -1000 -2140 -420
+rect 2900 -990 3680 -420
+rect 5360 -1000 6040 -430
+rect 9310 -1000 9630 -420
+<< metal5 >>
+rect -6304 7570 -5746 7584
+rect 4360 7570 5040 7580
+rect 8446 7570 9124 7574
+rect -9610 7560 12600 7570
+rect -9610 7040 -6280 7560
+rect -5770 7550 12600 7560
+rect -5770 7540 8470 7550
+rect -5770 7530 2990 7540
+rect -5770 7060 -1200 7530
+rect -570 7070 2990 7530
+rect 3620 7080 8470 7540
+rect 9100 7080 12600 7550
+rect 3620 7070 12600 7080
+rect -570 7060 12600 7070
+rect -5770 7040 12600 7060
+rect -9610 6510 -9210 7040
+rect -6310 6580 -5740 7040
+rect -1224 7036 -546 7040
+rect 9910 6550 10340 7040
+rect 12040 6480 12600 7040
+rect 1500 3010 2310 3040
+rect 1500 2660 1530 3010
+rect 1860 2660 2310 3010
+rect 1500 2630 2310 2660
+rect 670 1940 2150 2310
+rect -9590 -400 -9160 310
+rect -6340 -386 -5590 340
+rect -6874 -400 -5590 -386
+rect 8790 -396 9340 400
+rect -3044 -400 -2116 -396
+rect 2876 -400 3704 -396
+rect 8790 -400 9654 -396
+rect 12200 -400 12750 370
+rect -9590 -410 12750 -400
+rect -9590 -1000 -6850 -410
+rect -6350 -420 12750 -410
+rect -6350 -1000 -3020 -420
+rect -2140 -990 2900 -420
+rect 3680 -430 9310 -420
+rect 3680 -990 5360 -430
+rect -2140 -1000 5360 -990
+rect 6040 -1000 9310 -430
+rect 9630 -1000 12750 -420
+rect -9590 -1010 12750 -1000
+rect -6874 -1024 -6326 -1010
+rect -3044 -1024 -2116 -1010
+rect -90 -1850 550 -1010
+rect 2370 -1014 3704 -1010
+rect 2370 -1850 3010 -1014
+rect 5336 -1024 6064 -1010
+rect 9286 -1024 9654 -1010
+use currm_n  currm_n_0
+timestamp 1653925904
+transform 1 0 820 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_1
+timestamp 1653925904
+transform 1 0 1520 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_2
+timestamp 1653925904
+transform 1 0 2220 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_3
+timestamp 1653925904
+transform 1 0 120 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_4
+timestamp 1653925904
+transform 1 0 2920 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_5
+timestamp 1653925904
+transform 1 0 -580 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_6
+timestamp 1653925904
+transform 1 0 4010 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_7
+timestamp 1653925904
+transform 1 0 4710 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_8
+timestamp 1653925904
+transform 1 0 5410 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_9
+timestamp 1653925904
+transform 1 0 7510 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_10
+timestamp 1653925904
+transform 1 0 6810 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_11
+timestamp 1653925904
+transform 1 0 6110 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_12
+timestamp 1653925904
+transform 1 0 7510 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_13
+timestamp 1653925904
+transform 1 0 6810 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_14
+timestamp 1653925904
+transform 1 0 6110 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_15
+timestamp 1653925904
+transform 1 0 -5170 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_16
+timestamp 1653925904
+transform 1 0 -4470 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_17
+timestamp 1653925904
+transform 1 0 -3770 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_18
+timestamp 1653925904
+transform 1 0 -2370 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_19
+timestamp 1653925904
+transform 1 0 -3070 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_20
+timestamp 1653925904
+transform 1 0 -1670 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_21
+timestamp 1653925904
+transform 1 0 -5170 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_22
+timestamp 1653925904
+transform 1 0 -3770 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_23
+timestamp 1653925904
+transform 1 0 -4470 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_24
+timestamp 1653925904
+transform 1 0 8210 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_25
+timestamp 1653925904
+transform 1 0 -5870 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_26
+timestamp 1653925904
+transform 1 0 -6760 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_27
+timestamp 1653925904
+transform 1 0 -8860 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_28
+timestamp 1653925904
+transform 1 0 -8160 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_29
+timestamp 1653925904
+transform 1 0 -7460 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_30
+timestamp 1653925904
+transform 1 0 -9560 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_31
+timestamp 1653925904
+transform 1 0 -9560 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_32
+timestamp 1653925904
+transform 1 0 11800 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_33
+timestamp 1653925904
+transform 1 0 -5870 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_34
+timestamp 1653925904
+transform 1 0 -8860 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_35
+timestamp 1653925904
+transform 1 0 9700 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_36
+timestamp 1653925904
+transform 1 0 10400 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_37
+timestamp 1653925904
+transform 1 0 11100 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_38
+timestamp 1653925904
+transform 1 0 9000 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_39
+timestamp 1653925904
+transform 1 0 11100 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_40
+timestamp 1653925904
+transform 1 0 10400 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_41
+timestamp 1653925904
+transform 1 0 9700 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_42
+timestamp 1653925904
+transform 1 0 11800 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_43
+timestamp 1653925904
+transform 1 0 8210 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_44
+timestamp 1653925904
+transform 1 0 1520 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_45
+timestamp 1653925904
+transform 1 0 2220 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_46
+timestamp 1653925904
+transform 1 0 120 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_47
+timestamp 1653925904
+transform 1 0 820 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_48
+timestamp 1653925904
+transform 1 0 -8160 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_49
+timestamp 1653925904
+transform 1 0 -7460 0 1 -1030
+box -60 -870 658 760
+use currm_p  currm_p_0
+timestamp 1653925904
+transform 1 0 170 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_1
+timestamp 1653925904
+transform 1 0 1510 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_2
+timestamp 1653925904
+transform 1 0 -1170 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_3
+timestamp 1653925904
+transform 1 0 -2510 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_4
+timestamp 1653925904
+transform 1 0 -2510 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_5
+timestamp 1653925904
+transform 1 0 -2510 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_6
+timestamp 1653925904
+transform 1 0 -3850 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_7
+timestamp 1653925904
+transform 1 0 -3850 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_8
+timestamp 1653925904
+transform 1 0 -3850 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_9
+timestamp 1653925904
+transform 1 0 -5190 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_10
+timestamp 1653925904
+transform 1 0 -5190 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_11
+timestamp 1653925904
+transform 1 0 -5190 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_12
+timestamp 1653925904
+transform 1 0 2850 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_13
+timestamp 1653925904
+transform 1 0 6870 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_14
+timestamp 1653925904
+transform 1 0 6870 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_15
+timestamp 1653925904
+transform 1 0 6870 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_16
+timestamp 1653925904
+transform 1 0 5530 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_17
+timestamp 1653925904
+transform 1 0 5530 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_18
+timestamp 1653925904
+transform 1 0 5530 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_19
+timestamp 1653925904
+transform 1 0 4190 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_20
+timestamp 1653925904
+transform 1 0 4190 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_21
+timestamp 1653925904
+transform 1 0 4190 0 1 3450
+box -60 -810 1298 848
+use currm_ps  currm_ps_0
+timestamp 1653409843
+transform 1 0 8200 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_1
+timestamp 1653409843
+transform 1 0 9290 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_2
+timestamp 1653409843
+transform 1 0 9290 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_3
+timestamp 1653409843
+transform 1 0 9290 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_4
+timestamp 1653409843
+transform 1 0 10380 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_5
+timestamp 1653409843
+transform 1 0 10380 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_6
+timestamp 1653409843
+transform 1 0 10380 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_7
+timestamp 1653409843
+transform 1 0 11470 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_8
+timestamp 1653409843
+transform 1 0 11470 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_9
+timestamp 1653409843
+transform 1 0 11470 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_10
+timestamp 1653409843
+transform 1 0 8200 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_11
+timestamp 1653409843
+transform 1 0 -7380 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_12
+timestamp 1653409843
+transform 1 0 -9560 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_13
+timestamp 1653409843
+transform 1 0 -8470 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_14
+timestamp 1653409843
+transform 1 0 -7380 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_15
+timestamp 1653409843
+transform 1 0 -7380 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_16
+timestamp 1653409843
+transform 1 0 -9560 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_17
+timestamp 1653409843
+transform 1 0 -8470 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_18
+timestamp 1653409843
+transform 1 0 -6290 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_19
+timestamp 1653409843
+transform 1 0 -6290 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_20
+timestamp 1653409843
+transform 1 0 -9560 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_21
+timestamp 1653409843
+transform 1 0 -8470 0 1 2690
+box -50 -50 1052 1608
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2
+timestamp 1653925904
+transform 0 1 -2159 -1 0 3473
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3
+timestamp 1653925904
+transform 0 1 5041 -1 0 3483
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW  sky130_fd_pr__cap_mim_m3_2_MJMGTW_0
+timestamp 1653911185
+transform 0 1 10711 -1 0 3483
+box -3351 -2101 3373 2101
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW  sky130_fd_pr__cap_mim_m3_2_MJMGTW_1
+timestamp 1653911185
+transform 0 1 -7689 -1 0 3443
+box -3351 -2101 3373 2101
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ  sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0
+timestamp 1653911185
+transform 1 0 -2149 0 1 -2449
+box -3351 -1101 3373 1101
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ  sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1
+timestamp 1653911185
+transform -1 0 5083 0 -1 -2449
+box -3351 -1101 3373 1101
+use sky130_fd_pr__nfet_01v8_6H2JYD  sky130_fd_pr__nfet_01v8_6H2JYD_0
+timestamp 1653899151
+transform 1 0 -669 0 1 -1560
+box -211 -310 211 310
+use sky130_fd_pr__nfet_01v8_E6B2KN  sky130_fd_pr__nfet_01v8_E6B2KN_0
+timestamp 1653925904
+transform 1 0 1155 0 1 1760
+box -325 -410 325 410
+use sky130_fd_pr__nfet_01v8_E6B2KN  sky130_fd_pr__nfet_01v8_E6B2KN_1
+timestamp 1653925904
+transform 1 0 1795 0 1 1760
+box -325 -410 325 410
+use sky130_fd_pr__nfet_01v8_LH2JGW  sky130_fd_pr__nfet_01v8_LH2JGW_0
+timestamp 1653925904
+transform 1 0 -207 0 1 -1460
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_LH2JGW  sky130_fd_pr__nfet_01v8_LH2JGW_1
+timestamp 1653925904
+transform 1 0 -6177 0 1 -680
+box -263 -410 263 410
+use sky130_fd_pr__nfet_01v8_LH2JGW  sky130_fd_pr__nfet_01v8_LH2JGW_2
+timestamp 1653925904
+transform 1 0 9123 0 1 -690
+box -263 -410 263 410
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_0
+timestamp 1653925904
+transform 1 0 -5981 0 1 6339
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_U47ZGH  sky130_fd_pr__pfet_01v8_U47ZGH_1
+timestamp 1653925904
+transform 1 0 8509 0 1 6339
+box -359 -419 359 419
+use sky130_fd_pr__pfet_01v8_UAQRRG  sky130_fd_pr__pfet_01v8_UAQRRG_0
+timestamp 1653899151
+transform 1 0 -689 0 1 -911
+box -211 -319 211 319
+<< labels >>
+rlabel metal2 1440 -640 1490 -540 1 I_Bias
+rlabel metal1 -490 -1740 -440 -1690 1 Disable_FB
+rlabel metal1 1310 1990 1390 2060 1 InP
+rlabel metal1 1540 1990 1620 2060 1 InN
+rlabel metal5 -6580 7180 -6380 7500 1 VP
+rlabel metal2 11820 1690 12190 2060 1 OutN
+rlabel metal3 -7670 1780 -7300 2150 1 OutP
+rlabel metal5 4080 -920 4600 -540 1 VN
+rlabel metal1 -820 -380 -790 -350 1 Disable_FB_B
+rlabel metal3 7710 1770 7880 1960 1 VM34D
+rlabel metal1 9000 1390 9030 1420 1 VM31D
+rlabel metal1 -6320 1590 -6290 1630 1 VM30D
+rlabel space -4970 1880 -4770 2080 1 VM9D
+rlabel metal2 990 2420 1170 2500 1 VM16D
+rlabel metal2 1770 2410 1950 2490 1 VM14D
+<< end >>
diff --git a/mag/feedback/fb_amp.spice b/mag/feedback/fb_amp.spice
new file mode 100644
index 0000000..92e5170
--- /dev/null
+++ b/mag/feedback/fb_amp.spice
@@ -0,0 +1,229 @@
+* SPICE3 file created from fb_amp.ext - technology: sky130B
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_4LMUGG a_355_n200# a_413_n297# a_n285_n200# a_29_n297#
++ a_n227_n297# a_285_n297# a_227_n200# a_n157_n200# a_n541_n200# w_n679_n419# a_n483_n297#
++ a_n99_n297# a_483_n200# a_157_n297# a_99_n200# a_n413_n200# a_n29_n200# a_n355_n297#
+X0 a_227_n200# a_157_n297# a_99_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X1 a_n285_n200# a_n355_n297# a_n413_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X2 a_99_n200# a_29_n297# a_n29_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X3 a_355_n200# a_285_n297# a_227_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X4 a_483_n200# a_413_n297# a_355_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X5 a_n29_n200# a_n99_n297# a_n157_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X6 a_n413_n200# a_n483_n297# a_n541_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X7 a_n157_n200# a_n227_n297# a_n285_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=350000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_LKHJAY a_29_n297# a_n287_n200# a_n229_n297# a_229_n200#
++ w_n425_n419# a_n29_n200#
+X0 a_229_n200# a_29_n297# a_n29_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X1 a_n29_n200# a_n229_n297# a_n287_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+.ends
+
+.subckt currm_p m1_60_n360# m1_70_460# m1_190_n590# m1_n50_n680#
+Xsky130_fd_pr__pfet_01v8_lvt_4LMUGG_0 m1_190_n590# m1_n50_n680# m1_60_n360# m1_n50_n680#
++ m1_n50_n680# m1_n50_n680# m1_60_n360# m1_190_n590# m1_60_n360# m1_70_460# m1_n50_n680#
++ m1_n50_n680# m1_60_n360# m1_n50_n680# m1_190_n590# m1_190_n590# m1_60_n360# m1_n50_n680#
++ sky130_fd_pr__pfet_01v8_lvt_4LMUGG
+Xsky130_fd_pr__pfet_01v8_lvt_LKHJAY_0 m1_n50_n680# m1_70_460# m1_n50_n680# m1_70_460#
++ m1_70_460# m1_60_n360# sky130_fd_pr__pfet_01v8_lvt_LKHJAY
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PD4XN5 a_29_n297# a_n129_n297# a_129_n200# w_n325_n419#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n297# a_n29_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n297# a_n187_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U4PWGH a_n129_n200# a_63_n200# a_n225_n200# a_15_n297#
++ a_n81_231# a_n177_n297# a_n273_231# a_n321_n200# w_n551_n419# a_n33_n200# a_159_n200#
++ a_n413_n200# a_111_231# a_255_n200# a_207_n297# a_351_n200# a_n369_n297# a_303_231#
+X0 a_255_n200# a_207_n297# a_159_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n200# a_n369_n297# a_n413_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_231# a_63_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_231# a_n321_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X4 a_63_n200# a_15_n297# a_n33_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_n297# a_n225_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_351_n200# a_303_231# a_255_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_n33_n200# a_n81_231# a_n129_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt currm_ps m1_170_170# a_132_72# w_132_72# m1_80_400#
+Xsky130_fd_pr__pfet_01v8_PD4XN5_0 a_132_72# a_132_72# w_132_72# w_132_72# m1_80_400#
++ w_132_72# sky130_fd_pr__pfet_01v8_PD4XN5
+Xsky130_fd_pr__pfet_01v8_U4PWGH_0 m1_170_170# m1_170_170# m1_80_400# a_132_72# a_132_72#
++ a_132_72# a_132_72# m1_170_170# w_132_72# m1_80_400# m1_80_400# m1_80_400# a_132_72#
++ m1_170_170# a_132_72# m1_80_400# a_132_72# a_132_72# sky130_fd_pr__pfet_01v8_U4PWGH
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_PJG2KG a_50_n200# a_n108_n200# a_n50_n288# a_n210_n374#
+X0 a_50_n200# a_n50_n288# a_n108_n200# a_n210_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_82JNGJ a_n221_n200# a_n129_n200# a_63_n200# a_111_222#
++ a_n33_n200# a_15_n288# a_n81_222# a_n177_n288# a_159_n200# a_n323_n374#
+X0 a_n33_n200# a_n81_222# a_n129_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_159_n200# a_111_222# a_63_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_63_n200# a_15_n288# a_n33_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_n129_n200# a_n177_n288# a_n221_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt currm_n m1_68_150# m1_164_390# a_122_62# VSUBS
+Xsky130_fd_pr__nfet_01v8_PJG2KG_0 VSUBS m1_68_150# a_122_62# VSUBS sky130_fd_pr__nfet_01v8_PJG2KG
+Xsky130_fd_pr__nfet_01v8_82JNGJ_0 m1_68_150# m1_164_390# m1_164_390# a_122_62# m1_68_150#
++ a_122_62# a_122_62# a_122_62# m1_68_150# VSUBS sky130_fd_pr__nfet_01v8_82JNGJ
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_6H2JYD a_n73_n100# a_n33_n188# a_15_n100# a_n175_n274#
+X0 a_15_n100# a_n33_n188# a_n73_n100# a_n175_n274# sky130_fd_pr__nfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U47ZGH a_n221_n200# a_n129_n200# a_63_n200# a_15_n297#
++ a_n81_231# w_n359_n419# a_n177_n297# a_n33_n200# a_159_n200# a_111_231#
+X0 a_159_n200# a_111_231# a_63_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_n297# a_n33_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n129_n200# a_n177_n297# a_n221_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_n33_n200# a_n81_231# a_n129_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_N3PKNJ c2_n3251_n1000# m4_n3351_n1100#
+X0 c2_n3251_n1000# m4_n3351_n1100# sky130_fd_pr__cap_mim_m3_2 l=1e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_MJMGTW c2_n3251_n2000# m4_n3351_n2100#
+X0 c2_n3251_n2000# m4_n3351_n2100# sky130_fd_pr__cap_mim_m3_2 l=2e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_LH2JGW a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_E6B2KN a_129_n200# a_29_n288# a_n129_n288# a_n289_n374#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n288# a_n29_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n288# a_n187_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_UAQRRG a_n73_n100# a_15_n100# w_n211_n319# a_n33_n197#
+X0 a_15_n100# a_n33_n197# a_n73_n100# w_n211_n319# sky130_fd_pr__pfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+
+Xcurrm_p_5 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_ps_15 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_n_2 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_6 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_ps_16 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_n_3 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_7 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_ps_17 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_n_4 currm_n_4/m1_68_150# m2_3320_1130# m2_3320_1130# VN currm_n
+Xcurrm_ps_0 VM30D VM34D VP currm_ps_0/m1_80_400# currm_ps
+Xcurrm_ps_18 m2_n5800_4500# m2_n5800_4500# VP currm_ps_18/m1_80_400# currm_ps
+Xcurrm_p_8 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_n_5 currm_n_5/m1_68_150# m1_4960_670# m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_6H2JYD_0 Disable_FB_B Disable_FB VN VN sky130_fd_pr__nfet_01v8_6H2JYD
+Xcurrm_ps_1 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_ps_19 VM31D m2_n5800_4500# VP currm_ps_19/m1_80_400# currm_ps
+Xcurrm_p_9 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_n_6 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_ps_2 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_n_7 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_ps_3 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_n_8 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_ps_4 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_n_9 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_p_20 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_ps_5 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_p_10 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_p_21 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_ps_6 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_p_11 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_ps_7 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_p_12 currm_p_12/m1_60_n360# VP m2_3320_1130# VM14D currm_p
+Xcurrm_ps_8 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_p_13 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_ps_9 OutN VM34D VP m2_9370_4730# currm_ps
+Xcurrm_p_14 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_p_15 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_p_16 m2_4260_3100# VP VM34D VM14D currm_p
+Xsky130_fd_pr__pfet_01v8_U47ZGH_0 VP m2_n5800_4500# m2_n5800_4500# Disable_FB_B Disable_FB_B
++ VP Disable_FB_B VP VP Disable_FB_B sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_0 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xcurrm_p_17 m2_4260_3100# VP VM34D VM14D currm_p
+Xsky130_fd_pr__pfet_01v8_U47ZGH_1 VP VM34D VM34D Disable_FB_B Disable_FB_B VP Disable_FB_B
++ VP VP Disable_FB_B sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_1 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xcurrm_p_18 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_n_40 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_p_19 m2_4260_3100# VP VM34D VM14D currm_p
+Xcurrm_n_30 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_41 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_n_31 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_20 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_42 m2_9090_740# OutN VM31D VN currm_n
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_0 VP VN sky130_fd_pr__cap_mim_m3_2_MJMGTW
+Xcurrm_n_21 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_32 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_n_10 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_n_43 currm_n_43/m1_68_150# VM34D I_Bias VN currm_n
+Xsky130_fd_pr__nfet_01v8_LH2JGW_0 Disable_FB VN I_Bias Disable_FB VN VN sky130_fd_pr__nfet_01v8_LH2JGW
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_1 VP VN sky130_fd_pr__cap_mim_m3_2_MJMGTW
+Xcurrm_n_22 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_44 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_33 currm_n_33/m1_68_150# m2_n5800_4500# I_Bias VN currm_n
+Xcurrm_n_11 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_LH2JGW_1 Disable_FB VN VM31D Disable_FB VN VN sky130_fd_pr__nfet_01v8_LH2JGW
+Xcurrm_n_34 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_23 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_45 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_12 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_LH2JGW_2 Disable_FB VN VM30D Disable_FB VN VN sky130_fd_pr__nfet_01v8_LH2JGW
+Xcurrm_n_46 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_13 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_n_24 currm_n_24/m1_68_150# VM30D VM30D VN currm_n
+Xcurrm_n_35 m2_9090_740# OutN VM31D VN currm_n
+Xsky130_fd_pr__nfet_01v8_E6B2KN_0 m1_950_1560# InP InP VN VM16D m1_950_1560# sky130_fd_pr__nfet_01v8_E6B2KN
+Xsky130_fd_pr__pfet_01v8_UAQRRG_0 Disable_FB_B VP VP Disable_FB sky130_fd_pr__pfet_01v8_UAQRRG
+Xcurrm_n_25 currm_n_25/m1_68_150# VM31D VM31D VN currm_n
+Xcurrm_n_47 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_14 m2_4080_740# VM34D m1_4960_670# VN currm_n
+Xcurrm_n_36 m2_9090_740# OutN VM31D VN currm_n
+Xsky130_fd_pr__nfet_01v8_E6B2KN_1 m1_950_1560# InN InN VN VM14D m1_950_1560# sky130_fd_pr__nfet_01v8_E6B2KN
+Xcurrm_n_48 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_37 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_n_26 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_15 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_49 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_27 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_16 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_38 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_n_28 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_17 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_39 m2_9090_740# OutN VM31D VN currm_n
+Xcurrm_n_29 m2_n9490_740# OutP VM30D VN currm_n
+Xcurrm_n_18 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_n_19 m2_n5090_n880# m2_n5800_4500# m2_3320_1130# VN currm_n
+Xcurrm_ps_20 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_ps_21 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_p_0 currm_p_0/m1_60_n360# VP VM16D VM16D currm_p
+Xcurrm_ps_10 VM34D VM34D VP currm_ps_10/m1_80_400# currm_ps
+Xcurrm_ps_11 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_p_1 currm_p_1/m1_60_n360# VP VM14D VM14D currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 VM16D VM14D sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xcurrm_ps_12 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_p_2 currm_p_2/m1_60_n360# VP m1_4960_670# VM16D currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 VM16D VM14D sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xcurrm_p_3 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_n_0 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_ps_13 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_ps_14 OutP m2_n5800_4500# VP m2_n9350_4740# currm_ps
+Xcurrm_p_4 m2_n5120_4740# VP m2_n5800_4500# VM16D currm_p
+Xcurrm_n_1 m2_250_740# m1_950_1560# I_Bias VN currm_n
+
+
diff --git a/mag/feedback/fb_dark_current.ext b/mag/feedback/fb_dark_current.ext
new file mode 100644
index 0000000..f50ca7b
--- /dev/null
+++ b/mag/feedback/fb_dark_current.ext
@@ -0,0 +1,3081 @@
+timestamp 1654718902
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use currm_n currm_n_21 1 0 -5170 0 1 -1030
+use currm_n currm_n_22 1 0 -3770 0 1 -1030
+use currm_n currm_n_23 1 0 -4470 0 1 -1030
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1 -1 0 -4547 0 -1 -1409
+use sky130_fd_pr__nfet_01v8_9A2JGL sky130_fd_pr__nfet_01v8_9A2JGL_1 1 0 -5943 0 1 -1021
+use currm_n currm_n_15 1 0 -5170 0 1 590
+use currm_n currm_n_16 1 0 -4470 0 1 590
+use currm_n currm_n_17 1 0 -3770 0 1 590
+use currm_n currm_n_18 1 0 -2370 0 1 590
+use currm_n currm_n_19 1 0 -3070 0 1 590
+use currm_n currm_n_20 1 0 -1670 0 1 590
+use currm_n currm_n_31 1 0 -6700 0 1 590
+use currm_n currm_n_33 1 0 -5870 0 1 590
+use currm_ps currm_ps_18 1 0 -7380 0 1 2690
+use currm_ps currm_ps_19 1 0 -6290 0 1 2690
+use currm_p currm_p_11 1 0 -5190 0 1 3450
+use currm_p currm_p_8 1 0 -3850 0 1 3450
+use currm_p currm_p_2 1 0 -1170 0 1 3450
+use currm_p currm_p_3 1 0 -2510 0 1 3450
+use currm_p currm_p_9 1 0 -5190 0 1 5090
+use currm_p currm_p_6 1 0 -3850 0 1 5090
+use currm_p currm_p_4 1 0 -2510 0 1 5090
+use currm_p currm_p_10 1 0 -5190 0 1 6730
+use currm_p currm_p_7 1 0 -3850 0 1 6730
+use currm_p currm_p_5 1 0 -2510 0 1 6730
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0 0 -1 -6819 1 0 3291
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 0 1 -2379 -1 0 3393
+use currm_n currm_n_46 1 0 120 0 1 -1030
+use sky130_fd_pr__nfet_01v8_6H2JYD sky130_fd_pr__nfet_01v8_6H2JYD_0 1 0 -669 0 1 -1560
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW#0 sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 1 0 -207 0 1 -1460
+use sky130_fd_pr__pfet_01v8_UAQRRG sky130_fd_pr__pfet_01v8_UAQRRG_0 1 0 -689 0 1 -911
+use currm_n currm_n_44 1 0 1520 0 1 -1030
+use currm_n currm_n_45 1 0 2220 0 1 -1030
+use currm_n currm_n_47 1 0 820 0 1 -1030
+use currm_n currm_n_3 1 0 120 0 1 590
+use currm_n currm_n_5 1 0 -580 0 1 590
+use currm_n currm_n_0 1 0 820 0 1 590
+use currm_n currm_n_1 1 0 1520 0 1 590
+use currm_n currm_n_2 1 0 2220 0 1 590
+use currm_n currm_n_4 1 0 2920 0 1 590
+use currm_n currm_n_6 1 0 4010 0 1 590
+use currm_n currm_n_7 1 0 4710 0 1 590
+use currm_n currm_n_8 1 0 5410 0 1 590
+use sky130_fd_pr__nfet_01v8_E6B2KN sky130_fd_pr__nfet_01v8_E6B2KN_0 1 0 1155 0 1 1760
+use sky130_fd_pr__nfet_01v8_E6B2KN sky130_fd_pr__nfet_01v8_E6B2KN_1 1 0 1795 0 1 1760
+use currm_p currm_p_21 1 0 4190 0 1 3450
+use currm_p currm_p_20 1 0 4190 0 1 5090
+use currm_p currm_p_19 1 0 4190 0 1 6730
+use currm_p currm_p_18 1 0 5530 0 1 6730
+use currm_p currm_p_17 1 0 5530 0 1 5090
+use currm_p currm_p_16 1 0 5530 0 1 3450
+use currm_p currm_p_12 1 0 2850 0 1 3450
+use currm_p currm_p_1 1 0 1510 0 1 3450
+use currm_p currm_p_0 1 0 170 0 1 3450
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 0 1 5181 -1 0 3403
+use currm_n currm_n_12 1 0 7510 0 1 -1030
+use currm_n currm_n_13 1 0 6810 0 1 -1030
+use currm_n currm_n_14 1 0 6110 0 1 -1030
+use currm_n currm_n_35 1 0 9700 0 1 -1030
+use currm_n currm_n_32 1 0 11800 0 1 -1030
+use currm_n currm_n_36 1 0 10400 0 1 -1030
+use currm_n currm_n_37 1 0 11100 0 1 -1030
+use currm_n currm_n_9 1 0 7510 0 1 590
+use currm_n currm_n_10 1 0 6810 0 1 590
+use currm_n currm_n_11 1 0 6110 0 1 590
+use currm_n currm_n_38 1 0 9000 0 1 590
+use currm_n currm_n_41 1 0 9700 0 1 590
+use currm_n currm_n_43 1 0 8210 0 1 590
+use currm_n currm_n_39 1 0 11100 0 1 590
+use currm_n currm_n_40 1 0 10400 0 1 590
+use currm_n currm_n_42 1 0 11800 0 1 590
+use sky130_fd_pr__pfet_01v8_VCBWSW sky130_fd_pr__pfet_01v8_VCBWSW_0 1 0 6957 0 1 2229
+use currm_p currm_p_15 1 0 6870 0 1 3450
+use currm_ps currm_ps_0 1 0 8200 0 1 2690
+use currm_ps currm_ps_1 1 0 9290 0 1 2690
+use currm_ps currm_ps_6 1 0 10380 0 1 2690
+use currm_ps currm_ps_9 1 0 11470 0 1 2690
+use currm_p currm_p_14 1 0 6870 0 1 5090
+use currm_ps currm_ps_2 1 0 9290 0 1 4330
+use currm_ps currm_ps_5 1 0 10380 0 1 4330
+use currm_ps currm_ps_8 1 0 11470 0 1 4330
+use currm_p currm_p_13 1 0 6870 0 1 6730
+use currm_ps currm_ps_3 1 0 9290 0 1 5970
+use currm_ps currm_ps_4 1 0 10380 0 1 5970
+use currm_ps currm_ps_7 1 0 11470 0 1 5970
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW#0 sky130_fd_pr__cap_mim_m3_2_MJMGTW_0 0 1 10711 -1 0 3403
+node "m5_n7070_n540#" 0 524.475 -7070 -540 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 408500 2760 0 0
+node "m4_n7070_n540#" 0 575.17 -7070 -540 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 408500 2760 0 0 0 0
+node "m2_200_n880#" 2 508.645 200 -880 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 340800 4580 0 0 0 0 0 0 0 0
+node "m2_9090_740#" 6 1944.14 9090 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 897600 12180 510400 7840 0 0 0 0 0 0
+node "m2_4080_740#" 6 1922.85 4080 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 923200 12500 510400 7840 0 0 0 0 0 0
+node "m2_250_740#" 2 499.021 250 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 369600 4940 0 0 0 0 0 0 0 0
+node "m2_n5090_n880#" 6 1896.65 -5090 -880 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 917900 12120 510400 7840 0 0 0 0 0 0
+node "m2_n6460_740#" 0 80.6959 -6460 740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12800 480 0 0 0 0 0 0 0 0
+node "Out" 11 7592.13 9170 980 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4437200 32420 3796400 34820 0 0 0 0 0 0
+node "m2_9370_4730#" 9 3204.19 9370 4730 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1328200 17220 1228550 14750 0 0 0 0 0 0
+node "m2_4260_3100#" 12 4058.03 4260 3100 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1716300 23720 1329250 14790 0 0 0 0 0 0
+node "m2_n5120_4740#" 11 3825.51 -5120 4740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1644300 22760 1327350 14770 0 0 0 0 0 0
+node "m1_n710_n1640#" 1 5.36198 -710 -1640 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 120 0 0 0 0 0 0 0 0 0 0
+node "m1_n250_n1430#" 1 1184.22 -250 -1430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13600 500 237700 3020 74000 1140 519124 3606 0 0 0 0
+node "m1_9750_n950#" 10 792.663 9750 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74400 5020 0 0 0 0 0 0 0 0 0 0
+node "m1_6180_n950#" 7 508.806 6180 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47100 3200 0 0 0 0 0 0 0 0 0 0
+node "m1_1980_n950#" 1 93.3823 1980 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_1290_n950#" 1 98.3419 1290 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_560_n950#" 1 93.6482 560 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_9760_n440#" 16 1196.09 9760 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114600 7700 0 0 0 0 0 0 0 0 0 0
+node "m1_7800_n440#" 2 145.234 7800 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 860 0 0 0 0 0 0 0 0 0 0
+node "m1_6150_n440#" 10 714.221 6150 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69300 4680 0 0 0 0 0 0 0 0 0 0
+node "m1_2510_n430#" 1 131.554 2510 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_1980_n440#" 1 89.2589 1980 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_1810_n430#" 1 101.964 1810 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "I_Bias" 2 380.913 1370 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11400 520 352900 4500 0 0 0 0 0 0 0 0
+node "m1_1110_n420#" 1 101.311 1110 -420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10200 740 0 0 0 0 0 0 0 0 0 0
+node "m1_570_n440#" 1 91.1032 570 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8100 600 0 0 0 0 0 0 0 0 0 0
+node "m1_410_n430#" 1 125.645 410 -430 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9390_670#" 10 733.17 9390 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75000 5060 0 0 0 0 0 0 0 0 0 0
+node "m1_4960_670#" 13 875.678 4960 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90300 6080 0 0 0 0 0 0 0 0 0 0
+node "m1_4460_670#" 1 108.835 4460 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9600 700 0 0 0 0 0 0 0 0 0 0
+node "m1_9390_1180#" 10 793.477 9390 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75000 5060 0 0 0 0 0 0 0 0 0 0
+node "m1_4960_1180#" 13 514.489 4960 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90600 6100 0 0 0 0 0 0 0 0 0 0
+node "m1_4450_1180#" 1 63.2673 4450 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9600 700 0 0 0 0 0 0 0 0 0 0
+node "m1_3040_1180#" 2 805.699 3040 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13600 640 321800 4620 0 0 0 0 0 0 0 0
+node "m1_11220_2770#" 1 128.195 11220 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10140_2770#" 1 121.76 10140 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9030_2770#" 1 122.351 9030 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_5960_2030#" 31 9550.39 5960 2030 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 202200 7320 3296900 43840 3913750 40910 0 0 0 0 0 0
+node "InN" 3 201.425 1510 1460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81800 2780 0 0 0 0 0 0 0 0 0 0
+node "m1_950_1560#" 5 926.038 950 1560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61200 2080 652800 7880 0 0 0 0 0 0 0 0
+node "m1_n400_1190#" 2 666.38 -400 1190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10200 460 317400 4520 0 0 0 0 0 0 0 0
+node "m1_n5090_n950#" 6 456.371 -5090 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43200 2940 0 0 0 0 0 0 0 0 0 0
+node "Disable_FB" 30 2695.62 -6310 -1600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 324600 16920 19000 780 225500 5780 0 0 0 0 0 0
+node "m1_n3480_n440#" 2 152.599 -3480 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12600 900 0 0 0 0 0 0 0 0 0 0
+node "m1_n5090_n440#" 9 687.495 -5090 -440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66600 4500 0 0 0 0 0 0 0 0 0 0
+node "m1_n5100_670#" 15 1033.73 -5100 670 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105900 7120 0 0 0 0 0 0 0 0 0 0
+node "m1_n6700_n950#" 15 3475.46 -6700 -950 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150000 7800 1050100 9840 447500 4080 0 0 0 0 0 0
+node "m1_n5100_1180#" 15 649.587 -5100 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105600 7100 0 0 0 0 0 0 0 0 0 0
+node "m1_n6640_1180#" 0 41.0876 -6640 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3300 280 0 0 0 0 0 0 0 0 0 0
+node "m1_n5490_1180#" 30 3741.55 -5490 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 997900 31000 0 0 0 0 0 0 0 0 0 0
+node "InP" 3 197.979 1020 1460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81800 2780 0 0 0 0 0 0 0 0 0 0
+node "m1_n170_1370#" 22 1448.41 -170 1370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 179100 10480 97300 3240 0 0 0 0 0 0 0 0
+node "m1_n1280_1370#" 20 994.057 -1280 1370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208500 11000 100500 3020 0 0 0 0 0 0 0 0
+node "m1_n6490_1180#" 57 3673.35 -6490 1180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 697200 35720 0 0 0 0 0 0 0 0 0 0
+node "m1_n830_1270#" 50 4012.95 -830 1270 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 577700 29900 98700 2620 0 0 0 0 0 0 0 0
+node "m1_7940_2770#" 0 23.6732 7940 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2000 180 0 0 0 0 0 0 0 0 0 0
+node "m1_3850_2770#" 9 1367.69 3850 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188000 7620 0 0 0 0 0 0 0 0 0 0
+node "m1_2590_2770#" 1 76.7181 2590 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_1750_1790#" 2 1172.47 1750 1790 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38300 1180 282500 3160 173600 1690 324824 2426 0 0 0 0
+node "m1_970_2720#" 2 1220.59 970 2720 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38300 1180 282600 3180 143200 1530 388824 2746 0 0 0 0
+node "m1_n110_2770#" 1 74.9514 -110 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n1510_2770#" 1 104.111 -1510 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n2860_2770#" 1 106.095 -2860 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n4100_2770#" 1 109.263 -4100 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n6550_2770#" 22 7010.79 -6550 2770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69500 2460 3345800 41600 1837750 22610 0 0 0 0 0 0
+node "m1_11190_3300#" 1 119.672 11190 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10140_3300#" 1 112.887 10140 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9040_3300#" 1 126.177 9040 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_6600_3300#" 1 108.647 6600 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_5250_3300#" 1 107.45 5250 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_3850_3300#" 1 115.255 3850 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_2550_3300#" 1 121.16 2550 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n120_3300#" 1 117.782 -120 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n1520_3300#" 1 151.835 -1520 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n2890_3300#" 1 145.922 -2890 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20500 920 0 0 0 0 0 0 0 0 0 0
+node "m1_n4160_3300#" 1 111.36 -4160 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n6550_3300#" 3 392.676 -6550 3300 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56500 2360 0 0 0 0 0 0 0 0 0 0
+node "m1_11990_4150#" 1 144.471 11990 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_11220_4410#" 1 109.594 11220 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10900_4150#" 1 130.437 10900 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_4410#" 1 108.203 10120 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9810_4150#" 1 143.013 9810 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_4140_4410#" 12 2023.53 4140 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240000 9700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2320_4140#" 1 143.947 -2320 4140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2810_4410#" 1 102.074 -2810 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n3660_4140#" 1 139.752 -3660 4140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n4160_4410#" 1 100.375 -4160 4410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n5000_4150#" 1 146.428 -5000 4150 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_11230_4940#" 1 117.065 11230 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_4940#" 1 116.236 10120 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_6550_4940#" 1 137.969 6550 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_5210_4940#" 1 137.969 5210 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_n2790_4940#" 1 107.969 -2790 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_n4150_4940#" 1 107.14 -4150 4940 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14500 680 0 0 0 0 0 0 0 0 0 0
+node "m1_11990_5780#" 1 145.286 11990 5780 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_11230_6050#" 1 113.036 11230 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10900_5780#" 1 132.5 10900 5780 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_10130_6050#" 1 112.612 10130 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_9810_5770#" 1 145.814 9810 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18000 720 0 0 0 0 0 0 0 0 0 0
+node "m1_4140_6050#" 12 2025.25 4140 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240000 9700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2320_5790#" 1 142.093 -2320 5790 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n2790_6050#" 1 108.089 -2790 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n3660_5770#" 1 141.765 -3660 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_n4140_6050#" 1 111.801 -4140 6050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n5000_5770#" 1 147.515 -5000 5770 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15000 700 0 0 0 0 0 0 0 0 0 0
+node "m1_11200_6580#" 1 128.246 11200 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_10120_6580#" 1 126.031 10120 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16500 760 0 0 0 0 0 0 0 0 0 0
+node "m1_6540_6580#" 1 149.041 6540 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_5210_6580#" 1 149.041 5210 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0
+node "m1_n2820_6580#" 1 123.539 -2820 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "m1_n4170_6580#" 1 123.539 -4170 6580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15500 720 0 0 0 0 0 0 0 0 0 0
+node "li_n110_n1590#" 48 222.747 -110 -1590 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18200 660 16728 572 0 0 0 0 0 0 0 0 0 0
+node "li_n630_n1600#" 22 67.7747 -630 -1600 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8400 380 0 0 0 0 0 0 0 0 0 0 0 0
+node "VN" 34 26045.3 -5630 -1530 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12800 480 133408 4888 16539700 78140 2464550 16990 1084680 9300 9507880 35800 0 0
+node "li_n640_n960#" 20 70.8345 -640 -960 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7700 360 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_850_1310#" 388 1374.86 850 1310 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 245600 5640 0 0 0 0 0 0 0 0 0 0 0 0
+node "VP" 84 38235.7 6420 2590 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57000 1340 213728 6852 24118500 118760 2675950 22950 990756 7972 11710032 44688 0 0
+node "w_8150_4270#" 1006 91.8 8150 4270 nw 0 0 0 0 30600 700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n1290_4230#" 993 151.8 -1290 4230 nw 0 0 0 0 50600 900 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n6340_4280#" 950 86.7 -6340 4280 nw 0 0 0 0 28900 680 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_n6490_1180#" "m1_n6640_1180#" 27.675
+cap "m1_n2790_6050#" "m1_n2320_5790#" 9.225
+cap "VN" "m1_9760_n440#" 416.728
+cap "m1_n6640_1180#" "m1_n6700_n950#" 64.487
+cap "m1_10140_3300#" "m1_11190_3300#" 2.5625
+cap "m1_3850_3300#" "m1_5250_3300#" 1.67727
+cap "m1_5960_2030#" "m2_9370_4730#" 121.814
+cap "m1_n250_n1430#" "m2_200_n880#" 143.134
+cap "m1_4960_670#" "m1_6150_n440#" 54.71
+cap "m1_950_1560#" "InN" 476.178
+cap "m1_11190_3300#" "m1_11220_4410#" 10.4434
+cap "m1_10120_4410#" "m1_10120_4940#" 25.3687
+cap "m1_6150_n440#" "m1_7800_n440#" 39.198
+cap "m1_n4160_4410#" "m1_n2810_4410#" 0.696226
+cap "m1_9390_670#" "m2_9090_740#" 33.7337
+cap "m1_11220_2770#" "m1_9390_1180#" 7.80577
+cap "m1_11990_5780#" "m1_11230_6050#" 2.57442
+cap "li_850_1310#" "m1_n170_1370#" 48.9626
+cap "VN" "m1_1110_n420#" 76.1128
+cap "m1_n830_1270#" "m1_410_n430#" 10.7625
+cap "m1_n6550_2770#" "VN" 860.989
+cap "m1_9760_n440#" "m2_9090_740#" 61.1394
+cap "VN" "Disable_FB" 4440.95
+cap "m1_n3660_5770#" "m1_n2320_5790#" 7.43721
+cap "m1_n5490_1180#" "m1_1110_n420#" 0.878571
+cap "m1_n6550_2770#" "m1_n5490_1180#" 145.977
+cap "I_Bias" "m1_1980_n440#" 0.9
+cap "m1_5960_2030#" "m1_4960_1180#" 82.7081
+cap "InN" "m1_n5490_1180#" 78.2284
+cap "m1_11990_4150#" "m1_11220_4410#" 3.35455
+cap "m1_n170_1370#" "m1_3040_1180#" 98.2417
+cap "m1_n830_1270#" "m1_3040_1180#" 77.9935
+cap "VP" "m2_4080_740#" 6.63311
+cap "m1_n6700_n950#" "m5_n7070_n540#" 12.957
+cap "VP" "m1_n3660_4140#" 113.157
+cap "VP" "m1_n830_1270#" 1423.36
+cap "m1_10900_4150#" "m1_11220_4410#" 5.67692
+cap "m1_n3660_4140#" "m1_n2810_4410#" 1.38375
+cap "m1_n4160_4410#" "m1_n4160_3300#" 10.0953
+cap "m1_n6490_1180#" "m1_n4100_2770#" 10.8091
+cap "m1_n6550_2770#" "m1_n6490_1180#" 273.683
+cap "VN" "m1_9750_n950#" 83.7463
+cap "m1_n1280_1370#" "m1_n400_1190#" 39.7232
+cap "m1_n6550_2770#" "m1_n6700_n950#" 213.126
+cap "m1_5960_2030#" "m2_4080_740#" 5695.01
+cap "m1_n6700_n950#" "Disable_FB" 1178.9
+cap "m1_n170_1370#" "m1_1750_1790#" 82.4395
+cap "m1_n830_1270#" "m1_5960_2030#" 950.433
+cap "m1_n830_1270#" "m1_1750_1790#" 119.789
+cap "VP" "m1_6600_3300#" 78.0442
+cap "VP" "m2_n5120_4740#" 2145.92
+cap "li_n630_n1600#" "li_n640_n960#" 4.91228
+cap "m1_n6700_n950#" "m2_n6460_740#" 163.439
+cap "m1_6150_n440#" "m1_6180_n950#" 118.388
+cap "m1_10900_4150#" "m1_11990_4150#" 9.31456
+cap "m1_4960_1180#" "m1_4960_670#" 231.394
+cap "VP" "m1_10120_6580#" 35.8536
+cap "VN" "m1_6150_n440#" 211.717
+cap "m1_11190_3300#" "m1_11220_2770#" 23.0625
+cap "m2_9370_4730#" "Out" 9223.59
+cap "m1_970_2720#" "m1_n110_2770#" 2.36538
+cap "m1_10900_5780#" "m1_11230_6050#" 4.1
+cap "m1_n830_1270#" "m1_n250_n1430#" 63.7323
+cap "m1_10120_4410#" "m1_9810_4150#" 5.904
+cap "VN" "m2_200_n880#" 139.931
+cap "m1_n2790_4940#" "m1_n2790_6050#" 10.0953
+cap "m1_4140_4410#" "m2_4260_3100#" 174.922
+cap "m1_4960_670#" "m2_4080_740#" 52.0434
+cap "m1_11990_5780#" "m1_10900_5780#" 9.67282
+cap "m1_5960_2030#" "m1_7940_2770#" 8.32331
+cap "m1_3850_2770#" "m1_2590_2770#" 1.92188
+cap "VP" "m1_3040_1180#" 7.66667
+cap "m1_n6700_n950#" "m1_n5100_670#" 1.09716
+cap "m1_n120_3300#" "m1_n110_2770#" 22.2937
+cap "m1_6600_3300#" "m1_5250_3300#" 1.75714
+cap "m1_1110_n420#" "m1_1810_n430#" 18.1746
+cap "VP" "m1_4140_6050#" 398.849
+cap "m1_1750_1790#" "m1_3040_1180#" 25.7479
+cap "m1_5960_2030#" "m1_3040_1180#" 12.9423
+cap "m1_n6550_2770#" "m1_n400_1190#" 12.4285
+cap "m1_n2860_2770#" "m1_n4100_2770#" 1.94211
+cap "m1_950_1560#" "InP" 480.171
+cap "VP" "m1_1750_1790#" 14.9371
+cap "VP" "m1_5960_2030#" 6405.25
+cap "m1_n4170_6580#" "m1_n2820_6580#" 1.77404
+cap "VP" "w_n6340_4280#" 54.5382
+cap "m1_n6550_2770#" "m1_n1520_3300#" 27.6753
+cap "m1_n5000_5770#" "m1_n5000_4150#" 1.39773
+cap "m1_n830_1270#" "m1_570_n440#" 0.271324
+cap "m1_4140_6050#" "m1_5960_2030#" 232.34
+cap "m1_n6550_2770#" "m1_n1280_1370#" 1.77727
+cap "m1_n2890_3300#" "m1_n2810_4410#" 10.0953
+cap "VP" "m1_10900_5780#" 99.0659
+cap "m1_n6550_2770#" "m1_n6640_1180#" 0.473077
+cap "m1_9390_670#" "m1_9760_n440#" 74.128
+cap "m1_10140_2770#" "Out" 187.215
+cap "m1_5210_4940#" "m1_4140_6050#" 13.9245
+cap "VP" "m1_n250_n1430#" 105.458
+cap "m1_n170_1370#" "m1_950_1560#" 27.4798
+cap "I_Bias" "m1_n250_n1430#" 52.1333
+cap "m1_4450_1180#" "m1_4460_670#" 23.8313
+cap "m1_n2790_4940#" "m1_n4150_4940#" 1.7243
+cap "Disable_FB" "m1_n710_n1640#" 25.1308
+cap "m1_n5490_1180#" "m1_4960_1180#" 532.095
+cap "m1_11230_4940#" "m1_11230_6050#" 11.4877
+cap "m1_410_n430#" "m1_570_n440#" 5.67692
+cap "m1_n5090_n440#" "m1_n5090_n950#" 110.7
+cap "InP" "m1_n5490_1180#" 77.5208
+cap "m1_970_2720#" "InP" 256.151
+cap "m1_4140_4410#" "m1_6550_4940#" 30.75
+cap "m2_4260_3100#" "m2_9370_4730#" 4.3125
+cap "m1_n3660_4140#" "m1_n2320_4140#" 7.72326
+cap "m1_n5490_1180#" "m1_1980_n440#" 6.26604
+cap "li_850_1310#" "m1_950_1560#" 227.896
+cap "VN" "m2_4080_740#" 904.766
+cap "m1_1980_n440#" "m1_2510_n430#" 2.83846
+cap "m1_570_n440#" "m1_560_n950#" 19.9875
+cap "m1_n5090_n440#" "m2_n5090_n880#" 35.7584
+cap "m1_5960_2030#" "m1_4960_670#" 143.759
+cap "m1_10140_2770#" "m1_9390_1180#" 7.80577
+cap "m1_n4160_4410#" "m1_n5000_4150#" 1.86835
+cap "m1_n170_1370#" "VN" 2.20726
+cap "m1_n830_1270#" "VN" 273.605
+cap "m1_n2890_3300#" "m1_n4160_3300#" 1.88265
+cap "m1_10130_6050#" "m1_11230_6050#" 0.958442
+cap "m1_5960_2030#" "m1_7800_n440#" 19.0171
+cap "m1_970_2720#" "m1_n830_1270#" 120.099
+cap "m1_n830_1270#" "m1_n5490_1180#" 79.2223
+cap "m1_n170_1370#" "m1_n5490_1180#" 371.404
+cap "m1_970_2720#" "m1_n170_1370#" 96.5101
+cap "m1_10120_4410#" "m1_10140_3300#" 10.7915
+cap "m1_n5100_1180#" "m1_n5490_1180#" 354.739
+cap "m1_10120_4410#" "m1_11220_4410#" 0.479221
+cap "m1_4140_4410#" "m1_3850_2770#" 81.4073
+cap "m1_570_n440#" "I_Bias" 1.39245
+cap "m2_4080_740#" "m2_9090_740#" 5.9581
+cap "m1_950_1560#" "m1_3040_1180#" 20.9286
+cap "m1_n6550_2770#" "m1_n4100_2770#" 1.39773
+cap "m1_10130_6050#" "m1_10120_6580#" 24.6
+cap "m1_n6550_2770#" "Disable_FB" 19.9684
+cap "m1_n2790_6050#" "m1_n3660_5770#" 0.9
+cap "m1_n5100_670#" "m1_n3480_n440#" 1.60435
+cap "VP" "Out" 2513.84
+cap "VN" "m1_410_n430#" 88.161
+cap "m1_1290_n950#" "m1_1980_n950#" 2.63571
+cap "m1_9760_n440#" "m1_9750_n950#" 189.881
+cap "li_850_1310#" "m1_n5490_1180#" 63.6522
+cap "m1_n170_1370#" "m1_n6490_1180#" 107.274
+cap "m1_n830_1270#" "m1_n6490_1180#" 4567.25
+cap "m1_n5490_1180#" "m1_410_n430#" 0.878571
+cap "m1_n5000_4150#" "m1_n3660_4140#" 7.43721
+cap "VP" "m1_9810_5770#" 110.631
+cap "m1_10120_4410#" "m1_10900_4150#" 3.28
+cap "m1_n2790_6050#" "m1_n2820_6580#" 21.525
+cap "m1_950_1560#" "m1_1750_1790#" 182.508
+cap "m1_5960_2030#" "Out" 48.4825
+cap "m1_4960_670#" "m1_7800_n440#" 1.55915
+cap "VP" "m1_9810_4150#" 98.0624
+cap "VP" "m1_n2320_5790#" 101.71
+cap "VP" "m1_n2320_4140#" 114.705
+cap "m1_n2320_4140#" "m1_n2810_4410#" 5.535
+cap "li_n110_n1590#" "VN" 374.379
+cap "VN" "m1_3040_1180#" 11.0961
+cap "m1_4450_1180#" "m1_4960_1180#" 5.82632
+cap "m1_3850_3300#" "m1_3850_2770#" 23.0625
+cap "m1_10900_5780#" "Out" 51.1932
+cap "VP" "VN" 441.423
+cap "m1_n5000_4150#" "m2_n5120_4740#" 53.6813
+cap "m1_n5490_1180#" "m1_3040_1180#" 120.577
+cap "VN" "I_Bias" 371.819
+cap "m1_n6550_3300#" "m1_n4160_3300#" 1.46429
+cap "m1_4140_6050#" "m1_5210_6580#" 30.75
+cap "m1_n6550_2770#" "m1_n5100_670#" 73.5098
+cap "m1_10120_4940#" "m1_11230_4940#" 2.36538
+cap "VP" "m1_970_2720#" 32.5437
+cap "VP" "m1_n5490_1180#" 66.1704
+cap "m1_n6490_1180#" "m1_7940_2770#" 1.1808
+cap "m1_10900_5780#" "m1_9810_5770#" 9.67282
+cap "m1_n5490_1180#" "I_Bias" 4.64151
+cap "m1_n4170_6580#" "m1_n4140_6050#" 21.525
+cap "VN" "m2_n5090_n880#" 990.807
+cap "VN" "m1_5960_2030#" 1244.44
+cap "m1_1810_n430#" "m1_1980_n440#" 5.27143
+cap "m1_10140_3300#" "m1_10140_2770#" 25.3687
+cap "m1_970_2720#" "m1_1750_1790#" 200.077
+cap "m1_n170_1370#" "m1_4450_1180#" 3.81724
+cap "m1_5960_2030#" "m1_n5490_1180#" 74.6177
+cap "m1_n6490_1180#" "m1_3040_1180#" 60.1594
+cap "m1_10900_5780#" "m1_10130_6050#" 2.51591
+cap "m1_10120_4940#" "m1_10130_6050#" 11.1396
+cap "VP" "m1_n6490_1180#" 34.4573
+cap "VP" "m1_n6700_n950#" 12.3881
+cap "m1_n6490_1180#" "m1_n1510_2770#" 33.62
+cap "VN" "m1_n250_n1430#" 547.778
+cap "m1_n170_1370#" "m1_n400_1190#" 417.741
+cap "m1_n830_1270#" "m1_n400_1190#" 218.803
+cap "VP" "m1_n5000_4150#" 108.324
+cap "m2_250_740#" "m2_4080_740#" 4.11579
+cap "m1_9030_2770#" "m1_10140_2770#" 2.36538
+cap "m1_n5000_5770#" "m1_n3660_5770#" 8.0093
+cap "m1_n6490_1180#" "m1_5960_2030#" 151.093
+cap "VN" "m1_n5090_n440#" 230.068
+cap "m1_n6490_1180#" "m1_1750_1790#" 71.6389
+cap "m1_n830_1270#" "m1_2590_2770#" 30.75
+cap "m1_4140_4410#" "m1_3850_3300#" 0.348113
+cap "VP" "m2_4260_3100#" 2535.63
+cap "m1_n6700_n950#" "m2_n5090_n880#" 0.178981
+cap "m1_560_n950#" "m1_1290_n950#" 2.40652
+cap "m1_n1280_1370#" "m1_n170_1370#" 3938.28
+cap "m1_n1280_1370#" "m1_n830_1270#" 99.9103
+cap "m1_4140_6050#" "m2_4260_3100#" 178.043
+cap "m1_n1280_1370#" "m1_n5100_1180#" 3.57097
+cap "VP" "w_n1290_4230#" 23.7911
+cap "VN" "m1_7800_n440#" 106.469
+cap "m1_5960_2030#" "m2_4260_3100#" 8712.03
+cap "m1_11990_5780#" "m1_11990_4150#" 1.66466
+cap "li_850_1310#" "m2_250_740#" 59.4781
+cap "I_Bias" "m1_1290_n950#" 15.4775
+cap "m1_9810_5770#" "Out" 58.6832
+cap "m1_11200_6580#" "m1_11230_6050#" 23.0625
+cap "m1_9030_2770#" "m1_7940_2770#" 0.351429
+cap "m1_n6700_n950#" "m1_n5090_n440#" 0.700633
+cap "m1_9810_4150#" "Out" 65.585
+cap "m1_n2790_4940#" "m1_n2810_4410#" 20.7563
+cap "m1_n830_1270#" "m1_3850_2770#" 103.194
+cap "m1_n5490_1180#" "m1_570_n440#" 6.26604
+cap "m1_4140_6050#" "m1_6540_6580#" 30.75
+cap "m1_9810_5770#" "m1_9810_4150#" 1.67727
+cap "VN" "Out" 1923.08
+cap "I_Bias" "m1_1810_n430#" 3.075
+cap "m1_10120_6580#" "m1_11200_6580#" 2.46
+cap "li_n630_n1600#" "li_n110_n1590#" 4.78333
+cap "VP" "m1_n400_1190#" 6.44505
+cap "m1_n2860_2770#" "m1_n1510_2770#" 1.96277
+cap "m1_9390_1180#" "Out" 1136.08
+cap "m1_10140_2770#" "m1_11220_2770#" 2.46
+cap "m1_970_2720#" "m1_950_1560#" 159.537
+cap "m1_950_1560#" "m1_n5490_1180#" 178.682
+cap "InN" "InP" 316.286
+cap "m1_6600_3300#" "m1_3850_2770#" 23.0625
+cap "m1_n2320_4140#" "m1_n2320_5790#" 1.36667
+cap "m1_n1280_1370#" "m1_3040_1180#" 270.552
+cap "m1_n1510_2770#" "m1_n1520_3300#" 30.75
+cap "m1_10130_6050#" "m1_9810_5770#" 2.83846
+cap "m1_n6700_n950#" "m4_n7070_n540#" 174.516
+cap "m1_n2790_6050#" "m1_n4140_6050#" 1.06442
+cap "VP" "m1_n1280_1370#" 24.5232
+cap "VP" "m1_10900_4150#" 93.6542
+cap "VP" "li_n640_n960#" 62.4666
+cap "m1_n830_1270#" "Disable_FB" 153.679
+cap "m1_n6550_2770#" "m1_n5100_1180#" 80.2211
+cap "m1_5960_2030#" "m1_9030_2770#" 1.86835
+cap "m1_3850_2770#" "m1_7940_2770#" 5.59091
+cap "m1_1750_1790#" "m1_2590_2770#" 3.02459
+cap "m1_n2890_3300#" "m1_n2860_2770#" 29.2125
+cap "m2_n5090_n880#" "m2_250_740#" 4.34444
+cap "Out" "m2_9090_740#" 4785.94
+cap "m1_n4160_4410#" "m1_n4150_4940#" 21.525
+cap "m1_6550_4940#" "m1_4140_6050#" 13.9245
+cap "m1_n1280_1370#" "m1_1750_1790#" 70.3631
+cap "m1_n1280_1370#" "m2_n5090_n880#" 6.8
+cap "m1_n170_1370#" "InN" 269.87
+cap "m1_n2890_3300#" "m1_n1520_3300#" 1.92188
+cap "m1_n3660_4140#" "m1_n3660_5770#" 1.38722
+cap "m1_n6550_2770#" "m2_n5120_4740#" 8358.91
+cap "m1_2550_3300#" "m1_2590_2770#" 19.9875
+cap "m1_n4140_6050#" "m1_n3660_5770#" 4.34118
+cap "VN" "m1_2510_n430#" 91.0933
+cap "m1_6550_4940#" "m1_5210_4940#" 1.96277
+cap "m1_10900_5780#" "m1_10900_4150#" 1.66466
+cap "m1_410_n430#" "m1_1110_n420#" 18.1746
+cap "VP" "m1_3850_2770#" 455.804
+cap "m1_n5490_1180#" "m1_2510_n430#" 0.878571
+cap "li_850_1310#" "InN" 134.359
+cap "VN" "m2_9090_740#" 1316.63
+cap "li_n640_n960#" "m1_n250_n1430#" 3.03426
+cap "m1_4140_4410#" "m1_6600_3300#" 10.4434
+cap "Disable_FB" "m1_560_n950#" 1.11818
+cap "m1_n830_1270#" "m1_n5100_670#" 1.476
+cap "m1_n5100_1180#" "m1_n5100_670#" 270.6
+cap "m1_5960_2030#" "m1_3850_2770#" 73.7935
+cap "m1_n6490_1180#" "m1_9390_1180#" 3.69
+cap "VN" "m1_n6700_n950#" 1035.43
+cap "li_n110_n1590#" "Disable_FB" 3.78492
+cap "m1_6150_n440#" "m2_4080_740#" 31.3227
+cap "m1_n6490_1180#" "m1_n5490_1180#" 5142.55
+cap "m1_970_2720#" "m1_n6490_1180#" 71.8709
+cap "VP" "w_8150_4270#" 14.1761
+cap "m1_n4140_6050#" "m1_n4150_4940#" 9.74717
+cap "m1_n830_1270#" "m1_n110_2770#" 30.75
+cap "m1_4140_4410#" "m1_7940_2770#" 0.928302
+cap "VP" "m1_n6550_2770#" 2775.31
+cap "VP" "Disable_FB" 213.903
+cap "m1_1110_n420#" "I_Bias" 1.60435
+cap "Disable_FB" "m1_n5090_n950#" 4.65253
+cap "m1_n5090_n440#" "m1_n3480_n440#" 33.2431
+cap "m1_5250_3300#" "m1_3850_2770#" 23.0625
+cap "m1_n5000_5770#" "m1_n4140_6050#" 0.911111
+cap "m1_11230_4940#" "m1_11220_4410#" 24.6
+cap "VP" "m1_n3660_5770#" 112.975
+cap "m1_950_1560#" "m1_n400_1190#" 13.3106
+cap "m1_n6550_2770#" "m2_n5090_n880#" 5084.21
+cap "m1_4960_670#" "m1_9390_670#" 0.779577
+cap "Disable_FB" "m2_n5090_n880#" 29.629
+cap "m1_n6490_1180#" "m1_n6700_n950#" 19.8952
+cap "VP" "m1_4140_4410#" 417.002
+cap "m1_n5000_5770#" "m2_n5120_4740#" 51.6073
+cap "m2_n6460_740#" "m2_n5090_n880#" 4.84961
+cap "m1_950_1560#" "m2_250_740#" 1128.94
+cap "InN" "m1_1750_1790#" 256.151
+cap "m1_4140_4410#" "m1_4140_6050#" 89.9941
+cap "m1_n1280_1370#" "m1_950_1560#" 11.7706
+cap "m1_6540_6580#" "m1_5210_6580#" 1.98387
+cap "m1_10900_4150#" "Out" 52.3371
+cap "m1_1980_n440#" "m1_1980_n950#" 20.7563
+cap "m1_4140_4410#" "m1_5960_2030#" 232.209
+cap "Disable_FB" "m1_n250_n1430#" 256.44
+cap "m1_n5490_1180#" "m1_4450_1180#" 31.0737
+cap "VN" "m1_1810_n430#" 76.1128
+cap "m1_n4160_3300#" "m1_n4100_2770#" 17.6812
+cap "m1_n6550_2770#" "m1_n5090_n440#" 72.9338
+cap "m1_4140_4410#" "m1_5210_4940#" 30.75
+cap "VN" "m1_n400_1190#" 10.9116
+cap "m1_n5490_1180#" "m1_1810_n430#" 0.878571
+cap "m1_10900_4150#" "m1_9810_4150#" 9.31456
+cap "m1_n4160_4410#" "m1_n3660_4140#" 5.27143
+cap "li_n630_n1600#" "VN" 63.0015
+cap "m1_970_2720#" "m1_n400_1190#" 27.8152
+cap "m1_n5490_1180#" "m1_n400_1190#" 107.588
+cap "m1_n1510_2770#" "m1_n110_2770#" 1.86364
+cap "VN" "m2_250_740#" 145.679
+cap "m1_1810_n430#" "m1_2510_n430#" 18.1746
+cap "m1_n5100_670#" "m2_n5090_n880#" 73.735
+cap "m1_10140_3300#" "m1_9040_3300#" 2.3961
+cap "m4_n7070_n540#" "m5_n7070_n540#" 697.82
+cap "m1_9390_670#" "Out" 140.253
+cap "m1_n1280_1370#" "VN" 2.08931
+cap "m1_4140_4410#" "m1_5250_3300#" 10.4434
+cap "VP" "m1_n5000_5770#" 114.382
+cap "I_Bias" "m2_200_n880#" 928.625
+cap "m1_9760_n440#" "Out" 191.861
+cap "m1_5960_2030#" "m1_6150_n440#" 183.992
+cap "m1_n170_1370#" "InP" 269.87
+cap "m1_n1280_1370#" "m1_n5490_1180#" 375.78
+cap "m1_970_2720#" "m1_n1280_1370#" 51.5036
+cap "m1_n2860_2770#" "m1_n6490_1180#" 33.62
+cap "VN" "m1_n710_n1640#" 34.496
+cap "m1_570_n440#" "m1_1110_n420#" 1.36667
+cap "m1_n6490_1180#" "m1_n400_1190#" 54.2713
+cap "m1_9040_3300#" "m1_9030_2770#" 24.6
+cap "m1_n120_3300#" "m1_n1520_3300#" 1.86364
+cap "m1_11220_2770#" "Out" 194.858
+cap "m1_n6550_3300#" "m1_n6550_2770#" 86.8688
+cap "VN" "m1_n3480_n440#" 115.706
+cap "m1_n5100_670#" "m1_n5090_n440#" 50.3587
+cap "m1_n170_1370#" "m2_4080_740#" 5.865
+cap "VP" "m2_9370_4730#" 1745.06
+cap "m1_n6490_1180#" "m1_9030_2770#" 1.7712
+cap "m1_3850_3300#" "m1_2550_3300#" 1.845
+cap "li_850_1310#" "InP" 152.358
+cap "m1_4460_670#" "m1_4960_670#" 6.15
+cap "m1_9390_1180#" "m1_9390_670#" 192.188
+cap "m1_n170_1370#" "m1_n830_1270#" 8.34643
+cap "m1_n1280_1370#" "m1_n6490_1180#" 2014.48
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 0.5658
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 1186.49
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_68_150#" 57.7325
+cap "currm_n_21/m1_390_n660#" "currm_n_33/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" 0.627417
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 171.337
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 464.619
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/m1_68_150#" 1.96031
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 1.79687
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 93.9162
+cap "currm_n_21/m1_390_n660#" "currm_n_21/a_122_62#" 0.723404
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -23.8783
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 1064.24
+cap "currm_n_21/m1_390_n660#" "currm_n_33/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 1.48207
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 130.515
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 3.82814
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "currm_n_21/m1_68_150#" 1.35397
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_68_150#" 314.87
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 529.479
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 165.545
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 1.13687e-13
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 44.6309
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 1389.84
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 0.907565
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 35.8507
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "currm_n_21/m1_68_150#" 45.3842
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 11.8302
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 5.8346
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -211.936
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/m1_68_150#" 1.96031
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 228.221
+cap "currm_n_21/m1_390_n660#" "currm_n_21/a_122_62#" 261.345
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 95.9537
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -132.747
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "Disable_FB" 0.349432
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 76.7145
+cap "currm_n_21/m1_390_n660#" "currm_n_21/a_122_62#" 121.101
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_68_150#" 150.79
+cap "Disable_FB" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 797.011
+cap "currm_n_21/m1_390_n660#" "Disable_FB" -454.477
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 50.15
+cap "currm_n_20/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.17712
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 13.4098
+cap "currm_n_18/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 0.558355
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7.06771
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 30.7591
+cap "currm_n_20/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 0.558355
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 3256.6
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 349.661
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 0.372438
+cap "currm_n_18/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.17712
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_46/m1_68_150#" 99.2538
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 47.8921
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 912.198
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 141.147
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 10.2838
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 110.078
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 0.748641
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" 1.87357
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 34.1652
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.64477
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 22.253
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 118.722
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" -0.682992
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_46/m1_68_150#" 191.728
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 49.1615
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" 0.459459
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "currm_n_46/m1_68_150#" 0.590306
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.50259
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 601.273
+cap "currm_n_46/m1_390_n660#" "currm_n_46/m1_68_150#" 358.825
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "currm_n_46/m1_390_n660#" 1.51066
+cap "currm_n_46/m1_390_n660#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 2.71691
+cap "currm_n_46/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 8.27849
+cap "currm_n_46/m1_390_n660#" "currm_n_46/a_122_62#" 297.217
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 11.9896
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.95775
+cap "currm_n_46/m1_68_150#" "currm_n_46/m1_390_n660#" 212.247
+cap "currm_n_46/m1_390_n660#" "currm_n_46/a_122_62#" 150.627
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_46/m1_390_n660#" 48.002
+cap "currm_n_44/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 47.55
+cap "currm_n_44/m1_390_n660#" "currm_n_44/m1_68_150#" 6.51667
+cap "currm_n_4/m1_390_n660#" "currm_n_12/m1_68_150#" 38.0139
+cap "currm_n_4/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 57.2618
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_68_150#" 1.13687e-13
+cap "currm_n_7/m1_390_n660#" "currm_n_12/m1_68_150#" 427.662
+cap "currm_n_7/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 47.5514
+cap "currm_n_7/m1_390_n660#" "currm_n_12/a_122_62#" 304.57
+cap "currm_n_12/m1_390_n660#" "currm_n_12/m1_68_150#" 167.025
+cap "currm_n_12/m1_390_n660#" "currm_n_35/a_122_62#" -233.473
+cap "currm_n_12/m1_390_n660#" "currm_n_12/a_122_62#" 144.094
+cap "currm_n_12/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 27.2394
+cap "currm_n_12/m1_390_n660#" "currm_n_35/m1_68_150#" 5.49844
+cap "currm_n_12/m1_390_n660#" "currm_n_35/m1_68_150#" 250.229
+cap "currm_n_12/m1_390_n660#" "currm_n_35/a_122_62#" 208.459
+cap "currm_n_12/m1_390_n660#" "currm_n_12/m1_68_150#" 4.59
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 294.462
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 1.13687e-13
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_390_n660#" 351.082
+cap "currm_n_35/m1_390_n660#" "currm_n_35/m1_68_150#" 160.167
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 157.524
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -133.141
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -557.951
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 225.227
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#" "currm_n_31/m1_68_150#" -32.2003
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_31/m1_68_150#" 3.21709
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" -0.0551165
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -4.1798
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_31/m1_68_150#" 111.994
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_n_31/m1_68_150#" -5.96096
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 2.573
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7.02786
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -136.053
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 6.5075
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#" -347.589
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -472.183
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 0.218775
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 882.001
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 705.169
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 231.652
+cap "currm_n_31/m1_68_150#" "currm_n_21/m1_390_n660#" 9.85452
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 190.208
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 2.03073
+cap "currm_n_21/m1_390_n660#" "currm_n_33/a_122_62#" 136.434
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_164_390#" 1.93583
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -612.93
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -480.528
+cap "currm_n_21/m1_390_n660#" "currm_n_21/a_122_62#" -27.3638
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -6.276
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 10.1326
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -393.452
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 160.472
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" -12.1452
+cap "currm_n_21/m1_390_n660#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 189.074
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -955.495
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 1.78645
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 350.796
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 4.09919
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 141.096
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/a_122_62#" 0.505634
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 47.3902
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_68_150#" 80.0318
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 121.311
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 4.8675
+cap "currm_n_21/m1_390_n660#" "currm_n_33/m1_164_390#" -3.40988
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 25.2074
+cap "currm_n_31/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 6.77733
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 405.429
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_164_390#" 83.9584
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 378.581
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 210.835
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 124.667
+cap "currm_n_21/m1_390_n660#" "currm_n_21/a_122_62#" 216.44
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 0.547246
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 300.716
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 0.0798918
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -626.527
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 506.953
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 236.313
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 2.49923
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_164_390#" 166.782
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 6.02457
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 166.217
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/a_122_62#" -0.064639
+cap "currm_n_21/m1_390_n660#" "currm_n_21/m1_68_150#" 591.455
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_390_n660#" 9.23188
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 9.05332
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 711.666
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 123.905
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -334.415
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 4.78444
+cap "currm_n_21/m1_68_150#" "currm_n_21/m1_164_390#" 203.865
+cap "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 455.09
+cap "currm_n_33/a_122_62#" "currm_n_21/m1_390_n660#" 1.08182
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_390_n660#" 1489.34
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_390_n660#" 774.884
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 183.149
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 820.66
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_164_390#" 46.4344
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 12.6803
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_21/m1_390_n660#" 951.464
+cap "currm_n_21/m1_68_150#" "currm_n_21/m1_390_n660#" 648.002
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 935.366
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 235.328
+cap "currm_n_21/m1_68_150#" "currm_n_21/m1_164_390#" 79.1421
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 234.235
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 392.55
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 35.0572
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_390_n660#" 835.457
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 2.35423
+cap "currm_n_22/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.51634
+cap "currm_n_22/m1_390_n660#" "currm_n_22/a_122_62#" 268.097
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 12.473
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 4.41469
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1432.7
+cap "currm_n_22/a_122_62#" "currm_n_22/m1_68_150#" 1.13687e-13
+cap "currm_n_22/m1_390_n660#" "currm_n_5/a_122_62#" 0.573494
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 3285.49
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 1.11671
+cap "currm_n_22/m1_390_n660#" "currm_n_22/m1_68_150#" 252.309
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 188.934
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 73.643
+cap "currm_n_22/m1_390_n660#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 28.4762
+cap "currm_n_22/m1_390_n660#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 6.5
+cap "currm_n_22/m1_390_n660#" "currm_n_22/m1_164_390#" 0.382212
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 34.4148
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 27.3132
+cap "currm_n_18/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.51634
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 171.185
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 143.196
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_3/m1_68_150#" 8.19839
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 3.26412
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" 86.0282
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 46.1126
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" -1.61715
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_46/m1_68_150#" -42.3215
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6.21647
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 21.2107
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 11.1846
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_18/a_122_62#" 0.573494
+cap "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 12.7536
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 0.103949
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_3/m1_68_150#" 16.6991
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 2.33181
+cap "currm_n_5/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 5.97309
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 257.225
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2851.34
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 177.328
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 37.4781
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_5/a_122_62#" 115.988
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" -71.4094
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 63.4775
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 34.8734
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_46/m1_68_150#" 101.4
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_18/m1_68_150#" 5.40977
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 244.022
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "currm_n_3/m1_68_150#" 166.531
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 33.3982
+cap "currm_n_46/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 901.007
+cap "currm_n_46/m1_390_n660#" "currm_n_46/a_122_62#" 413.182
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 409.681
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.92538
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" 2.33477
+cap "currm_n_3/m1_164_390#" "currm_n_46/a_122_62#" 0.363821
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "currm_n_46/a_122_62#" 0.742305
+cap "currm_n_46/m1_390_n660#" "currm_n_3/m1_68_150#" 344.082
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_3/m1_68_150#" 1.92538
+cap "currm_n_46/m1_390_n660#" "currm_n_46/m1_68_150#" 185.98
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" 0.0386689
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "currm_n_46/m1_390_n660#" 3.53772
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 14.2663
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 33.2822
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/m1_68_150#" 2.51634
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 310.917
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 14.2663
+cap "currm_n_4/a_122_62#" "currm_n_46/m1_390_n660#" 125.69
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 16.6991
+cap "currm_n_46/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 770.459
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_390_n660#" 314.832
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 8.19839
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6.21647
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_46/m1_390_n660#" 178.471
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_164_390#" 0.259872
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6.21647
+cap "currm_n_46/m1_68_150#" "currm_n_46/m1_390_n660#" 176.3
+cap "currm_n_3/m1_68_150#" "currm_n_46/m1_390_n660#" 185.366
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 37.5103
+cap "currm_n_44/m1_390_n660#" "currm_n_44/m1_164_390#" 1.62038
+cap "currm_n_44/m1_390_n660#" "currm_n_6/a_122_62#" 140.118
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_6/m1_68_150#" 45.7617
+cap "currm_n_44/m1_390_n660#" "currm_n_44/m1_68_150#" 8.34427
+cap "currm_n_44/m1_390_n660#" "currm_n_4/a_122_62#" -0.79046
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/m1_68_150#" 2.51634
+cap "currm_n_44/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 115.569
+cap "currm_n_44/m1_390_n660#" "currm_n_6/m1_68_150#" 199.839
+cap "currm_n_44/m1_390_n660#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 8.31042
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_6/a_122_62#" 6.21647
+cap "currm_n_44/m1_390_n660#" "currm_n_44/a_122_62#" 2.12175
+cap "currm_n_6/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 78.4261
+cap "currm_n_6/m1_164_390#" "currm_n_4/m1_390_n660#" 1.36767
+cap "currm_n_4/m1_390_n660#" "currm_n_6/a_122_62#" 268.327
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_4/m1_390_n660#" 1630.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_6/a_122_62#" 12.8306
+cap "currm_n_6/m1_68_150#" "currm_n_4/m1_390_n660#" 341.75
+cap "currm_n_6/m1_68_150#" "currm_n_6/a_122_62#" 1.13687e-13
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_7/m1_164_390#" 635.373
+cap "currm_n_7/a_122_62#" "currm_n_7/m1_390_n660#" 344.091
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2.28901
+cap "currm_n_7/m1_68_150#" "currm_n_7/m1_390_n660#" 550.066
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_7/m1_390_n660#" 2823.65
+cap "currm_n_7/m1_68_150#" "currm_n_7/a_122_62#" 329.87
+cap "currm_n_7/m1_164_390#" "currm_n_7/m1_390_n660#" 140.615
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_7/a_122_62#" 3.47562
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_7/m1_68_150#" 190.569
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_7/m1_390_n660#" -577.904
+cap "currm_n_7/a_122_62#" "currm_n_7/m1_164_390#" 198.137
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_7/m1_68_150#" 1.92538
+cap "currm_n_7/m1_68_150#" "currm_n_7/m1_164_390#" 349.107
+cap "currm_n_43/m1_164_390#" "currm_n_12/m1_390_n660#" -3.86453
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_390_n660#" 57.031
+cap "currm_n_12/m1_164_390#" "currm_n_12/m1_68_150#" 76.3712
+cap "currm_n_43/a_122_62#" "currm_n_12/m1_390_n660#" 129.486
+cap "currm_n_12/m1_390_n660#" "currm_n_35/m1_68_150#" 28.3666
+cap "currm_n_12/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 185.398
+cap "currm_n_12/m1_164_390#" "currm_n_12/m1_390_n660#" 9.37954
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 8.19839
+cap "currm_n_12/m1_164_390#" "currm_n_12/a_122_62#" 82.3237
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 230.569
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_12/m1_390_n660#" 181.157
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_390_n660#" 240.01
+cap "currm_n_12/m1_390_n660#" "currm_n_35/m1_164_390#" 0.394155
+cap "currm_n_12/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2392.91
+cap "currm_n_12/m1_390_n660#" "currm_n_35/a_122_62#" 4.9616
+cap "currm_n_12/a_122_62#" "currm_n_12/m1_68_150#" 108.352
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4.11439
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/m1_68_150#" 3.57958
+cap "currm_n_12/m1_390_n660#" "currm_n_12/a_122_62#" 1.06755
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" 78.6991
+cap "currm_n_12/m1_68_150#" "currm_n_12/m1_390_n660#" 4.2
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_68_150#" 160.917
+cap "currm_n_35/m1_68_150#" "currm_n_12/m1_390_n660#" 590.702
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/m1_68_150#" 5.38206
+cap "currm_n_12/m1_390_n660#" "currm_n_12/m1_164_390#" 0.414638
+cap "currm_n_12/m1_390_n660#" "currm_n_43/a_122_62#" 0.898113
+cap "currm_n_35/m1_164_390#" "currm_n_12/m1_390_n660#" 133.063
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_164_390#" 110.883
+cap "currm_n_35/a_122_62#" "currm_n_12/m1_390_n660#" 440.673
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_12/m1_390_n660#" 4.32461
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_12/m1_390_n660#" 7.93769
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 365.125
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 99.9859
+cap "currm_n_35/m1_390_n660#" "currm_n_35/m1_68_150#" 600.718
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" 303.124
+cap "currm_n_35/m1_390_n660#" "currm_n_35/m1_164_390#" 781.298
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 470.653
+cap "currm_n_35/m1_390_n660#" "currm_n_35/m1_68_150#" 524.666
+cap "currm_n_35/m1_390_n660#" "currm_n_35/a_122_62#" 186.056
+cap "currm_n_32/m1_164_390#" "currm_n_35/m1_68_150#" 53.1709
+cap "currm_n_32/m1_164_390#" "currm_n_35/a_122_62#" 43.0575
+cap "currm_n_35/m1_390_n660#" "currm_n_32/m1_164_390#" 152.205
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 124.488
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -925.843
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -19.0902
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -13.1846
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -2.78052
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -1037.85
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_31/m1_68_150#" 261.823
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" 37.354
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -88.1457
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_ps_18/w_132_72#" 2.09692
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -164.165
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/m1_164_390#" 2.1331
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_15/a_122_62#" -0.377375
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 515.808
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -2318.61
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_33/a_122_62#" 8.27416
+cap "currm_n_31/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 11.9169
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 39.6734
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_31/m1_68_150#" 2.33292
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -1829.11
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/a_122_62#" 82.3423
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_33/a_122_62#" -70.0191
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 135.915
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 207.528
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -71.3383
+cap "currm_n_33/a_122_62#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -13.4643
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_31/m1_68_150#" -68.7965
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 57.4417
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 13.3944
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/m1_68_150#" 37.3123
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -7105.97
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" -1.32973
+cap "currm_n_31/m1_68_150#" "currm_n_33/a_122_62#" 47.7053
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 2.4685
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 77.2091
+cap "currm_n_21/m1_164_390#" "currm_n_33/a_122_62#" 95.5604
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 344.167
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 29.7306
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 2.03073
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 41.9448
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/a_122_62#" -0.489823
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 43.8568
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -10.8488
+cap "currm_n_31/m1_68_150#" "currm_n_21/m1_68_150#" -2.42481
+cap "currm_n_33/a_122_62#" "currm_n_21/a_122_62#" 30.3097
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_31/m1_68_150#" 12.195
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_33/a_122_62#" 39.1569
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.2084
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -1978.02
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/m1_164_390#" 33.4448
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -235.853
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 2.01699
+cap "currm_n_31/m1_68_150#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 43.86
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_ps_18/w_132_72#" 11.0602
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 108.128
+cap "currm_n_31/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -12.9399
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 127.982
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" 0.50925
+cap "currm_n_21/m1_164_390#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 17.5525
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -239.17
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/a_122_62#" -113.586
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" -74.6161
+cap "currm_n_21/m1_164_390#" "currm_n_33/a_122_62#" 1.86015
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 938.714
+cap "currm_n_21/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 701.152
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/a_122_62#" -121.26
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_ps_19/w_132_72#" 12.7254
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1.59608
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.354338
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 314.423
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_33/a_122_62#" 1.08182
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 2.79315
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 121.023
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_21/m1_68_150#" 35.4932
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 68.5543
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "currm_n_21/a_122_62#" -0.489823
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -36.2839
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/m1_164_390#" 139.707
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_21/m1_68_150#" 229.402
+cap "currm_n_31/m1_68_150#" "currm_n_21/m1_68_150#" -2.42481
+cap "currm_n_33/a_122_62#" "currm_n_21/a_122_62#" 32.8756
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -20.1034
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 344.398
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 110.728
+cap "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.11594
+cap "currm_n_33/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 10.0449
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 414.46
+cap "currm_n_21/m1_164_390#" "currm_n_21/a_122_62#" 297.494
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" 0.304544
+cap "currm_n_21/m1_164_390#" "currm_n_21/a_122_62#" 149.823
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_21/m1_68_150#" 70.7096
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/m1_68_150#" 762.61
+cap "currm_n_15/m1_390_n660#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 12.7254
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 212.129
+cap "currm_n_21/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1040.31
+cap "currm_n_15/m1_390_n660#" "currm_n_21/a_122_62#" -146.288
+cap "m1_n5490_1180#" "currm_n_21/a_122_62#" 11.3725
+cap "currm_n_21/m1_164_390#" "currm_n_21/m1_68_150#" 301.501
+cap "currm_n_15/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 124.764
+cap "m1_n5490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 85.6301
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_n_21/a_122_62#" 200.962
+cap "currm_n_21/a_122_62#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 0.602053
+cap "currm_n_15/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 522.488
+cap "m1_n5490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 217.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_n_21/a_122_62#" 592.986
+cap "currm_n_15/m1_390_n660#" "currm_n_21/m1_68_150#" 236.39
+cap "currm_n_21/a_122_62#" "currm_n_21/m1_68_150#" 403.286
+cap "currm_n_21/m1_164_390#" "currm_n_15/m1_390_n660#" 159.837
+cap "currm_n_17/m1_390_n660#" "currm_n_22/m1_164_390#" 39.7534
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 504.499
+cap "currm_n_17/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 186.266
+cap "currm_n_22/a_122_62#" "currm_n_22/m1_164_390#" 73.3964
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 291.918
+cap "currm_n_17/m1_390_n660#" "currm_n_22/a_122_62#" -69.824
+cap "currm_n_22/m1_68_150#" "currm_n_46/a_122_62#" 4.72596
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 193.072
+cap "currm_n_22/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 340.564
+cap "currm_n_22/m1_68_150#" "currm_n_22/m1_164_390#" -15.5705
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 105.467
+cap "currm_n_17/m1_390_n660#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 11.0223
+cap "currm_n_17/m1_390_n660#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 1.66968
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 21.0339
+cap "currm_n_22/a_122_62#" "currm_n_22/m1_68_150#" 168.688
+cap "currm_n_22/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 640.886
+cap "currm_n_17/m1_390_n660#" "currm_n_22/m1_68_150#" 42.3504
+cap "currm_n_17/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 555.687
+cap "currm_n_17/m1_390_n660#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 11.9648
+cap "currm_p_2/m1_190_n590#" "currm_n_22/m1_164_390#" 0.997738
+cap "currm_n_22/m1_68_150#" "currm_n_3/m1_68_150#" -2.17222
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 92.1478
+cap "currm_n_17/m1_390_n660#" "currm_p_2/m1_190_n590#" 2.18705
+cap "currm_n_22/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 14.7866
+cap "currm_n_22/a_122_62#" "currm_n_46/a_122_62#" 33.2094
+cap "currm_n_22/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 105.467
+cap "currm_n_22/m1_68_150#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 22.4036
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 4.34118
+cap "currm_n_3/m1_164_390#" "currm_n_3/m1_68_150#" -55.415
+cap "currm_p_2/m1_190_n590#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 29.5634
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_3/m1_68_150#" 57.6788
+cap "currm_n_18/m1_68_150#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 22.4036
+cap "currm_n_18/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -66.3672
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" -2.97121
+cap "currm_n_18/m1_68_150#" "currm_n_3/m1_68_150#" -2.17222
+cap "currm_n_18/m1_390_n660#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 316.403
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_18/m1_390_n660#" -262.517
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 631.252
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" 2.36118
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" 949.886
+cap "currm_n_18/m1_390_n660#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 1.66968
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" -3.57778
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -5.09419
+cap "currm_n_18/m1_68_150#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 15.2139
+cap "currm_n_18/m1_390_n660#" "currm_n_18/a_122_62#" 2.18705
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 67.7959
+cap "currm_n_18/m1_390_n660#" "currm_p_2/m1_190_n590#" -68.5094
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" 1.0431
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 156.891
+cap "currm_n_18/m1_390_n660#" "currm_n_3/m1_68_150#" 18.5466
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_3/m1_68_150#" -6.45676
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "currm_p_2/m1_190_n590#" 82.2283
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 0.657582
+cap "currm_p_2/m1_190_n590#" "currm_n_18/m1_164_390#" 0.743012
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_2/m1_190_n590#" 403.398
+cap "currm_n_18/a_122_62#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 15.0508
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" 83.2106
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_68_150#" 99.8074
+cap "currm_n_18/m1_390_n660#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 20.6054
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" 131.832
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_164_390#" -7.35028
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "currm_n_46/m1_68_150#" 2.35081
+cap "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 174.951
+cap "currm_n_18/m1_390_n660#" "currm_n_46/m1_68_150#" 0.0869565
+cap "currm_n_18/m1_390_n660#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 10.0734
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 204.96
+cap "currm_n_18/m1_390_n660#" "currm_n_18/m1_68_150#" 10.8905
+cap "currm_p_2/m1_190_n590#" "currm_n_3/m1_164_390#" 5.21092
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 395.772
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_390_n660#" -10.647
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_164_390#" -2.25334
+cap "currm_p_2/m1_190_n590#" "currm_n_46/a_122_62#" 6.27123
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_46/a_122_62#" -58.8062
+cap "currm_n_3/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 63.935
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_164_390#" 33.669
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 53.3158
+cap "currm_n_3/m1_164_390#" "currm_n_46/a_122_62#" 93.0295
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 632.736
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_n_3/m1_164_390#" 0.281295
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 53.3158
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_68_150#" 242.939
+cap "currm_n_4/a_122_62#" "currm_n_46/a_122_62#" 5.35246
+cap "currm_n_3/m1_390_n660#" "currm_n_46/a_122_62#" -218.443
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 53.9309
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 30.4655
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_n_3/m1_164_390#" 0.140647
+cap "currm_n_5/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_3/m1_68_150#" 7.90704
+cap "currm_n_3/m1_390_n660#" "currm_n_46/m1_68_150#" 0.173913
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 32.1184
+cap "currm_n_3/m1_390_n660#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -11.9229
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/m1_164_390#" 68.1841
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 4.70162
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "currm_n_46/a_122_62#" 0.13368
+cap "currm_n_3/m1_164_390#" "currm_n_3/m1_68_150#" 16.7107
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_164_390#" 384.467
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.0122436
+cap "currm_n_46/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -43.0482
+cap "currm_n_3/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 61.0768
+cap "currm_n_3/m1_390_n660#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -17.59
+cap "currm_n_3/m1_390_n660#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 5.63072
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 7.00721
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_46/a_122_62#" 2.20811
+cap "currm_p_2/m1_190_n590#" "currm_n_3/m1_164_390#" -5.98362
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_68_150#" 46.2097
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_390_n660#" 1057.28
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 47.3169
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 320.461
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_46/a_122_62#" 1274.39
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -1.42109e-14
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 97.8413
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/m1_68_150#" 10.0328
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "currm_n_46/a_122_62#" -1.77636e-15
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_68_150#" 265.668
+cap "currm_n_3/m1_164_390#" "currm_n_3/m1_68_150#" 18.5013
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 32.1184
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_164_390#" 6.77052
+cap "currm_n_3/m1_390_n660#" "currm_n_46/a_122_62#" -42.5979
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_4/a_122_62#" 376.162
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -8.94594
+cap "currm_n_3/m1_390_n660#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 12.5275
+cap "currm_n_46/a_122_62#" "currm_n_46/m1_68_150#" 2.35081
+cap "currm_n_4/a_122_62#" "currm_n_6/a_122_62#" 12.7598
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -177.197
+cap "currm_n_3/m1_390_n660#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 358.132
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_164_390#" 37.5245
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_68_150#" 82.3423
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -0.0122929
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 161.851
+cap "currm_n_3/m1_390_n660#" "currm_n_3/m1_68_150#" 110.232
+cap "currm_n_3/m1_68_150#" "currm_n_6/m1_68_150#" -2.05789
+cap "currm_n_3/m1_390_n660#" "currm_n_4/a_122_62#" -35.6663
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_46/a_122_62#" 332.891
+cap "currm_n_3/m1_164_390#" "currm_n_46/a_122_62#" 83.9136
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 30.4655
+cap "currm_n_3/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 58.3706
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -1.42568
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_3/m1_164_390#" 178.911
+cap "currm_n_4/a_122_62#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 7.08197
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -24.7067
+cap "currm_n_4/a_122_62#" "currm_n_6/m1_164_390#" -3.0307
+cap "currm_n_3/m1_390_n660#" "currm_n_46/m1_68_150#" 0.0869565
+cap "currm_n_3/m1_164_390#" "currm_n_6/a_122_62#" -2.40279
+cap "currm_n_46/a_122_62#" "currm_n_3/m1_68_150#" 192.103
+cap "currm_n_4/a_122_62#" "currm_n_46/a_122_62#" 59.9695
+cap "currm_n_3/m1_390_n660#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 21.103
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 136.073
+cap "currm_n_6/m1_68_150#" "currm_n_2/m1_390_n660#" 58.0248
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_2/m1_390_n660#" 13.7911
+cap "currm_n_4/a_122_62#" "currm_n_6/m1_164_390#" 1.29213
+cap "currm_n_1/m1_164_390#" "currm_n_4/a_122_62#" -4.27267
+cap "currm_n_1/m1_68_150#" "currm_n_6/m1_68_150#" -2.05789
+cap "currm_n_1/m1_68_150#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 1.27559
+cap "currm_n_6/m1_164_390#" "currm_n_2/m1_390_n660#" 28.0906
+cap "currm_n_6/a_122_62#" "currm_n_6/m1_164_390#" 11.3935
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -6500.04
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -11.1879
+cap "currm_n_44/a_122_62#" "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 4.62765
+cap "currm_n_2/m1_390_n660#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -2268.56
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 386.6
+cap "currm_n_6/a_122_62#" "currm_n_4/a_122_62#" 11.3173
+cap "currm_n_4/a_122_62#" "currm_n_2/m1_390_n660#" 14.3381
+cap "currm_n_6/a_122_62#" "currm_n_2/m1_390_n660#" 21.748
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_4/a_122_62#" -713.912
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/m1_68_150#" 19.9208
+cap "currm_n_44/a_122_62#" "currm_n_4/a_122_62#" 16.5437
+cap "currm_n_44/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -247.129
+cap "currm_n_44/a_122_62#" "currm_n_6/a_122_62#" 36.3119
+cap "currm_n_6/m1_68_150#" "currm_n_6/m1_164_390#" -27.7566
+cap "currm_n_6/m1_68_150#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 250.783
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -500.927
+cap "currm_n_2/m1_390_n660#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 8.77827
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_4/a_122_62#" 33.6706
+cap "currm_n_44/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -82.4627
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_6/a_122_62#" 25.9179
+cap "currm_n_6/a_122_62#" "currm_n_6/m1_68_150#" 121.531
+cap "currm_n_6/m1_164_390#" "currm_n_6/m1_68_150#" -101.377
+cap "currm_n_6/m1_164_390#" "currm_n_4/m1_390_n660#" 57.2824
+cap "m1_n5490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 142.557
+cap "currm_n_6/a_122_62#" "m1_n5490_1180#" 33.1399
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 635.615
+cap "currm_n_4/m1_390_n660#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 16.8037
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 36.5662
+cap "currm_n_6/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 70.7096
+cap "currm_n_6/a_122_62#" "currm_n_6/m1_68_150#" 373.732
+cap "currm_n_6/a_122_62#" "currm_n_4/m1_390_n660#" -148.206
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 608.968
+cap "currm_n_4/m1_164_390#" "currm_n_6/m1_164_390#" -2.0796
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 10.6544
+cap "currm_n_6/m1_164_390#" "currm_n_6/a_122_62#" 118.44
+cap "m1_n5490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 265.849
+cap "currm_n_4/m1_164_390#" "currm_n_6/a_122_62#" 0.660902
+cap "currm_n_6/m1_68_150#" "currm_n_4/m1_390_n660#" 158.03
+cap "currm_n_6/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 538.452
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 200.962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_n_4/m1_390_n660#" 302.856
+cap "currm_n_4/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n108_n200#" "currm_n_6/m1_68_150#" 0.417007
+cap "currm_n_6/m1_164_390#" "m1_n5490_1180#" 0.802683
+cap "currm_n_7/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 7.24049
+cap "currm_n_7/m1_164_390#" "currm_n_7/m1_68_150#" 667.773
+cap "currm_n_7/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2490.81
+cap "currm_n_7/m1_390_n660#" "currm_n_7/m1_164_390#" 203.448
+cap "currm_n_7/m1_68_150#" "currm_n_7/a_122_62#" 474.455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 37.8142
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -152.712
+cap "currm_n_7/m1_390_n660#" "currm_n_7/a_122_62#" -130.08
+cap "currm_n_7/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 929.011
+cap "currm_n_7/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4477.38
+cap "currm_n_7/m1_164_390#" "currm_n_43/a_122_62#" 0.823332
+cap "currm_n_7/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 328.163
+cap "currm_n_7/m1_390_n660#" "currm_n_7/m1_68_150#" 216.475
+cap "currm_n_7/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 894.659
+cap "currm_n_7/a_122_62#" "currm_n_43/a_122_62#" 23.3261
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_n_7/m1_164_390#" 0.0445176
+cap "currm_n_7/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 766.072
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 16.8488
+cap "currm_n_7/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -338.287
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 280.236
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 298.881
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -79.5654
+cap "currm_n_7/m1_164_390#" "currm_n_7/a_122_62#" 492.932
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 0.915156
+cap "currm_n_7/m1_390_n660#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" 36.7865
+cap "currm_n_38/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 176.109
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 11.5871
+cap "currm_n_9/m1_390_n660#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" 23.248
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 41.9057
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 633.326
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/a_122_62#" 33.2477
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -200.956
+cap "currm_n_9/m1_390_n660#" "currm_n_43/a_122_62#" -67.2029
+cap "currm_n_12/m1_68_150#" "currm_n_12/a_122_62#" 83.3471
+cap "currm_p_16/m1_190_n590#" "currm_n_12/a_122_62#" 162.036
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 661.73
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 220.577
+cap "currm_n_12/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 600.257
+cap "currm_n_12/a_122_62#" "currm_n_35/a_122_62#" -0.389789
+cap "currm_p_16/m1_190_n590#" "currm_n_35/m1_164_390#" 1.90628
+cap "currm_n_43/a_122_62#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -20.2592
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -192.74
+cap "currm_p_16/m1_190_n590#" "currm_n_12/m1_68_150#" 243.338
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 305.18
+cap "currm_n_9/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 124.691
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1791.13
+cap "currm_n_12/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 729.269
+cap "currm_n_12/a_122_62#" "currm_n_43/a_122_62#" 38.8381
+cap "currm_p_16/m1_190_n590#" "currm_n_35/a_122_62#" -1.58062
+cap "currm_n_9/m1_390_n660#" "currm_n_35/m1_68_150#" 24.8537
+cap "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_n_35/a_122_62#" -0.5904
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 277.009
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 432.778
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 62.5659
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" 0.026905
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/m1_68_150#" 24.1149
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 172.601
+cap "currm_n_12/m1_68_150#" "currm_n_43/a_122_62#" 90.0516
+cap "currm_n_9/m1_390_n660#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 18.1396
+cap "currm_p_16/m1_190_n590#" "currm_n_43/a_122_62#" 76.5021
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_n_35/a_122_62#" 0.321036
+cap "currm_n_43/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 428.756
+cap "currm_n_43/a_122_62#" "currm_n_35/a_122_62#" 66.1357
+cap "currm_n_9/m1_390_n660#" "currm_n_12/a_122_62#" -116.315
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -12.621
+cap "currm_p_16/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 38.2806
+cap "currm_n_12/m1_68_150#" "currm_n_35/m1_68_150#" -2.97905
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 267.699
+cap "currm_n_9/m1_390_n660#" "currm_n_12/m1_68_150#" 120.589
+cap "currm_p_16/m1_190_n590#" "currm_n_9/m1_390_n660#" 81.6793
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 9.97723
+cap "currm_n_9/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 149.262
+cap "currm_n_9/m1_390_n660#" "currm_n_35/a_122_62#" 4.18087
+cap "currm_n_12/m1_68_150#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 58.9904
+cap "currm_p_15/m1_60_n360#" "currm_n_35/a_122_62#" 0.821857
+cap "currm_p_16/m1_190_n590#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 16.4102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 1.59608
+cap "currm_n_9/m1_390_n660#" "currm_n_35/a_122_62#" -98.6768
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 19.6997
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_68_150#" 332.794
+cap "currm_n_12/m1_164_390#" "currm_n_35/a_122_62#" 14.6754
+cap "currm_n_9/m1_390_n660#" "currm_n_35/m1_164_390#" 264.807
+cap "currm_n_35/m1_164_390#" "currm_n_35/m1_68_150#" 279.251
+cap "currm_n_9/m1_390_n660#" "currm_n_43/a_122_62#" 4.18087
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 361.655
+cap "currm_n_35/m1_164_390#" "currm_n_12/m1_164_390#" 1.74734
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/a_122_62#" 27.3973
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 71.4014
+cap "currm_n_35/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 900.981
+cap "currm_n_12/a_122_62#" "currm_n_35/a_122_62#" -0.389789
+cap "currm_n_9/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -1.60435
+cap "currm_n_9/m1_390_n660#" "currm_n_35/m1_68_150#" 119.102
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 78.7031
+cap "currm_n_9/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 153.196
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 661.767
+cap "currm_n_9/m1_390_n660#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 23.099
+cap "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_35/m1_68_150#" 29.6247
+cap "currm_n_35/m1_164_390#" "currm_n_35/a_122_62#" 356.438
+cap "currm_n_43/a_122_62#" "currm_n_35/a_122_62#" 20.9796
+cap "currm_n_9/m1_390_n660#" "currm_ps_0/w_132_72#" 12.232
+cap "currm_n_12/m1_68_150#" "currm_n_35/m1_68_150#" -2.97905
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_68_150#" 389.333
+cap "currm_n_38/m1_390_n660#" "currm_ps_0/w_132_72#" 12.4993
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_35/m1_164_390#" 1751.1
+cap "currm_n_38/m1_390_n660#" "currm_n_35/a_122_62#" -105.779
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2086.43
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -335.37
+cap "currm_n_35/m1_68_150#" "currm_n_35/m1_164_390#" -99.1327
+cap "currm_n_38/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 869.209
+cap "currm_n_38/m1_390_n660#" "currm_n_35/m1_164_390#" -212.582
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_35/m1_164_390#" -270.652
+cap "currm_n_38/m1_390_n660#" "currm_n_35/m1_68_150#" 151.458
+cap "currm_n_38/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.950778
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 671.826
+cap "currm_n_35/a_122_62#" "currm_n_35/m1_164_390#" 612.705
+cap "currm_ps_0/a_132_72#" "currm_n_35/a_122_62#" 10.4509
+cap "currm_n_41/m1_390_n660#" "currm_n_35/a_122_62#" -51.2435
+cap "currm_n_35/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 861.861
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_41/m1_390_n660#" 1233.2
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_35/a_122_62#" 730.112
+cap "currm_n_32/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 1580.15
+cap "currm_n_41/m1_390_n660#" "currm_n_32/m1_164_390#" 581.51
+cap "currm_n_35/a_122_62#" "currm_n_32/m1_164_390#" 242.158
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_32/m1_164_390#" 2574.55
+cap "currm_n_41/m1_390_n660#" "currm_ps_1/w_132_72#" 7.07195
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 301.666
+cap "currm_n_35/m1_68_150#" "currm_n_41/m1_390_n660#" 200.328
+cap "currm_n_35/m1_68_150#" "currm_n_35/a_122_62#" 132.401
+cap "currm_n_35/m1_68_150#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 891.217
+cap "currm_n_35/a_122_62#" "currm_ps_1/a_132_72#" 7.07043
+cap "currm_n_35/m1_68_150#" "currm_n_32/m1_164_390#" 252.224
+cap "currm_n_41/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 533.788
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -1.01915
+cap "m4_n7070_n540#" "currm_n_31/a_122_62#" -145.434
+cap "currm_ps_18/m1_70_1220#" "currm_n_31/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 2.09692
+cap "currm_ps_18/m1_70_1220#" "m4_n7070_n540#" -302.469
+cap "m4_n7070_n540#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 39.6734
+cap "currm_n_15/m1_164_390#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.115312
+cap "m4_n7070_n540#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 27.3611
+cap "currm_ps_18/m1_70_1220#" "currm_n_31/m1_164_390#" 90.7605
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_n_31/m1_164_390#" -23.5819
+cap "currm_n_15/m1_164_390#" "currm_n_31/a_122_62#" 1.89584
+cap "m4_n7070_n540#" "currm_n_31/m1_164_390#" 579.751
+cap "currm_ps_18/m1_70_1220#" "currm_n_15/m1_164_390#" -206.867
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 1.14831
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -85.8945
+cap "currm_n_15/m1_164_390#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.423573
+cap "currm_n_15/m1_164_390#" "m4_n7070_n540#" -1998.77
+cap "currm_n_15/m1_164_390#" "currm_n_31/m1_164_390#" 192.308
+cap "m4_n7070_n540#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -308.43
+cap "currm_n_31/a_122_62#" "m4_n7070_n540#" 93.7248
+cap "currm_n_31/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_ps_18/m1_70_1220#" 11.0602
+cap "currm_n_15/m1_164_390#" "currm_n_31/m1_164_390#" 8.41814
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_15/m1_164_390#" 10.976
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 60.0275
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 29.2103
+cap "currm_ps_18/m1_70_1220#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 316.858
+cap "currm_n_15/m1_164_390#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -12.8651
+cap "currm_n_31/a_122_62#" "currm_n_31/m1_164_390#" 0.127241
+cap "currm_n_31/a_122_62#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 4.47273
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 219.14
+cap "currm_ps_18/m1_70_1220#" "currm_n_15/m1_164_390#" 98.5884
+cap "currm_n_31/a_122_62#" "currm_n_15/m1_164_390#" -0.98032
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -151.821
+cap "currm_n_31/a_122_62#" "currm_n_33/a_122_62#" 14.1163
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 17.4731
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "m4_n7070_n540#" -509.749
+cap "currm_ps_18/m1_70_1220#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 36.5794
+cap "currm_n_15/m1_164_390#" "VN" -1.86783
+cap "currm_n_31/a_122_62#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 1.88297
+cap "currm_ps_18/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 77.376
+cap "currm_n_31/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 51.0265
+cap "currm_n_15/m1_164_390#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 87.0147
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -26.673
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 2.66911
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_11/m1_60_n360#" 1.94912
+cap "currm_ps_18/m1_70_1220#" "currm_p_11/m1_60_n360#" 18.908
+cap "currm_ps_18/m1_70_1220#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 15.915
+cap "currm_n_15/m1_164_390#" "m4_n7070_n540#" -1895.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -320.577
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 282.076
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "currm_n_15/m1_164_390#" 3.79647
+cap "currm_n_31/a_122_62#" "currm_n_31/m1_68_150#" 2.04828
+cap "m4_n7070_n540#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 344.167
+cap "m4_n7070_n540#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 21.8932
+cap "currm_ps_18/m1_70_1220#" "m4_n7070_n540#" -675.528
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -6.28139
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 369.936
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 41.6002
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_15/m1_164_390#" 264.6
+cap "m4_n7070_n540#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 68.9482
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_11/m1_60_n360#" 1.88659
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 106.343
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.540894
+cap "currm_n_15/m1_164_390#" "currm_n_31/m1_164_390#" 1.75289
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_31/a_122_62#" 41.3727
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 29.2712
+cap "currm_n_15/m1_164_390#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 160.498
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 37.5419
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -44.8701
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_11/m1_60_n360#" 32.4481
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 749.46
+cap "currm_n_15/m1_164_390#" "currm_p_11/m1_60_n360#" 11.575
+cap "currm_n_31/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -118.998
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 38.631
+cap "currm_n_31/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -92.6105
+cap "currm_n_15/m1_164_390#" "currm_n_31/a_122_62#" -7.31102
+cap "currm_n_31/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 12.7254
+cap "currm_n_15/m1_164_390#" "currm_n_15/m1_68_150#" 0.0493399
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 341.813
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 344.421
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 413.188
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 106.163
+cap "currm_n_15/m1_164_390#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 127.462
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -205.282
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 17.4937
+cap "currm_p_11/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.27569
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 390.789
+cap "currm_n_15/m1_164_390#" "currm_p_11/m1_60_n360#" 10.8226
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/m1_60_n360#" 34.1923
+cap "currm_n_15/m1_164_390#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 85.7652
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 185.374
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_11/m1_60_n360#" 327.274
+cap "currm_n_15/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 70.7096
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 50.3182
+cap "currm_n_33/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 12.7254
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 132.308
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 168.927
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 21.3425
+cap "currm_p_8/m1_60_n360#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 105.919
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 276.495
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_8/m1_190_n590#" -4.57926
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 139.301
+cap "currm_p_8/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 25.6508
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 798.029
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_8/m1_190_n590#" 107.284
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.152734
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 18.1541
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -2.30227
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_8/m1_190_n590#" 491.59
+cap "currm_p_2/m1_190_n590#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" 0.606202
+cap "currm_p_2/m1_190_n590#" "currm_p_8/m1_190_n590#" 14.098
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 434.42
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 57.2438
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 15.9955
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 354.939
+cap "currm_p_8/m1_60_n360#" "currm_p_8/m1_190_n590#" -96.7871
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/m1_190_n590#" -1.72512
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 724.328
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_8/m1_190_n590#" 105.467
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_2/m1_190_n590#" -2.14307
+cap "currm_n_17/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 137.03
+cap "currm_p_8/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.39624
+cap "currm_p_8/m1_60_n360#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 16.0305
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 81.18
+cap "currm_n_16/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 11.9648
+cap "currm_p_2/m1_190_n590#" "currm_p_3/m1_190_n590#" 6.60524
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "m1_n6490_1180#" -0.0576622
+cap "currm_p_3/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.98163
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 3162.84
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 15.9955
+cap "currm_n_18/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 323.076
+cap "currm_p_2/m1_190_n590#" "m1_n830_1270#" 6.40553
+cap "currm_p_2/m1_190_n590#" "currm_n_3/m1_164_390#" 0.814583
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 18.1541
+cap "m1_n830_1270#" "m1_n6490_1180#" -0.0694338
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_18/a_122_62#" 318.358
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3744.88
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.152734
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n830_1270#" 247.417
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" 10.0734
+cap "currm_p_2/m1_190_n590#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -21.9298
+cap "currm_p_2/m1_190_n590#" "m1_n6490_1180#" -0.130188
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 362.754
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "m1_n830_1270#" -8.91412
+cap "currm_p_2/m1_190_n590#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 4762.87
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2236.23
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 131.794
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1.19876
+cap "currm_p_2/m1_190_n590#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 253.503
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n6490_1180#" 348.005
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 952.26
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.39624
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 25.5865
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 37.9046
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" 10.7811
+cap "currm_p_12/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 94.7256
+cap "m1_n830_1270#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 18.6253
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.77957
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 29.9965
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 52.8731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 41.8153
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -2.04522
+cap "m1_n830_1270#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 4.21452
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_12/m1_70_460#" 53.0444
+cap "currm_p_2/m1_190_n590#" "currm_n_3/m1_164_390#" 5.31029
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/m1_164_390#" -0.0716723
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/m1_68_150#" 0.497908
+cap "currm_p_12/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 67.6525
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n830_1270#" 141.682
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -85.3978
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.340715
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 1.49011
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -22.6376
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_2/m1_190_n590#" 262.87
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 628.04
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.98163
+cap "currm_n_3/m1_164_390#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 1.74858
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_4/a_122_62#" 180.316
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "currm_n_3/m1_164_390#" 213.313
+cap "currm_p_12/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 16.957
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -36.3866
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 62.6757
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_3/m1_164_390#" 126.069
+cap "currm_p_12/m1_70_460#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 984.971
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 215.116
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_2/m1_190_n590#" 129.633
+cap "m1_n830_1270#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 34.2302
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -27.2423
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 22.0387
+cap "currm_n_3/m1_164_390#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.17453
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 35.691
+cap "currm_p_12/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 17.3726
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -19.4679
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n6490_1180#" 116.784
+cap "currm_n_3/a_122_62#" "currm_n_3/m1_164_390#" -2.74787
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 77.4178
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/a_122_62#" 3.53153
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 99.5226
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 85.3807
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 22.676
+cap "currm_n_3/m1_164_390#" "currm_n_0/a_122_62#" -2.74787
+cap "currm_n_6/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 41.4291
+cap "currm_n_4/a_122_62#" "m1_n6490_1180#" -1.42109e-14
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 593.351
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_0/a_122_62#" 0.252252
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 0.344401
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -1.42568
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 19.5191
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "m1_n6490_1180#" -50.4277
+cap "m1_n830_1270#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 68.1699
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -1.1743
+cap "currm_n_4/a_122_62#" "currm_n_3/m1_164_390#" 0.857456
+cap "currm_n_3/m1_164_390#" "currm_n_6/a_122_62#" 5.31029
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_6/a_122_62#" 719.732
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -156.646
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 41.8153
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.77957
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 455.2
+cap "currm_n_4/a_122_62#" "currm_n_6/a_122_62#" 9.88919
+cap "currm_n_4/a_122_62#" "currm_p_21/m1_190_n590#" -2.1568
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_3/m1_68_150#" 0.497908
+cap "currm_n_4/a_122_62#" "m1_n830_1270#" -17.1368
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_n_4/a_122_62#" -13.2604
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_6/a_122_62#" -42.7911
+cap "m1_n6490_1180#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -35.1488
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" 0.79591
+cap "currm_p_21/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 16.0305
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.953752
+cap "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_p_21/m1_70_460#" 21.1714
+cap "currm_n_4/a_122_62#" "currm_p_21/m1_70_460#" 79.0814
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "m1_n830_1270#" -64.307
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -11.622
+cap "currm_n_3/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 89.688
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 17.7428
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 19.9833
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "m1_n6490_1180#" -122.646
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -55.2551
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_6/m1_164_390#" 146.439
+cap "currm_p_21/m1_60_n360#" "currm_n_6/m1_164_390#" -229.938
+cap "currm_n_4/a_122_62#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -939.699
+cap "currm_p_21/m1_70_460#" "currm_n_6/m1_164_390#" -83.0833
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 130.98
+cap "currm_n_4/a_122_62#" "currm_p_21/m1_70_460#" -0.883433
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 2.5879
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_n_6/a_122_62#" 73.1733
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_n_6/a_122_62#" -9.3711
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 83.4926
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 54.858
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 16.0305
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.598297
+cap "currm_n_4/a_122_62#" "currm_n_6/m1_164_390#" 14.6296
+cap "currm_n_1/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "currm_p_21/m1_70_460#" 8.77827
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -278.374
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "m1_n6490_1180#" 2.27374e-13
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 21.0006
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -363.784
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 18.1541
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 323.895
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 237.064
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "currm_p_21/m1_70_460#" 189.407
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 403.833
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 947.317
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 24.9172
+cap "currm_n_4/m1_164_390#" "currm_n_6/m1_164_390#" 1.96364
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 36.5782
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_n_6/m1_164_390#" -23.1972
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 40.5432
+cap "currm_p_21/m1_70_460#" "currm_n_4/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" 16.7937
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 116.55
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 181.583
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -0.126269
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 431.312
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "currm_n_6/m1_164_390#" 63.6491
+cap "currm_n_6/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2002.29
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 498.819
+cap "currm_p_21/m1_60_n360#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 106.191
+cap "currm_p_21/m1_70_460#" "currm_n_6/m1_164_390#" 11.6363
+cap "currm_p_21/m1_60_n360#" "currm_n_6/m1_164_390#" -4.88528
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#" "currm_p_21/m1_60_n360#" 0.721253
+cap "m1_n6490_1180#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 70.1329
+cap "currm_n_6/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "currm_p_21/m1_70_460#" 38.7257
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 17.8515
+cap "currm_n_7/m1_164_390#" "currm_p_21/m1_60_n360#" -81.4057
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 805.29
+cap "currm_p_21/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.582714
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/m1_60_n360#" 104.119
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 6837.69
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1546.8
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7377.12
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -2.89645
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1614.04
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 1076.92
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_n_7/m1_164_390#" -111.213
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7.34785
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 84.6668
+cap "currm_n_7/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 5666.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 36.5164
+cap "currm_n_7/m1_164_390#" "currm_n_7/m1_68_150#" 0.0547306
+cap "currm_n_7/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6453.65
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2523.36
+cap "currm_p_21/m1_70_460#" "currm_n_7/m1_164_390#" 2014.6
+cap "currm_n_7/m1_164_390#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 191.788
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2410.8
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 35.7088
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 250.303
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_15/m1_60_n360#" 0.4218
+cap "currm_p_17/m1_190_n590#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -7.90187
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 124.477
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" 565.244
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_17/m1_190_n590#" 100.828
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 888.19
+cap "currm_p_17/m1_190_n590#" "currm_n_9/m1_68_150#" 0.0273669
+cap "currm_n_8/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" 29.1088
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 448.564
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_n_38/a_122_62#" 0.321036
+cap "currm_p_17/m1_190_n590#" "currm_ps_1/m1_170_170#" -2.12973
+cap "currm_p_15/m1_60_n360#" "currm_n_38/a_122_62#" 0.633831
+cap "currm_p_17/m1_190_n590#" "currm_n_38/a_122_62#" 5.41822
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" 195.653
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -2.03844
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" 11.7779
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 543.512
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -275.821
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 42.804
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1.39578
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2482.97
+cap "currm_p_15/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1418.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -264.273
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 661.73
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" 18.9715
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_p_15/m1_60_n360#" 24.5087
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3054.4
+cap "currm_p_15/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1641.87
+cap "currm_p_17/m1_190_n590#" "currm_p_15/m1_60_n360#" -33.9353
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_p_17/m1_190_n590#" 1309.51
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2279.85
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_n_38/a_122_62#" -0.5904
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1933.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 236.904
+cap "currm_p_17/m1_190_n590#" "currm_n_43/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 2.66124
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 1.11431
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" -380.702
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2203.21
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 79.6857
+cap "currm_p_17/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -12.331
+cap "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 717.62
+cap "currm_p_15/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 3.10916
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 17.3507
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 70.0277
+cap "currm_n_10/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 12.232
+cap "currm_n_9/m1_164_390#" "currm_ps_1/m1_80_400#" 70.3484
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_1/m1_80_400#" 35.5527
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 28.1303
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -2.71823
+cap "currm_n_9/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -99.6832
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 6.7767
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 3.09411
+cap "currm_n_9/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -216.861
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_n_9/m1_164_390#" 68.851
+cap "currm_n_38/m1_164_390#" "currm_ps_1/m1_80_400#" -165.244
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.309024
+cap "currm_n_9/m1_164_390#" "currm_n_38/a_122_62#" 14.9308
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_15/m1_60_n360#" 0.419806
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -195.4
+cap "currm_n_9/m1_164_390#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 87.0147
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 15.915
+cap "currm_n_38/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 558.477
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_n_38/m1_164_390#" 166.846
+cap "currm_n_9/m1_164_390#" "currm_n_38/m1_164_390#" 451.558
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 68.9482
+cap "currm_n_9/m1_164_390#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 0.152286
+cap "currm_ps_0/w_132_72#" "currm_ps_0/a_132_72#" 2769.52
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/a_132_72#" 112.496
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_63_n200#" "currm_n_38/m1_164_390#" 0.282107
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/w_132_72#" 1321.57
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 16.7018
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/w_132_72#" 72.8726
+cap "currm_ps_0/a_132_72#" "currm_n_38/m1_164_390#" -680.467
+cap "currm_n_38/a_122_62#" "currm_ps_0/a_132_72#" 10.4509
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_38/m1_164_390#" 1077.95
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/a_132_72#" 50.9597
+cap "currm_ps_0/w_132_72#" "currm_n_38/m1_164_390#" -1670.04
+cap "currm_ps_1/m1_80_400#" "currm_n_38/m1_164_390#" -35.0846
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/w_132_72#" -0.82704
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" 0.271763
+cap "currm_ps_0/w_132_72#" "currm_n_43/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" 12.4993
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_n_38/m1_164_390#" -173.674
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/a_132_72#" 716.799
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 2032.99
+cap "currm_ps_1/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 790.855
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 42.421
+cap "currm_n_39/m1_164_390#" "currm_ps_1/a_132_72#" 2660.87
+cap "currm_ps_1/w_132_72#" "currm_n_39/m1_164_390#" 702.173
+cap "currm_n_41/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_50_n200#" "currm_ps_1/w_132_72#" 7.07195
+cap "currm_n_39/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 4288.76
+cap "currm_n_39/m1_164_390#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 3186.31
+cap "currm_ps_1/a_132_72#" "currm_n_41/a_122_62#" 7.07043
+cap "currm_ps_1/m1_80_400#" "currm_n_39/m1_164_390#" -223.488
+cap "currm_ps_1/w_132_72#" "currm_ps_1/a_132_72#" 481.323
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2191.62
+cap "currm_ps_1/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 875.499
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 39.6734
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -158.488
+cap "currm_ps_18/m1_170_170#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -5.45796
+cap "currm_ps_18/m1_170_170#" "currm_ps_18/m1_70_1220#" -6.19406
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/m1_70_1220#" 1.93369
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 13.2844
+cap "currm_ps_18/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -2022.37
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/m1_70_1220#" 7.28571
+cap "currm_ps_18/a_132_72#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -41.1569
+cap "currm_ps_18/a_132_72#" "currm_ps_18/m1_70_1220#" -149.259
+cap "currm_ps_18/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -171.789
+cap "currm_ps_18/a_132_72#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.230625
+cap "currm_ps_18/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 0.474842
+cap "currm_ps_18/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -1.01915
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 315.547
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_18/m1_70_1220#" -723.88
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 1.57727
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_18/m1_70_1220#" -1405.32
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 52.4159
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 0.29413
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 344.167
+cap "currm_ps_18/m1_70_1220#" "currm_ps_18/a_132_72#" 289.901
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_ps_18/m1_70_1220#" -28.9208
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 0.728289
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_11/m1_60_n360#" 26.4925
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 40.4163
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_18/a_132_72#" 18.2838
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -320.577
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "m1_n6490_1180#" 0.309847
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_18/m1_70_1220#" 240.641
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_18/a_132_72#" 21.1053
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 247.702
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -308.43
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -1129.07
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_18/m1_70_1220#" 766.715
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/a_132_72#" -42.0829
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_ps_18/a_132_72#" -151.821
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 282.076
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/a_132_72#" 98.6733
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 53.2191
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "currm_ps_18/m1_70_1220#" -117.675
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/m1_70_1220#" -7.42455
+cap "m1_n6490_1180#" "currm_ps_18/a_132_72#" 10.5602
+cap "currm_ps_18/m1_70_1220#" "currm_p_11/m1_60_n360#" 11.5742
+cap "currm_ps_18/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_18/m1_70_1220#" -18.4757
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_18/a_132_72#" -1968.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 37.1258
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -9.74539
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1179.3
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 14.8086
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 301.109
+cap "currm_p_11/m1_60_n360#" "currm_ps_18/a_132_72#" 12.2019
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" -205.598
+cap "currm_ps_18/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 894.962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 37.5419
+cap "currm_ps_18/a_132_72#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 148.932
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" -40.676
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 8.17438
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 426.554
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 68.9482
+cap "currm_p_11/m1_60_n360#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 28.663
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 1262.38
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_18/a_132_72#" 341.282
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 0.0467706
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/m1_190_n590#" 11.6995
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" -52.928
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2304.86
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1528.17
+cap "currm_p_11/m1_60_n360#" "currm_p_11/m1_190_n590#" -207.774
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 9.72012
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 811.525
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 397.984
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_190_n590#" 16.7473
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_11/m1_60_n360#" 0.827071
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 152.043
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/m1_60_n360#" 44.3492
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -153.188
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -385.911
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_190_n590#" 3.72994
+cap "currm_p_8/m1_190_n590#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 108.71
+cap "currm_p_8/m1_60_n360#" "m1_970_2720#" 1294.95
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2971.82
+cap "currm_p_8/m1_60_n360#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 208.075
+cap "currm_p_2/m1_190_n590#" "m1_970_2720#" 0.631389
+cap "currm_p_8/m1_60_n360#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 40.4667
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n6490_1180#" 6.10157
+cap "m1_970_2720#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1712.72
+cap "currm_p_2/m1_190_n590#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -0.0488877
+cap "m1_970_2720#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 42.014
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_8/m1_190_n590#" 119.153
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 20.0676
+cap "currm_p_8/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 105.467
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_8/m1_60_n360#" 383.782
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.0521096
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_970_2720#" 2365.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1640.74
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1887.64
+cap "currm_p_8/m1_60_n360#" "currm_p_8/m1_190_n590#" -74.8392
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -0.0647778
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.458203
+cap "m1_970_2720#" "currm_p_8/m1_190_n590#" 853.857
+cap "m1_n830_1270#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -1.08611
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 0.0160435
+cap "m1_n830_1270#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 11.2829
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/m1_190_n590#" -3.22253
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 5032.99
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 7743.48
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 178.572
+cap "currm_p_2/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1973.13
+cap "currm_p_2/m1_190_n590#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2160.98
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/m1_190_n590#" -2.34651
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 7119.38
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 759.205
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 363.232
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 6.70828
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 5.97487
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 19.3851
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_3/m1_60_n360#" 12.7415
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 93.6013
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "m1_n170_1370#" 1.42552
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 49.2171
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 12.5861
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 52.3736
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n830_1270#" 21.1186
+cap "currm_p_12/m1_70_460#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2619.07
+cap "currm_p_12/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -11.6604
+cap "currm_p_12/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 372.854
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 1560.09
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 46.3213
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#" "currm_p_12/m1_70_460#" 5.73361
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 105.21
+cap "currm_p_12/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 29.214
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 51.3692
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 176.984
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1069.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 41.8153
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "m1_n830_1270#" 0.434118
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 8.73711
+cap "currm_p_12/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 41.0876
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 0.428102
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "m1_n830_1270#" 10.4337
+cap "currm_p_12/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 270.543
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 41.8153
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" 27.7151
+cap "currm_p_12/m1_190_n590#" "currm_p_21/m1_70_460#" -3.83333
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 175.369
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -57.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -2.10454
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 165.651
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "m1_n1280_1370#" 0.23
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_60_n360#" 10.7352
+cap "currm_p_12/m1_190_n590#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 0.936507
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_190_n590#" -1.31279
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "m1_n830_1270#" 4.53432
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" 499.007
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 51.3692
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_21/m1_70_460#" 1666.42
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_21/m1_70_460#" 34.4742
+cap "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 10.5158
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_70_460#" -22.7101
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -13.7885
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 310.824
+cap "currm_p_21/m1_60_n360#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 49.6005
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_12/m1_190_n590#" 2.79343
+cap "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 8.14207
+cap "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "currm_p_12/m1_190_n590#" -6.42252
+cap "currm_p_21/m1_190_n590#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -191.792
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" -831.202
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -159.265
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_190_n590#" -349.445
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -335.694
+cap "currm_p_21/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -13.5733
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "currm_p_21/m1_60_n360#" 1291.75
+cap "currm_p_21/m1_190_n590#" "currm_p_21/m1_60_n360#" 19.55
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -20.1219
+cap "currm_p_21/m1_70_460#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 19.2825
+cap "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 5.04689
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 49.6704
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1256.02
+cap "currm_p_21/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1584.91
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 70.7096
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_190_n590#" -216.743
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 888.578
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_190_n590#" 93.5489
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 0.170833
+cap "currm_p_21/m1_190_n590#" "currm_p_21/m1_70_460#" -524.982
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 0.333801
+cap "currm_p_21/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 425.138
+cap "currm_p_21/m1_60_n360#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n285_n200#" 2.16376
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1580.07
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 400.793
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1567.56
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" 154.513
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 1658.14
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 36.5164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_70_460#" 4669.28
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2782.4
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2786.08
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -152.712
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 22.2965
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_190_n590#" 375.125
+cap "currm_p_21/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 441.909
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/m1_190_n590#" -300.541
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 9125.52
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 46.0984
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 8613.27
+cap "currm_p_21/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 11.5242
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_190_n590#" -849.339
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 0.457674
+cap "currm_p_21/m1_70_460#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.275558
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 4.24416
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/m1_60_n360#" 316.141
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1017.31
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_190_n590#" -317.792
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/m1_60_n360#" 199.001
+cap "currm_p_15/m1_60_n360#" "currm_p_17/m1_190_n590#" -47.3423
+cap "currm_p_15/m1_60_n360#" "currm_ps_1/m1_80_400#" -2.15625
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" -34.518
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1777.01
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 1170.41
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_p_17/m1_190_n590#" -12.331
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7193.63
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_17/m1_190_n590#" 80.8487
+cap "currm_p_15/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 40.2805
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_17/m1_190_n590#" 914.14
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" -1.68618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_15/m1_60_n360#" 3092.14
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" 0.333801
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_ps_1/m1_80_400#" 7.28571
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_p_17/m1_190_n590#" 447.236
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -275.821
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 236.904
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 12.1549
+cap "currm_p_15/m1_60_n360#" "m1_n6490_1180#" 0.188025
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 17.2428
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 1444.33
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 250.303
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -264.273
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 13.2504
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 172.333
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" 5914.9
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_p_17/m1_190_n590#" -38.8221
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_p_17/m1_190_n590#" 74.838
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 9.93462
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_15/m1_60_n360#" 234.207
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 57.9357
+cap "currm_p_15/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4365.42
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" 0.74833
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "currm_p_15/m1_60_n360#" -344.974
+cap "currm_p_15/m1_60_n360#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" 0.419806
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 0.709615
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.25004
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -196.752
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" "currm_ps_1/m1_80_400#" 179.461
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 12.0482
+cap "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" 0.328
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 725.681
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 370.837
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" -91.8952
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" -13.6683
+cap "currm_p_15/m1_60_n360#" "currm_ps_1/m1_80_400#" -2.15625
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" -59.7524
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 68.9482
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_80_400#" 1004.36
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 118.326
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" 90.5823
+cap "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n413_n200#" "currm_ps_1/m1_80_400#" 40.3525
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 0.365031
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 28.1303
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" 270.693
+cap "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 354.579
+cap "currm_ps_1/m1_170_170#" "currm_ps_1/m1_80_400#" -257.905
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 264.097
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -0.230207
+cap "currm_ps_0/w_132_72#" "currm_ps_0/a_132_72#" 1017.73
+cap "currm_ps_0/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 198.311
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -272.023
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 473.849
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/m1_170_170#" 338.239
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/w_132_72#" 162.756
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/a_132_72#" 187.696
+cap "currm_ps_1/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1558.08
+cap "currm_ps_0/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 4201.17
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1212.38
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/sky130_fd_pr__pfet_01v8_U4PWGH_0/a_n33_n200#" 0.276023
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/w_132_72#" 210.598
+cap "currm_ps_1/m1_170_170#" "currm_ps_0/a_132_72#" 331.868
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 8161.4
+cap "currm_ps_6/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2619.82
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/w_132_72#" 102.591
+cap "currm_ps_1/a_132_72#" "currm_ps_6/m1_170_170#" 165.74
+cap "currm_ps_1/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 8853.88
+cap "currm_ps_1/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 4136.69
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 301.666
+cap "currm_ps_1/w_132_72#" "currm_ps_6/m1_170_170#" 112.938
+cap "currm_ps_1/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 4522.87
+cap "currm_ps_1/m1_80_400#" "currm_ps_6/m1_170_170#" -75.0833
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1362.14
+cap "currm_ps_1/w_132_72#" "currm_ps_1/a_132_72#" 1898.01
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_6/m1_170_170#" 1639.01
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/a_132_72#" 189.689
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_ps_18/m1_70_1220#" -475.463
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 39.6734
+cap "currm_ps_18/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 209.514
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 282.076
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -320.577
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 73.0361
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -308.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 1.57727
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_ps_18/m1_70_1220#" 423.941
+cap "currm_ps_18/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -10.4449
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 344.167
+cap "currm_ps_18/m1_70_1220#" "currm_p_9/m1_190_n590#" 0.997333
+cap "currm_ps_18/m1_70_1220#" "currm_p_11/m1_60_n360#" 11.9697
+cap "currm_ps_18/m1_70_1220#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 602.828
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 0.133696
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 37.5419
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_9/m1_190_n590#" 122.675
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" 454.838
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -169.338
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 10.3527
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_11/m1_60_n360#" 1141.65
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 68.9482
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_190_n590#" 323.131
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 592.763
+cap "currm_p_11/m1_60_n360#" "currm_p_9/m1_190_n590#" -12.1156
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_11/m1_60_n360#" 290.858
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -21.636
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_190_n590#" 1072.85
+cap "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -383.622
+cap "currm_p_11/m1_60_n360#" "currm_p_9/m1_190_n590#" -253.055
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_190_n590#" 51.1036
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_11/m1_60_n360#" 737.026
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -739.126
+cap "currm_p_11/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1094.91
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -7.48593
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/m1_190_n590#" 120.415
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_11/m1_60_n360#" -0.377283
+cap "currm_p_9/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 318.135
+cap "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1866.4
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_6/m1_190_n590#" 1066.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 1820.41
+cap "currm_p_8/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1306.45
+cap "currm_p_8/m1_60_n360#" "currm_p_6/m1_190_n590#" -157.288
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_6/m1_190_n590#" 138.772
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1330.76
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/m1_190_n590#" 135.129
+cap "currm_p_8/m1_60_n360#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 209.455
+cap "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 6179.87
+cap "currm_p_8/m1_60_n360#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 302.994
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_3/m1_60_n360#" 14.0301
+cap "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_4/m1_190_n590#" 0.698214
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1506.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_12/m1_70_460#" -0.0169697
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 30.3676
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 30.3676
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 10.1267
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_190_n590#" 0.406031
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 275.035
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 41.8153
+cap "currm_p_20/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 233.617
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1031.44
+cap "currm_p_20/m1_190_n590#" "currm_p_21/m1_60_n360#" -182.958
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 334.155
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -188.502
+cap "currm_p_20/m1_190_n590#" "currm_p_21/m1_70_460#" -462.333
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 42.14
+cap "currm_p_21/m1_60_n360#" "currm_p_21/m1_70_460#" 307.292
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_190_n590#" -385.789
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" 247.271
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_60_n360#" 237.312
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_60_n360#" 425.644
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1182.21
+cap "currm_p_20/m1_190_n590#" "currm_p_21/m1_60_n360#" 57.5934
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_190_n590#" -592.884
+cap "currm_p_20/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2720.98
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 147.547
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/m1_70_460#" 1854.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/m1_70_460#" 1282.22
+cap "currm_p_20/m1_190_n590#" "currm_p_21/m1_70_460#" 795.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 36.5164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 7157.16
+cap "currm_p_21/m1_60_n360#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 353.128
+cap "currm_p_21/m1_70_460#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1592.29
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 303.68
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 3297.86
+cap "currm_p_21/m1_70_460#" "currm_p_21/m1_60_n360#" 66.7201
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 6730.86
+cap "currm_p_21/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1217.98
+cap "currm_p_21/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3152.99
+cap "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_20/m1_190_n590#" -430.698
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_190_n590#" 2869.78
+cap "currm_p_21/m1_60_n360#" "currm_p_20/m1_190_n590#" -898.431
+cap "currm_p_21/m1_70_460#" "currm_p_20/m1_190_n590#" -115.833
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 0.457674
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_190_n590#" 3993.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -264.273
+cap "currm_p_15/m1_60_n360#" "currm_ps_0/a_132_72#" 5.93501
+cap "currm_p_18/m1_70_460#" "currm_p_18/m1_190_n590#" 58.991
+cap "currm_p_15/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5910.54
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_18/m1_190_n590#" 45.9623
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 4881.83
+cap "currm_p_18/m1_70_460#" "currm_ps_0/a_132_72#" 0.368992
+cap "currm_p_18/m1_70_460#" "currm_p_15/m1_60_n360#" -501.674
+cap "currm_p_18/m1_70_460#" "currm_ps_2/m1_170_170#" 0.251663
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5577.26
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 717.62
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_ps_0/a_132_72#" 0.709615
+cap "currm_p_18/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 220.577
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 250.303
+cap "currm_p_15/m1_60_n360#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 148.144
+cap "currm_p_15/m1_60_n360#" "currm_p_18/m1_190_n590#" -150.076
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 893.446
+cap "currm_p_18/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1205.97
+cap "currm_p_18/m1_70_460#" "currm_ps_1/m1_80_400#" 22.5585
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -158.394
+cap "currm_p_15/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 4344.44
+cap "currm_p_18/m1_70_460#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 583.249
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 68.9482
+cap "currm_ps_1/m1_80_400#" "currm_ps_2/m1_170_170#" -380.326
+cap "currm_p_14/m1_190_n590#" "currm_p_15/m1_70_460#" 0.40301
+cap "currm_ps_0/a_132_72#" "currm_p_15/m1_70_460#" 197.586
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_p_15/m1_70_460#" 351.883
+cap "currm_ps_0/a_132_72#" "currm_p_15/m1_60_n360#" 5.92271
+cap "currm_ps_2/m1_170_170#" "currm_p_15/m1_70_460#" 91.9382
+cap "currm_ps_0/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 176.854
+cap "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_15/m1_70_460#" 0.365031
+cap "currm_ps_1/m1_80_400#" "currm_p_15/m1_70_460#" 258.776
+cap "currm_ps_0/a_132_72#" "currm_ps_2/m1_170_170#" 268.594
+cap "currm_ps_2/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 846.164
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/a_132_72#" 156.008
+cap "currm_ps_0/a_132_72#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 0.709615
+cap "currm_p_15/m1_60_n360#" "currm_p_15/m1_70_460#" 11.5104
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1025.82
+cap "currm_ps_2/m1_170_170#" "currm_ps_0/a_132_72#" 326.645
+cap "currm_ps_1/m1_80_400#" "currm_ps_0/a_132_72#" 263.639
+cap "currm_ps_1/m1_80_400#" "currm_ps_2/m1_170_170#" 105.508
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_0/a_132_72#" 387.342
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/m1_170_170#" 1964
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 481.691
+cap "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_2/m1_170_170#" 192.588
+cap "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_0/a_132_72#" -2413.85
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 163.496
+cap "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2812.2
+cap "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_1/a_132_72#" 1383.28
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/m1_80_400#" 1356.57
+cap "currm_ps_1/m1_80_400#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 50.6719
+cap "currm_ps_1/m1_80_400#" "currm_ps_1/a_132_72#" 119.234
+cap "currm_ps_5/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 3931.82
+cap "currm_ps_5/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 5149.53
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 3356.08
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_1/a_132_72#" 6121.6
+cap "currm_ps_5/m1_170_170#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 55.2011
+cap "currm_ps_5/m1_170_170#" "currm_ps_1/a_132_72#" 241.246
+cap "currm_ps_1/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 301.666
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" 3685.13
+cap "currm_ps_5/m1_170_170#" "currm_ps_1/m1_80_400#" 25.5204
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_1/a_132_72#" 6613.82
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -143.13
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 23.6455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 14.6225
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 1.97269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" 0.986344
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" -961.312
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 76.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -165.763
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" -29.5212
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 58.3786
+cap "currm_p_9/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 0.997333
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 184.867
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_60_n360#" 1.57727
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_60_n360#" 0.160435
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 749.784
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/m1_60_n360#" 20.7766
+cap "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 26.9987
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 98.1601
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 88.1983
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 849.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 37.0351
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -215.338
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -111.488
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 110.134
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 804.024
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_190_n590#" 156.144
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 217.848
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 1.90836
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -246.463
+cap "currm_p_9/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 80.3597
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_190_n590#" 496.704
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 987.181
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 28.8839
+cap "currm_p_9/m1_60_n360#" "currm_p_9/m1_190_n590#" -212.932
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_60_n360#" 341.526
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 28.9303
+cap "currm_p_9/m1_60_n360#" "currm_p_9/m1_190_n590#" -252.804
+cap "currm_p_9/m1_190_n590#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 121.722
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 745.399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/m1_190_n590#" 320.369
+cap "currm_p_9/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1014.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 858.052
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/m1_190_n590#" 42.8921
+cap "currm_p_9/m1_60_n360#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 237.143
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -971.96
+cap "currm_p_6/m1_190_n590#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 121.151
+cap "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/m1_60_n360#" 172.425
+cap "currm_p_6/m1_60_n360#" "currm_p_6/m1_190_n590#" -317.639
+cap "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/m1_190_n590#" 110.881
+cap "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1574.22
+cap "currm_p_6/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 880.758
+cap "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 846.258
+cap "currm_p_6/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 493.936
+cap "currm_p_6/m1_60_n360#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 85.1947
+cap "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 3689.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "w_n1290_4230#" 1192.99
+cap "w_n1290_4230#" "currm_p_4/m1_60_n360#" 11.5229
+cap "currm_p_4/m1_190_n590#" "w_n1290_4230#" 0.698214
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 18.5243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -31.3982
+cap "currm_p_20/m1_190_n590#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 0.406031
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 22.0427
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -49.2919
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 18.5243
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 10.1267
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 178.895
+cap "currm_p_20/m1_190_n590#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -248.762
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 720.404
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -872.674
+cap "currm_p_20/m1_190_n590#" "currm_p_20/m1_60_n360#" -205.36
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 10.1602
+cap "currm_p_20/m1_190_n590#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" -44.4747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_60_n360#" 658.683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_190_n590#" 59.5322
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 185.2
+cap "currm_p_20/m1_60_n360#" "currm_p_20/m1_190_n590#" -287.633
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 258.649
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 180.578
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/m1_190_n590#" -390.035
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_20/m1_190_n590#" 1096.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_60_n360#" 433.585
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 1009.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/m1_190_n590#" 1920.64
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 653.175
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 806.986
+cap "currm_p_20/m1_60_n360#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 107.718
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -339.956
+cap "currm_p_20/m1_190_n590#" "currm_p_20/m1_60_n360#" -308.106
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3022.58
+cap "currm_p_20/m1_190_n590#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" -38.7593
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 2583.43
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 22.5358
+cap "currm_p_20/m1_60_n360#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 828.002
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4799.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/m1_60_n360#" 254.763
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 5593.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 0.915156
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_20/m1_60_n360#" 44.423
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 2369.04
+cap "currm_p_20/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3147.68
+cap "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 0.228837
+cap "currm_p_20/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2494.65
+cap "currm_p_20/m1_190_n590#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -107.612
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -315.975
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_14/m1_60_n360#" 77.6705
+cap "currm_p_18/m1_70_460#" "currm_ps_2/a_132_72#" 0.737984
+cap "currm_p_18/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 631.776
+cap "currm_ps_2/m1_170_170#" "currm_p_18/m1_70_460#" 0.251663
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1822.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_14/m1_60_n360#" 5841.59
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -83.8123
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_ps_2/a_132_72#" 1.41923
+cap "currm_ps_2/a_132_72#" "currm_p_14/m1_60_n360#" 5.93501
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1887.11
+cap "currm_p_18/m1_70_460#" "currm_ps_2/m1_80_400#" 22.5585
+cap "currm_p_18/m1_190_n590#" "currm_p_18/m1_70_460#" 21.0788
+cap "currm_p_18/m1_190_n590#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 220.577
+cap "currm_p_18/m1_70_460#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1157.73
+cap "currm_p_18/m1_70_460#" "currm_p_14/m1_60_n360#" -198.895
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 1657.07
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "currm_p_14/m1_60_n360#" 4342.01
+cap "currm_p_18/m1_190_n590#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 5.8895
+cap "currm_p_18/m1_190_n590#" "currm_p_14/m1_60_n360#" -137.009
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 154.473
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2559.82
+cap "currm_ps_2/w_132_72#" "currm_p_14/m1_190_n590#" 0.40301
+cap "currm_ps_2/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 691.308
+cap "currm_ps_2/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 334.646
+cap "currm_ps_2/a_132_72#" "currm_p_14/m1_60_n360#" 5.92271
+cap "currm_ps_2/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 381.791
+cap "currm_ps_2/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 208.726
+cap "currm_ps_2/a_132_72#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 1.41923
+cap "currm_ps_2/w_132_72#" "currm_p_14/m1_60_n360#" 11.3015
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 42.5509
+cap "currm_ps_2/w_132_72#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" 0.730061
+cap "currm_ps_2/a_132_72#" "currm_ps_2/m1_80_400#" 163.52
+cap "currm_ps_2/w_132_72#" "currm_ps_2/a_132_72#" 201.994
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/m1_170_170#" -345.93
+cap "currm_ps_2/w_132_72#" "currm_ps_2/m1_80_400#" 93.3978
+cap "currm_ps_2/a_132_72#" "currm_ps_2/m1_170_170#" 61.6805
+cap "currm_ps_2/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1.59608
+cap "currm_ps_2/w_132_72#" "currm_ps_2/m1_170_170#" -4.00561
+cap "currm_ps_2/m1_170_170#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 956.71
+cap "currm_ps_2/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 1010.9
+cap "currm_ps_2/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 565.152
+cap "currm_ps_2/w_132_72#" "currm_ps_2/m1_170_170#" 190.28
+cap "currm_ps_2/a_132_72#" "currm_ps_2/w_132_72#" -4827.39
+cap "currm_ps_2/a_132_72#" "currm_ps_2/m1_170_170#" 202.937
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/w_132_72#" 195.217
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/m1_170_170#" -276.209
+cap "currm_ps_2/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 2757.76
+cap "currm_ps_2/m1_80_400#" "currm_ps_2/a_132_72#" 278.81
+cap "currm_ps_5/m1_170_170#" "currm_ps_2/w_132_72#" 55.1287
+cap "currm_ps_2/a_132_72#" "currm_ps_2/m1_80_400#" 72.3624
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_5/m1_170_170#" 3931.82
+cap "currm_ps_5/m1_170_170#" "currm_ps_2/a_132_72#" 190.917
+cap "currm_ps_5/m1_170_170#" "currm_ps_2/m1_80_400#" -137.129
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/w_132_72#" 3144.36
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 14.9374
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/w_132_72#" 2484.51
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/a_132_72#" 4550.3
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_2/m1_80_400#" 1094.33
+cap "currm_ps_2/w_132_72#" "currm_ps_2/m1_80_400#" 35.2788
+cap "currm_ps_2/w_132_72#" "currm_ps_2/a_132_72#" 1122.7
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/a_132_72#" 5241.66
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_ps_5/m1_170_170#" 4563.43
+cap "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_ps_2/m1_80_400#" 335.308
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 9.11502
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" 18.5339
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 17.4542
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 321.377
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 100.559
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_10/m1_60_n360#" -11.4113
+cap "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_10/m1_60_n360#" -11.693
+cap "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 112.427
+cap "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" 5635.8
+cap "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_7/m1_60_n360#" 11.6222
+cap "currm_p_19/m1_60_n360#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" -44.4696
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 121.8
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" 115.69
+cap "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_19/m1_190_n590#" -1.22125e-15
+cap "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/m1_60_n360#" -70.7805
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/m1_60_n360#" -70.3581
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 102.101
+cap "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 3415.54
+cap "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" 0.228837
+cap "currm_p_18/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 49.9567
+cap "currm_p_18/m1_70_460#" "currm_p_13/m1_60_n360#" -14.076
+cap "currm_ps_2/a_132_72#" "currm_ps_3/w_132_72#" 316.904
+cap "currm_ps_3/w_132_72#" "currm_ps_3/m1_80_400#" -7.28476
+cap "currm_ps_3/m1_80_400#" "currm_ps_3/w_132_72#" -5.00973
+cap "currm_ps_2/a_132_72#" "currm_ps_3/w_132_72#" 50.7051
+cap "currm_ps_3/m1_170_170#" "currm_ps_2/a_132_72#" 2.22045e-16
+cap "currm_ps_3/w_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 1194.08
+cap "currm_ps_3/m1_80_400#" "currm_ps_3/w_132_72#" -12.9813
+cap "currm_ps_5/a_132_72#" "currm_ps_3/w_132_72#" 906.171
+cap "currm_ps_3/m1_80_400#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 11.3704
+cap "currm_ps_5/a_132_72#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 2109.25
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n2820_6580#" -146852 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -182651940 -10912 10235400 -1080 0 0 -6300240 -1822 0 0 0 0
+merge "m1_n2820_6580#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n4170_6580#"
+merge "m1_n4170_6580#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n2790_6050#"
+merge "m1_n2790_6050#" "m1_n2320_5790#"
+merge "m1_n2320_5790#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n2790_4940#"
+merge "m1_n2790_4940#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n4140_6050#"
+merge "m1_n4140_6050#" "m1_n3660_5770#"
+merge "m1_n3660_5770#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n4150_4940#"
+merge "m1_n4150_4940#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n5000_5770#"
+merge "m1_n5000_5770#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n120_3300#"
+merge "m1_n120_3300#" "m1_n1520_3300#"
+merge "m1_n1520_3300#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n2810_4410#"
+merge "m1_n2810_4410#" "m1_n2320_4140#"
+merge "m1_n2320_4140#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n2890_3300#"
+merge "m1_n2890_3300#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n4160_4410#"
+merge "m1_n4160_4410#" "m1_n3660_4140#"
+merge "m1_n3660_4140#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_n4160_3300#"
+merge "m1_n4160_3300#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_n5000_4150#"
+merge "m1_n5000_4150#" "currm_p_0/m1_190_n590#"
+merge "currm_p_0/m1_190_n590#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n29_n200#" "m1_970_2720#"
+merge "m1_970_2720#" "currm_p_0/m1_n50_n680#"
+merge "currm_p_0/m1_n50_n680#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n110_2770#"
+merge "m1_n110_2770#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_2/m1_n50_n680#"
+merge "currm_p_2/m1_n50_n680#" "m1_n1510_2770#"
+merge "m1_n1510_2770#" "currm_p_3/m1_n50_n680#"
+merge "currm_p_3/m1_n50_n680#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_n2860_2770#"
+merge "m1_n2860_2770#" "currm_p_8/m1_n50_n680#"
+merge "currm_p_8/m1_n50_n680#" "currm_p_11/m1_n50_n680#"
+merge "currm_p_11/m1_n50_n680#" "m1_n4100_2770#"
+merge "currm_ps_7/VSUBS" "currm_ps_4/VSUBS" -41115.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5615044 -12016 25880688 -3692 -36953100 -21880 0 0 0 0 -2655330 -7274 0 0
+merge "currm_ps_4/VSUBS" "currm_ps_3/VSUBS"
+merge "currm_ps_3/VSUBS" "currm_p_13/VSUBS"
+merge "currm_p_13/VSUBS" "currm_p_18/VSUBS"
+merge "currm_p_18/VSUBS" "currm_p_19/VSUBS"
+merge "currm_p_19/VSUBS" "currm_p_5/VSUBS"
+merge "currm_p_5/VSUBS" "currm_p_7/VSUBS"
+merge "currm_p_7/VSUBS" "currm_p_10/VSUBS"
+merge "currm_p_10/VSUBS" "currm_ps_8/VSUBS"
+merge "currm_ps_8/VSUBS" "currm_ps_5/VSUBS"
+merge "currm_ps_5/VSUBS" "currm_ps_2/VSUBS"
+merge "currm_ps_2/VSUBS" "currm_p_14/VSUBS"
+merge "currm_p_14/VSUBS" "currm_p_17/VSUBS"
+merge "currm_p_17/VSUBS" "currm_p_20/VSUBS"
+merge "currm_p_20/VSUBS" "currm_p_4/VSUBS"
+merge "currm_p_4/VSUBS" "currm_p_6/VSUBS"
+merge "currm_p_6/VSUBS" "currm_p_9/VSUBS"
+merge "currm_p_9/VSUBS" "currm_ps_9/VSUBS"
+merge "currm_ps_9/VSUBS" "currm_ps_6/VSUBS"
+merge "currm_ps_6/VSUBS" "currm_ps_1/VSUBS"
+merge "currm_ps_1/VSUBS" "currm_ps_0/VSUBS"
+merge "currm_ps_0/VSUBS" "currm_p_15/VSUBS"
+merge "currm_p_15/VSUBS" "currm_p_16/VSUBS"
+merge "currm_p_16/VSUBS" "currm_p_21/VSUBS"
+merge "currm_p_21/VSUBS" "currm_p_12/VSUBS"
+merge "currm_p_12/VSUBS" "currm_p_1/VSUBS"
+merge "currm_p_1/VSUBS" "currm_p_0/VSUBS"
+merge "currm_p_0/VSUBS" "currm_p_2/VSUBS"
+merge "currm_p_2/VSUBS" "currm_p_3/VSUBS"
+merge "currm_p_3/VSUBS" "currm_p_8/VSUBS"
+merge "currm_p_8/VSUBS" "currm_p_11/VSUBS"
+merge "currm_p_11/VSUBS" "currm_ps_19/VSUBS"
+merge "currm_ps_19/VSUBS" "currm_ps_18/VSUBS"
+merge "currm_ps_18/VSUBS" "sky130_fd_pr__pfet_01v8_VCBWSW_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/VSUBS" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n289_n374#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n289_n374#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n289_n374#" "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#"
+merge "currm_n_1/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#"
+merge "currm_n_0/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "li_850_1310#"
+merge "li_850_1310#" "currm_n_42/m1_390_n660#"
+merge "currm_n_42/m1_390_n660#" "currm_n_32/m1_390_n660#"
+merge "currm_n_32/m1_390_n660#" "currm_n_42/VSUBS"
+merge "currm_n_42/VSUBS" "currm_n_40/m1_390_n660#"
+merge "currm_n_40/m1_390_n660#" "currm_n_39/VSUBS"
+merge "currm_n_39/VSUBS" "currm_n_39/m1_390_n660#"
+merge "currm_n_39/m1_390_n660#" "currm_n_37/VSUBS"
+merge "currm_n_37/VSUBS" "currm_n_37/m1_390_n660#"
+merge "currm_n_37/m1_390_n660#" "currm_n_36/m1_390_n660#"
+merge "currm_n_36/m1_390_n660#" "currm_n_32/VSUBS"
+merge "currm_n_32/VSUBS" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "currm_n_40/VSUBS"
+merge "currm_n_40/VSUBS" "currm_n_41/VSUBS"
+merge "currm_n_41/VSUBS" "currm_n_41/m1_390_n660#"
+merge "currm_n_41/m1_390_n660#" "currm_n_38/m1_390_n660#"
+merge "currm_n_38/m1_390_n660#" "currm_n_36/VSUBS"
+merge "currm_n_36/VSUBS" "currm_n_35/VSUBS"
+merge "currm_n_35/VSUBS" "currm_n_35/m1_390_n660#"
+merge "currm_n_35/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/VSUBS" "currm_n_43/VSUBS"
+merge "currm_n_43/VSUBS" "currm_n_43/m1_390_n660#"
+merge "currm_n_43/m1_390_n660#" "currm_n_38/VSUBS"
+merge "currm_n_38/VSUBS" "currm_n_9/m1_390_n660#"
+merge "currm_n_9/m1_390_n660#" "currm_n_12/m1_390_n660#"
+merge "currm_n_12/m1_390_n660#" "currm_n_11/m1_390_n660#"
+merge "currm_n_11/m1_390_n660#" "currm_n_10/VSUBS"
+merge "currm_n_10/VSUBS" "currm_n_10/m1_390_n660#"
+merge "currm_n_10/m1_390_n660#" "currm_n_9/VSUBS"
+merge "currm_n_9/VSUBS" "currm_n_14/m1_390_n660#"
+merge "currm_n_14/m1_390_n660#" "currm_n_13/VSUBS"
+merge "currm_n_13/VSUBS" "currm_n_13/m1_390_n660#"
+merge "currm_n_13/m1_390_n660#" "currm_n_12/VSUBS"
+merge "currm_n_12/VSUBS" "currm_n_11/VSUBS"
+merge "currm_n_11/VSUBS" "currm_n_14/VSUBS"
+merge "currm_n_14/VSUBS" "currm_n_8/VSUBS"
+merge "currm_n_8/VSUBS" "currm_n_8/m1_390_n660#"
+merge "currm_n_8/m1_390_n660#" "currm_n_7/m1_390_n660#"
+merge "currm_n_7/m1_390_n660#" "currm_n_7/VSUBS"
+merge "currm_n_7/VSUBS" "currm_n_6/VSUBS"
+merge "currm_n_6/VSUBS" "currm_n_6/m1_390_n660#"
+merge "currm_n_6/m1_390_n660#" "currm_n_4/VSUBS"
+merge "currm_n_4/VSUBS" "currm_n_4/m1_390_n660#"
+merge "currm_n_4/m1_390_n660#" "currm_n_2/VSUBS"
+merge "currm_n_2/VSUBS" "currm_n_2/m1_390_n660#"
+merge "currm_n_2/m1_390_n660#" "currm_n_45/VSUBS"
+merge "currm_n_45/VSUBS" "currm_n_45/m1_390_n660#"
+merge "currm_n_45/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS" "currm_n_1/VSUBS"
+merge "currm_n_1/VSUBS" "currm_n_1/m1_390_n660#"
+merge "currm_n_1/m1_390_n660#" "currm_n_0/VSUBS"
+merge "currm_n_0/VSUBS" "currm_n_0/m1_390_n660#"
+merge "currm_n_0/m1_390_n660#" "currm_n_47/VSUBS"
+merge "currm_n_47/VSUBS" "currm_n_47/m1_390_n660#"
+merge "currm_n_47/m1_390_n660#" "currm_n_44/VSUBS"
+merge "currm_n_44/VSUBS" "currm_n_44/m1_390_n660#"
+merge "currm_n_44/m1_390_n660#" "currm_n_5/VSUBS"
+merge "currm_n_5/VSUBS" "currm_n_5/m1_390_n660#"
+merge "currm_n_5/m1_390_n660#" "currm_n_3/VSUBS"
+merge "currm_n_3/VSUBS" "currm_n_3/m1_390_n660#"
+merge "currm_n_3/m1_390_n660#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_63_n200#" "li_n110_n1590#"
+merge "li_n110_n1590#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n125_n200#" "currm_n_46/VSUBS"
+merge "currm_n_46/VSUBS" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_15_n100#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_15_n100#" "li_n630_n1600#"
+merge "li_n630_n1600#" "currm_n_46/m1_390_n660#"
+merge "currm_n_46/m1_390_n660#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/VSUBS" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n175_n274#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n175_n274#" "currm_n_20/VSUBS"
+merge "currm_n_20/VSUBS" "currm_n_20/m1_390_n660#"
+merge "currm_n_20/m1_390_n660#" "currm_n_18/m1_390_n660#"
+merge "currm_n_18/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/c2_n3251_n1000#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "m5_n7070_n540#"
+merge "m5_n7070_n540#" "currm_n_19/VSUBS"
+merge "currm_n_19/VSUBS" "currm_n_19/m1_390_n660#"
+merge "currm_n_19/m1_390_n660#" "currm_n_18/VSUBS"
+merge "currm_n_18/VSUBS" "currm_n_17/m1_390_n660#"
+merge "currm_n_17/m1_390_n660#" "currm_n_22/m1_390_n660#"
+merge "currm_n_22/m1_390_n660#" "currm_n_17/VSUBS"
+merge "currm_n_17/VSUBS" "currm_n_16/VSUBS"
+merge "currm_n_16/VSUBS" "currm_n_16/m1_390_n660#"
+merge "currm_n_16/m1_390_n660#" "currm_n_15/m1_390_n660#"
+merge "currm_n_15/m1_390_n660#" "currm_n_23/VSUBS"
+merge "currm_n_23/VSUBS" "currm_n_23/m1_390_n660#"
+merge "currm_n_23/m1_390_n660#" "currm_n_22/VSUBS"
+merge "currm_n_22/VSUBS" "currm_n_21/m1_390_n660#"
+merge "currm_n_21/m1_390_n660#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/VSUBS" "currm_n_33/VSUBS"
+merge "currm_n_33/VSUBS" "currm_n_33/m1_390_n660#"
+merge "currm_n_33/m1_390_n660#" "currm_n_31/VSUBS"
+merge "currm_n_31/VSUBS" "currm_n_31/m1_390_n660#"
+merge "currm_n_31/m1_390_n660#" "currm_n_15/VSUBS"
+merge "currm_n_15/VSUBS" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_111_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_111_n509#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/VSUBS" "currm_n_21/VSUBS"
+merge "currm_n_21/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n81_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n81_n509#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_n509#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_207_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_207_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_15_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_15_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n371_n683#" "VN"
+merge "currm_p_2/m1_190_n590#" "currm_n_10/a_122_62#" 17887.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41986672 -16324 -10750160 -1460 0 0 0 0 0 0 0 0
+merge "currm_n_10/a_122_62#" "currm_n_9/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_9/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_11/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_11/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "m1_7800_n440#"
+merge "m1_7800_n440#" "currm_n_10/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_10/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_13/a_122_62#"
+merge "currm_n_13/a_122_62#" "currm_n_12/a_122_62#"
+merge "currm_n_12/a_122_62#" "currm_n_14/a_122_62#"
+merge "currm_n_14/a_122_62#" "m1_6180_n950#"
+merge "m1_6180_n950#" "m1_6150_n440#"
+merge "m1_6150_n440#" "currm_n_9/a_122_62#"
+merge "currm_n_9/a_122_62#" "currm_n_11/a_122_62#"
+merge "currm_n_11/a_122_62#" "currm_n_8/a_122_62#"
+merge "currm_n_8/a_122_62#" "currm_n_7/a_122_62#"
+merge "currm_n_7/a_122_62#" "m1_4960_670#"
+merge "m1_4960_670#" "m1_4960_1180#"
+merge "m1_4960_1180#" "currm_n_6/a_122_62#"
+merge "currm_n_6/a_122_62#" "m1_4460_670#"
+merge "m1_4460_670#" "m1_4450_1180#"
+merge "m1_4450_1180#" "currm_n_5/m1_164_390#"
+merge "currm_n_5/m1_164_390#" "currm_n_5/a_122_62#"
+merge "currm_n_5/a_122_62#" "m1_n170_1370#"
+merge "m1_n170_1370#" "m1_n400_1190#"
+merge "currm_p_13/m1_190_n590#" "m1_11200_6580#" -7720.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -92929380 -13372 113787420 -27620 -540200 0 0 0 0 0 0 0
+merge "m1_11200_6580#" "m1_10120_6580#"
+merge "m1_10120_6580#" "currm_p_18/m1_190_n590#"
+merge "currm_p_18/m1_190_n590#" "currm_p_19/m1_190_n590#"
+merge "currm_p_19/m1_190_n590#" "currm_ps_7/a_132_72#"
+merge "currm_ps_7/a_132_72#" "m1_11990_5780#"
+merge "m1_11990_5780#" "currm_ps_4/a_132_72#"
+merge "currm_ps_4/a_132_72#" "m1_11230_6050#"
+merge "m1_11230_6050#" "m1_10900_5780#"
+merge "m1_10900_5780#" "m1_11230_4940#"
+merge "m1_11230_4940#" "currm_ps_3/a_132_72#"
+merge "currm_ps_3/a_132_72#" "m1_10130_6050#"
+merge "m1_10130_6050#" "currm_ps_8/a_132_72#"
+merge "currm_ps_8/a_132_72#" "m1_9810_5770#"
+merge "m1_9810_5770#" "m1_10120_4940#"
+merge "m1_10120_4940#" "m1_11990_4150#"
+merge "m1_11990_4150#" "currm_ps_5/a_132_72#"
+merge "currm_ps_5/a_132_72#" "m1_11220_4410#"
+merge "m1_11220_4410#" "m1_10900_4150#"
+merge "m1_10900_4150#" "m1_11190_3300#"
+merge "m1_11190_3300#" "currm_ps_2/a_132_72#"
+merge "currm_ps_2/a_132_72#" "m1_10120_4410#"
+merge "m1_10120_4410#" "currm_p_14/m1_190_n590#"
+merge "currm_p_14/m1_190_n590#" "m1_9810_4150#"
+merge "m1_9810_4150#" "m1_10140_3300#"
+merge "m1_10140_3300#" "m1_9040_3300#"
+merge "m1_9040_3300#" "currm_p_17/m1_190_n590#"
+merge "currm_p_17/m1_190_n590#" "currm_p_20/m1_190_n590#"
+merge "currm_p_20/m1_190_n590#" "currm_ps_9/a_132_72#"
+merge "currm_ps_9/a_132_72#" "currm_ps_6/a_132_72#"
+merge "currm_ps_6/a_132_72#" "m1_11220_2770#"
+merge "m1_11220_2770#" "currm_ps_1/a_132_72#"
+merge "currm_ps_1/a_132_72#" "m1_10140_2770#"
+merge "m1_10140_2770#" "currm_ps_0/a_132_72#"
+merge "currm_ps_0/a_132_72#" "m1_9030_2770#"
+merge "m1_9030_2770#" "currm_ps_0/m1_170_170#"
+merge "currm_ps_0/m1_170_170#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_927_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_927_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_735_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_735_n200#" "currm_p_15/m1_190_n590#"
+merge "currm_p_15/m1_190_n590#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_543_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_543_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_351_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_159_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n225_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n417_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n609_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n609_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n801_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n801_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n989_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n989_n200#" "currm_p_16/m1_190_n590#"
+merge "currm_p_16/m1_190_n590#" "currm_p_21/m1_190_n590#"
+merge "currm_p_21/m1_190_n590#" "currm_n_43/m1_164_390#"
+merge "currm_n_43/m1_164_390#" "currm_n_10/m1_164_390#"
+merge "currm_n_10/m1_164_390#" "currm_n_9/m1_164_390#"
+merge "currm_n_9/m1_164_390#" "currm_n_11/m1_164_390#"
+merge "currm_n_11/m1_164_390#" "currm_n_8/m1_164_390#"
+merge "currm_n_8/m1_164_390#" "currm_n_7/m1_164_390#"
+merge "currm_n_7/m1_164_390#" "currm_n_6/m1_164_390#"
+merge "currm_n_6/m1_164_390#" "currm_n_13/m1_164_390#"
+merge "currm_n_13/m1_164_390#" "currm_n_12/m1_164_390#"
+merge "currm_n_12/m1_164_390#" "currm_n_14/m1_164_390#"
+merge "currm_n_14/m1_164_390#" "m1_5960_2030#"
+merge "currm_n_43/a_122_62#" "currm_n_2/a_122_62#" -3191.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1630756 -13518 -17305760 -3180 0 0 -10010500 -6870 0 0 0 0
+merge "currm_n_2/a_122_62#" "currm_n_1/a_122_62#"
+merge "currm_n_1/a_122_62#" "currm_n_0/a_122_62#"
+merge "currm_n_0/a_122_62#" "currm_n_3/a_122_62#"
+merge "currm_n_3/a_122_62#" "currm_n_33/a_122_62#"
+merge "currm_n_33/a_122_62#" "m1_n5490_1180#"
+merge "m1_n5490_1180#" "currm_n_2/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_2/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_45/m1_164_390#"
+merge "currm_n_45/m1_164_390#" "currm_n_45/a_122_62#"
+merge "currm_n_45/a_122_62#" "m1_2510_n430#"
+merge "m1_2510_n430#" "currm_n_1/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_1/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_0/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_0/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_47/a_122_62#"
+merge "currm_n_47/a_122_62#" "m1_1110_n420#"
+merge "m1_1110_n420#" "currm_n_3/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_3/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_46/a_122_62#"
+merge "currm_n_46/a_122_62#" "m1_410_n430#"
+merge "m1_410_n430#" "m1_560_n950#"
+merge "m1_560_n950#" "m1_570_n440#"
+merge "m1_570_n440#" "currm_n_47/m1_164_390#"
+merge "currm_n_47/m1_164_390#" "currm_n_44/m1_164_390#"
+merge "currm_n_44/m1_164_390#" "currm_n_44/a_122_62#"
+merge "currm_n_44/a_122_62#" "m1_1290_n950#"
+merge "m1_1290_n950#" "m1_1810_n430#"
+merge "m1_1810_n430#" "m1_1980_n950#"
+merge "m1_1980_n950#" "m1_1980_n440#"
+merge "m1_1980_n440#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" "currm_n_46/m1_164_390#"
+merge "currm_n_46/m1_164_390#" "I_Bias"
+merge "I_Bias" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0/m4_n3351_n1100#" "m1_n250_n1430#"
+merge "m1_n250_n1430#" "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#"
+merge "sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/m4_n3351_n1100#" "m4_n7070_n540#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n33_n197#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n81_n288#" -29956.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -43227532 -3622 -1549800 -400 -1596500 -2820 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n81_n288#" "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n33_n188#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_159_n597#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_159_n597#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n33_n597#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n33_n597#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_n597#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_n597#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_63_n87#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_63_n87#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n129_n87#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n129_n87#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_63_21#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_63_21#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n129_21#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n129_21#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_159_531#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_159_531#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n33_531#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n33_531#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n225_531#" "Disable_FB"
+merge "currm_n_42/m1_68_150#" "currm_n_39/m1_68_150#" 28148.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75746240 -11432 0 0 0 0 0 0 0 0
+merge "currm_n_39/m1_68_150#" "currm_n_40/m1_68_150#"
+merge "currm_n_40/m1_68_150#" "currm_n_41/m1_68_150#"
+merge "currm_n_41/m1_68_150#" "currm_n_38/m1_68_150#"
+merge "currm_n_38/m1_68_150#" "currm_n_37/m1_68_150#"
+merge "currm_n_37/m1_68_150#" "currm_n_32/m1_68_150#"
+merge "currm_n_32/m1_68_150#" "currm_n_36/m1_68_150#"
+merge "currm_n_36/m1_68_150#" "currm_n_35/m1_68_150#"
+merge "currm_n_35/m1_68_150#" "m2_9090_740#"
+merge "currm_ps_8/m1_70_1220#" "currm_ps_2/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" -352236 0 0 0 0 -82696372 -81608 0 0 -15653664 0 -3080596 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -15141314 -2272 49168752 -4300 -119894200 -49380 53600 -1250 56498 -1224 841544 -9944 0 0
+merge "currm_ps_2/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_14/m1_70_460#"
+merge "currm_p_14/m1_70_460#" "currm_ps_5/m1_70_1220#"
+merge "currm_ps_5/m1_70_1220#" "currm_ps_2/m1_70_1220#"
+merge "currm_ps_2/m1_70_1220#" "currm_p_20/m1_70_460#"
+merge "currm_p_20/m1_70_460#" "currm_p_4/m1_70_460#"
+merge "currm_p_4/m1_70_460#" "currm_p_6/m1_70_460#"
+merge "currm_p_6/m1_70_460#" "currm_p_9/m1_70_460#"
+merge "currm_p_9/m1_70_460#" "currm_ps_7/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_7/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_1/w_132_600#"
+merge "currm_ps_1/w_132_600#" "currm_ps_4/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_4/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_0/w_132_600#"
+merge "currm_ps_0/w_132_600#" "currm_ps_9/w_132_600#"
+merge "currm_ps_9/w_132_600#" "currm_p_15/m1_70_460#"
+merge "currm_p_15/m1_70_460#" "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "currm_p_18/m1_70_460#"
+merge "currm_p_18/m1_70_460#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_18/w_132_600#"
+merge "currm_ps_18/w_132_600#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_8/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_8/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_7/w_132_72#"
+merge "currm_ps_7/w_132_72#" "currm_ps_4/w_132_72#"
+merge "currm_ps_4/w_132_72#" "currm_ps_5/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_5/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_4/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_4/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_ps_3/w_132_72#"
+merge "currm_ps_3/w_132_72#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_5/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_7/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_10/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_9/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_9/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_8/w_132_72#"
+merge "currm_ps_8/w_132_72#" "currm_ps_5/w_132_72#"
+merge "currm_ps_5/w_132_72#" "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_6/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_5/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_5/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_ps_2/w_132_72#"
+merge "currm_ps_2/w_132_72#" "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_1/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_0/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "w_8150_4270#"
+merge "w_8150_4270#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_21/m1_70_460#"
+merge "currm_p_21/m1_70_460#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_12/m1_70_460#"
+merge "currm_p_12/m1_70_460#" "currm_p_1/m1_70_460#"
+merge "currm_p_1/m1_70_460#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "w_n1290_4230#"
+merge "w_n1290_4230#" "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_4/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_6/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_9/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#"
+merge "currm_ps_19/sky130_fd_pr__pfet_01v8_PD4XN5_0/w_n325_n419#" "w_n6340_4280#"
+merge "w_n6340_4280#" "currm_ps_18/m1_70_1220#"
+merge "currm_ps_18/m1_70_1220#" "currm_ps_9/w_132_72#"
+merge "currm_ps_9/w_132_72#" "currm_ps_6/w_132_72#"
+merge "currm_ps_6/w_132_72#" "currm_ps_6/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_6/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_ps_1/w_132_72#"
+merge "currm_ps_1/w_132_72#" "currm_ps_0/w_132_72#"
+merge "currm_ps_0/w_132_72#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_831_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_831_n200#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_639_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_639_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_447_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_447_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_255_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_255_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n129_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n321_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n321_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n513_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n513_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/w_n1127_n419#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/w_n1127_n419#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n705_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n705_n200#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/w_n211_n319#" "VP"
+merge "VP" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_15_n100#" "li_n640_n960#"
+merge "li_n640_n960#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#"
+merge "currm_ps_19/sky130_fd_pr__pfet_01v8_U4PWGH_0/w_n551_n419#" "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#"
+merge "currm_p_11/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/w_n679_n419#" "currm_ps_19/w_132_72#"
+merge "currm_ps_19/w_132_72#" "currm_ps_18/w_132_72#"
+merge "currm_p_12/m1_190_n590#" "currm_n_4/m1_164_390#" 5902.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31359272 -16788 -24074180 -1700 0 0 0 0 0 0 0 0
+merge "currm_n_4/m1_164_390#" "currm_n_4/a_122_62#"
+merge "currm_n_4/a_122_62#" "m1_3040_1180#"
+merge "m1_3040_1180#" "currm_n_20/a_122_62#"
+merge "currm_n_20/a_122_62#" "m1_n1280_1370#"
+merge "m1_n1280_1370#" "currm_n_19/a_122_62#"
+merge "currm_n_19/a_122_62#" "currm_n_18/a_122_62#"
+merge "currm_n_18/a_122_62#" "currm_n_17/a_122_62#"
+merge "currm_n_17/a_122_62#" "currm_n_16/a_122_62#"
+merge "currm_n_16/a_122_62#" "currm_n_15/a_122_62#"
+merge "currm_n_15/a_122_62#" "m1_n5100_670#"
+merge "m1_n5100_670#" "m1_n5100_1180#"
+merge "m1_n5100_1180#" "currm_n_17/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_17/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_16/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_16/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "m1_n3480_n440#"
+merge "m1_n3480_n440#" "currm_n_15/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_15/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_23/a_122_62#"
+merge "currm_n_23/a_122_62#" "currm_n_22/a_122_62#"
+merge "currm_n_22/a_122_62#" "currm_n_21/a_122_62#"
+merge "currm_n_21/a_122_62#" "m1_n5090_n950#"
+merge "m1_n5090_n950#" "m1_n5090_n440#"
+merge "currm_ps_7/m1_80_400#" "currm_ps_4/m1_80_400#" 21525.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64660500 -18340 0 0 0 0 0 0 0 0
+merge "currm_ps_4/m1_80_400#" "currm_ps_3/m1_80_400#"
+merge "currm_ps_3/m1_80_400#" "currm_ps_8/m1_80_400#"
+merge "currm_ps_8/m1_80_400#" "currm_ps_5/m1_80_400#"
+merge "currm_ps_5/m1_80_400#" "currm_ps_2/m1_80_400#"
+merge "currm_ps_2/m1_80_400#" "currm_ps_9/m1_80_400#"
+merge "currm_ps_9/m1_80_400#" "currm_ps_6/m1_80_400#"
+merge "currm_ps_6/m1_80_400#" "currm_ps_1/m1_80_400#"
+merge "currm_ps_1/m1_80_400#" "m2_9370_4730#"
+merge "currm_ps_18/m1_170_170#" "currm_n_42/a_122_62#" 23321.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53289248 -42502 -6122000 -1640 0 0 0 0 0 0 0 0
+merge "currm_n_42/a_122_62#" "currm_n_39/a_122_62#"
+merge "currm_n_39/a_122_62#" "currm_n_40/a_122_62#"
+merge "currm_n_40/a_122_62#" "currm_n_41/a_122_62#"
+merge "currm_n_41/a_122_62#" "currm_n_42/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_42/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_40/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_40/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_39/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_39/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_37/a_122_62#"
+merge "currm_n_37/a_122_62#" "currm_n_32/a_122_62#"
+merge "currm_n_32/a_122_62#" "currm_n_41/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#"
+merge "currm_n_41/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n50_n288#" "currm_n_36/a_122_62#"
+merge "currm_n_36/a_122_62#" "currm_n_35/a_122_62#"
+merge "currm_n_35/a_122_62#" "m1_9750_n950#"
+merge "m1_9750_n950#" "m1_9760_n440#"
+merge "m1_9760_n440#" "currm_n_38/a_122_62#"
+merge "currm_n_38/a_122_62#" "m1_9390_670#"
+merge "m1_9390_670#" "m1_9390_1180#"
+merge "m1_9390_1180#" "currm_n_31/m1_164_390#"
+merge "currm_n_31/m1_164_390#" "currm_n_31/a_122_62#"
+merge "currm_n_31/a_122_62#" "m1_n6490_1180#"
+merge "m1_n6490_1180#" "m1_n6640_1180#"
+merge "m1_n6640_1180#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_207_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_207_n509#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_15_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_15_n509#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_n509#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n177_n509#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_111_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_111_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n81_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n81_109#" "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#"
+merge "sky130_fd_pr__nfet_01v8_9A2JGL_1/a_n269_109#" "m1_n6700_n950#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_6540_6580#" -60700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -97513360 -28852 9100500 -1060 -14048300 0 -17755951 -1518 0 0 0 0
+merge "m1_6540_6580#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "m1_5210_6580#"
+merge "m1_5210_6580#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_13/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_6550_4940#"
+merge "m1_6550_4940#" "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_18/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_19/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_5210_4940#"
+merge "m1_5210_4940#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_4140_6050#"
+merge "m1_4140_6050#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_14/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_6600_3300#"
+merge "m1_6600_3300#" "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_17/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_20/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_5250_3300#"
+merge "m1_5250_3300#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/a_n229_n297#" "m1_3850_3300#"
+merge "m1_3850_3300#" "m1_4140_4410#"
+merge "m1_4140_4410#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "m1_2550_3300#"
+merge "m1_2550_3300#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n227_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#" "m1_7940_2770#"
+merge "m1_7940_2770#" "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_15/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_16/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#"
+merge "currm_p_12/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_413_n297#" "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#"
+merge "currm_p_21/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "m1_3850_2770#"
+merge "m1_3850_2770#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "currm_p_1/m1_190_n590#"
+merge "currm_p_1/m1_190_n590#" "currm_p_12/m1_n50_n680#"
+merge "currm_p_12/m1_n50_n680#" "m1_2590_2770#"
+merge "m1_2590_2770#" "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#"
+merge "currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n355_n297#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n29_n200#" "m1_1750_1790#"
+merge "currm_n_20/m1_68_150#" "currm_n_19/m1_68_150#" 16116.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45302600 -11468 0 0 0 0 0 0 0 0
+merge "currm_n_19/m1_68_150#" "currm_n_18/m1_68_150#"
+merge "currm_n_18/m1_68_150#" "currm_n_17/m1_68_150#"
+merge "currm_n_17/m1_68_150#" "currm_n_16/m1_68_150#"
+merge "currm_n_16/m1_68_150#" "currm_n_15/m1_68_150#"
+merge "currm_n_15/m1_68_150#" "currm_n_23/m1_68_150#"
+merge "currm_n_23/m1_68_150#" "currm_n_22/m1_68_150#"
+merge "currm_n_22/m1_68_150#" "currm_n_21/m1_68_150#"
+merge "currm_n_21/m1_68_150#" "m2_n5090_n880#"
+merge "currm_p_5/m1_190_n590#" "currm_p_7/m1_190_n590#" 75300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3269600 -4080 190490160 -27640 0 0 0 0 0 0 0 0
+merge "currm_p_7/m1_190_n590#" "currm_p_10/m1_190_n590#"
+merge "currm_p_10/m1_190_n590#" "currm_p_4/m1_190_n590#"
+merge "currm_p_4/m1_190_n590#" "currm_p_6/m1_190_n590#"
+merge "currm_p_6/m1_190_n590#" "currm_p_9/m1_190_n590#"
+merge "currm_p_9/m1_190_n590#" "currm_p_3/m1_190_n590#"
+merge "currm_p_3/m1_190_n590#" "m1_n6550_3300#"
+merge "m1_n6550_3300#" "currm_p_8/m1_190_n590#"
+merge "currm_p_8/m1_190_n590#" "currm_p_11/m1_190_n590#"
+merge "currm_p_11/m1_190_n590#" "currm_ps_19/m1_170_170#"
+merge "currm_ps_19/m1_170_170#" "currm_ps_19/a_132_72#"
+merge "currm_ps_19/a_132_72#" "currm_ps_18/a_132_72#"
+merge "currm_ps_18/a_132_72#" "currm_n_20/m1_164_390#"
+merge "currm_n_20/m1_164_390#" "currm_n_19/m1_164_390#"
+merge "currm_n_19/m1_164_390#" "currm_n_18/m1_164_390#"
+merge "currm_n_18/m1_164_390#" "currm_n_17/m1_164_390#"
+merge "currm_n_17/m1_164_390#" "currm_n_16/m1_164_390#"
+merge "currm_n_16/m1_164_390#" "currm_n_33/m1_164_390#"
+merge "currm_n_33/m1_164_390#" "currm_n_15/m1_164_390#"
+merge "currm_n_15/m1_164_390#" "currm_n_23/m1_164_390#"
+merge "currm_n_23/m1_164_390#" "currm_n_22/m1_164_390#"
+merge "currm_n_22/m1_164_390#" "currm_n_21/m1_164_390#"
+merge "currm_n_21/m1_164_390#" "m1_n6550_2770#"
+merge "currm_n_45/m1_68_150#" "currm_n_47/m1_68_150#" 1384.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5795680 -4232 0 0 0 0 0 0 0 0
+merge "currm_n_47/m1_68_150#" "currm_n_44/m1_68_150#"
+merge "currm_n_44/m1_68_150#" "currm_n_46/m1_68_150#"
+merge "currm_n_46/m1_68_150#" "m2_200_n880#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_783_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_879_231#" -51785.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -73255520 -7164 -5464800 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_879_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_591_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_591_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_399_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_399_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_207_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_207_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_15_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n177_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n369_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n369_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n561_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n561_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_687_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_687_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_495_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_495_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_303_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_303_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_111_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n81_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n273_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n465_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n465_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n657_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n657_231#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n753_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n753_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n945_n297#" "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#"
+merge "sky130_fd_pr__pfet_01v8_VCBWSW_0/a_n849_231#" "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#"
+merge "sky130_fd_pr__pfet_01v8_UAQRRG_0/a_n73_n100#" "m1_n710_n1640#"
+merge "m1_n710_n1640#" "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#"
+merge "sky130_fd_pr__nfet_01v8_6H2JYD_0/a_n73_n100#" "m1_n830_1270#"
+merge "currm_n_2/m1_164_390#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_129_n200#" 20968.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38188364 -1728 -7676080 -3480 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_129_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n187_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n187_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_129_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_129_n200#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#" "currm_n_1/m1_164_390#"
+merge "currm_n_1/m1_164_390#" "currm_n_0/m1_164_390#"
+merge "currm_n_0/m1_164_390#" "currm_n_3/m1_164_390#"
+merge "currm_n_3/m1_164_390#" "m1_950_1560#"
+merge "currm_ps_7/m1_170_170#" "currm_ps_4/m1_170_170#" 46994.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127354620 -23220 0 0 0 0 0 0 0 0
+merge "currm_ps_4/m1_170_170#" "currm_ps_3/m1_170_170#"
+merge "currm_ps_3/m1_170_170#" "currm_ps_8/m1_170_170#"
+merge "currm_ps_8/m1_170_170#" "currm_ps_5/m1_170_170#"
+merge "currm_ps_5/m1_170_170#" "currm_ps_2/m1_170_170#"
+merge "currm_ps_2/m1_170_170#" "currm_ps_9/m1_170_170#"
+merge "currm_ps_9/m1_170_170#" "currm_ps_6/m1_170_170#"
+merge "currm_ps_6/m1_170_170#" "currm_ps_1/m1_170_170#"
+merge "currm_ps_1/m1_170_170#" "currm_n_42/m1_164_390#"
+merge "currm_n_42/m1_164_390#" "currm_n_40/m1_164_390#"
+merge "currm_n_40/m1_164_390#" "currm_n_39/m1_164_390#"
+merge "currm_n_39/m1_164_390#" "currm_n_41/m1_164_390#"
+merge "currm_n_41/m1_164_390#" "currm_n_38/m1_164_390#"
+merge "currm_n_38/m1_164_390#" "currm_n_32/m1_164_390#"
+merge "currm_n_32/m1_164_390#" "currm_n_37/m1_164_390#"
+merge "currm_n_37/m1_164_390#" "currm_n_36/m1_164_390#"
+merge "currm_n_36/m1_164_390#" "currm_n_35/m1_164_390#"
+merge "currm_n_35/m1_164_390#" "Out"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_29_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" -15259.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -23579392 -1104 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n129_n288#" "InP"
+merge "currm_p_5/m1_60_n360#" "currm_p_7/m1_60_n360#" 37626 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99872200 -22140 0 0 0 0 0 0 0 0
+merge "currm_p_7/m1_60_n360#" "currm_p_10/m1_60_n360#"
+merge "currm_p_10/m1_60_n360#" "currm_p_4/m1_60_n360#"
+merge "currm_p_4/m1_60_n360#" "currm_p_6/m1_60_n360#"
+merge "currm_p_6/m1_60_n360#" "currm_p_9/m1_60_n360#"
+merge "currm_p_9/m1_60_n360#" "currm_p_3/m1_60_n360#"
+merge "currm_p_3/m1_60_n360#" "currm_p_8/m1_60_n360#"
+merge "currm_p_8/m1_60_n360#" "currm_p_11/m1_60_n360#"
+merge "currm_p_11/m1_60_n360#" "m2_n5120_4740#"
+merge "currm_n_2/m1_68_150#" "currm_n_1/m1_68_150#" 2241.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8010560 -4632 0 0 0 0 0 0 0 0
+merge "currm_n_1/m1_68_150#" "currm_n_0/m1_68_150#"
+merge "currm_n_0/m1_68_150#" "currm_n_3/m1_68_150#"
+merge "currm_n_3/m1_68_150#" "m2_250_740#"
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_29_n288#" "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" -29993.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -46651820 -1104 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_E6B2KN_1/a_n129_n288#" "InN"
+merge "currm_n_10/m1_68_150#" "currm_n_9/m1_68_150#" 21071.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60328240 -11756 0 0 0 0 0 0 0 0
+merge "currm_n_9/m1_68_150#" "currm_n_11/m1_68_150#"
+merge "currm_n_11/m1_68_150#" "currm_n_8/m1_68_150#"
+merge "currm_n_8/m1_68_150#" "currm_n_7/m1_68_150#"
+merge "currm_n_7/m1_68_150#" "currm_n_6/m1_68_150#"
+merge "currm_n_6/m1_68_150#" "currm_n_13/m1_68_150#"
+merge "currm_n_13/m1_68_150#" "currm_n_12/m1_68_150#"
+merge "currm_n_12/m1_68_150#" "currm_n_14/m1_68_150#"
+merge "currm_n_14/m1_68_150#" "m2_4080_740#"
+merge "currm_p_13/m1_60_n360#" "currm_p_18/m1_60_n360#" 39675.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 107325000 -22580 0 0 0 0 0 0 0 0
+merge "currm_p_18/m1_60_n360#" "currm_p_19/m1_60_n360#"
+merge "currm_p_19/m1_60_n360#" "currm_p_14/m1_60_n360#"
+merge "currm_p_14/m1_60_n360#" "currm_p_17/m1_60_n360#"
+merge "currm_p_17/m1_60_n360#" "currm_p_20/m1_60_n360#"
+merge "currm_p_20/m1_60_n360#" "currm_p_15/m1_60_n360#"
+merge "currm_p_15/m1_60_n360#" "currm_p_16/m1_60_n360#"
+merge "currm_p_16/m1_60_n360#" "currm_p_21/m1_60_n360#"
+merge "currm_p_21/m1_60_n360#" "m2_4260_3100#"
+merge "currm_n_31/m1_68_150#" "m2_n6460_740#" 60.0256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 483200 -480 0 0 0 0 0 0 0 0
diff --git a/mag/feedback/fb_dark_current.mag b/mag/feedback/fb_dark_current.mag
new file mode 100644
index 0000000..04cb0f2
--- /dev/null
+++ b/mag/feedback/fb_dark_current.mag
@@ -0,0 +1,1925 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654718902
+<< nwell >>
+rect -6340 4280 -6170 4450
+rect -1290 4230 -1060 4450
+rect 8150 4270 8320 4450
+<< pwell >>
+rect 4450 1180 4770 1210
+rect 4960 1180 7980 1210
+rect 4460 670 4780 700
+rect 4960 670 7970 700
+<< locali >>
+rect 1420 1400 1520 2140
+rect 850 1310 2090 1400
+rect 1430 560 1510 1310
+rect -640 -960 -530 -890
+rect -630 -1600 -510 -1530
+rect -110 -1590 -30 -1520
+<< viali >>
+rect 6420 2590 6990 2690
+rect -5630 -1530 -5550 -1370
+rect -30 -1670 40 -1490
+<< metal1 >>
+rect -4170 6580 -3860 6630
+rect -2820 6580 -2510 6630
+rect 5210 6580 5610 6630
+rect 6540 6580 6940 6630
+rect 10120 6580 10450 6630
+rect 11200 6580 11530 6630
+rect -5000 5770 -4950 6070
+rect -4140 6050 -3830 6100
+rect -3660 5770 -3610 6070
+rect -2790 6050 -2480 6100
+rect -2320 5790 -2270 6090
+rect 4140 6050 7980 6100
+rect 4380 5730 4430 6050
+rect 5720 5730 5770 6050
+rect 7060 5730 7110 6050
+rect 9810 5770 9870 6070
+rect 10130 6050 10460 6100
+rect 10900 5780 10960 6080
+rect 11230 6050 11560 6100
+rect 11990 5780 12050 6080
+rect -4150 4940 -3860 4990
+rect -2790 4940 -2500 4990
+rect 5210 4940 5610 4990
+rect 6550 4940 6950 4990
+rect 10120 4940 10450 4990
+rect 11230 4940 11560 4990
+rect -5000 4150 -4950 4450
+rect -4160 4410 -3870 4460
+rect -3660 4140 -3610 4440
+rect -2810 4410 -2520 4460
+rect -2320 4140 -2270 4440
+rect 4140 4410 7980 4460
+rect 4380 4090 4430 4410
+rect 5720 4090 5770 4410
+rect 7060 4090 7110 4410
+rect 9810 4150 9870 4450
+rect 10120 4410 10450 4460
+rect 10900 4150 10960 4450
+rect 11220 4410 11550 4460
+rect 11990 4150 12050 4450
+rect -6550 3300 -5420 3350
+rect -4160 3300 -3870 3350
+rect -2890 3300 -2480 3350
+rect -1520 3300 -1110 3350
+rect -120 3300 180 3350
+rect 2550 3300 2850 3350
+rect 3850 3300 4150 3350
+rect 5250 3300 5550 3350
+rect 6600 3300 6900 3350
+rect 9040 3300 9370 3350
+rect 10140 3300 10470 3350
+rect 11190 3300 11520 3350
+rect -6550 2800 -5420 2820
+rect -6550 2770 -5700 2800
+rect -5710 2720 -5700 2770
+rect -5460 2770 -5420 2800
+rect -4100 2770 -3810 2820
+rect -2860 2770 -2450 2820
+rect -1510 2770 -1100 2820
+rect -110 2770 190 2820
+rect -5460 2720 -5450 2770
+rect 970 2720 980 2820
+rect 1190 2720 1200 2820
+rect 1750 2720 1760 2820
+rect 1970 2720 1980 2820
+rect 2590 2770 2890 2820
+rect 3850 2770 7610 2820
+rect 7940 2770 7980 2820
+rect 6408 2690 7002 2696
+rect 6408 2590 6420 2690
+rect 6990 2590 7002 2690
+rect 6408 2584 7002 2590
+rect 6000 2510 7900 2520
+rect 5710 2470 7900 2510
+rect -810 2370 -800 2450
+rect -720 2410 -710 2450
+rect -720 2370 4350 2410
+rect -3030 2290 4270 2320
+rect -3030 1780 -2960 2290
+rect 2910 2210 2920 2250
+rect -1270 2180 2920 2210
+rect 2990 2180 3000 2250
+rect -1270 1880 -1190 2180
+rect -160 2140 4160 2150
+rect -170 2070 -160 2140
+rect -90 2120 4160 2140
+rect -90 2070 -80 2120
+rect 1020 1990 1440 2060
+rect -1280 1810 -1270 1880
+rect -1190 1810 -1180 1880
+rect 1110 1790 1120 1960
+rect 1190 1790 1200 1960
+rect -6340 1720 -2960 1780
+rect -6340 1210 -6270 1720
+rect -5490 1580 200 1660
+rect -6640 1180 -6530 1210
+rect -6490 1180 -6240 1210
+rect -5490 1180 -5400 1580
+rect -1280 1370 -1270 1440
+rect -1190 1370 -1180 1440
+rect -170 1370 -160 1440
+rect -90 1370 -80 1440
+rect -5100 1180 -1580 1210
+rect -1270 1180 -1190 1370
+rect -830 1270 -820 1370
+rect -730 1270 -720 1370
+rect -6700 690 -6670 700
+rect -6460 690 -6230 700
+rect -6700 670 -6230 690
+rect -5100 670 -1570 700
+rect -6700 -920 -6670 670
+rect -4880 -410 -4850 -20
+rect -4180 -410 -4150 -20
+rect -5090 -440 -3650 -410
+rect -3480 -440 -3450 -20
+rect -6310 -480 -5720 -440
+rect -6490 -920 -6480 -910
+rect -6700 -950 -6480 -920
+rect -6490 -970 -6480 -950
+rect -6380 -970 -6370 -910
+rect -6310 -950 -6280 -480
+rect -6220 -670 -6210 -510
+rect -6150 -670 -6140 -510
+rect -6030 -670 -6020 -510
+rect -5960 -670 -5950 -510
+rect -5840 -670 -5830 -510
+rect -5770 -670 -5760 -510
+rect -6130 -910 -6120 -750
+rect -6060 -910 -6050 -750
+rect -5930 -910 -5920 -750
+rect -5860 -910 -5850 -750
+rect -5740 -910 -5730 -750
+rect -5670 -910 -5660 -750
+rect -5090 -950 -3650 -920
+rect -6310 -990 -5810 -950
+rect -820 -960 -790 1270
+rect -400 1190 -390 1250
+rect -240 1190 -230 1250
+rect -160 1180 -90 1370
+rect 120 1220 200 1580
+rect 950 1560 960 1730
+rect 1030 1560 1040 1730
+rect 1270 1560 1280 1730
+rect 1350 1560 1360 1730
+rect 1390 1530 1440 1990
+rect 1020 1460 1440 1530
+rect 1510 1990 1930 2060
+rect 4100 1990 4160 2120
+rect 1510 1530 1560 1990
+rect 1750 1790 1760 1960
+rect 1830 1790 1840 1960
+rect 4090 1930 4100 1990
+rect 4160 1930 4170 1990
+rect 4240 1730 4270 2290
+rect 4310 1970 4350 2370
+rect 5710 1980 5750 2470
+rect 6050 2260 6060 2430
+rect 6120 2260 6130 2430
+rect 6240 2260 6250 2430
+rect 6310 2260 6320 2430
+rect 6440 2260 6450 2430
+rect 6510 2260 6520 2430
+rect 6630 2260 6640 2430
+rect 6700 2260 6710 2430
+rect 6820 2260 6830 2430
+rect 6890 2260 6900 2430
+rect 7010 2260 7020 2430
+rect 7080 2260 7090 2430
+rect 7200 2260 7210 2430
+rect 7270 2260 7280 2430
+rect 7400 2260 7410 2430
+rect 7470 2260 7480 2430
+rect 7590 2260 7600 2430
+rect 7660 2260 7670 2430
+rect 7780 2260 7790 2430
+rect 7850 2260 7860 2430
+rect 8190 2200 8240 2810
+rect 9030 2770 9360 2820
+rect 10140 2770 10470 2820
+rect 11220 2770 11550 2820
+rect 5960 2030 5970 2200
+rect 6030 2030 6040 2200
+rect 6150 2030 6160 2200
+rect 6220 2030 6230 2200
+rect 6340 2030 6350 2200
+rect 6410 2030 6420 2200
+rect 6530 2030 6540 2200
+rect 6600 2030 6610 2200
+rect 6720 2030 6730 2200
+rect 6790 2030 6800 2200
+rect 6920 2030 6930 2200
+rect 6990 2030 7000 2200
+rect 7110 2030 7120 2200
+rect 7180 2030 7190 2200
+rect 7300 2030 7310 2200
+rect 7370 2030 7380 2200
+rect 7490 2030 7500 2200
+rect 7560 2030 7570 2200
+rect 7690 2030 7700 2200
+rect 7760 2030 7770 2200
+rect 7880 2030 7890 2200
+rect 7950 2030 7960 2200
+rect 8110 2030 8120 2200
+rect 8230 2030 8240 2200
+rect 5710 1970 7810 1980
+rect 4310 1940 7810 1970
+rect 1590 1560 1600 1730
+rect 1670 1560 1680 1730
+rect 1910 1560 1920 1730
+rect 1990 1560 2000 1730
+rect 4240 1700 5670 1730
+rect 2620 1590 5600 1660
+rect 1510 1460 1930 1530
+rect 2620 1220 2720 1590
+rect 2910 1440 2920 1500
+rect 2990 1440 3000 1500
+rect 5570 1440 5600 1590
+rect 5640 1520 5670 1700
+rect 5640 1490 9090 1520
+rect 120 1180 2720 1220
+rect 2920 1180 2990 1440
+rect 5570 1400 8280 1440
+rect 4090 1310 4100 1370
+rect 4160 1310 4170 1370
+rect 3110 1220 3120 1250
+rect 3040 1190 3120 1220
+rect 3280 1190 3290 1250
+rect 3040 1180 3110 1190
+rect 4100 1180 4160 1310
+rect 4450 1180 4770 1210
+rect 4960 1180 7980 1210
+rect 8210 1180 8280 1400
+rect 9000 1180 9090 1490
+rect 9390 1180 11890 1210
+rect 4460 670 4780 700
+rect 4960 670 7970 700
+rect 9390 670 11890 700
+rect 410 -430 440 -80
+rect 570 -440 840 -410
+rect 1110 -420 1140 -80
+rect 1370 -440 1400 -410
+rect 1390 -470 1400 -440
+rect 1560 -470 1570 -410
+rect 1810 -430 1840 -80
+rect 1980 -440 2250 -410
+rect 2510 -430 2540 -80
+rect 6400 -410 6430 -40
+rect 7100 -410 7130 -40
+rect 6150 -440 7720 -410
+rect 7800 -440 7830 -40
+rect 9990 -410 10020 -80
+rect 10690 -410 10720 -80
+rect 11390 -410 11420 -80
+rect 12090 -410 12120 -80
+rect 9760 -440 12260 -410
+rect -720 -770 -430 -720
+rect -820 -990 -730 -960
+rect -650 -980 -640 -840
+rect -580 -980 -570 -840
+rect -6310 -1050 -6280 -990
+rect -6310 -1100 -5810 -1050
+rect -6310 -1570 -6280 -1100
+rect -6130 -1290 -6120 -1130
+rect -6060 -1290 -6050 -1130
+rect -5940 -1290 -5930 -1130
+rect -5870 -1290 -5860 -1130
+rect -5740 -1290 -5730 -1130
+rect -5670 -1290 -5660 -1130
+rect -5636 -1370 -5544 -1358
+rect -6220 -1530 -6210 -1370
+rect -6150 -1530 -6140 -1370
+rect -6030 -1530 -6020 -1370
+rect -5960 -1530 -5950 -1370
+rect -5840 -1530 -5830 -1370
+rect -5770 -1530 -5760 -1370
+rect -5640 -1530 -5630 -1370
+rect -5550 -1530 -5540 -1370
+rect -820 -1460 -790 -990
+rect -470 -1050 -430 -770
+rect 560 -950 830 -920
+rect 1290 -950 1560 -920
+rect 1980 -950 2250 -920
+rect 6180 -950 7750 -920
+rect 9750 -950 12230 -920
+rect -720 -1100 -430 -1050
+rect -470 -1180 -430 -1100
+rect -470 -1230 -130 -1180
+rect -470 -1380 -420 -1230
+rect -700 -1430 -420 -1380
+rect -250 -1430 -240 -1260
+rect -180 -1430 -170 -1260
+rect -820 -1500 -710 -1460
+rect -5636 -1542 -5544 -1530
+rect -5150 -1570 -5140 -1540
+rect -6310 -1600 -5140 -1570
+rect -5150 -1620 -5140 -1600
+rect -5050 -1570 -5040 -1540
+rect -5050 -1600 -5030 -1570
+rect -5050 -1620 -5040 -1600
+rect -2480 -1620 -2470 -1540
+rect -2370 -1590 -2360 -1540
+rect -2370 -1620 -820 -1590
+rect -850 -1710 -820 -1620
+rect -710 -1640 -700 -1590
+rect -640 -1650 -630 -1510
+rect -570 -1650 -560 -1510
+rect -470 -1690 -420 -1430
+rect -36 -1490 46 -1478
+rect -340 -1660 -330 -1490
+rect -270 -1660 -260 -1490
+rect -150 -1660 -140 -1490
+rect -80 -1660 -70 -1490
+rect -36 -1670 -30 -1490
+rect 40 -1670 46 -1490
+rect -36 -1682 46 -1670
+rect -710 -1710 -220 -1690
+rect -850 -1740 -220 -1710
+<< via1 >>
+rect -5700 2720 -5460 2800
+rect 980 2720 1190 2820
+rect 1760 2720 1970 2820
+rect 6420 2590 6990 2690
+rect -800 2370 -720 2450
+rect 2920 2180 2990 2250
+rect -160 2070 -90 2140
+rect -1270 1810 -1190 1880
+rect 1120 1790 1190 1960
+rect -1270 1370 -1190 1440
+rect -160 1370 -90 1440
+rect -820 1270 -730 1370
+rect -6480 -970 -6380 -910
+rect -6210 -670 -6150 -510
+rect -6020 -670 -5960 -510
+rect -5830 -670 -5770 -510
+rect -6120 -910 -6060 -750
+rect -5920 -910 -5860 -750
+rect -5730 -910 -5670 -750
+rect -390 1190 -240 1250
+rect 960 1560 1030 1730
+rect 1280 1560 1350 1730
+rect 1760 1790 1830 1960
+rect 4100 1930 4160 1990
+rect 6060 2260 6120 2430
+rect 6250 2260 6310 2430
+rect 6450 2260 6510 2430
+rect 6640 2260 6700 2430
+rect 6830 2260 6890 2430
+rect 7020 2260 7080 2430
+rect 7210 2260 7270 2430
+rect 7410 2260 7470 2430
+rect 7600 2260 7660 2430
+rect 7790 2260 7850 2430
+rect 5970 2030 6030 2200
+rect 6160 2030 6220 2200
+rect 6350 2030 6410 2200
+rect 6540 2030 6600 2200
+rect 6730 2030 6790 2200
+rect 6930 2030 6990 2200
+rect 7120 2030 7180 2200
+rect 7310 2030 7370 2200
+rect 7500 2030 7560 2200
+rect 7700 2030 7760 2200
+rect 7890 2030 7950 2200
+rect 8120 2030 8230 2200
+rect 1600 1560 1670 1730
+rect 1920 1560 1990 1730
+rect 2920 1440 2990 1500
+rect 4100 1310 4160 1370
+rect 3120 1190 3280 1250
+rect 1400 -470 1560 -410
+rect -640 -980 -580 -840
+rect -6120 -1290 -6060 -1130
+rect -5930 -1290 -5870 -1130
+rect -5730 -1290 -5670 -1130
+rect -6210 -1530 -6150 -1370
+rect -6020 -1530 -5960 -1370
+rect -5830 -1530 -5770 -1370
+rect -5630 -1530 -5550 -1370
+rect -240 -1430 -180 -1260
+rect -5140 -1620 -5050 -1540
+rect -2470 -1620 -2370 -1540
+rect -630 -1650 -570 -1510
+rect -330 -1660 -270 -1490
+rect -140 -1660 -80 -1490
+<< metal2 >>
+rect -6280 7560 -5770 7570
+rect -1030 7560 -570 7580
+rect -6310 7190 -6280 7560
+rect -5770 7190 -1030 7560
+rect -5770 7040 -5490 7190
+rect -6280 7030 -5490 7040
+rect -6240 5920 -5490 7030
+rect -1990 6540 -1800 6550
+rect -5120 6530 -1990 6540
+rect -5120 6390 -5110 6530
+rect -4920 6390 -1990 6530
+rect -1800 6390 -1350 6540
+rect -1990 6380 -1800 6390
+rect -5110 6370 -4920 6380
+rect -4800 6300 -4610 6310
+rect -1660 6300 -1470 6310
+rect -4990 6150 -4800 6300
+rect -4610 6150 -1660 6300
+rect -4800 6140 -4610 6150
+rect -1660 6140 -1470 6150
+rect -1030 5920 -570 7040
+rect -6240 5550 -570 5920
+rect -6240 4290 -5490 5550
+rect -5110 4890 -4920 4900
+rect -1990 4890 -1800 4900
+rect -5120 4740 -5110 4890
+rect -4920 4740 -1990 4890
+rect -1800 4740 -1600 4890
+rect -5110 4730 -4920 4740
+rect -1990 4730 -1800 4740
+rect -4800 4660 -4610 4670
+rect -1660 4660 -1470 4670
+rect -5000 4510 -4800 4660
+rect -4610 4510 -1660 4660
+rect -4800 4500 -4610 4510
+rect -1660 4500 -1470 4510
+rect -1030 4290 -570 5550
+rect 2990 7560 3450 7580
+rect 8650 7570 9100 7580
+rect 8650 7560 9110 7570
+rect 8470 7540 8650 7550
+rect 3450 7180 8650 7540
+rect 2990 5910 3450 7040
+rect 8470 7040 8650 7180
+rect 9110 7190 11940 7550
+rect 8470 7030 9110 7040
+rect 4260 6540 4450 6550
+rect 4450 6530 8020 6540
+rect 4450 6390 7390 6530
+rect 4260 6380 4450 6390
+rect 7580 6390 8020 6530
+rect 7390 6370 7580 6380
+rect 7700 6300 7890 6310
+rect 4590 6290 4780 6300
+rect 5970 6290 6190 6300
+rect 4380 6140 4590 6290
+rect 4780 6140 5970 6290
+rect 6190 6150 7700 6290
+rect 7890 6150 7900 6290
+rect 6190 6140 7900 6150
+rect 4590 6130 4780 6140
+rect 5970 6130 6190 6140
+rect 8470 5910 9100 7030
+rect 9380 6540 9540 6550
+rect 9370 6370 9380 6530
+rect 11770 6530 11960 6540
+rect 9540 6380 11770 6530
+rect 9540 6370 11960 6380
+rect 9380 6360 9540 6370
+rect 9670 6310 9830 6320
+rect 9460 6140 9670 6300
+rect 12110 6300 12300 6310
+rect 9830 6290 12020 6300
+rect 9830 6150 10660 6290
+rect 11050 6150 12020 6290
+rect 9830 6140 12020 6150
+rect 12110 6140 12300 6150
+rect 9670 6130 9830 6140
+rect 2990 5710 11920 5910
+rect 2990 5550 11930 5710
+rect -7240 4280 -240 4290
+rect 2990 4280 3450 5550
+rect 4260 4900 4450 4910
+rect 4450 4890 8030 4900
+rect 4450 4750 7390 4890
+rect 4260 4740 4450 4750
+rect 7580 4750 8030 4890
+rect 7390 4730 7580 4740
+rect 7700 4660 7890 4670
+rect 4590 4650 4780 4660
+rect 5970 4650 6190 4660
+rect 4380 4500 4590 4650
+rect 4780 4500 5970 4650
+rect 6190 4510 7700 4650
+rect 7890 4510 7900 4650
+rect 6190 4500 7900 4510
+rect 4590 4490 4780 4500
+rect 5970 4490 6190 4500
+rect 8470 4280 9100 5550
+rect 9380 4900 9540 4910
+rect 9370 4730 9380 4890
+rect 11770 4890 11960 4900
+rect 9540 4740 11770 4890
+rect 9540 4730 11960 4740
+rect 9380 4720 9540 4730
+rect 9670 4670 9830 4680
+rect 9460 4510 9670 4670
+rect 9830 4660 12020 4670
+rect 9830 4520 10660 4660
+rect 11050 4520 12020 4660
+rect 9830 4510 12020 4520
+rect 12110 4660 12300 4670
+rect 12110 4500 12300 4510
+rect 9670 4490 9830 4500
+rect -7240 4270 9100 4280
+rect -7240 4080 11900 4270
+rect -7240 3930 -600 4080
+rect -7240 3910 -6170 3930
+rect -5730 3910 -600 3930
+rect -480 3910 6420 4080
+rect 6990 3930 11940 4080
+rect 6990 3910 8150 3930
+rect 8780 3910 11940 3930
+rect -600 3900 -480 3910
+rect 6420 3900 6990 3910
+rect -1990 3260 -1800 3270
+rect 4260 3260 4450 3270
+rect 9380 3260 9540 3270
+rect -5110 3250 -1990 3260
+rect -4920 3110 -1990 3250
+rect -1800 3110 -1590 3260
+rect 4450 3250 8020 3260
+rect 4450 3110 7390 3250
+rect -1990 3100 -1800 3110
+rect 4260 3100 4450 3110
+rect 7580 3110 8020 3250
+rect -5110 3090 -4920 3100
+rect 7390 3090 7580 3100
+rect 9540 3250 12220 3260
+rect 9540 3100 11770 3250
+rect 11960 3100 12220 3250
+rect 9540 3090 12220 3100
+rect 9380 3080 9540 3090
+rect 9670 3030 9830 3040
+rect -4800 3020 -4610 3030
+rect -1660 3020 -1470 3030
+rect 7700 3020 7890 3030
+rect -6870 1150 -6550 2900
+rect -5700 2800 -5460 2940
+rect -5700 2150 -5460 2720
+rect -5000 2870 -4800 3020
+rect -4610 2870 -1660 3020
+rect 850 3010 1190 3020
+rect 1710 3010 2050 3020
+rect 4590 3010 4780 3020
+rect 5970 3010 6190 3020
+rect 7650 3010 7700 3020
+rect -5000 2860 -4610 2870
+rect -1660 2860 -1470 2870
+rect -5000 2150 -4780 2860
+rect -5700 1920 -4780 2150
+rect -6870 1140 -6280 1150
+rect -6870 980 -6600 1140
+rect -6370 980 -6280 1140
+rect -5700 980 -5550 1920
+rect -5000 1140 -4780 1920
+rect -800 2450 -720 2470
+rect -1270 1880 -1190 1890
+rect -1270 1440 -1190 1810
+rect -800 1410 -720 2370
+rect -1270 1360 -1190 1370
+rect -820 1370 -720 1410
+rect -820 1260 -730 1270
+rect -390 1250 -240 3000
+rect 1190 2860 1200 3010
+rect 3130 2890 3280 3010
+rect 850 2850 1190 2860
+rect 1710 2850 2050 2860
+rect 980 2820 1190 2850
+rect -160 2140 -90 2150
+rect -160 1440 -90 2070
+rect 980 1960 1190 2720
+rect 980 1790 1120 1960
+rect 1120 1780 1190 1790
+rect 1760 2820 1970 2850
+rect 3100 2820 3280 2890
+rect 4390 2860 4590 3010
+rect 4780 2860 5970 3010
+rect 6190 2870 7700 3010
+rect 7890 2870 7910 3010
+rect 6190 2860 7910 2870
+rect 4590 2850 4780 2860
+rect 5970 2850 6190 2860
+rect 7650 2850 7870 2860
+rect 1760 1960 1970 2720
+rect 1830 1790 1970 1960
+rect 1760 1780 1970 1790
+rect 2920 2250 2990 2260
+rect 960 1730 1030 1740
+rect 1280 1730 1350 1740
+rect 1600 1730 1670 1740
+rect 1920 1730 1990 1740
+rect 1030 1560 1280 1730
+rect 1350 1560 1600 1730
+rect 1670 1560 1920 1730
+rect 960 1550 1990 1560
+rect -160 1360 -90 1370
+rect -390 1140 -240 1190
+rect 1360 1140 1580 1550
+rect 2920 1500 2990 2180
+rect 2920 1430 2990 1440
+rect 3130 1260 3280 2820
+rect 6420 2690 6990 2700
+rect 6420 2580 6990 2590
+rect 6050 2430 7850 2440
+rect 6050 2260 6060 2430
+rect 6120 2260 6250 2430
+rect 6310 2260 6420 2430
+rect 7000 2260 7020 2430
+rect 7080 2260 7210 2430
+rect 7270 2260 7410 2430
+rect 7470 2260 7600 2430
+rect 7660 2260 7790 2430
+rect 6060 2250 6120 2260
+rect 6250 2250 6310 2260
+rect 6420 2250 7270 2260
+rect 7410 2250 7470 2260
+rect 7600 2250 7660 2260
+rect 7790 2250 7850 2260
+rect 5970 2200 6220 2210
+rect 6350 2200 6410 2210
+rect 6540 2200 6600 2210
+rect 6730 2200 6790 2210
+rect 6930 2200 6990 2210
+rect 7120 2200 7180 2210
+rect 7310 2200 7370 2210
+rect 7500 2200 7560 2210
+rect 7700 2200 7950 2210
+rect 8120 2200 8230 2210
+rect 8360 2200 8550 3030
+rect 9460 2860 9670 3030
+rect 9830 3020 12300 3030
+rect 9830 2860 10660 3020
+rect 11050 2870 12110 3020
+rect 11050 2860 12300 2870
+rect 9470 2540 12300 2860
+rect 6220 2030 6350 2200
+rect 6410 2030 6540 2200
+rect 6600 2030 6730 2200
+rect 6790 2030 6930 2200
+rect 6990 2030 7120 2200
+rect 7180 2030 7310 2200
+rect 7370 2030 7500 2200
+rect 7560 2030 7700 2200
+rect 7950 2030 8120 2200
+rect 8230 2030 8550 2200
+rect 6190 2020 7700 2030
+rect 7900 2020 7950 2030
+rect 8120 2020 8230 2030
+rect 5970 2010 6190 2020
+rect 7700 2010 7900 2020
+rect 4100 1990 4160 2000
+rect 4100 1370 4160 1930
+rect 8360 1850 8550 2030
+rect 4100 1300 4160 1310
+rect 3120 1250 3280 1260
+rect 3120 1180 3280 1190
+rect 3130 1140 3280 1180
+rect 5970 1140 6190 1150
+rect 6810 1140 7220 1150
+rect -5000 1130 -1260 1140
+rect -4860 990 -3660 1130
+rect -3520 990 -1260 1130
+rect -5000 980 -1260 990
+rect -410 980 -170 1140
+rect 300 980 2640 1140
+rect 3100 980 3340 1140
+rect 4190 980 5970 1140
+rect 6190 1130 8040 1140
+rect 6190 990 6270 1130
+rect 6410 990 7660 1130
+rect 7880 990 8040 1130
+rect 6190 980 8040 990
+rect 8430 1010 8550 1850
+rect 11750 1340 12300 2540
+rect 9180 1150 12300 1340
+rect 9180 1140 10840 1150
+rect 9170 1130 10840 1140
+rect 8430 980 8600 1010
+rect 9170 990 9870 1130
+rect 10010 990 10840 1130
+rect 11230 1130 12300 1150
+rect 11230 990 11870 1130
+rect 12010 1050 12300 1130
+rect 12010 990 12200 1050
+rect 9170 980 12200 990
+rect -6600 970 -6370 980
+rect 5970 970 6190 980
+rect 6810 970 7220 980
+rect -6460 740 -6380 900
+rect -5090 890 -1190 900
+rect -5090 750 -4790 890
+rect -4650 750 -3390 890
+rect -3250 750 -1190 890
+rect -5090 740 -1190 750
+rect 250 740 2560 900
+rect 4080 890 8040 900
+rect 4080 750 6510 890
+rect 6650 750 7890 890
+rect 8030 750 8040 890
+rect 4080 740 8040 750
+rect 9090 890 12010 900
+rect 9090 750 10130 890
+rect 10270 750 12010 890
+rect 9090 740 12010 750
+rect 12160 890 12300 900
+rect 12160 740 12300 750
+rect -6310 100 -3010 120
+rect -2780 100 -2260 120
+rect -2110 100 -1560 120
+rect -1410 100 5470 120
+rect 5720 100 9000 120
+rect -6310 90 9000 100
+rect -6310 -70 12310 90
+rect -6310 -240 12320 -70
+rect -6180 -250 -6140 -240
+rect -6600 -480 -6370 -470
+rect -6620 -640 -6600 -480
+rect -6370 -510 -6080 -480
+rect -6020 -510 -5960 -500
+rect -5830 -510 -5770 -500
+rect -6370 -640 -6210 -510
+rect -6600 -650 -6210 -640
+rect -6480 -670 -6210 -650
+rect -6150 -670 -6020 -510
+rect -5960 -670 -5830 -510
+rect -5770 -670 -5760 -510
+rect -6480 -910 -6270 -670
+rect -6210 -680 -6150 -670
+rect -6020 -680 -5960 -670
+rect -5830 -680 -5770 -670
+rect -6120 -750 -6060 -740
+rect -5920 -750 -5860 -740
+rect -5730 -750 -5670 -740
+rect -5620 -750 -5200 -240
+rect -5000 -490 -3340 -480
+rect -4860 -630 -3660 -490
+rect -3520 -630 -3340 -490
+rect -5000 -640 -3340 -630
+rect -3050 -580 -930 -240
+rect 1400 -410 1560 -400
+rect -600 -540 -480 -530
+rect -3050 -650 -1640 -580
+rect -5040 -730 -3250 -720
+rect -6170 -910 -6120 -750
+rect -6060 -910 -5920 -750
+rect -5860 -910 -5730 -750
+rect -5670 -910 -5200 -750
+rect -5090 -870 -4790 -730
+rect -4650 -870 -3390 -730
+rect -5090 -880 -3250 -870
+rect -6380 -970 -6270 -910
+rect -6120 -920 -6060 -910
+rect -5920 -920 -5860 -910
+rect -5730 -920 -5670 -910
+rect -6480 -1130 -6270 -970
+rect -6120 -1130 -6060 -1120
+rect -5930 -1130 -5870 -1120
+rect -5730 -1130 -5670 -1120
+rect -6480 -1290 -6120 -1130
+rect -6060 -1290 -5930 -1130
+rect -5870 -1290 -5730 -1130
+rect -5670 -1290 -5660 -1130
+rect -6120 -1300 -6060 -1290
+rect -5930 -1300 -5870 -1290
+rect -5730 -1300 -5670 -1290
+rect -5620 -1360 -5200 -910
+rect -6210 -1370 -6150 -1360
+rect -6020 -1370 -5960 -1360
+rect -5830 -1370 -5770 -1360
+rect -5630 -1370 -5200 -1360
+rect -6220 -1530 -6210 -1370
+rect -6150 -1530 -6020 -1370
+rect -5960 -1530 -5830 -1370
+rect -5770 -1530 -5630 -1370
+rect -6220 -1540 -5620 -1530
+rect -5660 -1860 -5620 -1540
+rect -5280 -1660 -5200 -1370
+rect -3050 -1020 -2060 -650
+rect -1650 -670 -1640 -650
+rect -600 -670 -480 -660
+rect -50 -640 310 -480
+rect 430 -640 2440 -470
+rect -600 -830 -510 -670
+rect -640 -840 -510 -830
+rect -580 -930 -510 -840
+rect -50 -870 130 -640
+rect -640 -990 -580 -980
+rect -3050 -1030 -1650 -1020
+rect -3050 -1090 -2320 -1030
+rect -2580 -1270 -2320 -1090
+rect 200 -880 2330 -720
+rect -50 -1250 130 -1230
+rect -240 -1260 130 -1250
+rect -180 -1430 130 -1260
+rect -240 -1440 130 -1430
+rect 2860 -1390 3440 -240
+rect -3050 -1510 -2580 -1450
+rect -330 -1490 -270 -1480
+rect -140 -1490 -80 -1480
+rect -5140 -1540 -5050 -1530
+rect -5140 -1630 -5050 -1620
+rect -4990 -1660 -2580 -1510
+rect -630 -1510 -330 -1500
+rect -2470 -1540 -2370 -1530
+rect -2470 -1630 -2370 -1620
+rect -570 -1650 -330 -1510
+rect -630 -1660 -330 -1650
+rect -270 -1660 -140 -1490
+rect -80 -1530 200 -1490
+rect -80 -1660 2860 -1530
+rect -5280 -1860 -2580 -1660
+rect -330 -1670 2860 -1660
+rect -5620 -1870 -5280 -1860
+rect 60 -1870 2860 -1670
+rect 3210 -1870 3440 -1390
+rect 5350 -1390 6070 -240
+rect 6890 -480 7220 -470
+rect 6270 -490 6890 -480
+rect 6410 -630 6890 -490
+rect 6270 -640 6890 -630
+rect 7220 -490 7940 -480
+rect 7220 -630 7660 -490
+rect 7800 -630 7940 -490
+rect 7220 -640 7940 -630
+rect 6890 -650 7220 -640
+rect 6180 -730 7850 -720
+rect 6180 -870 6510 -730
+rect 6650 -870 7850 -730
+rect 6180 -880 7850 -870
+rect 7890 -730 8030 -720
+rect 7890 -880 8030 -870
+rect 5350 -1840 5600 -1390
+rect 2860 -1880 3210 -1870
+rect 8490 -1380 9430 -240
+rect 9870 -490 12220 -480
+rect 10010 -630 10840 -490
+rect 11230 -630 11870 -490
+rect 12010 -630 12220 -490
+rect 9870 -640 12220 -630
+rect 9770 -730 12320 -720
+rect 9770 -870 10130 -730
+rect 10270 -870 12160 -730
+rect 12300 -870 12320 -730
+rect 9770 -880 12320 -870
+rect 8490 -1530 8650 -1380
+rect 6070 -1860 8650 -1530
+rect 5600 -1890 6070 -1880
+rect 9300 -1530 9430 -1380
+rect 9300 -1550 12330 -1530
+rect 9300 -1560 12350 -1550
+rect 9300 -1860 11850 -1560
+rect 8650 -1900 9300 -1890
+rect 11850 -1900 12350 -1890
+<< via2 >>
+rect -6280 7040 -5770 7560
+rect -1030 7040 -570 7560
+rect -5110 6380 -4920 6530
+rect -1990 6390 -1800 6540
+rect -4800 6150 -4610 6300
+rect -1660 6150 -1470 6300
+rect -5110 4740 -4920 4890
+rect -1990 4740 -1800 4890
+rect -4800 4510 -4610 4660
+rect -1660 4510 -1470 4660
+rect 2990 7040 3450 7560
+rect 8650 7040 9110 7560
+rect 4260 6390 4450 6540
+rect 7390 6380 7580 6530
+rect 4590 6140 4780 6290
+rect 5970 6140 6190 6290
+rect 7700 6150 7890 6300
+rect 9380 6370 9540 6540
+rect 11770 6380 11960 6530
+rect 9670 6140 9830 6310
+rect 10660 6150 11050 6290
+rect 12110 6150 12300 6300
+rect 4260 4750 4450 4900
+rect 7390 4740 7580 4890
+rect 4590 4500 4780 4650
+rect 5970 4500 6190 4650
+rect 7700 4510 7890 4660
+rect 9380 4730 9540 4900
+rect 11770 4740 11960 4890
+rect 9670 4500 9830 4670
+rect 10660 4520 11050 4660
+rect 12110 4510 12300 4660
+rect -600 3910 -480 4080
+rect 6420 3910 6990 4080
+rect -5110 3100 -4920 3250
+rect -1990 3110 -1800 3260
+rect 4260 3110 4450 3260
+rect 7390 3100 7580 3250
+rect 9380 3090 9540 3260
+rect 11770 3100 11960 3250
+rect -4800 2870 -4610 3020
+rect -1660 2870 -1470 3020
+rect -6600 980 -6370 1140
+rect 850 2860 1190 3010
+rect 1710 2860 2050 3010
+rect 4590 2860 4780 3010
+rect 5970 2860 6190 3010
+rect 7700 2870 7890 3020
+rect 6420 2590 6990 2690
+rect 6420 2260 6450 2430
+rect 6450 2260 6510 2430
+rect 6510 2260 6640 2430
+rect 6640 2260 6700 2430
+rect 6700 2260 6830 2430
+rect 6830 2260 6890 2430
+rect 6890 2260 7000 2430
+rect 9670 2860 9830 3030
+rect 10660 2860 11050 3020
+rect 12110 2870 12300 3020
+rect 5970 2030 6030 2200
+rect 6030 2030 6160 2200
+rect 6160 2030 6190 2200
+rect 7700 2030 7760 2200
+rect 7760 2030 7890 2200
+rect 7890 2030 7900 2200
+rect 5970 2020 6190 2030
+rect 7700 2020 7900 2030
+rect -5000 990 -4860 1130
+rect -3660 990 -3520 1130
+rect 5970 980 6190 1140
+rect 6270 990 6410 1130
+rect 7660 990 7880 1130
+rect 9870 990 10010 1130
+rect 10840 990 11230 1150
+rect 11870 990 12010 1130
+rect -4790 750 -4650 890
+rect -3390 750 -3250 890
+rect 6510 750 6650 890
+rect 7890 750 8030 890
+rect 10130 750 10270 890
+rect 12160 750 12300 890
+rect -6600 -640 -6370 -480
+rect -5000 -630 -4860 -490
+rect -3660 -630 -3520 -490
+rect -4790 -870 -4650 -730
+rect -3390 -870 -3250 -730
+rect -5620 -1530 -5550 -1370
+rect -5550 -1530 -5280 -1370
+rect -5620 -1860 -5280 -1530
+rect -2060 -1020 -1650 -650
+rect -600 -660 -480 -540
+rect -3050 -1450 -2580 -1090
+rect -50 -1230 130 -870
+rect -5140 -1620 -5050 -1540
+rect -2470 -1620 -2370 -1540
+rect 2860 -1870 3210 -1390
+rect 6270 -630 6410 -490
+rect 6890 -640 7220 -480
+rect 7660 -630 7800 -490
+rect 6510 -870 6650 -730
+rect 7890 -870 8030 -730
+rect 5600 -1880 6070 -1390
+rect 9870 -630 10010 -490
+rect 10840 -630 11230 -490
+rect 11870 -630 12010 -490
+rect 10130 -870 10270 -730
+rect 12160 -870 12300 -730
+rect 8650 -1890 9300 -1380
+rect 11850 -1890 12350 -1560
+<< metal3 >>
+rect -6290 7560 -5760 7565
+rect -6290 7040 -6280 7560
+rect -5770 7040 -5760 7560
+rect -6290 7035 -5760 7040
+rect -1040 7560 -560 7565
+rect -1040 7040 -1030 7560
+rect -570 7040 -560 7560
+rect -1040 7035 -560 7040
+rect 2980 7560 3460 7565
+rect 2980 7040 2990 7560
+rect 3450 7040 3460 7560
+rect 2980 7035 3460 7040
+rect 8640 7560 9120 7565
+rect 8640 7040 8650 7560
+rect 9110 7040 9120 7560
+rect 8640 7035 9120 7040
+rect -2000 6540 -1790 6545
+rect -5110 6535 -4920 6540
+rect -5120 6530 -4910 6535
+rect -5120 6380 -5110 6530
+rect -4920 6380 -4910 6530
+rect -5120 6375 -4910 6380
+rect -2000 6390 -1990 6540
+rect -1800 6390 -1790 6540
+rect -2000 6385 -1790 6390
+rect 4250 6540 4460 6545
+rect 4250 6390 4260 6540
+rect 4450 6390 4460 6540
+rect 7390 6535 7580 6550
+rect 9370 6540 9550 6545
+rect 4250 6385 4460 6390
+rect 7380 6530 7590 6535
+rect -5110 4895 -4920 6375
+rect -4800 6305 -4610 6310
+rect -4810 6300 -4600 6305
+rect -4810 6150 -4800 6300
+rect -4610 6150 -4600 6300
+rect -4810 6145 -4600 6150
+rect -5120 4890 -4910 4895
+rect -5120 4740 -5110 4890
+rect -4920 4740 -4910 4890
+rect -5120 4735 -4910 4740
+rect -5110 3255 -4920 4735
+rect -4800 4665 -4610 6145
+rect -2000 4895 -1810 6385
+rect -1670 6300 -1460 6305
+rect -1670 6150 -1660 6300
+rect -1470 6150 -1460 6300
+rect -1670 6145 -1460 6150
+rect -2000 4890 -1790 4895
+rect -2000 4740 -1990 4890
+rect -1800 4740 -1790 4890
+rect -2000 4735 -1790 4740
+rect -4810 4660 -4600 4665
+rect -4810 4510 -4800 4660
+rect -4610 4510 -4600 4660
+rect -4810 4505 -4600 4510
+rect -5120 3250 -4910 3255
+rect -5120 3100 -5110 3250
+rect -4920 3100 -4910 3250
+rect -5120 3095 -4910 3100
+rect -4800 3025 -4610 4505
+rect -2000 3265 -1810 4735
+rect -1660 4665 -1470 6145
+rect 4260 4905 4450 6385
+rect 7380 6380 7390 6530
+rect 7580 6380 7590 6530
+rect 7380 6375 7590 6380
+rect 4580 6290 4790 6295
+rect 4580 6140 4590 6290
+rect 4780 6140 4790 6290
+rect 4580 6135 4790 6140
+rect 5960 6290 6200 6295
+rect 5960 6140 5970 6290
+rect 6190 6140 6200 6290
+rect 5960 6135 6200 6140
+rect 4250 4900 4460 4905
+rect 4250 4750 4260 4900
+rect 4450 4750 4460 4900
+rect 4250 4745 4460 4750
+rect -1670 4660 -1460 4665
+rect -1670 4510 -1660 4660
+rect -1470 4510 -1460 4660
+rect -1670 4505 -1460 4510
+rect -2000 3260 -1790 3265
+rect -2000 3110 -1990 3260
+rect -1800 3110 -1790 3260
+rect -2000 3105 -1790 3110
+rect -1660 3025 -1470 4505
+rect -610 4080 -470 4085
+rect -610 3910 -600 4080
+rect -480 3910 -470 4080
+rect -610 3905 -470 3910
+rect -4810 3020 -4600 3025
+rect -4810 2870 -4800 3020
+rect -4610 2870 -4600 3020
+rect -4810 2865 -4600 2870
+rect -1670 3020 -1460 3025
+rect -1670 2870 -1660 3020
+rect -1470 2870 -1460 3020
+rect -1670 2865 -1460 2870
+rect -6610 1140 -6360 1145
+rect -6610 980 -6600 1140
+rect -6370 980 -6360 1140
+rect -5000 1135 -4860 1140
+rect -3660 1135 -3520 1140
+rect -5010 1130 -4850 1135
+rect -5010 990 -5000 1130
+rect -4860 990 -4850 1130
+rect -5010 985 -4850 990
+rect -3670 1130 -3510 1135
+rect -3670 990 -3660 1130
+rect -3520 990 -3510 1130
+rect -3670 985 -3510 990
+rect -6610 -480 -6360 980
+rect -6610 -640 -6600 -480
+rect -6370 -640 -6360 -480
+rect -5000 -485 -4860 985
+rect -4790 895 -4650 900
+rect -4800 890 -4640 895
+rect -4800 750 -4790 890
+rect -4650 750 -4640 890
+rect -4800 745 -4640 750
+rect -5010 -490 -4850 -485
+rect -5010 -630 -5000 -490
+rect -4860 -630 -4850 -490
+rect -5010 -635 -4850 -630
+rect -5000 -640 -4860 -635
+rect -6610 -645 -6360 -640
+rect -4790 -725 -4650 745
+rect -3660 -485 -3520 985
+rect -3390 895 -3250 900
+rect -3400 890 -3240 895
+rect -3400 750 -3390 890
+rect -3250 750 -3240 890
+rect -3400 745 -3240 750
+rect -3670 -490 -3510 -485
+rect -3670 -630 -3660 -490
+rect -3520 -630 -3510 -490
+rect -3670 -635 -3510 -630
+rect -3660 -640 -3520 -635
+rect -3390 -725 -3250 745
+rect -600 -535 -480 3905
+rect 4260 3265 4450 4745
+rect 4590 4655 4780 6135
+rect 5970 4655 6190 6135
+rect 7390 4895 7580 6375
+rect 9370 6370 9380 6540
+rect 9540 6370 9550 6540
+rect 11760 6530 11970 6535
+rect 11760 6380 11770 6530
+rect 11960 6380 11970 6530
+rect 11760 6375 11970 6380
+rect 9370 6365 9550 6370
+rect 7700 6305 7890 6310
+rect 7690 6300 7900 6305
+rect 7690 6150 7700 6300
+rect 7890 6150 7900 6300
+rect 7690 6145 7900 6150
+rect 7380 4890 7590 4895
+rect 7380 4740 7390 4890
+rect 7580 4740 7590 4890
+rect 7380 4735 7590 4740
+rect 4580 4650 4790 4655
+rect 4580 4500 4590 4650
+rect 4780 4500 4790 4650
+rect 4580 4495 4790 4500
+rect 5960 4650 6200 4655
+rect 5960 4500 5970 4650
+rect 6190 4500 6200 4650
+rect 5960 4495 6200 4500
+rect 4250 3260 4460 3265
+rect 960 3240 970 3260
+rect 840 3010 970 3240
+rect 1180 3240 1190 3260
+rect 1180 3010 1200 3240
+rect 840 2860 850 3010
+rect 1190 2860 1200 3010
+rect 1620 2860 1630 3260
+rect 1840 3240 1850 3260
+rect 1840 3010 2060 3240
+rect 4250 3110 4260 3260
+rect 4450 3110 4460 3260
+rect 4250 3105 4460 3110
+rect 4590 3015 4780 4495
+rect 5970 3015 6190 4495
+rect 6410 4080 7000 4085
+rect 6410 3910 6420 4080
+rect 6990 3910 7000 4080
+rect 6410 3905 7000 3910
+rect 2050 2860 2060 3010
+rect 840 2855 1200 2860
+rect 1700 2855 2060 2860
+rect 4580 3010 4790 3015
+rect 4580 2860 4590 3010
+rect 4780 2860 4790 3010
+rect 4580 2855 4790 2860
+rect 5960 3010 6200 3015
+rect 5960 2860 5970 3010
+rect 6190 2860 6200 3010
+rect 5960 2855 6200 2860
+rect 5970 2205 6190 2855
+rect 6420 2695 6990 3905
+rect 7390 3255 7580 4735
+rect 7700 4665 7890 6145
+rect 9380 4905 9540 6365
+rect 9660 6310 9840 6315
+rect 9660 6140 9670 6310
+rect 9830 6140 9840 6310
+rect 10650 6290 11060 6295
+rect 10650 6150 10660 6290
+rect 11050 6150 11060 6290
+rect 10650 6145 11060 6150
+rect 9660 6135 9840 6140
+rect 9370 4900 9550 4905
+rect 9370 4730 9380 4900
+rect 9540 4730 9550 4900
+rect 9370 4725 9550 4730
+rect 7690 4660 7900 4665
+rect 7690 4510 7700 4660
+rect 7890 4510 7900 4660
+rect 7690 4505 7900 4510
+rect 7380 3250 7590 3255
+rect 7380 3100 7390 3250
+rect 7580 3100 7590 3250
+rect 7380 3095 7590 3100
+rect 7700 3040 7890 4505
+rect 9380 3265 9540 4725
+rect 9670 4675 9830 6135
+rect 9660 4670 9840 4675
+rect 9660 4500 9670 4670
+rect 9830 4500 9840 4670
+rect 10660 4665 11050 6145
+rect 11770 4895 11960 6375
+rect 12100 6300 12310 6305
+rect 12100 6150 12110 6300
+rect 12300 6150 12310 6300
+rect 12100 6145 12310 6150
+rect 11760 4890 11970 4895
+rect 11760 4740 11770 4890
+rect 11960 4740 11970 4890
+rect 11760 4735 11970 4740
+rect 10650 4660 11060 4665
+rect 10650 4520 10660 4660
+rect 11050 4520 11060 4660
+rect 10650 4515 11060 4520
+rect 9660 4495 9840 4500
+rect 9370 3260 9550 3265
+rect 9370 3090 9380 3260
+rect 9540 3090 9550 3260
+rect 9370 3085 9550 3090
+rect 7700 3025 7900 3040
+rect 9670 3035 9830 4495
+rect 7690 3020 7900 3025
+rect 7690 2870 7700 3020
+rect 7890 2870 7900 3020
+rect 7690 2865 7900 2870
+rect 6410 2690 7000 2695
+rect 6410 2590 6420 2690
+rect 6990 2590 7000 2690
+rect 6410 2585 7000 2590
+rect 6420 2440 6990 2585
+rect 6420 2435 7000 2440
+rect 6410 2430 7010 2435
+rect 6410 2260 6420 2430
+rect 7000 2260 7010 2430
+rect 6410 2255 7010 2260
+rect 6740 2250 7000 2255
+rect 7700 2205 7900 2865
+rect 9660 3030 9840 3035
+rect 9660 2860 9670 3030
+rect 9830 2860 9840 3030
+rect 10660 3025 11050 4515
+rect 11770 3255 11960 4735
+rect 12110 4665 12300 6145
+rect 12100 4660 12310 4665
+rect 12100 4510 12110 4660
+rect 12300 4510 12310 4660
+rect 12100 4505 12310 4510
+rect 11760 3250 11970 3255
+rect 11760 3100 11770 3250
+rect 11960 3100 11970 3250
+rect 11760 3095 11970 3100
+rect 11770 3090 11960 3095
+rect 12110 3025 12300 4505
+rect 9660 2855 9840 2860
+rect 10650 3020 11060 3025
+rect 10650 2860 10660 3020
+rect 11050 2860 11060 3020
+rect 12100 3020 12310 3025
+rect 12100 2870 12110 3020
+rect 12300 2870 12310 3020
+rect 12100 2865 12310 2870
+rect 12110 2860 12300 2865
+rect 10650 2855 11060 2860
+rect 5960 2200 6200 2205
+rect 5960 2020 5970 2200
+rect 6190 2020 6200 2200
+rect 5960 2015 6200 2020
+rect 7690 2200 7910 2205
+rect 7690 2020 7700 2200
+rect 7900 2020 7910 2200
+rect 7690 2015 7910 2020
+rect 5970 1145 6190 2015
+rect 5960 1140 6200 1145
+rect 7710 1140 7890 2015
+rect 10830 1150 11240 1155
+rect 5960 980 5970 1140
+rect 6190 1130 6430 1140
+rect 7660 1135 7890 1140
+rect 9870 1135 10010 1140
+rect 6190 990 6270 1130
+rect 6410 990 6430 1130
+rect 6190 980 6430 990
+rect 7650 1130 7890 1135
+rect 7650 990 7660 1130
+rect 7880 990 7890 1130
+rect 7650 985 7890 990
+rect 9860 1130 10020 1135
+rect 9860 990 9870 1130
+rect 10010 990 10020 1130
+rect 9860 985 10020 990
+rect 10830 990 10840 1150
+rect 11230 990 11240 1150
+rect 11870 1135 12010 1140
+rect 10830 985 11240 990
+rect 11860 1130 12020 1135
+rect 11860 990 11870 1130
+rect 12010 990 12020 1130
+rect 11860 985 12020 990
+rect 7660 980 7890 985
+rect 5960 975 6200 980
+rect 6270 -485 6410 980
+rect 6510 895 6650 900
+rect 6500 890 6660 895
+rect 6500 750 6510 890
+rect 6650 750 6660 890
+rect 6500 745 6660 750
+rect 6260 -490 6420 -485
+rect -610 -540 -470 -535
+rect -2070 -650 -1640 -645
+rect -4800 -730 -4640 -725
+rect -4800 -870 -4790 -730
+rect -4650 -870 -4640 -730
+rect -4800 -875 -4640 -870
+rect -3400 -730 -3240 -725
+rect -3400 -870 -3390 -730
+rect -3250 -870 -3240 -730
+rect -3400 -875 -3240 -870
+rect -4790 -880 -4650 -875
+rect -3390 -880 -3250 -875
+rect -2070 -1020 -2060 -650
+rect -1650 -1020 -1640 -650
+rect -610 -660 -600 -540
+rect -480 -660 -470 -540
+rect 6260 -630 6270 -490
+rect 6410 -630 6420 -490
+rect 6260 -635 6420 -630
+rect 6270 -640 6410 -635
+rect -610 -665 -470 -660
+rect 6510 -725 6650 745
+rect 6890 -475 7220 960
+rect 6880 -480 7230 -475
+rect 6880 -640 6890 -480
+rect 7220 -640 7230 -480
+rect 7660 -485 7800 980
+rect 7890 895 8030 900
+rect 7880 890 8040 895
+rect 7880 750 7890 890
+rect 8030 750 8040 890
+rect 7880 745 8040 750
+rect 7650 -490 7810 -485
+rect 7650 -630 7660 -490
+rect 7800 -630 7810 -490
+rect 7650 -635 7810 -630
+rect 7660 -640 7800 -635
+rect 6880 -645 7230 -640
+rect 7890 -725 8030 745
+rect 9870 -485 10010 985
+rect 10130 895 10270 900
+rect 10120 890 10280 895
+rect 10120 750 10130 890
+rect 10270 750 10280 890
+rect 10120 745 10280 750
+rect 9860 -490 10020 -485
+rect 9860 -630 9870 -490
+rect 10010 -630 10020 -490
+rect 9860 -635 10020 -630
+rect 9870 -640 10010 -635
+rect 10130 -725 10270 745
+rect 10840 -485 11230 985
+rect 11870 -485 12010 985
+rect 12160 895 12300 900
+rect 12150 890 12310 895
+rect 12150 750 12160 890
+rect 12300 750 12310 890
+rect 12150 745 12310 750
+rect 10830 -490 11240 -485
+rect 10830 -630 10840 -490
+rect 11230 -630 11240 -490
+rect 10830 -635 11240 -630
+rect 11860 -490 12020 -485
+rect 11860 -630 11870 -490
+rect 12010 -630 12020 -490
+rect 11860 -635 12020 -630
+rect 10840 -640 11230 -635
+rect 11870 -640 12010 -635
+rect 12160 -725 12300 745
+rect 6500 -730 6660 -725
+rect -2070 -1025 -1640 -1020
+rect -60 -870 140 -865
+rect -3060 -1090 -2570 -1085
+rect -5630 -1370 -5270 -1365
+rect -5630 -1860 -5620 -1370
+rect -5280 -1860 -5270 -1370
+rect -3060 -1450 -3050 -1090
+rect -2580 -1450 -2570 -1090
+rect -3060 -1455 -2570 -1450
+rect -2060 -1370 -1650 -1025
+rect -60 -1230 -50 -870
+rect 130 -1230 140 -870
+rect 6500 -870 6510 -730
+rect 6650 -870 6660 -730
+rect 6500 -875 6660 -870
+rect 7880 -730 8040 -725
+rect 7880 -870 7890 -730
+rect 8030 -870 8040 -730
+rect 7880 -875 8040 -870
+rect 10120 -730 10280 -725
+rect 10120 -870 10130 -730
+rect 10270 -870 10280 -730
+rect 10120 -875 10280 -870
+rect 12150 -730 12310 -725
+rect 12150 -870 12160 -730
+rect 12300 -870 12310 -730
+rect 12150 -875 12310 -870
+rect 6510 -880 6650 -875
+rect 7890 -880 8030 -875
+rect 10130 -880 10270 -875
+rect 12160 -880 12300 -875
+rect -60 -1235 140 -1230
+rect -2060 -1480 -470 -1370
+rect 8640 -1380 9310 -1375
+rect 2850 -1390 3220 -1385
+rect -5150 -1540 -5040 -1535
+rect -2480 -1540 -2360 -1535
+rect -5150 -1620 -5140 -1540
+rect -5050 -1620 -2470 -1540
+rect -2370 -1620 -2360 -1540
+rect -5150 -1625 -5040 -1620
+rect -2480 -1625 -2360 -1620
+rect -5630 -1865 -5270 -1860
+rect -2060 -1900 -900 -1480
+rect -470 -1900 -460 -1480
+rect 2850 -1870 2860 -1390
+rect 3210 -1870 3220 -1390
+rect 2850 -1875 3220 -1870
+rect 5590 -1390 6080 -1385
+rect 5590 -1880 5600 -1390
+rect 6070 -1880 6080 -1390
+rect 5590 -1885 6080 -1880
+rect 8640 -1890 8650 -1380
+rect 9300 -1890 9310 -1380
+rect 8640 -1895 9310 -1890
+rect 11840 -1560 12360 -1555
+rect 11840 -1890 11850 -1560
+rect 12350 -1890 12360 -1560
+rect 11840 -1895 12360 -1890
+<< via3 >>
+rect -6280 7040 -5770 7560
+rect -1030 7040 -570 7560
+rect 2990 7040 3450 7560
+rect 8650 7040 9110 7560
+rect 970 3010 1180 3260
+rect 970 2860 1180 3010
+rect 1630 3010 1840 3260
+rect 1630 2860 1710 3010
+rect 1710 2860 1840 3010
+rect -50 -1230 130 -870
+rect -900 -1900 -470 -1480
+rect 2860 -1870 3210 -1390
+rect 5600 -1880 6070 -1390
+rect 8650 -1890 9300 -1380
+rect 11850 -1890 12350 -1560
+<< metal4 >>
+rect -6281 7560 -5769 7561
+rect -6281 7040 -6280 7560
+rect -5770 7040 -5769 7560
+rect -6281 7039 -5769 7040
+rect -1031 7560 -569 7561
+rect -1031 7040 -1030 7560
+rect -570 7040 -569 7560
+rect -1031 7039 -569 7040
+rect 2989 7560 3451 7561
+rect 2989 7040 2990 7560
+rect 3450 7040 3451 7560
+rect 2989 7039 3451 7040
+rect 8649 7560 9111 7561
+rect 8649 7040 8650 7560
+rect 9110 7040 9111 7560
+rect 8649 7039 9111 7040
+rect 969 3260 1181 3261
+rect 210 2860 970 3260
+rect 1180 2860 1181 3260
+rect 969 2859 1181 2860
+rect 1629 3260 1841 3261
+rect 1629 2860 1630 3260
+rect 1840 2860 2440 3260
+rect 1629 2859 1841 2860
+rect -7070 -540 -6640 410
+rect -51 -870 131 -869
+rect -1310 -1230 -50 -870
+rect 130 -1230 131 -870
+rect -51 -1231 131 -1230
+rect 8649 -1380 9301 -1379
+rect 2859 -1390 3211 -1389
+rect -901 -1480 -469 -1479
+rect -901 -1900 -900 -1480
+rect -470 -1900 -469 -1480
+rect 2859 -1870 2860 -1390
+rect 3210 -1870 3211 -1390
+rect 2859 -1871 3211 -1870
+rect 5599 -1390 6071 -1389
+rect 5599 -1880 5600 -1390
+rect 6070 -1880 6071 -1390
+rect 5599 -1881 6071 -1880
+rect 8649 -1890 8650 -1380
+rect 9300 -1890 9301 -1380
+rect 8649 -1891 9301 -1890
+rect 11849 -1560 12351 -1559
+rect 11849 -1890 11850 -1560
+rect 12350 -1890 12351 -1560
+rect 11849 -1891 12351 -1890
+rect -901 -1901 -469 -1900
+<< via4 >>
+rect -6280 7040 -5770 7560
+rect -1030 7040 -570 7560
+rect 2990 7040 3450 7560
+rect 8650 7040 9110 7560
+rect -900 -1900 -470 -1480
+rect 2860 -1870 3210 -1390
+rect 5600 -1880 6070 -1390
+rect 8650 -1890 9300 -1380
+rect 11850 -1890 12350 -1560
+<< metal5 >>
+rect -6304 7570 -5746 7584
+rect -3670 7570 -2990 7750
+rect -1054 7570 -546 7584
+rect 2966 7570 3474 7584
+rect 4360 7570 5040 7750
+rect 8626 7570 9134 7584
+rect -6640 7560 12600 7570
+rect -6640 7040 -6280 7560
+rect -5770 7040 -1030 7560
+rect -570 7040 2990 7560
+rect 3450 7040 8650 7560
+rect 9110 7040 12600 7560
+rect -6304 7016 -5746 7040
+rect -1120 6510 -470 7040
+rect 2890 6510 3540 7040
+rect 8626 7016 9134 7040
+rect 9910 6550 10340 7040
+rect 12040 6480 12600 7040
+rect -7070 -540 -6640 410
+rect 9620 -1310 10050 190
+rect 2836 -1370 3234 -1366
+rect 5576 -1370 6094 -1366
+rect 8590 -1370 10050 -1310
+rect 11820 -1370 12600 170
+rect -1580 -1380 12600 -1370
+rect -1580 -1390 8650 -1380
+rect -1580 -1480 2860 -1390
+rect -1580 -1900 -900 -1480
+rect -470 -1870 2860 -1480
+rect 3210 -1870 5600 -1390
+rect -470 -1880 5600 -1870
+rect 6070 -1880 8650 -1390
+rect -470 -1890 8650 -1880
+rect 9300 -1560 12600 -1380
+rect 9300 -1890 11850 -1560
+rect 12350 -1890 12600 -1560
+rect -470 -1900 12600 -1890
+rect -924 -1924 -446 -1900
+rect 2590 -1910 3420 -1900
+rect 5576 -1904 6094 -1900
+rect 8626 -1914 9324 -1900
+rect 11820 -1930 12600 -1900
+use currm_n  currm_n_0
+timestamp 1653925904
+transform 1 0 820 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_1
+timestamp 1653925904
+transform 1 0 1520 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_2
+timestamp 1653925904
+transform 1 0 2220 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_3
+timestamp 1653925904
+transform 1 0 120 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_4
+timestamp 1653925904
+transform 1 0 2920 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_5
+timestamp 1653925904
+transform 1 0 -580 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_6
+timestamp 1653925904
+transform 1 0 4010 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_7
+timestamp 1653925904
+transform 1 0 4710 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_8
+timestamp 1653925904
+transform 1 0 5410 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_9
+timestamp 1653925904
+transform 1 0 7510 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_10
+timestamp 1653925904
+transform 1 0 6810 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_11
+timestamp 1653925904
+transform 1 0 6110 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_12
+timestamp 1653925904
+transform 1 0 7510 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_13
+timestamp 1653925904
+transform 1 0 6810 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_14
+timestamp 1653925904
+transform 1 0 6110 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_15
+timestamp 1653925904
+transform 1 0 -5170 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_16
+timestamp 1653925904
+transform 1 0 -4470 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_17
+timestamp 1653925904
+transform 1 0 -3770 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_18
+timestamp 1653925904
+transform 1 0 -2370 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_19
+timestamp 1653925904
+transform 1 0 -3070 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_20
+timestamp 1653925904
+transform 1 0 -1670 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_21
+timestamp 1653925904
+transform 1 0 -5170 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_22
+timestamp 1653925904
+transform 1 0 -3770 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_23
+timestamp 1653925904
+transform 1 0 -4470 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_31
+timestamp 1653925904
+transform 1 0 -6700 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_32
+timestamp 1653925904
+transform 1 0 11800 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_33
+timestamp 1653925904
+transform 1 0 -5870 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_35
+timestamp 1653925904
+transform 1 0 9700 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_36
+timestamp 1653925904
+transform 1 0 10400 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_37
+timestamp 1653925904
+transform 1 0 11100 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_38
+timestamp 1653925904
+transform 1 0 9000 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_39
+timestamp 1653925904
+transform 1 0 11100 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_40
+timestamp 1653925904
+transform 1 0 10400 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_41
+timestamp 1653925904
+transform 1 0 9700 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_42
+timestamp 1653925904
+transform 1 0 11800 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_43
+timestamp 1653925904
+transform 1 0 8210 0 1 590
+box -60 -870 658 760
+use currm_n  currm_n_44
+timestamp 1653925904
+transform 1 0 1520 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_45
+timestamp 1653925904
+transform 1 0 2220 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_46
+timestamp 1653925904
+transform 1 0 120 0 1 -1030
+box -60 -870 658 760
+use currm_n  currm_n_47
+timestamp 1653925904
+transform 1 0 820 0 1 -1030
+box -60 -870 658 760
+use currm_p  currm_p_0
+timestamp 1653925904
+transform 1 0 170 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_1
+timestamp 1653925904
+transform 1 0 1510 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_2
+timestamp 1653925904
+transform 1 0 -1170 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_3
+timestamp 1653925904
+transform 1 0 -2510 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_4
+timestamp 1653925904
+transform 1 0 -2510 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_5
+timestamp 1653925904
+transform 1 0 -2510 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_6
+timestamp 1653925904
+transform 1 0 -3850 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_7
+timestamp 1653925904
+transform 1 0 -3850 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_8
+timestamp 1653925904
+transform 1 0 -3850 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_9
+timestamp 1653925904
+transform 1 0 -5190 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_10
+timestamp 1653925904
+transform 1 0 -5190 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_11
+timestamp 1653925904
+transform 1 0 -5190 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_12
+timestamp 1653925904
+transform 1 0 2850 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_13
+timestamp 1653925904
+transform 1 0 6870 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_14
+timestamp 1653925904
+transform 1 0 6870 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_15
+timestamp 1653925904
+transform 1 0 6870 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_16
+timestamp 1653925904
+transform 1 0 5530 0 1 3450
+box -60 -810 1298 848
+use currm_p  currm_p_17
+timestamp 1653925904
+transform 1 0 5530 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_18
+timestamp 1653925904
+transform 1 0 5530 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_19
+timestamp 1653925904
+transform 1 0 4190 0 1 6730
+box -60 -810 1298 848
+use currm_p  currm_p_20
+timestamp 1653925904
+transform 1 0 4190 0 1 5090
+box -60 -810 1298 848
+use currm_p  currm_p_21
+timestamp 1653925904
+transform 1 0 4190 0 1 3450
+box -60 -810 1298 848
+use currm_ps  currm_ps_0
+timestamp 1653409843
+transform 1 0 8200 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_1
+timestamp 1653409843
+transform 1 0 9290 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_2
+timestamp 1653409843
+transform 1 0 9290 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_3
+timestamp 1653409843
+transform 1 0 9290 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_4
+timestamp 1653409843
+transform 1 0 10380 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_5
+timestamp 1653409843
+transform 1 0 10380 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_6
+timestamp 1653409843
+transform 1 0 10380 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_7
+timestamp 1653409843
+transform 1 0 11470 0 1 5970
+box -50 -50 1052 1608
+use currm_ps  currm_ps_8
+timestamp 1653409843
+transform 1 0 11470 0 1 4330
+box -50 -50 1052 1608
+use currm_ps  currm_ps_9
+timestamp 1653409843
+transform 1 0 11470 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_18
+timestamp 1653409843
+transform 1 0 -7380 0 1 2690
+box -50 -50 1052 1608
+use currm_ps  currm_ps_19
+timestamp 1653409843
+transform 1 0 -6290 0 1 2690
+box -50 -50 1052 1608
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2
+timestamp 1653925904
+transform 0 1 -2379 -1 0 3393
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3
+timestamp 1653925904
+transform 0 1 5181 -1 0 3403
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_MJMGTW#0  sky130_fd_pr__cap_mim_m3_2_MJMGTW_0
+timestamp 1653911185
+transform 0 1 10711 -1 0 3403
+box -3351 -2101 3373 2101
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ  sky130_fd_pr__cap_mim_m3_2_N3PKNJ_0
+timestamp 1653911185
+transform 0 -1 -6819 1 0 3291
+box -3351 -1101 3373 1101
+use sky130_fd_pr__cap_mim_m3_2_N3PKNJ  sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1
+timestamp 1653911185
+transform -1 0 -4547 0 -1 -1409
+box -3351 -1101 3373 1101
+use sky130_fd_pr__nfet_01v8_6H2JYD  sky130_fd_pr__nfet_01v8_6H2JYD_0
+timestamp 1653899151
+transform 1 0 -669 0 1 -1560
+box -211 -310 211 310
+use sky130_fd_pr__nfet_01v8_9A2JGL  sky130_fd_pr__nfet_01v8_9A2JGL_1
+timestamp 1653901926
+transform 1 0 -5943 0 1 -1021
+box -407 -719 407 719
+use sky130_fd_pr__nfet_01v8_E6B2KN  sky130_fd_pr__nfet_01v8_E6B2KN_0
+timestamp 1653925904
+transform 1 0 1155 0 1 1760
+box -325 -410 325 410
+use sky130_fd_pr__nfet_01v8_E6B2KN  sky130_fd_pr__nfet_01v8_E6B2KN_1
+timestamp 1653925904
+transform 1 0 1795 0 1 1760
+box -325 -410 325 410
+use sky130_fd_pr__nfet_01v8_lvt_LH2JGW#0  sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0
+timestamp 1653899151
+transform 1 0 -207 0 1 -1460
+box -263 -410 263 410
+use sky130_fd_pr__pfet_01v8_UAQRRG  sky130_fd_pr__pfet_01v8_UAQRRG_0
+timestamp 1653899151
+transform 1 0 -689 0 1 -911
+box -211 -319 211 319
+use sky130_fd_pr__pfet_01v8_VCBWSW  sky130_fd_pr__pfet_01v8_VCBWSW_0
+timestamp 1653901926
+transform 1 0 6957 0 1 2229
+box -1127 -419 1127 419
+<< labels >>
+rlabel metal2 1440 -640 1490 -540 1 I_Bias
+rlabel metal1 -490 -1740 -440 -1690 1 Disable_FB
+rlabel metal2 11870 2000 12230 2390 1 Out
+rlabel metal1 1310 1990 1390 2060 1 InP
+rlabel metal1 1540 1990 1620 2060 1 InN
+rlabel metal5 -6580 7180 -6380 7500 1 VP
+rlabel metal5 3920 -1800 4130 -1540 1 VN
+<< end >>
diff --git a/mag/feedback/fb_dark_current.spice b/mag/feedback/fb_dark_current.spice
new file mode 100644
index 0000000..fab6c8d
--- /dev/null
+++ b/mag/feedback/fb_dark_current.spice
@@ -0,0 +1,250 @@
+* SPICE3 file created from fb_dark_current.ext - technology: sky130B
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_4LMUGG a_355_n200# a_413_n297# a_n285_n200# a_29_n297#
++ a_n227_n297# a_285_n297# a_227_n200# a_n157_n200# a_n541_n200# w_n679_n419# a_n483_n297#
++ a_n99_n297# a_483_n200# a_157_n297# a_99_n200# a_n413_n200# a_n29_n200# a_n355_n297#
+X0 a_227_n200# a_157_n297# a_99_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X1 a_n285_n200# a_n355_n297# a_n413_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X2 a_99_n200# a_29_n297# a_n29_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X3 a_355_n200# a_285_n297# a_227_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X4 a_483_n200# a_413_n297# a_355_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X5 a_n29_n200# a_n99_n297# a_n157_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X6 a_n413_n200# a_n483_n297# a_n541_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X7 a_n157_n200# a_n227_n297# a_n285_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=350000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_LKHJAY a_29_n297# a_n287_n200# a_n229_n297# a_229_n200#
++ w_n425_n419# a_n29_n200#
+X0 a_229_n200# a_29_n297# a_n29_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X1 a_n29_n200# a_n229_n297# a_n287_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+.ends
+
+.subckt currm_p m1_60_n360# m1_70_460# m1_190_n590# m1_n50_n680#
+Xsky130_fd_pr__pfet_01v8_lvt_4LMUGG_0 m1_190_n590# m1_n50_n680# m1_60_n360# m1_n50_n680#
++ m1_n50_n680# m1_n50_n680# m1_60_n360# m1_190_n590# m1_60_n360# m1_70_460# m1_n50_n680#
++ m1_n50_n680# m1_60_n360# m1_n50_n680# m1_190_n590# m1_190_n590# m1_60_n360# m1_n50_n680#
++ sky130_fd_pr__pfet_01v8_lvt_4LMUGG
+Xsky130_fd_pr__pfet_01v8_lvt_LKHJAY_0 m1_n50_n680# m1_70_460# m1_n50_n680# m1_70_460#
++ m1_70_460# m1_60_n360# sky130_fd_pr__pfet_01v8_lvt_LKHJAY
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_PJG2KG a_50_n200# a_n108_n200# a_n50_n288# a_n210_n374#
+X0 a_50_n200# a_n50_n288# a_n108_n200# a_n210_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_82JNGJ a_n221_n200# a_n129_n200# a_63_n200# a_111_222#
++ a_n33_n200# a_15_n288# a_n81_222# a_n177_n288# a_159_n200# a_n323_n374#
+X0 a_n33_n200# a_n81_222# a_n129_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_159_n200# a_111_222# a_63_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_63_n200# a_15_n288# a_n33_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_n129_n200# a_n177_n288# a_n221_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt currm_n m1_68_150# m1_164_390# a_122_62# VSUBS
+Xsky130_fd_pr__nfet_01v8_PJG2KG_0 VSUBS m1_68_150# a_122_62# VSUBS sky130_fd_pr__nfet_01v8_PJG2KG
+Xsky130_fd_pr__nfet_01v8_82JNGJ_0 m1_68_150# m1_164_390# m1_164_390# a_122_62# m1_68_150#
++ a_122_62# a_122_62# a_122_62# m1_68_150# VSUBS sky130_fd_pr__nfet_01v8_82JNGJ
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PD4XN5 a_29_n297# a_n129_n297# a_129_n200# w_n325_n419#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n297# a_n29_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n297# a_n187_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U4PWGH a_n129_n200# a_63_n200# a_n225_n200# a_15_n297#
++ a_n81_231# a_n177_n297# a_n273_231# a_n321_n200# w_n551_n419# a_n33_n200# a_159_n200#
++ a_n413_n200# a_111_231# a_255_n200# a_207_n297# a_351_n200# a_n369_n297# a_303_231#
+X0 a_255_n200# a_207_n297# a_159_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n200# a_n369_n297# a_n413_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_231# a_63_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_231# a_n321_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X4 a_63_n200# a_15_n297# a_n33_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_n297# a_n225_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_351_n200# a_303_231# a_255_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_n33_n200# a_n81_231# a_n129_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt currm_ps m1_170_170# a_132_72# w_132_72# m1_80_400#
+Xsky130_fd_pr__pfet_01v8_PD4XN5_0 a_132_72# a_132_72# w_132_72# w_132_72# m1_80_400#
++ w_132_72# sky130_fd_pr__pfet_01v8_PD4XN5
+Xsky130_fd_pr__pfet_01v8_U4PWGH_0 m1_170_170# m1_170_170# m1_80_400# a_132_72# a_132_72#
++ a_132_72# a_132_72# m1_170_170# w_132_72# m1_80_400# m1_80_400# m1_80_400# a_132_72#
++ m1_170_170# a_132_72# m1_80_400# a_132_72# a_132_72# sky130_fd_pr__pfet_01v8_U4PWGH
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_6H2JYD a_n73_n100# a_n33_n188# a_15_n100# a_n175_n274#
+X0 a_15_n100# a_n33_n188# a_n73_n100# a_n175_n274# sky130_fd_pr__nfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_N3PKNJ c2_n3251_n1000# m4_n3351_n1100#
+X0 c2_n3251_n1000# m4_n3351_n1100# sky130_fd_pr__cap_mim_m3_2 l=1e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_9A2JGL a_n81_109# a_15_109# a_n225_n597# a_15_n509#
++ a_n177_n509# a_111_n509# a_207_109# a_63_n87# a_159_531# a_n371_n683# a_n33_n597#
++ a_n33_531# a_n129_n87# a_n177_109# a_n225_531# a_n81_n509# a_111_109# a_n129_21#
++ a_159_n597# a_63_21# a_n269_n509# a_n269_109# a_207_n509#
+X0 a_15_109# a_n33_531# a_n81_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_111_109# a_63_21# a_15_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_n81_109# a_n129_21# a_n177_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n177_109# a_n225_531# a_n269_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_n81_n509# a_n129_n87# a_n177_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_15_n509# a_n33_n597# a_n81_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_207_109# a_159_531# a_111_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_207_n509# a_159_n597# a_111_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n177_n509# a_n225_n597# a_n269_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_111_n509# a_63_n87# a_15_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_VCBWSW a_n513_n200# a_n989_n200# a_n129_n200# a_63_n200#
++ a_n225_n200# a_15_n297# a_n561_n297# a_n81_231# a_927_n200# a_n177_n297# a_879_231#
++ a_n273_231# a_n321_n200# a_639_n200# a_735_n200# a_n33_n200# a_n465_231# a_n897_n200#
++ a_831_n200# a_447_n200# a_783_n297# a_399_n297# a_543_n200# a_159_n200# a_n609_n200#
++ a_n945_n297# a_n657_231# a_495_231# a_111_231# a_255_n200# a_n705_n200# a_591_n297#
++ a_207_n297# a_351_n200# a_n801_n200# a_n849_231# a_n417_n200# a_n369_n297# a_n753_n297#
++ w_n1127_n419# a_687_231# a_303_231#
+X0 a_n609_n200# a_n657_231# a_n705_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_927_n200# a_879_231# a_831_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n897_n200# a_n945_n297# a_n989_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_255_n200# a_207_n297# a_159_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n321_n200# a_n369_n297# a_n417_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_543_n200# a_495_231# a_447_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_831_n200# a_783_n297# a_735_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_159_n200# a_111_231# a_63_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n225_n200# a_n273_231# a_n321_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_447_n200# a_399_n297# a_351_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_n513_n200# a_n561_n297# a_n609_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_63_n200# a_15_n297# a_n33_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_735_n200# a_687_231# a_639_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X13 a_n801_n200# a_n849_231# a_n897_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_n129_n200# a_n177_n297# a_n225_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n417_n200# a_n465_231# a_n513_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 a_639_n200# a_591_n297# a_543_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 a_n705_n200# a_n753_n297# a_n801_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_351_n200# a_303_231# a_255_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n33_n200# a_n81_231# a_n129_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_MJMGTW c2_n3251_n2000# m4_n3351_n2100#
+X0 c2_n3251_n2000# m4_n3351_n2100# sky130_fd_pr__cap_mim_m3_2 l=2e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_E6B2KN a_129_n200# a_29_n288# a_n129_n288# a_n289_n374#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n288# a_n29_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n288# a_n187_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_UAQRRG a_n73_n100# a_15_n100# w_n211_n319# a_n33_n197#
+X0 a_15_n100# a_n33_n197# a_n73_n100# w_n211_n319# sky130_fd_pr__pfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_LH2JGW a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+
+Xcurrm_p_5 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_2 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_6 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_3 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_7 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_0 m1_9810_5770# m1_9810_5770# VP currm_ps_0/m1_80_400# currm_ps
+Xcurrm_n_4 currm_n_4/m1_68_150# m1_n5100_670# m1_n5100_670# VN currm_n
+Xcurrm_p_9 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_1 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_8 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_19 m1_n6550_3300# m1_n6550_3300# VP currm_ps_19/m1_80_400# currm_ps
+Xcurrm_ps_18 m1_9390_670# m1_n6550_3300# VP currm_ps_18/m1_80_400# currm_ps
+Xcurrm_n_5 currm_n_5/m1_68_150# m1_4960_670# m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_6H2JYD_0 m1_n830_1270# Disable_FB VN VN sky130_fd_pr__nfet_01v8_6H2JYD
+Xcurrm_ps_2 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_7 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_6 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_ps_3 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_8 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_ps_4 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_9 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_p_10 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_5 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_20 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_21 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_ps_6 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_11 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_7 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_ps_8 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_12 currm_p_12/m1_60_n360# VP m1_n5100_670# m1_7940_2770# currm_p
+Xcurrm_p_13 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_ps_9 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_14 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_15 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_16 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_1 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_0 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xcurrm_p_17 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xsky130_fd_pr__nfet_01v8_9A2JGL_1 m1_9390_670# VN Disable_FB m1_9390_670# m1_9390_670#
++ VN VN Disable_FB Disable_FB VN Disable_FB Disable_FB Disable_FB VN Disable_FB VN
++ m1_9390_670# Disable_FB Disable_FB Disable_FB VN m1_9390_670# m1_9390_670# sky130_fd_pr__nfet_01v8_9A2JGL
+Xcurrm_p_18 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_19 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_n_40 m2_9090_740# Out m1_9390_670# VN currm_n
+Xsky130_fd_pr__pfet_01v8_VCBWSW_0 VP m1_9810_5770# VP VP m1_9810_5770# m1_n830_1270#
++ m1_n830_1270# m1_n830_1270# m1_9810_5770# m1_n830_1270# m1_n830_1270# m1_n830_1270#
++ VP VP m1_9810_5770# m1_9810_5770# m1_n830_1270# VP VP VP m1_n830_1270# m1_n830_1270#
++ m1_9810_5770# m1_9810_5770# m1_9810_5770# m1_n830_1270# m1_n830_1270# m1_n830_1270#
++ m1_n830_1270# VP VP m1_n830_1270# m1_n830_1270# m1_9810_5770# m1_9810_5770# m1_n830_1270#
++ m1_9810_5770# m1_n830_1270# m1_n830_1270# VP m1_n830_1270# m1_n830_1270# sky130_fd_pr__pfet_01v8_VCBWSW
+Xcurrm_n_41 m2_9090_740# Out m1_9390_670# VN currm_n
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_0 VP VN sky130_fd_pr__cap_mim_m3_2_MJMGTW
+Xcurrm_n_42 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_20 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_31 m2_n6460_740# m1_9390_670# m1_9390_670# VN currm_n
+Xcurrm_n_32 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_43 currm_n_43/m1_68_150# m1_9810_5770# I_Bias VN currm_n
+Xcurrm_n_10 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_21 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_12 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_11 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_44 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_45 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_23 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_22 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_33 currm_n_33/m1_68_150# m1_n6550_3300# I_Bias VN currm_n
+Xcurrm_n_35 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_13 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_46 m2_200_n880# I_Bias I_Bias VN currm_n
+Xsky130_fd_pr__nfet_01v8_E6B2KN_0 m1_950_1560# InP InP VN m1_970_2720# m1_950_1560#
++ sky130_fd_pr__nfet_01v8_E6B2KN
+Xcurrm_n_36 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_14 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_47 m2_200_n880# I_Bias I_Bias VN currm_n
+Xsky130_fd_pr__pfet_01v8_UAQRRG_0 m1_n830_1270# VP VP Disable_FB sky130_fd_pr__pfet_01v8_UAQRRG
+Xsky130_fd_pr__nfet_01v8_E6B2KN_1 m1_950_1560# InN InN VN m1_7940_2770# m1_950_1560#
++ sky130_fd_pr__nfet_01v8_E6B2KN
+Xcurrm_n_37 m2_9090_740# Out m1_9390_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 Disable_FB VN I_Bias Disable_FB VN VN sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xcurrm_n_15 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_38 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_16 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_39 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_17 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_18 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_19 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_p_0 currm_p_0/m1_60_n360# VP m1_970_2720# m1_970_2720# currm_p
+Xcurrm_p_1 currm_p_1/m1_60_n360# VP m1_7940_2770# m1_7940_2770# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 m1_970_2720# VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xcurrm_p_2 currm_p_2/m1_60_n360# VP m1_4960_670# m1_970_2720# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 m1_7940_2770# VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xcurrm_p_3 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_0 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_4 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_1 m2_250_740# m1_950_1560# I_Bias VN currm_n
+
+
diff --git "a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.ext" "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.ext"
new file mode 100644
index 0000000..13e69f5
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.ext"
@@ -0,0 +1,12 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n3000#" "m4_n3351_n3100#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git "a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.mag" "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.mag"
new file mode 100644
index 0000000..8b1d4e3
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0434.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
new file mode 100644
index 0000000..13e69f5
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
@@ -0,0 +1,12 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n3000#" "m4_n3351_n3100#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..8b1d4e3
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.ext" "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.ext"
new file mode 100644
index 0000000..716326b
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.ext"
@@ -0,0 +1,12 @@
+timestamp 1653911185
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n2000#" 0 0 -3251 -2000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23681024 19872 0 0
+node "m4_n3351_n2100#" 0 10879.7 -3351 -2100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28148400 21804 1344640 9044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n2100#" "c2_n3251_n2000#" 48790
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -2000 -3250 -1999 w=6000 l=4000 "None" "c2_n3251_n2000#" 19680 0 "m4_n3351_n2100#" 400 0
diff --git "a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.mag" "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.mag"
new file mode 100644
index 0000000..cedc5b7
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW\0430.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653911185
+<< metal4 >>
+rect -3351 2059 3351 2100
+rect -3351 -2059 3095 2059
+rect 3331 -2059 3351 2059
+rect -3351 -2100 3351 -2059
+<< via4 >>
+rect 3095 -2059 3331 2059
+<< mimcap2 >>
+rect -3251 1960 2749 2000
+rect -3251 -1960 -3211 1960
+rect 2709 -1960 2749 1960
+rect -3251 -2000 2749 -1960
+<< mimcap2contact >>
+rect -3211 -1960 2709 1960
+<< metal5 >>
+rect 3053 2059 3373 2101
+rect -3235 1960 2733 1984
+rect -3235 -1960 -3211 1960
+rect 2709 -1960 2733 1960
+rect -3235 -1984 2733 -1960
+rect 3053 -2059 3095 2059
+rect 3331 -2059 3373 2059
+rect 3053 -2101 3373 -2059
+<< properties >>
+string FIXED_BBOX -3351 -2100 2849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 20 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext
new file mode 100644
index 0000000..8c99df2
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.ext
@@ -0,0 +1,12 @@
+timestamp 1653911185
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n2000#" 0 0 -3251 -2000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23681024 19872 0 0
+node "m4_n3351_n2100#" 0 10148.3 -3351 -2100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28148400 21804 1344640 9044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n2100#" "c2_n3251_n2000#" 48790
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -2000 -3250 -1999 w=6000 l=4000 "None" "c2_n3251_n2000#" 19680 0 "m4_n3351_n2100#" 200 0
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
new file mode 100644
index 0000000..cedc5b7
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653911185
+<< metal4 >>
+rect -3351 2059 3351 2100
+rect -3351 -2059 3095 2059
+rect 3331 -2059 3351 2059
+rect -3351 -2100 3351 -2059
+<< via4 >>
+rect 3095 -2059 3331 2059
+<< mimcap2 >>
+rect -3251 1960 2749 2000
+rect -3251 -1960 -3211 1960
+rect 2709 -1960 2749 1960
+rect -3251 -2000 2749 -1960
+<< mimcap2contact >>
+rect -3211 -1960 2709 1960
+<< metal5 >>
+rect 3053 2059 3373 2101
+rect -3235 1960 2733 1984
+rect -3235 -1960 -3211 1960
+rect 2709 -1960 2733 1960
+rect -3235 -1984 2733 -1960
+rect 3053 -2059 3095 2059
+rect 3331 -2059 3373 2059
+rect 3053 -2101 3373 -2059
+<< properties >>
+string FIXED_BBOX -3351 -2100 2849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 20 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.ext b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.ext
new file mode 100644
index 0000000..8e7722b
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.ext
@@ -0,0 +1,12 @@
+timestamp 1653911185
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n1000#" 0 0 -3251 -1000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11745024 15872 0 0
+node "m4_n3351_n1100#" 0 6929.14 -3351 -1100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14744400 17804 704640 5044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n1000#" "m4_n3351_n1100#" 26689.6
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -1000 -3250 -999 w=6000 l=2000 "None" "c2_n3251_n1000#" 15680 0 "m4_n3351_n1100#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag
new file mode 100644
index 0000000..7d1b346
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3PKNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653911185
+<< metal4 >>
+rect -3351 1059 3351 1100
+rect -3351 -1059 3095 1059
+rect 3331 -1059 3351 1059
+rect -3351 -1100 3351 -1059
+<< via4 >>
+rect 3095 -1059 3331 1059
+<< mimcap2 >>
+rect -3251 960 2749 1000
+rect -3251 -960 -3211 960
+rect 2709 -960 2749 960
+rect -3251 -1000 2749 -960
+<< mimcap2contact >>
+rect -3211 -960 2709 960
+<< metal5 >>
+rect 3053 1059 3373 1101
+rect -3235 960 2733 984
+rect -3235 -960 -3211 960
+rect 2709 -960 2733 960
+rect -3235 -984 2733 -960
+rect 3053 -1059 3095 1059
+rect 3331 -1059 3373 1059
+rect 3053 -1101 3373 -1059
+<< properties >>
+string FIXED_BBOX -3351 -1100 2849 1100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 10 val 615.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag
new file mode 100644
index 0000000..4febfed
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_N3V3NJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653911185
+<< metal4 >>
+rect -1351 3059 1351 3100
+rect -1351 -3059 1095 3059
+rect 1331 -3059 1351 3059
+rect -1351 -3100 1351 -3059
+<< via4 >>
+rect 1095 -3059 1331 3059
+<< mimcap2 >>
+rect -1251 2960 749 3000
+rect -1251 -2960 -1211 2960
+rect 709 -2960 749 2960
+rect -1251 -3000 749 -2960
+<< mimcap2contact >>
+rect -1211 -2960 709 2960
+<< metal5 >>
+rect 1053 3059 1373 3101
+rect -1235 2960 733 2984
+rect -1235 -2960 -1211 2960
+rect 709 -2960 733 2960
+rect -1235 -2984 733 -2960
+rect 1053 -3059 1095 3059
+rect 1331 -3059 1373 3059
+rect 1053 -3101 1373 -3059
+<< properties >>
+string FIXED_BBOX -1351 -3100 849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 10 l 30 val 615.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag
new file mode 100644
index 0000000..dde1874
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__cap_mim_m3_2_NJ5J72.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653911185
+<< metal4 >>
+rect -2351 3059 2351 3100
+rect -2351 -3059 2095 3059
+rect 2331 -3059 2351 3059
+rect -2351 -3100 2351 -3059
+<< via4 >>
+rect 2095 -3059 2331 3059
+<< mimcap2 >>
+rect -2251 2960 1749 3000
+rect -2251 -2960 -2211 2960
+rect 1709 -2960 1749 2960
+rect -2251 -3000 1749 -2960
+<< mimcap2contact >>
+rect -2211 -2960 1709 2960
+<< metal5 >>
+rect 2053 3059 2373 3101
+rect -2235 2960 1733 2984
+rect -2235 -2960 -2211 2960
+rect 1709 -2960 1733 2960
+rect -2235 -2984 1733 -2960
+rect 2053 -3059 2095 3059
+rect 2331 -3059 2373 3059
+rect 2053 -3101 2373 -3059
+<< properties >>
+string FIXED_BBOX -2351 -3100 1849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 30 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.ext
new file mode 100644
index 0000000..1c65fde
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.ext
@@ -0,0 +1,15 @@
+timestamp 1653899151
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_15_n100#" 493 92.3615 15 -100 ndif 0 0 0 0 0 0 0 0 11600 516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7072 484 9200 492 0 0 0 0 0 0 0 0 0 0
+node "a_n73_n100#" 493 92.3615 -73 -100 ndif 0 0 0 0 0 0 0 0 11600 516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7072 484 9200 492 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n188#" 674 294.279 -33 -188 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16032 956 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n175_n274#" 0 0 -175 -274 ppd 0 0 0 0 0 0 0 0 0 0 56440 3320 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56440 3320 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n73_n100#" "a_15_n100#" 283.566
+cap "a_n33_n188#" "a_15_n100#" 28.3324
+cap "a_n73_n100#" "a_n33_n188#" 28.3324
+device msubckt sky130_fd_pr__nfet_01v8 -15 -100 -14 -99 l=30 w=200 "a_n175_n274#" "a_n33_n188#" 60 0 "a_n73_n100#" 200 0 "a_15_n100#" 200 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.mag
new file mode 100644
index 0000000..17e8d37
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_6H2JYD.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653899151
+<< error_p >>
+rect -29 172 29 178
+rect -29 138 -17 172
+rect -29 132 29 138
+rect -29 -138 29 -132
+rect -29 -172 -17 -138
+rect -29 -178 29 -172
+<< pwell >>
+rect -211 -310 211 310
+<< nmos >>
+rect -15 -100 15 100
+<< ndiff >>
+rect -73 88 -15 100
+rect -73 -88 -61 88
+rect -27 -88 -15 88
+rect -73 -100 -15 -88
+rect 15 88 73 100
+rect 15 -88 27 88
+rect 61 -88 73 88
+rect 15 -100 73 -88
+<< ndiffc >>
+rect -61 -88 -27 88
+rect 27 -88 61 88
+<< psubdiff >>
+rect -175 240 -79 274
+rect 79 240 175 274
+rect -175 178 -141 240
+rect 141 178 175 240
+rect -175 -240 -141 -178
+rect 141 -240 175 -178
+rect -175 -274 -79 -240
+rect 79 -274 175 -240
+<< psubdiffcont >>
+rect -79 240 79 274
+rect -175 -178 -141 178
+rect 141 -178 175 178
+rect -79 -274 79 -240
+<< poly >>
+rect -33 172 33 188
+rect -33 138 -17 172
+rect 17 138 33 172
+rect -33 122 33 138
+rect -15 100 15 122
+rect -15 -122 15 -100
+rect -33 -138 33 -122
+rect -33 -172 -17 -138
+rect 17 -172 33 -138
+rect -33 -188 33 -172
+<< polycont >>
+rect -17 138 17 172
+rect -17 -172 17 -138
+<< locali >>
+rect -175 240 -79 274
+rect 79 240 175 274
+rect -175 178 -141 240
+rect 141 178 175 240
+rect -33 138 -17 172
+rect 17 138 33 172
+rect -61 88 -27 104
+rect -61 -104 -27 -88
+rect 27 88 61 104
+rect 27 -104 61 -88
+rect -33 -172 -17 -138
+rect 17 -172 33 -138
+rect -175 -240 -141 -178
+rect 141 -240 175 -178
+rect -175 -274 -79 -240
+rect 79 -274 175 -240
+<< viali >>
+rect -17 138 17 172
+rect -61 -88 -27 88
+rect 27 -88 61 88
+rect -17 -172 17 -138
+<< metal1 >>
+rect -29 172 29 178
+rect -29 138 -17 172
+rect 17 138 29 172
+rect -29 132 29 138
+rect -67 88 -21 100
+rect -67 -88 -61 88
+rect -27 -88 -21 88
+rect -67 -100 -21 -88
+rect 21 88 67 100
+rect 21 -88 27 88
+rect 61 -88 67 88
+rect 21 -100 67 -88
+rect -29 -138 29 -132
+rect -29 -172 -17 -138
+rect 17 -172 29 -138
+rect -29 -178 29 -172
+<< properties >>
+string FIXED_BBOX -158 -257 158 257
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 1 l 0.150 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.ext
new file mode 100644
index 0000000..3250523
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.ext
@@ -0,0 +1,38 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_159_n200#" 929 163.557 159 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 882 20.3377 63 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 882 20.3377 -129 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n221_n200#" 929 163.598 -221 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n288#" 837 126.676 15 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_222#" 837 143.434 111 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n288#" 837 143.688 -177 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_222#" 837 126.93 -81 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n323_n374#" 0 0 -323 -374 ppd 0 0 0 0 0 0 0 0 0 0 90168 5304 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90168 5304 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_63_n200#" "a_n33_n200#" 479.458
+cap "a_n129_n200#" "a_n221_n200#" 479.458
+cap "a_63_n200#" "a_159_n200#" 479.458
+cap "a_n33_n200#" "a_n81_222#" 6.25956
+cap "a_n33_n200#" "a_15_n288#" 6.25956
+cap "a_63_n200#" "a_15_n288#" 6.25956
+cap "a_n129_n200#" "a_n33_n200#" 479.458
+cap "a_63_n200#" "a_111_222#" 6.25956
+cap "a_n177_n288#" "a_n81_222#" 14.1667
+cap "a_159_n200#" "a_111_222#" 6.25956
+cap "a_15_n288#" "a_n81_222#" 14.1667
+cap "a_15_n288#" "a_n177_n288#" 28.5878
+cap "a_n129_n200#" "a_n81_222#" 6.25956
+cap "a_n129_n200#" "a_n177_n288#" 6.25956
+cap "a_111_222#" "a_n81_222#" 28.5878
+cap "a_n177_n288#" "a_n221_n200#" 6.25956
+cap "a_15_n288#" "a_111_222#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8 129 -200 130 -199 l=30 w=400 "a_n323_n374#" "a_111_222#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -200 34 -199 l=30 w=400 "a_n323_n374#" "a_15_n288#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -200 -62 -199 l=30 w=400 "a_n323_n374#" "a_n81_222#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -200 -158 -199 l=30 w=400 "a_n323_n374#" "a_n177_n288#" 60 0 "a_n221_n200#" 400 0 "a_n129_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.mag
new file mode 100644
index 0000000..5f6fcc9
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_82JNGJ.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< error_p >>
+rect -77 272 -19 278
+rect 115 272 173 278
+rect -77 238 -65 272
+rect 115 238 127 272
+rect -77 232 -19 238
+rect 115 232 173 238
+rect -173 -238 -115 -232
+rect 19 -238 77 -232
+rect -173 -272 -161 -238
+rect 19 -272 31 -238
+rect -173 -278 -115 -272
+rect 19 -278 77 -272
+<< pwell >>
+rect -359 -410 359 410
+<< nmos >>
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+<< ndiff >>
+rect -221 188 -159 200
+rect -221 -188 -209 188
+rect -175 -188 -159 188
+rect -221 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 221 200
+rect 159 -188 175 188
+rect 209 -188 221 188
+rect 159 -200 221 -188
+<< ndiffc >>
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+<< psubdiff >>
+rect -323 340 -227 374
+rect 227 340 323 374
+rect -323 278 -289 340
+rect 289 278 323 340
+rect -323 -340 -289 -278
+rect 289 -340 323 -278
+rect -323 -374 -227 -340
+rect 227 -374 323 -340
+<< psubdiffcont >>
+rect -227 340 227 374
+rect -323 -278 -289 278
+rect 289 -278 323 278
+rect -227 -374 227 -340
+<< poly >>
+rect -81 272 -15 288
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect -159 200 -129 226
+rect -81 222 -15 238
+rect 111 272 177 288
+rect 111 238 127 272
+rect 161 238 177 272
+rect -63 200 -33 222
+rect 33 200 63 226
+rect 111 222 177 238
+rect 129 200 159 222
+rect -159 -222 -129 -200
+rect -177 -238 -111 -222
+rect -63 -226 -33 -200
+rect 33 -222 63 -200
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect -177 -288 -111 -272
+rect 15 -238 81 -222
+rect 129 -226 159 -200
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 15 -288 81 -272
+<< polycont >>
+rect -65 238 -31 272
+rect 127 238 161 272
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+<< locali >>
+rect -323 340 -227 374
+rect 227 340 323 374
+rect -323 278 -289 340
+rect 289 278 323 340
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect 111 238 127 272
+rect 161 238 177 272
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect -323 -340 -289 -278
+rect 289 -340 323 -278
+rect -323 -374 -227 -340
+rect 227 -374 323 -340
+<< viali >>
+rect -65 238 -31 272
+rect 127 238 161 272
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+<< metal1 >>
+rect -77 272 -19 278
+rect -77 238 -65 272
+rect -31 238 -19 272
+rect -77 232 -19 238
+rect 115 272 173 278
+rect 115 238 127 272
+rect 161 238 173 272
+rect 115 232 173 238
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect -173 -238 -115 -232
+rect -173 -272 -161 -238
+rect -127 -272 -115 -238
+rect -173 -278 -115 -272
+rect 19 -238 77 -232
+rect 19 -272 31 -238
+rect 65 -272 77 -238
+rect 19 -278 77 -272
+<< properties >>
+string FIXED_BBOX -306 -357 306 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.ext
new file mode 100644
index 0000000..57af77b
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.ext
@@ -0,0 +1,95 @@
+timestamp 1653901926
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_207_n509#" 929 155.176 207 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n509#" 882 12.2058 111 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n509#" 882 12.2058 15 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n509#" 882 12.2058 -81 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n509#" 882 12.2058 -177 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n269_n509#" 929 155.176 -269 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n597#" 837 133.292 159 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n597#" 837 96.6422 -33 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n87#" 837 82.0127 63 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n597#" 837 133.546 -225 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n87#" 837 82.2668 -129 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 929 155.264 207 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_109#" 882 12.4348 111 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_109#" 882 12.4348 15 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_109#" 882 12.4348 -81 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_109#" 882 12.4348 -177 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n269_109#" 929 155.264 -269 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_21#" 837 82.2192 63 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_531#" 837 133.292 159 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_21#" 837 82.4733 -129 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_531#" 837 96.6422 -33 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_531#" 837 133.546 -225 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n371_n683#" 0 0 -371 -683 ppd 0 0 0 0 0 0 0 0 0 0 138720 8160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 138720 8160 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_531#" "a_n33_n597#" 6.73951
+cap "a_111_109#" "a_111_n509#" 12.3196
+cap "a_n129_n87#" "a_n33_n597#" 14.1667
+cap "a_n33_531#" "a_n225_531#" 28.5878
+cap "a_15_n509#" "a_111_n509#" 479.458
+cap "a_15_n509#" "a_63_n87#" 6.25956
+cap "a_207_109#" "a_207_n509#" 12.3196
+cap "a_63_21#" "a_63_n87#" 86.2066
+cap "a_159_531#" "a_159_n597#" 6.73951
+cap "a_n81_109#" "a_n129_21#" 6.25956
+cap "a_n81_109#" "a_n81_n509#" 12.3196
+cap "a_63_21#" "a_n33_531#" 14.1667
+cap "a_15_n509#" "a_n33_n597#" 6.25956
+cap "a_n129_n87#" "a_n225_n597#" 14.1667
+cap "a_n177_n509#" "a_n177_109#" 12.3196
+cap "a_n225_n597#" "a_n33_n597#" 28.5878
+cap "a_n225_n597#" "a_n225_531#" 6.73951
+cap "a_159_531#" "a_n33_531#" 28.5878
+cap "a_n129_21#" "a_n177_109#" 6.25956
+cap "a_15_109#" "a_n81_109#" 479.458
+cap "a_n269_109#" "a_n177_109#" 479.458
+cap "a_n177_n509#" "a_n129_n87#" 6.25956
+cap "a_111_109#" "a_63_21#" 6.25956
+cap "a_n33_531#" "a_n129_21#" 14.1667
+cap "a_n129_n87#" "a_n129_21#" 86.2066
+cap "a_n129_n87#" "a_n81_n509#" 6.25956
+cap "a_n269_n509#" "a_n225_n597#" 6.25956
+cap "a_207_109#" "a_111_109#" 479.458
+cap "a_111_109#" "a_159_531#" 6.25956
+cap "a_n81_n509#" "a_n33_n597#" 6.25956
+cap "a_n129_21#" "a_n225_531#" 14.1667
+cap "a_n81_109#" "a_n177_109#" 479.458
+cap "a_n269_109#" "a_n225_531#" 6.25956
+cap "a_207_n509#" "a_159_n597#" 6.25956
+cap "a_111_n509#" "a_207_n509#" 479.458
+cap "a_159_531#" "a_63_21#" 14.1667
+cap "a_15_109#" "a_n33_531#" 6.25956
+cap "a_n177_n509#" "a_n269_n509#" 479.458
+cap "a_111_n509#" "a_159_n597#" 6.25956
+cap "a_n177_n509#" "a_n225_n597#" 6.25956
+cap "a_207_109#" "a_159_531#" 6.25956
+cap "a_111_n509#" "a_63_n87#" 6.25956
+cap "a_159_n597#" "a_63_n87#" 14.1667
+cap "a_n81_109#" "a_n33_531#" 6.25956
+cap "a_n81_n509#" "a_15_n509#" 479.458
+cap "a_63_21#" "a_n129_21#" 28.5878
+cap "a_n269_n509#" "a_n269_109#" 12.3196
+cap "a_15_109#" "a_111_109#" 479.458
+cap "a_n129_n87#" "a_63_n87#" 28.5878
+cap "a_n33_n597#" "a_159_n597#" 28.5878
+cap "a_15_109#" "a_15_n509#" 12.3196
+cap "a_n33_n597#" "a_63_n87#" 14.1667
+cap "a_15_109#" "a_63_21#" 6.25956
+cap "a_n177_n509#" "a_n81_n509#" 479.458
+cap "a_n177_109#" "a_n225_531#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8 177 -509 178 -508 l=30 w=400 "a_n371_n683#" "a_159_n597#" 60 0 "a_111_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 -509 82 -508 l=30 w=400 "a_n371_n683#" "a_63_n87#" 60 0 "a_15_n509#" 400 0 "a_111_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -509 -14 -508 l=30 w=400 "a_n371_n683#" "a_n33_n597#" 60 0 "a_n81_n509#" 400 0 "a_15_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -509 -110 -508 l=30 w=400 "a_n371_n683#" "a_n129_n87#" 60 0 "a_n177_n509#" 400 0 "a_n81_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -509 -206 -508 l=30 w=400 "a_n371_n683#" "a_n225_n597#" 60 0 "a_n269_n509#" 400 0 "a_n177_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 109 178 110 l=30 w=400 "a_n371_n683#" "a_159_531#" 60 0 "a_111_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 109 82 110 l=30 w=400 "a_n371_n683#" "a_63_21#" 60 0 "a_15_109#" 400 0 "a_111_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 109 -14 110 l=30 w=400 "a_n371_n683#" "a_n33_531#" 60 0 "a_n81_109#" 400 0 "a_15_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 109 -110 110 l=30 w=400 "a_n371_n683#" "a_n129_21#" 60 0 "a_n177_109#" 400 0 "a_n81_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 109 -206 110 l=30 w=400 "a_n371_n683#" "a_n225_531#" 60 0 "a_n269_109#" 400 0 "a_n177_109#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.mag
new file mode 100644
index 0000000..a479fe7
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_9A2JGL.mag
@@ -0,0 +1,367 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653901926
+<< error_p >>
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect -125 71 -67 77
+rect 67 71 125 77
+rect -125 37 -113 71
+rect 67 37 79 71
+rect -125 31 -67 37
+rect 67 31 125 37
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+<< pwell >>
+rect -407 -719 407 719
+<< nmos >>
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+<< ndiff >>
+rect -269 497 -207 509
+rect -269 121 -257 497
+rect -223 121 -207 497
+rect -269 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 269 509
+rect 207 121 223 497
+rect 257 121 269 497
+rect 207 109 269 121
+rect -269 -121 -207 -109
+rect -269 -497 -257 -121
+rect -223 -497 -207 -121
+rect -269 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 269 -109
+rect 207 -497 223 -121
+rect 257 -497 269 -121
+rect 207 -509 269 -497
+<< ndiffc >>
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+<< psubdiff >>
+rect -371 649 -275 683
+rect 275 649 371 683
+rect -371 587 -337 649
+rect 337 587 371 649
+rect -371 -649 -337 -587
+rect 337 -649 371 -587
+rect -371 -683 -275 -649
+rect 275 -683 371 -649
+<< psubdiffcont >>
+rect -275 649 275 683
+rect -371 -587 -337 587
+rect 337 -587 371 587
+rect -275 -683 275 -649
+<< poly >>
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 177 509 207 531
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect -207 -531 -177 -509
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+<< polycont >>
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect -113 37 -79 71
+rect 79 37 113 71
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+<< locali >>
+rect -371 649 -275 683
+rect 275 649 371 683
+rect -371 587 -337 649
+rect 337 587 371 649
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect -371 -649 -337 -587
+rect 337 -649 371 -587
+rect -371 -683 -275 -649
+rect 275 -683 371 -649
+<< viali >>
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect -113 37 -79 71
+rect 79 37 113 71
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+<< metal1 >>
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+<< properties >>
+string FIXED_BBOX -354 -666 354 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.ext
new file mode 100644
index 0000000..7bfc65e
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.ext
@@ -0,0 +1,18 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_129_n200#" 982 164.088 129 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.3577 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n200#" 982 164.088 -187 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n288#" 387 313.447 29 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n288#" 387 313.958 -129 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+substrate "a_n289_n374#" 0 0 -289 -374 ppd 0 0 0 0 0 0 0 0 0 0 85544 5032 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85544 5032 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n200#" "a_n187_n200#" 223.915
+cap "a_n29_n200#" "a_129_n200#" 223.915
+cap "a_29_n288#" "a_n129_n288#" 135.85
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=100 w=400 "a_n289_n374#" "a_29_n288#" 200 0 "a_n29_n200#" 400 0 "a_129_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -200 -128 -199 l=100 w=400 "a_n289_n374#" "a_n129_n288#" 200 0 "a_n187_n200#" 400 0 "a_n29_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.mag
new file mode 100644
index 0000000..fc74569
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_E6B2KN.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< pwell >>
+rect -325 -410 325 410
+<< nmos >>
+rect -129 -200 -29 200
+rect 29 -200 129 200
+<< ndiff >>
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+<< ndiffc >>
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+<< psubdiff >>
+rect -289 340 -193 374
+rect 193 340 289 374
+rect -289 278 -255 340
+rect 255 278 289 340
+rect -289 -340 -255 -278
+rect 255 -340 289 -278
+rect -289 -374 -193 -340
+rect 193 -374 289 -340
+<< psubdiffcont >>
+rect -193 340 193 374
+rect -289 -278 -255 278
+rect 255 -278 289 278
+rect -193 -374 193 -340
+<< poly >>
+rect -129 272 -29 288
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect -129 200 -29 238
+rect 29 272 129 288
+rect 29 238 45 272
+rect 113 238 129 272
+rect 29 200 129 238
+rect -129 -238 -29 -200
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect -129 -288 -29 -272
+rect 29 -238 129 -200
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 29 -288 129 -272
+<< polycont >>
+rect -113 238 -45 272
+rect 45 238 113 272
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+<< locali >>
+rect -289 340 -193 374
+rect 193 340 289 374
+rect -289 278 -255 340
+rect 255 278 289 340
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 113 238 129 272
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect -289 -340 -255 -278
+rect 255 -340 289 -278
+rect -289 -374 -193 -340
+rect 193 -374 289 -340
+<< viali >>
+rect -113 238 -45 272
+rect 45 238 113 272
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+<< metal1 >>
+rect -125 272 -33 278
+rect -125 238 -113 272
+rect -45 238 -33 272
+rect -125 232 -33 238
+rect 33 272 125 278
+rect 33 238 45 272
+rect 113 238 125 272
+rect 33 232 125 238
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect -125 -238 -33 -232
+rect -125 -272 -113 -238
+rect -45 -272 -33 -238
+rect -125 -278 -33 -272
+rect 33 -238 125 -232
+rect 33 -272 45 -238
+rect 113 -272 125 -238
+rect 33 -278 125 -272
+<< properties >>
+string FIXED_BBOX -272 -357 272 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.ext
new file mode 100644
index 0000000..84a9280
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.ext
@@ -0,0 +1,22 @@
+timestamp 1653925904
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_15_222#" "a_n81_n288#" 14.1667
+cap "a_n33_n200#" "a_n81_n288#" 6.25956
+cap "a_n125_n200#" "a_n81_n288#" 6.25956
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_n125_n200#" "a_n33_n200#" 479.458
+cap "a_15_222#" "a_63_n200#" 6.25956
+cap "a_63_n200#" "a_n33_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.mag
new file mode 100644
index 0000000..69564b3
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_LH2JGW.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmos >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.ext
new file mode 100644
index 0000000..8a8e247
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.ext
@@ -0,0 +1,13 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_50_n200#" 982 164.088 50 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n108_n200#" 982 164.088 -108 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n50_n288#" 387 375.347 -50 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+substrate "a_n210_n374#" 0 0 -210 -374 ppd 0 0 0 0 0 0 0 0 0 0 74800 4400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74800 4400 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n108_n200#" "a_50_n200#" 223.915
+device msubckt sky130_fd_pr__nfet_01v8 -50 -200 -49 -199 l=100 w=400 "a_n210_n374#" "a_n50_n288#" 200 0 "a_n108_n200#" 400 0 "a_50_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.mag
new file mode 100644
index 0000000..c8c7708
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_PJG2KG.mag
@@ -0,0 +1,90 @@
+magic
+tech sky130B
+timestamp 1653925904
+<< pwell >>
+rect -123 -205 123 205
+<< nmos >>
+rect -25 -100 25 100
+<< ndiff >>
+rect -54 94 -25 100
+rect -54 -94 -48 94
+rect -31 -94 -25 94
+rect -54 -100 -25 -94
+rect 25 94 54 100
+rect 25 -94 31 94
+rect 48 -94 54 94
+rect 25 -100 54 -94
+<< ndiffc >>
+rect -48 -94 -31 94
+rect 31 -94 48 94
+<< psubdiff >>
+rect -105 170 -57 187
+rect 57 170 105 187
+rect -105 139 -88 170
+rect 88 139 105 170
+rect -105 -170 -88 -139
+rect 88 -170 105 -139
+rect -105 -187 -57 -170
+rect 57 -187 105 -170
+<< psubdiffcont >>
+rect -57 170 57 187
+rect -105 -139 -88 139
+rect 88 -139 105 139
+rect -57 -187 57 -170
+<< poly >>
+rect -25 136 25 144
+rect -25 119 -17 136
+rect 17 119 25 136
+rect -25 100 25 119
+rect -25 -119 25 -100
+rect -25 -136 -17 -119
+rect 17 -136 25 -119
+rect -25 -144 25 -136
+<< polycont >>
+rect -17 119 17 136
+rect -17 -136 17 -119
+<< locali >>
+rect -105 170 -57 187
+rect 57 170 105 187
+rect -105 139 -88 170
+rect 88 139 105 170
+rect -25 119 -17 136
+rect 17 119 25 136
+rect -48 94 -31 102
+rect -48 -102 -31 -94
+rect 31 94 48 102
+rect 31 -102 48 -94
+rect -25 -136 -17 -119
+rect 17 -136 25 -119
+rect -105 -170 -88 -139
+rect 88 -170 105 -139
+rect -105 -187 -57 -170
+rect 57 -187 105 -170
+<< viali >>
+rect -17 119 17 136
+rect -48 -94 -31 94
+rect 31 -94 48 94
+rect -17 -136 17 -119
+<< metal1 >>
+rect -23 136 23 139
+rect -23 119 -17 136
+rect 17 119 23 136
+rect -23 116 23 119
+rect -51 94 -28 100
+rect -51 -94 -48 94
+rect -31 -94 -28 94
+rect -51 -100 -28 -94
+rect 28 94 51 100
+rect 28 -94 31 94
+rect 48 -94 51 94
+rect 28 -100 51 -94
+rect -23 -119 23 -116
+rect -23 -136 -17 -119
+rect 17 -136 23 -119
+rect -23 -139 23 -136
+<< properties >>
+string FIXED_BBOX -96 -178 96 178
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_YT8PGU.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_YT8PGU.mag
new file mode 100644
index 0000000..6efaf94
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_YT8PGU.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653383107
+<< error_p >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect -29 232 29 238
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect -29 -278 29 -272
+<< pwell >>
+rect -211 -410 211 410
+<< nmos >>
+rect -15 -200 15 200
+<< ndiff >>
+rect -73 188 -15 200
+rect -73 -188 -61 188
+rect -27 -188 -15 188
+rect -73 -200 -15 -188
+rect 15 188 73 200
+rect 15 -188 27 188
+rect 61 -188 73 188
+rect 15 -200 73 -188
+<< ndiffc >>
+rect -61 -188 -27 188
+rect 27 -188 61 188
+<< psubdiff >>
+rect -175 340 -79 374
+rect 79 340 175 374
+rect -175 278 -141 340
+rect 141 278 175 340
+rect -175 -340 -141 -278
+rect 141 -340 175 -278
+rect -175 -374 -79 -340
+rect 79 -374 175 -340
+<< psubdiffcont >>
+rect -79 340 79 374
+rect -175 -278 -141 278
+rect 141 -278 175 278
+rect -79 -374 79 -340
+<< poly >>
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -33 222 33 238
+rect -15 200 15 222
+rect -15 -222 15 -200
+rect -33 -238 33 -222
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+<< polycont >>
+rect -17 238 17 272
+rect -17 -272 17 -238
+<< locali >>
+rect -175 340 -79 374
+rect 79 340 175 374
+rect -175 278 -141 340
+rect 141 278 175 340
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -61 188 -27 204
+rect -61 -204 -27 -188
+rect 27 188 61 204
+rect 27 -204 61 -188
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -175 -340 -141 -278
+rect 141 -340 175 -278
+rect -175 -374 -79 -340
+rect 79 -374 175 -340
+<< viali >>
+rect -17 238 17 272
+rect -61 -188 -27 188
+rect 27 -188 61 188
+rect -17 -272 17 -238
+<< metal1 >>
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect -67 188 -21 200
+rect -67 -188 -61 188
+rect -27 -188 -21 188
+rect -67 -200 -21 -188
+rect 21 188 67 200
+rect 21 -188 27 188
+rect 61 -188 67 188
+rect 21 -200 67 -188
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+<< properties >>
+string FIXED_BBOX -158 -357 158 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git "a/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.ext" "b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.ext"
new file mode 100644
index 0000000..67b3877
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.ext"
@@ -0,0 +1,22 @@
+timestamp 1653899151
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n81_n288#" "a_n125_n200#" 6.25956
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_n33_n200#" "a_n125_n200#" 479.458
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_15_222#" "a_63_n200#" 6.25956
+cap "a_n81_n288#" "a_n33_n200#" 6.25956
+cap "a_n81_n288#" "a_15_222#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git "a/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.mag" "b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.mag"
new file mode 100644
index 0000000..7d0f06f
--- /dev/null
+++ "b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW\0430.mag"
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653899151
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmoslvt >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext
new file mode 100644
index 0000000..081456e
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.ext
@@ -0,0 +1,22 @@
+timestamp 1653899151
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n125_n200#" "a_n33_n200#" 479.458
+cap "a_n81_n288#" "a_n125_n200#" 6.25956
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_15_222#" "a_n81_n288#" 14.1667
+cap "a_n81_n288#" "a_n33_n200#" 6.25956
+cap "a_15_222#" "a_63_n200#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag
new file mode 100644
index 0000000..7d0f06f
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__nfet_01v8_lvt_LH2JGW.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653899151
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmoslvt >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_LXPKAY.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_LXPKAY.mag
new file mode 100644
index 0000000..0200218
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_LXPKAY.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653382327
+<< nwell >>
+rect -425 -419 425 419
+<< pmos >>
+rect -229 -200 -29 200
+rect 29 -200 229 200
+<< pdiff >>
+rect -287 188 -229 200
+rect -287 -188 -275 188
+rect -241 -188 -229 188
+rect -287 -200 -229 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 229 188 287 200
+rect 229 -188 241 188
+rect 275 -188 287 188
+rect 229 -200 287 -188
+<< pdiffc >>
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+<< nsubdiff >>
+rect -389 349 -293 383
+rect 293 349 389 383
+rect -389 287 -355 349
+rect 355 287 389 349
+rect -389 -349 -355 -287
+rect 355 -349 389 -287
+rect -389 -383 -293 -349
+rect 293 -383 389 -349
+<< nsubdiffcont >>
+rect -293 349 293 383
+rect -389 -287 -355 287
+rect 355 -287 389 287
+rect -293 -383 293 -349
+<< poly >>
+rect -229 281 -29 297
+rect -229 247 -213 281
+rect -45 247 -29 281
+rect -229 200 -29 247
+rect 29 281 229 297
+rect 29 247 45 281
+rect 213 247 229 281
+rect 29 200 229 247
+rect -229 -247 -29 -200
+rect -229 -281 -213 -247
+rect -45 -281 -29 -247
+rect -229 -297 -29 -281
+rect 29 -247 229 -200
+rect 29 -281 45 -247
+rect 213 -281 229 -247
+rect 29 -297 229 -281
+<< polycont >>
+rect -213 247 -45 281
+rect 45 247 213 281
+rect -213 -281 -45 -247
+rect 45 -281 213 -247
+<< locali >>
+rect -389 349 -293 383
+rect 293 349 389 383
+rect -389 287 -355 349
+rect 355 287 389 349
+rect -229 247 -213 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 213 247 229 281
+rect -275 188 -241 204
+rect -275 -204 -241 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 241 188 275 204
+rect 241 -204 275 -188
+rect -229 -281 -213 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 213 -281 229 -247
+rect -389 -349 -355 -287
+rect 355 -349 389 -287
+rect -389 -383 -293 -349
+rect 293 -383 389 -349
+<< viali >>
+rect -213 247 -45 281
+rect 45 247 213 281
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+rect -213 -281 -45 -247
+rect 45 -281 213 -247
+<< metal1 >>
+rect -225 281 -33 287
+rect -225 247 -213 281
+rect -45 247 -33 281
+rect -225 241 -33 247
+rect 33 281 225 287
+rect 33 247 45 281
+rect 213 247 225 281
+rect 33 241 225 247
+rect -281 188 -235 200
+rect -281 -188 -275 188
+rect -241 -188 -235 188
+rect -281 -200 -235 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 235 188 281 200
+rect 235 -188 241 188
+rect 275 -188 281 188
+rect 235 -200 281 -188
+rect -225 -247 -33 -241
+rect -225 -281 -213 -247
+rect -45 -281 -33 -247
+rect -225 -287 -33 -281
+rect 33 -247 225 -241
+rect 33 -281 45 -247
+rect 213 -281 225 -247
+rect 33 -287 225 -281
+<< properties >>
+string FIXED_BBOX -372 -366 372 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 1 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.ext
new file mode 100644
index 0000000..8e275e9
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.ext
@@ -0,0 +1,24 @@
+timestamp 1653409082
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_129_n200#" 1513 0 129 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n200#" 1513 0 -187 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n297#" 395 0 29 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n297#" 395 0 -129 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "w_n325_n419#" 10925 1634.1 -325 -419 nw 0 0 0 0 544700 2976 0 0 86768 5104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86768 5104 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n325_n419#" "a_129_n200#" 163.34
+cap "a_n187_n200#" "a_n29_n200#" 223.915
+cap "a_n129_n297#" "w_n325_n419#" 272.372
+cap "w_n325_n419#" "a_29_n297#" 271.861
+cap "a_n29_n200#" "w_n325_n419#" 20.6099
+cap "a_n187_n200#" "w_n325_n419#" 163.34
+cap "a_n29_n200#" "a_129_n200#" 223.915
+cap "a_n129_n297#" "a_29_n297#" 141.126
+device msubckt sky130_fd_pr__pfet_01v8 29 -200 30 -199 l=100 w=400 "w_n325_n419#" "a_29_n297#" 200 0 "a_n29_n200#" 400 0 "a_129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -129 -200 -128 -199 l=100 w=400 "w_n325_n419#" "a_n129_n297#" 200 0 "a_n187_n200#" 400 0 "a_n29_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.mag
new file mode 100644
index 0000000..a49e7a6
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_PD4XN5.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653409082
+<< nwell >>
+rect -325 -419 325 419
+<< pmos >>
+rect -129 -200 -29 200
+rect 29 -200 129 200
+<< pdiff >>
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+<< pdiffc >>
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+<< nsubdiff >>
+rect -289 349 -193 383
+rect 193 349 289 383
+rect -289 287 -255 349
+rect 255 287 289 349
+rect -289 -349 -255 -287
+rect 255 -349 289 -287
+rect -289 -383 -193 -349
+rect 193 -383 289 -349
+<< nsubdiffcont >>
+rect -193 349 193 383
+rect -289 -287 -255 287
+rect 255 -287 289 287
+rect -193 -383 193 -349
+<< poly >>
+rect -129 281 -29 297
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect -129 200 -29 247
+rect 29 281 129 297
+rect 29 247 45 281
+rect 113 247 129 281
+rect 29 200 129 247
+rect -129 -247 -29 -200
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect -129 -297 -29 -281
+rect 29 -247 129 -200
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect 29 -297 129 -281
+<< polycont >>
+rect -113 247 -45 281
+rect 45 247 113 281
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+<< locali >>
+rect -289 349 -193 383
+rect 193 349 289 383
+rect -289 287 -255 349
+rect 255 287 289 349
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 113 247 129 281
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect -289 -349 -255 -287
+rect 255 -349 289 -287
+rect -289 -383 -193 -349
+rect 193 -383 289 -349
+<< viali >>
+rect -113 247 -45 281
+rect 45 247 113 281
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+<< metal1 >>
+rect -125 281 -33 287
+rect -125 247 -113 281
+rect -45 247 -33 281
+rect -125 241 -33 247
+rect 33 281 125 287
+rect 33 247 45 281
+rect 113 247 125 281
+rect 33 241 125 247
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect -125 -247 -33 -241
+rect -125 -281 -113 -247
+rect -45 -281 -33 -247
+rect -125 -287 -33 -281
+rect 33 -247 125 -241
+rect 33 -281 45 -247
+rect 113 -281 125 -247
+rect 33 -287 125 -281
+<< properties >>
+string FIXED_BBOX -272 -366 272 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.ext
new file mode 100644
index 0000000..4f65f31
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.ext
@@ -0,0 +1,48 @@
+timestamp 1653925904
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_159_n200#" 1426 0 159 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 1349 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 1349 0 -129 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n221_n200#" 1426 0 -221 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n297#" 851 0 15 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n297#" 851 0 -177 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_231#" 851 0 111 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_231#" 851 0 -81 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n359_n419#" 11340 1805.05 -359 -419 nw 0 0 0 0 601684 3112 0 0 91392 5376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91392 5376 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_15_n297#" "a_111_231#" 13.3939
+cap "w_n359_n419#" "a_111_231#" 130.841
+cap "a_159_n200#" "a_111_231#" 4.90233
+cap "a_n221_n200#" "a_n177_n297#" 4.90233
+cap "a_n221_n200#" "w_n359_n419#" 162.854
+cap "a_n81_231#" "a_n33_n200#" 4.90233
+cap "a_n33_n200#" "a_n129_n200#" 479.458
+cap "a_n81_231#" "a_n177_n297#" 13.3939
+cap "a_n177_n297#" "a_n129_n200#" 4.90233
+cap "a_n81_231#" "a_15_n297#" 13.3939
+cap "a_n81_231#" "w_n359_n419#" 114.376
+cap "w_n359_n419#" "a_n129_n200#" 19.5971
+cap "a_n81_231#" "a_111_231#" 29.6522
+cap "a_n221_n200#" "a_n129_n200#" 479.458
+cap "a_63_n200#" "a_n33_n200#" 479.458
+cap "a_63_n200#" "a_15_n297#" 4.90233
+cap "w_n359_n419#" "a_63_n200#" 19.5971
+cap "a_n81_231#" "a_n129_n200#" 4.90233
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_15_n297#" "a_n33_n200#" 4.90233
+cap "w_n359_n419#" "a_n33_n200#" 19.5971
+cap "a_n177_n297#" "a_15_n297#" 29.6522
+cap "w_n359_n419#" "a_n177_n297#" 131.095
+cap "w_n359_n419#" "a_15_n297#" 114.122
+cap "a_63_n200#" "a_111_231#" 4.90233
+cap "a_159_n200#" "w_n359_n419#" 162.813
+device msubckt sky130_fd_pr__pfet_01v8 129 -200 130 -199 l=30 w=400 "w_n359_n419#" "a_111_231#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n359_n419#" "a_15_n297#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n359_n419#" "a_n81_231#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -200 -158 -199 l=30 w=400 "w_n359_n419#" "a_n177_n297#" 60 0 "a_n221_n200#" 400 0 "a_n129_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.mag
new file mode 100644
index 0000000..8aae9b0
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_U47ZGH.mag
@@ -0,0 +1,175 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< error_p >>
+rect -77 281 -19 287
+rect 115 281 173 287
+rect -77 247 -65 281
+rect 115 247 127 281
+rect -77 241 -19 247
+rect 115 241 173 247
+rect -173 -247 -115 -241
+rect 19 -247 77 -241
+rect -173 -281 -161 -247
+rect 19 -281 31 -247
+rect -173 -287 -115 -281
+rect 19 -287 77 -281
+<< nwell >>
+rect -359 -419 359 419
+<< pmos >>
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+<< pdiff >>
+rect -221 188 -159 200
+rect -221 -188 -209 188
+rect -175 -188 -159 188
+rect -221 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 221 200
+rect 159 -188 175 188
+rect 209 -188 221 188
+rect 159 -200 221 -188
+<< pdiffc >>
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+<< nsubdiff >>
+rect -323 349 -227 383
+rect 227 349 323 383
+rect -323 287 -289 349
+rect 289 287 323 349
+rect -323 -349 -289 -287
+rect 289 -349 323 -287
+rect -323 -383 -227 -349
+rect 227 -383 323 -349
+<< nsubdiffcont >>
+rect -227 349 227 383
+rect -323 -287 -289 287
+rect 289 -287 323 287
+rect -227 -383 227 -349
+<< poly >>
+rect -81 281 -15 297
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect -81 231 -15 247
+rect 111 281 177 297
+rect 111 247 127 281
+rect 161 247 177 281
+rect 111 231 177 247
+rect -159 200 -129 226
+rect -63 200 -33 231
+rect 33 200 63 226
+rect 129 200 159 231
+rect -159 -231 -129 -200
+rect -63 -226 -33 -200
+rect 33 -231 63 -200
+rect 129 -226 159 -200
+rect -177 -247 -111 -231
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect -177 -297 -111 -281
+rect 15 -247 81 -231
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 15 -297 81 -281
+<< polycont >>
+rect -65 247 -31 281
+rect 127 247 161 281
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+<< locali >>
+rect -323 349 -227 383
+rect 227 349 323 383
+rect -323 287 -289 349
+rect 289 287 323 349
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect 111 247 127 281
+rect 161 247 177 281
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect -323 -349 -289 -287
+rect 289 -349 323 -287
+rect -323 -383 -227 -349
+rect 227 -383 323 -349
+<< viali >>
+rect -65 247 -31 281
+rect 127 247 161 281
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+<< metal1 >>
+rect -77 281 -19 287
+rect -77 247 -65 281
+rect -31 247 -19 281
+rect -77 241 -19 247
+rect 115 281 173 287
+rect 115 247 127 281
+rect 161 247 173 281
+rect 115 241 173 247
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect -173 -247 -115 -241
+rect -173 -281 -161 -247
+rect -127 -281 -115 -247
+rect -173 -287 -115 -281
+rect 19 -247 77 -241
+rect 19 -281 31 -247
+rect 65 -281 77 -247
+rect 19 -287 77 -281
+<< properties >>
+string FIXED_BBOX -306 -366 306 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.ext
new file mode 100644
index 0000000..71abacd
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.ext
@@ -0,0 +1,88 @@
+timestamp 1653409082
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_351_n200#" 1426 0 351 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n200#" 1349 0 255 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n200#" 1349 0 159 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 1349 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 1349 0 -129 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 1349 0 -225 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n200#" 1349 0 -321 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_n200#" 1426 0 -413 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n297#" 851 0 207 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n297#" 851 0 15 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n297#" 851 0 -177 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n297#" 851 0 -369 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_231#" 851 0 303 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_231#" 851 0 111 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_231#" 851 0 -81 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_231#" 851 0 -273 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n551_n419#" 14481 2770.43 -551 -419 nw 0 0 0 0 923476 3880 0 0 117504 6912 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117504 6912 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n273_231#" "a_n225_n200#" 4.90233
+cap "a_255_n200#" "a_159_n200#" 479.458
+cap "a_n81_231#" "a_n177_n297#" 13.3939
+cap "w_n551_n419#" "a_n369_n297#" 131.095
+cap "a_111_231#" "a_303_231#" 29.6522
+cap "a_207_n297#" "a_111_231#" 13.3939
+cap "a_n273_231#" "a_n321_n200#" 4.90233
+cap "w_n551_n419#" "a_303_231#" 130.841
+cap "w_n551_n419#" "a_207_n297#" 114.122
+cap "w_n551_n419#" "a_n129_n200#" 19.5971
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n225_n200#" "a_n177_n297#" 4.90233
+cap "a_15_n297#" "a_n81_231#" 13.3939
+cap "a_15_n297#" "a_n177_n297#" 29.6522
+cap "a_n33_n200#" "w_n551_n419#" 19.5971
+cap "w_n551_n419#" "a_255_n200#" 19.5971
+cap "a_n273_231#" "a_n369_n297#" 13.3939
+cap "a_351_n200#" "a_303_231#" 4.90233
+cap "a_n321_n200#" "a_n225_n200#" 479.458
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_n369_n297#" "a_n177_n297#" 29.6522
+cap "a_159_n200#" "a_111_231#" 4.90233
+cap "w_n551_n419#" "a_159_n200#" 19.5971
+cap "a_n321_n200#" "a_n413_n200#" 479.458
+cap "a_351_n200#" "a_255_n200#" 479.458
+cap "a_n129_n200#" "a_n81_231#" 4.90233
+cap "a_n129_n200#" "a_n177_n297#" 4.90233
+cap "a_63_n200#" "a_111_231#" 4.90233
+cap "a_n33_n200#" "a_n81_231#" 4.90233
+cap "w_n551_n419#" "a_63_n200#" 19.5971
+cap "a_n321_n200#" "a_n369_n297#" 4.90233
+cap "a_n129_n200#" "a_n225_n200#" 479.458
+cap "a_207_n297#" "a_15_n297#" 29.6522
+cap "a_n413_n200#" "a_n369_n297#" 4.90233
+cap "w_n551_n419#" "a_111_231#" 92.0984
+cap "a_n33_n200#" "a_15_n297#" 4.90233
+cap "a_n273_231#" "w_n551_n419#" 114.376
+cap "a_351_n200#" "w_n551_n419#" 162.813
+cap "a_207_n297#" "a_303_231#" 13.3939
+cap "a_n81_231#" "a_111_231#" 29.6522
+cap "w_n551_n419#" "a_n81_231#" 92.0984
+cap "w_n551_n419#" "a_n177_n297#" 92.0984
+cap "a_n33_n200#" "a_n129_n200#" 479.458
+cap "a_255_n200#" "a_303_231#" 4.90233
+cap "a_255_n200#" "a_207_n297#" 4.90233
+cap "a_15_n297#" "a_63_n200#" 4.90233
+cap "w_n551_n419#" "a_n225_n200#" 19.5971
+cap "a_15_n297#" "a_111_231#" 13.3939
+cap "w_n551_n419#" "a_15_n297#" 92.0984
+cap "w_n551_n419#" "a_n321_n200#" 19.5971
+cap "w_n551_n419#" "a_n413_n200#" 162.854
+cap "a_207_n297#" "a_159_n200#" 4.90233
+cap "a_n273_231#" "a_n81_231#" 29.6522
+cap "a_n273_231#" "a_n177_n297#" 13.3939
+device msubckt sky130_fd_pr__pfet_01v8 321 -200 322 -199 l=30 w=400 "w_n551_n419#" "a_303_231#" 60 0 "a_255_n200#" 400 0 "a_351_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -200 226 -199 l=30 w=400 "w_n551_n419#" "a_207_n297#" 60 0 "a_159_n200#" 400 0 "a_255_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -200 130 -199 l=30 w=400 "w_n551_n419#" "a_111_231#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n551_n419#" "a_15_n297#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n551_n419#" "a_n81_231#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -200 -158 -199 l=30 w=400 "w_n551_n419#" "a_n177_n297#" 60 0 "a_n225_n200#" 400 0 "a_n129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -200 -254 -199 l=30 w=400 "w_n551_n419#" "a_n273_231#" 60 0 "a_n321_n200#" 400 0 "a_n225_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -200 -350 -199 l=30 w=400 "w_n551_n419#" "a_n369_n297#" 60 0 "a_n413_n200#" 400 0 "a_n321_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.mag
new file mode 100644
index 0000000..9728697
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_U4PWGH.mag
@@ -0,0 +1,295 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653409082
+<< error_p >>
+rect -269 281 -211 287
+rect -77 281 -19 287
+rect 115 281 173 287
+rect 307 281 365 287
+rect -269 247 -257 281
+rect -77 247 -65 281
+rect 115 247 127 281
+rect 307 247 319 281
+rect -269 241 -211 247
+rect -77 241 -19 247
+rect 115 241 173 247
+rect 307 241 365 247
+rect -365 -247 -307 -241
+rect -173 -247 -115 -241
+rect 19 -247 77 -241
+rect 211 -247 269 -241
+rect -365 -281 -353 -247
+rect -173 -281 -161 -247
+rect 19 -281 31 -247
+rect 211 -281 223 -247
+rect -365 -287 -307 -281
+rect -173 -287 -115 -281
+rect 19 -287 77 -281
+rect 211 -287 269 -281
+<< nwell >>
+rect -551 -419 551 419
+<< pmos >>
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+<< pdiff >>
+rect -413 188 -351 200
+rect -413 -188 -401 188
+rect -367 -188 -351 188
+rect -413 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 413 200
+rect 351 -188 367 188
+rect 401 -188 413 188
+rect 351 -200 413 -188
+<< pdiffc >>
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+<< nsubdiff >>
+rect -515 349 -419 383
+rect 419 349 515 383
+rect -515 287 -481 349
+rect 481 287 515 349
+rect -515 -349 -481 -287
+rect 481 -349 515 -287
+rect -515 -383 -419 -349
+rect 419 -383 515 -349
+<< nsubdiffcont >>
+rect -419 349 419 383
+rect -515 -287 -481 287
+rect 481 -287 515 287
+rect -419 -383 419 -349
+<< poly >>
+rect -273 281 -207 297
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -273 231 -207 247
+rect -81 281 -15 297
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect -81 231 -15 247
+rect 111 281 177 297
+rect 111 247 127 281
+rect 161 247 177 281
+rect 111 231 177 247
+rect 303 281 369 297
+rect 303 247 319 281
+rect 353 247 369 281
+rect 303 231 369 247
+rect -351 200 -321 226
+rect -255 200 -225 231
+rect -159 200 -129 226
+rect -63 200 -33 231
+rect 33 200 63 226
+rect 129 200 159 231
+rect 225 200 255 226
+rect 321 200 351 231
+rect -351 -231 -321 -200
+rect -255 -226 -225 -200
+rect -159 -231 -129 -200
+rect -63 -226 -33 -200
+rect 33 -231 63 -200
+rect 129 -226 159 -200
+rect 225 -231 255 -200
+rect 321 -226 351 -200
+rect -369 -247 -303 -231
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -369 -297 -303 -281
+rect -177 -247 -111 -231
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect -177 -297 -111 -281
+rect 15 -247 81 -231
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 15 -297 81 -281
+rect 207 -247 273 -231
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect 207 -297 273 -281
+<< polycont >>
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+<< locali >>
+rect -515 349 -419 383
+rect 419 349 515 383
+rect -515 287 -481 349
+rect 481 287 515 349
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect 111 247 127 281
+rect 161 247 177 281
+rect 303 247 319 281
+rect 353 247 369 281
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect -515 -349 -481 -287
+rect 481 -349 515 -287
+rect -515 -383 -419 -349
+rect 419 -383 515 -349
+<< viali >>
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+<< metal1 >>
+rect -269 281 -211 287
+rect -269 247 -257 281
+rect -223 247 -211 281
+rect -269 241 -211 247
+rect -77 281 -19 287
+rect -77 247 -65 281
+rect -31 247 -19 281
+rect -77 241 -19 247
+rect 115 281 173 287
+rect 115 247 127 281
+rect 161 247 173 281
+rect 115 241 173 247
+rect 307 281 365 287
+rect 307 247 319 281
+rect 353 247 365 281
+rect 307 241 365 247
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect -365 -247 -307 -241
+rect -365 -281 -353 -247
+rect -319 -281 -307 -247
+rect -365 -287 -307 -281
+rect -173 -247 -115 -241
+rect -173 -281 -161 -247
+rect -127 -281 -115 -247
+rect -173 -287 -115 -281
+rect 19 -247 77 -241
+rect 19 -281 31 -247
+rect 65 -281 77 -247
+rect 19 -287 77 -281
+rect 211 -247 269 -241
+rect 211 -281 223 -247
+rect 257 -281 269 -247
+rect 211 -287 269 -281
+<< properties >>
+string FIXED_BBOX -498 -366 498 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 1 nf 8 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_U4T2JH.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_U4T2JH.mag
new file mode 100644
index 0000000..42ba430
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_U4T2JH.mag
@@ -0,0 +1,691 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653901926
+<< error_p >>
+rect -221 1235 -163 1241
+rect -29 1235 29 1241
+rect 163 1235 221 1241
+rect -221 1201 -209 1235
+rect -29 1201 -17 1235
+rect 163 1201 175 1235
+rect -221 1195 -163 1201
+rect -29 1195 29 1201
+rect 163 1195 221 1201
+rect -125 707 -67 713
+rect 67 707 125 713
+rect -125 673 -113 707
+rect 67 673 79 707
+rect -125 667 -67 673
+rect 67 667 125 673
+rect -125 599 -67 605
+rect 67 599 125 605
+rect -125 565 -113 599
+rect 67 565 79 599
+rect -125 559 -67 565
+rect 67 559 125 565
+rect -221 71 -163 77
+rect -29 71 29 77
+rect 163 71 221 77
+rect -221 37 -209 71
+rect -29 37 -17 71
+rect 163 37 175 71
+rect -221 31 -163 37
+rect -29 31 29 37
+rect 163 31 221 37
+rect -221 -37 -163 -31
+rect -29 -37 29 -31
+rect 163 -37 221 -31
+rect -221 -71 -209 -37
+rect -29 -71 -17 -37
+rect 163 -71 175 -37
+rect -221 -77 -163 -71
+rect -29 -77 29 -71
+rect 163 -77 221 -71
+rect -125 -565 -67 -559
+rect 67 -565 125 -559
+rect -125 -599 -113 -565
+rect 67 -599 79 -565
+rect -125 -605 -67 -599
+rect 67 -605 125 -599
+rect -125 -673 -67 -667
+rect 67 -673 125 -667
+rect -125 -707 -113 -673
+rect 67 -707 79 -673
+rect -125 -713 -67 -707
+rect 67 -713 125 -707
+rect -221 -1201 -163 -1195
+rect -29 -1201 29 -1195
+rect 163 -1201 221 -1195
+rect -221 -1235 -209 -1201
+rect -29 -1235 -17 -1201
+rect 163 -1235 175 -1201
+rect -221 -1241 -163 -1235
+rect -29 -1241 29 -1235
+rect 163 -1241 221 -1235
+<< nwell >>
+rect -407 -1373 407 1373
+<< pmos >>
+rect -207 754 -177 1154
+rect -111 754 -81 1154
+rect -15 754 15 1154
+rect 81 754 111 1154
+rect 177 754 207 1154
+rect -207 118 -177 518
+rect -111 118 -81 518
+rect -15 118 15 518
+rect 81 118 111 518
+rect 177 118 207 518
+rect -207 -518 -177 -118
+rect -111 -518 -81 -118
+rect -15 -518 15 -118
+rect 81 -518 111 -118
+rect 177 -518 207 -118
+rect -207 -1154 -177 -754
+rect -111 -1154 -81 -754
+rect -15 -1154 15 -754
+rect 81 -1154 111 -754
+rect 177 -1154 207 -754
+<< pdiff >>
+rect -269 1142 -207 1154
+rect -269 766 -257 1142
+rect -223 766 -207 1142
+rect -269 754 -207 766
+rect -177 1142 -111 1154
+rect -177 766 -161 1142
+rect -127 766 -111 1142
+rect -177 754 -111 766
+rect -81 1142 -15 1154
+rect -81 766 -65 1142
+rect -31 766 -15 1142
+rect -81 754 -15 766
+rect 15 1142 81 1154
+rect 15 766 31 1142
+rect 65 766 81 1142
+rect 15 754 81 766
+rect 111 1142 177 1154
+rect 111 766 127 1142
+rect 161 766 177 1142
+rect 111 754 177 766
+rect 207 1142 269 1154
+rect 207 766 223 1142
+rect 257 766 269 1142
+rect 207 754 269 766
+rect -269 506 -207 518
+rect -269 130 -257 506
+rect -223 130 -207 506
+rect -269 118 -207 130
+rect -177 506 -111 518
+rect -177 130 -161 506
+rect -127 130 -111 506
+rect -177 118 -111 130
+rect -81 506 -15 518
+rect -81 130 -65 506
+rect -31 130 -15 506
+rect -81 118 -15 130
+rect 15 506 81 518
+rect 15 130 31 506
+rect 65 130 81 506
+rect 15 118 81 130
+rect 111 506 177 518
+rect 111 130 127 506
+rect 161 130 177 506
+rect 111 118 177 130
+rect 207 506 269 518
+rect 207 130 223 506
+rect 257 130 269 506
+rect 207 118 269 130
+rect -269 -130 -207 -118
+rect -269 -506 -257 -130
+rect -223 -506 -207 -130
+rect -269 -518 -207 -506
+rect -177 -130 -111 -118
+rect -177 -506 -161 -130
+rect -127 -506 -111 -130
+rect -177 -518 -111 -506
+rect -81 -130 -15 -118
+rect -81 -506 -65 -130
+rect -31 -506 -15 -130
+rect -81 -518 -15 -506
+rect 15 -130 81 -118
+rect 15 -506 31 -130
+rect 65 -506 81 -130
+rect 15 -518 81 -506
+rect 111 -130 177 -118
+rect 111 -506 127 -130
+rect 161 -506 177 -130
+rect 111 -518 177 -506
+rect 207 -130 269 -118
+rect 207 -506 223 -130
+rect 257 -506 269 -130
+rect 207 -518 269 -506
+rect -269 -766 -207 -754
+rect -269 -1142 -257 -766
+rect -223 -1142 -207 -766
+rect -269 -1154 -207 -1142
+rect -177 -766 -111 -754
+rect -177 -1142 -161 -766
+rect -127 -1142 -111 -766
+rect -177 -1154 -111 -1142
+rect -81 -766 -15 -754
+rect -81 -1142 -65 -766
+rect -31 -1142 -15 -766
+rect -81 -1154 -15 -1142
+rect 15 -766 81 -754
+rect 15 -1142 31 -766
+rect 65 -1142 81 -766
+rect 15 -1154 81 -1142
+rect 111 -766 177 -754
+rect 111 -1142 127 -766
+rect 161 -1142 177 -766
+rect 111 -1154 177 -1142
+rect 207 -766 269 -754
+rect 207 -1142 223 -766
+rect 257 -1142 269 -766
+rect 207 -1154 269 -1142
+<< pdiffc >>
+rect -257 766 -223 1142
+rect -161 766 -127 1142
+rect -65 766 -31 1142
+rect 31 766 65 1142
+rect 127 766 161 1142
+rect 223 766 257 1142
+rect -257 130 -223 506
+rect -161 130 -127 506
+rect -65 130 -31 506
+rect 31 130 65 506
+rect 127 130 161 506
+rect 223 130 257 506
+rect -257 -506 -223 -130
+rect -161 -506 -127 -130
+rect -65 -506 -31 -130
+rect 31 -506 65 -130
+rect 127 -506 161 -130
+rect 223 -506 257 -130
+rect -257 -1142 -223 -766
+rect -161 -1142 -127 -766
+rect -65 -1142 -31 -766
+rect 31 -1142 65 -766
+rect 127 -1142 161 -766
+rect 223 -1142 257 -766
+<< nsubdiff >>
+rect -371 1303 -275 1337
+rect 275 1303 371 1337
+rect -371 1241 -337 1303
+rect 337 1241 371 1303
+rect -371 -1303 -337 -1241
+rect 337 -1303 371 -1241
+rect -371 -1337 -275 -1303
+rect 275 -1337 371 -1303
+<< nsubdiffcont >>
+rect -275 1303 275 1337
+rect -371 -1241 -337 1241
+rect 337 -1241 371 1241
+rect -275 -1337 275 -1303
+<< poly >>
+rect -225 1235 -159 1251
+rect -225 1201 -209 1235
+rect -175 1201 -159 1235
+rect -225 1185 -159 1201
+rect -33 1235 33 1251
+rect -33 1201 -17 1235
+rect 17 1201 33 1235
+rect -33 1185 33 1201
+rect 159 1235 225 1251
+rect 159 1201 175 1235
+rect 209 1201 225 1235
+rect 159 1185 225 1201
+rect -207 1154 -177 1185
+rect -111 1154 -81 1180
+rect -15 1154 15 1185
+rect 81 1154 111 1180
+rect 177 1154 207 1185
+rect -207 728 -177 754
+rect -111 723 -81 754
+rect -15 728 15 754
+rect 81 723 111 754
+rect 177 728 207 754
+rect -129 707 -63 723
+rect -129 673 -113 707
+rect -79 673 -63 707
+rect -129 657 -63 673
+rect 63 707 129 723
+rect 63 673 79 707
+rect 113 673 129 707
+rect 63 657 129 673
+rect -129 599 -63 615
+rect -129 565 -113 599
+rect -79 565 -63 599
+rect -129 549 -63 565
+rect 63 599 129 615
+rect 63 565 79 599
+rect 113 565 129 599
+rect 63 549 129 565
+rect -207 518 -177 544
+rect -111 518 -81 549
+rect -15 518 15 544
+rect 81 518 111 549
+rect 177 518 207 544
+rect -207 87 -177 118
+rect -111 92 -81 118
+rect -15 87 15 118
+rect 81 92 111 118
+rect 177 87 207 118
+rect -225 71 -159 87
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -225 21 -159 37
+rect -33 71 33 87
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 159 71 225 87
+rect 159 37 175 71
+rect 209 37 225 71
+rect 159 21 225 37
+rect -225 -37 -159 -21
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -225 -87 -159 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -33 -87 33 -71
+rect 159 -37 225 -21
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect 159 -87 225 -71
+rect -207 -118 -177 -87
+rect -111 -118 -81 -92
+rect -15 -118 15 -87
+rect 81 -118 111 -92
+rect 177 -118 207 -87
+rect -207 -544 -177 -518
+rect -111 -549 -81 -518
+rect -15 -544 15 -518
+rect 81 -549 111 -518
+rect 177 -544 207 -518
+rect -129 -565 -63 -549
+rect -129 -599 -113 -565
+rect -79 -599 -63 -565
+rect -129 -615 -63 -599
+rect 63 -565 129 -549
+rect 63 -599 79 -565
+rect 113 -599 129 -565
+rect 63 -615 129 -599
+rect -129 -673 -63 -657
+rect -129 -707 -113 -673
+rect -79 -707 -63 -673
+rect -129 -723 -63 -707
+rect 63 -673 129 -657
+rect 63 -707 79 -673
+rect 113 -707 129 -673
+rect 63 -723 129 -707
+rect -207 -754 -177 -728
+rect -111 -754 -81 -723
+rect -15 -754 15 -728
+rect 81 -754 111 -723
+rect 177 -754 207 -728
+rect -207 -1185 -177 -1154
+rect -111 -1180 -81 -1154
+rect -15 -1185 15 -1154
+rect 81 -1180 111 -1154
+rect 177 -1185 207 -1154
+rect -225 -1201 -159 -1185
+rect -225 -1235 -209 -1201
+rect -175 -1235 -159 -1201
+rect -225 -1251 -159 -1235
+rect -33 -1201 33 -1185
+rect -33 -1235 -17 -1201
+rect 17 -1235 33 -1201
+rect -33 -1251 33 -1235
+rect 159 -1201 225 -1185
+rect 159 -1235 175 -1201
+rect 209 -1235 225 -1201
+rect 159 -1251 225 -1235
+<< polycont >>
+rect -209 1201 -175 1235
+rect -17 1201 17 1235
+rect 175 1201 209 1235
+rect -113 673 -79 707
+rect 79 673 113 707
+rect -113 565 -79 599
+rect 79 565 113 599
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect -113 -599 -79 -565
+rect 79 -599 113 -565
+rect -113 -707 -79 -673
+rect 79 -707 113 -673
+rect -209 -1235 -175 -1201
+rect -17 -1235 17 -1201
+rect 175 -1235 209 -1201
+<< locali >>
+rect -371 1303 -275 1337
+rect 275 1303 371 1337
+rect -371 1241 -337 1303
+rect 337 1241 371 1303
+rect -225 1201 -209 1235
+rect -175 1201 -159 1235
+rect -33 1201 -17 1235
+rect 17 1201 33 1235
+rect 159 1201 175 1235
+rect 209 1201 225 1235
+rect -257 1142 -223 1158
+rect -257 750 -223 766
+rect -161 1142 -127 1158
+rect -161 750 -127 766
+rect -65 1142 -31 1158
+rect -65 750 -31 766
+rect 31 1142 65 1158
+rect 31 750 65 766
+rect 127 1142 161 1158
+rect 127 750 161 766
+rect 223 1142 257 1158
+rect 223 750 257 766
+rect -129 673 -113 707
+rect -79 673 -63 707
+rect 63 673 79 707
+rect 113 673 129 707
+rect -129 565 -113 599
+rect -79 565 -63 599
+rect 63 565 79 599
+rect 113 565 129 599
+rect -257 506 -223 522
+rect -257 114 -223 130
+rect -161 506 -127 522
+rect -161 114 -127 130
+rect -65 506 -31 522
+rect -65 114 -31 130
+rect 31 506 65 522
+rect 31 114 65 130
+rect 127 506 161 522
+rect 127 114 161 130
+rect 223 506 257 522
+rect 223 114 257 130
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 159 37 175 71
+rect 209 37 225 71
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect -257 -130 -223 -114
+rect -257 -522 -223 -506
+rect -161 -130 -127 -114
+rect -161 -522 -127 -506
+rect -65 -130 -31 -114
+rect -65 -522 -31 -506
+rect 31 -130 65 -114
+rect 31 -522 65 -506
+rect 127 -130 161 -114
+rect 127 -522 161 -506
+rect 223 -130 257 -114
+rect 223 -522 257 -506
+rect -129 -599 -113 -565
+rect -79 -599 -63 -565
+rect 63 -599 79 -565
+rect 113 -599 129 -565
+rect -129 -707 -113 -673
+rect -79 -707 -63 -673
+rect 63 -707 79 -673
+rect 113 -707 129 -673
+rect -257 -766 -223 -750
+rect -257 -1158 -223 -1142
+rect -161 -766 -127 -750
+rect -161 -1158 -127 -1142
+rect -65 -766 -31 -750
+rect -65 -1158 -31 -1142
+rect 31 -766 65 -750
+rect 31 -1158 65 -1142
+rect 127 -766 161 -750
+rect 127 -1158 161 -1142
+rect 223 -766 257 -750
+rect 223 -1158 257 -1142
+rect -225 -1235 -209 -1201
+rect -175 -1235 -159 -1201
+rect -33 -1235 -17 -1201
+rect 17 -1235 33 -1201
+rect 159 -1235 175 -1201
+rect 209 -1235 225 -1201
+rect -371 -1303 -337 -1241
+rect 337 -1303 371 -1241
+rect -371 -1337 -275 -1303
+rect 275 -1337 371 -1303
+<< viali >>
+rect -209 1201 -175 1235
+rect -17 1201 17 1235
+rect 175 1201 209 1235
+rect -257 766 -223 1142
+rect -161 766 -127 1142
+rect -65 766 -31 1142
+rect 31 766 65 1142
+rect 127 766 161 1142
+rect 223 766 257 1142
+rect -113 673 -79 707
+rect 79 673 113 707
+rect -113 565 -79 599
+rect 79 565 113 599
+rect -257 130 -223 506
+rect -161 130 -127 506
+rect -65 130 -31 506
+rect 31 130 65 506
+rect 127 130 161 506
+rect 223 130 257 506
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect -257 -506 -223 -130
+rect -161 -506 -127 -130
+rect -65 -506 -31 -130
+rect 31 -506 65 -130
+rect 127 -506 161 -130
+rect 223 -506 257 -130
+rect -113 -599 -79 -565
+rect 79 -599 113 -565
+rect -113 -707 -79 -673
+rect 79 -707 113 -673
+rect -257 -1142 -223 -766
+rect -161 -1142 -127 -766
+rect -65 -1142 -31 -766
+rect 31 -1142 65 -766
+rect 127 -1142 161 -766
+rect 223 -1142 257 -766
+rect -209 -1235 -175 -1201
+rect -17 -1235 17 -1201
+rect 175 -1235 209 -1201
+<< metal1 >>
+rect -221 1235 -163 1241
+rect -221 1201 -209 1235
+rect -175 1201 -163 1235
+rect -221 1195 -163 1201
+rect -29 1235 29 1241
+rect -29 1201 -17 1235
+rect 17 1201 29 1235
+rect -29 1195 29 1201
+rect 163 1235 221 1241
+rect 163 1201 175 1235
+rect 209 1201 221 1235
+rect 163 1195 221 1201
+rect -263 1142 -217 1154
+rect -263 766 -257 1142
+rect -223 766 -217 1142
+rect -263 754 -217 766
+rect -167 1142 -121 1154
+rect -167 766 -161 1142
+rect -127 766 -121 1142
+rect -167 754 -121 766
+rect -71 1142 -25 1154
+rect -71 766 -65 1142
+rect -31 766 -25 1142
+rect -71 754 -25 766
+rect 25 1142 71 1154
+rect 25 766 31 1142
+rect 65 766 71 1142
+rect 25 754 71 766
+rect 121 1142 167 1154
+rect 121 766 127 1142
+rect 161 766 167 1142
+rect 121 754 167 766
+rect 217 1142 263 1154
+rect 217 766 223 1142
+rect 257 766 263 1142
+rect 217 754 263 766
+rect -125 707 -67 713
+rect -125 673 -113 707
+rect -79 673 -67 707
+rect -125 667 -67 673
+rect 67 707 125 713
+rect 67 673 79 707
+rect 113 673 125 707
+rect 67 667 125 673
+rect -125 599 -67 605
+rect -125 565 -113 599
+rect -79 565 -67 599
+rect -125 559 -67 565
+rect 67 599 125 605
+rect 67 565 79 599
+rect 113 565 125 599
+rect 67 559 125 565
+rect -263 506 -217 518
+rect -263 130 -257 506
+rect -223 130 -217 506
+rect -263 118 -217 130
+rect -167 506 -121 518
+rect -167 130 -161 506
+rect -127 130 -121 506
+rect -167 118 -121 130
+rect -71 506 -25 518
+rect -71 130 -65 506
+rect -31 130 -25 506
+rect -71 118 -25 130
+rect 25 506 71 518
+rect 25 130 31 506
+rect 65 130 71 506
+rect 25 118 71 130
+rect 121 506 167 518
+rect 121 130 127 506
+rect 161 130 167 506
+rect 121 118 167 130
+rect 217 506 263 518
+rect 217 130 223 506
+rect 257 130 263 506
+rect 217 118 263 130
+rect -221 71 -163 77
+rect -221 37 -209 71
+rect -175 37 -163 71
+rect -221 31 -163 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 163 71 221 77
+rect 163 37 175 71
+rect 209 37 221 71
+rect 163 31 221 37
+rect -221 -37 -163 -31
+rect -221 -71 -209 -37
+rect -175 -71 -163 -37
+rect -221 -77 -163 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 163 -37 221 -31
+rect 163 -71 175 -37
+rect 209 -71 221 -37
+rect 163 -77 221 -71
+rect -263 -130 -217 -118
+rect -263 -506 -257 -130
+rect -223 -506 -217 -130
+rect -263 -518 -217 -506
+rect -167 -130 -121 -118
+rect -167 -506 -161 -130
+rect -127 -506 -121 -130
+rect -167 -518 -121 -506
+rect -71 -130 -25 -118
+rect -71 -506 -65 -130
+rect -31 -506 -25 -130
+rect -71 -518 -25 -506
+rect 25 -130 71 -118
+rect 25 -506 31 -130
+rect 65 -506 71 -130
+rect 25 -518 71 -506
+rect 121 -130 167 -118
+rect 121 -506 127 -130
+rect 161 -506 167 -130
+rect 121 -518 167 -506
+rect 217 -130 263 -118
+rect 217 -506 223 -130
+rect 257 -506 263 -130
+rect 217 -518 263 -506
+rect -125 -565 -67 -559
+rect -125 -599 -113 -565
+rect -79 -599 -67 -565
+rect -125 -605 -67 -599
+rect 67 -565 125 -559
+rect 67 -599 79 -565
+rect 113 -599 125 -565
+rect 67 -605 125 -599
+rect -125 -673 -67 -667
+rect -125 -707 -113 -673
+rect -79 -707 -67 -673
+rect -125 -713 -67 -707
+rect 67 -673 125 -667
+rect 67 -707 79 -673
+rect 113 -707 125 -673
+rect 67 -713 125 -707
+rect -263 -766 -217 -754
+rect -263 -1142 -257 -766
+rect -223 -1142 -217 -766
+rect -263 -1154 -217 -1142
+rect -167 -766 -121 -754
+rect -167 -1142 -161 -766
+rect -127 -1142 -121 -766
+rect -167 -1154 -121 -1142
+rect -71 -766 -25 -754
+rect -71 -1142 -65 -766
+rect -31 -1142 -25 -766
+rect -71 -1154 -25 -1142
+rect 25 -766 71 -754
+rect 25 -1142 31 -766
+rect 65 -1142 71 -766
+rect 25 -1154 71 -1142
+rect 121 -766 167 -754
+rect 121 -1142 127 -766
+rect 161 -1142 167 -766
+rect 121 -1154 167 -1142
+rect 217 -766 263 -754
+rect 217 -1142 223 -766
+rect 257 -1142 263 -766
+rect 217 -1154 263 -1142
+rect -221 -1201 -163 -1195
+rect -221 -1235 -209 -1201
+rect -175 -1235 -163 -1201
+rect -221 -1241 -163 -1235
+rect -29 -1201 29 -1195
+rect -29 -1235 -17 -1201
+rect 17 -1235 29 -1201
+rect -29 -1241 29 -1235
+rect 163 -1201 221 -1195
+rect 163 -1235 175 -1201
+rect 209 -1235 221 -1201
+rect 163 -1241 221 -1235
+<< properties >>
+string FIXED_BBOX -354 -1320 354 1320
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 4 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.ext
new file mode 100644
index 0000000..f6aaa92
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.ext
@@ -0,0 +1,19 @@
+timestamp 1653899151
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_15_n100#" 758 0 15 -100 pdif 0 0 0 0 0 0 0 0 0 0 11600 516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7072 484 9200 492 0 0 0 0 0 0 0 0 0 0
+node "a_n73_n100#" 758 0 -73 -100 pdif 0 0 0 0 0 0 0 0 0 0 11600 516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7072 484 9200 492 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n197#" 703 0 -33 -197 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16572 992 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n211_n319#" 7792 807.708 -211 -319 nw 0 0 0 0 269236 2120 0 0 57664 3392 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57664 3392 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_n197#" "a_n73_n100#" 22.214
+cap "w_n211_n319#" "a_15_n100#" 91.6274
+cap "a_15_n100#" "a_n73_n100#" 283.566
+cap "w_n211_n319#" "a_n73_n100#" 91.6274
+cap "a_n33_n197#" "a_15_n100#" 22.214
+cap "a_n33_n197#" "w_n211_n319#" 277.388
+device msubckt sky130_fd_pr__pfet_01v8 -15 -100 -14 -99 l=30 w=200 "w_n211_n319#" "a_n33_n197#" 60 0 "a_n73_n100#" 200 0 "a_15_n100#" 200 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.mag
new file mode 100644
index 0000000..078e4da
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_UAQRRG.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653899151
+<< error_p >>
+rect -29 181 29 187
+rect -29 147 -17 181
+rect -29 141 29 147
+rect -29 -147 29 -141
+rect -29 -181 -17 -147
+rect -29 -187 29 -181
+<< nwell >>
+rect -211 -319 211 319
+<< pmos >>
+rect -15 -100 15 100
+<< pdiff >>
+rect -73 88 -15 100
+rect -73 -88 -61 88
+rect -27 -88 -15 88
+rect -73 -100 -15 -88
+rect 15 88 73 100
+rect 15 -88 27 88
+rect 61 -88 73 88
+rect 15 -100 73 -88
+<< pdiffc >>
+rect -61 -88 -27 88
+rect 27 -88 61 88
+<< nsubdiff >>
+rect -175 249 -79 283
+rect 79 249 175 283
+rect -175 187 -141 249
+rect 141 187 175 249
+rect -175 -249 -141 -187
+rect 141 -249 175 -187
+rect -175 -283 -79 -249
+rect 79 -283 175 -249
+<< nsubdiffcont >>
+rect -79 249 79 283
+rect -175 -187 -141 187
+rect 141 -187 175 187
+rect -79 -283 79 -249
+<< poly >>
+rect -33 181 33 197
+rect -33 147 -17 181
+rect 17 147 33 181
+rect -33 131 33 147
+rect -15 100 15 131
+rect -15 -131 15 -100
+rect -33 -147 33 -131
+rect -33 -181 -17 -147
+rect 17 -181 33 -147
+rect -33 -197 33 -181
+<< polycont >>
+rect -17 147 17 181
+rect -17 -181 17 -147
+<< locali >>
+rect -175 249 -79 283
+rect 79 249 175 283
+rect -175 187 -141 249
+rect 141 187 175 249
+rect -33 147 -17 181
+rect 17 147 33 181
+rect -61 88 -27 104
+rect -61 -104 -27 -88
+rect 27 88 61 104
+rect 27 -104 61 -88
+rect -33 -181 -17 -147
+rect 17 -181 33 -147
+rect -175 -249 -141 -187
+rect 141 -249 175 -187
+rect -175 -283 -79 -249
+rect 79 -283 175 -249
+<< viali >>
+rect -17 147 17 181
+rect -61 -88 -27 88
+rect 27 -88 61 88
+rect -17 -181 17 -147
+<< metal1 >>
+rect -29 181 29 187
+rect -29 147 -17 181
+rect 17 147 29 181
+rect -29 141 29 147
+rect -67 88 -21 100
+rect -67 -88 -61 88
+rect -27 -88 -21 88
+rect -67 -100 -21 -88
+rect 21 88 67 100
+rect 21 -88 27 88
+rect 61 -88 67 88
+rect 21 -100 67 -88
+rect -29 -147 29 -141
+rect -29 -181 -17 -147
+rect 17 -181 29 -147
+rect -29 -187 29 -181
+<< properties >>
+string FIXED_BBOX -158 -266 158 266
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 1 l 0.15 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_VCB8FX.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_VCB8FX.mag
new file mode 100644
index 0000000..090f9c3
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_VCB8FX.mag
@@ -0,0 +1,667 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653901926
+<< error_p >>
+rect -461 599 -403 605
+rect -269 599 -211 605
+rect -77 599 -19 605
+rect 115 599 173 605
+rect 307 599 365 605
+rect -461 565 -449 599
+rect -269 565 -257 599
+rect -77 565 -65 599
+rect 115 565 127 599
+rect 307 565 319 599
+rect -461 559 -403 565
+rect -269 559 -211 565
+rect -77 559 -19 565
+rect 115 559 173 565
+rect 307 559 365 565
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect -461 -565 -403 -559
+rect -269 -565 -211 -559
+rect -77 -565 -19 -559
+rect 115 -565 173 -559
+rect 307 -565 365 -559
+rect -461 -599 -449 -565
+rect -269 -599 -257 -565
+rect -77 -599 -65 -565
+rect 115 -599 127 -565
+rect 307 -599 319 -565
+rect -461 -605 -403 -599
+rect -269 -605 -211 -599
+rect -77 -605 -19 -599
+rect 115 -605 173 -599
+rect 307 -605 365 -599
+<< nwell >>
+rect -647 -737 647 737
+<< pmos >>
+rect -447 118 -417 518
+rect -351 118 -321 518
+rect -255 118 -225 518
+rect -159 118 -129 518
+rect -63 118 -33 518
+rect 33 118 63 518
+rect 129 118 159 518
+rect 225 118 255 518
+rect 321 118 351 518
+rect 417 118 447 518
+rect -447 -518 -417 -118
+rect -351 -518 -321 -118
+rect -255 -518 -225 -118
+rect -159 -518 -129 -118
+rect -63 -518 -33 -118
+rect 33 -518 63 -118
+rect 129 -518 159 -118
+rect 225 -518 255 -118
+rect 321 -518 351 -118
+rect 417 -518 447 -118
+<< pdiff >>
+rect -509 506 -447 518
+rect -509 130 -497 506
+rect -463 130 -447 506
+rect -509 118 -447 130
+rect -417 506 -351 518
+rect -417 130 -401 506
+rect -367 130 -351 506
+rect -417 118 -351 130
+rect -321 506 -255 518
+rect -321 130 -305 506
+rect -271 130 -255 506
+rect -321 118 -255 130
+rect -225 506 -159 518
+rect -225 130 -209 506
+rect -175 130 -159 506
+rect -225 118 -159 130
+rect -129 506 -63 518
+rect -129 130 -113 506
+rect -79 130 -63 506
+rect -129 118 -63 130
+rect -33 506 33 518
+rect -33 130 -17 506
+rect 17 130 33 506
+rect -33 118 33 130
+rect 63 506 129 518
+rect 63 130 79 506
+rect 113 130 129 506
+rect 63 118 129 130
+rect 159 506 225 518
+rect 159 130 175 506
+rect 209 130 225 506
+rect 159 118 225 130
+rect 255 506 321 518
+rect 255 130 271 506
+rect 305 130 321 506
+rect 255 118 321 130
+rect 351 506 417 518
+rect 351 130 367 506
+rect 401 130 417 506
+rect 351 118 417 130
+rect 447 506 509 518
+rect 447 130 463 506
+rect 497 130 509 506
+rect 447 118 509 130
+rect -509 -130 -447 -118
+rect -509 -506 -497 -130
+rect -463 -506 -447 -130
+rect -509 -518 -447 -506
+rect -417 -130 -351 -118
+rect -417 -506 -401 -130
+rect -367 -506 -351 -130
+rect -417 -518 -351 -506
+rect -321 -130 -255 -118
+rect -321 -506 -305 -130
+rect -271 -506 -255 -130
+rect -321 -518 -255 -506
+rect -225 -130 -159 -118
+rect -225 -506 -209 -130
+rect -175 -506 -159 -130
+rect -225 -518 -159 -506
+rect -129 -130 -63 -118
+rect -129 -506 -113 -130
+rect -79 -506 -63 -130
+rect -129 -518 -63 -506
+rect -33 -130 33 -118
+rect -33 -506 -17 -130
+rect 17 -506 33 -130
+rect -33 -518 33 -506
+rect 63 -130 129 -118
+rect 63 -506 79 -130
+rect 113 -506 129 -130
+rect 63 -518 129 -506
+rect 159 -130 225 -118
+rect 159 -506 175 -130
+rect 209 -506 225 -130
+rect 159 -518 225 -506
+rect 255 -130 321 -118
+rect 255 -506 271 -130
+rect 305 -506 321 -130
+rect 255 -518 321 -506
+rect 351 -130 417 -118
+rect 351 -506 367 -130
+rect 401 -506 417 -130
+rect 351 -518 417 -506
+rect 447 -130 509 -118
+rect 447 -506 463 -130
+rect 497 -506 509 -130
+rect 447 -518 509 -506
+<< pdiffc >>
+rect -497 130 -463 506
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect 463 130 497 506
+rect -497 -506 -463 -130
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+rect 463 -506 497 -130
+<< nsubdiff >>
+rect -611 667 -515 701
+rect 515 667 611 701
+rect -611 605 -577 667
+rect 577 605 611 667
+rect -611 -667 -577 -605
+rect 577 -667 611 -605
+rect -611 -701 -515 -667
+rect 515 -701 611 -667
+<< nsubdiffcont >>
+rect -515 667 515 701
+rect -611 -605 -577 605
+rect 577 -605 611 605
+rect -515 -701 515 -667
+<< poly >>
+rect -465 599 -399 615
+rect -465 565 -449 599
+rect -415 565 -399 599
+rect -465 549 -399 565
+rect -273 599 -207 615
+rect -273 565 -257 599
+rect -223 565 -207 599
+rect -273 549 -207 565
+rect -81 599 -15 615
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect -81 549 -15 565
+rect 111 599 177 615
+rect 111 565 127 599
+rect 161 565 177 599
+rect 111 549 177 565
+rect 303 599 369 615
+rect 303 565 319 599
+rect 353 565 369 599
+rect 303 549 369 565
+rect -447 518 -417 549
+rect -351 518 -321 544
+rect -255 518 -225 549
+rect -159 518 -129 544
+rect -63 518 -33 549
+rect 33 518 63 544
+rect 129 518 159 549
+rect 225 518 255 544
+rect 321 518 351 549
+rect 417 518 447 544
+rect -447 92 -417 118
+rect -351 87 -321 118
+rect -255 92 -225 118
+rect -159 87 -129 118
+rect -63 92 -33 118
+rect 33 87 63 118
+rect 129 92 159 118
+rect 225 87 255 118
+rect 321 92 351 118
+rect 417 87 447 118
+rect -369 71 -303 87
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 399 -87 465 -71
+rect -447 -118 -417 -92
+rect -351 -118 -321 -87
+rect -255 -118 -225 -92
+rect -159 -118 -129 -87
+rect -63 -118 -33 -92
+rect 33 -118 63 -87
+rect 129 -118 159 -92
+rect 225 -118 255 -87
+rect 321 -118 351 -92
+rect 417 -118 447 -87
+rect -447 -549 -417 -518
+rect -351 -544 -321 -518
+rect -255 -549 -225 -518
+rect -159 -544 -129 -518
+rect -63 -549 -33 -518
+rect 33 -544 63 -518
+rect 129 -549 159 -518
+rect 225 -544 255 -518
+rect 321 -549 351 -518
+rect 417 -544 447 -518
+rect -465 -565 -399 -549
+rect -465 -599 -449 -565
+rect -415 -599 -399 -565
+rect -465 -615 -399 -599
+rect -273 -565 -207 -549
+rect -273 -599 -257 -565
+rect -223 -599 -207 -565
+rect -273 -615 -207 -599
+rect -81 -565 -15 -549
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect -81 -615 -15 -599
+rect 111 -565 177 -549
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect 111 -615 177 -599
+rect 303 -565 369 -549
+rect 303 -599 319 -565
+rect 353 -599 369 -565
+rect 303 -615 369 -599
+<< polycont >>
+rect -449 565 -415 599
+rect -257 565 -223 599
+rect -65 565 -31 599
+rect 127 565 161 599
+rect 319 565 353 599
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -449 -599 -415 -565
+rect -257 -599 -223 -565
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect 319 -599 353 -565
+<< locali >>
+rect -611 667 -515 701
+rect 515 667 611 701
+rect -611 605 -577 667
+rect 577 605 611 667
+rect -465 565 -449 599
+rect -415 565 -399 599
+rect -273 565 -257 599
+rect -223 565 -207 599
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect 111 565 127 599
+rect 161 565 177 599
+rect 303 565 319 599
+rect 353 565 369 599
+rect -497 506 -463 522
+rect -497 114 -463 130
+rect -401 506 -367 522
+rect -401 114 -367 130
+rect -305 506 -271 522
+rect -305 114 -271 130
+rect -209 506 -175 522
+rect -209 114 -175 130
+rect -113 506 -79 522
+rect -113 114 -79 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 79 506 113 522
+rect 79 114 113 130
+rect 175 506 209 522
+rect 175 114 209 130
+rect 271 506 305 522
+rect 271 114 305 130
+rect 367 506 401 522
+rect 367 114 401 130
+rect 463 506 497 522
+rect 463 114 497 130
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect -497 -130 -463 -114
+rect -497 -522 -463 -506
+rect -401 -130 -367 -114
+rect -401 -522 -367 -506
+rect -305 -130 -271 -114
+rect -305 -522 -271 -506
+rect -209 -130 -175 -114
+rect -209 -522 -175 -506
+rect -113 -130 -79 -114
+rect -113 -522 -79 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 79 -130 113 -114
+rect 79 -522 113 -506
+rect 175 -130 209 -114
+rect 175 -522 209 -506
+rect 271 -130 305 -114
+rect 271 -522 305 -506
+rect 367 -130 401 -114
+rect 367 -522 401 -506
+rect 463 -130 497 -114
+rect 463 -522 497 -506
+rect -465 -599 -449 -565
+rect -415 -599 -399 -565
+rect -273 -599 -257 -565
+rect -223 -599 -207 -565
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect 303 -599 319 -565
+rect 353 -599 369 -565
+rect -611 -667 -577 -605
+rect 577 -667 611 -605
+rect -611 -701 -515 -667
+rect 515 -701 611 -667
+<< viali >>
+rect -449 565 -415 599
+rect -257 565 -223 599
+rect -65 565 -31 599
+rect 127 565 161 599
+rect 319 565 353 599
+rect -497 130 -463 506
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect 463 130 497 506
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -497 -506 -463 -130
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+rect 463 -506 497 -130
+rect -449 -599 -415 -565
+rect -257 -599 -223 -565
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect 319 -599 353 -565
+<< metal1 >>
+rect -461 599 -403 605
+rect -461 565 -449 599
+rect -415 565 -403 599
+rect -461 559 -403 565
+rect -269 599 -211 605
+rect -269 565 -257 599
+rect -223 565 -211 599
+rect -269 559 -211 565
+rect -77 599 -19 605
+rect -77 565 -65 599
+rect -31 565 -19 599
+rect -77 559 -19 565
+rect 115 599 173 605
+rect 115 565 127 599
+rect 161 565 173 599
+rect 115 559 173 565
+rect 307 599 365 605
+rect 307 565 319 599
+rect 353 565 365 599
+rect 307 559 365 565
+rect -503 506 -457 518
+rect -503 130 -497 506
+rect -463 130 -457 506
+rect -503 118 -457 130
+rect -407 506 -361 518
+rect -407 130 -401 506
+rect -367 130 -361 506
+rect -407 118 -361 130
+rect -311 506 -265 518
+rect -311 130 -305 506
+rect -271 130 -265 506
+rect -311 118 -265 130
+rect -215 506 -169 518
+rect -215 130 -209 506
+rect -175 130 -169 506
+rect -215 118 -169 130
+rect -119 506 -73 518
+rect -119 130 -113 506
+rect -79 130 -73 506
+rect -119 118 -73 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 73 506 119 518
+rect 73 130 79 506
+rect 113 130 119 506
+rect 73 118 119 130
+rect 169 506 215 518
+rect 169 130 175 506
+rect 209 130 215 506
+rect 169 118 215 130
+rect 265 506 311 518
+rect 265 130 271 506
+rect 305 130 311 506
+rect 265 118 311 130
+rect 361 506 407 518
+rect 361 130 367 506
+rect 401 130 407 506
+rect 361 118 407 130
+rect 457 506 503 518
+rect 457 130 463 506
+rect 497 130 503 506
+rect 457 118 503 130
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect -503 -130 -457 -118
+rect -503 -506 -497 -130
+rect -463 -506 -457 -130
+rect -503 -518 -457 -506
+rect -407 -130 -361 -118
+rect -407 -506 -401 -130
+rect -367 -506 -361 -130
+rect -407 -518 -361 -506
+rect -311 -130 -265 -118
+rect -311 -506 -305 -130
+rect -271 -506 -265 -130
+rect -311 -518 -265 -506
+rect -215 -130 -169 -118
+rect -215 -506 -209 -130
+rect -175 -506 -169 -130
+rect -215 -518 -169 -506
+rect -119 -130 -73 -118
+rect -119 -506 -113 -130
+rect -79 -506 -73 -130
+rect -119 -518 -73 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 73 -130 119 -118
+rect 73 -506 79 -130
+rect 113 -506 119 -130
+rect 73 -518 119 -506
+rect 169 -130 215 -118
+rect 169 -506 175 -130
+rect 209 -506 215 -130
+rect 169 -518 215 -506
+rect 265 -130 311 -118
+rect 265 -506 271 -130
+rect 305 -506 311 -130
+rect 265 -518 311 -506
+rect 361 -130 407 -118
+rect 361 -506 367 -130
+rect 401 -506 407 -130
+rect 361 -518 407 -506
+rect 457 -130 503 -118
+rect 457 -506 463 -130
+rect 497 -506 503 -130
+rect 457 -518 503 -506
+rect -461 -565 -403 -559
+rect -461 -599 -449 -565
+rect -415 -599 -403 -565
+rect -461 -605 -403 -599
+rect -269 -565 -211 -559
+rect -269 -599 -257 -565
+rect -223 -599 -211 -565
+rect -269 -605 -211 -599
+rect -77 -565 -19 -559
+rect -77 -599 -65 -565
+rect -31 -599 -19 -565
+rect -77 -605 -19 -599
+rect 115 -565 173 -559
+rect 115 -599 127 -565
+rect 161 -599 173 -565
+rect 115 -605 173 -599
+rect 307 -565 365 -559
+rect 307 -599 319 -565
+rect 353 -599 365 -565
+rect 307 -605 365 -599
+<< properties >>
+string FIXED_BBOX -594 -684 594 684
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 2 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.ext
new file mode 100644
index 0000000..2bfb6d6
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.ext
@@ -0,0 +1,208 @@
+timestamp 1653901926
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_927_n200#" 1426 0 927 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_n200#" 1349 0 831 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_n200#" 1349 0 735 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n200#" 1349 0 639 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n200#" 1349 0 543 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n200#" 1349 0 447 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n200#" 1349 0 351 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n200#" 1349 0 255 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n200#" 1349 0 159 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 1349 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 1349 0 -129 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 1349 0 -225 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n200#" 1349 0 -321 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n200#" 1349 0 -417 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n200#" 1349 0 -513 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n200#" 1349 0 -609 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n200#" 1349 0 -705 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n200#" 1349 0 -801 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n200#" 1349 0 -897 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n989_n200#" 1426 0 -989 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_n297#" 851 0 783 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_n297#" 851 0 591 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n297#" 851 0 399 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n297#" 851 0 207 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n297#" 851 0 15 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n297#" 851 0 -177 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n297#" 851 0 -369 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n297#" 851 0 -561 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n297#" 851 0 -753 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n297#" 851 0 -945 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_879_231#" 851 0 879 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_231#" 851 0 687 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_231#" 851 0 495 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_231#" 851 0 303 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_231#" 851 0 111 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_231#" 851 0 -81 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_231#" 851 0 -273 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_231#" 851 0 -465 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_231#" 851 0 -657 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_231#" 851 0 -849 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n1127_n419#" 24787 5666.56 -1127 -419 nw 0 0 0 0 1888852 6184 0 0 195840 11520 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195840 11520 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_159_n200#" "a_255_n200#" 479.458
+cap "a_n849_231#" "a_n657_231#" 29.6522
+cap "a_n849_231#" "a_n945_n297#" 13.3939
+cap "a_111_231#" "w_n1127_n419#" 92.0984
+cap "a_783_n297#" "a_879_231#" 13.3939
+cap "a_n705_n200#" "a_n801_n200#" 479.458
+cap "a_783_n297#" "a_591_n297#" 29.6522
+cap "a_15_n297#" "w_n1127_n419#" 92.0984
+cap "a_687_231#" "a_495_231#" 29.6522
+cap "a_303_231#" "a_495_231#" 29.6522
+cap "a_207_n297#" "a_399_n297#" 29.6522
+cap "a_n609_n200#" "a_n561_n297#" 4.90233
+cap "a_639_n200#" "a_687_231#" 4.90233
+cap "a_543_n200#" "a_495_231#" 4.90233
+cap "w_n1127_n419#" "a_207_n297#" 92.0984
+cap "a_639_n200#" "a_543_n200#" 479.458
+cap "a_n753_n297#" "a_n801_n200#" 4.90233
+cap "w_n1127_n419#" "a_n33_n200#" 19.5971
+cap "w_n1127_n419#" "a_n801_n200#" 19.5971
+cap "a_n897_n200#" "a_n801_n200#" 479.458
+cap "a_n129_n200#" "a_n225_n200#" 479.458
+cap "a_n705_n200#" "a_n753_n297#" 4.90233
+cap "a_n417_n200#" "a_n465_231#" 4.90233
+cap "a_n705_n200#" "w_n1127_n419#" 19.5971
+cap "w_n1127_n419#" "a_n465_231#" 92.0984
+cap "a_n705_n200#" "a_n657_231#" 4.90233
+cap "a_n465_231#" "a_n657_231#" 29.6522
+cap "a_351_n200#" "a_399_n297#" 4.90233
+cap "a_n129_n200#" "a_n177_n297#" 4.90233
+cap "w_n1127_n419#" "a_399_n297#" 92.0984
+cap "w_n1127_n419#" "a_351_n200#" 19.5971
+cap "a_n513_n200#" "a_n609_n200#" 479.458
+cap "a_783_n297#" "a_687_231#" 13.3939
+cap "a_831_n200#" "w_n1127_n419#" 19.5971
+cap "w_n1127_n419#" "a_n417_n200#" 19.5971
+cap "a_207_n297#" "a_255_n200#" 4.90233
+cap "a_n753_n297#" "w_n1127_n419#" 92.0984
+cap "a_n897_n200#" "w_n1127_n419#" 19.5971
+cap "a_n897_n200#" "a_n989_n200#" 479.458
+cap "w_n1127_n419#" "a_n989_n200#" 162.854
+cap "a_n465_231#" "a_n369_n297#" 13.3939
+cap "a_15_n297#" "a_n177_n297#" 29.6522
+cap "a_n753_n297#" "a_n657_231#" 13.3939
+cap "a_n753_n297#" "a_n945_n297#" 29.6522
+cap "w_n1127_n419#" "a_n657_231#" 92.0984
+cap "a_n897_n200#" "a_n945_n297#" 4.90233
+cap "a_n465_231#" "a_n561_n297#" 13.3939
+cap "w_n1127_n419#" "a_n945_n297#" 131.095
+cap "a_831_n200#" "a_735_n200#" 479.458
+cap "a_n989_n200#" "a_n945_n297#" 4.90233
+cap "a_n129_n200#" "a_n81_231#" 4.90233
+cap "w_n1127_n419#" "a_735_n200#" 19.5971
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_111_231#" "a_n81_231#" 29.6522
+cap "a_879_231#" "a_831_n200#" 4.90233
+cap "a_111_231#" "a_303_231#" 29.6522
+cap "a_399_n297#" "a_447_n200#" 4.90233
+cap "a_n465_231#" "a_n273_231#" 29.6522
+cap "a_351_n200#" "a_447_n200#" 479.458
+cap "a_879_231#" "w_n1127_n419#" 130.841
+cap "a_591_n297#" "a_399_n297#" 29.6522
+cap "a_351_n200#" "a_255_n200#" 479.458
+cap "a_n417_n200#" "a_n369_n297#" 4.90233
+cap "w_n1127_n419#" "a_n369_n297#" 92.0984
+cap "a_15_n297#" "a_n81_231#" 13.3939
+cap "w_n1127_n419#" "a_447_n200#" 19.5971
+cap "w_n1127_n419#" "a_255_n200#" 19.5971
+cap "a_n753_n297#" "a_n561_n297#" 29.6522
+cap "w_n1127_n419#" "a_n561_n297#" 92.0984
+cap "w_n1127_n419#" "a_591_n297#" 92.0984
+cap "w_n1127_n419#" "a_n225_n200#" 19.5971
+cap "a_159_n200#" "a_111_231#" 4.90233
+cap "a_n657_231#" "a_n561_n297#" 13.3939
+cap "a_n513_n200#" "a_n465_231#" 4.90233
+cap "a_n33_n200#" "a_n81_231#" 4.90233
+cap "w_n1127_n419#" "a_n273_231#" 92.0984
+cap "a_207_n297#" "a_303_231#" 13.3939
+cap "a_111_231#" "a_63_n200#" 4.90233
+cap "w_n1127_n419#" "a_n177_n297#" 92.0984
+cap "a_831_n200#" "a_927_n200#" 479.458
+cap "w_n1127_n419#" "a_927_n200#" 162.813
+cap "a_n369_n297#" "a_n561_n297#" 29.6522
+cap "a_399_n297#" "a_495_231#" 13.3939
+cap "a_15_n297#" "a_63_n200#" 4.90233
+cap "a_159_n200#" "a_207_n297#" 4.90233
+cap "a_n513_n200#" "a_n417_n200#" 479.458
+cap "a_n513_n200#" "w_n1127_n419#" 19.5971
+cap "w_n1127_n419#" "a_495_231#" 92.0984
+cap "a_399_n297#" "a_303_231#" 13.3939
+cap "a_351_n200#" "a_303_231#" 4.90233
+cap "a_n369_n297#" "a_n273_231#" 13.3939
+cap "w_n1127_n419#" "a_n81_231#" 92.0984
+cap "w_n1127_n419#" "a_639_n200#" 19.5971
+cap "w_n1127_n419#" "a_687_231#" 92.0984
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n321_n200#" "a_n417_n200#" 479.458
+cap "a_n177_n297#" "a_n369_n297#" 29.6522
+cap "w_n1127_n419#" "a_303_231#" 92.0984
+cap "w_n1127_n419#" "a_n321_n200#" 19.5971
+cap "a_879_231#" "a_927_n200#" 4.90233
+cap "a_n225_n200#" "a_n273_231#" 4.90233
+cap "a_15_n297#" "a_111_231#" 13.3939
+cap "w_n1127_n419#" "a_543_n200#" 19.5971
+cap "a_735_n200#" "a_639_n200#" 479.458
+cap "a_735_n200#" "a_687_231#" 4.90233
+cap "a_n177_n297#" "a_n225_n200#" 4.90233
+cap "a_n705_n200#" "a_n609_n200#" 479.458
+cap "a_n849_231#" "a_n801_n200#" 4.90233
+cap "a_n129_n200#" "a_n33_n200#" 479.458
+cap "a_159_n200#" "w_n1127_n419#" 19.5971
+cap "a_n177_n297#" "a_n273_231#" 13.3939
+cap "a_n513_n200#" "a_n561_n297#" 4.90233
+cap "a_447_n200#" "a_495_231#" 4.90233
+cap "a_111_231#" "a_207_n297#" 13.3939
+cap "a_879_231#" "a_687_231#" 29.6522
+cap "a_591_n297#" "a_495_231#" 13.3939
+cap "a_783_n297#" "a_831_n200#" 4.90233
+cap "a_n321_n200#" "a_n369_n297#" 4.90233
+cap "w_n1127_n419#" "a_63_n200#" 19.5971
+cap "a_639_n200#" "a_591_n297#" 4.90233
+cap "a_591_n297#" "a_687_231#" 13.3939
+cap "a_783_n297#" "w_n1127_n419#" 114.122
+cap "a_303_231#" "a_255_n200#" 4.90233
+cap "a_15_n297#" "a_207_n297#" 29.6522
+cap "a_447_n200#" "a_543_n200#" 479.458
+cap "a_15_n297#" "a_n33_n200#" 4.90233
+cap "a_n225_n200#" "a_n321_n200#" 479.458
+cap "a_591_n297#" "a_543_n200#" 4.90233
+cap "w_n1127_n419#" "a_n609_n200#" 19.5971
+cap "a_783_n297#" "a_735_n200#" 4.90233
+cap "a_n273_231#" "a_n81_231#" 29.6522
+cap "a_n849_231#" "a_n753_n297#" 13.3939
+cap "a_n657_231#" "a_n609_n200#" 4.90233
+cap "a_n849_231#" "a_n897_n200#" 4.90233
+cap "a_n849_231#" "w_n1127_n419#" 114.376
+cap "a_n321_n200#" "a_n273_231#" 4.90233
+cap "a_n129_n200#" "w_n1127_n419#" 19.5971
+cap "a_n177_n297#" "a_n81_231#" 13.3939
+device msubckt sky130_fd_pr__pfet_01v8 897 -200 898 -199 l=30 w=400 "w_n1127_n419#" "a_879_231#" 60 0 "a_831_n200#" 400 0 "a_927_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 801 -200 802 -199 l=30 w=400 "w_n1127_n419#" "a_783_n297#" 60 0 "a_735_n200#" 400 0 "a_831_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 705 -200 706 -199 l=30 w=400 "w_n1127_n419#" "a_687_231#" 60 0 "a_639_n200#" 400 0 "a_735_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 609 -200 610 -199 l=30 w=400 "w_n1127_n419#" "a_591_n297#" 60 0 "a_543_n200#" 400 0 "a_639_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 -200 514 -199 l=30 w=400 "w_n1127_n419#" "a_495_231#" 60 0 "a_447_n200#" 400 0 "a_543_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 -200 418 -199 l=30 w=400 "w_n1127_n419#" "a_399_n297#" 60 0 "a_351_n200#" 400 0 "a_447_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 -200 322 -199 l=30 w=400 "w_n1127_n419#" "a_303_231#" 60 0 "a_255_n200#" 400 0 "a_351_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -200 226 -199 l=30 w=400 "w_n1127_n419#" "a_207_n297#" 60 0 "a_159_n200#" 400 0 "a_255_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -200 130 -199 l=30 w=400 "w_n1127_n419#" "a_111_231#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n1127_n419#" "a_15_n297#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n1127_n419#" "a_n81_231#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -200 -158 -199 l=30 w=400 "w_n1127_n419#" "a_n177_n297#" 60 0 "a_n225_n200#" 400 0 "a_n129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -200 -254 -199 l=30 w=400 "w_n1127_n419#" "a_n273_231#" 60 0 "a_n321_n200#" 400 0 "a_n225_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -200 -350 -199 l=30 w=400 "w_n1127_n419#" "a_n369_n297#" 60 0 "a_n417_n200#" 400 0 "a_n321_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 -200 -446 -199 l=30 w=400 "w_n1127_n419#" "a_n465_231#" 60 0 "a_n513_n200#" 400 0 "a_n417_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 -200 -542 -199 l=30 w=400 "w_n1127_n419#" "a_n561_n297#" 60 0 "a_n609_n200#" 400 0 "a_n513_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -639 -200 -638 -199 l=30 w=400 "w_n1127_n419#" "a_n657_231#" 60 0 "a_n705_n200#" 400 0 "a_n609_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -735 -200 -734 -199 l=30 w=400 "w_n1127_n419#" "a_n753_n297#" 60 0 "a_n801_n200#" 400 0 "a_n705_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -831 -200 -830 -199 l=30 w=400 "w_n1127_n419#" "a_n849_231#" 60 0 "a_n897_n200#" 400 0 "a_n801_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -927 -200 -926 -199 l=30 w=400 "w_n1127_n419#" "a_n945_n297#" 60 0 "a_n989_n200#" 400 0 "a_n897_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.mag
new file mode 100644
index 0000000..8377239
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_VCBWSW.mag
@@ -0,0 +1,655 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653901926
+<< error_p >>
+rect -845 281 -787 287
+rect -653 281 -595 287
+rect -461 281 -403 287
+rect -269 281 -211 287
+rect -77 281 -19 287
+rect 115 281 173 287
+rect 307 281 365 287
+rect 499 281 557 287
+rect 691 281 749 287
+rect 883 281 941 287
+rect -845 247 -833 281
+rect -653 247 -641 281
+rect -461 247 -449 281
+rect -269 247 -257 281
+rect -77 247 -65 281
+rect 115 247 127 281
+rect 307 247 319 281
+rect 499 247 511 281
+rect 691 247 703 281
+rect 883 247 895 281
+rect -845 241 -787 247
+rect -653 241 -595 247
+rect -461 241 -403 247
+rect -269 241 -211 247
+rect -77 241 -19 247
+rect 115 241 173 247
+rect 307 241 365 247
+rect 499 241 557 247
+rect 691 241 749 247
+rect 883 241 941 247
+rect -941 -247 -883 -241
+rect -749 -247 -691 -241
+rect -557 -247 -499 -241
+rect -365 -247 -307 -241
+rect -173 -247 -115 -241
+rect 19 -247 77 -241
+rect 211 -247 269 -241
+rect 403 -247 461 -241
+rect 595 -247 653 -241
+rect 787 -247 845 -241
+rect -941 -281 -929 -247
+rect -749 -281 -737 -247
+rect -557 -281 -545 -247
+rect -365 -281 -353 -247
+rect -173 -281 -161 -247
+rect 19 -281 31 -247
+rect 211 -281 223 -247
+rect 403 -281 415 -247
+rect 595 -281 607 -247
+rect 787 -281 799 -247
+rect -941 -287 -883 -281
+rect -749 -287 -691 -281
+rect -557 -287 -499 -281
+rect -365 -287 -307 -281
+rect -173 -287 -115 -281
+rect 19 -287 77 -281
+rect 211 -287 269 -281
+rect 403 -287 461 -281
+rect 595 -287 653 -281
+rect 787 -287 845 -281
+<< nwell >>
+rect -1127 -419 1127 419
+<< pmos >>
+rect -927 -200 -897 200
+rect -831 -200 -801 200
+rect -735 -200 -705 200
+rect -639 -200 -609 200
+rect -543 -200 -513 200
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect 513 -200 543 200
+rect 609 -200 639 200
+rect 705 -200 735 200
+rect 801 -200 831 200
+rect 897 -200 927 200
+<< pdiff >>
+rect -989 188 -927 200
+rect -989 -188 -977 188
+rect -943 -188 -927 188
+rect -989 -200 -927 -188
+rect -897 188 -831 200
+rect -897 -188 -881 188
+rect -847 -188 -831 188
+rect -897 -200 -831 -188
+rect -801 188 -735 200
+rect -801 -188 -785 188
+rect -751 -188 -735 188
+rect -801 -200 -735 -188
+rect -705 188 -639 200
+rect -705 -188 -689 188
+rect -655 -188 -639 188
+rect -705 -200 -639 -188
+rect -609 188 -543 200
+rect -609 -188 -593 188
+rect -559 -188 -543 188
+rect -609 -200 -543 -188
+rect -513 188 -447 200
+rect -513 -188 -497 188
+rect -463 -188 -447 188
+rect -513 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 513 200
+rect 447 -188 463 188
+rect 497 -188 513 188
+rect 447 -200 513 -188
+rect 543 188 609 200
+rect 543 -188 559 188
+rect 593 -188 609 188
+rect 543 -200 609 -188
+rect 639 188 705 200
+rect 639 -188 655 188
+rect 689 -188 705 188
+rect 639 -200 705 -188
+rect 735 188 801 200
+rect 735 -188 751 188
+rect 785 -188 801 188
+rect 735 -200 801 -188
+rect 831 188 897 200
+rect 831 -188 847 188
+rect 881 -188 897 188
+rect 831 -200 897 -188
+rect 927 188 989 200
+rect 927 -188 943 188
+rect 977 -188 989 188
+rect 927 -200 989 -188
+<< pdiffc >>
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+<< nsubdiff >>
+rect -1091 349 -995 383
+rect 995 349 1091 383
+rect -1091 287 -1057 349
+rect 1057 287 1091 349
+rect -1091 -349 -1057 -287
+rect 1057 -349 1091 -287
+rect -1091 -383 -995 -349
+rect 995 -383 1091 -349
+<< nsubdiffcont >>
+rect -995 349 995 383
+rect -1091 -287 -1057 287
+rect 1057 -287 1091 287
+rect -995 -383 995 -349
+<< poly >>
+rect -849 281 -783 297
+rect -849 247 -833 281
+rect -799 247 -783 281
+rect -849 231 -783 247
+rect -657 281 -591 297
+rect -657 247 -641 281
+rect -607 247 -591 281
+rect -657 231 -591 247
+rect -465 281 -399 297
+rect -465 247 -449 281
+rect -415 247 -399 281
+rect -465 231 -399 247
+rect -273 281 -207 297
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -273 231 -207 247
+rect -81 281 -15 297
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect -81 231 -15 247
+rect 111 281 177 297
+rect 111 247 127 281
+rect 161 247 177 281
+rect 111 231 177 247
+rect 303 281 369 297
+rect 303 247 319 281
+rect 353 247 369 281
+rect 303 231 369 247
+rect 495 281 561 297
+rect 495 247 511 281
+rect 545 247 561 281
+rect 495 231 561 247
+rect 687 281 753 297
+rect 687 247 703 281
+rect 737 247 753 281
+rect 687 231 753 247
+rect 879 281 945 297
+rect 879 247 895 281
+rect 929 247 945 281
+rect 879 231 945 247
+rect -927 200 -897 226
+rect -831 200 -801 231
+rect -735 200 -705 226
+rect -639 200 -609 231
+rect -543 200 -513 226
+rect -447 200 -417 231
+rect -351 200 -321 226
+rect -255 200 -225 231
+rect -159 200 -129 226
+rect -63 200 -33 231
+rect 33 200 63 226
+rect 129 200 159 231
+rect 225 200 255 226
+rect 321 200 351 231
+rect 417 200 447 226
+rect 513 200 543 231
+rect 609 200 639 226
+rect 705 200 735 231
+rect 801 200 831 226
+rect 897 200 927 231
+rect -927 -231 -897 -200
+rect -831 -226 -801 -200
+rect -735 -231 -705 -200
+rect -639 -226 -609 -200
+rect -543 -231 -513 -200
+rect -447 -226 -417 -200
+rect -351 -231 -321 -200
+rect -255 -226 -225 -200
+rect -159 -231 -129 -200
+rect -63 -226 -33 -200
+rect 33 -231 63 -200
+rect 129 -226 159 -200
+rect 225 -231 255 -200
+rect 321 -226 351 -200
+rect 417 -231 447 -200
+rect 513 -226 543 -200
+rect 609 -231 639 -200
+rect 705 -226 735 -200
+rect 801 -231 831 -200
+rect 897 -226 927 -200
+rect -945 -247 -879 -231
+rect -945 -281 -929 -247
+rect -895 -281 -879 -247
+rect -945 -297 -879 -281
+rect -753 -247 -687 -231
+rect -753 -281 -737 -247
+rect -703 -281 -687 -247
+rect -753 -297 -687 -281
+rect -561 -247 -495 -231
+rect -561 -281 -545 -247
+rect -511 -281 -495 -247
+rect -561 -297 -495 -281
+rect -369 -247 -303 -231
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -369 -297 -303 -281
+rect -177 -247 -111 -231
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect -177 -297 -111 -281
+rect 15 -247 81 -231
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 15 -297 81 -281
+rect 207 -247 273 -231
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect 207 -297 273 -281
+rect 399 -247 465 -231
+rect 399 -281 415 -247
+rect 449 -281 465 -247
+rect 399 -297 465 -281
+rect 591 -247 657 -231
+rect 591 -281 607 -247
+rect 641 -281 657 -247
+rect 591 -297 657 -281
+rect 783 -247 849 -231
+rect 783 -281 799 -247
+rect 833 -281 849 -247
+rect 783 -297 849 -281
+<< polycont >>
+rect -833 247 -799 281
+rect -641 247 -607 281
+rect -449 247 -415 281
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect 511 247 545 281
+rect 703 247 737 281
+rect 895 247 929 281
+rect -929 -281 -895 -247
+rect -737 -281 -703 -247
+rect -545 -281 -511 -247
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+rect 415 -281 449 -247
+rect 607 -281 641 -247
+rect 799 -281 833 -247
+<< locali >>
+rect -1091 349 -995 383
+rect 995 349 1091 383
+rect -1091 287 -1057 349
+rect 1057 287 1091 349
+rect -849 247 -833 281
+rect -799 247 -783 281
+rect -657 247 -641 281
+rect -607 247 -591 281
+rect -465 247 -449 281
+rect -415 247 -399 281
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect 111 247 127 281
+rect 161 247 177 281
+rect 303 247 319 281
+rect 353 247 369 281
+rect 495 247 511 281
+rect 545 247 561 281
+rect 687 247 703 281
+rect 737 247 753 281
+rect 879 247 895 281
+rect 929 247 945 281
+rect -977 188 -943 204
+rect -977 -204 -943 -188
+rect -881 188 -847 204
+rect -881 -204 -847 -188
+rect -785 188 -751 204
+rect -785 -204 -751 -188
+rect -689 188 -655 204
+rect -689 -204 -655 -188
+rect -593 188 -559 204
+rect -593 -204 -559 -188
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect 559 188 593 204
+rect 559 -204 593 -188
+rect 655 188 689 204
+rect 655 -204 689 -188
+rect 751 188 785 204
+rect 751 -204 785 -188
+rect 847 188 881 204
+rect 847 -204 881 -188
+rect 943 188 977 204
+rect 943 -204 977 -188
+rect -945 -281 -929 -247
+rect -895 -281 -879 -247
+rect -753 -281 -737 -247
+rect -703 -281 -687 -247
+rect -561 -281 -545 -247
+rect -511 -281 -495 -247
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect 399 -281 415 -247
+rect 449 -281 465 -247
+rect 591 -281 607 -247
+rect 641 -281 657 -247
+rect 783 -281 799 -247
+rect 833 -281 849 -247
+rect -1091 -349 -1057 -287
+rect 1057 -349 1091 -287
+rect -1091 -383 -995 -349
+rect 995 -383 1091 -349
+<< viali >>
+rect -833 247 -799 281
+rect -641 247 -607 281
+rect -449 247 -415 281
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect 511 247 545 281
+rect 703 247 737 281
+rect 895 247 929 281
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+rect -929 -281 -895 -247
+rect -737 -281 -703 -247
+rect -545 -281 -511 -247
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+rect 415 -281 449 -247
+rect 607 -281 641 -247
+rect 799 -281 833 -247
+<< metal1 >>
+rect -845 281 -787 287
+rect -845 247 -833 281
+rect -799 247 -787 281
+rect -845 241 -787 247
+rect -653 281 -595 287
+rect -653 247 -641 281
+rect -607 247 -595 281
+rect -653 241 -595 247
+rect -461 281 -403 287
+rect -461 247 -449 281
+rect -415 247 -403 281
+rect -461 241 -403 247
+rect -269 281 -211 287
+rect -269 247 -257 281
+rect -223 247 -211 281
+rect -269 241 -211 247
+rect -77 281 -19 287
+rect -77 247 -65 281
+rect -31 247 -19 281
+rect -77 241 -19 247
+rect 115 281 173 287
+rect 115 247 127 281
+rect 161 247 173 281
+rect 115 241 173 247
+rect 307 281 365 287
+rect 307 247 319 281
+rect 353 247 365 281
+rect 307 241 365 247
+rect 499 281 557 287
+rect 499 247 511 281
+rect 545 247 557 281
+rect 499 241 557 247
+rect 691 281 749 287
+rect 691 247 703 281
+rect 737 247 749 281
+rect 691 241 749 247
+rect 883 281 941 287
+rect 883 247 895 281
+rect 929 247 941 281
+rect 883 241 941 247
+rect -983 188 -937 200
+rect -983 -188 -977 188
+rect -943 -188 -937 188
+rect -983 -200 -937 -188
+rect -887 188 -841 200
+rect -887 -188 -881 188
+rect -847 -188 -841 188
+rect -887 -200 -841 -188
+rect -791 188 -745 200
+rect -791 -188 -785 188
+rect -751 -188 -745 188
+rect -791 -200 -745 -188
+rect -695 188 -649 200
+rect -695 -188 -689 188
+rect -655 -188 -649 188
+rect -695 -200 -649 -188
+rect -599 188 -553 200
+rect -599 -188 -593 188
+rect -559 -188 -553 188
+rect -599 -200 -553 -188
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect 553 188 599 200
+rect 553 -188 559 188
+rect 593 -188 599 188
+rect 553 -200 599 -188
+rect 649 188 695 200
+rect 649 -188 655 188
+rect 689 -188 695 188
+rect 649 -200 695 -188
+rect 745 188 791 200
+rect 745 -188 751 188
+rect 785 -188 791 188
+rect 745 -200 791 -188
+rect 841 188 887 200
+rect 841 -188 847 188
+rect 881 -188 887 188
+rect 841 -200 887 -188
+rect 937 188 983 200
+rect 937 -188 943 188
+rect 977 -188 983 188
+rect 937 -200 983 -188
+rect -941 -247 -883 -241
+rect -941 -281 -929 -247
+rect -895 -281 -883 -247
+rect -941 -287 -883 -281
+rect -749 -247 -691 -241
+rect -749 -281 -737 -247
+rect -703 -281 -691 -247
+rect -749 -287 -691 -281
+rect -557 -247 -499 -241
+rect -557 -281 -545 -247
+rect -511 -281 -499 -247
+rect -557 -287 -499 -281
+rect -365 -247 -307 -241
+rect -365 -281 -353 -247
+rect -319 -281 -307 -247
+rect -365 -287 -307 -281
+rect -173 -247 -115 -241
+rect -173 -281 -161 -247
+rect -127 -281 -115 -247
+rect -173 -287 -115 -281
+rect 19 -247 77 -241
+rect 19 -281 31 -247
+rect 65 -281 77 -247
+rect 19 -287 77 -281
+rect 211 -247 269 -241
+rect 211 -281 223 -247
+rect 257 -281 269 -247
+rect 211 -287 269 -281
+rect 403 -247 461 -241
+rect 403 -281 415 -247
+rect 449 -281 461 -247
+rect 403 -287 461 -281
+rect 595 -247 653 -241
+rect 595 -281 607 -247
+rect 641 -281 653 -247
+rect 595 -287 653 -281
+rect 787 -247 845 -241
+rect 787 -281 799 -247
+rect 833 -281 845 -247
+rect 787 -287 845 -281
+<< properties >>
+string FIXED_BBOX -1074 -366 1074 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 1 nf 20 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.ext
new file mode 100644
index 0000000..ec9d643
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.ext
@@ -0,0 +1,66 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_483_n200#" 1513 0 483 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_355_n200#" 1513 0 355 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_227_n200#" 1513 0 227 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_99_n200#" 1513 0 99 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n157_n200#" 1513 0 -157 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n285_n200#" 1513 0 -285 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n413_n200#" 1513 0 -413 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n541_n200#" 1513 0 -541 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_413_n297#" 499 0 413 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_285_n297#" 499 0 285 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_157_n297#" 499 0 157 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_29_n297#" 499 0 29 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_n99_n297#" 499 0 -99 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_n227_n297#" 499 0 -227 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_n355_n297#" 499 0 -355 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "a_n483_n297#" 499 0 -483 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41580 1328 0 0 4760 416 5704 432 0 0 0 0 0 0 0 0 0 0
+node "w_n679_n419#" 16771 3414.01 -679 -419 nw 0 0 0 0 1138004 4392 0 0 134912 7936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134912 7936 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n99_n297#" "a_n227_n297#" 141.126
+cap "w_n679_n419#" "a_n29_n200#" 20.5145
+cap "w_n679_n419#" "a_483_n200#" 163.292
+cap "w_n679_n419#" "a_29_n297#" 146.503
+cap "a_157_n297#" "a_29_n297#" 141.126
+cap "a_n355_n297#" "w_n679_n419#" 146.503
+cap "a_355_n200#" "a_483_n200#" 301.532
+cap "w_n679_n419#" "a_285_n297#" 146.503
+cap "a_157_n297#" "a_285_n297#" 141.126
+cap "w_n679_n419#" "a_n157_n200#" 20.5145
+cap "w_n679_n419#" "a_n227_n297#" 146.503
+cap "a_n99_n297#" "w_n679_n419#" 146.503
+cap "a_99_n200#" "a_n29_n200#" 301.532
+cap "a_227_n200#" "w_n679_n419#" 20.5145
+cap "a_n355_n297#" "a_n483_n297#" 141.126
+cap "a_285_n297#" "a_413_n297#" 141.126
+cap "a_n285_n200#" "a_n157_n200#" 301.532
+cap "a_355_n200#" "a_227_n200#" 301.532
+cap "a_n413_n200#" "w_n679_n419#" 20.5145
+cap "w_n679_n419#" "a_157_n297#" 146.503
+cap "a_n157_n200#" "a_n29_n200#" 301.532
+cap "a_99_n200#" "a_227_n200#" 301.532
+cap "a_355_n200#" "w_n679_n419#" 20.5145
+cap "a_n99_n297#" "a_29_n297#" 141.126
+cap "a_n355_n297#" "a_n227_n297#" 141.126
+cap "a_n413_n200#" "a_n285_n200#" 301.532
+cap "a_n413_n200#" "a_n541_n200#" 301.532
+cap "w_n679_n419#" "a_413_n297#" 212.583
+cap "a_n285_n200#" "w_n679_n419#" 20.5145
+cap "w_n679_n419#" "a_n541_n200#" 163.292
+cap "w_n679_n419#" "a_n483_n297#" 213.095
+cap "a_99_n200#" "w_n679_n419#" 20.5145
+device msubckt sky130_fd_pr__pfet_01v8_lvt 413 -200 414 -199 l=70 w=400 "w_n679_n419#" "a_413_n297#" 140 0 "a_355_n200#" 400 0 "a_483_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt 285 -200 286 -199 l=70 w=400 "w_n679_n419#" "a_285_n297#" 140 0 "a_227_n200#" 400 0 "a_355_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt 157 -200 158 -199 l=70 w=400 "w_n679_n419#" "a_157_n297#" 140 0 "a_99_n200#" 400 0 "a_227_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt 29 -200 30 -199 l=70 w=400 "w_n679_n419#" "a_29_n297#" 140 0 "a_n29_n200#" 400 0 "a_99_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt -99 -200 -98 -199 l=70 w=400 "w_n679_n419#" "a_n99_n297#" 140 0 "a_n157_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt -227 -200 -226 -199 l=70 w=400 "w_n679_n419#" "a_n227_n297#" 140 0 "a_n285_n200#" 400 0 "a_n157_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt -355 -200 -354 -199 l=70 w=400 "w_n679_n419#" "a_n355_n297#" 140 0 "a_n413_n200#" 400 0 "a_n285_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt -483 -200 -482 -199 l=70 w=400 "w_n679_n419#" "a_n483_n297#" 140 0 "a_n541_n200#" 400 0 "a_n413_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.mag
new file mode 100644
index 0000000..5859eaa
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_4LMUGG.mag
@@ -0,0 +1,399 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< error_p >>
+rect -479 281 -417 287
+rect -351 281 -289 287
+rect -223 281 -161 287
+rect -95 281 -33 287
+rect 33 281 95 287
+rect 161 281 223 287
+rect 289 281 351 287
+rect 417 281 479 287
+rect -479 247 -467 281
+rect -351 247 -339 281
+rect -223 247 -211 281
+rect -95 247 -83 281
+rect 33 247 45 281
+rect 161 247 173 281
+rect 289 247 301 281
+rect 417 247 429 281
+rect -479 241 -417 247
+rect -351 241 -289 247
+rect -223 241 -161 247
+rect -95 241 -33 247
+rect 33 241 95 247
+rect 161 241 223 247
+rect 289 241 351 247
+rect 417 241 479 247
+rect -479 -247 -417 -241
+rect -351 -247 -289 -241
+rect -223 -247 -161 -241
+rect -95 -247 -33 -241
+rect 33 -247 95 -241
+rect 161 -247 223 -241
+rect 289 -247 351 -241
+rect 417 -247 479 -241
+rect -479 -281 -467 -247
+rect -351 -281 -339 -247
+rect -223 -281 -211 -247
+rect -95 -281 -83 -247
+rect 33 -281 45 -247
+rect 161 -281 173 -247
+rect 289 -281 301 -247
+rect 417 -281 429 -247
+rect -479 -287 -417 -281
+rect -351 -287 -289 -281
+rect -223 -287 -161 -281
+rect -95 -287 -33 -281
+rect 33 -287 95 -281
+rect 161 -287 223 -281
+rect 289 -287 351 -281
+rect 417 -287 479 -281
+<< nwell >>
+rect -679 -419 679 419
+<< pmoslvt >>
+rect -483 -200 -413 200
+rect -355 -200 -285 200
+rect -227 -200 -157 200
+rect -99 -200 -29 200
+rect 29 -200 99 200
+rect 157 -200 227 200
+rect 285 -200 355 200
+rect 413 -200 483 200
+<< pdiff >>
+rect -541 188 -483 200
+rect -541 -188 -529 188
+rect -495 -188 -483 188
+rect -541 -200 -483 -188
+rect -413 188 -355 200
+rect -413 -188 -401 188
+rect -367 -188 -355 188
+rect -413 -200 -355 -188
+rect -285 188 -227 200
+rect -285 -188 -273 188
+rect -239 -188 -227 188
+rect -285 -200 -227 -188
+rect -157 188 -99 200
+rect -157 -188 -145 188
+rect -111 -188 -99 188
+rect -157 -200 -99 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 99 188 157 200
+rect 99 -188 111 188
+rect 145 -188 157 188
+rect 99 -200 157 -188
+rect 227 188 285 200
+rect 227 -188 239 188
+rect 273 -188 285 188
+rect 227 -200 285 -188
+rect 355 188 413 200
+rect 355 -188 367 188
+rect 401 -188 413 188
+rect 355 -200 413 -188
+rect 483 188 541 200
+rect 483 -188 495 188
+rect 529 -188 541 188
+rect 483 -200 541 -188
+<< pdiffc >>
+rect -529 -188 -495 188
+rect -401 -188 -367 188
+rect -273 -188 -239 188
+rect -145 -188 -111 188
+rect -17 -188 17 188
+rect 111 -188 145 188
+rect 239 -188 273 188
+rect 367 -188 401 188
+rect 495 -188 529 188
+<< nsubdiff >>
+rect -643 349 -547 383
+rect 547 349 643 383
+rect -643 287 -609 349
+rect 609 287 643 349
+rect -643 -349 -609 -287
+rect 609 -349 643 -287
+rect -643 -383 -547 -349
+rect 547 -383 643 -349
+<< nsubdiffcont >>
+rect -547 349 547 383
+rect -643 -287 -609 287
+rect 609 -287 643 287
+rect -547 -383 547 -349
+<< poly >>
+rect -483 281 -413 297
+rect -483 247 -467 281
+rect -429 247 -413 281
+rect -483 200 -413 247
+rect -355 281 -285 297
+rect -355 247 -339 281
+rect -301 247 -285 281
+rect -355 200 -285 247
+rect -227 281 -157 297
+rect -227 247 -211 281
+rect -173 247 -157 281
+rect -227 200 -157 247
+rect -99 281 -29 297
+rect -99 247 -83 281
+rect -45 247 -29 281
+rect -99 200 -29 247
+rect 29 281 99 297
+rect 29 247 45 281
+rect 83 247 99 281
+rect 29 200 99 247
+rect 157 281 227 297
+rect 157 247 173 281
+rect 211 247 227 281
+rect 157 200 227 247
+rect 285 281 355 297
+rect 285 247 301 281
+rect 339 247 355 281
+rect 285 200 355 247
+rect 413 281 483 297
+rect 413 247 429 281
+rect 467 247 483 281
+rect 413 200 483 247
+rect -483 -247 -413 -200
+rect -483 -281 -467 -247
+rect -429 -281 -413 -247
+rect -483 -297 -413 -281
+rect -355 -247 -285 -200
+rect -355 -281 -339 -247
+rect -301 -281 -285 -247
+rect -355 -297 -285 -281
+rect -227 -247 -157 -200
+rect -227 -281 -211 -247
+rect -173 -281 -157 -247
+rect -227 -297 -157 -281
+rect -99 -247 -29 -200
+rect -99 -281 -83 -247
+rect -45 -281 -29 -247
+rect -99 -297 -29 -281
+rect 29 -247 99 -200
+rect 29 -281 45 -247
+rect 83 -281 99 -247
+rect 29 -297 99 -281
+rect 157 -247 227 -200
+rect 157 -281 173 -247
+rect 211 -281 227 -247
+rect 157 -297 227 -281
+rect 285 -247 355 -200
+rect 285 -281 301 -247
+rect 339 -281 355 -247
+rect 285 -297 355 -281
+rect 413 -247 483 -200
+rect 413 -281 429 -247
+rect 467 -281 483 -247
+rect 413 -297 483 -281
+<< polycont >>
+rect -467 247 -429 281
+rect -339 247 -301 281
+rect -211 247 -173 281
+rect -83 247 -45 281
+rect 45 247 83 281
+rect 173 247 211 281
+rect 301 247 339 281
+rect 429 247 467 281
+rect -467 -281 -429 -247
+rect -339 -281 -301 -247
+rect -211 -281 -173 -247
+rect -83 -281 -45 -247
+rect 45 -281 83 -247
+rect 173 -281 211 -247
+rect 301 -281 339 -247
+rect 429 -281 467 -247
+<< locali >>
+rect -643 349 -547 383
+rect 547 349 643 383
+rect -643 287 -609 349
+rect 609 287 643 349
+rect -483 247 -467 281
+rect -429 247 -413 281
+rect -355 247 -339 281
+rect -301 247 -285 281
+rect -227 247 -211 281
+rect -173 247 -157 281
+rect -99 247 -83 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 83 247 99 281
+rect 157 247 173 281
+rect 211 247 227 281
+rect 285 247 301 281
+rect 339 247 355 281
+rect 413 247 429 281
+rect 467 247 483 281
+rect -529 188 -495 204
+rect -529 -204 -495 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -273 188 -239 204
+rect -273 -204 -239 -188
+rect -145 188 -111 204
+rect -145 -204 -111 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 111 188 145 204
+rect 111 -204 145 -188
+rect 239 188 273 204
+rect 239 -204 273 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 495 188 529 204
+rect 495 -204 529 -188
+rect -483 -281 -467 -247
+rect -429 -281 -413 -247
+rect -355 -281 -339 -247
+rect -301 -281 -285 -247
+rect -227 -281 -211 -247
+rect -173 -281 -157 -247
+rect -99 -281 -83 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 83 -281 99 -247
+rect 157 -281 173 -247
+rect 211 -281 227 -247
+rect 285 -281 301 -247
+rect 339 -281 355 -247
+rect 413 -281 429 -247
+rect 467 -281 483 -247
+rect -643 -349 -609 -287
+rect 609 -349 643 -287
+rect -643 -383 -547 -349
+rect 547 -383 643 -349
+<< viali >>
+rect -467 247 -429 281
+rect -339 247 -301 281
+rect -211 247 -173 281
+rect -83 247 -45 281
+rect 45 247 83 281
+rect 173 247 211 281
+rect 301 247 339 281
+rect 429 247 467 281
+rect -529 -188 -495 188
+rect -401 -188 -367 188
+rect -273 -188 -239 188
+rect -145 -188 -111 188
+rect -17 -188 17 188
+rect 111 -188 145 188
+rect 239 -188 273 188
+rect 367 -188 401 188
+rect 495 -188 529 188
+rect -467 -281 -429 -247
+rect -339 -281 -301 -247
+rect -211 -281 -173 -247
+rect -83 -281 -45 -247
+rect 45 -281 83 -247
+rect 173 -281 211 -247
+rect 301 -281 339 -247
+rect 429 -281 467 -247
+<< metal1 >>
+rect -479 281 -417 287
+rect -479 247 -467 281
+rect -429 247 -417 281
+rect -479 241 -417 247
+rect -351 281 -289 287
+rect -351 247 -339 281
+rect -301 247 -289 281
+rect -351 241 -289 247
+rect -223 281 -161 287
+rect -223 247 -211 281
+rect -173 247 -161 281
+rect -223 241 -161 247
+rect -95 281 -33 287
+rect -95 247 -83 281
+rect -45 247 -33 281
+rect -95 241 -33 247
+rect 33 281 95 287
+rect 33 247 45 281
+rect 83 247 95 281
+rect 33 241 95 247
+rect 161 281 223 287
+rect 161 247 173 281
+rect 211 247 223 281
+rect 161 241 223 247
+rect 289 281 351 287
+rect 289 247 301 281
+rect 339 247 351 281
+rect 289 241 351 247
+rect 417 281 479 287
+rect 417 247 429 281
+rect 467 247 479 281
+rect 417 241 479 247
+rect -535 188 -489 200
+rect -535 -188 -529 188
+rect -495 -188 -489 188
+rect -535 -200 -489 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -279 188 -233 200
+rect -279 -188 -273 188
+rect -239 -188 -233 188
+rect -279 -200 -233 -188
+rect -151 188 -105 200
+rect -151 -188 -145 188
+rect -111 -188 -105 188
+rect -151 -200 -105 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 105 188 151 200
+rect 105 -188 111 188
+rect 145 -188 151 188
+rect 105 -200 151 -188
+rect 233 188 279 200
+rect 233 -188 239 188
+rect 273 -188 279 188
+rect 233 -200 279 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 489 188 535 200
+rect 489 -188 495 188
+rect 529 -188 535 188
+rect 489 -200 535 -188
+rect -479 -247 -417 -241
+rect -479 -281 -467 -247
+rect -429 -281 -417 -247
+rect -479 -287 -417 -281
+rect -351 -247 -289 -241
+rect -351 -281 -339 -247
+rect -301 -281 -289 -247
+rect -351 -287 -289 -281
+rect -223 -247 -161 -241
+rect -223 -281 -211 -247
+rect -173 -281 -161 -247
+rect -223 -287 -161 -281
+rect -95 -247 -33 -241
+rect -95 -281 -83 -247
+rect -45 -281 -33 -247
+rect -95 -287 -33 -281
+rect 33 -247 95 -241
+rect 33 -281 45 -247
+rect 83 -281 95 -247
+rect 33 -287 95 -281
+rect 161 -247 223 -241
+rect 161 -281 173 -247
+rect 211 -281 223 -247
+rect 161 -287 223 -281
+rect 289 -247 351 -241
+rect 289 -281 301 -247
+rect 339 -281 351 -247
+rect 289 -287 351 -281
+rect 417 -247 479 -241
+rect 417 -281 429 -247
+rect 467 -281 479 -247
+rect 417 -287 479 -281
+<< properties >>
+string FIXED_BBOX -626 -366 626 366
+string gencell sky130_fd_pr__pfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.35 m 1 nf 8 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.35 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.ext b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.ext
new file mode 100644
index 0000000..f2b3a2c
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.ext
@@ -0,0 +1,24 @@
+timestamp 1653925904
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_229_n200#" 1513 0 229 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n200#" 1513 0 -287 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n297#" 324 0 29 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n297#" 324 0 -229 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1588 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n425_n419#" 12227 2136.9 -425 -419 nw 0 0 0 0 712300 3376 0 0 100368 5904 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100368 5904 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n200#" "a_n287_n200#" 120.623
+cap "w_n425_n419#" "a_229_n200#" 163.497
+cap "a_29_n297#" "w_n425_n419#" 469.452
+cap "w_n425_n419#" "a_n287_n200#" 163.497
+cap "a_n29_n200#" "w_n425_n419#" 20.9248
+cap "a_29_n297#" "a_n229_n297#" 141.126
+cap "a_n29_n200#" "a_229_n200#" 120.623
+cap "w_n425_n419#" "a_n229_n297#" 469.963
+device msubckt sky130_fd_pr__pfet_01v8_lvt 29 -200 30 -199 l=200 w=400 "w_n425_n419#" "a_29_n297#" 400 0 "a_n29_n200#" 400 0 "a_229_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8_lvt -229 -200 -228 -199 l=200 w=400 "w_n425_n419#" "a_n229_n297#" 400 0 "a_n287_n200#" 400 0 "a_n29_n200#" 400 0
diff --git a/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.mag b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.mag
new file mode 100644
index 0000000..b1ebf9f
--- /dev/null
+++ b/mag/feedback/sky130_fd_pr__pfet_01v8_lvt_LKHJAY.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1653925904
+<< nwell >>
+rect -425 -419 425 419
+<< pmoslvt >>
+rect -229 -200 -29 200
+rect 29 -200 229 200
+<< pdiff >>
+rect -287 188 -229 200
+rect -287 -188 -275 188
+rect -241 -188 -229 188
+rect -287 -200 -229 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 229 188 287 200
+rect 229 -188 241 188
+rect 275 -188 287 188
+rect 229 -200 287 -188
+<< pdiffc >>
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+<< nsubdiff >>
+rect -389 349 -293 383
+rect 293 349 389 383
+rect -389 287 -355 349
+rect 355 287 389 349
+rect -389 -349 -355 -287
+rect 355 -349 389 -287
+rect -389 -383 -293 -349
+rect 293 -383 389 -349
+<< nsubdiffcont >>
+rect -293 349 293 383
+rect -389 -287 -355 287
+rect 355 -287 389 287
+rect -293 -383 293 -349
+<< poly >>
+rect -229 281 -29 297
+rect -229 247 -213 281
+rect -45 247 -29 281
+rect -229 200 -29 247
+rect 29 281 229 297
+rect 29 247 45 281
+rect 213 247 229 281
+rect 29 200 229 247
+rect -229 -247 -29 -200
+rect -229 -281 -213 -247
+rect -45 -281 -29 -247
+rect -229 -297 -29 -281
+rect 29 -247 229 -200
+rect 29 -281 45 -247
+rect 213 -281 229 -247
+rect 29 -297 229 -281
+<< polycont >>
+rect -213 247 -45 281
+rect 45 247 213 281
+rect -213 -281 -45 -247
+rect 45 -281 213 -247
+<< locali >>
+rect -389 349 -293 383
+rect 293 349 389 383
+rect -389 287 -355 349
+rect 355 287 389 349
+rect -229 247 -213 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 213 247 229 281
+rect -275 188 -241 204
+rect -275 -204 -241 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 241 188 275 204
+rect 241 -204 275 -188
+rect -229 -281 -213 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 213 -281 229 -247
+rect -389 -349 -355 -287
+rect 355 -349 389 -287
+rect -389 -383 -293 -349
+rect 293 -383 389 -349
+<< viali >>
+rect -213 247 -45 281
+rect 45 247 213 281
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+rect -213 -281 -45 -247
+rect 45 -281 213 -247
+<< metal1 >>
+rect -225 281 -33 287
+rect -225 247 -213 281
+rect -45 247 -33 281
+rect -225 241 -33 247
+rect 33 281 225 287
+rect 33 247 45 281
+rect 213 247 225 281
+rect 33 241 225 247
+rect -281 188 -235 200
+rect -281 -188 -275 188
+rect -241 -188 -235 188
+rect -281 -200 -235 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 235 188 281 200
+rect 235 -188 241 188
+rect 275 -188 281 188
+rect 235 -200 281 -188
+rect -225 -247 -33 -241
+rect -225 -281 -213 -247
+rect -45 -281 -33 -247
+rect -225 -287 -33 -281
+rect 33 -247 225 -241
+rect 33 -281 45 -247
+rect 213 -281 225 -247
+rect 33 -287 225 -281
+<< properties >>
+string FIXED_BBOX -372 -366 372 366
+string gencell sky130_fd_pr__pfet_01v8_lvt
+string library sky130
+string parameters w 2 l 1 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.35 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/.magicrc b/mag/isource/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/isource/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/isource/comp.out b/mag/isource/comp.out
new file mode 100644
index 0000000..4df286d
--- /dev/null
+++ b/mag/isource/comp.out
@@ -0,0 +1,28 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+
+Class ../../xschem/bias/low_pvt_source.spice (0):  Merged 1 parallel devices.
+Class ../../xschem/bias/low_pvt_source.spice (0):  Merged 12 series devices.
+Class isource_flat.spice (1):  Merged 303 parallel devices.
+Class isource_flat.spice (1):  Merged 12 series devices.
+Subcircuit summary:
+Circuit 1: ../../xschem/bias/low_pvt_sourc |Circuit 2: isource_flat.spice              
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__pfet_01v8 (109->9)           |sky130_fd_pr__pfet_01v8 (109->9)           
+sky130_fd_pr__nfet_01v8 (124->7)           |sky130_fd_pr__nfet_01v8 (124->7)           
+sky130_fd_pr__nfet_01v8_lvt (90->5)        |sky130_fd_pr__nfet_01v8_lvt (90->5)        
+sky130_fd_pr__cap_mim_m3_1 (1)             |sky130_fd_pr__cap_mim_m3_1 (1)             
+sky130_fd_pr__cap_mim_m3_2 (2->1)          |sky130_fd_pr__cap_mim_m3_2 (2->1)          
+sky130_fd_pr__res_xhigh_po_1p41 (15->3)    |sky130_fd_pr__res_xhigh_po_1p41 (15->3)    
+Number of devices: 26                      |Number of devices: 26                      
+Number of nets: 19                         |Number of nets: 19                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+Cells have no pins;  pin matching not needed.
+Device classes ../../xschem/bias/low_pvt_source.spice and isource_flat.spice are equivalent.
+Circuits match uniquely.
diff --git a/mag/isource/isource.ext b/mag/isource/isource.ext
new file mode 100644
index 0000000..e4499a7
--- /dev/null
+++ b/mag/isource/isource.ext
@@ -0,0 +1,1946 @@
+timestamp 1654695234
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use isource_conv isource_conv_0 1 0 9200 0 1 -6200
+use isource_conv_tsmal_nwell isource_conv_tsmal_nwell_0 1 0 12044 0 1 -1430
+use isource_out isource_out_0 1 0 -4300 0 1 -13810
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 1 0 7151 0 1 1700
+use isource_cmirror#0 isource_cmirror_2 1 0 18900 0 1 9740
+use isource_cmirror#0 isource_cmirror_3 1 0 18900 0 1 7480
+use isource_diffamp isource_diffamp_0 1 0 -280 0 1 16996
+use isource_diffamp isource_diffamp_1 1 0 -280 0 1 21120
+use isource_startup isource_startup_0 1 0 10820 0 1 13700
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ#0 sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0 1 0 19490 0 1 10040
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 1 0 7151 0 1 8700
+use isource_ref isource_ref_0 1 0 20 0 1 40
+port "I_ref" 2 14600 -4600 15000 -4200 m3
+port "VN" 3 15800 -4600 16200 -4200 m5
+port "VP" 1 16940 -4640 17440 -4120 m5
+node "m5_9000_4420#" 0 757.275 9000 4420 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1317600 4840 0 0
+node "m4_11900_n1374#" 1 762.082 11900 -1374 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148000 4148 0 0 0 0
+node "m4_9000_4800#" 0 590.548 9000 4800 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1003600 4080 0 0 0 0
+node "m4_20800_11820#" 0 210.944 20800 11820 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200000 1800 0 0 0 0
+node "m3_4100_n1730#" 0 4574.23 4100 -1730 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5871000 13460 0 0 0 0 0 0
+node "m3_18880_11840#" 0 248.99 18880 11840 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132000 1720 0 0 0 0 0 0
+node "m3_9000_4420#" 0 1399.43 9000 4420 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1317600 4840 0 0 0 0 0 0
+node "VM12D" 0 237.001 11380 7260 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54000 960 0 0 0 0 0 0
+node "VM3D" 0 507.354 16950 -1640 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208800 2220 0 0 0 0 0 0 0 0
+node "I_ref" 2 5369.41 14600 -4600 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35200 760 1893400 17492 0 0 0 0 0 0
+node "m2_19160_1520#" 5 2194.9 19160 1520 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 722400 10600 0 0 0 0 0 0 0 0
+node "m2_12720_6920#" 0 170.557 12720 6920 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128000 1680 0 0 0 0 0 0 0 0
+node "VM14D" 0 159.325 18240 7400 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72800 1080 0 0 0 0 0 0 0 0
+node "m2_12140_7550#" 0 830.146 12140 7550 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120000 1600 46200 860 0 0 0 0 0 0
+node "VN" 1 7878.9 15800 -4600 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1725920 5592 770800 3520 781200 3540 757884 3488 13962592 23888 0 0
+node "m1_18800_490#" 3 2278.01 18800 490 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 832000 9640 0 0 0 0 0 0 0 0 0 0
+node "VM22D" 0 207.297 16290 580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 108100 1400 0 0 0 0 0 0 0 0 0 0
+node "VM3G" 1 2089 14040 -1310 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 906500 6820 0 0 0 0 0 0 0 0 0 0
+node "m1_12920_6250#" 1 44.1203 12920 6250 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27600 1040 0 0 0 0 0 0 0 0 0 0
+node "m1_17610_7400#" 1 316.91 17610 7400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106000 1520 50400 920 0 0 0 0 0 0 0 0
+node "VM12G" 0 211.309 13430 7200 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50400 920 0 0 0 0 0 0 0 0 0 0
+node "m1_12930_7180#" 1 32.2679 12930 7180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27600 1040 0 0 0 0 0 0 0 0 0 0
+node "m1_17420_10230#" 0 0 17420 10230 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15600 500 0 0 0 0 0 0 0 0 0 0
+node "VM9D" 2 841.097 14900 11260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 305200 4640 0 0 0 0 0 0 0 0 0 0
+node "VM11D" 4 4564.55 12320 13620 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 88200 1920 1816836 10312 871840 8930 0 0 0 0 0 0
+node "VM2D" 2 2759.57 13970 13980 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47064 1032 3260884 13104 190000 2080 0 0 0 0 0 0
+node "VM8D" 10 6464.75 12970 14080 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 888400 10800 1446000 12980 1752900 20710 0 0 0 0 0 0
+node "m1_17420_14360#" 4 2231.2 17420 14360 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70800 1420 1042880 10832 0 0 0 0 0 0 0 0
+node "VP" 3 37190.7 16940 -4640 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 371600 3940 6739200 62340 927630 10100 761384 5046 30120656 80632 0 0
+node "li_20760_n4780#" 18 1451.07 20760 -4780 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 303600 2240 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_18260_n2140#" 62 523.985 18260 -2140 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124800 1880 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_13060_n2140#" 62 488.681 13060 -2140 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124800 1880 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_16446_5046#" 25 878.221 16446 5046 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17088 548 21816 620 348152 3752 0 0 0 0 0 0 0 0
+node "li_18880_n1560#" 2186 4852.19 18880 -1560 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 731100 22480 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_17920_6300#" 20 1069.13 17920 6300 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21600 600 28368 688 468600 3540 98600 1260 0 0 0 0 0 0
+node "li_18900_7440#" 300 1071.01 18900 7440 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 189900 4400 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_18900_9700#" 296 1078.96 18900 9700 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 194100 4420 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_12880_n860#" 13 18690.1 12880 -860 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8470500 50540 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_16400_5066#" 7571 0 16400 5066 pw 2989224 7172 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14566_9082#" 5632 0 14566 9082 pw 7546224 11072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14566_13206#" 5632 0 14566 13206 pw 7546224 11072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "a_8476_13900#" 0 0 8476 13900 ppd 0 0 0 0 0 0 0 0 0 0 2191440 5936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20292584 98900 893088 5488 1284000 9840 2903000 28220 3278816 29784 21032400 69528 0 0
+cap "VM14D" "m1_17610_7400#" 23.1045
+cap "VM8D" "m1_17420_14360#" 1276.01
+cap "m4_11900_n1374#" "VP" 757.386
+cap "VN" "I_ref" 1634.88
+cap "m1_12920_6250#" "m1_12930_7180#" 19.0862
+cap "m1_12930_7180#" "VM12G" 36.9
+cap "VM8D" "li_18900_9700#" 97.7
+cap "VM3D" "VP" 189.48
+cap "m2_12140_7550#" "VM11D" 19.0634
+cap "VM14D" "li_17920_6300#" 34.8431
+cap "w_14566_13206#" "VP" 651.948
+cap "m2_12720_6920#" "VP" 155.081
+cap "VM8D" "w_14566_9082#" 1385.78
+cap "m2_12720_6920#" "li_12880_n860#" 285.655
+cap "m5_9000_4420#" "VP" 359.002
+cap "w_16400_5066#" "m1_17610_7400#" 82.1259
+cap "VM2D" "VP" 16.4953
+cap "VM2D" "li_12880_n860#" 2305.96
+cap "VM14D" "VM8D" 13.0333
+cap "w_14566_13206#" "VM8D" 1879.11
+cap "m4_11900_n1374#" "li_13060_n2140#" 37.6655
+cap "li_16446_5046#" "w_16400_5066#" 198.058
+cap "m2_19160_1520#" "li_18880_n1560#" 167.839
+cap "VM11D" "li_12880_n860#" 77.7076
+cap "w_16400_5066#" "VP" 640.795
+cap "VM2D" "VM8D" 178.806
+cap "VM22D" "li_12880_n860#" 333.627
+cap "VP" "li_18900_7440#" 106.168
+cap "VM8D" "VM11D" 16.9863
+cap "w_14566_13206#" "m1_17420_14360#" 173.549
+cap "li_18260_n2140#" "li_12880_n860#" 75.798
+cap "m2_19160_1520#" "VP" 104.634
+cap "VM3G" "VP" 57.3424
+cap "m3_18880_11840#" "VP" 49.9329
+cap "m1_17420_10230#" "VM8D" 3.80714
+cap "VM3G" "li_12880_n860#" 438.328
+cap "m2_19160_1520#" "li_17920_6300#" 30.2397
+cap "li_18880_n1560#" "li_12880_n860#" 333.846
+cap "VP" "m1_17610_7400#" 62.8818
+cap "m5_9000_4420#" "m4_9000_4800#" 1916.41
+cap "li_18880_n1560#" "m1_18800_490#" 2253.77
+cap "li_17920_6300#" "m1_17610_7400#" 3.43736
+cap "m4_20800_11820#" "VP" 909.259
+cap "VM8D" "li_18900_7440#" 90.706
+cap "VN" "m3_4100_n1730#" 1052.48
+cap "m3_18880_11840#" "VM8D" 21.924
+cap "VP" "li_12880_n860#" 107.098
+cap "m3_9000_4420#" "m4_9000_4800#" 2411.55
+cap "VM8D" "m1_17610_7400#" 20.7121
+cap "VP" "li_17920_6300#" 511.565
+cap "VN" "VP" 1930.69
+cap "m3_18880_11840#" "m1_17420_14360#" 371.916
+cap "VM8D" "VP" 160.39
+cap "VM8D" "li_17920_6300#" 1.67571
+cap "m1_17420_10230#" "w_14566_9082#" 110.025
+cap "m1_12920_6250#" "VP" 115.165
+cap "m1_12920_6250#" "li_12880_n860#" 305.657
+cap "VM12G" "VP" 46.5958
+cap "li_13060_n2140#" "VP" 85.4656
+cap "VM9D" "w_14566_9082#" 152.381
+cap "li_13060_n2140#" "li_12880_n860#" 8.96
+cap "VM11D" "m2_12720_6920#" 19.55
+cap "VP" "m1_17420_14360#" 354.487
+cap "m1_12930_7180#" "VP" 117.011
+cap "m1_12930_7180#" "li_12880_n860#" 301.197
+cap "VM2D" "VM11D" 1521.66
+cap "m5_9000_4420#" "m3_9000_4420#" 154.095
+cap "VM9D" "w_14566_13206#" 144.447
+cap "I_ref" "VP" 414.033
+cap "I_ref" "li_12880_n860#" 457.531
+cap "VP" "li_18900_9700#" 87.6345
+cap "VN" "I_ref" -1.89924
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VN" 8.76065
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VN" 20.2713
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "VN" 2.82961
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "VN" 2.82961
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" 0.665057
+cap "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" 0.604639
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.555556
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 64.1785
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 95.2738
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 95.2738
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 91.1562
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 95.2738
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 95.2738
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -120.847
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 1.46028
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -330.329
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 52.3783
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -195.398
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 95.2738
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 95.2738
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1.90336
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -270.032
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 92.0978
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -1503.82
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -544.097
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 108.083
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.555556
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 0.555556
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -156.677
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "a_8476_13900#" -22.1662
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1.40216
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -11.8585
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 95.2738
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -556.03
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "VP" 479.782
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "VP" -83.7849
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 29.6755
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -1.15097
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" -49.8674
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -3.05947
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "VP" -112.406
+cap "I_ref" "VP" -47.035
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VN" 20.8437
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "VP" 6.50907
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" 776.082
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "I_ref" 154.42
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "VP" 289.003
+cap "VN" "I_ref" -4.0189
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "I_ref" 117.554
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "VP" 230.858
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" 188.938
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "VN" 31.2243
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VN" 48.228
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" -20.2336
+cap "isource_out_0/m1_18730_12160#" "VP" 6.86408
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "VP" 455.386
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "a_8476_13900#" -49.6182
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_18730_12160#" 34.9313
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" -23.0256
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "VP" 2506.33
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "a_8476_13900#" 23.684
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" -59.6356
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 70.3611
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" 0.0144641
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_18730_12160#" 0.251121
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "VN" 2.57237
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 14.2655
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.133685
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -0.13064
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 0.621089
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 0.198457
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 38.708
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7732
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 31.3267
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.375616
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 0.198457
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 74.6527
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 59.8349
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 19.8439
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 624.501
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "m3_4100_n1730#" 517.649
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -58.9106
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -27.6892
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 45.9346
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 0.18988
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 63.0494
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 31.4989
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "m3_4100_n1730#" 904.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -655.895
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -631.389
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_4100_n1730#" 149.518
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 19.9716
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 803.395
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -70.6699
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -404.671
+cap "m3_4100_n1730#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2633.56
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 34.4054
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "m3_4100_n1730#" 28.1059
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -352.488
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -307.814
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_4100_n1730#" -1158.58
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -988.197
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -2600.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.5487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m3_4100_n1730#" -719.781
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 486.94
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "m3_4100_n1730#" -181.772
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "m3_4100_n1730#" -1931.67
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -157.496
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -3220.4
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 12.0908
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 21.1446
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1429.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m3_4100_n1730#" 2054.8
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 0.198457
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -2457.49
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -81.9866
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 1705.28
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 381.115
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "m3_4100_n1730#" 1389.25
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 348.492
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 71.9349
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 0.198457
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 63.0494
+cap "m3_4100_n1730#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 254.331
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 260.799
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "m3_4100_n1730#" 1390.51
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 517.548
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 358.102
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 349.608
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_4100_n1730#" 570.338
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 21.1446
+cap "m3_4100_n1730#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 949.664
+cap "m3_4100_n1730#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3026.36
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 297.163
+cap "m3_4100_n1730#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4308.88
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 21.1446
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 0.198457
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1399.32
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1037.7
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2593.49
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -6.2534
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 169.76
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2405.21
+cap "m3_4100_n1730#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 718.035
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "m3_4100_n1730#" 3743.91
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_4100_n1730#" 28.1059
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1641.15
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1133.16
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -58.3819
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_4100_n1730#" 1706.54
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -87.1082
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -125.991
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "m3_4100_n1730#" 2506.11
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2021.03
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_4100_n1730#" 1632.18
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 12.0908
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "m3_4100_n1730#" 4608.1
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 37.9563
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 101.642
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m3_4100_n1730#" 318.496
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -292.622
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_4100_n1730#" 1490.58
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_4100_n1730#" 620.88
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "m3_4100_n1730#" 2725.88
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -295.567
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 1876.22
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1186.73
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4643.6
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 295.221
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 566.681
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m4_11900_n1374#" 1.56152
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -891.568
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.198457
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m3_4100_n1730#" 1737.72
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 225.67
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "m4_11900_n1374#" 192.777
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 0.198457
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m4_11900_n1374#" -369.901
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 177.814
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "m4_11900_n1374#" -1889.36
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 37.9563
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -19.6011
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -223.341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50487
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "a_8476_13900#" 92.0892
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 12.1827
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "m4_11900_n1374#" 66.6346
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 686.806
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 32.3089
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" 45.4218
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "a_8476_13900#" 0.612378
+cap "a_8476_13900#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -186.958
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "m4_11900_n1374#" -536.225
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -2.89564
+cap "m4_11900_n1374#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 109.112
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 299.535
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 188.422
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -3.17933
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "m4_11900_n1374#" 306.963
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "m4_11900_n1374#" 21.139
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "VP" 343.596
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 1.941
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 76.0811
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 4.64084
+cap "VP" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 101.052
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 15.8273
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" 553.217
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 358.859
+cap "isource_out_0/m1_20970_12680#" "I_ref" 238.075
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "m4_11900_n1374#" 399.225
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "a_8476_13900#" 377.209
+cap "I_ref" "VP" -44.7676
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 641.08
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "I_ref" 241.74
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 1.941
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "I_ref" 348.444
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "a_8476_13900#" -114.687
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/m1_20970_12680#" -89.375
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "I_ref" 280.151
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "I_ref" 361.698
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/m1_20970_12680#" 339.159
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "VP" 266.126
+cap "I_ref" "a_8476_13900#" -48.7524
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -39.4115
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "VP" 281.549
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "a_8476_13900#" 385.642
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VP" 209.974
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" -13.6876
+cap "isource_out_0/m1_18730_12160#" "VP" 152.196
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "VN" 12.0558
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "VP" 271.412
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "a_8476_13900#" 255.684
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 0.0544244
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "a_8476_13900#" -62.0923
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "VP" 1999.75
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 1.57113
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "isource_out_0/m1_18730_12160#" 237.843
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" -69.3536
+cap "isource_out_0/m1_20970_12680#" "a_8476_13900#" 89.8756
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 18.5645
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "isource_out_0/m1_20970_12680#" 0.0200709
+cap "isource_out_0/m1_18730_12160#" "VP" 362.143
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "VP" 496.135
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_18730_12160#" 128.138
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "a_8476_13900#" -40.5559
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/m1_18730_12160#" 113.007
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" -166.919
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "a_8476_13900#" 293.522
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 14.8498
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "a_8476_13900#" 797.073
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 68.509
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "a_8476_13900#" 1670.68
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/m1_20970_12680#" 0.0673276
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "a_8476_13900#" 111.966
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_18730_12160#" 0.0418535
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -53.01
+cap "isource_out_0/m1_20970_12680#" "a_8476_13900#" 454.089
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "a_8476_13900#" 49.2058
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 525.089
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 0.180513
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -109.968
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 4.76109
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -107.525
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -10.5024
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 130.748
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 87.9295
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -163.289
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -132.703
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 127.476
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 202.988
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -8.53734
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -163.293
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 32.7732
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 127.356
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 101.745
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 202.988
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -162.409
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -10.5045
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 96.7224
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 74.6527
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -11.4537
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 55.3429
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 198.877
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 12.0551
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 45.9346
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -148.678
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -156.252
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -345.888
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -4.6975
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 31.4989
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -352.685
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 47.4186
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -10.5046
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 127.499
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -9.96516
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 308.508
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -369.113
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 202.59
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -404.671
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 52.6618
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.67
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2875.26
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -163.68
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 39.9767
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 35.5487
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -120.21
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 202.988
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2282
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 127.476
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -683.393
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -8.87295
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -157.496
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -163.289
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -40.0505
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1344.63
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 333.859
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 260.799
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 202.988
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -163.28
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 864.18
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 381.115
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 70.7096
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 440.037
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -10.5045
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 47.4186
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -163.249
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 127.341
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 612.66
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 552.376
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 349.608
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 672.685
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 453.146
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2593.49
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1641.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 3315.71
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 127.476
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -124.954
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1357.95
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 765.683
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2336.08
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" -8.03878
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -163.289
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 202.988
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1495.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 2986.04
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1133.16
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 52.6618
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -163.252
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1200.12
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 119.583
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 1296.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 818.727
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" -163.28
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 202.988
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2661.23
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 556.712
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 2067.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 566.681
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 486.724
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" -10.5045
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 47.4186
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1154.34
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 127.341
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" -416.52
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -74.9087
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 64.8951
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 155.498
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 202.988
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -9.20087
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -163.289
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" -194.32
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 25.2967
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "a_8476_13900#" 250.789
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "a_8476_13900#" -37.1059
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "a_8476_13900#" 12.4897
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -143.017
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 127.476
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 241.547
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "a_8476_13900#" 59.1299
+cap "a_8476_13900#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 165.688
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 26.114
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 152.643
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 326.146
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 29.5432
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 58.4713
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 26.8259
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1.3712
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 76.6578
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -71.6865
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "a_8476_13900#" -523.547
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 1.6394
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 778.963
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -67.3154
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 12.6253
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 0.0144488
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 2.46783
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "a_8476_13900#" 68.9754
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "a_8476_13900#" -762.693
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 7.71348
+cap "a_8476_13900#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" -21.2064
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 7.71348
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "a_8476_13900#" 368.459
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "I_ref" 65.0997
+cap "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 150.29
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 1.3712
+cap "I_ref" "a_8476_13900#" -0.0447588
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "a_8476_13900#" 383.601
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "isource_out_0/m1_20970_12680#" 4.99235
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 71.4
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 8.89721
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 942.634
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_out_0/m1_20970_12680#" 9.08318
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" -90.0247
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 161.696
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" -126.758
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/m1_20970_12680#" 282.393
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" -40.1995
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" -36.4017
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 359.186
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" -29.3962
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "isource_out_0/m1_20970_12680#" 3.47294
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 343.526
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 193.851
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_out_0/m1_20970_12680#" 0.715116
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 797.127
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 30.8
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "isource_conv_0/m1_9600_7000#" 0.802174
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 153.197
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/m1_20970_12680#" 114.552
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -40.2263
+cap "isource_out_0/m1_20970_12680#" "isource_conv_0/m1_9600_7000#" 9.81847
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/m1_250_820#" 3.59814
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -34.1162
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" -5.60174
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/m1_9600_7000#" 3.4382
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 188.999
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" 1380.6
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" -98.2685
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 84.9431
+cap "isource_out_0/m1_20970_12680#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -14.0446
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 0.0334169
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" 0.325581
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_2/m1_250_820#" 15.683
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -575.863
+cap "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -0.326935
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" 0.325581
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/m1_250_820#" 10.3078
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -20.3702
+cap "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -9.97565
+cap "isource_conv_0/isource_cmirror_2/m1_250_820#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 21.9871
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1.09472
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 0.325581
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 3.88421
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 2.87864
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/m2_11180_13260#" 11.4616
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 5.45471
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 14.2655
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -5.69578
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 55.4626
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 74.7718
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 116.6
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 35.1088
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -11.4537
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 37.7618
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 54.9058
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 10.873
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 45.9346
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.5407
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -658.186
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 167.457
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 31.4989
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 35.743
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 318.289
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -4.6975
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -773.783
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 192.311
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 16.1396
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -74.0083
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 51.6497
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -277.706
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1365.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -91.7093
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -5120.37
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 26.4952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.5487
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -682.213
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 335.256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 349.608
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 1579.18
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 125.026
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 14.6006
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 70.7096
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 625.63
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 933.491
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 37.8422
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 444.122
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 285.225
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 260.799
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1499.32
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 734.262
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1133.16
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 729.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 2923.33
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2593.49
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1641.15
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 453.146
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 3315.71
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 504.796
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1359.02
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 21.1446
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2359.61
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 37.8422
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 5206.66
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 2110.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 1318.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/m1_10190_6860#" 486.724
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 14.6006
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 554.494
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1205.19
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 119.583
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 566.681
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 0.763258
+cap "a_8476_13900#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 4.67922
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 9.98926
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 13.3183
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "a_8476_13900#" 307.509
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 410.563
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 0.358462
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 61.1824
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 619.079
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 4.80637
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 64.8951
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 0.25415
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 37.8422
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 1.23165
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 2.66501
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 2.46783
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -2.81441
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -0.0461507
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 12.7589
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 50.1214
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 4.1328
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 2.72103
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -15.4372
+cap "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 0.808799
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 33.2717
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 8.38387
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1.76473
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 2.72103
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 8.31295
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 4.1328
+cap "isource_out_0/m1_20970_12680#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" 10.4778
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 71.4
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "isource_out_0/m1_20970_12680#" 1.8731
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 25.5277
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -0.816667
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" 0.432574
+cap "isource_out_0/m1_20970_12680#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 20.1853
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "isource_out_0/m1_20970_12680#" 35.6608
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" -0.830943
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_out_0/m1_20970_12680#" 78.2608
+cap "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 3.64052
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/m1_20970_12680#" 1.36756
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/m1_20970_12680#" -20.1101
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" 92.6001
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_conv_0/m1_9600_7000#" -1.23699
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_conv_0/isource_cmirror_2/m1_250_820#" -31.5323
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 6.10031
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/isource_cmirror_2/m1_250_820#" -1.08611
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/m1_20970_12680#" 24.1034
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_conv_0/m1_9600_7000#" -2.79115
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_out_0/m1_20970_12680#" 10.25
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_2/m1_250_820#" -14.2062
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 3.38363
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_conv_0/m1_9600_7000#" -53.0929
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/m1_20970_12680#" 131.942
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" 137.672
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 2.64977
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -606.097
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 115.001
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 3.54582
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_out_0/m1_20970_12680#" 20.4067
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/m1_250_820#" 3.73077
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" 14.8607
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/m1_9600_7000#" 6.1207
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" 0.325581
+cap "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/m1_9600_7000#" 10.1509
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" 11.5267
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1.24
+cap "isource_conv_0/isource_cmirror_2/m1_250_820#" "isource_conv_0/m1_9600_7000#" 1.92879
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#" 0.325581
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 15.9883
+cap "isource_conv_0/m1_9600_7000#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_n997#" 1.2157
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_conv_0/m1_9600_7000#" 0.206974
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_2/m1_250_820#" -23.7218
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" -0.593199
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" 0.325581
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 0.106998
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 0.378014
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 3.88421
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_2/m1_250_820#" 6.10087
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_2/m1_250_820#" -1.40314
+cap "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -48.394
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#" -88.1071
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -13.98
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -4.87217
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 35.1088
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 40.1838
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 30.8209
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 55.4626
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 155.019
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 74.7718
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -5.56776
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -11.4537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 2.42401
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -4.6975
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 31.4989
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 118.023
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 320.713
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -1082.97
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 220.118
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 45.9427
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 45.9346
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 16.1396
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -1100.43
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -354.369
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -7863.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.5487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1365.9
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -34.0316
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.67
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -682.213
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 49.7117
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -150.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 444.122
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 120.889
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1467.51
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 335.256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 260.799
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 349.608
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 70.7096
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3.02795
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 270.685
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 628.658
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2277.92
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 502.857
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4992.74
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1133.16
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 786.924
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3315.71
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1641.15
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 453.146
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5636.3
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 655.16
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1359.02
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2901.32
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1499.32
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 486.724
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 3170.93
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1204.53
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 566.681
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 553.398
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 119.583
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 33.0207
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1307.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 7438.28
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "a_8476_13900#" 67.7608
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "a_8476_13900#" 266.594
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" 0.391
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 193.507
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 241.547
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 1.50535
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 130.332
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 32.8539
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 566.805
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 2.737
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 64.8951
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 0.630935
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 20.8965
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "a_8476_13900#" -287.142
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 5.06423
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 14.8387
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 23.1042
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 21.9116
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -19.981
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" -8.69173
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 16.8622
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 0.917738
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 7.49139
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/isource_cmirror_1/m1_250_820#" 273.7
+cap "isource_conv_0/isource_cmirror_1/m1_250_820#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -61.2969
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -3.88414
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_1/m1_250_820#" 125.84
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" -3.8675
+cap "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 13.41
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 14.4828
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -651.703
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_1/m1_250_820#" -84.6585
+cap "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_1/m1_250_820#" -75.4021
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_1/m1_250_820#" 2.68351
+cap "isource_conv_0/isource_cmirror_1/m1_250_820#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 3.65994
+cap "isource_conv_0/isource_cmirror_1/m1_250_820#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1.25321
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 5.20713
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.250813
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 74.7312
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.50098
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.184302
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 156.784
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -5.72685
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 35.1088
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -0.375616
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 55.4626
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4.425
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 51.625
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -701.917
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -476.139
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -87.7844
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 220.118
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -5.01215
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 31.4989
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 16.1396
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 320.713
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 45.9346
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 64.5058
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -5080.45
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 64.5058
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -34.0316
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -465.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -682.213
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -320.042
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 48.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -87.7844
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1365.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 51.625
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 35.5487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 444.122
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 141.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 260.799
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1582.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 349.608
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 335.256
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 481.876
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 628.658
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -87.7844
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -227.82
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 798.527
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 275.738
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 1359.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 2383.97
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_9000_4420#" 223.728
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1443.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -447.662
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -632.093
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_9000_4420#" -297.187
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 223.228
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 311.889
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 1133.16
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 679.773
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1201.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 4239.17
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_9000_4420#" -448.233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m3_9000_4420#" 374.617
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 89.4603
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 496.017
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 7.20987
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 486.724
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5603.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m3_9000_4420#" 1147.58
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 834.768
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -62.6646
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_9000_4420#" -81.2184
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 1307.44
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 128.723
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 26.3508
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "m3_9000_4420#" -1177.06
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 8.27567
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 70.7434
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 568.497
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 241.547
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 64.8951
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 32.7285
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 190.028
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "m3_9000_4420#" 7.20987
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -16.8576
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 0.391
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 352.413
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 2.737
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 3.93405
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 14.8387
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" -2.78681
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" 29.8986
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 47.9071
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 14.6625
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" -52.1993
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 16.8622
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -22.391
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 2.66946
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 0.305913
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" 1.26199
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_tsmal_nwell_0/w_4356_6496#" 1.92
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 49.6041
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_tsmal_nwell_0/w_4356_6496#" 2.37714
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 198.985
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" 0.5904
+cap "isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" 24.4108
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1.93958
+cap "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 142.498
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" -612.633
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 3.99143
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 12.935
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -28.6398
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 10.249
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 3.83756
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -54.9669
+cap "isource_conv_0/isource_cmirror_0/m1_250_820#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -68.8951
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -11.4537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -2.50098
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 32.7732
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 4.425
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 57.8478
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 82.0508
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.184302
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -0.230554
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 42.1889
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -80.7936
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6.0249
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 4.62838
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 25.6947
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -791.331
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -600.254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 51.625
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -6.4731
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 209.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 54.0086
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 41.9306
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 64.5058
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 51.625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -80.6938
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -402.046
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -4909.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 64.5058
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 80.02
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5.96442
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -320.042
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1292.03
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -28.1205
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 31.7535
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 614.276
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 141.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 1086.44
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 426.136
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 276.464
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -80.6938
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 408.848
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 905.558
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2563.19
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -185.52
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_9000_4420#" 406.828
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1282.81
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -130.848
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_9000_4420#" -129.382
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3172.57
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -104.312
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "m3_9000_4420#" -762.704
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 749.069
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "m3_9000_4420#" 88.8846
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -778.699
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1202.73
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -191.88
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 247.257
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1197.25
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 72.1441
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 546.791
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 110.784
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m3_9000_4420#" -191.688
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 293.748
+cap "m3_9000_4420#" "isource_ref_0/m1_10190_6860#" 113.11
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" -1588.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "isource_ref_0/m1_10190_6860#" -208.433
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 385.468
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 908.721
+cap "m3_9000_4420#" "isource_ref_0/m1_11450_6340#" 16.0836
+cap "m3_9000_4420#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 431.74
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2253.3
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" -55.641
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 105.015
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 1.564
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/m1_11450_6340#" 1.40453
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m2_12700_7520#" 33.8865
+cap "m3_9000_4420#" "isource_ref_0/m1_11450_6340#" 16.0836
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -5.75961
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" -0.68798
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 171.956
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m1_11450_6340#" 175.367
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/m1_11450_6340#" 1.21608
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 477.201
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 64.8951
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_11450_6340#" 67.5744
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" 712.226
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 154.997
+cap "isource_ref_0/m1_11450_6340#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 3.43471
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 0.05865
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 14.8387
+cap "isource_ref_0/m2_12700_7520#" "VP" 90.4789
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -252.091
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 19.2149
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "VP" 125.928
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" -144.834
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/m2_12700_7520#" -0.0543357
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "VP" -82.924
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -163.965
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "VP" 476.119
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" -237.888
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "VP" 718.162
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" -1379.18
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 3.31106
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 0.023921
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "VP" 2.88029
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "VP" 9.55072
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" 30.6893
+cap "isource_conv_0/m1_5350_12620#" "VP" 5.24758
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_tsmal_nwell_0/w_4356_6496#" 35.0852
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 0.263874
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" 1.2993
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "VP" 614.133
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "VP" 94.9291
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" "VP" 5.13071
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 453.041
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/m1_9600_7000#" 18.3548
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" 24.4108
+cap "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" "isource_conv_tsmal_nwell_0/w_4356_6496#" 0.5904
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/m2_11180_13260#" 1.75356
+cap "isource_conv_0/m2_11180_13260#" "VP" 187.2
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_tsmal_nwell_0/w_4356_6496#" -23.8843
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/m1_9600_7000#" 0.251591
+cap "isource_conv_0/m1_5350_12620#" "VP" 82.6936
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_tsmal_nwell_0/w_4356_6496#" -7.87678
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "VP" -83.2176
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_29_n488#" "isource_conv_0/m1_5350_12620#" 0.265193
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 19.1101
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 206.144
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -72.4794
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "isource_conv_0/m2_11180_13260#" 44.4591
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m2_11180_13260#" 44.9419
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_nwell_0/m1_4410_6620#" -4.23936
+cap "isource_conv_0/isource_cmirror_0/m1_250_820#" "isource_conv_0/m1_9600_7000#" 120.664
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/m1_9600_7000#" 4.03127
+cap "isource_conv_0/isource_cmirror_0/m1_250_820#" "VP" -61.2624
+cap "isource_conv_0/m2_11180_13260#" "VP" 278.193
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "isource_conv_0/m2_11180_13260#" -3.05834
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "isource_conv_0/m1_9600_7000#" 10.9278
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" -97.2737
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -5.82311
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "VP" 189.131
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" 95.0873
+cap "VP" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 893.173
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -88.5767
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" 12.5194
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 3.60516
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/m1_9600_7000#" 0.726378
+cap "VP" "isource_conv_0/isource_cmirror_0/m1_250_820#" 321.426
+cap "VP" "isource_conv_0/m1_9600_7000#" 291.794
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1.85579
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -88.6985
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" 454.263
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "VP" 1147.35
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "VP" 426.616
+cap "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "VP" 479.126
+cap "isource_conv_0/isource_cmirror_0/m1_250_820#" "VP" 51.335
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 39.2216
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 126.161
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 68.8025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2.25478
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 76.2533
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 157.894
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 350.529
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" -91.9138
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" -1.7756
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 124.631
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 43.7725
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 26.3057
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -248.436
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -421.42
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 68.1704
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -635.479
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 26.3057
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" -113.717
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 36.5867
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -1.66715
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1907.91
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 139.496
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 325.01
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1096.73
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1104.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1002.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 416.691
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 416.074
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 276.117
+cap "isource_ref_0/m2_12700_7520#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 138.988
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" -173.476
+cap "isource_ref_0/m2_12460_5710#" "isource_ref_0/m2_12700_7520#" -35.125
+cap "isource_ref_0/m1_11450_6340#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 5.38022
+cap "isource_ref_0/m1_11450_6340#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 395.102
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 48.7596
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m1_11450_6340#" -61.6114
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" -36.848
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/m2_12700_7520#" 2.23713
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -187.358
+cap "isource_ref_0/m2_12460_5710#" "isource_ref_0/m2_12700_7520#" 234.476
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12460_5710#" -20.048
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 38.1003
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_ref_0/m2_12700_7520#" -0.0543357
+cap "VP" "isource_ref_0/m2_12460_5710#" 319.801
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "VP" 623.286
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" 266.425
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_0/m2_12700_7520#" 0.24857
+cap "VP" "isource_ref_0/m2_12700_7520#" 99.7387
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "VP" 559.497
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" 6.44484
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" 55.8571
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "VP" 315.998
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "VP" 842.686
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" -94.3297
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "VP" 42.0074
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" -609.856
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" 0.0829835
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" -6.07015
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_diffamp_0/dw_14640_n8120#" 7.16939
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" "VP" 320.089
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 8.00262
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_tsmal_nwell_0/dw_4150_6290#" 3.7876
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_tsmal_nwell_0/w_4356_6496#" -106.663
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_tsmal_nwell_0/w_4356_6496#" 565.824
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 150.915
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" -81.7472
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "isource_conv_0/m1_5350_12620#" -151.369
+cap "isource_conv_0/m1_5350_12620#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" 26.9344
+cap "VP" "isource_conv_tsmal_nwell_0/w_4356_6496#" 756.334
+cap "isource_conv_tsmal_nwell_0/dw_4150_6290#" "VP" 120.262
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "VP" 4.18847
+cap "isource_conv_0/m1_5350_12620#" "VP" 184.562
+cap "isource_conv_0/m2_11180_13260#" "VP" 261.859
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_tsmal_nwell_0/w_4356_6496#" -69.4198
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_29_n488#" "isource_conv_0/m1_5350_12620#" 0.532697
+cap "isource_conv_0/m1_5350_12620#" "VP" 530.608
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/m1_9600_7000#" 0.251591
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "isource_conv_0/m1_5350_12620#" 28.1477
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 15.4714
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" "isource_conv_0/m1_5350_12620#" 0.40249
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/m1_5350_12620#" 183.648
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/m1_5350_12620#" -1110.63
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "VP" -62.9249
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/m2_11180_13260#" 15.0093
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_5350_12620#" -489.174
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 0.875373
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "isource_conv_0/m2_11180_13260#" 208.318
+cap "isource_conv_tsmal_nwell_0/m1_4410_6620#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 2.68069
+cap "isource_conv_0/m1_9600_7000#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 11.7856
+cap "isource_conv_0/isource_cmirror_0/m1_250_820#" "isource_conv_0/m2_11180_13260#" -29.2584
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/m2_11180_13260#" 24.7241
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -26.8757
+cap "VP" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 110.961
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_tsmal_nwell_0/w_4356_6496#" -0.0906904
+cap "VP" "isource_conv_0/m2_11180_13260#" 429.032
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_tsmal_nwell_0/m1_4410_6620#" 338.012
+cap "VP" "isource_conv_tsmal_nwell_0/m1_4410_6620#" 332.56
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 2.99274
+cap "VP" "isource_conv_0/isource_cmirror_0/m1_250_820#" -141.549
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 33.8124
+cap "VP" "isource_conv_0/m1_9600_7000#" 65.2237
+cap "VP" "isource_conv_0/m2_11180_13260#" 607.585
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/m2_11180_13260#" 161.684
+cap "VP" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 624.525
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" -601.24
+cap "VP" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" 880.776
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/m1_9600_7000#" 8.87695
+cap "VP" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 0.486814
+cap "VP" "isource_conv_0/isource_cmirror_0/m1_250_820#" 1359.77
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 22.9649
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 2.29569
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 2.92449
+cap "VP" "isource_conv_0/m1_9600_7000#" 1119.94
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_conv_0/m2_11180_13260#" 45.7442
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m2_11180_13260#" 205.703
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/m1_9600_7000#" 10.6064
+cap "isource_conv_0/m2_11180_13260#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 469.03
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 1.41388
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "VP" 2204.45
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "VP" 1901.84
+cap "VP" "isource_conv_0/isource_cmirror_0/m1_250_820#" 139.636
+cap "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "VP" 534.362
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 556.985
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 30.0278
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -0.958418
+cap "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -9.89235
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_0/isource_cmirror_0/m1_250_820#" -0.000292979
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -8.42829
+cap "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -0.000384017
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 8.2
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#" -2442.48
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -2.05463
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 63.119
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -11.4537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 37.3362
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 86.9268
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 26.192
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 277.616
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -4.6975
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -301.056
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" -369.113
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 95.787
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 21.2627
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 23.6991
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" -2596.29
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 30.9055
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -120.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" -760.552
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 908.148
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 70.7096
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 212.641
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 552.376
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 424.663
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 35.5142
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 350.33
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 844.251
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 3315.71
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 985.33
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 453.146
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 989.642
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 3029.34
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/m1_11450_6340#" 35.5142
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 817.7
+cap "isource_ref_0/m1_10190_6860#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 31.475
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 343.234
+cap "isource_ref_0/m2_12460_5710#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2675.26
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 634.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/m2_12460_5710#" 1158.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 119.583
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12700_7520#" 474.511
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/m2_12700_7520#" 64.8951
+cap "isource_ref_0/m2_12460_5710#" "isource_ref_0/m2_12700_7520#" 10.4992
+cap "isource_ref_0/m1_11450_6340#" "isource_ref_0/m2_12700_7520#" 3.38281
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 137.565
+cap "isource_ref_0/m2_12460_5710#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 93.8922
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m1_11450_6340#" 0.585868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/m2_12460_5710#" 71.1961
+cap "isource_ref_0/m2_12460_5710#" "isource_ref_0/m1_11450_6340#" 2.0749
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_diffamp_0/dw_14640_n8120#" 3.97314
+cap "isource_diffamp_0/w_14846_n7914#" "isource_ref_0/m2_12460_5710#" 22.8892
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_diffamp_0/w_14846_n7914#" -102.505
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_ref_0/m2_12460_5710#" -13.8083
+cap "isource_ref_0/m1_11450_6340#" "isource_diffamp_0/w_14846_n7914#" -0.261222
+cap "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_diffamp_0/dw_14640_n8120#" 11.1425
+cap "isource_ref_0/m2_12460_5710#" "isource_diffamp_0/w_14846_n7914#" 1.65678
+cap "isource_conv_tsmal_nwell_0/w_4356_6496#" "isource_diffamp_0/dw_14640_n8120#" 8.00262
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_tsmal_nwell_0/m1_4500_6730#" 3.7876
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/m1_9600_7000#" 408.308
+cap "isource_conv_0/m1_9600_7000#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 3.31089
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 4.45135
+cap "w_14566_9082#" "isource_conv_0/m1_9600_7000#" -0.150832
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/m1_5350_12620#" 22.0072
+cap "isource_conv_0/m1_9600_7000#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 20.4756
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/m2_11180_13260#" 15.0093
+cap "isource_conv_0/m1_9600_7000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -51.5037
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/m2_11180_13260#" 30.9213
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 0.048681
+cap "isource_conv_0/m1_9600_7000#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 482.785
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 0.875373
+cap "isource_conv_0/m1_9600_7000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -763.361
+cap "isource_conv_0/m1_9600_7000#" "isource_cmirror_2/m1_110_820#" 1.25581
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 367.008
+cap "isource_conv_0/m1_9600_7000#" "isource_conv_tsmal_nwell_0/m1_4410_6620#" 22.6921
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 4.45135
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -6.41086
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_conv_0/m1_9600_7000#" -1016.64
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -0.101265
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" -1.53068
+cap "isource_conv_0/m1_9600_7000#" "VP" 2403.02
+cap "isource_conv_0/m1_9600_7000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 3794.38
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -12.9426
+cap "isource_conv_0/m2_11180_13260#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 45.7442
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/m1_9600_7000#" 635.184
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/m1_9600_7000#" 322.687
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 1760.87
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" 1209.56
+cap "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 17.3778
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "VP" 988.112
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 3301.05
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_0/isource_cmirror_0/m1_250_820#" 2.92449
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 0.138722
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "VP" 1358.92
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 3166.9
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 26.8641
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 2920.3
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "VP" 55.0415
+cap "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 5252.44
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -11.4537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 55.3966
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6.73144
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 35.1088
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 76.1944
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 75.6621
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 117.884
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 16.1396
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 31.4989
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 294.653
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 45.9346
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -643.644
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -773.783
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -4.6975
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 217.45
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 31.8778
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 118.687
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 23.4232
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -242.907
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -36.4948
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.5487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 48.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1365.9
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -277.706
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 24.2667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -682.211
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5086
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 24.335
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 95.0446
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 933.491
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 593.273
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 444.122
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 334.561
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 231.053
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1591.44
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 260.799
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 349.608
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 70.7096
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1133.16
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2593.49
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3002.63
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 440.508
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1499.32
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 31.8778
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3315.71
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 784.166
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 385.83
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1359.02
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2301.25
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1641.15
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 453.146
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 1671.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 552.802
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/m1_10190_6860#" 29.9927
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 630.642
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 119.583
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1204.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 4761.89
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 566.681
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1976.85
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -79.4098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_0/li_n20_n40#" 77.8939
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3.71265
+cap "isource_ref_0/li_n20_n40#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 194.908
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 55.3726
+cap "isource_ref_0/li_n20_n40#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 91.0768
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 64.8951
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -6.79664
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 362.321
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/li_n20_n40#" 566.733
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 149.212
+cap "isource_ref_0/li_n20_n40#" "isource_diffamp_0/w_14846_n7914#" 20.4565
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 1.41019
+cap "isource_ref_0/li_n20_n40#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -125.317
+cap "isource_ref_0/li_n20_n40#" "isource_diffamp_0/dw_14640_n8120#" 17.547
+cap "isource_diffamp_0/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 73.6182
+cap "isource_diffamp_0/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -4.41307
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 4.72975
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_diffamp_0/w_14846_n7914#" 20.3779
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 1.41019
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_0/dw_14640_n8120#" -0.0152734
+cap "isource_ref_0/li_n20_n40#" "isource_diffamp_0/dw_14640_n8120#" 17.547
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/dw_14640_n8120#" 102.57
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" 52.6085
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/m1_15310_n7040#" 11.4416
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" -23.8096
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_0/m1_15310_n7040#" -262.689
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/dw_14640_n8120#" 4.77124
+cap "isource_diffamp_0/m1_15310_n7040#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -308.154
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -83.742
+cap "VM2D" "isource_diffamp_0/w_14846_n7914#" 0.247468
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -20.8615
+cap "isource_cmirror_2/m1_0_1060#" "w_14566_9082#" -843.755
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -17.864
+cap "isource_cmirror_2/m1_0_1060#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 616.82
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "w_14566_9082#" -13.0839
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_cmirror_2/m1_0_1060#" 294.379
+cap "isource_cmirror_2/m1_0_1060#" "isource_diffamp_0/dw_14640_n8120#" 309.221
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "w_14566_9082#" -8.61719
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_diffamp_0/dw_14640_n8120#" 19.659
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_110_820#" -8.73159
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#" "isource_cmirror_2/m1_0_1060#" 2.23555
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 67.9078
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/m1_0_1060#" -538.414
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/m1_110_820#" 450.139
+cap "isource_cmirror_2/m1_0_1060#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#" 21.834
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/m1_110_820#" 0.183836
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 21.9047
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" "isource_cmirror_2/m1_0_1060#" 2.54234
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 84.5323
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_0_1060#" 507.806
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 0.183836
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/m1_0_1060#" -425.776
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -6.992
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 5.10485
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" 2485.81
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 10.4389
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_0_1060#" -857.295
+cap "VP" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 379.445
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 10.6064
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 65.5761
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "VP" -11.4654
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 4653.88
+cap "isource_cmirror_2/m1_0_1060#" "VP" 2234.65
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 896.832
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -4.54127
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 3552.85
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1.79817
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -9.69043
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 8.2
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -8.42829
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 2849.88
+cap "VP" "VP" 2048.28
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 3891.06
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 2531.28
+cap "VP" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 1799.59
+cap "VP" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 2945.1
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "VP" 1591.79
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "VP" 1119.6
+cap "VP" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -29.8536
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 55.3966
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 72.8073
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 117.884
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 38.8814
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -11.4537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 0.111651
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -2.50098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 37.4883
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -2.50098
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.1088
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 217.45
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 16.1396
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1.99619
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 422.634
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -774.581
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -676.404
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 87.9891
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 268.816
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -4.6975
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 31.4989
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 98.4287
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -686.341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 1.70021
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -263.62
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -36.4948
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 35.5487
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1365.9
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -557.875
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -5146.96
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 634.764
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 334.561
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 70.7096
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 444.122
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 349.608
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1557.51
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 995.391
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 559.417
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 299.525
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2593.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 1.99619
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3489.93
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -100.683
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 784.166
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1641.15
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1354.81
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2258.49
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 453.146
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3034.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 528.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -133.543
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1188.56
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1499.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/m1_10190_6860#" 55.4664
+cap "isource_ref_0/m1_10190_6860#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1166.29
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 496.793
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1244.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 566.681
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 300.138
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1204.53
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2160.52
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5511.69
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.849107
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 236.951
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 241.547
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -201.537
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 505.499
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 6.02709
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 9.33448
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 59.1355
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 191.266
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -31.9283
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.0353303
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 79.3953
+cap "isource_diffamp_0/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 28.3414
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 20.2788
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 35.6212
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -0.0727098
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_diffamp_0/dw_14640_n8120#" 19.4566
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -147.768
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_0/dw_14640_n8120#" 198.882
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" 8.8546
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" 27.7843
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_diffamp_0/w_14846_n7914#" 21.304
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 14.6517
+cap "isource_diffamp_0/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 37.0504
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_0/w_14846_n7914#" -48.0688
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_0/w_14846_n7914#" 1.7053e-12
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" -120.06
+cap "isource_diffamp_0/m1_15310_n7040#" "isource_diffamp_0/w_14846_n7914#" -6.35936e-13
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_diffamp_0/w_14846_n7914#" 2.87324
+cap "VM2D" "isource_diffamp_0/w_14846_n7914#" 0.247468
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_diffamp_1/dw_14640_n8120#" 15.832
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 277.196
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "isource_cmirror_2/m1_110_820#" 3.02887
+cap "isource_diffamp_0/dw_14640_n8120#" "VM8D" 116.541
+cap "isource_diffamp_0/m1_15310_n7040#" "VM8D" 59.0035
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/m1_0_1060#" -3.43841
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 111.665
+cap "VM8D" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 231.412
+cap "w_14566_9082#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 138.933
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 1.5775
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 16.464
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 499.736
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "VM8D" 277.769
+cap "w_14566_9082#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -4.2629
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "isource_cmirror_2/m1_0_1060#" 8.61918
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "VM8D" 335.68
+cap "w_14566_9082#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" -0.282324
+cap "isource_diffamp_0/m1_15310_n7040#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -6.66522
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" 15.9471
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_cmirror_2/m1_0_1060#" 1.45986
+cap "w_14566_9082#" "VM8D" -360.92
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -9.30081
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 26.5379
+cap "isource_cmirror_2/m1_0_1060#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" 1.45986
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 329.186
+cap "isource_cmirror_2/m1_110_820#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 17.3116
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#" "isource_cmirror_2/m1_110_820#" 3.02887
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" -592.006
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_0_1060#" 443.81
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -26.7646
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/m1_110_820#" 344.128
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 25.7311
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 6.83014
+cap "VM8D" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 42.7609
+cap "isource_diffamp_0/dw_14640_n8120#" "isource_cmirror_2/m1_0_1060#" 2.33627
+cap "isource_cmirror_2/m1_110_820#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 958.292
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_110_820#" -98.7882
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -617.375
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#" "isource_cmirror_2/m1_0_1060#" 8.61918
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" -1043.22
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -11.1374
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_diffamp_0/dw_14640_n8120#" 18.1147
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -3.44994
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_diffamp_0/dw_14640_n8120#" 65.8524
+cap "isource_cmirror_2/m1_0_1060#" "m3_18880_11840#" 4316.12
+cap "isource_cmirror_2/m1_0_1060#" "isource_diffamp_0/dw_14640_n8120#" 1.30087
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 1358.74
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 1069.88
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/m1_110_820#" 11.7545
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 2787.1
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -322.651
+cap "isource_cmirror_2/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -57.8497
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "m3_18880_11840#" 2790.39
+cap "m3_18880_11840#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" 3178.81
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 7065.83
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 1086.13
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 4588.49
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 1914.08
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1.14842
+cap "VP" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 732.389
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 2268.2
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1208.59
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -97.2147
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -342.16
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -108.498
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -31.0267
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -408.67
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 71.3725
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -1.99607
+cap "isource_ref_0/m1_10190_6860#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 22.6819
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -94.3266
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" -600.852
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 127.923
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 113.735
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6.35222
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 3619.02
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 0.216695
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -87.6548
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VM2D" 4.06433
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 681.082
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "VM2D" -97.6399
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 59.8823
+cap "VM2D" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 0.543056
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 344.472
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/m1_360_100#" 56.8538
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -0.0252527
+cap "isource_diffamp_1/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 31.9229
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 1.64158
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_diffamp_0/w_14846_n7914#" 20.4565
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "a_8476_13900#" 1532.13
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 7.86361
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_0/w_14846_n7914#" -109.928
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -30.0444
+cap "a_8476_13900#" "isource_diffamp_0/w_14846_n7914#" 7.28782
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -5.85007
+cap "isource_diffamp_1/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 36.7761
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_diffamp_0/w_14846_n7914#" 3.59477
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "a_8476_13900#" 22.964
+cap "isource_diffamp_1/w_14846_n7914#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 33.2222
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_diffamp_0/w_14846_n7914#" -94.138
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_1/dw_14640_n8120#" 4.92569
+cap "isource_startup_0/m1_360_100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 93.1535
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "a_8476_13900#" 2025.31
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -10.5238
+cap "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_1/dw_14640_n8120#" 4.92569
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 4.15892
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 33.4315
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 198.717
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" 0.412478
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" 8.8546
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#" "isource_diffamp_1/w_14846_n7914#" 0.412478
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_109#" "isource_diffamp_1/w_14846_n7914#" 0.412478
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" 15.832
+cap "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "isource_diffamp_1/w_14846_n7914#" -2.84217e-14
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" "isource_diffamp_1/w_14846_n7914#" 0.412478
+cap "VM8D" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 28.1
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 137.592
+cap "w_14566_13206#" "VM8D" 12.7161
+cap "isource_diffamp_1/dw_14640_n8120#" "VM8D" 155.938
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" 35.5408
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -9.852
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_0/dw_14640_n8120#" -4.43184
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 4.07931
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 53.0758
+cap "isource_cmirror_2/m1_110_820#" "isource_diffamp_0/dw_14640_n8120#" -19.6999
+cap "isource_diffamp_0/dw_14640_n8120#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -133.253
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 24.333
+cap "VM8D" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 5.19239
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_2/m1_110_820#" 45.022
+cap "isource_cmirror_2/m1_110_820#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 5.681
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_diffamp_0/dw_14640_n8120#" -32.318
+cap "isource_diffamp_0/dw_14640_n8120#" "m3_18880_11840#" 126.903
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 1296.43
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "m3_18880_11840#" 967.065
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 389.401
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1175.53
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 103.377
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -210.189
+cap "VP" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 21.1017
+cap "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 1079.98
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 6.44828
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 7.3138
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 15.2733
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 38.7521
+cap "isource_startup_0/m1_360_100#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 0.604202
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 9.22242
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 0.690108
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" -23.9234
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/m1_360_100#" 53.6892
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 38.7355
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_startup_0/li_2190_920#" -4.70429
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "VM2D" -95.656
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_startup_0/m1_360_100#" 2.23724
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 0.216695
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/m1_360_100#" -34.1615
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 3.52318
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 0.125
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 1.3472
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 1.14119
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 4.29271
+cap "isource_startup_0/li_2190_920#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 2.28769
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 0.372727
+cap "isource_startup_0/li_2190_920#" "isource_startup_0/m1_360_100#" 0.0440131
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -30.5906
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/m1_360_100#" 215.014
+cap "isource_startup_0/m1_360_100#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 76.2938
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 8.1767
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" -5.43164
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/li_2190_920#" 3.95094
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 2.93728
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/m1_360_100#" 0.376051
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 6.20723
+cap "isource_startup_0/li_2190_920#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 10.5734
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" 4.01947
+cap "isource_startup_0/li_2190_920#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" -1.53183
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 9.6323
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 39.6623
+cap "isource_startup_0/m1_360_100#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" -1.51261
+cap "isource_startup_0/m1_360_100#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 0.0076557
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" -1.30345
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 3.03023
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" -64.2079
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_461_n400#" 1.14119
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" 45.7812
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/dw_14640_n8120#" 79.8376
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#" 0.714407
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_461_n400#" 5.87045
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/li_2190_920#" 3.89771
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/li_2190_920#" 3.97109
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#" 0.376051
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 22.5294
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_diffamp_1/dw_14640_n8120#" 6.20723
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" 0.0511733
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" 197.748
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/dw_14640_n8120#" 4.77124
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" 241.664
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/m1_15310_n7040#" 158.973
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "VM8D" 320.04
+cap "w_14566_13206#" "isource_diffamp_1/m1_15310_n7040#" -561.167
+cap "isource_diffamp_1/m1_15310_n7040#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 183.548
+cap "w_14566_13206#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -3.1617
+cap "isource_diffamp_1/m1_15310_n7040#" "VM8D" 1228.08
+cap "w_14566_13206#" "VM8D" -636.969
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" 3.02887
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" 1158.89
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 0.0504788
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 0.0504788
+cap "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_startup_0/m1_360_100#" 0.808297
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 7.09044
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_startup_0/m1_360_100#" 5.22456
+cap "isource_startup_0/m1_360_100#" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 0.673358
+cap "isource_startup_0/li_2190_920#" "isource_diffamp_1/w_14846_n7914#" 3.48151
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/li_2190_920#" 1.53872
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" 10.3148
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/dw_14640_n8120#" 18.8803
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 41.2201
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 104.833
+cap "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" -38.4656
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 146.698
+cap "isource_diffamp_1/w_14846_n7914#" "isource_startup_0/li_2190_920#" 54.9307
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/li_2190_920#" 320.029
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 83.4746
+cap "isource_diffamp_1/w_14846_n7914#" "VM8D" -501.673
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_diffamp_1/w_14846_n7914#" -181.552
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/w_14846_n7914#" 58.3951
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "VM8D" 889.986
+cap "w_14566_13206#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -5.96755
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 132.092
+cap "VM8D" "isource_diffamp_1/m1_15310_n7040#" 811.24
+cap "VM8D" "w_14566_13206#" -269.859
+cap "w_14566_13206#" "isource_diffamp_1/m1_15310_n7040#" 11.2466
+cap "isource_diffamp_1/dw_14640_n8120#" "isource_diffamp_1/m1_15310_n7040#" 1.2909
+cap "VM8D" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" 42.1104
+cap "isource_diffamp_1/m1_15310_n7040#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" -52.0573
+cap "w_14566_13206#" "isource_diffamp_1/dw_14640_n8120#" -104.612
+cap "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" "isource_diffamp_1/dw_14640_n8120#" 0.101746
+merge "isource_diffamp_1/m1_14640_n6760#" "isource_diffamp_1/m1_15310_n7040#" -7729.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3476200 -1792 -14110680 -4972 0 0 0 0 0 0 0 0
+merge "isource_diffamp_1/m1_15310_n7040#" "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#"
+merge "isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "isource_cmirror_2/m1_110_820#"
+merge "isource_cmirror_2/m1_110_820#" "m1_17420_14360#"
+merge "m1_17420_14360#" "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#"
+merge "isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "VM9D"
+merge "VM9D" "isource_diffamp_0/m1_14640_n6760#"
+merge "isource_diffamp_0/m1_14640_n6760#" "m1_17420_10230#"
+merge "isource_diffamp_1/dw_14640_n8120#" "isource_startup_0/li_2190_920#" -98637.2 0 0 0 0 -959840 -12328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1785850 -44084 -2829000 -1784 -7093600 -37088 -42473390 -2766 -20978303 -15360 20144904 -87846 0 0
+merge "isource_startup_0/li_2190_920#" "isource_diffamp_0/dw_14640_n8120#"
+merge "isource_diffamp_0/dw_14640_n8120#" "m4_20800_11820#"
+merge "m4_20800_11820#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "li_18900_9700#"
+merge "li_18900_9700#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_nwell_0/m1_4500_6730#"
+merge "isource_conv_tsmal_nwell_0/m1_4500_6730#" "isource_conv_tsmal_nwell_0/dw_4150_6290#"
+merge "isource_conv_tsmal_nwell_0/dw_4150_6290#" "li_17920_6300#"
+merge "li_17920_6300#" "li_18900_7440#"
+merge "li_18900_7440#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "m4_9000_4800#"
+merge "m4_9000_4800#" "isource_conv_0/m2_11180_13260#"
+merge "isource_conv_0/m2_11180_13260#" "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_out_0/isource_cmirror_0/m1_810_220#"
+merge "isource_out_0/isource_cmirror_0/m1_810_220#" "isource_out_0/isource_cmirror_0/li_0_0#"
+merge "isource_out_0/isource_cmirror_0/li_0_0#" "li_18880_n1560#"
+merge "li_18880_n1560#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "VP"
+merge "isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" "isource_cmirror_2/m1_0_1060#" -16739.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6889200 -11756 -15143920 -2168 -2295644 -15660 -395340 0 0 0 0 0
+merge "isource_cmirror_2/m1_0_1060#" "m3_18880_11840#"
+merge "m3_18880_11840#" "isource_diffamp_0/m1_15310_n7040#"
+merge "isource_diffamp_0/m1_15310_n7040#" "isource_cmirror_3/m1_110_820#"
+merge "isource_cmirror_3/m1_110_820#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "isource_cmirror_3/m1_0_1060#"
+merge "isource_cmirror_3/m1_0_1060#" "isource_out_0/isource_cmirror_0/m1_0_1060#"
+merge "isource_out_0/isource_cmirror_0/m1_0_1060#" "VM8D"
+merge "VM8D" "isource_conv_0/m1_9600_7000#"
+merge "isource_conv_0/m1_9600_7000#" "m1_18800_490#"
+merge "isource_startup_0/VSUBS" "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" -129949 0 0 0 0 0 0 0 0 0 0 625600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -90732456 -181444 -6190584 -1366 -7169500 -3320 43510550 -21240 -7400400 -2984 235704 -27390 0 0
+merge "isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "isource_diffamp_1/VSUBS"
+merge "isource_diffamp_1/VSUBS" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m5_9000_4420#"
+merge "m5_9000_4420#" "VN"
+merge "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_cmirror_2/VSUBS"
+merge "isource_cmirror_2/VSUBS" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_diffamp_0/VSUBS"
+merge "isource_diffamp_0/VSUBS" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_cmirror_3/VSUBS"
+merge "isource_cmirror_3/VSUBS" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/VSUBS" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#"
+merge "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" "m2_12720_6920#"
+merge "m2_12720_6920#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#"
+merge "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#"
+merge "isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_conv_tsmal_nwell_0/VSUBS"
+merge "isource_conv_tsmal_nwell_0/VSUBS" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#"
+merge "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#"
+merge "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#"
+merge "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "isource_ref_0/m1_10190_6860#"
+merge "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_conv_0/VSUBS"
+merge "isource_conv_0/VSUBS" "isource_ref_0/li_n20_n40#"
+merge "isource_ref_0/li_n20_n40#" "isource_ref_0/VSUBS"
+merge "isource_ref_0/VSUBS" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#"
+merge "isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS" "li_12880_n860#"
+merge "li_12880_n860#" "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#"
+merge "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#"
+merge "isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#"
+merge "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "li_20760_n4780#"
+merge "li_20760_n4780#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#"
+merge "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "li_18260_n2140#"
+merge "li_18260_n2140#" "isource_out_0/VSUBS"
+merge "isource_out_0/VSUBS" "li_13060_n2140#"
+merge "li_13060_n2140#" "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "a_8476_13900#"
+merge "isource_out_0/m1_20970_12680#" "VM22D" 274.289 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1844800 -620 0 0 0 0 0 0 0 0 0 0
+merge "isource_startup_0/m1_360_100#" "isource_diffamp_0/m1_15050_n7600#" -24729.4 -5244752 -15808 0 0 0 0 0 0 0 0 -3983512 -8268 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7607552 -11068 -4334000 -400 -19148996 -1320 -14019790 -4680 0 0 0 0 0 0
+merge "isource_diffamp_0/m1_15050_n7600#" "isource_diffamp_0/w_14846_n7914#"
+merge "isource_diffamp_0/w_14846_n7914#" "w_14566_9082#"
+merge "w_14566_9082#" "isource_ref_0/m2_12700_7520#"
+merge "isource_ref_0/m2_12700_7520#" "VM11D"
+merge "VM11D" "isource_ref_0/m3_12120_4500#"
+merge "isource_ref_0/m3_12120_4500#" "m2_12140_7550#"
+merge "isource_conv_0/m1_4150_7820#" "m1_12930_7180#" 4278.57 -32144 -7172 0 0 0 0 0 0 0 0 -6770616 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11765024 -400 -6169532 -964 -13864480 -1720 0 0 0 0 0 0 0 0
+merge "m1_12930_7180#" "VM12G"
+merge "VM12G" "isource_conv_tsmal_nwell_0/m1_4590_7330#"
+merge "isource_conv_tsmal_nwell_0/m1_4590_7330#" "isource_ref_0/m1_12708_6228#"
+merge "isource_ref_0/m1_12708_6228#" "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#"
+merge "isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "m1_12920_6250#"
+merge "m1_12920_6250#" "isource_conv_tsmal_nwell_0/w_4356_6496#"
+merge "isource_conv_tsmal_nwell_0/w_4356_6496#" "li_16446_5046#"
+merge "li_16446_5046#" "w_16400_5066#"
+merge "isource_diffamp_1/m1_15050_n7600#" "isource_diffamp_1/w_14846_n7914#" -7245.09 -7099472 -15808 0 0 0 0 0 0 0 0 342316 -9252 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 342316 -9252 -2464000 -240 -3479600 -9490 -9851200 -2080 0 0 0 0 0 0
+merge "isource_diffamp_1/w_14846_n7914#" "w_14566_13206#"
+merge "w_14566_13206#" "isource_ref_0/m2_12460_5710#"
+merge "isource_ref_0/m2_12460_5710#" "VM2D"
+merge "isource_out_0/m1_18730_12160#" "VM3D" -1933.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3398000 -660 0 0 0 0 0 0 0 0
+merge "isource_conv_0/isource_cmirror_0/m1_250_820#" "isource_conv_0/isource_cmirror_1/m1_250_820#" -8786.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -17334800 -11140 0 0 0 0 0 0 0 0
+merge "isource_conv_0/isource_cmirror_1/m1_250_820#" "isource_conv_0/isource_cmirror_2/m1_250_820#"
+merge "isource_conv_0/isource_cmirror_2/m1_250_820#" "m2_19160_1520#"
+merge "isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" -449.941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 258080 -1596 0 0 0 0 0 0 0 0 0 0
+merge "isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "VM3G"
+merge "isource_ref_0/m1_11450_6340#" "VM12D" -416.324 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -832000 -960 0 0 0 0 0 0
+merge "isource_conv_tsmal_nwell_0/m1_4410_6620#" "VM14D" -15112.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13556500 -308 -14089800 -1960 0 0 0 0 0 0 0 0
+merge "VM14D" "isource_conv_0/m1_5350_12620#"
+merge "isource_conv_0/m1_5350_12620#" "m1_17610_7400#"
+merge "isource_out_0/isource_conv_tsmal_0/m1_4500_6730#" "I_ref" -773.179 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1544000 -760 -613600 -1640 0 0 0 0 0 0
diff --git a/mag/isource/isource.mag b/mag/isource/isource.mag
new file mode 100644
index 0000000..e9fc1d7
--- /dev/null
+++ b/mag/isource/isource.mag
@@ -0,0 +1,517 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654695234
+<< psubdiff >>
+rect 8476 13900 8500 15280
+rect 10040 13900 10064 15280
+<< psubdiffcont >>
+rect 8500 13900 10040 15280
+<< locali >>
+rect 8484 14040 8500 15280
+rect -40 14020 8500 14040
+rect -280 13900 8500 14020
+rect 10040 14620 10056 15280
+rect 10040 13900 11080 14620
+rect -280 13760 11080 13900
+rect 12442 13858 12652 13938
+rect 12296 13760 12652 13858
+rect -280 13460 12652 13760
+rect -280 -2300 80 13460
+rect 9900 13448 12652 13460
+rect 9900 13440 12534 13448
+rect 11060 13420 12440 13440
+rect 12920 13380 13200 13440
+rect 12900 8480 13220 13380
+rect 18900 9790 19320 9800
+rect 18900 9700 21010 9790
+rect 12920 7330 13200 8480
+rect 18900 7440 21010 7530
+rect 12920 7320 13250 7330
+rect 12920 7220 13340 7320
+rect 12930 6180 13340 7220
+rect 12930 6170 13260 6180
+rect 12980 5000 13260 6170
+rect 18880 5290 18930 5340
+rect 18880 5200 20360 5290
+rect 12910 4810 13280 5000
+rect 12940 1720 13280 4810
+rect 12910 1540 13280 1720
+rect 18880 3010 18930 5200
+rect 18880 2920 20360 3010
+rect 12910 1340 18620 1540
+rect 12880 1310 18620 1340
+rect 12880 -860 13440 1310
+rect 16580 -840 16820 1310
+rect 18020 -1180 18620 1310
+rect 13060 -2140 13220 -1360
+rect 18260 -2140 18420 -1360
+rect 18530 -1560 18620 -1180
+rect 18880 760 18930 2920
+rect 18880 670 20360 760
+rect 18880 -1560 18930 670
+rect -280 -2540 18540 -2300
+rect 40 -2560 18540 -2540
+rect 20760 -4780 21220 -4120
+<< viali >>
+rect 9300 13900 9800 15280
+rect 17920 6300 18040 6480
+rect 16446 5046 16624 5142
+<< metal1 >>
+rect 17670 15580 17680 15780
+rect 17790 15580 17800 15780
+rect 9294 15280 9806 15292
+rect 9290 13900 9300 15280
+rect 9800 13900 9810 15280
+rect 12990 14600 13000 14720
+rect 13080 14600 13090 14720
+rect 17420 14360 17840 14480
+rect 18000 14360 18010 14480
+rect 12970 14080 12980 14200
+rect 13060 14080 13070 14200
+rect 13970 13980 13980 14100
+rect 14100 14098 14140 14100
+rect 14200 14098 14360 14100
+rect 14100 13980 14360 14098
+rect 14132 13976 14228 13980
+rect 9294 13888 9806 13900
+rect 12320 13740 12400 13800
+rect 12320 13620 12520 13740
+rect 12620 13620 12630 13740
+rect 14900 11260 15040 13440
+rect 17670 12400 17680 12580
+rect 17980 12400 17990 12580
+rect 17680 11480 17980 12400
+rect 18800 11840 19020 11920
+rect 18800 10980 18960 11840
+rect 17420 10230 17540 10360
+rect 14030 9840 14040 9980
+rect 14180 9840 14360 9980
+rect 18800 9920 18980 10980
+rect 18800 9840 19040 9920
+rect 18800 9660 18980 9840
+rect 18800 9580 19040 9660
+rect 18610 8500 18620 8760
+rect 18800 7660 18980 9580
+rect 12930 7180 13390 7240
+rect 13430 7200 13610 7480
+rect 17610 7400 17620 7660
+rect 17800 7400 17810 7660
+rect 18800 7580 19000 7660
+rect 17620 7100 17800 7400
+rect 18800 7310 18980 7580
+rect 17914 6480 18046 6492
+rect 12920 6250 13380 6310
+rect 17910 6300 17920 6480
+rect 18040 6300 18050 6480
+rect 17914 6288 18046 6300
+rect 16434 5142 16636 5148
+rect 16434 5046 16446 5142
+rect 16624 5046 16636 5142
+rect 16434 5040 16636 5046
+rect 14040 1340 14340 1800
+rect 18210 1620 18220 2100
+rect 18540 1620 18550 2100
+rect 14040 -1310 14330 1340
+rect 16290 580 16760 810
+rect 18800 620 18980 5090
+rect 18800 520 19020 620
+rect 18800 490 18980 520
+rect 14554 -4160 15600 -3240
+rect 16420 -4160 16430 -3240
+<< via1 >>
+rect 17680 15580 17790 15780
+rect 9300 13900 9800 15280
+rect 13000 14600 13080 14720
+rect 17840 14360 18000 14480
+rect 12980 14080 13060 14200
+rect 13980 13980 14100 14100
+rect 12520 13620 12620 13740
+rect 17680 12400 17980 12580
+rect 14040 9840 14180 9980
+rect 18620 8500 18800 8760
+rect 17620 7400 17800 7660
+rect 17920 6300 18040 6480
+rect 16446 5046 16624 5142
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+<< metal2 >>
+rect 17680 15780 17790 15790
+rect 13060 15580 17680 15780
+rect 17790 15580 21200 15780
+rect 9300 15280 9800 15290
+rect 13060 14730 13320 15580
+rect 17680 15570 17790 15580
+rect 18880 15560 19080 15580
+rect 13000 14720 13320 14730
+rect 13080 14600 13320 14720
+rect 13760 15040 13880 15050
+rect 13000 14590 13080 14600
+rect 12980 14200 13060 14210
+rect 13760 14200 13880 14900
+rect 20920 15000 21200 15580
+rect 18500 14520 18680 14536
+rect 17640 14480 19080 14520
+rect 17640 14360 17840 14480
+rect 18000 14360 19080 14480
+rect 17640 14320 19080 14360
+rect 9800 13940 11260 14140
+rect 13060 14080 13880 14200
+rect 13980 14160 14520 14300
+rect 13980 14100 14100 14160
+rect 12980 14070 13060 14080
+rect 9300 13890 9800 13900
+rect 13980 13932 14100 13980
+rect 13980 13790 14102 13932
+rect 12520 13740 12620 13750
+rect 13980 13720 14100 13790
+rect 12520 13610 12620 13620
+rect 13040 13500 14100 13720
+rect 13040 9480 13720 13500
+rect 17680 12580 17980 12590
+rect 17680 12390 17980 12400
+rect 13260 9240 13720 9480
+rect 13860 11140 14060 11150
+rect 14060 10900 14234 11140
+rect 13860 10180 14234 10900
+rect 18880 10560 19080 14320
+rect 20920 12950 21180 15000
+rect 20800 12940 21300 12950
+rect 20800 12220 21300 12500
+rect 20920 11600 21180 12220
+rect 13860 10020 14380 10180
+rect 13860 9980 14234 10020
+rect 13860 9840 14040 9980
+rect 14180 9840 14234 9980
+rect 13040 9230 13260 9240
+rect 13860 8306 14234 9840
+rect 16800 8760 17020 8770
+rect 17660 8760 18000 10380
+rect 18620 8760 18800 8770
+rect 18880 8760 19080 8940
+rect 17020 8500 18620 8760
+rect 18800 8500 19080 8760
+rect 16800 8490 17020 8500
+rect 17660 8480 18000 8500
+rect 18620 8490 18800 8500
+rect 13860 8120 14320 8306
+rect 18880 8300 19080 8500
+rect 12140 7760 12340 7770
+rect 13220 7760 14320 8120
+rect 12340 7560 12720 7760
+rect 13140 7560 14320 7760
+rect 20920 7780 21140 11600
+rect 17620 7660 17800 7670
+rect 12140 7550 12340 7560
+rect 18240 7400 18520 7660
+rect 17620 7390 17800 7400
+rect 20920 7320 23100 7560
+rect 12720 6920 13360 7120
+rect 18360 7080 18680 7090
+rect 18180 6800 18360 7080
+rect 18180 6790 18680 6800
+rect 17920 6480 18040 6490
+rect 18180 6480 18660 6790
+rect 17720 6300 17920 6480
+rect 18040 6300 18660 6480
+rect 17920 6290 18040 6300
+rect 15840 5760 16380 6100
+rect 16200 5140 16380 5760
+rect 16446 5142 16624 5152
+rect 16200 5046 16446 5140
+rect 16200 5036 16624 5046
+rect 16200 5020 16620 5036
+rect 18220 2100 18540 2110
+rect 18220 1610 18540 1620
+rect 19160 1520 19300 6680
+rect 22900 700 23100 7320
+rect 20800 540 23100 700
+rect 18040 160 18200 170
+rect 18040 -50 18200 -40
+rect 20800 -1360 21040 540
+rect 16950 -1640 17820 -1400
+rect 15600 -3240 16420 -3230
+rect 15600 -4170 16420 -4160
+rect 20760 -4240 21060 -4230
+rect 20760 -4670 21060 -4660
+<< via2 >>
+rect 9300 13900 9800 15280
+rect 13760 14900 13880 15040
+rect 12520 13620 12620 13740
+rect 17680 12400 17980 12580
+rect 13040 9240 13260 9480
+rect 13860 10900 14060 11140
+rect 20800 12500 21300 12940
+rect 16800 8500 17020 8760
+rect 12140 7560 12340 7760
+rect 20920 7560 21140 7780
+rect 18360 6800 18680 7080
+rect 18220 1620 18540 2100
+rect 18040 -40 18200 160
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal3 >>
+rect 9290 15280 9810 15285
+rect 9290 13900 9300 15280
+rect 9800 13900 9810 15280
+rect 13750 15040 13890 15045
+rect 13750 14900 13760 15040
+rect 13880 14900 17000 15040
+rect 13750 14895 13890 14900
+rect 9290 13895 9810 13900
+rect 12510 13740 12630 13745
+rect 12510 13620 12520 13740
+rect 12620 13620 14100 13740
+rect 12510 13615 12630 13620
+rect 12818 13500 14100 13620
+rect 11850 11840 11860 11940
+rect 12060 11840 12070 11940
+rect 11380 7260 11680 7440
+rect 9000 5840 9780 5980
+rect 9000 4580 9860 5840
+rect 9000 4420 9780 4580
+rect 11870 1540 11880 11840
+rect 12040 1540 12050 11840
+rect 13860 11145 14060 13500
+rect 13850 11140 14070 11145
+rect 13850 10900 13860 11140
+rect 14060 10900 14070 11140
+rect 13850 10895 14070 10900
+rect 13030 9480 13270 9485
+rect 12480 9250 13040 9480
+rect 12680 9240 13040 9250
+rect 13260 9240 13270 9480
+rect 13030 9235 13270 9240
+rect 16820 8765 17000 14900
+rect 20790 12940 21310 12945
+rect 17840 12760 20800 12940
+rect 17840 12585 17980 12760
+rect 20790 12640 20800 12760
+rect 17670 12580 17990 12585
+rect 17670 12400 17680 12580
+rect 17980 12568 17990 12580
+rect 17980 12400 18000 12568
+rect 20780 12500 20800 12640
+rect 21300 12500 21310 12940
+rect 17670 12395 17990 12400
+rect 18880 11840 19080 12500
+rect 20780 12495 21310 12500
+rect 20780 12400 20980 12495
+rect 16790 8760 17030 8765
+rect 16790 8500 16800 8760
+rect 17020 8500 17520 8760
+rect 16790 8495 17030 8500
+rect 20910 7780 21150 7785
+rect 12130 7760 12350 7765
+rect 12130 7560 12140 7760
+rect 12340 7560 12350 7760
+rect 12130 7555 12350 7560
+rect 20910 7560 20920 7780
+rect 21140 7560 21150 7780
+rect 20910 7555 21150 7560
+rect 18350 7080 18690 7085
+rect 18350 6800 18360 7080
+rect 18680 6800 18690 7080
+rect 18350 6795 18690 6800
+rect 18210 2100 18550 2105
+rect 18210 1620 18220 2100
+rect 18540 1620 18550 2100
+rect 18210 1615 18550 1620
+rect 18030 160 18210 165
+rect 14900 -40 18040 160
+rect 18200 -40 18210 160
+rect 4100 -1730 9800 -700
+rect 14900 -4000 15080 -40
+rect 18030 -45 18210 -40
+rect 15590 -3240 16430 -3235
+rect 14554 -4800 15200 -4000
+rect 15590 -4160 15600 -3240
+rect 16420 -4160 16430 -3240
+rect 15590 -4165 16430 -4160
+rect 20750 -4240 21070 -4235
+rect 20750 -4660 20760 -4240
+rect 21060 -4660 21070 -4240
+rect 20750 -4665 21070 -4660
+<< via3 >>
+rect 9300 13900 9800 15280
+rect 11860 11840 12060 11940
+rect 11880 1540 12040 11840
+rect 20800 12500 21300 12940
+rect 20920 7560 21140 7780
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal4 >>
+rect 9299 15280 9801 15281
+rect 9299 13900 9300 15280
+rect 9800 13900 9801 15280
+rect 9299 13899 9801 13900
+rect 20799 12940 21301 12941
+rect 20799 12500 20800 12940
+rect 21300 12500 21301 12940
+rect 20799 12499 21301 12500
+rect 20800 12380 21300 12499
+rect 11859 11940 12061 11941
+rect 11859 11840 11860 11940
+rect 12060 11840 12061 11940
+rect 11859 11839 11880 11840
+rect 11879 8300 11880 11839
+rect 12040 11839 12061 11840
+rect 12040 8300 12041 11839
+rect 20800 11820 21300 12220
+rect 20900 7780 21400 8280
+rect 9000 5840 9780 5980
+rect 11879 5900 11880 7600
+rect 12040 5900 12041 7600
+rect 20900 7560 20920 7780
+rect 21140 7560 21400 7780
+rect 20900 7320 21400 7560
+rect 9000 4800 9860 5840
+rect 11879 1540 11880 5200
+rect 12040 1540 12041 5200
+rect 18219 2100 18541 2101
+rect 18219 1620 18220 2100
+rect 18540 1620 18541 2100
+rect 18219 1619 18541 1620
+rect 11879 1539 12041 1540
+rect 11900 -1374 13900 -1300
+rect 15599 -3240 16421 -3239
+rect 15599 -4160 15600 -3240
+rect 16420 -4160 16421 -3240
+rect 15599 -4161 16421 -4160
+rect 20759 -4240 21061 -4239
+rect 20759 -4660 20760 -4240
+rect 21060 -4660 21061 -4240
+rect 20759 -4661 21061 -4660
+<< via4 >>
+rect 9300 13900 9800 15280
+rect 20800 12500 21300 12940
+rect 11720 7600 11880 8300
+rect 11880 7600 12040 8300
+rect 12040 7600 12320 8300
+rect 11700 5200 11880 5900
+rect 11880 5200 12040 5900
+rect 12040 5200 12300 5900
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal5 >>
+rect 9276 15280 9824 15304
+rect 9276 13900 9300 15280
+rect 9800 13900 9824 15280
+rect 9276 13876 9824 13900
+rect 9300 12700 9800 13876
+rect 20776 12940 21324 12964
+rect 9300 12300 12900 12700
+rect 20776 12500 20800 12940
+rect 21300 12500 21324 12940
+rect 20776 12476 21324 12500
+rect 9300 11200 9800 12300
+rect 10260 7200 10920 11780
+rect 11700 8324 12300 12300
+rect 11696 8300 12344 8324
+rect 11696 7600 11720 8300
+rect 12320 7600 12344 8300
+rect 11696 7576 12344 7600
+rect 20800 7320 21300 12476
+rect 20800 7200 21400 7320
+rect 10260 6300 21400 7200
+rect 9000 5840 9780 5980
+rect 9000 4580 9860 5840
+rect 9000 4420 9780 4580
+rect 8600 -2800 9800 -700
+rect 10260 -1300 10920 6300
+rect 11676 5900 12324 5924
+rect 11676 5200 11700 5900
+rect 12300 5200 12324 5900
+rect 11676 5176 12324 5200
+rect 11700 100 12300 5176
+rect 18000 2100 18700 2300
+rect 18000 1620 18220 2100
+rect 18540 1620 18700 2100
+rect 18000 100 18700 1620
+rect 11700 -700 18700 100
+rect 10260 -2240 17620 -1300
+rect 11876 -2324 13924 -2240
+rect 8600 -3216 16400 -2800
+rect 8600 -3240 16444 -3216
+rect 8600 -4160 15600 -3240
+rect 16420 -4160 16444 -3240
+rect 8600 -4184 16444 -4160
+rect 8600 -4200 16400 -4184
+rect 15600 -4800 16400 -4200
+rect 16800 -4800 17600 -2240
+rect 18000 -2900 18700 -700
+rect 18000 -3600 21080 -2900
+rect 20680 -4216 21080 -3600
+rect 20680 -4240 21084 -4216
+rect 20680 -4660 20760 -4240
+rect 21060 -4660 21084 -4240
+rect 20680 -4680 21084 -4660
+rect 20736 -4684 21084 -4680
+use isource_cmirror#0  isource_cmirror_2
+timestamp 1654695234
+transform 1 0 18900 0 1 9740
+box 0 0 2044 2280
+use isource_cmirror#0  isource_cmirror_3
+timestamp 1654695234
+transform 1 0 18900 0 1 7480
+box 0 0 2044 2280
+use isource_conv  isource_conv_0
+timestamp 1648644738
+transform 1 0 9200 0 1 -6200
+box 3980 6900 13920 13860
+use isource_conv_tsmal_nwell  isource_conv_tsmal_nwell_0
+timestamp 1647868710
+transform 1 0 12044 0 1 -1430
+box 4070 6210 5960 9050
+use isource_diffamp  isource_diffamp_0
+timestamp 1647868710
+transform 1 0 -280 0 1 16996
+box 14560 -8200 18240 -5200
+use isource_diffamp  isource_diffamp_1
+timestamp 1647868710
+transform 1 0 -280 0 1 21120
+box 14560 -8200 18240 -5200
+use isource_out  isource_out_0
+timestamp 1654695234
+transform 1 0 -4300 0 1 -13810
+box 4320 8980 25514 15188
+use isource_ref  isource_ref_0
+timestamp 1647868710
+transform 1 0 20 0 1 40
+box -30 -40 13220 13420
+use isource_startup  isource_startup_0
+timestamp 1647868710
+transform 1 0 10820 0 1 13700
+box 200 0 2352 1238
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ#0  sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0
+timestamp 1647868710
+transform 1 0 19490 0 1 10040
+box -2150 -2100 2149 2100
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0
+timestamp 1647868710
+transform 1 0 7151 0 1 1700
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1647868710
+transform 1 0 7151 0 1 8700
+box -3351 -3101 3373 3101
+<< labels >>
+rlabel metal3 14600 -4600 15000 -4200 7 I_ref
+port 2 w
+rlabel metal1 14040 730 14330 920 1 VM3G
+rlabel metal2 17660 -1630 17810 -1400 3 VM3D
+rlabel metal1 16290 580 16490 800 3 VM22D
+rlabel metal3 11380 7260 11680 7440 1 VM12D
+rlabel metal1 13440 7380 13580 7460 1 VM12G
+rlabel metal5 16940 -4640 17440 -4120 1 VP
+port 1 n
+rlabel metal5 15800 -4600 16200 -4200 1 VN
+port 3 n
+rlabel metal2 13720 7620 14040 8060 1 VM11D
+rlabel metal2 18260 7400 18480 7660 1 VM14D
+rlabel metal1 14908 12062 15034 12202 1 VM9D
+rlabel metal2 17100 8540 17460 8740 1 VM8D
+rlabel metal2 13280 12860 13440 13080 1 VM2D
+<< end >>
diff --git a/mag/isource/isource.sim b/mag/isource/isource.sim
new file mode 100644
index 0000000..19c2e76
--- /dev/null
+++ b/mag/isource/isource.sim
@@ -0,0 +1,1689 @@
+| units: 1 tech: sky130A format: MIT
+x VP VM8D l=2e+09 w=2e+09 x=8.7205e+09 y=4.0205e+09 sky130_fd_pr__cap_mim_m3_1
+x VM3G VM3D VN VN l=6e+08 w=4e+08 x=7.2575e+09 y=-1.0795e+09 sky130_fd_pr__nfet_01v8
+x VM3G VN VM3D VN l=6e+08 w=4e+08 x=6.6285e+09 y=-1.0795e+09 sky130_fd_pr__nfet_01v8
+x VM3G VN VM3D VN l=6e+08 w=4e+08 x=7.886e+09 y=-1.0795e+09 sky130_fd_pr__nfet_01v8
+x VM3G VM3D VN VN l=6e+08 w=4e+08 x=8.515e+09 y=-1.0795e+09 sky130_fd_pr__nfet_01v8
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.869e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.6775e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.821e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.6775e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.5335e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.869e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.773e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.821e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.917e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.5335e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.4855e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.5815e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.6295e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.773e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.5815e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.917e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.725e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.725e+09 y=1.84e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=1.5e+07 w=4e+08 x=8.6295e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=1.5e+07 w=4e+08 x=8.4855e+09 y=-3.245e+08 sky130_fd_pr__nfet_01v8_lvt
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=5.769e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=2.6245e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=1.3665e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=1.9955e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=5.14e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=7.375e+08 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=3.253e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=4.511e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=1.085e+08 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=3.882e+09 y=-4.795e+08 sky130_fd_pr__nfet_01v8
+x VM8D VM22D a_19136_n1351# VP l=2e+07 w=4e+08 x=9.5485e+09 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x VM8D VM22D a_19136_n1351# VP l=2e+07 w=4e+08 x=9.5485e+09 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_n1351# VP l=1e+08 w=4e+08 x=1.0145e+10 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_n1351# VP l=1e+08 w=4e+08 x=1.0145e+10 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_n1351# VP l=1e+08 w=4e+08 x=9.8875e+09 y=-6.75e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_n1351# VP l=1e+08 w=4e+08 x=9.8875e+09 y=-1.575e+08 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=5.769e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=2.6245e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=1.3665e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=1.9955e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=5.14e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=7.375e+08 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=3.253e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=6e+08 w=4e+08 x=4.511e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=1.085e+08 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=6e+08 w=4e+08 x=3.882e+09 y=-1.0845e+09 sky130_fd_pr__nfet_01v8
+x a_18646_n4232# a_18646_n4664# a_216_n2258# VN l=1e+09 w=0 x=9.3235e+09 y=-2.1155e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_20766_n4232# VN a_20236_n2232# VN l=1e+09 w=0 x=1.0383e+10 y=-2.1155e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_19176_n4232# a_18646_n4664# a_19176_n2232# VN l=1e+09 w=0 x=9.5885e+09 y=-2.1155e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_19706_n4232# a_19706_n4664# a_19176_n2232# VN l=1e+09 w=0 x=9.8535e+09 y=-2.1155e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_20236_n4232# a_19706_n4664# a_20236_n2232# VN l=1e+09 w=0 x=1.0118e+10 y=-2.1155e+09 sky130_fd_pr__res_xhigh_po_1p41
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.691e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.4995e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.643e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.4995e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.3555e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.691e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.595e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.643e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.739e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.3555e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.3075e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.4035e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.4515e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.595e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.4035e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.739e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.547e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.547e+09 y=3.154e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=1.5e+07 w=4e+08 x=8.4515e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=1.5e+07 w=4e+08 x=8.3075e+09 y=2.6455e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D isource_startup_0/m1_330_800# VP VP l=2e+08 w=5e+07 x=6.2885e+09 y=7.31e+09 sky130_fd_pr__pfet_01v8
+x isource_startup_0/m1_330_800# VN VM8D VN l=2e+08 w=5e+07 x=6.2785e+09 y=7.0455e+09 sky130_fd_pr__nfet_01v8
+x VM11D isource_startup_0/m1_330_800# VN VN l=2e+07 w=4e+08 x=5.6085e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN isource_startup_0/m1_330_800# VN l=2e+07 w=4e+08 x=6.049e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN isource_startup_0/m1_330_800# VN l=2e+07 w=4e+08 x=5.7555e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D isource_startup_0/m1_330_800# VN VN l=2e+07 w=4e+08 x=5.902e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D isource_startup_0/m1_330_800# VN VN l=2e+07 w=4e+08 x=5.7065e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN isource_startup_0/m1_330_800# VN l=2e+07 w=4e+08 x=5.951e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN isource_startup_0/m1_330_800# VN l=2e+07 w=4e+08 x=5.853e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN isource_startup_0/m1_330_800# VN l=2e+07 w=4e+08 x=5.6575e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D isource_startup_0/m1_330_800# VN VN l=2e+07 w=4e+08 x=5.8045e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM11D isource_startup_0/m1_330_800# VN VN l=2e+07 w=4e+08 x=6e+09 y=6.9555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=5.769e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=2.6245e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.3665e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=1.9955e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=5.14e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=7.375e+08 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=3.253e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=4.511e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.085e+08 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=3.882e+09 y=2.5655e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=1.255e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=5.769e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=2.6245e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.3665e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=1.9955e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=5.14e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=7.375e+08 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=3.253e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=4.511e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.085e+08 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=3.882e+09 y=7.355e+08 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=1.3455e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=1.9555e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=6.614e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=5.769e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=2.6245e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.3665e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=1.9955e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=5.14e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=7.375e+08 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=3.253e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=6e+08 w=4e+08 x=4.511e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=1.085e+08 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=6e+08 w=4e+08 x=3.882e+09 y=6.004e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=5.394e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=5.769e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.6245e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.9955e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=5.14e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=3.253e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=4.511e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=3.882e+09 y=4.784e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=1.995e+09 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=6e+08 w=4e+08 x=7.375e+08 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.085e+08 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=2.624e+09 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=6e+08 w=4e+08 x=1.3665e+09 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM12G VN VM12D VN l=6e+08 w=4e+08 x=5.1435e+09 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM12G VM12D VN VN l=6e+08 w=4e+08 x=5.772e+09 y=3.1705e+09 sky130_fd_pr__nfet_01v8
+x VM8D VM9D a_19136_9959# VP l=2e+07 w=4e+08 x=9.5485e+09 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM9D a_19136_9959# VP l=2e+07 w=4e+08 x=9.5485e+09 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_9959# VP l=1e+08 w=4e+08 x=1.0145e+10 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_9959# VP l=1e+08 w=4e+08 x=1.0145e+10 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_9959# VP l=1e+08 w=4e+08 x=9.8875e+09 y=4.98e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_9959# VP l=1e+08 w=4e+08 x=9.8875e+09 y=5.4975e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM8D a_19136_7699# VP l=2e+07 w=4e+08 x=9.5485e+09 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM8D a_19136_7699# VP l=2e+07 w=4e+08 x=9.5485e+09 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=1e+08 w=4e+08 x=1.0145e+10 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=1e+08 w=4e+08 x=1.0145e+10 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=1e+08 w=4e+08 x=9.8875e+09 y=3.85e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=1e+08 w=4e+08 x=9.8875e+09 y=4.3675e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=9.5485e+09 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.0274e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.00165e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.0145e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=9.7585e+09 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=9.8875e+09 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=2.72e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=3.2375e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=1.59e+09 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=2.1075e+09 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=2e+07 w=4e+08 x=1.05685e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.1294e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.10365e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.1165e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=1e+08 w=4e+08 x=1.07785e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=4.6e+08 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=1e+08 w=4e+08 x=1.09075e+10 y=9.775e+08 sky130_fd_pr__pfet_01v8
+x a_17176_2078# a_17176_1646# a_16646_4078# VN l=1e+09 w=0 x=8.588e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_16646_2078# a_16116_1646# a_16646_4078# VN l=1e+09 w=0 x=8.323e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_14526_2078# VM3G a_14526_4078# VN l=1e+09 w=0 x=7.2635e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_15056_2078# a_15056_1646# a_14526_4078# VN l=1e+09 w=0 x=7.5285e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_15586_2078# a_15056_1646# a_15586_4078# VN l=1e+09 w=0 x=7.7935e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_18236_2078# VN a_17706_4078# VN l=1e+09 w=0 x=9.118e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_16116_2078# a_16116_1646# a_15586_4078# VN l=1e+09 w=0 x=8.0585e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_17706_2078# a_17176_1646# a_17706_4078# VN l=1e+09 w=0 x=8.853e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x VM12G VN VM14D VN l=6e+08 w=4e+08 x=6.6885e+09 y=3.1755e+09 sky130_fd_pr__nfet_01v8
+x VM12G VM14D VN VN l=6e+08 w=4e+08 x=7.317e+09 y=3.1755e+09 sky130_fd_pr__nfet_01v8
+x a_13916_2078# VM3G a_13386_4078# VN l=1e+09 w=0 x=6.958e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x a_13386_2078# VM12G a_13386_4078# VN l=1e+09 w=0 x=6.6935e+09 y=1.0395e+09 sky130_fd_pr__res_xhigh_po_1p41
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.073e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.589e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=8.202e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.6865e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.589e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.9445e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.073e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.4285e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=7.8155e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.6865e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=7.8155e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=7.5575e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=8.46e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.4285e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=8.46e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=7.5575e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.331e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=7.9445e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=1e+08 w=4e+08 x=8.331e+09 y=5.202e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=1e+08 w=4e+08 x=8.202e+09 y=4.6935e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.073e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.589e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=8.202e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.6865e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.589e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.9445e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.073e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.4285e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=7.8155e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.6865e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=7.8155e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=7.5575e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=8.46e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.4285e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=8.46e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=7.5575e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.331e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=7.9445e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=1e+08 w=4e+08 x=8.331e+09 y=7.264e+09 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM2D VM9D VM2D l=1e+08 w=4e+08 x=8.202e+09 y=6.7555e+09 sky130_fd_pr__nfet_01v8_lvt
+x VN VP l=3e+09 w=3e+09 x=1.9505e+09 y=-6.495e+08 sky130_fd_pr__cap_mim_m3_2
+x VN VP l=3e+09 w=3e+09 x=1.9505e+09 y=2.8505e+09 sky130_fd_pr__cap_mim_m3_2
+C VP VM22D 7.60
+C VP a_19136_9959# 16.96
+C a_216_n2258# VM22D 27.19
+C VM11D VM2D 74.09
+C VM9D VM2D 30.84
+C VN VP 152.27
+C a_19136_7699# VP 16.99
+C VM8D VM2D 3.93
+C VM8D VM14D 20.11
+C a_19136_n1351# VM8D 6.10
+C VM12D VM11D 37.63
+C VN isource_startup_0/m1_330_800# 19.06
+C VP m3_4100_n1730# 10.73
+C a_216_n2258# m3_4100_n1730# 11.64
+C VM3D VM3G 3.43
+C VM8D a_19136_919# 47.88
+C VP VM11D 39.67
+C VP VM9D 5.78
+C a_19136_9959# VM9D 2.94
+C VM12D VM2D 66.97
+C VN VM11D 67.54
+C VP VM8D 226.66
+C a_19136_9959# VM8D 12.34
+C VM14D VM12G 13.42
+C VM14D a_19136_919# 21.67
+C a_19136_7699# VM8D 14.81
+C isource_startup_0/m1_330_800# VM11D 2.79
+C VP VM2D 27.03
+C VM22D VM3D 9.50
+C VP VM3G 5.21
+C a_216_n2258# VM2D 4.99
+C VP VM14D 42.22
+C VP VM3D 5.28
+C VM22D I_ref 9.00
+C VN VM2D 44.08
+C a_216_n2258# VM3D 14.69
+C a_216_n2258# I_ref 40.41
+C a_19136_n1351# VM22D 2.94
+C VP a_19136_n1351# 14.48
+C VM9D VM11D 17.25
+C VP VM12D 9.90
+C VP VM12G 55.78
+C VP a_19136_919# 112.08
+C VM8D VM11D 18.17
+C VN VM12D 42.08
+C VM8D VM9D 22.49
+C VM3D m3_4100_n1730# 11.24
+C VM9D GND 30.91
+R VM9D 23138
+= VM9D isource_diffamp_1/m1_15310_n7040#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_n909#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_n909#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_n909#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_109#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_109#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_109#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_n909#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#
+= VM9D isource_diffamp_1/m1_14640_n6760#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_21#
+= VM9D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#
+= VM9D isource_cmirror_2/m1_110_820#
+= VM9D isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM9D isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM9D isource_diffamp_0/m1_14640_n6760#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_21#
+= VM9D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#
+R a_13916_2078# 2000
+= a_13916_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1000#
+R a_13386_2078# 4859
+= a_13386_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1000#
+C a_13386_4078# GND 6.29
+R a_13386_4078# 84
+= a_13386_4078# isource_conv_0/m1_4160_10260#
+= a_13386_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_1000#
+= a_13386_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#
+R a_18236_2078# 2000
+= a_18236_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1000#
+R a_17706_2078# 8196
+= a_17706_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_n1000#
+C a_17706_4078# GND 5.45
+R a_17706_4078# 78
+= a_17706_4078# isource_conv_0/m1_8480_10260#
+= a_17706_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_1000#
+= a_17706_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#
+C a_17176_1646# GND 4.55
+R a_17176_1646# 94
+= a_17176_1646# isource_conv_0/m1_7960_7820#
+= a_17176_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_n1432#
+= a_17176_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#
+R a_17176_2078# 8196
+= a_17176_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1000#
+R a_16646_2078# 2000
+= a_16646_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_n1000#
+C a_16646_4078# GND 5.99
+R a_16646_4078# 102
+= a_16646_4078# isource_conv_0/m1_7420_10260#
+= a_16646_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_1000#
+= a_16646_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#
+C a_16116_1646# GND 5.11
+R a_16116_1646# 13
+= a_16116_1646# isource_conv_0/m1_6900_7820#
+= a_16116_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_n1432#
+= a_16116_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#
+R a_16116_2078# 2000
+= a_16116_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1000#
+R a_15586_2078# 8196
+= a_15586_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_n1000#
+C a_15586_4078# GND 6.46
+R a_15586_4078# 66
+= a_15586_4078# isource_conv_0/m1_6360_10260#
+= a_15586_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_1000#
+= a_15586_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#
+C a_15056_1646# GND 4.92
+R a_15056_1646# 94
+= a_15056_1646# isource_conv_0/m1_5840_7820#
+= a_15056_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_n1432#
+= a_15056_1646# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#
+R a_15056_2078# 8196
+= a_15056_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1000#
+R a_14526_2078# 2000
+= a_14526_2078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_n1000#
+C a_14526_4078# GND 4.52
+R a_14526_4078# 13
+= a_14526_4078# isource_conv_0/m1_5300_10260#
+= a_14526_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_1000#
+= a_14526_4078# isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#
+R VM8D 12246
+= VM8D isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#
+= VM8D m3_18880_11840#
+= VM8D isource_cmirror_2/m1_0_1060#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#
+= VM8D isource_diffamp_0/m1_15310_n7040#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_n909#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_n909#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_n909#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_109#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_109#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_109#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_n909#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#
+= VM8D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#
+= VM8D isource_cmirror_3/m1_0_1060#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_cmirror_3/m1_110_820#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM8D isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM8D isource_out_0/isource_cmirror_0/m1_0_1060#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/m1_9600_7000#
+= VM8D isource_conv_0/isource_cmirror_0/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/isource_cmirror_3/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/m1_11580_12480#
+= VM8D isource_conv_0/isource_cmirror_1/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/isource_cmirror_4/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/m1_11580_10220#
+= VM8D isource_conv_0/isource_cmirror_2/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+= VM8D isource_conv_0/m1_11560_7960#
+= VM8D isource_conv_0/isource_cmirror_5/m1_0_1060#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#
+= VM8D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#
+R a_19136_919# 40538
+= a_19136_919# isource_conv_0/m2_10060_7720#
+= a_19136_919# isource_conv_0/isource_cmirror_3/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+= a_19136_919# isource_conv_0/m2_11660_13040#
+= a_19136_919# isource_conv_0/isource_cmirror_0/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+= a_19136_919# isource_conv_0/isource_cmirror_4/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+= a_19136_919# isource_conv_0/isource_cmirror_1/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+= a_19136_919# isource_conv_0/isource_cmirror_5/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+= a_19136_919# isource_conv_0/isource_cmirror_2/m1_250_820#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_919# isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+C VP GND 171.66
+R VP 28469
+= VP isource_startup_0/li_2190_920#
+= VP isource_startup_0/sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#
+= VP isource_startup_0/li_1590_740#
+= VP isource_startup_0/sky130_fd_pr__pfet_01v8_QDYTZD_1/a_200_n50#
+= VP isource_diffamp_1/dw_14640_n8120#
+= VP m4_20800_11820#
+= VP isource_cmirror_2/li_0_0#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_cmirror_2/m1_810_220#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_diffamp_0/dw_14640_n8120#
+= VP sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#
+= VP isource_cmirror_3/li_0_0#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_cmirror_3/m1_810_220#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#
+= VP isource_conv_tsmal_nwell_0/m1_4500_6730#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#
+= VP isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#
+= VP isource_conv_tsmal_nwell_0/dw_4150_6290#
+= VP m4_9000_4800#
+= VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#
+= VP isource_out_0/li_23190_12600#
+= VP isource_out_0/isource_cmirror_0/li_0_0#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_out_0/isource_cmirror_0/m1_810_220#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/li_9700_9140#
+= VP isource_conv_0/isource_cmirror_3/li_0_0#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_3/m1_810_220#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/isource_cmirror_0/li_0_0#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_0/m1_810_220#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/li_9700_11420#
+= VP isource_conv_0/m2_11180_13260#
+= VP isource_conv_0/isource_cmirror_4/li_0_0#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_4/m1_810_220#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/isource_cmirror_5/li_0_0#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_5/m1_810_220#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/isource_cmirror_1/li_0_0#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_1/m1_810_220#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+= VP isource_conv_0/isource_cmirror_2/li_0_0#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#
+= VP isource_conv_0/isource_cmirror_2/m1_810_220#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#
+= VP isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#
+R a_19136_7699# 3819
+= a_19136_7699# isource_cmirror_3/m1_250_820#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_7699# isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+R a_19136_9959# 4186
+= a_19136_9959# isource_cmirror_2/m1_250_820#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_9959# isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+R VN 1182242
+= VN isource_startup_0/VSUBS
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n258_n50#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/w_n396_n260#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_363_n400#
+= VN isource_startup_0/sky130_fd_pr__pfet_01v8_QDYTZD_1/VSUBS
+= VN isource_startup_0/li_240_1150#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_167_n400#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n29_n400#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n225_n400#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n421_n400#
+= VN isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/w_n657_n610#
+= VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#
+= VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#
+= VN m5_9000_4420#
+= VN isource_out_0/VSUBS
+= VN isource_cmirror_2/VSUBS
+= VN isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_cmirror_3/VSUBS
+= VN isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/VSUBS
+= VN isource_conv_0/m1_4090_13100#
+= VN isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#
+= VN isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#
+= VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS
+= VN isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#
+= VN isource_conv_0/VSUBS
+= VN isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/w_n1425_n610#
+= VN isource_conv_0/isource_cmirror_3/VSUBS
+= VN isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_0/VSUBS
+= VN isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_4/VSUBS
+= VN isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_1/VSUBS
+= VN isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_5/VSUBS
+= VN isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_2/VSUBS
+= VN isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/w_n2162_n1598#
+= VN isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/w_n572_n1598#
+= VN isource_conv_0/li_5100_7720#
+= VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS
+= VN w_20_n2380#
+= VN isource_out_0/isource_cmirror_0/VSUBS
+= VN isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS
+= VN isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS
+= VN isource_out_0/isource_conv_tsmal_0/w_4410_6620#
+= VN isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/w_n647_n1119#
+= VN isource_out_0/isource_ref_transistor_0/VSUBS
+= VN isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#
+= VN isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#
+= VN isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2545_n400#
+= VN isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/w_n1367_n1598#
+= VN isource_out_0/isource_ref_transistor_1/VSUBS
+= VN isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/w_n2683_n610#
+= VN isource_out_0/li_4360_12590#
+= VN isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#
+= VN isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_transistor_0/VSUBS
+= VN isource_ref_0/dw_12100_8800#
+= VN isource_ref_0/isource_ref_5transistors_1/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_1/li_40_4820#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_1/li_20_3600#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_1/li_40_2380#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_1/li_12820_1440#
+= VN isource_ref_0/isource_ref_5transistors_1/m2_620_1490#
+= VN isource_ref_0/isource_ref_5transistors_1/li_40_1160#
+= VN isource_ref_0/isource_ref_5transistors_1/li_20_1440#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_n370_110#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VN isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VN isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#
+= VN isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#
+= VN isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#
+= VN isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/w_n3312_n610#
+= VN isource_ref_0/w_1300_6040#
+= VN isource_ref_0/isource_ref_transistor_0/m1_n370_110#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VN isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_0/VSUBS
+= VN isource_ref_0/m1_10190_6860#
+= VN isource_ref_0/li_n20_n40#
+= VN isource_ref_0/m2_620_5130#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_0/li_40_4820#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_0/li_20_3600#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_0/li_40_2380#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/VSUBS
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_0/li_12820_1440#
+= VN isource_ref_0/isource_ref_5transistors_0/m2_620_1490#
+= VN isource_ref_0/isource_ref_5transistors_0/li_40_1160#
+= VN isource_ref_0/isource_ref_5transistors_0/li_20_1440#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_n370_110#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VN isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+C VM2D GND 347.98
+R VM2D 89450
+= VM2D isource_diffamp_1/m1_15050_n7600#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_n909#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_n909#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_n909#
+= VM2D isource_diffamp_1/w_14846_n7914#
+= VM2D isource_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/w_n1457_n1119#
+= VM2D isource_diffamp_1/li_14940_n7200#
+= VM2D isource_ref_0/m1_5600_140#
+= VM2D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1916_n488#
+= VM2D isource_ref_0/m1_5154_6228#
+= VM2D isource_ref_0/m1_11444_5928#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_887_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_886_930#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/m1_5154_7138#
+= VM2D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#
+= VM2D isource_ref_0/m1_3896_7138#
+= VM2D isource_ref_0/m1_3896_6228#
+= VM2D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#
+= VM2D isource_ref_0/m1_2638_7138#
+= VM2D isource_ref_0/m1_2638_6228#
+= VM2D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#
+= VM2D isource_ref_0/m1_1380_7138#
+= VM2D isource_ref_0/m1_1380_6228#
+= VM2D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#
+= VM2D isource_ref_0/m2_1460_5690#
+= VM2D isource_ref_0/isource_ref_5transistors_1/m1_12450_1060#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_890_680#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/m2_12460_5710#
+= VM2D isource_ref_0/isource_ref_transistor_0/m1_890_680#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM2D isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/m1_12450_1060#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_890_680#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_887_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_10952_932#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_10951_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_9693_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_8435_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_9692_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_8434_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_7177_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_7176_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_5919_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_5918_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_4661_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_4660_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_3403_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_3402_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_2145_21#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_2144_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_886_930#
+= VM2D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+R VM11D 51080
+= VM11D isource_startup_0/m1_360_100#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_310_n488#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_114_n488#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n82_n488#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n278_n488#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n474_n488#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_212_422#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_16_422#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n180_422#
+= VM11D isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n376_422#
+= VM11D isource_startup_0/sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#
+= VM11D isource_diffamp_0/m1_15050_n7600#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_n909#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_n909#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_n909#
+= VM11D isource_diffamp_0/w_14846_n7914#
+= VM11D isource_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/w_n1457_n1119#
+= VM11D isource_diffamp_0/li_14940_n7200#
+= VM11D m2_12140_7550#
+= VM11D isource_ref_0/m2_12700_7520#
+= VM11D isource_ref_0/m1_1370_6840#
+= VM11D isource_ref_0/m3_12120_4500#
+= VM11D isource_ref_0/isource_ref_5transistors_1/m2_12120_850#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM11D isource_ref_0/m2_12700_8740#
+= VM11D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#
+= VM11D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#
+= VM11D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/m2_12120_850#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_890_680#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM11D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+C VM12D GND 3.69
+R VM12D 89179
+= VM12D isource_ref_0/m1_130_6460#
+= VM12D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#
+= VM12D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#
+= VM12D isource_ref_0/sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#
+= VM12D isource_ref_0/m1_11450_6340#
+= VM12D isource_ref_0/isource_ref_5transistors_1/m2_220_270#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM12D isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/m2_220_270#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_n370_110#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM12D isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+C isource_startup_0/m1_330_800# GND 2.12
+R isource_startup_0/m1_330_800# 13984
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n200_n138#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_461_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_265_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_69_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n127_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n323_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#
+= isource_startup_0/m1_330_800# isource_startup_0/sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#
+C VM12G GND 31.46
+R VM12G 5948
+= VM12G isource_ref_0/m1_12708_6228#
+= VM12G isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#
+= VM12G isource_ref_0/m1_11450_7138#
+= VM12G isource_ref_0/m1_11450_6228#
+= VM12G isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#
+= VM12G isource_conv_tsmal_nwell_0/w_4356_6496#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/w_n647_n1119#
+= VM12G isource_conv_0/m1_4150_7820#
+= VM12G isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_29_n488#
+= VM12G isource_conv_0/m1_5360_13388#
+= VM12G isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#
+= VM12G isource_conv_0/m1_5360_12478#
+= VM12G isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#
+= VM12G isource_conv_tsmal_nwell_0/m1_4590_7330#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_n909#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#
+= VM12G isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#
+R VM14D 26787
+= VM14D isource_conv_0/m1_5350_12620#
+= VM14D isource_conv_0/isource_cmirror_3/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_3/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_0/isource_cmirror_0/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_0/sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#
+= VM14D isource_conv_0/isource_cmirror_4/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_0/isource_cmirror_1/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_0/isource_cmirror_5/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_0/isource_cmirror_2/m1_110_820#
+= VM14D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM14D isource_conv_0/isource_cmirror_2/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM14D isource_conv_tsmal_nwell_0/m1_4410_6620#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_n997#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#
+= VM14D isource_conv_tsmal_nwell_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#
+C VM3G GND 43.00
+R VM3G 81
+= VM3G isource_conv_0/m1_4700_7820#
+= VM3G isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_n1432#
+= VM3G isource_conv_0/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#
+= VM3G isource_out_0/m1_21256_12488#
+= VM3G isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#
+= VM3G isource_out_0/m1_21256_11578#
+= VM3G isource_out_0/m1_19998_12488#
+= VM3G isource_out_0/m1_18740_12488#
+= VM3G isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#
+= VM3G isource_out_0/m1_19998_11578#
+= VM3G isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#
+= VM3G isource_out_0/m1_18740_11578#
+= VM3G isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#
+= VM3G isource_out_0/m1_17600_11580#
+R a_20766_n4232# 2000
+= a_20766_n4232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1000#
+R a_20236_n4232# 2000
+= a_20236_n4232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_n1000#
+C a_20236_n2232# GND 5.56
+R a_20236_n2232# 13
+= a_20236_n2232# isource_out_0/m1_24520_11560#
+= a_20236_n2232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_1000#
+= a_20236_n2232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#
+C a_19706_n4664# GND 6.18
+R a_19706_n4664# 49
+= a_19706_n4664# isource_out_0/m1_24000_9140#
+= a_19706_n4664# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_n1432#
+= a_19706_n4664# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#
+R a_19706_n4232# 2000
+= a_19706_n4232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1000#
+R a_19176_n4232# 2000
+= a_19176_n4232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_n1000#
+C a_19176_n2232# GND 5.72
+R a_19176_n2232# 63
+= a_19176_n2232# isource_out_0/m1_23460_11560#
+= a_19176_n2232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_1000#
+= a_19176_n2232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#
+C a_18646_n4664# GND 5.04
+R a_18646_n4664# 54
+= a_18646_n4664# isource_out_0/m1_22920_9140#
+= a_18646_n4664# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_n1432#
+= a_18646_n4664# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#
+R a_18646_n4232# 2000
+= a_18646_n4232# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1000#
+C VM3D GND 24.52
+R VM3D 5565
+= VM3D isource_out_0/m1_18730_12160#
+= VM3D isource_out_0/isource_ref_transistor_0/m1_n370_110#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM3D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM3D isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#
+= VM3D isource_out_0/sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#
+= VM3D isource_out_0/isource_ref_transistor_1/m1_890_680#
+= VM3D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM3D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM3D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM3D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM3D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+C a_216_n2258# GND 226.03
+R a_216_n2258# 3891
+= a_216_n2258# isource_out_0/m1_16760_11560#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/m1_4590_7330#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_n909#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#
+= a_216_n2258# isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_887_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_10952_932#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_10951_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_9693_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_8435_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_9692_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_8434_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_7177_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_7176_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_5919_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_5918_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_4661_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_4660_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_3403_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_3402_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_2145_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_2144_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/m1_886_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+= a_216_n2258# isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_887_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_10952_932#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_10951_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_9693_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_8435_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_9692_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_8434_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_7177_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_7176_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_5919_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_5918_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_4661_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_4660_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_3403_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_3402_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_2145_21#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_2144_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/m1_886_930#
+= a_216_n2258# isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#
+R a_19136_n1351# 5857
+= a_19136_n1351# isource_out_0/isource_cmirror_0/m1_250_820#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#
+= a_19136_n1351# isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#
+C I_ref GND 22.61
+R I_ref 2466
+= I_ref isource_out_0/isource_conv_tsmal_0/m1_4500_6730#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#
+= I_ref isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#
+C VM22D GND 40.28
+R VM22D 14344
+= VM22D isource_out_0/m1_20970_12680#
+= VM22D isource_out_0/isource_cmirror_0/m1_110_820#
+= VM22D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#
+= VM22D isource_out_0/isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#
+= VM22D isource_out_0/isource_ref_transistor_0/m1_890_680#
+= VM22D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#
+= VM22D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#
+= VM22D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#
+= VM22D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#
+= VM22D isource_out_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/m1_n370_110#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#
+= VM22D isource_out_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#
+= VM22D isource_out_0/isource_conv_tsmal_0/m1_4410_6620#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_n997#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#
+= VM22D isource_out_0/isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#
diff --git a/mag/isource/isource.spice b/mag/isource/isource.spice
new file mode 100644
index 0000000..806f689
--- /dev/null
+++ b/mag/isource/isource.spice
@@ -0,0 +1,345 @@
+* SPICE3 file created from isource.ext - technology: sky130A
+
+.subckt isource VP I_ref VN
+X0 VP VM8D sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X1 VN VM3G VM3D VN sky130_fd_pr__nfet_01v8 ad=9.9185e+13p pd=7.231e+08u as=0p ps=0u w=4e+06u l=6e+06u
+X2 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X3 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X4 VN VM3G VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X5 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.552e+13p ps=1.0376e+08u w=4e+06u l=150000u
+X6 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X7 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X8 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X9 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X10 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X11 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X12 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X13 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X14 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X15 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X16 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X17 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X18 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X19 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X20 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X21 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X22 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X23 I_ref VM22D isource_out_0/m1_16760_11560# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X24 isource_out_0/m1_16760_11560# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X25 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X26 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X27 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X28 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X29 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X30 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X31 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X32 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X33 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X34 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X35 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VM22D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X36 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VM22D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X37 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=6.2785e+13p pd=4.649e+08u as=0p ps=0u w=4e+06u l=1e+06u
+X38 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X39 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X40 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X41 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X42 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X43 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X44 VP VM8D isource_out_0/isource_cmirror_0/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X45 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X46 isource_out_0/isource_cmirror_0/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X47 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X48 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X49 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X50 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X51 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X52 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X53 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X54 VM22D isource_out_0/m1_16760_11560# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X55 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X56 VM3D isource_out_0/m1_16760_11560# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X57 isource_out_0/m1_22920_9140# isource_out_0/m1_16760_11560# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X58 VN isource_out_0/m1_24520_11560# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X59 isource_out_0/m1_22920_9140# isource_out_0/m1_23460_11560# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X60 isource_out_0/m1_24000_9140# isource_out_0/m1_23460_11560# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X61 isource_out_0/m1_24000_9140# isource_out_0/m1_24520_11560# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X62 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.75622e+14p ps=1.58256e+09u w=4e+06u l=150000u
+X63 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X64 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X65 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X66 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X67 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X68 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X69 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X70 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X71 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X72 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X73 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X74 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X75 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X76 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X77 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X78 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X79 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X80 VP VM14D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X81 VN VM14D VP VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X82 VP VN isource_startup_0/m1_330_800# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X83 VM8D isource_startup_0/m1_330_800# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X84 VN VN isource_startup_0/m1_330_800# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X85 isource_startup_0/m1_330_800# VN VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X86 isource_startup_0/m1_330_800# VN VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X87 VN VN isource_startup_0/m1_330_800# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X88 VN VN isource_startup_0/m1_330_800# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X89 isource_startup_0/m1_330_800# VN VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X90 isource_startup_0/m1_330_800# VN VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X91 isource_startup_0/m1_330_800# VN VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X92 VN VN isource_startup_0/m1_330_800# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X93 VN VN isource_startup_0/m1_330_800# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X94 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X95 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X96 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X97 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X98 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X99 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X100 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X101 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X102 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X103 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X104 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X105 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X106 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X107 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X108 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X109 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X110 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X111 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X112 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X113 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X114 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X115 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X116 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X117 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X118 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X119 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X120 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X121 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X122 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X123 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X124 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X125 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X126 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X127 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X128 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X129 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X130 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X131 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X132 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X133 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X134 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X135 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X136 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X137 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X138 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X139 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X140 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X141 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X142 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X143 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X144 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X145 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X146 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X147 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X148 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X149 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X150 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X151 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X152 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X153 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X154 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X155 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X156 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X157 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X158 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X159 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X160 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X161 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X162 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X163 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X164 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X165 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X166 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X167 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X168 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X169 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X170 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X171 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X172 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X173 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X174 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X175 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X176 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X177 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X178 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X179 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X180 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X181 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X182 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X183 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X184 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X185 VM12D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X186 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X187 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X188 VN VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X189 VM12D VN isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400# isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X190 VN VN VM12D isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X191 isource_cmirror_2/m1_250_820# VM8D VM9D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X192 isource_cmirror_2/m1_250_820# VM8D VM9D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X193 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X194 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X195 isource_cmirror_2/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X196 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X197 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X198 isource_cmirror_2/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X199 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X200 VP VM8D isource_cmirror_2/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X201 isource_cmirror_2/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X202 isource_cmirror_2/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X203 isource_cmirror_3/m1_250_820# VM8D VM8D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X204 isource_cmirror_3/m1_250_820# VM8D VM8D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X205 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X206 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X207 isource_cmirror_3/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X208 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X209 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X210 isource_cmirror_3/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X211 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X212 VP VM8D isource_cmirror_3/m1_250_820# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X213 isource_cmirror_3/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X214 isource_cmirror_3/m1_250_820# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X215 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X216 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X217 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X218 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X219 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X220 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X221 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X222 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X223 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X224 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X225 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X226 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X227 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X228 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X229 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X230 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X231 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X232 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X233 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X234 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X235 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X236 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X237 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X238 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X239 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X240 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X241 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X242 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X243 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X244 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X245 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X246 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X247 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X248 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X249 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X250 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X251 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X252 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X253 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X254 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X255 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X256 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X257 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X258 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X259 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X260 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X261 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X262 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X263 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X264 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X265 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X266 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X267 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X268 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X269 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X270 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X271 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X272 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X273 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X274 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X275 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X276 m2_19160_1520# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X277 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X278 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X279 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X280 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X281 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X282 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X283 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X284 VP VM8D m2_19160_1520# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X285 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X286 m2_19160_1520# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X287 isource_conv_0/m1_7960_7820# isource_conv_0/m1_7420_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X288 isource_conv_0/m1_6900_7820# isource_conv_0/m1_7420_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X289 VM3G isource_conv_0/m1_5300_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X290 isource_conv_0/m1_5840_7820# isource_conv_0/m1_5300_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X291 isource_conv_0/m1_5840_7820# isource_conv_0/m1_6360_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X292 VN isource_conv_0/m1_8480_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X293 isource_conv_0/m1_6900_7820# isource_conv_0/m1_6360_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X294 isource_conv_0/m1_7960_7820# isource_conv_0/m1_8480_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X295 VM14D VN VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X296 VN VN VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X297 VM3G isource_conv_0/m1_4160_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X298 VN isource_conv_0/m1_4160_10260# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X299 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X300 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X301 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X302 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X303 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X304 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X305 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X306 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X307 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X308 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X309 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X310 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X311 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X312 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X313 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X314 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X315 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X316 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X317 VN VM9D VM8D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X318 VM8D VM9D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X319 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X320 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X321 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X322 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X323 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X324 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X325 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X326 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X327 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X328 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X329 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X330 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X331 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X332 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X333 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X334 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X335 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X336 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X337 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X338 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X339 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X340 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
diff --git "a/mag/isource/isource_cmirror\0430.ext" "b/mag/isource/isource_cmirror\0430.ext"
new file mode 100644
index 0000000..618be7d
--- /dev/null
+++ "b/mag/isource/isource_cmirror\0430.ext"
@@ -0,0 +1,74 @@
+timestamp 1654695234
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_J24RLQ#0#0 sky130_fd_pr__pfet_01v8_J24RLQ_0 1 0 1232 0 1 1137
+use sky130_fd_pr__pfet_01v8_ACY9XJ#0#0 sky130_fd_pr__pfet_01v8_ACY9XJ_0 1 0 216 0 1 1137
+node "m1_810_220#" 6 1655.76 810 220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104000 3440 730400 7840 0 0 0 0 0 0 0 0
+node "m1_250_820#" 7 1115.15 250 820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128000 4480 611600 6800 0 0 0 0 0 0 0 0
+node "m1_110_820#" 2 191.512 110 820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32000 1120 78000 1560 0 0 0 0 0 0 0 0
+node "m1_0_1060#" 8 2598.66 0 1060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 794000 14500 0 0 0 0 0 0 0 0 0 0
+node "li_0_0#" 1735 4392.74 0 0 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 822800 21280 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_110_820#" "m1_0_1060#" 314.979
+cap "m1_0_1060#" "li_0_0#" 893.269
+cap "m1_110_820#" "m1_250_820#" 572.052
+cap "li_0_0#" "m1_250_820#" 58.4192
+cap "m1_0_1060#" "m1_250_820#" 1854.92
+cap "li_0_0#" "m1_810_220#" 231.511
+cap "m1_0_1060#" "m1_810_220#" 600.05
+cap "m1_250_820#" "m1_810_220#" 505.623
+cap "m1_110_820#" "li_0_0#" 126.22
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 1180.44
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 584.509
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" 31.0233
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 128.024
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 619.728
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" -208.485
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 179.402
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 212.353
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -695.901
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 27.5265
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 514.781
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 847.271
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 32.5495
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" -36.9
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 283.897
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 154.881
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 92.3112
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" -95.6435
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" 1339.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2365648 -982 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "m1_110_820#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS" "sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#" -7332.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -14355682 -10312 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "m1_0_1060#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#" -2053.92 0 0 0 0 2173944 -4572 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -10202024 -25684 6209024 -2952 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "m1_810_220#"
+merge "m1_810_220#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "li_0_0#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#" 1738.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5130542 -3896 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "m1_250_820#"
diff --git "a/mag/isource/isource_cmirror\0430.mag" "b/mag/isource/isource_cmirror\0430.mag"
new file mode 100644
index 0000000..d8233cd
--- /dev/null
+++ "b/mag/isource/isource_cmirror\0430.mag"
@@ -0,0 +1,125 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654695234
+<< locali >>
+rect 0 2200 2040 2280
+rect 0 60 60 2200
+rect 380 1840 480 2200
+rect 1980 2020 2040 2200
+rect 1880 1840 2040 2020
+rect 360 320 480 1840
+rect 1980 420 2040 1840
+rect 380 60 480 320
+rect 1880 240 2040 420
+rect 1980 60 2040 240
+rect 0 0 2040 60
+<< metal1 >>
+rect 100 2120 1860 2180
+rect 100 2100 1850 2120
+rect 180 2090 260 2100
+rect 110 1260 120 1460
+rect 180 1260 190 1460
+rect 250 1260 260 1460
+rect 320 1260 330 1460
+rect 360 1220 480 2100
+rect 810 1840 820 2040
+rect 880 1840 890 2040
+rect 1330 1840 1340 2040
+rect 1400 1840 1410 2040
+rect 1830 1840 1840 2040
+rect 1920 1840 1930 2040
+rect 550 1260 560 1460
+rect 620 1260 630 1460
+rect 1070 1260 1080 1460
+rect 1140 1260 1150 1460
+rect 1590 1260 1600 1460
+rect 1660 1260 1670 1460
+rect 0 1060 1880 1220
+rect 110 820 120 1020
+rect 180 820 190 1020
+rect 250 820 260 1020
+rect 320 820 330 1020
+rect 360 180 480 1060
+rect 550 820 560 1020
+rect 620 820 630 1020
+rect 1070 820 1080 1020
+rect 1140 820 1150 1020
+rect 1590 820 1600 1020
+rect 1660 820 1670 1020
+rect 810 220 820 420
+rect 880 220 890 420
+rect 1330 220 1340 420
+rect 1400 220 1410 420
+rect 1830 220 1840 420
+rect 1920 220 1930 420
+rect 100 160 1850 180
+rect 100 100 1860 160
+<< via1 >>
+rect 120 1260 180 1460
+rect 260 1260 320 1460
+rect 820 1840 880 2040
+rect 1340 1840 1400 2040
+rect 1840 1840 1920 2040
+rect 560 1260 620 1460
+rect 1080 1260 1140 1460
+rect 1600 1260 1660 1460
+rect 120 820 180 1020
+rect 260 820 320 1020
+rect 560 820 620 1020
+rect 1080 820 1140 1020
+rect 1600 820 1660 1020
+rect 820 220 880 420
+rect 1340 220 1400 420
+rect 1840 220 1920 420
+<< metal2 >>
+rect 820 2040 880 2050
+rect 1340 2040 1400 2050
+rect 1840 2040 1920 2050
+rect 880 1840 1340 2040
+rect 1400 1840 1840 2040
+rect 820 1830 880 1840
+rect 1340 1830 1400 1840
+rect 120 1460 180 1470
+rect 60 1260 120 1460
+rect 60 1020 180 1260
+rect 60 820 120 1020
+rect 120 810 180 820
+rect 260 1460 320 1470
+rect 560 1460 620 1470
+rect 1080 1460 1140 1470
+rect 1600 1460 1660 1470
+rect 320 1260 560 1460
+rect 620 1260 1080 1460
+rect 1140 1260 1600 1460
+rect 260 1020 440 1260
+rect 560 1250 620 1260
+rect 1080 1250 1140 1260
+rect 1600 1250 1660 1260
+rect 560 1020 620 1030
+rect 1080 1020 1140 1030
+rect 1600 1020 1660 1030
+rect 320 820 560 1020
+rect 620 820 1080 1020
+rect 1140 820 1600 1020
+rect 260 810 320 820
+rect 560 810 620 820
+rect 1080 810 1140 820
+rect 1600 810 1660 820
+rect 820 420 880 430
+rect 1340 420 1400 430
+rect 1720 420 1920 1840
+rect 880 220 1340 420
+rect 1400 220 1840 420
+rect 820 210 880 220
+rect 1340 210 1400 220
+rect 1840 210 1920 220
+use sky130_fd_pr__pfet_01v8_ACY9XJ#0#0  sky130_fd_pr__pfet_01v8_ACY9XJ_0
+timestamp 1647868710
+transform 1 0 216 0 1 1137
+box -216 -1137 216 1137
+use sky130_fd_pr__pfet_01v8_J24RLQ#0#0  sky130_fd_pr__pfet_01v8_J24RLQ_0
+timestamp 1646921651
+transform 1 0 1232 0 1 1137
+box -812 -1137 812 1137
+<< end >>
diff --git a/mag/isource/isource_cmirror.ext b/mag/isource/isource_cmirror.ext
new file mode 100644
index 0000000..2eef3a8
--- /dev/null
+++ b/mag/isource/isource_cmirror.ext
@@ -0,0 +1,92 @@
+timestamp 1645630008
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_J24RLQ sky130_fd_pr__pfet_01v8_J24RLQ_0 1 0 1232 0 1 1137
+use sky130_fd_pr__pfet_01v8_ACY9XJ sky130_fd_pr__pfet_01v8_ACY9XJ_0 1 0 216 0 1 1137
+node "m1_810_220#" 6 2253.24 810 220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104000 3440 730400 7840 0 0 0 0 0 0 0 0
+node "m1_250_820#" 7 2178.37 250 820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128000 4480 611600 6800 0 0 0 0 0 0 0 0
+node "m1_110_820#" 2 331.89 110 820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32000 1120 78000 1560 0 0 0 0 0 0 0 0
+node "m1_0_1060#" 8 3261.8 0 1060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 794000 14500 0 0 0 0 0 0 0 0 0 0
+node "li_0_0#" 1735 5123.49 0 0 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 822800 21280 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_810_220#" "m1_0_1060#" 659.73
+cap "m1_810_220#" "m1_250_820#" 508.816
+cap "m1_810_220#" "li_0_0#" 246.8
+cap "m1_0_1060#" "m1_110_820#" 515.002
+cap "m1_250_820#" "m1_110_820#" 767.763
+cap "m1_0_1060#" "m1_250_820#" 2356.26
+cap "li_0_0#" "m1_110_820#" 163.2
+cap "m1_0_1060#" "li_0_0#" 1018.2
+cap "m1_250_820#" "li_0_0#" 96.8
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 491.626
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 130.244
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 571.409
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 59.1429
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" -99.5195
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 130.585
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 1816.37
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 209.191
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 78.2218
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 23.4622
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" 562.069
+cap "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 162.368
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 1483.05
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" 0.432772
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" 394.881
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" 186.375
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" 55.0842
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" 33.4286
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" 284.721
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" 200.826
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" 108.473
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" -8.58768
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" 4.52215
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" 304.654
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 470.902
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" 82.9303
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 1138.03
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 0.439032
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" 194.314
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 251.894
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" 41.115
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" 836.97
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" 221.849
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" 164.527
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" 404.252
+cap "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" -3.78947
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_n918#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" -359.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -22292 -982 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n78_118#" "m1_110_820#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/VSUBS" "sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" -5413.45 0 0 0 0 -27288 -4572 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -342880 -25684 -30400 -1968 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_616_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_100_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_n918#" "m1_810_220#"
+merge "m1_810_220#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "li_0_0#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#" -3408.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1485864 -10312 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_n1015#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_416_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_158_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n358_21#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n616_21#" "m1_0_1060#"
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#" -3177.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -110350 -3896 -195600 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_358_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n158_118#" "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#"
+merge "sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_118#" "m1_250_820#"
diff --git a/mag/isource/isource_cmirror.mag b/mag/isource/isource_cmirror.mag
new file mode 100644
index 0000000..6b76792
--- /dev/null
+++ b/mag/isource/isource_cmirror.mag
@@ -0,0 +1,125 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< locali >>
+rect 0 2200 2040 2280
+rect 0 60 60 2200
+rect 380 1840 480 2200
+rect 1980 2020 2040 2200
+rect 1880 1840 2040 2020
+rect 360 320 480 1840
+rect 1980 420 2040 1840
+rect 380 60 480 320
+rect 1880 240 2040 420
+rect 1980 60 2040 240
+rect 0 0 2040 60
+<< metal1 >>
+rect 100 2120 1860 2180
+rect 100 2100 1850 2120
+rect 180 2090 260 2100
+rect 110 1260 120 1460
+rect 180 1260 190 1460
+rect 250 1260 260 1460
+rect 320 1260 330 1460
+rect 360 1220 480 2100
+rect 810 1840 820 2040
+rect 880 1840 890 2040
+rect 1330 1840 1340 2040
+rect 1400 1840 1410 2040
+rect 1830 1840 1840 2040
+rect 1920 1840 1930 2040
+rect 550 1260 560 1460
+rect 620 1260 630 1460
+rect 1070 1260 1080 1460
+rect 1140 1260 1150 1460
+rect 1590 1260 1600 1460
+rect 1660 1260 1670 1460
+rect 0 1060 1880 1220
+rect 110 820 120 1020
+rect 180 820 190 1020
+rect 250 820 260 1020
+rect 320 820 330 1020
+rect 360 180 480 1060
+rect 550 820 560 1020
+rect 620 820 630 1020
+rect 1070 820 1080 1020
+rect 1140 820 1150 1020
+rect 1590 820 1600 1020
+rect 1660 820 1670 1020
+rect 810 220 820 420
+rect 880 220 890 420
+rect 1330 220 1340 420
+rect 1400 220 1410 420
+rect 1830 220 1840 420
+rect 1920 220 1930 420
+rect 100 160 1850 180
+rect 100 100 1860 160
+<< via1 >>
+rect 120 1260 180 1460
+rect 260 1260 320 1460
+rect 820 1840 880 2040
+rect 1340 1840 1400 2040
+rect 1840 1840 1920 2040
+rect 560 1260 620 1460
+rect 1080 1260 1140 1460
+rect 1600 1260 1660 1460
+rect 120 820 180 1020
+rect 260 820 320 1020
+rect 560 820 620 1020
+rect 1080 820 1140 1020
+rect 1600 820 1660 1020
+rect 820 220 880 420
+rect 1340 220 1400 420
+rect 1840 220 1920 420
+<< metal2 >>
+rect 820 2040 880 2050
+rect 1340 2040 1400 2050
+rect 1840 2040 1920 2050
+rect 880 1840 1340 2040
+rect 1400 1840 1840 2040
+rect 820 1830 880 1840
+rect 1340 1830 1400 1840
+rect 120 1460 180 1470
+rect 60 1260 120 1460
+rect 60 1020 180 1260
+rect 60 820 120 1020
+rect 120 810 180 820
+rect 260 1460 320 1470
+rect 560 1460 620 1470
+rect 1080 1460 1140 1470
+rect 1600 1460 1660 1470
+rect 320 1260 560 1460
+rect 620 1260 1080 1460
+rect 1140 1260 1600 1460
+rect 260 1020 440 1260
+rect 560 1250 620 1260
+rect 1080 1250 1140 1260
+rect 1600 1250 1660 1260
+rect 560 1020 620 1030
+rect 1080 1020 1140 1030
+rect 1600 1020 1660 1030
+rect 320 820 560 1020
+rect 620 820 1080 1020
+rect 1140 820 1600 1020
+rect 260 810 320 820
+rect 560 810 620 820
+rect 1080 810 1140 820
+rect 1600 810 1660 820
+rect 820 420 880 430
+rect 1340 420 1400 430
+rect 1720 420 1920 1840
+rect 880 220 1340 420
+rect 1400 220 1840 420
+rect 820 210 880 220
+rect 1340 210 1400 220
+rect 1840 210 1920 220
+use sky130_fd_pr__pfet_01v8_ACY9XJ#0  sky130_fd_pr__pfet_01v8_ACY9XJ_0
+timestamp 1646921651
+transform 1 0 216 0 1 1137
+box -216 -1137 216 1137
+use sky130_fd_pr__pfet_01v8_J24RLQ#0  sky130_fd_pr__pfet_01v8_J24RLQ_0
+timestamp 1646921651
+transform 1 0 1232 0 1 1137
+box -812 -1137 812 1137
+<< end >>
diff --git a/mag/isource/isource_cmirror.spice b/mag/isource/isource_cmirror.spice
new file mode 100644
index 0000000..472b7e3
--- /dev/null
+++ b/mag/isource/isource_cmirror.spice
@@ -0,0 +1,14 @@
+* SPICE3 file created from isource_cmirror.ext - technology: sky130A
+
+X0 m1_250_820# m1_n80_2060# m1_110_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X1 m1_250_820# m1_n80_2060# m1_110_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X2 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X3 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X4 m1_250_820# m1_n80_2060# li_0_30# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X5 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X6 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X7 m1_250_820# m1_n80_2060# li_0_30# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X8 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 li_0_30# m1_n80_2060# m1_250_820# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X10 m1_250_820# m1_n80_2060# li_0_30# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X11 m1_250_820# m1_n80_2060# li_0_30# li_0_30# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
diff --git a/mag/isource/isource_cmirror_2.mag b/mag/isource/isource_cmirror_2.mag
new file mode 100644
index 0000000..ed56bef
--- /dev/null
+++ b/mag/isource/isource_cmirror_2.mag
@@ -0,0 +1,55 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645633816
+<< dnwell >>
+rect -200 -400 3400 2600
+<< nwell >>
+rect -280 2394 3480 2680
+rect -280 -194 6 2394
+rect 3194 -194 3480 2394
+rect -280 -480 3480 -194
+<< nsubdiff >>
+rect -243 2623 3443 2643
+rect -243 2589 -163 2623
+rect 3363 2589 3443 2623
+rect -243 2569 3443 2589
+rect -243 2563 -169 2569
+rect -243 -363 -223 2563
+rect -189 -363 -169 2563
+rect -243 -369 -169 -363
+rect 3369 2563 3443 2569
+rect 3369 -363 3389 2563
+rect 3423 -363 3443 2563
+rect 3369 -369 3443 -363
+rect -243 -389 3443 -369
+rect -243 -423 -163 -389
+rect 3363 -423 3443 -389
+rect -243 -443 3443 -423
+<< nsubdiffcont >>
+rect -163 2589 3363 2623
+rect -223 -363 -189 2563
+rect 3389 -363 3423 2563
+rect -163 -423 3363 -389
+<< locali >>
+rect -223 2589 -163 2623
+rect 3363 2589 3423 2623
+rect -223 2563 -189 2589
+rect -223 -389 -189 -363
+rect 3389 2563 3423 2589
+rect 3389 -389 3423 -363
+rect -223 -423 -163 -389
+rect 3363 -423 3423 -389
+<< metal1 >>
+rect 320 2020 2880 2080
+rect 400 1140 460 2020
+rect 2720 1140 2780 2020
+rect 320 1000 2880 1140
+rect 400 120 460 1000
+rect 2720 120 2780 1000
+rect 320 60 2900 120
+use sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87  sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0
+timestamp 1645633816
+transform 1 0 1604 0 1 1066
+box -1457 -1119 1457 1119
+<< end >>
diff --git a/mag/isource/isource_conv.ext b/mag/isource/isource_conv.ext
new file mode 100644
index 0000000..93fb50b
--- /dev/null
+++ b/mag/isource/isource_conv.ext
@@ -0,0 +1,302 @@
+timestamp 1648644738
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__res_xhigh_po_1p41_J2NVFM sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0 1 0 4592 0 1 9278
+use sky130_fd_pr__res_xhigh_po_1p41_BQY2W7 sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0 1 0 7322 0 1 9278
+use sky130_fd_pr__nfet_01v8_WY4VMC sky130_fd_pr__nfet_01v8_WY4VMC_2 1 0 5405 0 1 12950
+use isource_cmirror isource_cmirror_5 1 0 11740 0 1 6900
+use isource_cmirror isource_cmirror_4 1 0 11740 0 1 9160
+use isource_cmirror isource_cmirror_3 1 0 11740 0 1 11420
+use isource_cmirror isource_cmirror_2 1 0 9700 0 1 6900
+use isource_cmirror isource_cmirror_1 1 0 9700 0 1 9160
+use isource_cmirror isource_cmirror_0 1 0 9700 0 1 11420
+node "m2_11660_13040#" 1 276.772 11660 13040 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100800 1920 0 0 0 0 0 0 0 0
+node "m2_10060_7720#" 12 4877.75 10060 7720 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1709800 24580 407600 6720 0 0 0 0 0 0
+node "m2_11180_13260#" 8 7921.39 11180 13260 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3892000 31400 1255540 9526 0 0 0 0 0 0
+node "m1_11560_7960#" 0 187.029 11560 7960 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38400 800 0 0 0 0 0 0 0 0 0 0
+node "m1_7960_7820#" 0 701.441 7960 7820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_6900_7820#" 0 652.948 6900 7820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_5840_7820#" 0 654.819 5840 7820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_4700_7820#" 0 612.852 4700 7820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 441600 2800 0 0 0 0 0 0 0 0 0 0
+node "m1_11580_10220#" 0 187.029 11580 10220 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38400 800 0 0 0 0 0 0 0 0 0 0
+node "m1_8480_10260#" 0 658.537 8480 10260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_7420_10260#" 0 652.948 7420 10260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_6360_10260#" 0 652.948 6360 10260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_5300_10260#" 0 665.097 5300 10260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "m1_4160_10260#" 0 710.224 4160 10260 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "m1_11580_12480#" 0 187.029 11580 12480 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38400 800 0 0 0 0 0 0 0 0 0 0
+node "m1_5360_12478#" 0 35.9286 5360 12478 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_5350_12620#" 9 6333.94 5350 12620 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 600 2924400 25160 1134000 15120 0 0 0 0 0 0
+node "m1_5360_13388#" 0 42.7925 5360 13388 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_4150_7820#" 4 4295.72 4150 7820 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 432000 4120 2544160 15128 0 0 0 0 0 0 0 0
+node "m1_4090_13100#" 2 1160.1 4090 13100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 39840 1292 627200 5760 0 0 0 0 0 0 0 0
+node "m1_9600_7000#" 5 3466.12 9600 7000 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1207200 14040 0 0 0 0 0 0 0 0 0 0
+node "li_9700_9140#" 640 2045.27 9700 9140 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 345600 8480 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_5100_7720#" 335 1675.27 5100 7720 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 376800 6520 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_9700_11420#" 640 2045.27 9700 11420 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 345600 8480 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_11560_7960#" "m1_5350_12620#" 149.352
+cap "li_5100_7720#" "m1_4700_7820#" 402.408
+cap "m1_4090_13100#" "m1_4150_7820#" 757.329
+cap "m1_5840_7820#" "m1_6900_7820#" 88.56
+cap "m1_8480_10260#" "m1_9600_7000#" 68.1231
+cap "m1_11580_12480#" "m1_5350_12620#" 166.936
+cap "li_9700_11420#" "m2_11180_13260#" 114.948
+cap "m1_4150_7820#" "m1_5360_13388#" 1.45884
+cap "m1_7960_7820#" "m1_9600_7000#" 22.7077
+cap "m2_11180_13260#" "li_9700_9140#" 114.948
+cap "m1_4150_7820#" "m1_5350_12620#" 198.565
+cap "li_9700_11420#" "m1_9600_7000#" 69.724
+cap "m2_11660_13040#" "m2_11180_13260#" 475.667
+cap "m1_5360_12478#" "m1_4150_7820#" 1.37302
+cap "li_9700_9140#" "m1_9600_7000#" 69.724
+cap "m2_11180_13260#" "m1_9600_7000#" 37.352
+cap "li_9700_11420#" "m1_5350_12620#" 28.1451
+cap "m1_11580_10220#" "m1_5350_12620#" 166.936
+cap "m1_4090_13100#" "m1_5350_12620#" 362.968
+cap "m1_8480_10260#" "m1_7420_10260#" 88.56
+cap "li_9700_11420#" "m2_10060_7720#" 60.3914
+cap "li_9700_9140#" "m1_5350_12620#" 27.266
+cap "m1_7420_10260#" "m1_6360_10260#" 88.56
+cap "m2_11180_13260#" "m1_5350_12620#" 777.744
+cap "m1_4700_7820#" "m1_4150_7820#" 84.3429
+cap "m2_10060_7720#" "li_9700_9140#" 62.4413
+cap "m2_10060_7720#" "m2_11180_13260#" 1295.43
+cap "m1_4160_10260#" "m1_4150_7820#" 911.865
+cap "m2_11660_13040#" "m1_5350_12620#" 12.0308
+cap "m1_5350_12620#" "m1_9600_7000#" 5229.2
+cap "m1_5300_10260#" "m1_4160_10260#" 56.58
+cap "m2_11660_13040#" "m2_10060_7720#" 15.64
+cap "m1_5350_12620#" "m1_5360_13388#" 5.84683
+cap "m2_10060_7720#" "m1_5350_12620#" 2057.81
+cap "m1_6900_7820#" "m1_7960_7820#" 88.56
+cap "m1_5360_12478#" "m1_5350_12620#" 30.75
+cap "m1_5840_7820#" "m1_4700_7820#" 80.5091
+cap "m1_5300_10260#" "m1_6360_10260#" 88.56
+cap "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" -57.966
+cap "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" -103.798
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" -16.8343
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" -13.4355
+cap "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" -42.4185
+cap "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" -8.22994
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_cmirror_2/m1_0_1060#" -5.47004
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" -42.4185
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" -13.4355
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" 8.14917
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_cmirror_2/m1_0_1060#" 26.6009
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" 26.32
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_cmirror_2/m1_0_1060#" -9.95827
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_cmirror_2/li_0_0#" 32.4444
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" -2.85053
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" 36.1046
+cap "isource_cmirror_5/m1_110_820#" "isource_cmirror_5/m1_250_820#" -21.3674
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "isource_cmirror_5/m1_0_1060#" -9.95827
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_0_1060#" 1270.97
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_110_820#" 935.916
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#" "isource_cmirror_5/m1_0_1060#" 28.4409
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_110_820#" -104.969
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_250_820#" -10.0131
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" -120.431
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" -45.9933
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_0_1060#" -626.77
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_110_820#" 445.845
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_250_820#" 27.2308
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 4.20789
+cap "isource_cmirror_5/m1_250_820#" "isource_cmirror_5/m1_110_820#" -1.62456
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_110_820#" -515.1
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_5/m1_0_1060#" 19.7447
+cap "isource_cmirror_5/m1_250_820#" "isource_cmirror_5/m1_0_1060#" -1.64362
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_0_1060#" 1427.14
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" 1.62194
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#" 19.0355
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_cmirror_2/li_0_0#" 77.7778
+cap "isource_cmirror_5/m1_110_820#" "isource_cmirror_5/m1_250_820#" -12.5989
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_110_820#" 398.277
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" 465.228
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_0_1060#" 157.935
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 82.7485
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_250_820#" 762.921
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_110_820#" -2.15994
+cap "isource_cmirror_5/m1_250_820#" "isource_cmirror_5/m1_110_820#" 127.133
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_0_1060#" -1516.6
+cap "isource_cmirror_5/m1_110_820#" "isource_cmirror_5/m1_0_1060#" 7.01508
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_110_820#" 215.71
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" 0.56658
+cap "isource_cmirror_5/m1_250_820#" "isource_cmirror_5/m1_0_1060#" 136.764
+cap "isource_cmirror_5/m1_250_820#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 553.066
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_0_1060#" -61.1941
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -173.435
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_5/m1_250_820#" -2.0341
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_250_820#" 13.7256
+cap "isource_cmirror_5/m1_0_1060#" "isource_cmirror_4/m1_0_1060#" 250.1
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" 1.40343
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 3.60132
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" -0.975127
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 80.5081
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" 38.6454
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" -42.4185
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" 4.10279
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" 19.3227
+cap "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" -19.2754
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" 3.73361
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" -10.1858
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" -42.4185
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" 19.3227
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_cmirror_2/li_0_0#" 63.3333
+cap "isource_cmirror_2/m1_0_1060#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" -7.10543e-15
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" -42.4185
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" -0.972003
+cap "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 66.9935
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_5/m1_250_820#" 417.797
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_0_1060#" 1116.47
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" 385.681
+cap "isource_cmirror_4/m1_110_820#" "isource_cmirror_4/m1_0_1060#" 930.652
+cap "isource_cmirror_4/m1_0_1060#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" 0.896875
+cap "isource_cmirror_4/m1_110_820#" "isource_cmirror_5/m1_250_820#" -35.4424
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_110_820#" -126.704
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_0_1060#" 76.5663
+cap "isource_cmirror_4/m1_110_820#" "isource_cmirror_4/m1_0_1060#" -522.568
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/m1_250_820#" 510.041
+cap "isource_cmirror_4/m1_110_820#" "isource_cmirror_5/m1_250_820#" 55.1089
+cap "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_110_820#" 522.888
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_5/m1_250_820#" 73.9077
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 11.9492
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_3/m1_0_1060#" 19.7447
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1276.15
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_4/m1_250_820#" -9.66463
+cap "isource_cmirror_3/m1_250_820#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 14.0805
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n100_21#" 19.7447
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n674_n918#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 22.6368
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" -1.845
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 71.8028
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 0.222543
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 8.0565
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/m1_110_820#" -13.1903
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_4/m1_110_820#" 595.924
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 397.723
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_0_1060#" 574.092
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/m1_0_1060#" 656.189
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_110_820#" 74.1988
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_110_820#" 424.028
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/m1_0_1060#" -126.478
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_0_1060#" -1404.07
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 484.558
+cap "isource_cmirror_4/m1_110_820#" "isource_cmirror_4/m1_0_1060#" -155.342
+cap "isource_cmirror_4/m1_250_820#" "isource_cmirror_4/m1_110_820#" 31.7266
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_4/m1_250_820#" 6.23998
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_4/m1_0_1060#" 269.845
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_3/m1_250_820#" 25.6708
+cap "isource_cmirror_4/m1_0_1060#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -129.956
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_250_820#" -34.3011
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 371.525
+cap "isource_cmirror_3/m1_110_820#" "isource_cmirror_3/m1_250_820#" 0.425
+cap "isource_cmirror_3/m1_250_820#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" 8.50441
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" -10.329
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 0.465318
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" 91.72
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 943.986
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" 281.631
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 24.8301
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 0.465318
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" 581.33
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" 441.838
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" 63.2847
+cap "isource_cmirror_1/li_0_0#" "isource_cmirror_0/m1_110_820#" -302.596
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_250_820#" 250.285
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_110_820#" 256.683
+cap "isource_cmirror_3/m1_110_820#" "isource_cmirror_3/m1_250_820#" -43.1306
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "m2_11180_13260#" 270.475
+cap "m2_11180_13260#" "isource_cmirror_3/m1_250_820#" 25.1451
+cap "isource_cmirror_3/m1_110_820#" "m2_11180_13260#" 22.5986
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_0_1060#" 977.931
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_3/m1_250_820#" 264.809
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_3/m1_110_820#" 652.585
+cap "isource_cmirror_3/m1_0_1060#" "m2_11180_13260#" 272.54
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_3/m1_250_820#" 30.7085
+cap "isource_cmirror_3/m1_110_820#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 474.866
+cap "isource_cmirror_3/m1_0_1060#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" -1714.53
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_250_820#" 396.663
+cap "isource_cmirror_3/m1_110_820#" "isource_cmirror_3/m1_0_1060#" -382.61
+cap "isource_cmirror_3/m1_110_820#" "isource_cmirror_3/m1_250_820#" 57.3269
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_0_1060#" 2818.18
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_3/m1_250_820#" 99.8417
+cap "isource_cmirror_3/m1_250_820#" "isource_cmirror_3/m1_0_1060#" 1.26745
+cap "isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_3/m1_250_820#" 11.3184
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_29_n488#" "m1_5360_13388#" -5836.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6304540 -3022 -887040 -508 0 0 0 0 0 0 0 0
+merge "m1_5360_13388#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1229_n488#" "m1_5360_12478#"
+merge "m1_5360_12478#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_n1432#" "m1_4150_7820#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" -4473.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7560416 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_1000#" "m1_7420_10260#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" 76.2725 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -307050 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_n1432#" "m1_4700_7820#"
+merge "isource_cmirror_3/VSUBS" "isource_cmirror_0/VSUBS" 865.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3212560 -10412 0 0 0 0 0 0 0 0 0 0 0 0
+merge "isource_cmirror_0/VSUBS" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1389_n574#" "isource_cmirror_4/VSUBS"
+merge "isource_cmirror_4/VSUBS" "isource_cmirror_5/VSUBS"
+merge "isource_cmirror_5/VSUBS" "isource_cmirror_1/VSUBS"
+merge "isource_cmirror_1/VSUBS" "isource_cmirror_2/VSUBS"
+merge "isource_cmirror_2/VSUBS" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n2126_n1562#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n536_n1562#" "VSUBS"
+merge "VSUBS" "li_5100_7720#"
+merge "isource_cmirror_4/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/m1_810_220#" 26169.8 0 0 0 0 12343936 -30060 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4017200 -47040 0 0 17244000 -22760 60720 -3356 0 0 0 0 0 0
+merge "isource_cmirror_0/m1_810_220#" "isource_cmirror_1/li_0_0#"
+merge "isource_cmirror_1/li_0_0#" "isource_cmirror_3/m1_810_220#"
+merge "isource_cmirror_3/m1_810_220#" "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_3/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_5/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "li_9700_11420#"
+merge "li_9700_11420#" "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_2/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_4/m1_810_220#"
+merge "isource_cmirror_4/m1_810_220#" "m2_11180_13260#"
+merge "m2_11180_13260#" "isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_4/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_cmirror_5/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#"
+merge "isource_cmirror_1/sky130_fd_pr__pfet_01v8_J24RLQ_0/w_n812_n1137#" "isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#"
+merge "isource_cmirror_1/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_2/li_0_0#"
+merge "isource_cmirror_2/li_0_0#" "li_9700_9140#"
+merge "isource_cmirror_0/m1_0_1060#" "isource_cmirror_3/m1_0_1060#" -35429.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -45667760 -5040 0 0 0 0 0 0 0 0 0 0
+merge "isource_cmirror_3/m1_0_1060#" "m1_11580_12480#"
+merge "m1_11580_12480#" "isource_cmirror_1/m1_0_1060#"
+merge "isource_cmirror_1/m1_0_1060#" "isource_cmirror_4/m1_0_1060#"
+merge "isource_cmirror_4/m1_0_1060#" "m1_11580_10220#"
+merge "m1_11580_10220#" "isource_cmirror_5/m1_0_1060#"
+merge "isource_cmirror_5/m1_0_1060#" "m1_11560_7960#"
+merge "m1_11560_7960#" "isource_cmirror_2/m1_0_1060#"
+merge "isource_cmirror_2/m1_0_1060#" "m1_9600_7000#"
+merge "isource_cmirror_3/m1_110_820#" "isource_cmirror_0/m1_110_820#" -5025.64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6168160 -492 -10713200 -6340 -3062950 0 0 0 0 0 0 0
+merge "isource_cmirror_0/m1_110_820#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n29_n400#" "isource_cmirror_4/m1_110_820#"
+merge "isource_cmirror_4/m1_110_820#" "isource_cmirror_1/m1_110_820#"
+merge "isource_cmirror_1/m1_110_820#" "isource_cmirror_5/m1_110_820#"
+merge "isource_cmirror_5/m1_110_820#" "isource_cmirror_2/m1_110_820#"
+merge "isource_cmirror_2/m1_110_820#" "m1_5350_12620#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" -4451.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6702968 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1996_1000#" "m1_5300_10260#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" -845.297 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1254312 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_654_n1432#" "m1_7960_7820#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" -4366.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6779216 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1184_1000#" "m1_8480_10260#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" -774.172 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1207512 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n1466_n1432#" "m1_5840_7820#"
+merge "isource_cmirror_3/m1_250_820#" "m2_11660_13040#" -8631.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5849000 -7920 -9639400 0 0 0 0 0 0 0
+merge "m2_11660_13040#" "isource_cmirror_0/m1_250_820#"
+merge "isource_cmirror_0/m1_250_820#" "isource_cmirror_4/m1_250_820#"
+merge "isource_cmirror_4/m1_250_820#" "isource_cmirror_1/m1_250_820#"
+merge "isource_cmirror_1/m1_250_820#" "isource_cmirror_5/m1_250_820#"
+merge "isource_cmirror_5/m1_250_820#" "isource_cmirror_2/m1_250_820#"
+merge "isource_cmirror_2/m1_250_820#" "m2_10060_7720#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" -883.496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1377138 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_n1432#" "m1_6900_7820#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_1229_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" 6027.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10931880 -1124 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_2/a_n1287_n400#" "m1_4090_13100#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n406_1000#" "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" -8403.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13161560 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_n936_1000#" "m1_6360_10260#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_124_1000#" "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" -2539.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3940820 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0/a_n406_1000#" "m1_4160_10260#"
diff --git a/mag/isource/isource_conv.mag b/mag/isource/isource_conv.mag
new file mode 100644
index 0000000..c7443d7
--- /dev/null
+++ b/mag/isource/isource_conv.mag
@@ -0,0 +1,221 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1648644738
+<< locali >>
+rect 9700 11420 13840 11480
+rect 11360 11400 13840 11420
+rect 11460 11380 13840 11400
+rect 5100 7720 5220 10860
+rect 11360 9200 13840 9220
+rect 9700 9140 13840 9200
+rect 11460 9120 13840 9140
+<< metal1 >>
+rect 9600 13520 9820 13600
+rect 4090 13100 4100 13340
+rect 4180 13100 4190 13340
+rect 4220 12620 4500 13440
+rect 5360 13388 5450 13422
+rect 6610 13100 6620 13340
+rect 5350 12620 5360 12820
+rect 5440 12620 5450 12820
+rect 4220 12540 4240 12620
+rect 4480 12540 4500 12620
+rect 4220 12480 4500 12540
+rect 5360 12478 5450 12512
+rect 9600 11600 9780 13520
+rect 11580 12480 11820 12640
+rect 9600 11520 9820 11600
+rect 9600 11340 9780 11520
+rect 9600 11260 9820 11340
+rect 4160 10260 5000 10720
+rect 5300 10260 6160 10740
+rect 6360 10260 7220 10740
+rect 7420 10260 8280 10740
+rect 8480 10260 9340 10740
+rect 9600 9340 9780 11260
+rect 11580 10220 11820 10380
+rect 9600 9260 9820 9340
+rect 9600 9080 9780 9260
+rect 9600 9000 9820 9080
+rect 4150 7820 4160 8300
+rect 4480 7820 4490 8300
+rect 4700 7820 5620 8300
+rect 5840 7820 6700 8300
+rect 6900 7820 7760 8300
+rect 7960 7820 8820 8300
+rect 9600 7080 9780 9000
+rect 11560 7960 11800 8120
+rect 9600 7000 9820 7080
+<< via1 >>
+rect 4100 13100 4180 13340
+rect 6620 13100 6676 13340
+rect 5360 12620 5440 12820
+rect 4240 12540 4480 12620
+rect 4160 7820 4480 8300
+<< metal2 >>
+rect 6760 13600 9860 13860
+rect 4100 13340 4180 13350
+rect 6620 13340 6700 13350
+rect 4180 13100 6620 13340
+rect 6676 13100 6700 13340
+rect 4100 13090 4180 13100
+rect 6620 13090 6700 13100
+rect 5360 12820 5440 12830
+rect 6760 12820 7000 13600
+rect 4240 12620 4480 12630
+rect 5320 12620 5360 12820
+rect 5440 12620 7000 12820
+rect 9600 12640 9860 13600
+rect 13580 13460 13900 13700
+rect 11180 13260 13900 13460
+rect 4120 12540 4240 12620
+rect 5360 12610 5440 12620
+rect 4120 12300 4480 12540
+rect 9800 12480 9860 12640
+rect 4120 11960 6864 12300
+rect 4120 8300 4480 11960
+rect 4120 7820 4160 8300
+rect 4160 7810 4480 7820
+rect 9600 10380 9860 12480
+rect 9800 10220 9860 10380
+rect 9600 8120 9860 10220
+rect 9800 7960 9860 8120
+rect 9600 7720 9860 7960
+rect 10060 13040 11360 13160
+rect 11660 13040 12140 13160
+rect 10060 12100 10220 13040
+rect 12020 12680 12140 13040
+rect 11800 12640 11920 12650
+rect 11800 12470 11920 12480
+rect 11160 12100 11300 12110
+rect 10060 11980 11160 12100
+rect 10060 10900 10220 11980
+rect 11160 11970 11300 11980
+rect 12320 12100 12460 12420
+rect 12320 11970 12460 11980
+rect 13580 11840 13900 13000
+rect 11520 11640 13900 11840
+rect 13580 11200 13900 11640
+rect 11520 11000 13900 11200
+rect 11120 10900 11240 10910
+rect 10060 10780 11120 10900
+rect 10060 8640 10220 10780
+rect 11120 10770 11240 10780
+rect 11660 10900 11780 10910
+rect 11780 10780 12140 10900
+rect 11660 10770 11780 10780
+rect 12020 10420 12140 10780
+rect 11800 10380 11920 10390
+rect 11800 10210 11920 10220
+rect 13580 9580 13900 11000
+rect 11520 9380 13900 9580
+rect 11040 8640 11180 8650
+rect 10060 8460 11040 8640
+rect 10060 7720 10220 8460
+rect 11040 8450 11180 8460
+rect 11760 8640 11900 8650
+rect 11900 8460 12120 8640
+rect 11760 8450 11900 8460
+rect 12000 8160 12120 8460
+rect 11800 8120 11920 8130
+rect 11800 7950 11920 7960
+rect 13580 6900 13900 9380
+<< via2 >>
+rect 9600 12480 9800 12640
+rect 9600 10220 9800 10380
+rect 9600 7960 9800 8120
+rect 13580 13000 13900 13260
+rect 11800 12480 11920 12640
+rect 11160 11980 11300 12100
+rect 12320 11980 12460 12100
+rect 11120 10780 11240 10900
+rect 11660 10780 11780 10900
+rect 11800 10220 11920 10380
+rect 11040 8460 11180 8640
+rect 11760 8460 11900 8640
+rect 11800 7960 11920 8120
+<< metal3 >>
+rect 9442 13260 13920 13280
+rect 9442 13000 13580 13260
+rect 13900 13000 13920 13260
+rect 13570 12995 13910 13000
+rect 9590 12640 9810 12645
+rect 11790 12640 11930 12645
+rect 9590 12480 9600 12640
+rect 9800 12480 11800 12640
+rect 11920 12480 11930 12640
+rect 9590 12475 9810 12480
+rect 11790 12475 11930 12480
+rect 11150 12100 11310 12105
+rect 12310 12100 12470 12105
+rect 11150 11980 11160 12100
+rect 11300 11980 12320 12100
+rect 12460 11980 12470 12100
+rect 11150 11975 11310 11980
+rect 12310 11975 12470 11980
+rect 11110 10900 11250 10905
+rect 11650 10900 11790 10905
+rect 11110 10780 11120 10900
+rect 11240 10780 11660 10900
+rect 11780 10780 11790 10900
+rect 11110 10775 11250 10780
+rect 11650 10775 11790 10780
+rect 9590 10380 9810 10385
+rect 11790 10380 11930 10385
+rect 9590 10220 9600 10380
+rect 9800 10220 11800 10380
+rect 11920 10220 11930 10380
+rect 9590 10215 9810 10220
+rect 11790 10215 11930 10220
+rect 11030 8640 11190 8645
+rect 11750 8640 11910 8645
+rect 11030 8460 11040 8640
+rect 11180 8460 11760 8640
+rect 11900 8460 11910 8640
+rect 11030 8455 11190 8460
+rect 11750 8455 11910 8460
+rect 9590 8120 9810 8125
+rect 11790 8120 11930 8125
+rect 9590 7960 9600 8120
+rect 9800 7960 11800 8120
+rect 11920 7960 11930 8120
+rect 9590 7955 9810 7960
+rect 11790 7955 11930 7960
+use isource_cmirror  isource_cmirror_0 ~/code/asic/layout/isource
+timestamp 1648644738
+transform 1 0 9700 0 1 11420
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_1
+timestamp 1648644738
+transform 1 0 9700 0 1 9160
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_2
+timestamp 1648644738
+transform 1 0 9700 0 1 6900
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_3
+timestamp 1648644738
+transform 1 0 11740 0 1 11420
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_4
+timestamp 1648644738
+transform 1 0 11740 0 1 9160
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_5
+timestamp 1648644738
+transform 1 0 11740 0 1 6900
+box 0 0 2044 2280
+use sky130_fd_pr__nfet_01v8_WY4VMC  sky130_fd_pr__nfet_01v8_WY4VMC_2
+timestamp 1647868710
+transform 1 0 5405 0 1 12950
+box -1425 -610 1425 610
+use sky130_fd_pr__res_xhigh_po_1p41_BQY2W7  sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0
+timestamp 1647868710
+transform 1 0 7322 0 1 9278
+box -2162 -1598 2162 1598
+use sky130_fd_pr__res_xhigh_po_1p41_J2NVFM  sky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0
+timestamp 1647868710
+transform 1 0 4592 0 1 9278
+box -572 -1598 572 1598
+<< end >>
diff --git a/mag/isource/isource_conv_tsmal.ext b/mag/isource/isource_conv_tsmal.ext
new file mode 100644
index 0000000..68d19ab
--- /dev/null
+++ b/mag/isource/isource_conv_tsmal.ext
@@ -0,0 +1,69 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_26RGPZ sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0 1 0 5017 0 1 7629
+node "m1_4500_6730#" 9 1428.94 4500 6730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163200 6000 627800 7680 0 0 0 0 0 0 0 0
+node "m1_4590_7330#" 8 1373.62 4590 7330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136000 5000 617200 7500 0 0 0 0 0 0 0 0
+node "m1_4410_6620#" 12 2615.69 4410 6620 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 543516 14352 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_4410_6620#" "m1_4500_6730#" 2483.58
+cap "m1_4410_6620#" "m1_4590_7330#" 1643.66
+cap "m1_4500_6730#" "m1_4590_7330#" 575.411
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" 71.3994
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 1485.47
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 2809.65
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 4.94974
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" 438.959
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 1002.58
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" 126.883
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" 1317.31
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 1021.18
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" 537.668
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 68.3992
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 5.68434e-14
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#" -9001.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12625980 -4020 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "m1_4410_6620#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#" 10104.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17073000 -4320 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "m1_4590_7330#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#" 7578.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13211628 -5460 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "m1_4500_6730#"
diff --git a/mag/isource/isource_conv_tsmal.mag b/mag/isource/isource_conv_tsmal.mag
new file mode 100644
index 0000000..d34868b
--- /dev/null
+++ b/mag/isource/isource_conv_tsmal.mag
@@ -0,0 +1,167 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect 4410 8570 5630 8630
+rect 4410 7700 4470 8570
+rect 5570 7700 5630 8570
+rect 4410 7550 5630 7700
+rect 4410 6680 4470 7550
+rect 5570 6680 5630 7550
+rect 4410 6620 4550 6680
+rect 5500 6620 5630 6680
+<< metal1 >>
+rect 4504 8630 5390 8632
+rect 4410 8570 5630 8630
+rect 4410 7700 4470 8570
+rect 4504 8566 5390 8570
+rect 4590 8340 4600 8510
+rect 4660 8340 4670 8510
+rect 4790 8340 4800 8510
+rect 4860 8340 4870 8510
+rect 4980 8340 4990 8510
+rect 5050 8340 5060 8510
+rect 5170 8340 5180 8510
+rect 5240 8340 5250 8510
+rect 5360 8340 5370 8510
+rect 5430 8340 5440 8510
+rect 4500 7740 4510 7910
+rect 4570 7740 4580 7910
+rect 4690 7740 4700 7910
+rect 4760 7740 4770 7910
+rect 4880 7740 4890 7910
+rect 4950 7740 4960 7910
+rect 5070 7740 5080 7910
+rect 5140 7740 5150 7910
+rect 5270 7740 5280 7910
+rect 5340 7740 5350 7910
+rect 5460 7740 5470 7910
+rect 5530 7740 5540 7910
+rect 5570 7700 5630 8570
+rect 4410 7550 5630 7700
+rect 4410 6680 4470 7550
+rect 4590 7330 4600 7500
+rect 4660 7330 4670 7500
+rect 4790 7330 4800 7500
+rect 4860 7330 4870 7500
+rect 4980 7330 4990 7500
+rect 5050 7330 5060 7500
+rect 5170 7330 5180 7500
+rect 5240 7330 5250 7500
+rect 5360 7330 5370 7500
+rect 5430 7330 5440 7500
+rect 4500 6730 4510 6900
+rect 4570 6730 4580 6900
+rect 4690 6730 4700 6900
+rect 4760 6730 4770 6900
+rect 4880 6730 4890 6900
+rect 4950 6730 4960 6900
+rect 5070 6730 5080 6900
+rect 5140 6730 5150 6900
+rect 5270 6730 5280 6900
+rect 5340 6730 5350 6900
+rect 5460 6730 5470 6900
+rect 5530 6730 5540 6900
+rect 5570 6680 5630 7550
+rect 4410 6620 5630 6680
+<< via1 >>
+rect 4600 8340 4660 8510
+rect 4800 8340 4860 8510
+rect 4990 8340 5050 8510
+rect 5180 8340 5240 8510
+rect 5370 8340 5430 8510
+rect 4510 7740 4570 7910
+rect 4700 7740 4760 7910
+rect 4890 7740 4950 7910
+rect 5080 7740 5140 7910
+rect 5280 7740 5340 7910
+rect 5470 7740 5530 7910
+rect 4600 7330 4660 7500
+rect 4800 7330 4860 7500
+rect 4990 7330 5050 7500
+rect 5180 7330 5240 7500
+rect 5370 7330 5430 7500
+rect 4510 6730 4570 6900
+rect 4700 6730 4760 6900
+rect 4890 6730 4950 6900
+rect 5080 6730 5140 6900
+rect 5280 6730 5340 6900
+rect 5470 6730 5530 6900
+<< metal2 >>
+rect 4600 8510 4660 8520
+rect 4800 8510 4860 8520
+rect 4990 8510 5050 8520
+rect 5180 8510 5240 8520
+rect 5370 8510 5430 8520
+rect 4250 8340 4600 8510
+rect 4660 8340 4800 8510
+rect 4860 8340 4990 8510
+rect 5050 8340 5180 8510
+rect 5240 8340 5370 8510
+rect 5430 8340 5530 8510
+rect 4250 7500 4450 8340
+rect 4600 8330 4660 8340
+rect 4800 8330 4860 8340
+rect 4990 8330 5050 8340
+rect 5180 8330 5240 8340
+rect 5370 8330 5430 8340
+rect 4510 7910 4570 7920
+rect 4700 7910 4760 7920
+rect 4890 7910 4950 7920
+rect 5080 7910 5140 7920
+rect 5280 7910 5340 7920
+rect 5470 7910 5530 7920
+rect 4570 7740 4700 7910
+rect 4760 7740 4890 7910
+rect 4950 7740 5080 7910
+rect 5140 7740 5280 7910
+rect 5340 7740 5470 7910
+rect 5530 7740 5820 7910
+rect 4510 7730 4570 7740
+rect 4700 7730 4760 7740
+rect 4890 7730 4950 7740
+rect 5080 7730 5140 7740
+rect 5280 7730 5340 7740
+rect 5470 7730 5530 7740
+rect 4600 7500 4660 7510
+rect 4800 7500 4860 7510
+rect 4990 7500 5050 7510
+rect 5180 7500 5240 7510
+rect 5370 7500 5430 7510
+rect 4250 7330 4600 7500
+rect 4660 7330 4800 7500
+rect 4860 7330 4990 7500
+rect 5050 7330 5180 7500
+rect 5240 7330 5370 7500
+rect 5430 7330 5530 7500
+rect 4250 7320 4450 7330
+rect 4600 7320 4660 7330
+rect 4800 7320 4860 7330
+rect 4990 7320 5050 7330
+rect 5180 7320 5240 7330
+rect 5370 7320 5430 7330
+rect 4510 6900 4570 6910
+rect 4700 6900 4760 6910
+rect 4890 6900 4950 6910
+rect 5080 6900 5140 6910
+rect 5280 6900 5340 6910
+rect 5470 6900 5530 6910
+rect 5620 6900 5820 7740
+rect 4570 6730 4700 6900
+rect 4760 6730 4890 6900
+rect 4950 6730 5080 6900
+rect 5140 6730 5280 6900
+rect 5340 6730 5470 6900
+rect 5530 6730 5820 6900
+rect 4510 6720 4570 6730
+rect 4700 6720 4760 6730
+rect 4890 6720 4950 6730
+rect 5080 6720 5140 6730
+rect 5280 6720 5340 6730
+rect 5470 6720 5530 6730
+use sky130_fd_pr__nfet_01v8_lvt_26RGPZ  sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0
+timestamp 1647868710
+transform 1 0 5017 0 1 7629
+box -647 -1119 647 1119
+<< end >>
diff --git a/mag/isource/isource_conv_tsmal_nwell.ext b/mag/isource/isource_conv_tsmal_nwell.ext
new file mode 100644
index 0000000..d5ede17
--- /dev/null
+++ b/mag/isource/isource_conv_tsmal_nwell.ext
@@ -0,0 +1,93 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_26RGPZ sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0 1 0 5017 0 1 7629
+node "m1_4500_6730#" 9 0 4500 6730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163200 6000 627800 7680 0 0 0 0 0 0 0 0
+node "m1_4590_7330#" 8 0 4590 7330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 136000 5000 617200 7500 0 0 0 0 0 0 0 0
+node "m1_4410_6620#" 12 0 4410 6620 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 543516 14352 0 0 0 0 0 0 0 0 0 0
+node "w_4356_6496#" 7571 0 4356 6496 pw 2989224 7172 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "dw_4150_6290#" 46548 16102.8 4150 6290 dnw 0 0 4636400 8820 2378376 16632 0 0 656232 17736 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 301512 17736 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_4500_6730#" "m1_4590_7330#" 575.411
+cap "m1_4500_6730#" "w_4356_6496#" 1078.24
+cap "dw_4150_6290#" "m1_4500_6730#" 350.702
+cap "m1_4590_7330#" "m1_4410_6620#" 1643.66
+cap "m1_4410_6620#" "w_4356_6496#" 2615.69
+cap "m1_4500_6730#" "m1_4410_6620#" 2483.58
+cap "m1_4590_7330#" "w_4356_6496#" 1055.63
+cap "dw_4150_6290#" "m1_4590_7330#" 317.992
+cap "dw_4150_6290#" "w_4356_6496#" 8967.67
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -368.836
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 434.38
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -492.426
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" 254.126
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 1899.29
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 773.018
+cap "dw_4150_6290#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 244.709
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -10.7221
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -150.27
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" -21.5799
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "dw_4150_6290#" 143.18
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" -24.1269
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 8.24623
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 512.932
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -453.182
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 475.103
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -346.954
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" 281.665
+cap "dw_4150_6290#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 248.439
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 1898.06
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 807.895
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -18.9275
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -148.509
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -9.88417
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" -24.1269
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 21.7489
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" 512.679
+cap "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "dw_4150_6290#" 147.82
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#" -18088.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -28980604 -4020 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_n997#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_n87#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_399_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_207_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_15_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n177_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n369_21#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_303_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_111_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n81_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n273_931#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n465_931#" "m1_4410_6620#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#" 16429.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25495800 -4320 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_351_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_159_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n417_109#" "m1_4590_7330#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#" 11586.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17985076 -5184 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_447_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_255_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_63_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_109#" "m1_4500_6730#"
+merge "sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "w_4356_6496#" -1834.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/isource/isource_conv_tsmal_nwell.mag b/mag/isource/isource_conv_tsmal_nwell.mag
new file mode 100644
index 0000000..483c46e
--- /dev/null
+++ b/mag/isource/isource_conv_tsmal_nwell.mag
@@ -0,0 +1,196 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< dnwell >>
+rect 4150 6290 5880 8970
+<< nwell >>
+rect 4070 8764 5960 9050
+rect 4070 6496 4356 8764
+rect 5674 6496 5960 8764
+rect 4070 6210 5960 6496
+<< nsubdiff >>
+rect 4107 8993 5923 9013
+rect 4107 8959 4187 8993
+rect 5843 8959 5923 8993
+rect 4107 8939 5923 8959
+rect 4107 8933 4181 8939
+rect 4107 6327 4127 8933
+rect 4161 6327 4181 8933
+rect 4107 6321 4181 6327
+rect 5849 8933 5923 8939
+rect 5849 6327 5869 8933
+rect 5903 6327 5923 8933
+rect 5849 6321 5923 6327
+rect 4107 6301 5923 6321
+rect 4107 6267 4187 6301
+rect 5843 6267 5923 6301
+rect 4107 6247 5923 6267
+<< nsubdiffcont >>
+rect 4187 8959 5843 8993
+rect 4127 6327 4161 8933
+rect 5869 6327 5903 8933
+rect 4187 6267 5843 6301
+<< locali >>
+rect 4127 8959 4187 8993
+rect 5843 8959 5903 8993
+rect 4127 8933 4161 8959
+rect 4127 6301 4161 6327
+rect 5869 8933 5903 8959
+rect 5869 6301 5903 6327
+rect 4127 6267 4187 6301
+rect 5843 6267 5903 6301
+<< metal1 >>
+rect 4504 8630 5390 8632
+rect 4410 8570 5630 8630
+rect 4410 7700 4470 8570
+rect 4504 8566 5390 8570
+rect 4590 8340 4600 8510
+rect 4660 8340 4670 8510
+rect 4790 8340 4800 8510
+rect 4860 8340 4870 8510
+rect 4980 8340 4990 8510
+rect 5050 8340 5060 8510
+rect 5170 8340 5180 8510
+rect 5240 8340 5250 8510
+rect 5360 8340 5370 8510
+rect 5430 8340 5440 8510
+rect 4500 7740 4510 7910
+rect 4570 7740 4580 7910
+rect 4690 7740 4700 7910
+rect 4760 7740 4770 7910
+rect 4880 7740 4890 7910
+rect 4950 7740 4960 7910
+rect 5070 7740 5080 7910
+rect 5140 7740 5150 7910
+rect 5270 7740 5280 7910
+rect 5340 7740 5350 7910
+rect 5460 7740 5470 7910
+rect 5530 7740 5540 7910
+rect 5570 7700 5630 8570
+rect 4410 7550 5630 7700
+rect 4410 6680 4470 7550
+rect 4590 7330 4600 7500
+rect 4660 7330 4670 7500
+rect 4790 7330 4800 7500
+rect 4860 7330 4870 7500
+rect 4980 7330 4990 7500
+rect 5050 7330 5060 7500
+rect 5170 7330 5180 7500
+rect 5240 7330 5250 7500
+rect 5360 7330 5370 7500
+rect 5430 7330 5440 7500
+rect 4500 6730 4510 6900
+rect 4570 6730 4580 6900
+rect 4690 6730 4700 6900
+rect 4760 6730 4770 6900
+rect 4880 6730 4890 6900
+rect 4950 6730 4960 6900
+rect 5070 6730 5080 6900
+rect 5140 6730 5150 6900
+rect 5270 6730 5280 6900
+rect 5340 6730 5350 6900
+rect 5460 6730 5470 6900
+rect 5530 6730 5540 6900
+rect 5570 6680 5630 7550
+rect 4410 6620 5630 6680
+<< via1 >>
+rect 4600 8340 4660 8510
+rect 4800 8340 4860 8510
+rect 4990 8340 5050 8510
+rect 5180 8340 5240 8510
+rect 5370 8340 5430 8510
+rect 4510 7740 4570 7910
+rect 4700 7740 4760 7910
+rect 4890 7740 4950 7910
+rect 5080 7740 5140 7910
+rect 5280 7740 5340 7910
+rect 5470 7740 5530 7910
+rect 4600 7330 4660 7500
+rect 4800 7330 4860 7500
+rect 4990 7330 5050 7500
+rect 5180 7330 5240 7500
+rect 5370 7330 5430 7500
+rect 4510 6730 4570 6900
+rect 4700 6730 4760 6900
+rect 4890 6730 4950 6900
+rect 5080 6730 5140 6900
+rect 5280 6730 5340 6900
+rect 5470 6730 5530 6900
+<< metal2 >>
+rect 4600 8510 4660 8520
+rect 4800 8510 4860 8520
+rect 4990 8510 5050 8520
+rect 5180 8510 5240 8520
+rect 5370 8510 5430 8520
+rect 4250 8340 4600 8510
+rect 4660 8340 4800 8510
+rect 4860 8340 4990 8510
+rect 5050 8340 5180 8510
+rect 5240 8340 5370 8510
+rect 5430 8340 5530 8510
+rect 4250 7500 4450 8340
+rect 4600 8330 4660 8340
+rect 4800 8330 4860 8340
+rect 4990 8330 5050 8340
+rect 5180 8330 5240 8340
+rect 5370 8330 5430 8340
+rect 4510 7910 4570 7920
+rect 4700 7910 4760 7920
+rect 4890 7910 4950 7920
+rect 5080 7910 5140 7920
+rect 5280 7910 5340 7920
+rect 5470 7910 5530 7920
+rect 4570 7740 4700 7910
+rect 4760 7740 4890 7910
+rect 4950 7740 5080 7910
+rect 5140 7740 5280 7910
+rect 5340 7740 5470 7910
+rect 5530 7740 5820 7910
+rect 4510 7730 4570 7740
+rect 4700 7730 4760 7740
+rect 4890 7730 4950 7740
+rect 5080 7730 5140 7740
+rect 5280 7730 5340 7740
+rect 5470 7730 5530 7740
+rect 4600 7500 4660 7510
+rect 4800 7500 4860 7510
+rect 4990 7500 5050 7510
+rect 5180 7500 5240 7510
+rect 5370 7500 5430 7510
+rect 4250 7330 4600 7500
+rect 4660 7330 4800 7500
+rect 4860 7330 4990 7500
+rect 5050 7330 5180 7500
+rect 5240 7330 5370 7500
+rect 5430 7330 5530 7500
+rect 4250 7320 4450 7330
+rect 4600 7320 4660 7330
+rect 4800 7320 4860 7330
+rect 4990 7320 5050 7330
+rect 5180 7320 5240 7330
+rect 5370 7320 5430 7330
+rect 4510 6900 4570 6910
+rect 4700 6900 4760 6910
+rect 4890 6900 4950 6910
+rect 5080 6900 5140 6910
+rect 5280 6900 5340 6910
+rect 5470 6900 5530 6910
+rect 5620 6900 5820 7740
+rect 4570 6730 4700 6900
+rect 4760 6730 4890 6900
+rect 4950 6730 5080 6900
+rect 5140 6730 5280 6900
+rect 5340 6730 5470 6900
+rect 5530 6730 5820 6900
+rect 4510 6720 4570 6730
+rect 4700 6720 4760 6730
+rect 4890 6720 4950 6730
+rect 5080 6720 5140 6730
+rect 5280 6720 5340 6730
+rect 5470 6720 5530 6730
+use sky130_fd_pr__nfet_01v8_lvt_26RGPZ  sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0
+timestamp 1647868710
+transform 1 0 5017 0 1 7629
+box -647 -1119 647 1119
+<< end >>
diff --git a/mag/isource/isource_dest.ext b/mag/isource/isource_dest.ext
new file mode 100644
index 0000000..38db786
--- /dev/null
+++ b/mag/isource/isource_dest.ext
@@ -0,0 +1,286 @@
+timestamp 1645632279
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use isource_diffamp isource_diffamp_0 1 0 -280 0 1 16996
+use isource_diffamp isource_diffamp_1 1 0 6092 0 1 26800
+use isource_ref isource_ref_0 1 0 20 0 1 40
+node "m5_11700_2100#" 0 956.988 11700 2100 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 957600 4392 0 0
+node "VP" 0 11977.1 10260 -2240 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19335432 51524 0 0
+node "m4_11900_n1374#" 1 766.932 11900 -1374 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148000 4148 0 0 0 0
+node "m4_9000_4800#" 0 595.7 9000 4800 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1003600 4080 0 0 0 0
+node "I_ref" 1 1575.95 14554 -4800 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1083440 9188 0 0 0 0 0 0
+node "m3_5100_n1730#" 0 3801.6 5100 -1730 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4841000 11460 0 0 0 0 0 0
+node "m3_11870_2100#" 1 874.284 11870 2100 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 287280 3552 258552 3516 0 0 0 0
+node "m3_12480_9250#" 0 179.562 12480 9250 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40940 816 0 0 0 0 0 0
+node "m3_9000_4420#" 0 1387.48 9000 4420 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1317600 4840 0 0 0 0 0 0
+node "VM12D" 0 213 11380 7260 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54000 960 0 0 0 0 0 0
+node "m2_16950_n1640#" 0 429.564 16950 -1640 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 168480 1884 0 0 0 0 0 0 0 0
+node "m2_12140_7550#" 0 380.13 12140 7550 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 107600 1476 46200 860 0 0 0 0 0 0
+node "m2_10648_13940#" 0 159.7 10648 13940 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122400 1624 0 0 0 0 0 0 0 0
+node "VN" 4 23674.3 14554 -4160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1725920 5592 770800 3520 2165080 19312 2617218 20978 30112896 72912 0 0
+node "m1_14040_n1310#" 0 393.013 14040 -1310 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 132820 1496 0 0 0 0 0 0 0 0 0 0
+node "m1_12320_13620#" 1 -83.924 12320 13620 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42000 980 14000 480 18960 556 0 0 0 0 0 0
+node "li_5100_n2560#" 618 8271.68 5100 -2560 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3263520 25624 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_13060_n2140#" 62 500.84 13060 -2140 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124800 1880 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_12880_n860#" 896 237.024 12880 -860 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4480 1136 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_5100_13460#" 353 6612.87 5100 13460 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2982564 18800 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "w_12120_8840#" 0 0 12120 8840 pw 15116448 22824 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_9000_4800#" "VN" 2174.24
+cap "li_5100_n2560#" "li_13060_n2140#" 33
+cap "li_5100_13460#" "m1_12320_13620#" 631.231
+cap "VP" "li_13060_n2140#" 99.712
+cap "VM12D" "VN" 59.6842
+cap "m4_11900_n1374#" "li_13060_n2140#" 42.072
+cap "I_ref" "VN" 1791.31
+cap "VP" "m1_14040_n1310#" 81.6025
+cap "li_5100_13460#" "m2_10648_13940#" 302.8
+cap "li_5100_n2560#" "VN" 265
+cap "m4_9000_4800#" "m3_9000_4420#" 2412.86
+cap "li_5100_n2560#" "I_ref" 173.77
+cap "m5_11700_2100#" "m3_11870_2100#" 1650.9
+cap "VP" "VN" 2140.38
+cap "VP" "I_ref" 445
+cap "m2_12140_7550#" "VN" 844.695
+cap "li_5100_n2560#" "VP" 733.63
+cap "VP" "m2_16950_n1640#" 225.82
+cap "m3_9000_4420#" "VN" 447.36
+cap "m3_5100_n1730#" "VN" 1183.94
+cap "m4_11900_n1374#" "VP" 756.38
+cap "li_5100_13460#" "VN" 76.1
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 118.477
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 482.738
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 549.508
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/m1_n370_110#" "VN" 289.948
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 354.529
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 470.675
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VP" 645.836
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 390.116
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/m1_n370_110#" "VN" 289.948
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 340.992
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 626.637
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 393.107
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 803.683
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 263.488
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 197.334
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 797.994
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VP" 774.686
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VP" 181.099
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 394.673
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 233.9
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "m5_11700_2100#" 398.6
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "isource_ref_0/m1_10190_6860#" 66.97
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "m5_11700_2100#" 156
+cap "isource_ref_0/m1_10190_6860#" "m5_11700_2100#" 55
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "m5_11700_2100#" 92.2
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/m1_10190_6860#" 169.86
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 197.001
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 939.624
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 459.468
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 312.987
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" 289.948
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 815.52
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 142.165
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 233.9
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 618.017
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 52.249
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 818.264
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 223.344
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 826.935
+cap "isource_ref_0/m1_11450_6340#" "isource_ref_0/m1_10190_6860#" 136.84
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "isource_ref_0/m1_10190_6860#" 735.24
+cap "m5_11700_2100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1195.99
+cap "m5_11700_2100#" "isource_ref_0/m1_10190_6860#" 122
+cap "m5_11700_2100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 976.557
+cap "m5_11700_2100#" "isource_ref_0/m1_11450_6340#" 211.72
+cap "m5_11700_2100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 1195.01
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/m1_10190_6860#" 746.82
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/m1_10190_6860#" 127.64
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 1066.26
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 497.936
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 651.497
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 422.164
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "m4_9000_4800#" 232.61
+cap "VN" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 823.402
+cap "VN" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" 289.948
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 840.18
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" -509.435
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VP" 999.274
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" -439.055
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -1273.76
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 618.017
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VN" -915.95
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -130.111
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 233.9
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VN" -75.7
+cap "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VP" 826.935
+cap "m4_9000_4800#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" -476.28
+cap "m5_11700_2100#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 358.488
+cap "isource_ref_0/m1_10190_6860#" "m5_11700_2100#" 54.96
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 1107.28
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 825.74
+cap "m5_11700_2100#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 90.24
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 730.737
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "m3_9000_4420#" 399.006
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m4_9000_4800#" 823.29
+cap "m4_9000_4800#" "isource_ref_0/isource_ref_transistor_0/m1_n370_110#" 208.3
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 69.2438
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "m4_9000_4800#" 642.875
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "m3_9000_4420#" 1174.37
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 741.252
+cap "m4_9000_4800#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 730.185
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "m3_9000_4420#" 1533.53
+cap "VN" "isource_ref_0/isource_ref_transistor_0/m1_n370_110#" 160.9
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "VN" 257.357
+cap "m3_9000_4420#" "isource_ref_0/isource_ref_transistor_0/m1_n370_110#" 773.77
+cap "VP" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 233.9
+cap "VP" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 826.935
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "VP" 367.136
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "VN" -395.351
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 618.017
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "m4_9000_4800#" 53.65
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "m3_9000_4420#" 31.632
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VN" -311.13
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VN" -64.3377
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "m4_9000_4800#" -343.02
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "m3_9000_4420#" -544.8
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "m4_9000_4800#" -84.25
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "m3_9000_4420#" -127.108
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VN" -1527.24
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 45.9752
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "m4_9000_4800#" -594.075
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "m3_9000_4420#" -691.009
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" 862.977
+cap "isource_ref_0/m1_10190_6860#" "VP" 96.49
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 136.6
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 30.84
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 1209.7
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 328.526
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 92
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 310.336
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1389.48
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 177.43
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 496.422
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VP" -123.63
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" -512.365
+cap "VP" "isource_ref_0/isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -74.91
+cap "VN" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" 139.48
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 422.395
+cap "VP" "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 813.138
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/w_n1425_n610#" "VP" 563.347
+cap "m2_12140_7550#" "isource_ref_0/m1_10190_6860#" -165.597
+cap "VP" "isource_ref_0/m2_12460_5710#" 197.04
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/m1_11450_6340#" -59.6842
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "isource_ref_0/m1_10190_6860#" 427.48
+cap "m2_12140_7550#" "isource_ref_0/m2_12700_7520#" 38.4615
+cap "isource_ref_0/m1_10190_6860#" "VP" -408.67
+cap "m2_12140_7550#" "isource_ref_0/m2_12460_5710#" 158.009
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "VP" 376.716
+cap "m2_12140_7550#" "VP" 412
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VP" 636.09
+cap "isource_ref_0/m1_11450_6340#" "VP" 745.867
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_0/m1_10190_6860#" 395
+cap "isource_ref_0/m2_12460_5710#" "VP" 156.25
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "VP" -363.965
+cap "isource_ref_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VP" 39.39
+cap "isource_ref_0/m2_12460_5710#" "m2_12140_7550#" 65.7625
+cap "isource_ref_0/m2_12700_7520#" "m2_12140_7550#" 161.29
+cap "isource_ref_0/sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" "VP" -302.25
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 457.587
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 318.678
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 436.188
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VP" 434.319
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 310.528
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 319.648
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VP" 233.9
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/dw_12100_8800#" 664.922
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_0/m1_10190_6860#" 1463.86
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_0/m1_10190_6860#" 670.028
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 146.353
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 318.678
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 422.542
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 790.936
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 548.606
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/m1_n370_110#" 268.78
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 1034.19
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 797.994
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 371.664
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 233.9
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 298.369
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VN" 890.157
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 600
+cap "VN" "isource_ref_0/dw_12100_8800#" 615.36
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 127.64
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 279.182
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "VN" 836.302
+cap "VN" "isource_ref_0/dw_12100_8800#" 721.924
+cap "VN" "VN" 14
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 171.68
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 500.549
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" "VN" 244.027
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "VN" 331.523
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_n370_110#" "VN" 155.251
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 681.346
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 271.238
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 246.353
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 1.56
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VP" 491.328
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VN" -76.16
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VN" -9.75975
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VP" 419.745
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 310.592
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VN" -320.823
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" 840.894
+cap "VP" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 233.9
+cap "isource_ref_0/isource_ref_5transistors_1/m2_12120_850#" "VN" 686
+cap "isource_ref_0/m1_10190_6860#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 751.2
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1031.5
+cap "VN" "isource_ref_0/m1_10190_6860#" 945.974
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_0/m1_10190_6860#" 102
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "VN" 144.258
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 141.933
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "VN" 151.35
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 487.751
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/m1_n370_110#" 77.1942
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" "VN" 156.345
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 441.566
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "VN" -232.637
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -122.812
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 176.69
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -1085.99
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 17.678
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "VN" -747.011
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -91.9992
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 334
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "VN" 495.715
+cap "m1_12320_13620#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 39.9261
+cap "m1_12320_13620#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 4.52196
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 657.729
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -1113.08
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" -51.87
+cap "VN" "isource_ref_0/isource_ref_5transistors_1/m2_12120_850#" -283.97
+cap "m1_12320_13620#" "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 16.4561
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "m1_12320_13620#" 1.93798
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" 19.64
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/w_n6457_n610#" "VN" -311.05
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "m1_12320_13620#" 4.52196
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "m1_12320_13620#" 39.9261
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "m1_12320_13620#" 16.4561
+cap "isource_ref_0/isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "m1_12320_13620#" 1.93798
+merge "isource_diffamp_1/B" "isource_diffamp_1/VSUBS" -1226.58 -26734136 -39660 0 0 0 0 0 0 0 0 -215864 -30080 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -215864 -30080 0 0 0 0 0 0 0 0 0 0 0 0
+merge "isource_diffamp_1/VSUBS" "isource_diffamp_1/w_14846_n7914#"
+merge "isource_diffamp_1/w_14846_n7914#" "isource_diffamp_0/B"
+merge "isource_diffamp_0/B" "isource_diffamp_0/w_14846_n7914#"
+merge "isource_diffamp_0/w_14846_n7914#" "isource_diffamp_0/VSUBS"
+merge "isource_diffamp_0/VSUBS" "isource_ref_0/dw_12100_8800#"
+merge "isource_ref_0/dw_12100_8800#" "isource_ref_0/w_1300_6040#"
+merge "isource_ref_0/w_1300_6040#" "w_12120_8840#"
+merge "isource_ref_0/li_n20_n40#" "li_5100_13460#" -25179.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1907266 -16770 0 0 0 0 -1769160 -22124 -62920 -5600 -5892644 -29356 0 0
+merge "li_5100_13460#" "isource_ref_0/m1_10190_6860#"
+merge "isource_ref_0/m1_10190_6860#" "VN"
+merge "VN" "m3_11870_2100#"
+merge "isource_ref_0/m3_12120_4500#" "m2_12140_7550#" -456.116 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38620 -336 322100 1980 0 0 0 0 0 0
+merge "isource_ref_0/m1_11450_6340#" "VM12D" -190.86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19800 -960 0 0 0 0 0 0
+merge "isource_ref_0/m2_12460_5710#" "m3_12480_9250#" -176.892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -32040 -816 0 0 0 0 0 0
diff --git a/mag/isource/isource_dest.mag b/mag/isource/isource_dest.mag
new file mode 100644
index 0000000..fcbb4d9
--- /dev/null
+++ b/mag/isource/isource_dest.mag
@@ -0,0 +1,452 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645632279
+<< locali >>
+rect -40 14020 7794 14040
+rect -280 13570 7794 14020
+rect 10648 13760 11080 14620
+rect 12442 13858 12652 13938
+rect 12296 13760 12652 13858
+rect 10648 13570 12652 13760
+rect -280 13460 12652 13570
+rect -280 -2300 80 13460
+rect 9900 13448 12652 13460
+rect 9900 13440 12534 13448
+rect 11060 13420 12440 13440
+rect 12920 13380 13200 13440
+rect 12900 8480 13220 13380
+rect 18900 9790 19320 9800
+rect 18900 9700 21010 9790
+rect 12920 7330 13200 8480
+rect 18900 7440 21010 7530
+rect 12920 7320 13250 7330
+rect 12920 7220 13340 7320
+rect 12930 6180 13340 7220
+rect 12930 6170 13260 6180
+rect 12980 5000 13260 6170
+rect 18880 5290 18930 5340
+rect 18880 5200 20360 5290
+rect 12910 4810 13280 5000
+rect 12940 1720 13280 4810
+rect 12910 1540 13280 1720
+rect 18880 3010 18930 5200
+rect 18880 2920 20360 3010
+rect 12910 1340 18620 1540
+rect 12880 1310 18620 1340
+rect 12880 -860 13440 1310
+rect 16580 -840 16820 1310
+rect 18020 -1180 18620 1310
+rect 13060 -2140 13220 -1360
+rect 18260 -2140 18420 -1360
+rect 18530 -1560 18620 -1180
+rect 18880 760 18930 2920
+rect 18880 670 20360 760
+rect 18880 -1560 18930 670
+rect -280 -2540 18540 -2300
+rect 40 -2560 18540 -2540
+rect 20760 -4780 21220 -4120
+<< viali >>
+rect 17940 6920 18080 7200
+<< metal1 >>
+rect 12990 14600 13000 14720
+rect 13080 14600 13090 14720
+rect 17420 14360 18040 14480
+rect 18160 14360 18170 14480
+rect 12970 14080 12980 14200
+rect 13060 14080 13070 14200
+rect 13970 13980 13980 14100
+rect 14100 13980 14140 14100
+rect 14200 13980 14360 14100
+rect 12320 13740 12400 13800
+rect 12320 13620 12520 13740
+rect 12620 13620 12630 13740
+rect 14900 11260 15040 13440
+rect 17670 12400 17680 12580
+rect 17980 12400 17990 12580
+rect 17680 11480 17980 12400
+rect 18800 11840 19020 11920
+rect 18800 10980 18960 11840
+rect 14030 9840 14040 9980
+rect 14180 9840 14360 9980
+rect 18800 9920 18980 10980
+rect 18800 9840 19040 9920
+rect 18800 9660 18980 9840
+rect 18800 9580 19040 9660
+rect 18800 8780 18980 9580
+rect 18770 8480 18780 8780
+rect 18940 8480 18980 8780
+rect 18800 7660 18980 8480
+rect 18800 7580 19000 7660
+rect 12930 7180 13390 7240
+rect 13430 7200 13610 7480
+rect 18800 7310 18980 7580
+rect 17934 7200 18086 7212
+rect 17930 6920 17940 7200
+rect 18080 6920 18090 7200
+rect 17934 6908 18086 6920
+rect 12920 6250 13380 6310
+rect 14040 1340 14340 1800
+rect 18210 1620 18220 2100
+rect 18540 1620 18550 2100
+rect 14040 -1310 14330 1340
+rect 16290 580 16760 810
+rect 18800 620 18980 5090
+rect 18800 520 19020 620
+rect 18800 490 18980 520
+rect 14554 -4160 15600 -3240
+rect 16420 -4160 16430 -3240
+<< via1 >>
+rect 13000 14600 13080 14720
+rect 18040 14360 18160 14480
+rect 12980 14080 13060 14200
+rect 13980 13980 14100 14100
+rect 12520 13620 12620 13740
+rect 17680 12400 17980 12580
+rect 14040 9840 14180 9980
+rect 18780 8480 18940 8780
+rect 17940 6920 18080 7200
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+<< metal2 >>
+rect 13060 15580 21200 15780
+rect 13060 14730 13320 15580
+rect 18880 15560 19080 15580
+rect 13000 14720 13320 14730
+rect 13080 14600 13320 14720
+rect 13760 15040 13880 15050
+rect 13000 14590 13080 14600
+rect 12980 14200 13060 14210
+rect 13760 14200 13880 14900
+rect 18500 15040 18680 15050
+rect 18500 14520 18680 14900
+rect 20920 15000 21200 15580
+rect 17640 14480 19080 14520
+rect 17640 14360 18040 14480
+rect 18160 14360 19080 14480
+rect 17640 14320 19080 14360
+rect 10648 13940 11260 14140
+rect 13060 14080 13880 14200
+rect 13980 14160 14520 14300
+rect 13980 14100 14100 14160
+rect 12980 14070 13060 14080
+rect 13980 13880 14100 13980
+rect 12520 13740 12620 13750
+rect 13980 13720 14100 13800
+rect 12520 13610 12620 13620
+rect 13040 13500 14100 13720
+rect 13040 9480 13720 13500
+rect 17680 12580 17980 12590
+rect 17680 12390 17980 12400
+rect 13260 9240 13720 9480
+rect 13860 11140 14060 11150
+rect 14060 10900 14234 11140
+rect 13860 10180 14234 10900
+rect 18880 10560 19080 14320
+rect 20920 12950 21180 15000
+rect 20800 12940 21300 12950
+rect 20800 12220 21300 12500
+rect 20920 11600 21180 12220
+rect 13860 10020 14380 10180
+rect 13860 9980 14234 10020
+rect 13860 9840 14040 9980
+rect 14180 9840 14234 9980
+rect 13040 9230 13260 9240
+rect 13860 8306 14234 9840
+rect 16540 8760 16980 8770
+rect 17660 8760 18000 10380
+rect 18880 8790 19080 8940
+rect 18780 8780 19080 8790
+rect 16980 8500 18780 8760
+rect 16540 8490 16980 8500
+rect 17660 8480 18000 8500
+rect 18940 8480 19080 8780
+rect 18780 8470 19080 8480
+rect 13860 8120 14320 8306
+rect 18880 8300 19080 8470
+rect 12140 7760 12340 7770
+rect 13220 7760 14320 8120
+rect 12340 7560 12720 7760
+rect 13140 7560 14320 7760
+rect 20920 7780 21140 11600
+rect 12140 7550 12340 7560
+rect 20920 7320 23100 7560
+rect 17940 7200 18080 7210
+rect 12720 6920 13360 7120
+rect 17940 6910 18080 6920
+rect 18720 3400 18860 3580
+rect 18220 2100 18540 2110
+rect 18220 1610 18540 1620
+rect 19160 1520 19300 6680
+rect 22900 700 23100 7320
+rect 20800 540 23100 700
+rect 18040 160 18200 170
+rect 18040 -50 18200 -40
+rect 20800 -1360 21040 540
+rect 16950 -1640 17820 -1400
+rect 15600 -3240 16420 -3230
+rect 15600 -4170 16420 -4160
+rect 20760 -4240 21060 -4230
+rect 20760 -4670 21060 -4660
+<< via2 >>
+rect 13760 14900 13880 15040
+rect 18500 14900 18680 15040
+rect 12520 13620 12620 13740
+rect 17680 12400 17980 12580
+rect 13040 9240 13260 9480
+rect 13860 10900 14060 11140
+rect 20800 12500 21300 12940
+rect 16540 8500 16980 8760
+rect 12140 7560 12340 7760
+rect 20920 7560 21140 7780
+rect 17940 6920 18080 7200
+rect 18220 1620 18540 2100
+rect 18040 -40 18200 160
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal3 >>
+rect 13750 15040 13890 15045
+rect 18490 15040 18690 15045
+rect 13750 14900 13760 15040
+rect 13880 14900 18500 15040
+rect 18680 14900 18690 15040
+rect 13750 14895 13890 14900
+rect 18490 14895 18690 14900
+rect 12510 13740 12630 13745
+rect 12510 13620 12520 13740
+rect 12620 13620 14100 13740
+rect 12510 13615 12630 13620
+rect 12818 13500 14100 13620
+rect 11850 11840 11860 11940
+rect 12060 11840 12070 11940
+rect 11380 7260 11680 7440
+rect 9000 5840 9780 5980
+rect 9000 4580 9860 5840
+rect 9000 4420 9780 4580
+rect 11870 1540 11880 11840
+rect 12040 1540 12050 11840
+rect 13860 11145 14060 13500
+rect 20790 12940 21310 12945
+rect 20790 12640 20800 12940
+rect 17670 12580 17990 12585
+rect 17670 12400 17680 12580
+rect 17980 12568 17990 12580
+rect 18226 12568 20800 12640
+rect 17980 12500 20800 12568
+rect 21300 12500 21310 12940
+rect 17980 12495 21310 12500
+rect 17980 12400 20980 12495
+rect 17670 12395 17990 12400
+rect 13850 11140 14070 11145
+rect 13850 10900 13860 11140
+rect 14060 10900 14070 11140
+rect 13850 10895 14070 10900
+rect 13030 9480 13270 9485
+rect 12480 9250 13040 9480
+rect 12680 9240 13040 9250
+rect 13260 9240 13270 9480
+rect 13030 9235 13270 9240
+rect 16530 8760 16990 8765
+rect 16530 8500 16540 8760
+rect 16980 8500 17460 8760
+rect 16530 8495 16990 8500
+rect 20910 7780 21150 7785
+rect 12130 7760 12350 7765
+rect 12130 7560 12140 7760
+rect 12340 7560 12350 7760
+rect 12130 7555 12350 7560
+rect 20910 7560 20920 7780
+rect 21140 7560 21150 7780
+rect 20910 7555 21150 7560
+rect 17930 7200 18090 7205
+rect 17930 6920 17940 7200
+rect 18080 6920 18090 7200
+rect 17930 6915 18090 6920
+rect 18210 2100 18550 2105
+rect 18210 1620 18220 2100
+rect 18540 1620 18550 2100
+rect 18210 1615 18550 1620
+rect 18030 160 18210 165
+rect 14900 -40 18040 160
+rect 18200 -40 18210 160
+rect 4100 -1730 9800 -700
+rect 14900 -4000 15080 -40
+rect 18030 -45 18210 -40
+rect 15590 -3240 16430 -3235
+rect 14554 -4800 15200 -4000
+rect 15590 -4160 15600 -3240
+rect 16420 -4160 16430 -3240
+rect 15590 -4165 16430 -4160
+rect 20750 -4240 21070 -4235
+rect 20750 -4660 20760 -4240
+rect 21060 -4660 21070 -4240
+rect 20750 -4665 21070 -4660
+<< via3 >>
+rect 11860 11840 12060 11940
+rect 11880 1540 12040 11840
+rect 20800 12500 21300 12940
+rect 20920 7560 21140 7780
+rect 17940 6920 18080 7200
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal4 >>
+rect 20799 12940 21301 12941
+rect 20799 12500 20800 12940
+rect 21300 12500 21301 12940
+rect 20799 12499 21301 12500
+rect 20800 12380 21300 12499
+rect 11859 11940 12061 11941
+rect 11859 11840 11860 11940
+rect 12060 11840 12061 11940
+rect 11859 11839 11880 11840
+rect 11879 8300 11880 11839
+rect 12040 11839 12061 11840
+rect 12040 8300 12041 11839
+rect 20800 11820 21300 12220
+rect 20900 7780 21400 8280
+rect 9000 5840 9780 5980
+rect 11879 5900 11880 7600
+rect 12040 5900 12041 7600
+rect 20900 7560 20920 7780
+rect 21140 7560 21400 7780
+rect 20900 7320 21400 7560
+rect 17939 7200 18081 7201
+rect 17939 6920 17940 7200
+rect 18080 6920 18081 7200
+rect 17939 6919 18081 6920
+rect 9000 4800 9860 5840
+rect 11879 1540 11880 5200
+rect 12040 1540 12041 5200
+rect 18219 2100 18541 2101
+rect 18219 1620 18220 2100
+rect 18540 1620 18541 2100
+rect 18219 1619 18541 1620
+rect 11879 1539 12041 1540
+rect 11900 -1374 13900 -1300
+rect 15599 -3240 16421 -3239
+rect 15599 -4160 15600 -3240
+rect 16420 -4160 16421 -3240
+rect 15599 -4161 16421 -4160
+rect 20759 -4240 21061 -4239
+rect 20759 -4660 20760 -4240
+rect 21060 -4660 21061 -4240
+rect 20759 -4661 21061 -4660
+<< via4 >>
+rect 20800 12500 21300 12940
+rect 11720 7600 11880 8300
+rect 11880 7600 12040 8300
+rect 12040 7600 12320 8300
+rect 11700 5200 11880 5900
+rect 11880 5200 12040 5900
+rect 12040 5200 12300 5900
+rect 18220 1620 18540 2100
+rect 15600 -4160 16420 -3240
+rect 20760 -4660 21060 -4240
+<< metal5 >>
+rect 9300 12700 9800 13570
+rect 20776 12940 21324 12964
+rect 9300 12300 12900 12700
+rect 20776 12500 20800 12940
+rect 21300 12500 21324 12940
+rect 20776 12476 21324 12500
+rect 9300 11576 9800 12300
+rect 9026 11200 9800 11576
+rect 9026 6308 9786 11200
+rect 10260 7200 10920 11780
+rect 11700 8324 12300 12300
+rect 11696 8300 12344 8324
+rect 11696 7600 11720 8300
+rect 12320 7600 12344 8300
+rect 11696 7576 12344 7600
+rect 20800 7320 21300 12476
+rect 20800 7200 21400 7320
+rect 9004 5980 9866 6308
+rect 9000 5704 9866 5980
+rect 10260 6300 21400 7200
+rect 9000 4796 9860 5704
+rect 8710 4580 9860 4796
+rect 8710 4420 9780 4580
+rect 8710 -700 9566 4420
+rect 8600 -2800 9800 -700
+rect 10260 -1300 10920 6300
+rect 11676 5900 12324 5924
+rect 11676 5200 11700 5900
+rect 12300 5200 12324 5900
+rect 11676 5176 12324 5200
+rect 11700 1192 12300 5176
+rect 18000 2100 18700 2300
+rect 18000 1620 18220 2100
+rect 18540 1620 18700 2100
+rect 11700 100 12300 598
+rect 18000 100 18700 1620
+rect 11700 -700 18700 100
+rect 10260 -2240 17620 -1300
+rect 11876 -2324 13924 -2240
+rect 8600 -3216 16400 -2800
+rect 8600 -3240 16444 -3216
+rect 8600 -4160 15600 -3240
+rect 16420 -4160 16444 -3240
+rect 8600 -4184 16444 -4160
+rect 8600 -4200 16400 -4184
+rect 15600 -4800 16400 -4200
+rect 16800 -4800 17600 -2240
+rect 18000 -2900 18700 -700
+rect 18000 -3600 21080 -2900
+rect 20680 -4216 21080 -3600
+rect 20680 -4240 21084 -4216
+rect 20680 -4660 20760 -4240
+rect 21060 -4660 21084 -4240
+rect 20680 -4680 21084 -4660
+rect 20736 -4684 21084 -4680
+use isource_cmirror  isource_cmirror_2
+timestamp 1645630008
+transform 1 0 18900 0 1 9740
+box 0 0 2044 2280
+use isource_cmirror  isource_cmirror_3
+timestamp 1645630008
+transform 1 0 18900 0 1 7480
+box 0 0 2044 2280
+use isource_conv  isource_conv_0
+timestamp 1645630008
+transform 1 0 9200 0 1 -6200
+box 3980 6900 13920 13896
+use isource_diffamp  isource_diffamp_0
+timestamp 1645630008
+transform 1 0 -280 0 1 16996
+box 14560 -8200 18240 -5200
+use isource_diffamp  isource_diffamp_1
+timestamp 1645630008
+transform 1 0 6092 0 1 26800
+box 14560 -8200 18240 -5200
+use isource_out  isource_out_0
+timestamp 1645630008
+transform 1 0 -4300 0 1 -13810
+box 4320 8980 25514 15188
+use isource_ref  isource_ref_0
+timestamp 1645630008
+transform 1 0 20 0 1 40
+box -30 -40 13220 13420
+use isource_startup  isource_startup_0
+timestamp 1645630008
+transform 1 0 10820 0 1 13700
+box 200 0 2352 1238
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ  sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0
+timestamp 1645630008
+transform 1 0 19490 0 1 10040
+box -2150 -2100 2149 2100
+<< labels >>
+rlabel metal3 14600 -4600 15000 -4200 7 I_ref
+rlabel metal1 14040 730 14330 920 1 VM3G
+rlabel metal2 17660 -1630 17810 -1400 3 VM3D
+rlabel metal1 16290 580 16490 800 3 VM22D
+rlabel space 18650 3400 18750 3580 3 VM14D
+rlabel metal3 11380 7260 11680 7440 1 VM12D
+rlabel metal1 13440 7380 13580 7460 1 VM12G
+rlabel metal5 16940 -4640 17440 -4120 1 VP
+rlabel metal2 13720 7620 14040 8060 1 VM11D
+rlabel metal2 13280 12860 13440 13080 1 VM2D
+rlabel metal2 18880 13660 19040 13880 1 VM8D
+rlabel metal3 17100 8540 17260 8720 1 VM9D
+rlabel metal5 15800 -4600 16200 -4200 1 VN
+<< end >>
diff --git a/mag/isource/isource_dest.spice b/mag/isource/isource_dest.spice
new file mode 100644
index 0000000..9ed18b4
--- /dev/null
+++ b/mag/isource/isource_dest.spice
@@ -0,0 +1,175 @@
+* SPICE3 file created from isource_dest.ext - technology: sky130A
+
+X0 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X1 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X2 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X3 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X4 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X5 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X6 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X7 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X8 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X9 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X10 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X11 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X12 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X13 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X14 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X15 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X16 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X17 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X18 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X19 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X20 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X21 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X22 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X23 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X24 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X25 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X26 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X27 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X28 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X29 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X30 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X31 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X32 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X33 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X34 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X35 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X36 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X37 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X38 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X39 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X40 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X41 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X42 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X43 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X44 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X45 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X46 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X47 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X48 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X49 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X50 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X51 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X52 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X53 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X54 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X55 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X56 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X57 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X58 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X59 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X60 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X61 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X62 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X63 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X64 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X65 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X66 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X67 VN m3_12480_9250# m3_12480_9250# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X68 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X69 m3_12480_9250# m3_12480_9250# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X70 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X71 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X72 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X73 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X74 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X75 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X76 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X77 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X78 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X79 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X80 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X81 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X82 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X83 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X84 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X85 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X86 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X87 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X88 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X89 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X90 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X91 VM12D m3_12480_9250# m2_12140_7550# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X92 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X93 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X94 m2_12140_7550# m3_12480_9250# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X95 VM12D isource_ref_0/m1_12708_6228# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X96 VN isource_ref_0/m1_12708_6228# VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X97 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X98 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X99 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X100 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X101 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X102 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X103 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X104 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X105 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X106 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X107 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X108 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X109 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X110 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X111 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X112 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X113 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X114 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X115 isource_diffamp_0/S isource_diffamp_0/G isource_diffamp_0/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X116 isource_diffamp_0/D isource_diffamp_0/G isource_diffamp_0/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X117 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X118 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X119 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X120 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X121 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X122 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X123 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X124 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X125 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X126 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X127 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X128 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X129 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X130 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X131 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X132 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X133 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X134 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X135 isource_diffamp_1/S isource_diffamp_1/G isource_diffamp_1/D VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X136 isource_diffamp_1/D isource_diffamp_1/G isource_diffamp_1/S VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+C0 isource_diffamp_0/nwell VN 23.88fF
+C1 isource_diffamp_1/G VN 3.83fF
+C2 isource_diffamp_1/G isource_diffamp_1/S 9.68fF
+C3 VN VP 11.60fF
+C4 VN m4_9000_4800# 2.49fF
+C5 VN isource_diffamp_0/G 3.83fF
+C6 isource_diffamp_1/S VN 3.91fF
+C7 isource_diffamp_0/D isource_diffamp_0/G 7.02fF
+C8 VM12D VP 5.06fF
+C9 m3_12480_9250# VP 5.93fF
+C10 VM12D VN 42.90fF
+C11 m3_12480_9250# VN 65.70fF
+C12 m3_12480_9250# VM12D 66.56fF
+C13 isource_ref_0/m1_12708_6228# VN 4.08fF
+C14 VN m2_12140_7550# 57.92fF
+C15 m5_11700_2100# VN 3.59fF
+C16 isource_diffamp_1/D isource_diffamp_1/G 7.02fF
+C17 isource_diffamp_0/S isource_diffamp_0/G 9.68fF
+C18 isource_diffamp_1/nwell VN 23.88fF
+C19 isource_diffamp_0/S VN 3.91fF
+C20 VM12D m2_12140_7550# 37.61fF
+C21 m3_9000_4420# m4_9000_4800# 2.41fF
+C22 m3_12480_9250# m2_12140_7550# 72.02fF
+C23 isource_diffamp_0/S isource_diffamp_0/D 11.36fF
+C24 isource_diffamp_1/D isource_diffamp_1/S 11.36fF
+C25 VP 0 11.98fF
+C26 m3_5100_n1730# 0 3.80fF **FLOATING
+C27 li_5100_n2560# 0 8.27fF **FLOATING
+C28 isource_diffamp_1/nwell 0 35.22fF
+C29 isource_diffamp_1/G 0 13.66fF **FLOATING
+C30 isource_diffamp_0/nwell 0 35.22fF
+C31 isource_diffamp_0/G 0 13.66fF **FLOATING
+C32 isource_ref_0/m1_12708_6228# 0 6.59fF **FLOATING
+C33 VN 0 28.69fF **FLOATING
+C34 m3_12480_9250# 0 342.19fF **FLOATING
+C35 VM12D 0 3.62fF **FLOATING
diff --git a/mag/isource/isource_diffamp.ext b/mag/isource/isource_diffamp.ext
new file mode 100644
index 0000000..37968e5
--- /dev/null
+++ b/mag/isource/isource_diffamp.ext
@@ -0,0 +1,121 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87 sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0 1 0 16397 0 1 -6701
+node "m1_15310_n7040#" 6 0 15310 -7040 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200000 6000 1544400 7040 0 0 0 0 0 0 0 0
+node "m1_15050_n7600#" 11 0 15050 -7600 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 240000 7200 1396800 15200 0 0 0 0 0 0 0 0
+node "m1_14640_n6760#" 18 0 14640 -6760 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 964800 23480 0 0 0 0 0 0 0 0 0 0
+node "li_14940_n7200#" 33 0 14940 -7200 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 560 55888 1220 0 0 0 0 0 0 0 0 0 0
+node "w_14846_n7914#" 5632 0 14846 -7914 pw 7546224 11072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "dw_14640_n8120#" 66561 33120 14640 -8120 dnw 0 0 9996800 12720 3493776 24432 0 0 944832 25536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 443312 25628 51408 940 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_14846_n7914#" "m1_15310_n7040#" 1644.23
+cap "dw_14640_n8120#" "m1_15310_n7040#" 85.4768
+cap "li_14940_n7200#" "m1_14640_n6760#" 104.118
+cap "m1_15310_n7040#" "m1_15050_n7600#" 839.98
+cap "w_14846_n7914#" "dw_14640_n8120#" 22638.7
+cap "w_14846_n7914#" "m1_15050_n7600#" 3054.52
+cap "dw_14640_n8120#" "m1_15050_n7600#" 139.946
+cap "w_14846_n7914#" "li_14940_n7200#" 179.609
+cap "dw_14640_n8120#" "li_14940_n7200#" 136.65
+cap "m1_15310_n7040#" "m1_14640_n6760#" 3372.49
+cap "w_14846_n7914#" "m1_14640_n6760#" 4304.6
+cap "dw_14640_n8120#" "m1_14640_n6760#" 134.13
+cap "m1_14640_n6760#" "m1_15050_n7600#" 2596.15
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 97.0348
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" -252.877
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" 539.994
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" -10.4438
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 98.6585
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" 151.821
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 0.31728
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" -215.976
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" -669.345
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 809.901
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" 120.615
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" -387.772
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" 633.066
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 408.836
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 226.876
+cap "w_14846_n7914#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" -126.506
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" 412.36
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" -4.5616
+cap "w_14846_n7914#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" -112.091
+cap "w_14846_n7914#" "dw_14640_n8120#" 122.697
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" 473.306
+cap "w_14846_n7914#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" -58.8748
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" -62.807
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 255.328
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" -252.56
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" 596.64
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 99.9268
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" 143.962
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 5.90952
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" -23.3105
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" -399.115
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" 746.292
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" 1155.62
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" -856.616
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" 59.9388
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" -686.147
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" 403.197
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" -403.551
+cap "w_14846_n7914#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" -61.5276
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" -61.1991
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" 3663.02
+cap "w_14846_n7914#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" -122.876
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" "w_14846_n7914#" -79.2674
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" 432.702
+cap "w_14846_n7914#" "dw_14640_n8120#" 119.596
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" -4.5616
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" 12.2495
+cap "dw_14640_n8120#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" 42.1284
+cap "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "dw_14640_n8120#" 59.9388
+cap "dw_14640_n8120#" "w_14846_n7914#" 19.6086
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_n909#" 29389.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45589200 -4920 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1003_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_487_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n29_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n545_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1061_109#" "m1_15310_n7040#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_n997#" -469.429 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4919864 -17888 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_n997#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1061_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_803_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_545_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_287_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_29_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n229_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n487_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n745_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1003_21#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1261_21#" "m1_14640_n6760#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_109#" 34325.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53264268 -5904 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_1261_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_n909#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_n909#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_745_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_229_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n287_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n803_109#" "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1319_109#" "m1_15050_n7600#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0/a_n1421_n1083#" "li_14940_n7200#" 1462.45 -1391148 -3616 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3644000 -468 0 0 0 0 0 0 0 0 0 0 0 0
+merge "li_14940_n7200#" "w_14846_n7914#"
diff --git a/mag/isource/isource_diffamp.mag b/mag/isource/isource_diffamp.mag
new file mode 100644
index 0000000..849a197
--- /dev/null
+++ b/mag/isource/isource_diffamp.mag
@@ -0,0 +1,194 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< dnwell >>
+rect 14640 -8120 18160 -5280
+<< nwell >>
+rect 14560 -5486 18240 -5200
+rect 14560 -7914 14846 -5486
+rect 17954 -7914 18240 -5486
+rect 14560 -8200 18240 -7914
+<< nsubdiff >>
+rect 14597 -5257 18203 -5237
+rect 14597 -5291 14677 -5257
+rect 18123 -5291 18203 -5257
+rect 14597 -5311 18203 -5291
+rect 14597 -5317 14671 -5311
+rect 14597 -8083 14617 -5317
+rect 14651 -8083 14671 -5317
+rect 14597 -8089 14671 -8083
+rect 18129 -5317 18203 -5311
+rect 18129 -8083 18149 -5317
+rect 18183 -8083 18203 -5317
+rect 18129 -8089 18203 -8083
+rect 14597 -8109 18203 -8089
+rect 14597 -8143 14677 -8109
+rect 18123 -8143 18203 -8109
+rect 14597 -8163 18203 -8143
+<< nsubdiffcont >>
+rect 14677 -5291 18123 -5257
+rect 14617 -8083 14651 -5317
+rect 18149 -8083 18183 -5317
+rect 14677 -8143 18123 -8109
+<< locali >>
+rect 14617 -5291 14677 -5257
+rect 18123 -5291 18183 -5257
+rect 14617 -5317 14651 -5291
+rect 18149 -5317 18183 -5291
+rect 14617 -8109 14651 -8083
+rect 18149 -8109 18183 -8083
+rect 14617 -8143 14677 -8109
+rect 18123 -8143 18183 -8109
+<< viali >>
+rect 18120 -5540 18149 -5340
+rect 18149 -5540 18183 -5340
+rect 18183 -5540 18200 -5340
+rect 14940 -7200 15020 -7000
+<< metal1 >>
+rect 18114 -5340 18206 -5328
+rect 17960 -5540 18120 -5340
+rect 18200 -5540 18206 -5340
+rect 18114 -5552 18206 -5540
+rect 15120 -5740 17700 -5680
+rect 15050 -6020 15060 -5820
+rect 15140 -6020 15150 -5820
+rect 15200 -6640 15280 -5740
+rect 15570 -6020 15580 -5820
+rect 15660 -6020 15670 -5820
+rect 16090 -6020 16100 -5820
+rect 16180 -6020 16190 -5820
+rect 16610 -6020 16620 -5820
+rect 16700 -6020 16710 -5820
+rect 17130 -6020 17140 -5820
+rect 17220 -6020 17230 -5820
+rect 15310 -6580 15320 -6380
+rect 15400 -6580 15410 -6380
+rect 15830 -6580 15840 -6380
+rect 15920 -6580 15930 -6380
+rect 16350 -6580 16360 -6380
+rect 16440 -6580 16450 -6380
+rect 16870 -6580 16880 -6380
+rect 16960 -6580 16970 -6380
+rect 17370 -6580 17380 -6380
+rect 17460 -6580 17470 -6380
+rect 17520 -6640 17600 -5740
+rect 17650 -6020 17660 -5820
+rect 17740 -6020 17750 -5820
+rect 14640 -6760 17700 -6640
+rect 14934 -7000 15026 -6988
+rect 14934 -7020 14940 -7000
+rect 14640 -7140 14940 -7020
+rect 14934 -7200 14940 -7140
+rect 15020 -7200 15026 -7000
+rect 14934 -7212 15026 -7200
+rect 15050 -7600 15060 -7400
+rect 15140 -7600 15150 -7400
+rect 15200 -7660 15280 -6760
+rect 15310 -7040 15320 -6840
+rect 15400 -7040 15410 -6840
+rect 15830 -7040 15840 -6840
+rect 15920 -7040 15930 -6840
+rect 16350 -7040 16360 -6840
+rect 16440 -7040 16450 -6840
+rect 16870 -7040 16880 -6840
+rect 16960 -7040 16970 -6840
+rect 17370 -7040 17380 -6840
+rect 17460 -7040 17470 -6840
+rect 15570 -7600 15580 -7400
+rect 15660 -7600 15670 -7400
+rect 16090 -7600 16100 -7400
+rect 16180 -7600 16190 -7400
+rect 16610 -7600 16620 -7400
+rect 16700 -7600 16710 -7400
+rect 17130 -7600 17140 -7400
+rect 17220 -7600 17230 -7400
+rect 17520 -7660 17600 -6760
+rect 17650 -7600 17660 -7400
+rect 17740 -7600 17750 -7400
+rect 15120 -7720 17700 -7660
+<< via1 >>
+rect 15060 -6020 15140 -5820
+rect 15580 -6020 15660 -5820
+rect 16100 -6020 16180 -5820
+rect 16620 -6020 16700 -5820
+rect 17140 -6020 17220 -5820
+rect 15320 -6580 15400 -6380
+rect 15840 -6580 15920 -6380
+rect 16360 -6580 16440 -6380
+rect 16880 -6580 16960 -6380
+rect 17380 -6580 17460 -6380
+rect 17660 -6020 17740 -5820
+rect 15060 -7600 15140 -7400
+rect 15320 -7040 15400 -6840
+rect 15840 -7040 15920 -6840
+rect 16360 -7040 16440 -6840
+rect 16880 -7040 16960 -6840
+rect 17380 -7040 17460 -6840
+rect 15580 -7600 15660 -7400
+rect 16100 -7600 16180 -7400
+rect 16620 -7600 16700 -7400
+rect 17140 -7600 17220 -7400
+rect 17660 -7600 17740 -7400
+<< metal2 >>
+rect 15060 -5820 15140 -5810
+rect 15580 -5820 15660 -5810
+rect 16100 -5820 16180 -5810
+rect 16620 -5820 16700 -5810
+rect 17140 -5820 17220 -5810
+rect 17660 -5820 17740 -5810
+rect 15140 -6020 15580 -5820
+rect 15660 -6020 16100 -5820
+rect 16180 -6020 16620 -5820
+rect 16700 -6020 17140 -5820
+rect 17220 -6020 17660 -5820
+rect 15060 -6820 15240 -6020
+rect 15580 -6030 15660 -6020
+rect 16100 -6030 16180 -6020
+rect 16620 -6030 16700 -6020
+rect 17140 -6030 17220 -6020
+rect 17660 -6030 17740 -6020
+rect 14640 -6960 15240 -6820
+rect 15060 -7400 15240 -6960
+rect 15320 -6380 15400 -6370
+rect 15840 -6380 15920 -6370
+rect 16360 -6380 16440 -6370
+rect 16880 -6380 16960 -6370
+rect 17380 -6380 17460 -6370
+rect 15400 -6580 15840 -6380
+rect 15920 -6580 16360 -6380
+rect 16440 -6580 16880 -6380
+rect 16960 -6580 17380 -6380
+rect 15320 -6600 17460 -6580
+rect 15320 -6800 18080 -6600
+rect 15320 -6840 17460 -6800
+rect 15400 -7040 15840 -6840
+rect 15920 -7040 16360 -6840
+rect 16440 -7040 16880 -6840
+rect 16960 -7040 17380 -6840
+rect 15320 -7050 15400 -7040
+rect 15840 -7050 15920 -7040
+rect 16360 -7050 16440 -7040
+rect 16880 -7050 16960 -7040
+rect 17380 -7050 17460 -7040
+rect 15580 -7400 15660 -7390
+rect 16100 -7400 16180 -7390
+rect 16620 -7400 16700 -7390
+rect 17140 -7400 17220 -7390
+rect 17660 -7400 17740 -7390
+rect 15140 -7600 15580 -7400
+rect 15660 -7600 16100 -7400
+rect 16180 -7600 16620 -7400
+rect 16700 -7600 17140 -7400
+rect 17220 -7600 17660 -7400
+rect 15060 -7610 15140 -7600
+rect 15580 -7610 15660 -7600
+rect 16100 -7610 16180 -7600
+rect 16620 -7610 16700 -7600
+rect 17140 -7610 17220 -7600
+rect 17660 -7610 17740 -7600
+use sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87  sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0
+timestamp 1647868710
+transform 1 0 16397 0 1 -6701
+box -1457 -1119 1457 1119
+<< end >>
diff --git a/mag/isource/isource_diffamp.spice b/mag/isource/isource_diffamp.spice
new file mode 100644
index 0000000..e1e13cd
--- /dev/null
+++ b/mag/isource/isource_diffamp.spice
@@ -0,0 +1,30 @@
+* SPICE3 file created from isource_diffamp.ext - technology: sky130A
+
+X0 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X1 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X2 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X3 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X4 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X5 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X6 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X7 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X8 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X10 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X11 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X12 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X13 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X14 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X15 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X16 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X17 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X18 S G D B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X19 D G S B sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+C0 S B 3.91fF
+C1 S G 9.68fF
+C2 G D 7.02fF
+C3 G B 3.83fF
+C4 nwell B 23.88fF
+C5 S D 11.36fF
+C6 nwell VSUBS 35.22fF
+C7 G VSUBS 13.66fF **FLOATING
diff --git a/mag/isource/isource_flat.ext b/mag/isource/isource_flat.ext
new file mode 100644
index 0000000..1733a09
--- /dev/null
+++ b/mag/isource/isource_flat.ext
@@ -0,0 +1,550 @@
+timestamp 0
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+port "I_ref" 2 14600 -4600 15000 -4200 m3
+port "VP" 1 16940 -4640 17440 -4120 m5
+port "VN" 3 15800 -4600 16200 -4200 m5
+node "m4_11900_n1374#" 1 197.877 11900 -1374 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148000 4148 0 0 0 0
+node "m3_4100_n1730#" 0 1605.31 4100 -1730 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5871000 13460 0 0 0 0 0 0
+node "m3_9000_4420#" 0 1042.82 9000 4420 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1317600 4840 0 0 0 0 0 0
+node "a_20766_n4232#" 14184 0 20766 -4232 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_20236_n4232#" 14184 0 20236 -4232 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_20236_n2232#" 188 1651.34 20236 -2232 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "a_19706_n4664#" 188 1814.07 19706 -4664 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "a_19706_n4232#" 14184 0 19706 -4232 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_19176_n4232#" 14184 0 19176 -4232 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_19176_n2232#" 188 1611.21 19176 -2232 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "a_18646_n4664#" 188 1968.47 18646 -4664 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "a_18646_n4232#" 14184 0 18646 -4232 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_19136_n1351#" 27245 186.962 19136 -1351 pdif 0 0 0 0 0 0 0 0 0 0 371200 13728 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 219776 13472 352176 14120 611600 6800 0 0 0 0 0 0 0 0
+node "I_ref" 24540 9507.28 14600 -4600 m3 0 0 0 0 0 0 0 0 620800 20752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 329664 20208 510960 21120 627800 7680 1893400 17492 0 0 0 0 0 0
+node "VM22D" 62870 12578.5 158 -2170 ndif 0 0 0 0 0 0 0 0 510400 18876 92800 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 595920 39200 0 0 402016 25892 1556522 39414 6999100 67544 630000 4620 0 0 0 0 0 0
+node "VM3D" 28806 3185.82 158 -960 ndif 0 0 0 0 0 0 0 0 603200 22308 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 357136 21892 599120 23160 6741420 61958 0 0 0 0 0 0 0 0
+node "a_216_n2258#" 16881 68362.8 216 -2258 p 0 0 0 0 0 0 0 0 528000 17320 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23424000 87040 0 0 2150368 118416 4027882 129200 1483200 16480 578200 4970 0 0 0 0 0 0
+node "a_18236_2078#" 14184 0 18236 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_17706_2078#" 14184 0 17706 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_17706_4078#" 188 1885.06 17706 4078 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_17176_1646#" 188 2198.52 17176 1646 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_17176_2078#" 14184 0 17176 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_16646_2078#" 14184 0 16646 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_16646_4078#" 188 1635.34 16646 4078 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_16116_1646#" 188 1747.99 16116 1646 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_16116_2078#" 14184 0 16116 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_15586_2078#" 14184 0 15586 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_15586_4078#" 188 1711.84 15586 4078 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_15056_1646#" 188 1773.75 15056 1646 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "a_15056_2078#" 14184 0 15056 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_14526_2078#" 14184 0 14526 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_14526_4078#" 188 1962.09 14526 4078 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 412800 2680 0 0 0 0 0 0 0 0 0 0
+node "VM3G" 3216 20758.1 13256 -2248 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4684800 17408 0 0 813696 25456 1910900 29544 0 0 0 0 0 0 0 0 0 0
+node "a_13916_2078#" 14184 0 13916 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_13386_2078#" 14184 0 13386 2078 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_13386_4078#" 188 2169.26 13386 4078 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487296 5712 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "a_19136_919#" 211 325.149 19136 919 pdif 0 0 0 0 0 0 0 0 0 0 2227200 82368 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1318656 80832 2113056 84720 5453200 58900 407600 6720 0 0 0 0 0 0
+node "VM14D" 75101 3612.01 14576 6350 ndif 0 0 0 0 0 0 0 0 46400 1716 556800 20592 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 595920 39200 0 0 402016 25892 1219252 38636 3137200 28220 1134000 15120 0 0 0 0 0 0
+node "a_19136_7699#" 27245 0 19136 7699 pdif 0 0 0 0 0 0 0 0 0 0 371200 13728 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 219776 13472 352176 14120 611600 6800 0 0 0 0 0 0 0 0
+node "a_19136_9959#" 27245 0 19136 9959 pdif 0 0 0 0 0 0 0 0 0 0 371200 13728 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 219776 13472 352176 14120 611600 6800 0 0 0 0 0 0 0 0
+node "VM9D" 24727 5883.59 14856 9298 p 0 0 0 0 0 0 0 0 464000 17160 92800 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7808000 94080 0 0 873664 57648 3124446 76114 2555880 17172 0 0 0 0 0 0 0 0
+node "VM12D" 237 26931.9 158 250 ndif 0 0 0 0 0 0 0 0 1856000 68640 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1098880 67360 1752000 70480 18055800 169000 7791500 53050 0 0 0 0 0 0
+node "VM8D" 25180 9348.02 12956 14090 ndif 0 0 0 0 0 0 0 0 469800 17476 92800 3432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18669456 254016 0 0 1638120 111932 9877406 172758 2965840 19412 19833900 37548 400896 8544 0 0 0 0
+node "a_11158_13910#" 13987 17963.4 11158 13910 ndif 0 0 0 0 0 0 0 0 278400 10296 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 1352 0 0 195704 12124 324344 13024 336900 4700 0 0 0 0 0 0 0 0
+node "VM12G" 63196 23400.1 16400 5066 pw 2989224 7172 0 0 0 0 0 0 528000 17320 225760 13280 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4684800 17408 0 0 1083092 52868 1445580 45760 3415292 24660 0 0 0 0 0 0 0 0
+node "VM11D" 73411 34337.2 14566 9082 pw 7546224 11072 0 0 0 0 0 0 2088000 77220 335920 19760 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500360 20988 0 0 1631000 99368 2574992 93184 19985355 196506 4572040 42650 0 0 0 0 0 0
+node "VM2D" 113715 329710 14566 13206 pw 7546224 11072 0 0 0 0 0 0 1252800 46332 335920 19760 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 111264000 413440 0 0 8838864 534240 17254402 542426 12560484 114116 2998900 30740 0 0 0 0 0 0
+node "VP" 23931 400074 16940 -4640 m5 0 0 24630000 34260 51417480 103492 0 0 7024880 316512 2511400 92980 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11104448 325896 3372544 121896 15451280 133912 2268330 20230 99945268 71258 30820824 80898 0 0
+substrate "VN" 0 0 15800 -4600 m5 0 0 0 0 0 0 0 0 1397800 51796 15707120 800976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57602804 583192 4349042 70252 15360980 127782 7034000 53520 4036700 33272 106173760 135968 0 0
+cap "VM9D" "VM12D" 2.82038
+cap "a_17176_1646#" "VP" 51.2164
+cap "m3_9000_4420#" "VM11D" 827.204
+cap "a_216_n2258#" "VM12G" 4.93567
+cap "VM12G" "VM8D" 106.704
+cap "VP" "a_19136_919#" 54451.1
+cap "VM9D" "VM8D" 16433.7
+cap "m4_11900_n1374#" "VM3D" 66.6346
+cap "a_216_n2258#" "VM12D" 66.8129
+cap "a_17176_1646#" "I_ref" 31.1668
+cap "VP" "a_19176_n2232#" 95.8345
+cap "m3_9000_4420#" "VM12D" 46.5868
+cap "VM12G" "a_13386_4078#" 859.665
+cap "a_15586_4078#" "a_13386_4078#" 29.9103
+cap "m4_11900_n1374#" "VP" 760.189
+cap "a_216_n2258#" "a_19136_n1351#" 249.801
+cap "a_216_n2258#" "VM8D" 258.769
+cap "a_19136_n1351#" "VM8D" 4464.23
+cap "I_ref" "a_19136_919#" 35.4701
+cap "a_16646_4078#" "VM12G" 60.8528
+cap "a_15586_4078#" "a_16646_4078#" 266.794
+cap "VM12D" "a_13386_4078#" 60.6771
+cap "VM14D" "VM12G" 11312.6
+cap "a_17176_1646#" "a_19136_919#" 23.1564
+cap "VM22D" "a_16116_1646#" 48.713
+cap "VM9D" "a_19136_9959#" 2639.95
+cap "a_17176_1646#" "a_15056_1646#" 32.5526
+cap "a_16646_4078#" "VM8D" 13.4182
+cap "a_216_n2258#" "VM14D" 29.0186
+cap "VM14D" "VM8D" 15571.3
+cap "a_15586_4078#" "a_17706_4078#" 32.5526
+cap "VM3G" "VM22D" 668.307
+cap "VM22D" "VM11D" 532.278
+cap "a_19136_9959#" "VM8D" 8030.58
+cap "a_11158_13910#" "VM11D" 2510.26
+cap "VM3G" "VM2D" 8.18445
+cap "VM3G" "VM3D" 2191.02
+cap "VM11D" "VM2D" 60021.5
+cap "a_17706_4078#" "VM8D" 92.0911
+cap "VM3D" "VM11D" 314.876
+cap "a_19136_7699#" "VM8D" 10725.2
+cap "a_16646_4078#" "VM14D" 90.2429
+cap "VM22D" "VM12D" 1152.78
+cap "a_11158_13910#" "VM12D" 63.3026
+cap "a_16116_1646#" "I_ref" 6.01104
+cap "VM2D" "VM12G" 1888.68
+cap "a_20236_n2232#" "VP" 100.03
+cap "VM3G" "VP" 2248.38
+cap "a_17176_1646#" "a_16116_1646#" 266.794
+cap "VM2D" "VM9D" 26082.4
+cap "VM11D" "VP" 37236.9
+cap "VM22D" "a_216_n2258#" 23080.5
+cap "VM2D" "VM12D" 62668.3
+cap "VM22D" "VM8D" 911.248
+cap "VM22D" "a_19136_n1351#" 2705.16
+cap "a_11158_13910#" "VM8D" 66.0145
+cap "VM3D" "VM12D" 546.595
+cap "VP" "VM12G" 47912.2
+cap "a_17706_4078#" "a_16646_4078#" 266.794
+cap "a_15586_4078#" "VP" 19.4373
+cap "a_216_n2258#" "VM2D" 6741.44
+cap "VM2D" "VM8D" 1257.48
+cap "a_17706_4078#" "VM14D" 48.474
+cap "VM3G" "I_ref" 568.111
+cap "VP" "VM9D" 4020.2
+cap "VM3D" "a_216_n2258#" 13197.7
+cap "VP" "VM12D" 12206.9
+cap "m3_9000_4420#" "VM2D" 2682.7
+cap "a_16116_1646#" "a_15056_1646#" 266.794
+cap "a_19136_9959#" "a_19136_7699#" 39.7161
+cap "VM22D" "VM14D" 23.751
+cap "a_19136_n1351#" "VP" 6941.92
+cap "a_216_n2258#" "VP" 3781.09
+cap "VP" "VM8D" 143581
+cap "a_20236_n2232#" "a_19176_n2232#" 255.389
+cap "VM3G" "a_19176_n2232#" 3.46867
+cap "m3_9000_4420#" "VP" 3458.42
+cap "VM12G" "a_19136_919#" 34.8469
+cap "m4_11900_n1374#" "VM3G" 344.016
+cap "VM3G" "a_15056_1646#" 254.778
+cap "m3_4100_n1730#" "a_216_n2258#" 8818.24
+cap "a_216_n2258#" "I_ref" 32917.9
+cap "a_19136_n1351#" "I_ref" 126.857
+cap "I_ref" "VM8D" 174.056
+cap "a_17176_1646#" "VM8D" 35.2152
+cap "a_17176_1646#" "a_216_n2258#" 41.4026
+cap "a_16646_4078#" "VP" 79.1957
+cap "VP" "VM14D" 23612
+cap "VM12G" "a_15056_1646#" 30.5494
+cap "a_19136_n1351#" "a_19136_919#" 39.0331
+cap "a_216_n2258#" "a_19136_919#" 23.3032
+cap "a_19136_919#" "VM8D" 34175.3
+cap "VP" "a_19136_9959#" 7137.13
+cap "a_216_n2258#" "a_19176_n2232#" 194.899
+cap "VM8D" "a_19176_n2232#" 142.322
+cap "a_19136_n1351#" "a_19176_n2232#" 16.1029
+cap "a_18646_n4664#" "a_19706_n4664#" 248.959
+cap "I_ref" "VM14D" 37.7366
+cap "m4_11900_n1374#" "a_216_n2258#" 265.26
+cap "VM22D" "VM2D" 174.432
+cap "a_17706_4078#" "VP" 155.85
+cap "a_17176_1646#" "VM14D" 18.0921
+cap "VM3G" "a_16116_1646#" 32.3329
+cap "a_11158_13910#" "VM2D" 95.0597
+cap "VP" "a_19136_7699#" 7121.67
+cap "VM3D" "VM22D" 9869.32
+cap "a_15586_4078#" "a_14526_4078#" 266.794
+cap "VM14D" "a_19136_919#" 20053.1
+cap "VM3D" "VM2D" 56.9686
+cap "VM22D" "VP" 4622.51
+cap "a_11158_13910#" "VP" 497.771
+cap "VM2D" "VP" 61141.6
+cap "a_17706_4078#" "a_19136_919#" 82.0392
+cap "VM3D" "VP" 2095.13
+cap "a_19136_7699#" "a_19136_919#" 77.6884
+cap "m3_4100_n1730#" "VM22D" 198.24
+cap "VM22D" "I_ref" 7872.99
+cap "VM3G" "VM12G" 210.087
+cap "a_17176_1646#" "VM22D" 129.628
+cap "VM11D" "VM12G" 308.91
+cap "a_14526_4078#" "a_13386_4078#" 204.157
+cap "VM3G" "VM12D" 23.6926
+cap "VM11D" "VM9D" 16308.1
+cap "VM22D" "a_19136_919#" 21.5656
+cap "m3_4100_n1730#" "VM3D" 8652.9
+cap "VM3D" "I_ref" 350.64
+cap "VM11D" "VM12D" 34078.3
+cap "a_16646_4078#" "a_14526_4078#" 32.5526
+cap "a_20236_n2232#" "a_19136_n1351#" 8.38058
+cap "a_20236_n2232#" "a_216_n2258#" 30.9278
+cap "a_20236_n2232#" "VM8D" 101.939
+cap "VM3G" "a_216_n2258#" 678.438
+cap "VM3G" "a_19136_n1351#" 5.02892
+cap "VM3G" "VM8D" 2.03633
+cap "VM12G" "VM12D" 1089.65
+cap "a_216_n2258#" "VM11D" 48.29
+cap "m3_4100_n1730#" "VP" 11905.5
+cap "VM11D" "VM8D" 12328.8
+cap "m4_11900_n1374#" "VM22D" 306.963
+cap "I_ref" "VP" 626.661
+device csubckt sky130_fd_pr__cap_mim_m3_2 3900 -1300 3901 -1299 w=6000 l=6000 "None" "VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 3900 5700 3901 5701 w=6000 l=6000 "None" "VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_1 17440 8040 17441 8041 w=4000 l=4000 "None" "VP" 15680 0 "VM8D" 0 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 20766 -4232 20767 -4231 l=2000 "VN" "a_20766_n4232#" 0 0 "VN" 282 0 "a_20236_n2232#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 20236 -4232 20237 -4231 l=2000 "VN" "a_20236_n4232#" 0 0 "a_19706_n4664#" 282 0 "a_20236_n2232#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 19706 -4232 19707 -4231 l=2000 "VN" "a_19706_n4232#" 0 0 "a_19706_n4664#" 282 0 "a_19176_n2232#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 19176 -4232 19177 -4231 l=2000 "VN" "a_19176_n4232#" 0 0 "a_18646_n4664#" 282 0 "a_19176_n2232#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 18646 -4232 18647 -4231 l=2000 "VN" "a_18646_n4232#" 0 0 "a_18646_n4664#" 282 0 "a_216_n2258#" 282 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 -1351 20549 -1350 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 -1351 20291 -1350 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 -1351 20033 -1350 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 -1351 19775 -1350 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 -1351 19517 -1350 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 -315 20549 -314 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 -315 20291 -314 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 -315 20033 -314 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 -315 19775 -314 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 -315 19517 -314 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_n1351#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 -1351 19097 -1350 l=40 w=800 "VP" "VM8D" 80 0 "VM22D" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 -315 19097 -314 l=40 w=800 "VP" "VM8D" 80 0 "VM22D" 800 0 "a_19136_n1351#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 17030 -2160 17031 -2159 l=1200 w=800 "VN" "VM3G" 2400 0 "VM3D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 15772 -2160 15773 -2159 l=1200 w=800 "VN" "VM3G" 2400 0 "VN" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 14514 -2160 14515 -2159 l=1200 w=800 "VN" "VM3G" 2400 0 "VM3D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 13256 -2160 13257 -2159 l=1200 w=800 "VN" "VM3G" 2400 0 "VN" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 -2170 11539 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 -2170 10281 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 -2170 9023 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 -2170 7765 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 -2170 6507 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 -2170 5249 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 -2170 3991 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 -2170 2733 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 -2170 1475 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 -2170 217 -2169 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 919 22589 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 919 22331 920 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 919 22073 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 919 21815 920 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 919 21557 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 1955 22589 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 1955 22331 1956 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 1955 22073 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 1955 21815 1956 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 1955 21557 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 919 21137 920 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 1955 21137 1956 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 919 20549 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 919 20291 920 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 919 20033 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 919 19775 920 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 919 19517 920 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 1955 20549 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 1955 20291 1956 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 1955 20033 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 1955 19775 1956 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 1955 19517 1956 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 919 19097 920 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 1955 19097 1956 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17834 -650 17835 -649 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17738 -650 17739 -649 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17642 -650 17643 -649 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17546 -650 17547 -649 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17450 -650 17451 -649 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17354 -650 17355 -649 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17258 -650 17259 -649 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17162 -650 17163 -649 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17066 -650 17067 -649 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16970 -650 16971 -649 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17834 368 17835 369 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17738 368 17739 369 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17642 368 17643 369 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17546 368 17547 369 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17450 368 17451 369 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17354 368 17355 369 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17258 368 17259 369 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17162 368 17163 369 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17066 368 17067 369 l=30 w=800 "VN" "VM22D" 60 0 "a_216_n2258#" 800 0 "I_ref" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16970 368 16971 369 l=30 w=800 "VN" "VM22D" 60 0 "I_ref" 800 0 "a_216_n2258#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 -960 11539 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 -960 10281 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 -960 9023 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 -960 7765 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 -960 6507 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 -960 5249 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 -960 3991 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 -960 2733 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 -960 1475 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM22D" 800 0 "VM3D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 -960 217 -959 l=1200 w=800 "VN" "a_216_n2258#" 2400 0 "VM3D" 800 0 "VM22D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 250 11539 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 250 10281 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 250 9023 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 250 7765 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 250 6507 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 250 5249 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 250 3991 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 250 2733 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 250 1475 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 250 217 251 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 3179 22589 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 3179 22331 3180 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 3179 22073 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 3179 21815 3180 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 3179 21557 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 4215 22589 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 4215 22331 4216 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 4215 22073 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 4215 21815 4216 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 4215 21557 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 3179 21137 3180 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 4215 21137 4216 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 3179 20549 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 3179 20291 3180 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 3179 20033 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 3179 19775 3180 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 3179 19517 3180 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 4215 20549 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 4215 20291 4216 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 4215 20033 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 4215 19775 4216 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 4215 19517 4216 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 3179 19097 3180 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 4215 19097 4216 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 18236 2078 18237 2079 l=2000 "VN" "a_18236_2078#" 0 0 "VN" 282 0 "a_17706_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 17706 2078 17707 2079 l=2000 "VN" "a_17706_2078#" 0 0 "a_17176_1646#" 282 0 "a_17706_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 17176 2078 17177 2079 l=2000 "VN" "a_17176_2078#" 0 0 "a_17176_1646#" 282 0 "a_16646_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 16646 2078 16647 2079 l=2000 "VN" "a_16646_2078#" 0 0 "a_16116_1646#" 282 0 "a_16646_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 16116 2078 16117 2079 l=2000 "VN" "a_16116_2078#" 0 0 "a_16116_1646#" 282 0 "a_15586_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 15586 2078 15587 2079 l=2000 "VN" "a_15586_2078#" 0 0 "a_15056_1646#" 282 0 "a_15586_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 15056 2078 15057 2079 l=2000 "VN" "a_15056_2078#" 0 0 "a_15056_1646#" 282 0 "a_14526_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 14526 2078 14527 2079 l=2000 "VN" "a_14526_2078#" 0 0 "VM3G" 282 0 "a_14526_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 13916 2078 13917 2079 l=2000 "VN" "a_13916_2078#" 0 0 "VM3G" 282 0 "a_13386_4078#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 13386 2078 13387 2079 l=2000 "VN" "a_13386_2078#" 0 0 "VM12G" 282 0 "a_13386_4078#" 282 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 1470 11539 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 1470 10281 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 1470 9023 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 1470 7765 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 1470 6507 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 1470 5249 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 1470 3991 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 1470 2733 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 1470 1475 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 1470 217 1471 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 2690 11539 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 2690 10281 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 2690 9023 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 2690 7765 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 2690 6507 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 2690 5249 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 2690 3991 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 2690 2733 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 2690 1475 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 2690 217 2691 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 3910 11539 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 3910 10281 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 3910 9023 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 3910 7765 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 3910 6507 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 3910 5249 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 3910 3991 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 3910 2733 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 3910 1475 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 3910 217 3911 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 5439 22589 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 5439 22331 5440 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 5439 22073 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 5439 21815 5440 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 5439 21557 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22588 6475 22589 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22330 6475 22331 6476 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 22072 6475 22073 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21814 6475 21815 6476 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21556 6475 21557 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 5439 21137 5440 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 21136 6475 21137 6476 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 5439 20549 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 5439 20291 5440 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 5439 20033 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 5439 19775 5440 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 5439 19517 5440 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 6475 20549 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 6475 20291 6476 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 6475 20033 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 6475 19775 6476 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 6475 19517 6476 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_919#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 5439 19097 5440 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 6475 19097 6476 l=40 w=800 "VP" "VM8D" 80 0 "VM14D" 800 0 "a_19136_919#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17478 5290 17479 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17382 5290 17383 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17286 5290 17287 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17190 5290 17191 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17094 5290 17095 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16998 5290 16999 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16902 5290 16903 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16806 5290 16807 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16710 5290 16711 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16614 5290 16615 5291 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17478 6308 17479 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17382 6308 17383 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17286 6308 17287 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17190 6308 17191 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17094 6308 17095 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16998 6308 16999 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16902 6308 16903 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16806 6308 16807 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16710 6308 16711 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VM12G" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16614 6308 16615 6309 l=30 w=800 "VM12G" "VM14D" 60 0 "VP" 800 0 "VM12G" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 5130 11539 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 5130 10281 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 5130 9023 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 5130 7765 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 5130 6507 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 5130 5249 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 5130 3991 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 5130 2733 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 5130 1475 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 5130 217 5131 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 14634 6350 14635 6351 l=1200 w=800 "VN" "VM12G" 2400 0 "VM14D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 13376 6350 13377 6351 l=1200 w=800 "VN" "VM12G" 2400 0 "VN" 800 0 "VM14D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11544 6340 11545 6341 l=1200 w=800 "VN" "VM12G" 2400 0 "VM12D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10286 6340 10287 6341 l=1200 w=800 "VN" "VM12G" 2400 0 "VN" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 6340 5249 6341 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 6340 3991 6341 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 6340 2733 6341 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 6340 1475 6341 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 6340 217 6341 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 7699 20549 7700 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 7699 20291 7700 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 7699 20033 7700 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 7699 19775 7700 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 7699 19517 7700 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 8735 20549 8736 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 8735 20291 8736 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 8735 20033 8736 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 8735 19775 8736 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 8735 19517 8736 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_7699#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 7699 19097 7700 l=40 w=800 "VP" "VM8D" 80 0 "VM8D" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 8735 19097 8736 l=40 w=800 "VP" "VM8D" 80 0 "VM8D" 800 0 "a_19136_7699#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 9959 20549 9960 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 9959 20291 9960 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 9959 20033 9960 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 9959 19775 9960 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 9959 19517 9960 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20548 10995 20549 10996 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20290 10995 20291 10996 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 20032 10995 20033 10996 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19774 10995 19775 10996 l=200 w=800 "VP" "VM8D" 400 0 "VP" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19516 10995 19517 10996 l=200 w=800 "VP" "VM8D" 400 0 "a_19136_9959#" 800 0 "VP" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 9959 19097 9960 l=40 w=800 "VP" "VM8D" 80 0 "VM9D" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 19096 10995 19097 10996 l=40 w=800 "VP" "VM8D" 80 0 "VM9D" 800 0 "a_19136_9959#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17178 9386 17179 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16920 9386 16921 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16662 9386 16663 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16404 9386 16405 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16146 9386 16147 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15888 9386 15889 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15630 9386 15631 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15372 9386 15373 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15114 9386 15115 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14856 9386 14857 9387 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17178 10404 17179 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16920 10404 16921 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16662 10404 16663 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16404 10404 16405 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16146 10404 16147 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15888 10404 15889 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15630 10404 15631 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15372 10404 15373 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15114 10404 15115 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM8D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14856 10404 14857 10405 l=200 w=800 "VM11D" "VM9D" 400 0 "VM11D" 800 0 "VM8D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 8770 11539 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 8770 10281 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 8770 9023 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 8770 7765 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 8770 6507 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 8770 5249 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 8770 3991 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 8770 2733 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 8770 1475 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 8770 217 8771 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 9990 11539 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 9990 10281 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 9990 9023 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 9990 7765 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 9990 6507 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 9990 5249 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 9990 3991 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 9990 2733 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 9990 1475 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 9990 217 9991 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 11210 11539 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 11210 10281 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 11210 9023 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 11210 7765 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 11210 6507 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 11210 5249 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 11210 3991 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 11210 2733 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 11210 1475 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VM2D" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 11210 217 11211 l=1200 w=800 "VN" "VM2D" 2400 0 "VN" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17178 13510 17179 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16920 13510 16921 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16662 13510 16663 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16404 13510 16405 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16146 13510 16147 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15888 13510 15889 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15630 13510 15631 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15372 13510 15373 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15114 13510 15115 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14856 13510 14857 13511 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17178 14528 17179 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16920 14528 16921 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16662 14528 16663 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16404 14528 16405 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16146 14528 16147 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15888 14528 15889 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15630 14528 15631 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15372 14528 15373 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15114 14528 15115 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM9D" 800 0 "VM2D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14856 14528 14857 14529 l=200 w=800 "VM2D" "VM9D" 400 0 "VM2D" 800 0 "VM9D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 11538 12430 11539 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 10280 12430 10281 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 9022 12430 9023 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 7764 12430 7765 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 6506 12430 6507 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 5248 12430 5249 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3990 12430 3991 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2732 12430 2733 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1474 12430 1475 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM11D" 800 0 "VM12D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 216 12430 217 12431 l=1200 w=800 "VN" "VM2D" 2400 0 "VM12D" 800 0 "VM11D" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 12556 14090 12557 14091 l=400 w=100 "VN" "a_11158_13910#" 800 0 "VN" 100 0 "VM8D" 100 0
+device msubckt sky130_fd_pr__pfet_01v8 12576 14619 12577 14620 l=400 w=100 "VP" "VM11D" 800 0 "a_11158_13910#" 100 0 "VP" 100 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 12098 13910 12099 13911 l=40 w=800 "VN" "VM11D" 80 0 "VN" 800 0 "a_11158_13910#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 12000 13910 12001 13911 l=40 w=800 "VN" "VM11D" 80 0 "a_11158_13910#" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11902 13910 11903 13911 l=40 w=800 "VN" "VM11D" 80 0 "VN" 800 0 "a_11158_13910#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11804 13910 11805 13911 l=40 w=800 "VN" "VM11D" 80 0 "a_11158_13910#" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11706 13910 11707 13911 l=40 w=800 "VN" "VM11D" 80 0 "VN" 800 0 "a_11158_13910#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11608 13910 11609 13911 l=40 w=800 "VN" "VM11D" 80 0 "a_11158_13910#" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11510 13910 11511 13911 l=40 w=800 "VN" "VM11D" 80 0 "VN" 800 0 "a_11158_13910#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11412 13910 11413 13911 l=40 w=800 "VN" "VM11D" 80 0 "a_11158_13910#" 800 0 "VN" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11314 13910 11315 13911 l=40 w=800 "VN" "VM11D" 80 0 "VN" 800 0 "a_11158_13910#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11216 13910 11217 13911 l=40 w=800 "VN" "VM11D" 80 0 "a_11158_13910#" 800 0 "VN" 800 0
diff --git a/mag/isource/isource_flat.nodes b/mag/isource/isource_flat.nodes
new file mode 100644
index 0000000..cb09d98
--- /dev/null
+++ b/mag/isource/isource_flat.nodes
@@ -0,0 +1,49 @@
+I_ref 14600 -4599 m3
+VP 16940 -4639 m5
+VN 15800 -4599 m5
+m4_11900_n1374# 11900 -1373 m4
+m3_4100_n1730# 4100 -1729 m3
+m3_9000_4420# 9000 4420 m3
+a_20766_n4232# 20766 -4231 xres
+a_20236_n4232# 20236 -4231 xres
+a_20236_n2232# 20236 -2231 xpc
+a_19706_n4664# 19706 -4663 xpc
+a_19706_n4232# 19706 -4231 xres
+a_19176_n4232# 19176 -4231 xres
+a_19176_n2232# 19176 -2231 xpc
+a_18646_n4664# 18646 -4663 xpc
+a_18646_n4232# 18646 -4231 xres
+a_19136_n1351# 19136 -1350 pdif
+VM22D 158 -2169 ndif
+VM3D 158 -959 ndif
+a_216_n2258# 216 -2257 p
+a_18236_2078# 18236 2078 xres
+a_17706_2078# 17706 2078 xres
+a_17706_4078# 17706 4078 xpc
+a_17176_1646# 17176 1646 xpc
+a_17176_2078# 17176 2078 xres
+a_16646_2078# 16646 2078 xres
+a_16646_4078# 16646 4078 xpc
+a_16116_1646# 16116 1646 xpc
+a_16116_2078# 16116 2078 xres
+a_15586_2078# 15586 2078 xres
+a_15586_4078# 15586 4078 xpc
+a_15056_1646# 15056 1646 xpc
+a_15056_2078# 15056 2078 xres
+a_14526_2078# 14526 2078 xres
+a_14526_4078# 14526 4078 xpc
+VM3G 13256 -2247 p
+a_13916_2078# 13916 2078 xres
+a_13386_2078# 13386 2078 xres
+a_13386_4078# 13386 4078 xpc
+a_19136_919# 19136 919 pdif
+VM14D 14576 6350 ndif
+a_19136_7699# 19136 7699 pdif
+a_19136_9959# 19136 9959 pdif
+VM9D 14856 9298 p
+VM12D 158 250 ndif
+VM8D 12956 14090 ndif
+a_11158_13910# 11158 13910 ndif
+VM12G 16400 5066 pw
+VM11D 14566 9082 pw
+VM2D 14566 13206 pw
diff --git a/mag/isource/isource_flat.sim b/mag/isource/isource_flat.sim
new file mode 100644
index 0000000..982009a
--- /dev/null
+++ b/mag/isource/isource_flat.sim
@@ -0,0 +1,457 @@
+| units: 500000 tech: sky130A format: MIT
+x VM2D VN VM2D VN l=1200 w=800 x=10280 y=11210 sky130_fd_pr__nfet_01v8
+x a_17176_2078# a_17176_1646# a_16646_4078# VN l=2000 w=0 x=17176 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=3179 sky130_fd_pr__pfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=216 y=11210 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_n1351# VP l=200 w=800 x=20290 y=-314 sky130_fd_pr__pfet_01v8
+x a_15056_2078# a_15056_1646# a_14526_4078# VN l=2000 w=0 x=15056 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM9D VM9D VM2D VM2D l=200 w=800 x=15630 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=6475 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=3179 sky130_fd_pr__pfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=16146 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=9990 sky130_fd_pr__nfet_01v8
+x VM14D VP VM12G VM12G l=30 w=800 x=16998 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=20548 y=-1350 sky130_fd_pr__pfet_01v8
+x VM11D VN a_11158_13910# VN l=40 w=800 x=11314 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM9D VM2D VM2D l=200 w=800 x=17178 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x a_19176_n4232# a_18646_n4664# a_19176_n2232# VN l=2000 w=0 x=19176 y=-4231 sky130_fd_pr__res_xhigh_po_1p41
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17450 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=1200 w=800 x=3990 y=11210 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=10280 y=-2169 sky130_fd_pr__nfet_01v8
+x VM11D VN a_11158_13910# VN l=40 w=800 x=11510 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=200 w=800 x=14856 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=216 y=-2169 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=250 sky130_fd_pr__nfet_01v8
+x VM9D VM11D VM8D VM11D l=200 w=800 x=16920 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=30 w=800 x=17190 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=3179 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=3910 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_7699# VP l=200 w=800 x=20290 y=8735 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=3179 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=9990 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=9990 sky130_fd_pr__nfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=16662 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=200 w=800 x=16146 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM8D a_19136_7699# VP l=40 w=800 x=19096 y=7699 sky130_fd_pr__pfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=16710 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=3910 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=4215 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=1955 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=2732 y=11210 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=10280 y=-959 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=3910 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=3990 y=-2169 sky130_fd_pr__nfet_01v8
+x VM8D VM22D a_19136_n1351# VP l=40 w=800 x=19096 y=-314 sky130_fd_pr__pfet_01v8
+x a_20766_n4232# VN a_20236_n2232# VN l=2000 w=0 x=20766 y=-4231 sky130_fd_pr__res_xhigh_po_1p41
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=216 y=-959 sky130_fd_pr__nfet_01v8
+x VM11D VN a_11158_13910# VN l=40 w=800 x=12098 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=30 w=800 x=17094 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=4215 sky130_fd_pr__pfet_01v8
+x VM14D VP VM12G VM12G l=30 w=800 x=16998 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=919 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=9022 y=-959 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=250 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_9959# VP l=200 w=800 x=20290 y=9959 sky130_fd_pr__pfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=14856 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=30 w=800 x=16614 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=6475 sky130_fd_pr__pfet_01v8
+x a_13916_2078# VM3G a_13386_4078# VN l=2000 w=0 x=13916 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17066 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=6475 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=2732 y=-2169 sky130_fd_pr__nfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=12430 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=9990 sky130_fd_pr__nfet_01v8
+x a_19706_n4232# a_19706_n4664# a_19176_n2232# VN l=2000 w=0 x=19706 y=-4231 sky130_fd_pr__res_xhigh_po_1p41
+x VM9D VM2D VM9D VM2D l=200 w=800 x=15888 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=9990 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=4215 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=2690 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=6475 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=4215 sky130_fd_pr__pfet_01v8
+x VM3G VN VM3D VN l=1200 w=800 x=13256 y=-2159 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=12430 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=9990 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=9990 sky130_fd_pr__nfet_01v8
+x VM8D VM8D a_19136_7699# VP l=40 w=800 x=19096 y=8735 sky130_fd_pr__pfet_01v8
+x VM14D VP VM12G VM12G l=30 w=800 x=17382 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=6475 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=3179 sky130_fd_pr__pfet_01v8
+x VM12G VM12D VN VN l=1200 w=800 x=11544 y=6340 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=919 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=1955 sky130_fd_pr__pfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=16902 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=6475 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=2690 sky130_fd_pr__nfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17354 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=200 w=800 x=14856 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=2690 sky130_fd_pr__nfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=16662 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_7699# VP VP l=200 w=800 x=19516 y=7699 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_9959# VP l=200 w=800 x=19774 y=10995 sky130_fd_pr__pfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=17094 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=919 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=5439 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=8770 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=16404 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=30 w=800 x=16614 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=5439 sky130_fd_pr__pfet_01v8
+x VN VP l=6000 w=6000 x=3900 y=-1299 sky130_fd_pr__cap_mim_m3_2
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=19516 y=-314 sky130_fd_pr__pfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=16970 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM11D VN a_11158_13910# VN l=40 w=800 x=11706 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_9959# VP VP l=200 w=800 x=19516 y=10995 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=250 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=15372 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM9D a_19136_9959# VP l=40 w=800 x=19096 y=9959 sky130_fd_pr__pfet_01v8
+x a_20236_n4232# a_19706_n4664# a_20236_n2232# VN l=2000 w=0 x=20236 y=-4231 sky130_fd_pr__res_xhigh_po_1p41
+x VM11D VN a_11158_13910# VN l=40 w=800 x=11902 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x a_18646_n4232# a_18646_n4664# a_216_n2258# VN l=2000 w=0 x=18646 y=-4231 sky130_fd_pr__res_xhigh_po_1p41
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=919 sky130_fd_pr__pfet_01v8
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17642 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=8770 sky130_fd_pr__nfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=16662 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=8770 sky130_fd_pr__nfet_01v8
+x VM12G VN VM12D VN l=1200 w=800 x=10286 y=6340 sky130_fd_pr__nfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=15114 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=30 w=800 x=17382 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=200 w=800 x=15114 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM8D VM11D VM11D l=200 w=800 x=17178 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=2690 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=2690 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=4215 sky130_fd_pr__pfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=16146 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=30 w=800 x=16902 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=3179 sky130_fd_pr__pfet_01v8
+x VM9D VM11D VM8D VM11D l=200 w=800 x=16404 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_9959# VP VP l=200 w=800 x=20548 y=10995 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=2690 sky130_fd_pr__nfet_01v8
+x VP VM8D l=4000 w=4000 x=17440 y=8040 sky130_fd_pr__cap_mim_m3_1
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=12430 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=9990 sky130_fd_pr__nfet_01v8
+x VM9D VM11D VM8D VM11D l=200 w=800 x=15372 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=2690 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_7699# VP VP l=200 w=800 x=19516 y=8735 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=6475 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=9990 sky130_fd_pr__nfet_01v8
+x VM3G VN VM3D VN l=1200 w=800 x=15772 y=-2159 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=1955 sky130_fd_pr__pfet_01v8
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17450 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17162 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=250 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=1955 sky130_fd_pr__pfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=15114 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17642 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17354 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17066 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=9990 sky130_fd_pr__nfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=17286 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VN VM2D VN l=1200 w=800 x=5248 y=11210 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=8770 sky130_fd_pr__nfet_01v8
+x VM8D VM22D a_19136_n1351# VP l=40 w=800 x=19096 y=-1350 sky130_fd_pr__pfet_01v8
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17834 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17546 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17258 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=12430 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=8770 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=1955 sky130_fd_pr__pfet_01v8
+x VM14D VP VM12G VM12G l=30 w=800 x=16806 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=1200 w=800 x=11538 y=1470 sky130_fd_pr__nfet_01v8
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17258 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17738 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=1200 w=800 x=11538 y=5130 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_n1351# VP l=200 w=800 x=20290 y=-1350 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=11538 y=11210 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=8770 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=8770 sky130_fd_pr__nfet_01v8
+x VM3G VM3D VN VN l=1200 w=800 x=14514 y=-2159 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=1955 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=200 w=800 x=19516 y=9959 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=200 w=800 x=19774 y=7699 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=919 sky130_fd_pr__pfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=1955 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=250 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=6506 y=1470 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=20032 y=-1350 sky130_fd_pr__pfet_01v8
+x VM11D a_11158_13910# VN VN l=40 w=800 x=11216 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VN VM2D VN l=1200 w=800 x=2732 y=1470 sky130_fd_pr__nfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=4215 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=250 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=2732 y=5130 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=6506 y=5130 sky130_fd_pr__nfet_01v8
+x a_13386_2078# VM12G a_13386_4078# VN l=2000 w=0 x=13386 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=5248 y=-2169 sky130_fd_pr__nfet_01v8
+x VM11D a_11158_13910# VN VN l=40 w=800 x=11412 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_n1351# VP l=200 w=800 x=19774 y=-314 sky130_fd_pr__pfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=14856 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=200 w=800 x=15888 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=12430 sky130_fd_pr__nfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17546 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=12430 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=16920 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=6475 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=3179 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=11538 y=-2169 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=6340 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=2690 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=3179 sky130_fd_pr__pfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=15630 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=30 w=800 x=17286 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM3G VM3D VN VN l=1200 w=800 x=17030 y=-2159 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=2690 sky130_fd_pr__nfet_01v8
+x a_17706_2078# a_17176_1646# a_17706_4078# VN l=2000 w=0 x=17706 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM9D VM11D VM8D VM11D l=200 w=800 x=15372 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VP VM12G VM12G l=30 w=800 x=16806 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=3179 sky130_fd_pr__pfet_01v8
+x VM11D a_11158_13910# VP VP l=400 w=100 x=12576 y=14619 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=6475 sky130_fd_pr__pfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=15630 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=19096 y=5439 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=2690 sky130_fd_pr__nfet_01v8
+x a_11158_13910# VN VM8D VN l=400 w=100 x=12556 y=14090 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=3179 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=200 w=800 x=19774 y=8735 sky130_fd_pr__pfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=1474 y=1470 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=5248 y=1470 sky130_fd_pr__nfet_01v8
+x VM22D a_216_n2258# I_ref VN l=30 w=800 x=17834 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=250 sky130_fd_pr__nfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=16662 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM9D VM11D VM8D VM11D l=200 w=800 x=16920 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VN VM2D VN l=1200 w=800 x=5248 y=5130 sky130_fd_pr__nfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=3179 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=919 sky130_fd_pr__pfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=1474 y=5130 sky130_fd_pr__nfet_01v8
+x VM9D VM9D VM2D VM2D l=200 w=800 x=17178 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_7699# VP VP l=200 w=800 x=20548 y=7699 sky130_fd_pr__pfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=7764 y=1470 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=1955 sky130_fd_pr__pfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=16970 y=368 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VN VM2D VN l=1200 w=800 x=7764 y=11210 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=8770 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=6475 sky130_fd_pr__pfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=3990 y=1470 sky130_fd_pr__nfet_01v8
+x VN VP l=6000 w=6000 x=3900 y=5700 sky130_fd_pr__cap_mim_m3_2
+x VM2D VM2D VN VN l=1200 w=800 x=3990 y=5130 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=7764 y=5130 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=16404 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=6340 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=6475 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=12430 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=15372 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=8770 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=6340 sky130_fd_pr__nfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=15630 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=11538 y=3910 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=20548 y=-314 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=250 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=12430 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_7699# VP VP l=200 w=800 x=20032 y=7699 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=4215 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=9022 y=8770 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=6340 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=4215 sky130_fd_pr__pfet_01v8
+x VM11D a_11158_13910# VN VN l=40 w=800 x=12000 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM12G VM14D VN VN l=1200 w=800 x=14634 y=6350 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=6506 y=11210 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_9959# VP l=200 w=800 x=19774 y=9959 sky130_fd_pr__pfet_01v8
+x a_16646_2078# a_16116_1646# a_16646_4078# VN l=2000 w=0 x=16646 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM9D VM9D VM2D VM2D l=200 w=800 x=15114 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=11538 y=-959 sky130_fd_pr__nfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=17178 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x VM14D VM12G VP VM12G l=30 w=800 x=17478 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=4215 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=20032 y=-314 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=7764 y=-2169 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=3910 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=6506 y=3910 sky130_fd_pr__nfet_01v8
+x a_14526_2078# VM3G a_14526_4078# VN l=2000 w=0 x=14526 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=4215 sky130_fd_pr__pfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=12430 sky130_fd_pr__nfet_01v8
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=4215 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=200 w=800 x=20548 y=8735 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=6506 y=-959 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=2732 y=-959 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=19516 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=3179 sky130_fd_pr__pfet_01v8
+x VM11D a_11158_13910# VN VN l=40 w=800 x=11608 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=5439 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=6506 y=-2169 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=20548 y=1955 sky130_fd_pr__pfet_01v8
+x VM11D a_11158_13910# VN VN l=40 w=800 x=11804 y=13910 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=1200 w=800 x=9022 y=11210 sky130_fd_pr__nfet_01v8
+x VM8D VM9D a_19136_9959# VP l=40 w=800 x=19096 y=10995 sky130_fd_pr__pfet_01v8
+x a_18236_2078# VN a_17706_4078# VN l=2000 w=0 x=18236 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM8D a_19136_919# VP VP l=200 w=800 x=22588 y=919 sky130_fd_pr__pfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=15888 y=13510 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM2D VN VN l=1200 w=800 x=1474 y=11210 sky130_fd_pr__nfet_01v8
+x VM12G VN VM14D VN l=1200 w=800 x=13376 y=6350 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=2732 y=12430 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=22330 y=5439 sky130_fd_pr__pfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=10280 y=1470 sky130_fd_pr__nfet_01v8
+x VM9D VM11D VM8D VM11D l=200 w=800 x=16404 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_9959# VP l=200 w=800 x=20290 y=10995 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_7699# VP VP l=200 w=800 x=20032 y=8735 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=20290 y=6475 sky130_fd_pr__pfet_01v8
+x a_16116_2078# a_16116_1646# a_15586_4078# VN l=2000 w=0 x=16116 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM2D VN VM2D VN l=1200 w=800 x=10280 y=5130 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=22072 y=5439 sky130_fd_pr__pfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17738 y=-649 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM11D VM12D VN l=1200 w=800 x=1474 y=3910 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=5248 y=3910 sky130_fd_pr__nfet_01v8
+x VM2D VN VM2D VN l=1200 w=800 x=216 y=1470 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=20032 y=1955 sky130_fd_pr__pfet_01v8
+x VM9D VM8D VM11D VM11D l=200 w=800 x=16146 y=9386 sky130_fd_pr__nfet_01v8_lvt
+x a_15586_2078# a_15056_1646# a_15586_4078# VN l=2000 w=0 x=15586 y=2078 sky130_fd_pr__res_xhigh_po_1p41
+x VM2D VN VM2D VN l=1200 w=800 x=216 y=5130 sky130_fd_pr__nfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=17478 y=6308 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VM14D a_19136_919# VP l=40 w=800 x=21136 y=5439 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=200 w=800 x=20032 y=10995 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_9959# VP VP l=200 w=800 x=20548 y=9959 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=7764 y=3910 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=9022 y=1470 sky130_fd_pr__nfet_01v8
+x VM2D VM11D VM12D VN l=1200 w=800 x=3990 y=3910 sky130_fd_pr__nfet_01v8
+x VM2D VM2D VN VN l=1200 w=800 x=9022 y=5130 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_n1351# VP l=200 w=800 x=19774 y=-1350 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=5248 y=-959 sky130_fd_pr__nfet_01v8
+x VM9D VM11D VM8D VM11D l=200 w=800 x=15888 y=10404 sky130_fd_pr__nfet_01v8_lvt
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=9022 y=-2169 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=1474 y=-2169 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=1474 y=-959 sky130_fd_pr__nfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=6340 sky130_fd_pr__nfet_01v8
+x VM8D VP a_19136_919# VP l=200 w=800 x=21814 y=1955 sky130_fd_pr__pfet_01v8
+x VM14D VP VM12G VM12G l=30 w=800 x=17190 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM2D VM12D VM11D VN l=1200 w=800 x=216 y=250 sky130_fd_pr__nfet_01v8
+x VM8D a_19136_9959# VP VP l=200 w=800 x=20032 y=9959 sky130_fd_pr__pfet_01v8
+x VM8D VP a_19136_7699# VP l=200 w=800 x=20290 y=7699 sky130_fd_pr__pfet_01v8
+x VM8D a_19136_919# VP VP l=200 w=800 x=21556 y=1955 sky130_fd_pr__pfet_01v8
+x a_216_n2258# VM3D VM22D VN l=1200 w=800 x=7764 y=-959 sky130_fd_pr__nfet_01v8
+x a_216_n2258# VM22D VM3D VN l=1200 w=800 x=3990 y=-959 sky130_fd_pr__nfet_01v8
+x VM9D VM2D VM9D VM2D l=200 w=800 x=16920 y=14528 sky130_fd_pr__nfet_01v8_lvt
+x VM8D VP a_19136_919# VP l=200 w=800 x=19774 y=4215 sky130_fd_pr__pfet_01v8
+x VM2D VM12D VM11D VN l=1200 w=800 x=10280 y=250 sky130_fd_pr__nfet_01v8
+x VM14D VM12G VP VM12G l=30 w=800 x=16710 y=5290 sky130_fd_pr__nfet_01v8_lvt
+x VM8D a_19136_n1351# VP VP l=200 w=800 x=19516 y=-1350 sky130_fd_pr__pfet_01v8
+x VM22D I_ref a_216_n2258# VN l=30 w=800 x=17162 y=-649 sky130_fd_pr__nfet_01v8_lvt
+C VM9D VP 5.76
+C VM2D VM12G 2.06
+C VM11D VM9D 33.79
+C VM2D VP 85.83
+C VM2D VM11D 79.62
+C VM14D VM8D 20.15
+C I_ref a_216_n2258# 39.90
+C m3_4100_n1730# VP 11.93
+C m3_9000_4420# VP 3.46
+C VM2D VM9D 54.48
+C VP VM3D 7.63
+C VM14D VM12G 21.36
+C VP a_216_n2258# 12.38
+C VM11D a_11158_13910# 2.86
+C VM3G VM3D 3.43
+C VM8D a_19136_9959# 12.07
+C VM14D VP 42.20
+C VM14D a_19136_919# 21.92
+C I_ref VM22D 9.06
+C m3_9000_4420# VM2D 4.40
+C VP a_19136_9959# 17.09
+C VM22D VP 8.23
+C VM2D a_216_n2258# 4.99
+C VM8D a_19136_7699# 14.76
+C VP VM12D 19.12
+C m3_4100_n1730# VM3D 11.24
+C VM9D a_19136_9959# 2.97
+C VM8D VP 215.27
+C a_19136_n1351# VM22D 2.97
+C VM11D VM12D 39.78
+C m3_4100_n1730# a_216_n2258# 11.64
+C a_216_n2258# VM3D 17.74
+C VM8D VM11D 26.24
+C VP a_19136_7699# 16.78
+C VM8D a_19136_919# 42.95
+C VM8D a_19136_n1351# 5.74
+C VP VM12G 69.94
+C VM8D VM9D 24.08
+C VM2D VM12D 84.18
+C VM3G VP 5.21
+C VM11D VP 44.47
+C VM8D VM2D 3.93
+C VM22D VM3D 11.29
+C a_19136_919# VP 107.39
+C VM22D a_216_n2258# 29.87
+C a_19136_n1351# VP 14.48
+C I_ref GND 11.03
+R I_ref 24540
+C VP GND 321.11
+R VP 696656
+C m3_4100_n1730# GND 3.90
+R a_20766_n4232# 14184
+R a_20236_n4232# 14184
+C a_20236_n2232# GND 3.14
+R a_20236_n2232# 188
+C a_19706_n4664# GND 3.13
+R a_19706_n4664# 188
+R a_19706_n4232# 14184
+R a_19176_n4232# 14184
+C a_19176_n2232# GND 2.92
+R a_19176_n2232# 188
+C a_18646_n4664# GND 3.14
+R a_18646_n4664# 188
+R a_18646_n4232# 14184
+R a_19136_n1351# 27245
+C VM22D GND 20.22
+R VM22D 62890
+C VM3D GND 5.78
+R VM3D 28824
+C a_216_n2258# GND 88.72
+R a_216_n2258# 41580
+R a_18236_2078# 14184
+R a_17706_2078# 14184
+C a_17706_4078# GND 3.19
+R a_17706_4078# 188
+C a_17176_1646# GND 3.36
+R a_17176_1646# 188
+R a_17176_2078# 14184
+R a_16646_2078# 14184
+C a_16646_4078# GND 2.97
+R a_16646_4078# 188
+C a_16116_1646# GND 2.97
+R a_16116_1646# 188
+R a_16116_2078# 14184
+R a_15586_2078# 14184
+C a_15586_4078# GND 2.97
+R a_15586_4078# 188
+C a_15056_1646# GND 2.97
+R a_15056_1646# 188
+R a_15056_2078# 14184
+R a_14526_2078# 14184
+C a_14526_4078# GND 3.23
+R a_14526_4078# 188
+C VM3G GND 25.10
+R VM3G 3216
+R a_13916_2078# 14184
+R a_13386_2078# 14184
+C a_13386_4078# GND 3.40
+R a_13386_4078# 188
+R a_19136_919# 165587
+R VM14D 75101
+R a_19136_7699# 27245
+R a_19136_9959# 27245
+R VM9D 50420
+C VM12D GND 33.99
+R VM12D 89245
+R VM8D 91212
+C a_11158_13910# GND 20.96
+R a_11158_13910# 13987
+C VM12G GND 19.31
+R VM12G 71415
+C VM11D GND 33.83
+R VM11D 177948
+C VM2D GND 427.28
+R VM2D 235936
diff --git a/mag/isource/isource_flat.spice b/mag/isource/isource_flat.spice
new file mode 100644
index 0000000..5645c6e
--- /dev/null
+++ b/mag/isource/isource_flat.spice
@@ -0,0 +1,345 @@
+* SPICE3 file created from isource_flat.ext - technology: sky130A
+
+.subckt isource_flat I_ref VP VN
+X0 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=3.4945e+13p ps=2.5898e+08u w=4e+06u l=6e+06u
+X1 a_17176_1646# a_16646_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X2 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=6.2785e+13p pd=4.649e+08u as=0p ps=0u w=4e+06u l=1e+06u
+X3 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X4 a_19136_n1351# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X5 a_15056_1646# a_14526_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X6 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X7 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X8 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X10 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X11 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X12 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.75622e+14p ps=1.58256e+09u w=4e+06u l=150000u
+X13 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X14 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X15 a_11158_13910# VM11D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X16 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X17 a_18646_n4664# a_19176_n2232# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X18 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=1.552e+13p pd=1.0376e+08u as=0p ps=0u w=4e+06u l=150000u
+X19 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X20 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X21 a_11158_13910# VM11D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X22 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X23 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X24 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X25 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X26 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X27 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X28 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X29 a_19136_7699# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X30 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X31 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X32 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X33 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X34 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X35 a_19136_7699# VM8D VM8D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X36 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X37 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X38 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X39 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X40 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X41 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X42 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X43 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X44 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X45 a_19136_n1351# VM8D VM22D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X46 VN a_20236_n2232# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X47 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X48 a_11158_13910# VM11D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X49 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X50 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X51 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X52 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X53 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X54 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X55 a_19136_9959# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X56 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X57 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X58 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X59 VM3G a_13386_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X60 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X61 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X62 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X63 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X64 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X65 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X66 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X67 a_19706_n4664# a_19176_n2232# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X68 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X69 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X70 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X71 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X72 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X73 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X74 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X75 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X76 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X77 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X78 a_19136_7699# VM8D VM8D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X79 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X80 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X81 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X82 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X83 VN VM12G VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X84 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X85 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X86 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X87 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X88 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X89 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X90 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X91 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X92 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X93 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X94 a_19136_9959# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X95 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X96 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X97 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X98 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X99 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X100 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X101 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X102 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X103 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X104 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X105 a_11158_13910# VM11D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X106 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X107 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X108 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X109 a_19136_9959# VM8D VM9D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X110 a_19706_n4664# a_20236_n2232# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X111 a_11158_13910# VM11D VN VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X112 a_18646_n4664# a_216_n2258# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X113 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X114 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X115 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X116 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X117 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X118 VM12D VM12G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X119 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X120 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X121 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X122 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X123 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X124 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X125 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X126 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X127 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X128 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X129 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X130 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X131 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X132 VP VM8D sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X133 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X134 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X135 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X136 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X137 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X138 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X139 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X140 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X141 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X142 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X143 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X144 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X145 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X146 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X147 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X148 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X149 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X150 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X151 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X152 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X153 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X154 a_19136_n1351# VM8D VM22D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X155 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X156 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X157 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X158 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X159 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X160 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X161 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X162 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X163 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X164 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X165 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X166 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X167 a_19136_n1351# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X168 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X169 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X170 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X171 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X172 VN VM3G VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X173 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X174 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X175 a_19136_7699# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X176 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X177 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X178 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X179 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X180 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X181 VN VM11D a_11158_13910# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X182 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X183 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X184 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X185 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X186 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X187 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X188 VM12G a_13386_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X189 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X190 VN VM11D a_11158_13910# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X191 a_19136_n1351# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X192 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X193 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X194 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X195 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X196 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X197 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X198 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X199 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X200 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X201 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X202 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X203 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X204 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X205 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X206 VN VM3G VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X207 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X208 a_17176_1646# a_17706_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X209 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X210 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X211 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X212 VP VM11D a_11158_13910# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X213 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X214 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X215 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X216 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X217 VM8D a_11158_13910# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X218 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X219 a_19136_7699# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X220 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X221 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X222 I_ref VM22D a_216_n2258# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X223 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X224 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X225 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X226 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X227 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X228 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X229 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X230 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X231 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X232 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X233 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X234 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X235 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X236 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X237 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X238 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X239 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X240 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X241 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X242 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X243 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X244 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X245 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X246 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X247 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X248 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X249 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X250 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X251 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X252 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X253 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X254 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X255 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X256 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X257 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X258 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X259 VN VM11D a_11158_13910# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X260 VN VM12G VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X261 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X262 a_19136_9959# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X263 a_16116_1646# a_16646_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X264 VM2D VM9D VM9D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X265 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X266 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X267 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X268 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X269 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X270 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X271 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X272 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X273 VM3G a_14526_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X274 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X275 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X276 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X277 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X278 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X279 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X280 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X281 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X282 VN VM11D a_11158_13910# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X283 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X284 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X285 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X286 VN VM11D a_11158_13910# VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X287 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X288 a_19136_9959# VM8D VM9D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X289 VN a_17706_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X290 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X291 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X292 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X293 VM14D VM12G VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X294 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X295 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X296 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X297 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X298 a_19136_9959# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X299 VP VM8D a_19136_7699# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X300 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X301 a_16116_1646# a_15586_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X302 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X303 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X304 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X305 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X306 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X307 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X308 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X309 VM11D VM9D VM8D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X310 a_15056_1646# a_15586_4078# VN sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X311 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X312 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X313 a_19136_919# VM8D VM14D VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X314 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X315 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X316 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X317 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X318 VM12D VM2D VM11D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X319 VN VM2D VM2D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X320 a_19136_n1351# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X321 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X322 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X323 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X324 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X325 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X326 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X327 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X328 VM12G VM14D VP VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X329 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X330 VP VM8D a_19136_9959# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X331 a_19136_7699# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X332 VP VM8D a_19136_919# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X333 VM22D a_216_n2258# VM3D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X334 VM3D a_216_n2258# VM22D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X335 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X336 a_19136_919# VM8D VP VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X337 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X338 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X339 VP VM8D a_19136_n1351# VP sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X340 a_216_n2258# VM22D I_ref VN sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+.ends
diff --git a/mag/isource/isource_out.ext b/mag/isource/isource_out.ext
new file mode 100644
index 0000000..90b9769
--- /dev/null
+++ b/mag/isource/isource_out.ext
@@ -0,0 +1,334 @@
+timestamp 1654695234
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__res_xhigh_po_1p41_JAGHGM sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0 1 0 24147 0 1 10578
+use sky130_fd_pr__nfet_01v8_834VMG sky130_fd_pr__nfet_01v8_834VMG_0 1 0 20043 0 1 12050
+use isource_ref_transistor isource_ref_transistor_1 1 0 4813 0 1 11547
+use isource_ref_transistor isource_ref_transistor_0 1 0 4813 0 1 12757
+use isource_conv_tsmal isource_conv_tsmal_0 1 0 16700 0 1 6440
+use isource_cmirror#0 isource_cmirror_0 1 0 23200 0 1 12240
+node "m1_24000_9140#" 0 637.983 24000 9140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "m1_22920_9140#" 0 704.92 22920 9140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "m1_24520_11560#" 0 703.134 24520 11560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "m1_23460_11560#" 0 643.126 23460 11560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386400 2600 0 0 0 0 0 0 0 0 0 0
+node "m1_21256_11578#" 0 43.6004 21256 11578 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_19998_11578#" 0 36.0279 19998 11578 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_18740_11578#" 0 42.3318 18740 11578 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_18730_12160#" 3 1463.38 18730 12160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48000 1360 1407200 11240 0 0 0 0 0 0 0 0
+node "m1_21256_12488#" 0 36.5878 21256 12488 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_19998_12488#" 0 43.0383 19998 12488 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_18740_12488#" 0 35.3197 18740 12488 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_17600_11580#" 1 441.796 17600 11580 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188000 2280 0 0 0 0 0 0 0 0 0 0
+node "m1_20970_12680#" 7 2764.57 20970 12680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 432400 5160 1786000 18000 630000 4620 0 0 0 0 0 0
+node "m1_16760_11560#" 7 4653.12 16760 11560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1330000 12520 879600 9480 578200 4970 0 0 0 0 0 0
+node "li_23190_12600#" 102 161 23190 12600 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_4360_12590#" 1338 17718.2 4360 12590 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4210700 42260 237888 4288 3295000 21920 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_23190_12600#" "li_4360_12590#" 24.8511
+cap "m1_19998_11578#" "m1_21256_11578#" 1.07414
+cap "m1_18740_12488#" "m1_19998_12488#" 1.07414
+cap "m1_18740_11578#" "m1_19998_11578#" 1.07414
+cap "m1_18740_12488#" "m1_18730_12160#" 37.7386
+cap "m1_16760_11560#" "m1_21256_11578#" 0.801085
+cap "m1_19998_11578#" "li_4360_12590#" 37.7386
+cap "m1_17600_11580#" "m1_18730_12160#" 299.786
+cap "m1_16760_11560#" "li_4360_12590#" 1378.1
+cap "m1_18740_12488#" "m1_17600_11580#" 1.25617
+cap "m1_20970_12680#" "li_4360_12590#" 2774.55
+cap "m1_22920_9140#" "m1_24000_9140#" 70.725
+cap "m1_18730_12160#" "m1_21256_11578#" 6.06022
+cap "m1_18740_11578#" "m1_18730_12160#" 6.06022
+cap "m1_19998_12488#" "li_4360_12590#" 6.06022
+cap "li_4360_12590#" "m1_18730_12160#" 973.58
+cap "m1_20970_12680#" "li_23190_12600#" 82.5321
+cap "m1_18740_11578#" "m1_17600_11580#" 1.25617
+cap "m1_17600_11580#" "li_4360_12590#" 637.775
+cap "li_4360_12590#" "m1_24000_9140#" 73.8
+cap "m1_16760_11560#" "m1_21256_12488#" 0.851153
+cap "m1_24520_11560#" "m1_23460_11560#" 77.1545
+cap "m1_20970_12680#" "m1_16760_11560#" 3790.08
+cap "m1_16760_11560#" "m1_23460_11560#" 47.7529
+cap "m1_16760_11560#" "m1_18730_12160#" 1202
+cap "m1_19998_12488#" "m1_21256_12488#" 1.07414
+cap "m1_21256_12488#" "m1_18730_12160#" 37.7386
+cap "m1_20970_12680#" "m1_18730_12160#" 1765.28
+cap "m1_16760_11560#" "m1_17600_11580#" 52.5249
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" 77.3087
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#" -13.4355
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" 19.3227
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" -41.1676
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" -13.4355
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" -0.557344
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.8938
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 0.577093
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -0.0994348
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.2253
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 21.1446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 21.1446
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 21.1446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 21.1446
+cap "isource_ref_transistor_1/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 5.56681
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/m1_n370_110#" -13.5395
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_1/m1_n370_110#" -4.63026
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" -1.87213
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -4.58117
+cap "isource_ref_transistor_1/m1_890_680#" "isource_ref_transistor_1/m1_n370_110#" -6.49898
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -0.576868
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 254.758
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" 244.68
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -1.75162
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 0.723529
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 2.37408
+cap "m1_16760_11560#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" -1.03222
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -1.9567
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" 37.1668
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -13.945
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 2.49324
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 45.9623
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" 79.5892
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 482.426
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 0.168693
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 608.194
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" 5.68434e-14
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 0.0555116
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "isource_conv_tsmal_0/m1_4410_6620#" 2.60593
+cap "isource_conv_tsmal_0/m1_4410_6620#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" 14.994
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 737.823
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 2.00778
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" 0.343931
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" 0.157021
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" 43.469
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" -26.0336
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" 80.8644
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" 0.31606
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" -18.4661
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -40.7617
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" 1.58117
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" -1218.74
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 7.7521
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 4.36885
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" -1.21782
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" -13.2719
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" 0.105882
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" 3.04199
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" 9.03514
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" -19.8543
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" -0.375393
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 115.224
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -142.727
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -0.13064
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -10.5024
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -0.458042
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 5.38218
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -145.98
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 174.282
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 127.499
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -149.162
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -10.5046
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -9.51871
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 202.638
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -156.746
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 127.476
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -163.289
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -136.609
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -8.78862
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 202.988
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -10.5045
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -163.28
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 127.341
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 202.988
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -163.251
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -8.00775
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 202.988
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -163.289
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -124.471
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 127.476
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 202.988
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 127.341
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -10.5045
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -163.28
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -163.249
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -123.933
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" -7.9731
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -163.289
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 127.476
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 202.988
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/m1_890_680#" 44.2446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -1.13687e-13
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 3.15173
+cap "isource_ref_transistor_1/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -569.906
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/m1_890_680#" -325.943
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/m1_890_680#" -22.0352
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" -14.1902
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -145.513
+cap "isource_ref_transistor_1/m1_n370_110#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -70.7361
+cap "isource_ref_transistor_1/m1_890_680#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -169.29
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -80.9474
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_0/m1_890_680#" -5.50071
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 148.267
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" -2615.93
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" -603.844
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" -24.9815
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" -83.5445
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 614.451
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/m1_890_680#" -1210.1
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -99.2251
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" 123.965
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" 515.872
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" 617.021
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/m1_4410_6620#" -938.7
+cap "isource_conv_tsmal_0/m1_4590_7330#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -1802.22
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "isource_conv_tsmal_0/m1_4590_7330#" 0.171235
+cap "isource_conv_tsmal_0/m1_4410_6620#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" -493.239
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "isource_conv_tsmal_0/m1_4410_6620#" 0.000908543
+cap "isource_conv_tsmal_0/m1_4410_6620#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" 36.4145
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" 1.13687e-13
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 157.448
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -79.4263
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" 387.413
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" 4.34444
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 673.831
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/m1_4410_6620#" -13.1681
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -6.49458
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "isource_conv_tsmal_0/m1_4410_6620#" 120.331
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_0/m1_4410_6620#" -158.592
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -103.555
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" 0.343931
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -3.01224
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" 241.583
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 2.38842
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 2.54608
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 200.838
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -624.53
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" 129.073
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_conv_tsmal_0/m1_4410_6620#" 311.127
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "isource_conv_tsmal_0/m1_4410_6620#" 93.2394
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" 549.757
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "isource_conv_tsmal_0/m1_4410_6620#" 0.214835
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_0/m1_4410_6620#" -29.4503
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 19.9269
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -117.3
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" 9.14109
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -3.01224
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 235.318
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -101.138
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 0.610938
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" 0.869029
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" 1.75863
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 53.0438
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" -2.35555
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 79.0714
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_conv_tsmal_0/m1_4410_6620#" 89.432
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -20.997
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 5.34789
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 62.2687
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" -22.5642
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/m1_110_820#" 4.63686
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 43.8188
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 377.894
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 1.06088
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" 10.2875
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" 3.42702
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" 5.71151
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -60.2927
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" -0.470365
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.8938
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.2253
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 21.1446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 21.1446
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 21.1446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 21.1446
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 21.1446
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -27.5352
+cap "isource_ref_transistor_1/m1_n370_110#" "isource_ref_transistor_1/m1_890_680#" 15.0462
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 60.1056
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/m1_890_680#" 69.9315
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" 335.082
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" -113.572
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" 115.252
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/m1_890_680#" -31.9298
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" 0.638231
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_ref_transistor_0/m1_890_680#" 57.2653
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/m1_4410_6620#" 166.67
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" -98.0149
+cap "isource_conv_tsmal_0/m1_4590_7330#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" 43.6074
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -157.612
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 877.014
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" -0.224408
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -215.942
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -451.752
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 21.5138
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_conv_tsmal_0/m1_4410_6620#" 4.44392
+cap "isource_conv_tsmal_0/m1_4410_6620#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" -241.769
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_J24RLQ_0/a_n416_118#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" 2.86733
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" -10.3538
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" "isource_conv_tsmal_0/m1_4410_6620#" 13.437
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_20_n918#" -5.7469
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" 20.3399
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 15.6969
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" 24.5728
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_0/m1_4410_6620#" -43.1153
+cap "isource_conv_tsmal_0/m1_4410_6620#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 23.0675
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n509_n909#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" 11.6078
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -0.179801
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 40.5108
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" -55.1078
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 1.06088
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 1.11396
+cap "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/a_n33_n1015#" 5.47734
+cap "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" 1.46152
+cap "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "isource_conv_tsmal_0/m1_4500_6730#" 2.86733
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_conv_tsmal_0/m1_4590_7330#" 204.549
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4590_7330#" -42.5343
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -56.0195
+cap "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_conv_tsmal_0/m1_4410_6620#" -341.009
+cap "isource_conv_tsmal_0/m1_4410_6620#" "isource_conv_tsmal_0/m1_4590_7330#" -62.647
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" -7635.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12279510 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_1000#" "m1_24520_11560#"
+merge "isource_cmirror_0/VSUBS" "isource_conv_tsmal_0/VSUBS" 43502.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4937352 -56452 85288874 -3066 99200 0 0 0 0 0 0 0 0 0
+merge "isource_conv_tsmal_0/VSUBS" "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#"
+merge "isource_conv_tsmal_0/sky130_fd_pr__nfet_01v8_lvt_26RGPZ_0/a_n611_n1083#" "isource_ref_transistor_0/VSUBS"
+merge "isource_ref_transistor_0/VSUBS" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_919_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2545_n400#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2545_n400#" "isource_ref_transistor_1/VSUBS"
+merge "isource_ref_transistor_1/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2647_n574#" "li_4360_12590#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_1287_n488#" "m1_21256_12488#" -27047.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -41287744 -2056 0 0 0 0 0 0 0 0 0 0
+merge "m1_21256_12488#" "m1_19998_12488#"
+merge "m1_19998_12488#" "m1_18740_12488#"
+merge "m1_18740_12488#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_29_n488#" "m1_21256_11578#"
+merge "m1_21256_11578#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1229_n488#" "m1_19998_11578#"
+merge "m1_19998_11578#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n2487_n488#" "m1_18740_11578#"
+merge "m1_18740_11578#" "m1_17600_11580#"
+merge "isource_conv_tsmal_0/m1_4590_7330#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -12850.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13661464 -3566 -2571800 -580 -12960850 0 0 0 0 0 0 0
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_1000#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "m1_16760_11560#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_389_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" -3493.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5421408 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_n1432#" "m1_24000_9140#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_n1432#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#" -3419.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5310592 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1201_n1432#" "m1_22920_9140#"
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n141_1000#" "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" -16590 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -25662060 -2732 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n671_1000#" "m1_23460_11560#"
+merge "isource_cmirror_0/sky130_fd_pr__pfet_01v8_ACY9XJ_0/w_n216_n1137#" "li_23190_12600#" 137.138 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 872400 -880 0 0 0 0 0 0 0 0 0 0 0 0
+merge "isource_ref_transistor_0/m1_890_680#" "isource_cmirror_0/m1_110_820#" -11350 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6124720 -4100 -30563280 -3686 -15238450 -195 0 0 0 0 0 0
+merge "isource_cmirror_0/m1_110_820#" "isource_conv_tsmal_0/m1_4410_6620#"
+merge "isource_conv_tsmal_0/m1_4410_6620#" "isource_ref_transistor_1/m1_n370_110#"
+merge "isource_ref_transistor_1/m1_n370_110#" "m1_20970_12680#"
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" 17808.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32380720 -1144 -7156824 -2512 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_834VMG_0/a_n1287_n400#" "isource_ref_transistor_0/m1_n370_110#"
+merge "isource_ref_transistor_0/m1_n370_110#" "isource_ref_transistor_1/m1_890_680#"
+merge "isource_ref_transistor_1/m1_890_680#" "m1_18730_12160#"
diff --git a/mag/isource/isource_out.mag b/mag/isource/isource_out.mag
new file mode 100644
index 0000000..fd86d30
--- /dev/null
+++ b/mag/isource/isource_out.mag
@@ -0,0 +1,164 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654695234
+<< locali >>
+rect 17180 12710 22720 13000
+rect 4360 12650 22720 12710
+rect 4360 12600 22840 12650
+rect 23190 12600 23240 13000
+rect 4360 12590 17410 12600
+rect 17170 11940 17410 12590
+rect 17170 11700 17300 11940
+rect 17400 11700 17410 11940
+rect 17170 11470 17410 11700
+rect 22680 11480 22840 12600
+<< viali >>
+rect 17300 11700 17400 11940
+<< metal1 >>
+rect 16760 13700 17860 13860
+rect 16760 12820 16980 13700
+rect 17680 13200 17860 13700
+rect 17680 13000 17700 13200
+rect 17840 13000 17860 13200
+rect 17680 12980 17860 13000
+rect 20980 12880 21160 15060
+rect 22820 13360 23120 13380
+rect 22820 13180 22840 13360
+rect 23100 13180 23120 13360
+rect 16760 12480 17020 12820
+rect 20970 12680 20980 12880
+rect 21160 12680 21170 12880
+rect 16760 11560 16980 12480
+rect 17294 11940 17406 11952
+rect 17290 11700 17300 11940
+rect 17400 11700 17410 11940
+rect 17470 11700 17480 11940
+rect 17560 11700 17570 11940
+rect 17294 11688 17406 11700
+rect 17600 11580 17800 12520
+rect 18740 12488 18830 12522
+rect 19998 12488 20088 12522
+rect 21256 12488 21346 12522
+rect 18730 12160 18740 12400
+rect 18820 12160 18830 12400
+rect 21250 12160 21260 12400
+rect 21340 12160 21350 12400
+rect 19990 11700 20000 11940
+rect 20080 11700 20090 11940
+rect 22510 11700 22520 11940
+rect 22600 11700 22610 11940
+rect 18740 11578 18830 11612
+rect 19998 11578 20088 11612
+rect 21256 11578 21346 11612
+rect 22820 11580 23120 13180
+rect 23460 11560 24300 12020
+rect 24520 11560 25360 12020
+rect 22920 9140 23760 9600
+rect 24000 9140 24840 9600
+rect 25050 9160 25060 9580
+rect 25360 9160 25370 9580
+<< via1 >>
+rect 17700 13000 17840 13200
+rect 22840 13180 23100 13360
+rect 20980 12680 21160 12880
+rect 17300 11700 17400 11940
+rect 17480 11700 17560 11940
+rect 18740 12160 18820 12400
+rect 21260 12160 21340 12400
+rect 20000 11700 20080 11940
+rect 22520 11700 22600 11940
+rect 25060 9160 25360 9580
+<< metal2 >>
+rect 16960 13630 17520 13680
+rect 16680 13620 17520 13630
+rect 17000 13480 17520 13620
+rect 16680 13470 17520 13480
+rect 16960 13420 17520 13470
+rect 16680 12400 17100 13080
+rect 17260 12880 17520 13420
+rect 20900 13360 21120 13840
+rect 17700 13200 17840 13210
+rect 20900 13200 20920 13360
+rect 17840 13100 20920 13200
+rect 22840 13360 23100 13370
+rect 22840 13170 23100 13180
+rect 17840 13000 21120 13100
+rect 17700 12990 17840 13000
+rect 20980 12880 21160 12890
+rect 23140 12880 23360 13700
+rect 17260 12680 20980 12880
+rect 21160 12680 23360 12880
+rect 20980 12670 21160 12680
+rect 18740 12400 18820 12410
+rect 21260 12400 21340 12410
+rect 16680 12160 18740 12400
+rect 18820 12160 21260 12400
+rect 18740 12150 18820 12160
+rect 21260 12150 21340 12160
+rect 17300 11940 17400 11950
+rect 17480 11940 17560 11950
+rect 20000 11940 20080 11950
+rect 22520 11940 22600 11950
+rect 16680 11820 17000 11830
+rect 17400 11700 17480 11940
+rect 17560 11700 20000 11940
+rect 20080 11700 22520 11940
+rect 22600 11700 22640 11940
+rect 17300 11690 17400 11700
+rect 17480 11690 17560 11700
+rect 20000 11690 20080 11700
+rect 16680 11670 17000 11680
+rect 22240 10540 22640 11700
+rect 22240 10160 25400 10540
+rect 25060 9580 25400 10160
+rect 25360 9180 25400 9580
+rect 25360 9160 25380 9180
+rect 25060 9150 25360 9160
+<< via2 >>
+rect 16680 13480 17000 13620
+rect 20920 13100 21120 13360
+rect 22840 13180 23100 13360
+rect 16680 11680 17000 11820
+<< metal3 >>
+rect 16670 13620 17010 13625
+rect 16670 13480 16680 13620
+rect 17000 13480 17010 13620
+rect 16670 13475 17010 13480
+rect 16680 11825 17000 13475
+rect 20910 13360 21130 13365
+rect 22830 13360 23110 13365
+rect 20910 13100 20920 13360
+rect 21120 13180 22840 13360
+rect 23100 13180 23120 13360
+rect 21120 13100 23120 13180
+rect 20910 13095 21130 13100
+rect 16670 11820 17010 11825
+rect 16670 11680 16680 11820
+rect 17000 11680 17010 11820
+rect 16670 11675 17010 11680
+use isource_cmirror#0  isource_cmirror_0
+timestamp 1654695234
+transform 1 0 23200 0 1 12240
+box 0 0 2044 2280
+use isource_conv_tsmal  isource_conv_tsmal_0
+timestamp 1647868710
+transform 1 0 16700 0 1 6440
+box 4250 6510 5820 8748
+use isource_ref_transistor  isource_ref_transistor_0
+timestamp 1647868710
+transform 1 0 4813 0 1 12757
+box -493 -117 12421 1103
+use isource_ref_transistor  isource_ref_transistor_1
+timestamp 1647868710
+transform 1 0 4813 0 1 11547
+box -493 -117 12421 1103
+use sky130_fd_pr__nfet_01v8_834VMG  sky130_fd_pr__nfet_01v8_834VMG_0
+timestamp 1647868710
+transform 1 0 20043 0 1 12050
+box -2683 -610 2683 610
+use sky130_fd_pr__res_xhigh_po_1p41_JAGHGM  sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0
+timestamp 1647868710
+transform 1 0 24147 0 1 10578
+box -1367 -1598 1367 1598
+<< end >>
diff --git a/mag/isource/isource_ref.ext b/mag/isource/isource_ref.ext
new file mode 100644
index 0000000..fb9949b
--- /dev/null
+++ b/mag/isource/isource_ref.ext
@@ -0,0 +1,631 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_WY4VMC sky130_fd_pr__nfet_01v8_WY4VMC_0 1 0 11495 0 1 6700
+use sky130_fd_pr__nfet_01v8_TV3VM6 sky130_fd_pr__nfet_01v8_TV3VM6_0 1 0 3312 0 1 6700
+use isource_ref_transistor isource_ref_transistor_0 1 0 493 0 1 4997
+use isource_ref_5transistors isource_ref_5transistors_1 1 0 0 0 -1 13400
+use isource_ref_5transistors isource_ref_5transistors_0 1 0 0 0 1 0
+node "m3_12120_4500#" 1 571.577 12120 4500 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 876000 9160 0 0 0 0 0 0
+node "m2_620_5130#" 2 3941.07 620 5130 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48000 920 3021000 20760 0 0 0 0 0 0
+node "m2_1460_5690#" 0 367.468 1460 5690 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36400 800 154900 1700 0 0 0 0 0 0
+node "m2_12460_5710#" 1 1252.23 12460 5710 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28000 680 802600 8440 0 0 0 0 0 0
+node "m2_12700_7520#" 0 234.15 12700 7520 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 104000 1440 0 0 0 0 0 0 0 0
+node "m2_12700_8740#" 0 205.217 12700 8740 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80000 1200 0 0 0 0 0 0 0 0
+node "m1_11444_5928#" 0 39.6395 11444 5928 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_11450_6228#" 0 23.8343 11450 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_11450_6340#" 6 5775.26 11450 6340 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 600 272800 5900 3873150 26510 0 0 0 0 0 0
+node "m1_10190_6860#" 6 4516.14 10190 6860 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40000 1200 792800 8440 2097000 21460 0 0 0 0 0 0
+node "m1_12708_6228#" 5 120.903 12708 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48128 2792 0 0 0 0 0 0 0 0 0 0
+node "m1_11450_7138#" 0 44.3301 11450 7138 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_5600_140#" 4 8634.61 5600 140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5248000 27040 0 0 0 0 0 0 0 0 0 0
+node "m1_5154_6228#" 0 33.8635 5154 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_3896_6228#" 0 43.4516 3896 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_2638_6228#" 0 40.3046 2638 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_1380_6228#" 0 44.0594 1380 6228 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_130_6460#" 6 3913.1 130 6460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52000 1720 1268000 13160 1706300 11640 0 0 0 0 0 0
+node "m1_1370_6840#" 7 4485.81 1370 6840 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60000 1800 1376800 15120 1349600 9660 0 0 0 0 0 0
+node "m1_5154_7138#" 0 38.1251 5154 7138 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_3896_7138#" 0 36.1905 3896 7138 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_2638_7138#" 0 43.7579 2638 7138 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_1380_7138#" 0 36.7957 1380 7138 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "li_n20_n40#" 14 38981.9 -20 -40 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7976860 155868 91696 1756 111200 1960 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_11450_6340#" "m1_11444_5928#" 27.4134
+cap "m1_130_6460#" "m2_620_5130#" 3586.08
+cap "li_n20_n40#" "m1_12708_6228#" 686.398
+cap "m2_1460_5690#" "m1_130_6460#" 16.1365
+cap "m2_1460_5690#" "m2_620_5130#" 57.4217
+cap "m1_10190_6860#" "li_n20_n40#" 214.217
+cap "m1_3896_7138#" "m1_1370_6840#" 33.8878
+cap "m1_11450_6228#" "m1_12708_6228#" 1.07414
+cap "m1_130_6460#" "m1_5154_6228#" 16.7727
+cap "m1_130_6460#" "m1_5600_140#" 514.257
+cap "m1_130_6460#" "m1_2638_6228#" 14.5364
+cap "li_n20_n40#" "m1_1370_6840#" 221.161
+cap "m1_11450_6340#" "m1_11450_7138#" 36.0516
+cap "li_n20_n40#" "m2_12700_8740#" 104.891
+cap "m1_3896_7138#" "m1_2638_7138#" 1.07414
+cap "m1_5154_6228#" "m1_5600_140#" 3.52416
+cap "li_n20_n40#" "m3_12120_4500#" 93.7809
+cap "m2_12700_7520#" "m1_10190_6860#" 16.7571
+cap "m1_1380_6228#" "m1_2638_6228#" 1.07414
+cap "m1_5154_6228#" "m1_3896_6228#" 1.07414
+cap "m1_2638_6228#" "m1_3896_6228#" 1.07414
+cap "m1_1380_7138#" "m1_1370_6840#" 33.8878
+cap "m1_10190_6860#" "m2_12460_5710#" 311.475
+cap "m2_12700_7520#" "m2_12700_8740#" 15.3333
+cap "m1_12708_6228#" "m1_11450_7138#" 1.07414
+cap "m1_5154_7138#" "m1_3896_7138#" 1.07414
+cap "m1_1380_7138#" "m1_2638_7138#" 1.07414
+cap "m1_12708_6228#" "m1_11450_6340#" 5.40264
+cap "m1_130_6460#" "m1_1370_6840#" 2008.39
+cap "m2_620_5130#" "m1_1370_6840#" 505.917
+cap "m1_10190_6860#" "m1_11450_6340#" 3708.7
+cap "m3_12120_4500#" "m2_12460_5710#" 1585.64
+cap "m2_1460_5690#" "m1_1370_6840#" 177.264
+cap "m1_130_6460#" "m1_2638_7138#" 6.02134
+cap "m1_5600_140#" "m1_1370_6840#" 538.462
+cap "m1_1380_6228#" "m1_1370_6840#" 5.74567
+cap "m2_12700_7520#" "li_n20_n40#" 98.1943
+cap "m1_11450_6228#" "m1_11444_5928#" 11.6526
+cap "m1_3896_6228#" "m1_1370_6840#" 5.74567
+cap "li_n20_n40#" "m2_12460_5710#" 144.574
+cap "m1_10190_6860#" "m1_12708_6228#" 115.637
+cap "li_n20_n40#" "m1_130_6460#" 198.046
+cap "li_n20_n40#" "m2_620_5130#" 186.111
+cap "m2_1460_5690#" "li_n20_n40#" 69.5444
+cap "m1_130_6460#" "m1_5154_7138#" 6.9477
+cap "li_n20_n40#" "m1_11450_6340#" 187.663
+cap "li_n20_n40#" "m1_5600_140#" 712.254
+cap "m1_11450_6228#" "m1_11450_6340#" 59.5964
+cap "m1_5154_7138#" "m1_5600_140#" 3.52416
+cap "m1_10190_6860#" "m3_12120_4500#" 3321.86
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 5.228
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 7.95808e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 3.51614
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 2.27374e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -39.1758
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 15.7621
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 4.19354
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 345.094
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 398.324
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 3.51614
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 284.73
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -39.3444
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 4.19354
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 2.99369
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" -115.093
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 441.019
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 464.851
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -18.426
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 80.1274
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -23.034
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 31.6316
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 6.671
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -1.49325e-14
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 7.38746
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 5.228
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 7.95808e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 3.51614
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 3.44139
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -3.16517
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -1.69158
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 2.81909
+cap "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -39.1758
+cap "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 15.7621
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 4.54747e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 166.152
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 345.094
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 3.44139
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -14.3533
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 12.8687
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 375.291
+cap "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -39.3444
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 284.73
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.70082
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.99369
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 2.27374e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 4.19354
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" -174.87
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 303.764
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -15.7702
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" 442.646
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 817.489
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 905.056
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -266.129
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -9.33588
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 85.9503
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_0/m2_220_270#" 36.3179
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.3871
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/m2_220_270#" -61.0751
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -24.5303
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_0/m2_220_270#" -7.05307
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 19.9273
+cap "isource_ref_5transistors_0/m2_220_270#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#" -0.474249
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 5.228
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 3.51614
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 4.54747e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -1.32575
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -20.6073
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -37.4842
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -8.16786
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 23.1208
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1.13687e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -4.45018
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 28.1728
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 284.73
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 335.741
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -24.9911
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 350.423
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -31.5009
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 209.264
+cap "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.99369
+cap "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -1.13687e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 4.19354
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" -5.68434e-14
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_0/m1_890_680#" -182.49
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 37.5496
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" "isource_ref_5transistors_0/m2_12120_850#" 5.68434e-14
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/m1_890_680#" 259.027
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" 396.194
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_transistor_0/m1_890_680#" 37.5825
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/m2_12120_850#" 1104.99
+cap "isource_ref_5transistors_0/m2_12120_850#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" 292.222
+cap "isource_ref_5transistors_0/m2_12120_850#" "isource_ref_transistor_0/m1_890_680#" -215.175
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" 319.888
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 69.8698
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 8.92547
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 0.434118
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 4.08073
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 256.116
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/m1_890_680#" 8.34133
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -140.65
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -3.01639
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.5451
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 252.817
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -175.426
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 163.534
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 89.1731
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 297.554
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 348.851
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.0985
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -10.3456
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 548.726
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -11.6597
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/m1_890_680#" -10.5023
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 368.055
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 194.944
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 1.50898
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 344.689
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "isource_ref_transistor_0/m1_890_680#" 3.51614
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -155.589
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -174.476
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 4.54747e-13
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -11.2248
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 124.574
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 0.368474
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" -160.808
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 1.13687e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 124.446
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -45.0711
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -7.19028
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 28.1235
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -160.161
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 124.574
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 43.477
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -42.1748
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 24.8929
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 284.73
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -7.84353
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 235.865
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 159.625
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 2.99369
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -156.584
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -10.3454
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -160.808
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 124.446
+cap "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1.13687e-13
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -160.817
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 195.313
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -7.82091
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 124.574
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -121.567
+cap "isource_ref_5transistors_0/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 124.446
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -72.702
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" -160.78
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/m2_12120_850#" -160.808
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_transistor_0/m1_890_680#" 195.313
+cap "isource_ref_5transistors_0/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -10.3454
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -34.7711
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 14.2655
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_0/m2_12120_850#" 101.979
+cap "isource_ref_5transistors_0/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 360.677
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/m1_890_680#" -58.6978
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 246.44
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/m2_12120_850#" -72.8082
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 21.0495
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_transistor_0/m1_890_680#" 65.5225
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_0/m2_12120_850#" 685.743
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 362.277
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 273.383
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 363.253
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 145.734
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_0/m2_12120_850#" 11.587
+cap "isource_ref_5transistors_0/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -3.10218
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -205.361
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 2.28247
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/m2_12120_850#" 50.8846
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 5.76774
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/m1_890_680#" 540.053
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 0.479743
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 169.972
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 229.459
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 354.611
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 271.649
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 679.4
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 136.521
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.3871
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 379.991
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 164.504
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 193.035
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" -60.2725
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -110.574
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 19.9273
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/m1_890_680#" -33.7648
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 193.95
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 493.819
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "isource_ref_transistor_0/m1_890_680#" 77.921
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 1.53511
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 226.799
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 202.59
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -3.55271e-14
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/m1_890_680#" 89.6569
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 427.303
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_transistor_0/m1_890_680#" 272.664
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -27.5913
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 0.343931
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "isource_ref_transistor_0/m1_890_680#" 93.9873
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" -121.422
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 135.039
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 294.118
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 2.55795e-13
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 382.567
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 19.4173
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" -608.565
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -38.5265
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 504.264
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -101.673
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 0.343931
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 93.9873
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" 469.178
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 64.9187
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 16.1071
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 59.7445
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -5.10343
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 225.231
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 102.599
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" 415.562
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 1.09924
+cap "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" -81.9345
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 248.69
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 6.02593
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -36.08
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -47.6964
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_transistor_0/m1_890_680#" -25.2088
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 130.748
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 0.0949224
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "isource_ref_transistor_0/m1_890_680#" 36.4137
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_5transistors_0/m2_12120_850#" 149.824
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_0/m2_12120_850#" -19.1998
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 152.714
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_5transistors_0/m2_12120_850#" 148.96
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_transistor_0/m1_890_680#" -353.78
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 103.995
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 191.334
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_ref_transistor_0/m1_890_680#" 350.154
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 59.6264
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 578.495
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/m1_890_680#" 104.905
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_0/m2_12120_850#" 86.5652
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_transistor_0/m1_890_680#" -105.763
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 331.906
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 249.852
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" -92.4796
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 20.9197
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" 7.42284
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" 26.3068
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" -2.70132
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" 1.05471e-15
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_transistor_0/m1_890_680#" -299.437
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "m2_620_5130#" 169.906
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 183.599
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 12.8607
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.5451
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 378.435
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "m2_620_5130#" -19.9593
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 14.6448
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 94.2023
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" -20.271
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 19.7497
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 366.173
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 17.5115
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 66.2177
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" -17.8966
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 14.0657
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 42.977
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 0.343931
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" 0.35364
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 14.7011
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 0.0554975
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" 433.33
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 0.147012
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 0.544737
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" 61.5428
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 461.668
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 15.045
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 50.1289
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 6.83333
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 221.285
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 0.361034
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 0.247572
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" -39.2796
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 0.147012
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" -2.13119
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 0.35364
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 29.4022
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 14.7011
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 14.7011
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/m1_890_680#" 14.5324
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 14.2655
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 4.35994
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 0.0386365
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" -36.08
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 0.35364
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 352.803
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "isource_ref_transistor_0/m1_890_680#" 0.822647
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_transistor_0/m1_890_680#" 11.2653
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 0.444879
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 138.791
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 1.43093
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 129.528
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" -132.623
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_1/m2_12120_850#" -10.6305
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" -15.2729
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 21.1442
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" -72.2111
+cap "isource_ref_5transistors_1/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 7.90856
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 91.9968
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_transistor_0/m1_890_680#" -31.5919
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 0.687861
+cap "isource_ref_5transistors_1/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 75.966
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 2.28247
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" -9.82306
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" -332.57
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m2_12700_7520#" -0.641328
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 0.0623458
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 0.347953
+cap "isource_ref_transistor_0/m1_890_680#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" 1.15846
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/m1_890_680#" 12.5186
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" 250.195
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" -4.80813
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" 0.544737
+cap "isource_ref_5transistors_1/m2_220_270#" "m2_620_5130#" -73.1402
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 12.7609
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 14.6448
+cap "m2_620_5130#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" -11.8592
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "m2_620_5130#" -76.7363
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "m2_620_5130#" -172.271
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 0.351032
+cap "isource_ref_5transistors_1/m2_220_270#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 79.2043
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "isource_ref_5transistors_1/m2_220_270#" 302.588
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_1/m2_220_270#" 357.596
+cap "isource_ref_5transistors_1/m2_220_270#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 26.2506
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 17.5115
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" 13.9565
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" 202.259
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" 101.499
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" 0.351032
+cap "isource_ref_5transistors_1/m2_220_270#" "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" 4.40698
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 0.545087
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" -2.04243
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 14.587
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -0.131398
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" 0.351032
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" 5.228
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 14.587
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 12.6499
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 0.351032
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 0.545087
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" 3.11221
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -39.1758
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" 0.351032
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 5.228
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" 498.115
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" 0.545087
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 369.278
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 375.298
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -39.3444
+cap "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1916_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.99369
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 9.82609
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 0.351032
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 11.2653
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 0.868859
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" -132.479
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/m2_12120_850#" -187.141
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 14.587
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 239.273
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 377.772
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 0.351032
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" 17.5726
+cap "isource_ref_5transistors_1/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" 794.862
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" -18.4406
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 420.366
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 161.742
+cap "isource_ref_5transistors_1/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 18.7311
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 66.0741
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 127.483
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/m1_12450_1060#" -3.55986
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 0.351032
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" 78.3964
+cap "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 1.67391
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" -2.00026
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 76.5868
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 0.544737
+cap "isource_ref_5transistors_1/m1_12450_1060#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" 1.84821
+cap "isource_ref_5transistors_1/m2_12120_850#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" -10.4859
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -26.1523
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 3.51614
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 6.82121e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 5.228
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 3.51614
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 4.19354
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 3.23067
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 16.8435
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -39.1758
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1.13687e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 343.087
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 392.264
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -39.3444
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 3.51614
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 5.228
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 375.298
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.99369
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -2.27374e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 4.19354
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 4.19354
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" "isource_ref_5transistors_1/m1_12450_1060#" -280.198
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 294.903
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1088.2
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 248.656
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/m1_12450_1060#" -208.31
+cap "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 514.579
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" 313.467
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/m1_12450_1060#" 15.5965
+cap "isource_ref_5transistors_1/m2_12120_850#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 2.84217e-14
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_5transistors_1/m1_12450_1060#" 79.2793
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 4.54747e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 5.228
+cap "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 3.51614
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 16.725
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 1.13687e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 11.5283
+cap "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -39.1758
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -23.753
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 375.298
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 284.73
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -2.65061
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 8.29762
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 343.087
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 275.331
+cap "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -39.3444
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 2.99369
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -1.13687e-13
+cap "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 4.19354
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" -136.939
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 373.55
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 452.345
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" 890.034
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" -244.68
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" 320.293
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 153.047
+cap "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 85.9503
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 8.47975
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 0.463187
+cap "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1.33227e-14
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 4.23384
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -15.4228
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -36.6938
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 196.21
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 390.053
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" 199.282
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -4.39752
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 254.161
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" -24.85
+cap "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 8.47975
+merge "isource_ref_5transistors_1/isource_ref_transistor_1/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -6514.79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49601324 -175564 15271760 -984 -17937260 -4028 -13094400 -27210 0 0 0 0 0 0
+merge "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_1/VSUBS"
+merge "isource_ref_5transistors_1/VSUBS" "isource_ref_5transistors_1/m2_620_1490#"
+merge "isource_ref_5transistors_1/m2_620_1490#" "isource_ref_5transistors_1/li_40_4820#"
+merge "isource_ref_5transistors_1/li_40_4820#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1389_n574#" "isource_ref_5transistors_0/m2_620_1490#"
+merge "isource_ref_5transistors_0/m2_620_1490#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3276_n574#" "isource_ref_transistor_0/VSUBS"
+merge "isource_ref_transistor_0/VSUBS" "isource_ref_5transistors_0/VSUBS"
+merge "isource_ref_5transistors_0/VSUBS" "VSUBS"
+merge "VSUBS" "isource_ref_5transistors_0/li_40_4820#"
+merge "isource_ref_5transistors_0/li_40_4820#" "isource_ref_transistor_0/m1_n370_110#"
+merge "isource_ref_transistor_0/m1_n370_110#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_5transistors_0/isource_ref_transistor_1/m1_n370_110#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_1/m1_n370_110#" "m1_10190_6860#"
+merge "m1_10190_6860#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m2_620_5130#"
+merge "m2_620_5130#" "li_n20_n40#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_4/m1_890_680#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" 12626.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40198400 -1476 -20936000 -1786 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_3116_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_600_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1916_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_4/m1_890_680#" "m1_1370_6840#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -25329.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -32016228 -13052 0 0 0 0 0 0 0 0 0 0
+merge "isource_ref_5transistors_1/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1916_n488#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1916_n488#" "m1_5154_6228#"
+merge "m1_5154_6228#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "m1_5600_140#"
+merge "m1_5600_140#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_658_n488#" "m1_5154_7138#"
+merge "m1_5154_7138#" "m1_3896_6228#"
+merge "m1_3896_6228#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n600_n488#" "m1_3896_7138#"
+merge "m1_3896_7138#" "m1_2638_6228#"
+merge "m1_2638_6228#" "m1_1380_6228#"
+merge "m1_1380_6228#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n1858_n488#" "m1_2638_7138#"
+merge "m1_2638_7138#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3116_n488#" "m1_1380_7138#"
+merge "isource_ref_5transistors_1/m2_220_270#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" 22884.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 40129200 -1476 -510000 0 908280 -1540 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_1858_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n658_n400#" "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#"
+merge "sky130_fd_pr__nfet_01v8_TV3VM6_0/a_n3174_n400#" "isource_ref_5transistors_0/m2_220_270#"
+merge "isource_ref_5transistors_0/m2_220_270#" "m1_130_6460#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_0/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" -37197.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10194400 -492 -71871920 -4800 -25058500 0 0 0 0 0 0 0
+merge "isource_ref_5transistors_1/isource_ref_transistor_3/m1_n370_110#" "isource_ref_5transistors_1/isource_ref_transistor_4/m1_n370_110#"
+merge "isource_ref_5transistors_1/isource_ref_transistor_4/m1_n370_110#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n29_n400#" "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_4/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_0/m1_n370_110#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_0/m1_n370_110#" "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#"
+merge "isource_ref_5transistors_0/isource_ref_transistor_3/m1_n370_110#" "m1_11450_6340#"
+merge "isource_ref_5transistors_1/m1_12450_1060#" "isource_ref_5transistors_0/m1_12450_1060#" -4138.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6646200 -1480 -3640600 -1760 0 0 0 0 0 0
+merge "isource_ref_5transistors_0/m1_12450_1060#" "isource_ref_transistor_0/m1_890_680#"
+merge "isource_ref_transistor_0/m1_890_680#" "m2_12460_5710#"
+merge "m2_12460_5710#" "m2_1460_5690#"
+merge "isource_ref_5transistors_1/m2_12120_850#" "m2_12700_8740#" -1426.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2484122 -540 300000 -1100 0 0 0 0 0 0
+merge "m2_12700_8740#" "isource_ref_5transistors_0/m2_12120_850#"
+merge "isource_ref_5transistors_0/m2_12120_850#" "m3_12120_4500#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_29_n488#" "m1_11450_6228#" -12126.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -18732672 -552 0 0 0 0 0 0 0 0 0 0
+merge "m1_11450_6228#" "m1_12708_6228#"
+merge "m1_12708_6228#" "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#"
+merge "sky130_fd_pr__nfet_01v8_WY4VMC_0/a_n1229_n488#" "m1_11450_7138#"
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "m1_11444_5928#" -1660.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2467004 -250 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/isource/isource_ref.mag b/mag/isource/isource_ref.mag
new file mode 100644
index 0000000..d03bac2
--- /dev/null
+++ b/mag/isource/isource_ref.mag
@@ -0,0 +1,310 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect 1340 7260 1840 7380
+rect 1300 6040 1800 6140
+<< locali >>
+rect -20 13340 12960 13420
+rect -20 7380 60 13340
+rect -20 7358 10260 7380
+rect 12860 7358 12960 13340
+rect -20 7260 12960 7358
+rect -20 7240 1340 7260
+rect 1820 7246 12960 7260
+rect 1820 7240 10260 7246
+rect -20 6160 60 7240
+rect -20 6140 1340 6160
+rect 1760 6154 10360 6160
+rect 12860 6154 12960 7246
+rect 1760 6140 12960 6154
+rect -20 6040 12960 6140
+rect -20 5320 60 6040
+rect 10074 6030 12960 6040
+rect -20 60 60 5100
+rect 12860 5320 12960 6030
+rect 12860 60 12960 5080
+rect -20 -40 12960 60
+<< viali >>
+rect -20 5100 60 5320
+rect 12860 5080 12960 5320
+<< metal1 >>
+rect 1380 7138 1470 7172
+rect 2638 7138 2728 7172
+rect 3896 7138 3986 7172
+rect 5154 7138 5244 7172
+rect 1370 6840 1380 7040
+rect 1460 6840 1470 7040
+rect 3890 6840 3900 7040
+rect 3980 6840 3990 7040
+rect 130 6460 140 6660
+rect 200 6460 210 6660
+rect 2650 6460 2660 6660
+rect 2720 6460 2730 6660
+rect 5150 6460 5160 6660
+rect 5240 6460 5250 6660
+rect 1380 6228 1470 6262
+rect 2638 6228 2728 6262
+rect 3896 6228 3986 6262
+rect 5154 6228 5244 6262
+rect -26 5320 66 5332
+rect -30 5100 -20 5320
+rect 60 5100 70 5320
+rect -26 5088 66 5100
+rect 5600 140 6000 13260
+rect 11450 7138 11540 7172
+rect 12708 7138 12952 7172
+rect 6410 6840 6420 7040
+rect 6500 6840 6510 7040
+rect 10190 6860 10200 7060
+rect 10280 6860 10290 7060
+rect 12690 6880 12700 7080
+rect 12780 6880 12790 7080
+rect 11450 6340 11460 6540
+rect 11540 6340 11550 6540
+rect 12916 6262 12952 7138
+rect 11450 6228 11540 6262
+rect 12708 6228 12952 6262
+rect 11444 5928 11534 5962
+rect 12854 5320 12966 5332
+rect 12850 5080 12860 5320
+rect 12960 5080 13120 5320
+rect 12854 5068 12966 5080
+<< via1 >>
+rect 1380 6840 1460 7040
+rect 3900 6840 3980 7040
+rect 140 6460 200 6660
+rect 2660 6460 2720 6660
+rect 5160 6460 5240 6660
+rect -20 5100 60 5320
+rect 6420 6840 6500 7040
+rect 10200 6860 10280 7060
+rect 12700 6880 12780 7080
+rect 11460 6340 11540 6540
+rect 12860 5080 12960 5320
+<< metal2 >>
+rect 11380 13120 11660 13130
+rect 11380 13010 11660 13020
+rect 11840 11900 12040 11910
+rect 11840 11790 12040 11800
+rect 11380 10680 11660 10690
+rect 11380 10570 11660 10580
+rect 11360 9460 11640 9470
+rect 11360 9350 11640 9360
+rect 1880 8960 2180 8970
+rect 1880 8810 2180 8820
+rect 12700 8740 13100 8940
+rect 11840 8240 12040 8250
+rect 11840 8130 12040 8140
+rect 12700 7520 13220 7720
+rect 10200 7080 12880 7100
+rect 10200 7060 12700 7080
+rect 1380 7040 1460 7050
+rect 3900 7040 3980 7050
+rect 6420 7040 6500 7050
+rect 140 6840 1380 7040
+rect 1460 7000 3900 7040
+rect 1460 6880 1880 7000
+rect 2180 6880 3900 7000
+rect 1460 6840 3900 6880
+rect 3980 6840 6420 7040
+rect 6500 6840 6520 7040
+rect 10280 7000 12700 7060
+rect 10280 6900 11840 7000
+rect 12040 6900 12700 7000
+rect 10280 6880 12700 6900
+rect 12780 6880 12880 7080
+rect 10280 6860 12880 6880
+rect 10200 6840 12880 6860
+rect 1380 6830 1460 6840
+rect 3900 6830 3980 6840
+rect 6420 6830 6500 6840
+rect 140 6660 200 6670
+rect 2660 6660 2720 6670
+rect 5160 6660 5240 6670
+rect 200 6620 2660 6660
+rect 200 6500 220 6620
+rect 520 6500 2660 6620
+rect 200 6460 2660 6500
+rect 2720 6460 5160 6660
+rect 5240 6460 6460 6660
+rect 11340 6540 11660 6560
+rect 11340 6500 11460 6540
+rect 11540 6500 11660 6540
+rect 140 6450 200 6460
+rect 2660 6450 2720 6460
+rect 5160 6450 5240 6460
+rect 11340 6400 11360 6500
+rect 11640 6400 11660 6500
+rect 11340 6340 11460 6400
+rect 11540 6340 11660 6400
+rect 11460 6330 11540 6340
+rect 12460 5840 12660 5850
+rect 1460 5820 1720 5830
+rect 12460 5710 12660 5720
+rect 1460 5690 1720 5700
+rect -20 5320 60 5330
+rect 12860 5320 12960 5330
+rect 60 5100 200 5320
+rect 620 5280 920 5290
+rect 11840 5260 12040 5270
+rect 11840 5150 12040 5160
+rect 620 5130 920 5140
+rect 12700 5100 12860 5320
+rect -20 5090 60 5100
+rect 12860 5070 12960 5080
+rect 1880 4640 2180 4650
+rect 1880 4490 2180 4500
+rect 11360 4000 11640 4010
+rect 11360 3890 11640 3900
+rect 11360 2800 11640 2810
+rect 11360 2690 11640 2700
+rect 11840 1580 12040 1590
+rect 11840 1470 12040 1480
+rect 11360 360 11640 370
+rect 11360 250 11640 260
+<< via2 >>
+rect 11380 13020 11660 13120
+rect 11840 11800 12040 11900
+rect 11380 10580 11660 10680
+rect 11360 9360 11640 9460
+rect 1880 8820 2180 8960
+rect 11840 8140 12040 8240
+rect 1880 6880 2180 7000
+rect 11840 6900 12040 7000
+rect 220 6500 520 6620
+rect 11360 6400 11460 6500
+rect 11460 6400 11540 6500
+rect 11540 6400 11640 6500
+rect 1460 5700 1720 5820
+rect 12460 5720 12660 5840
+rect 620 5140 920 5280
+rect 11840 5160 12040 5260
+rect 1880 4500 2180 4640
+rect 11360 3900 11640 4000
+rect 11360 2700 11640 2800
+rect 11840 1480 12040 1580
+rect 11360 260 11640 360
+<< metal3 >>
+rect 11360 13125 11660 13140
+rect 11360 13120 11670 13125
+rect 11360 13020 11380 13120
+rect 11660 13020 11670 13120
+rect 11360 13015 11670 13020
+rect 216 6625 526 9460
+rect 210 6620 530 6625
+rect 210 6500 220 6620
+rect 520 6500 530 6620
+rect 210 6495 530 6500
+rect 216 3960 526 6495
+rect 620 5285 920 11620
+rect 11360 10685 11660 13015
+rect 11830 11900 12050 11905
+rect 11830 11800 11840 11900
+rect 12040 11800 12050 11900
+rect 11830 11795 12050 11800
+rect 11360 10680 11670 10685
+rect 11360 10580 11380 10680
+rect 11660 10580 11670 10680
+rect 11360 10575 11670 10580
+rect 11360 9465 11660 10575
+rect 11350 9460 11660 9465
+rect 11350 9360 11360 9460
+rect 11640 9360 11660 9460
+rect 11350 9355 11660 9360
+rect 1870 8960 2190 8965
+rect 1870 8820 1880 8960
+rect 2180 8820 2190 8960
+rect 1870 8815 2190 8820
+rect 1880 7005 2180 8815
+rect 1870 7000 2190 7005
+rect 1870 6880 1880 7000
+rect 2180 6880 2190 7000
+rect 1870 6875 2190 6880
+rect 1440 5900 1720 6160
+rect 1380 5825 1720 5900
+rect 1380 5820 1730 5825
+rect 1380 5700 1460 5820
+rect 1720 5700 1730 5820
+rect 1380 5695 1730 5700
+rect 1380 5680 1720 5695
+rect 1380 5660 1680 5680
+rect 610 5280 930 5285
+rect 610 5140 620 5280
+rect 920 5140 930 5280
+rect 610 5135 930 5140
+rect 620 1560 920 5135
+rect 1880 4645 2180 6875
+rect 11360 6505 11660 9355
+rect 11840 8245 12040 11795
+rect 11830 8240 12050 8245
+rect 11830 8140 11840 8240
+rect 12040 8140 12050 8240
+rect 11830 8135 12050 8140
+rect 11840 7005 12040 8135
+rect 11830 7000 12050 7005
+rect 11830 6900 11840 7000
+rect 12040 6900 12050 7000
+rect 11830 6895 12050 6900
+rect 11350 6500 11660 6505
+rect 11350 6400 11360 6500
+rect 11640 6400 11660 6500
+rect 11350 6395 11660 6400
+rect 1870 4640 2190 4645
+rect 1870 4500 1880 4640
+rect 2180 4500 2190 4640
+rect 1870 4495 2190 4500
+rect 11360 4005 11660 6395
+rect 11840 5265 12040 6895
+rect 11830 5260 12050 5265
+rect 11830 5160 11840 5260
+rect 12040 5160 12050 5260
+rect 11830 5155 12050 5160
+rect 11350 4000 11660 4005
+rect 11350 3900 11360 4000
+rect 11640 3900 11660 4000
+rect 11350 3895 11660 3900
+rect 11360 2805 11660 3895
+rect 11350 2800 11660 2805
+rect 11350 2700 11360 2800
+rect 11640 2700 11660 2800
+rect 11350 2695 11660 2700
+rect 11360 365 11660 2695
+rect 11840 1585 12040 5155
+rect 12120 4500 12320 8880
+rect 12460 5845 12660 8940
+rect 12450 5840 12670 5845
+rect 12450 5720 12460 5840
+rect 12660 5720 12670 5840
+rect 12450 5715 12670 5720
+rect 12460 4940 12660 5715
+rect 11830 1580 12050 1585
+rect 11830 1480 11840 1580
+rect 12040 1480 12050 1580
+rect 11830 1475 12050 1480
+rect 11350 360 11660 365
+rect 11350 260 11360 360
+rect 11640 260 11660 360
+rect 11350 255 11650 260
+use isource_ref_5transistors  isource_ref_5transistors_0
+timestamp 1647868710
+transform 1 0 0 0 1 0
+box 0 0 12914 4940
+use isource_ref_5transistors  isource_ref_5transistors_1
+timestamp 1647868710
+transform 1 0 0 0 -1 13400
+box 0 0 12914 4940
+use isource_ref_transistor  isource_ref_transistor_0
+timestamp 1647868710
+transform 1 0 493 0 1 4997
+box -493 -117 12421 1103
+use sky130_fd_pr__nfet_01v8_TV3VM6  sky130_fd_pr__nfet_01v8_TV3VM6_0
+timestamp 1647868710
+transform 1 0 3312 0 1 6700
+box -3312 -610 3312 610
+use sky130_fd_pr__nfet_01v8_WY4VMC  sky130_fd_pr__nfet_01v8_WY4VMC_0
+timestamp 1647868710
+transform 1 0 11495 0 1 6700
+box -1425 -610 1425 610
+<< end >>
diff --git a/mag/isource/isource_ref_5transistors.ext b/mag/isource/isource_ref_5transistors.ext
new file mode 100644
index 0000000..00e85af
--- /dev/null
+++ b/mag/isource/isource_ref_5transistors.ext
@@ -0,0 +1,298 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use isource_ref_transistor isource_ref_transistor_4 1 0 493 0 1 3777
+use isource_ref_transistor isource_ref_transistor_3 1 0 493 0 1 2557
+use isource_ref_transistor isource_ref_transistor_1 1 0 493 0 1 1337
+use isource_ref_transistor isource_ref_transistor_0 1 0 493 0 1 117
+node "m2_620_1490#" 1 1344.28 620 1490 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24000 760 1034900 7530 0 0 0 0 0 0
+node "m2_220_270#" 3 1735.65 220 270 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72000 2280 1129200 8220 0 0 0 0 0 0
+node "m2_12120_850#" 2 1336.36 12120 850 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48000 1680 750200 7980 0 0 0 0 0 0
+node "m1_12450_1060#" 11 3038.4 12450 1060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140800 4800 176000 5360 996700 10580 0 0 0 0 0 0
+node "li_40_1160#" 1372 6383.41 40 1160 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543200 25960 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_12820_1440#" 32 290.982 12820 1440 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16000 560 39408 820 0 0 0 0 0 0 0 0 0 0
+node "li_20_1440#" 43 280.318 20 1440 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 520 34928 780 0 0 0 0 0 0 0 0 0 0
+node "li_40_2380#" 1372 6092.73 40 2380 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543200 25960 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_20_3600#" 1372 6093.21 20 3600 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543200 25960 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_40_4820#" 1372 6401.57 40 4820 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1543200 25960 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m2_220_270#" "li_40_2380#" 89.3896
+cap "m2_12120_850#" "li_40_1160#" 72.6189
+cap "li_12820_1440#" "li_40_1160#" 14
+cap "m2_620_1490#" "li_40_4820#" 94.7177
+cap "li_20_1440#" "li_40_1160#" 7
+cap "m1_12450_1060#" "li_40_1160#" 72.6189
+cap "m2_12120_850#" "m1_12450_1060#" 1522.65
+cap "li_20_3600#" "m2_620_1490#" 89.3938
+cap "li_20_3600#" "m2_12120_850#" 70.9467
+cap "m1_12450_1060#" "li_40_4820#" 81.8291
+cap "li_20_3600#" "li_40_4820#" 326.836
+cap "m2_220_270#" "li_40_1160#" 117.181
+cap "m2_620_1490#" "m2_220_270#" 1434.97
+cap "li_20_3600#" "m1_12450_1060#" 70.9467
+cap "li_40_2380#" "li_40_1160#" 327.345
+cap "m2_620_1490#" "li_40_2380#" 89.3896
+cap "m2_12120_850#" "li_40_2380#" 70.9439
+cap "li_12820_1440#" "li_40_2380#" 3.02703
+cap "li_20_3600#" "m2_220_270#" 89.3938
+cap "li_20_1440#" "li_40_2380#" 1.51351
+cap "li_40_2380#" "m1_12450_1060#" 70.9439
+cap "li_20_3600#" "li_40_2380#" 326.836
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -143.77
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_3/m1_n370_110#" 310.201
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/m1_n370_110#" 111.683
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_3/m1_n370_110#" -20.4609
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 56.3023
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1.79856e-14
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.7329
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/m1_n370_110#" 488.864
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 186.415
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.053
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -154.374
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 215.042
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_3/m1_n370_110#" -10.3456
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 62.2983
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -2.84217e-14
+cap "isource_ref_transistor_3/m1_n370_110#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.351032
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -160.817
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 216.277
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 62.2872
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -160.808
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -10.3454
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 216.277
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 62.2228
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 20.9645
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 62.2872
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 216.277
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -160.817
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 216.277
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 62.2228
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -10.3454
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -160.808
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -160.817
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 62.2872
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 216.277
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 1.13687e-13
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -160.808
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 4.19354
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 62.2228
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 3.0727
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -10.3454
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 162.15
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 66.3128
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_0/m1_890_680#" 48.5321
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 159.048
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 1.21625
+cap "isource_ref_transistor_0/m1_890_680#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -72.2494
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_0/m1_890_680#" -13.5833
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 49.7742
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 178.191
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 2.45626
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/m1_890_680#" 29.646
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 0.351032
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_0/m1_890_680#" 7.70409
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -143.77
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 190.022
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 167.683
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.7329
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.7329
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 370.147
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_4/m1_n370_110#" 459.756
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/m1_n370_110#" -27.8606
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 56.3023
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 255.526
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -0.451089
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 112.782
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 367.885
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 124.597
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 194.989
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -154.374
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -19.7092
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 62.2983
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_4/m1_n370_110#" 2.66171
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.053
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -146.904
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -146.904
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.053
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -9.37459
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -134.541
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -8.65557
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -8.65557
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 124.574
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -134.541
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 195.313
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -160.817
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 62.2872
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -10.3454
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 62.2228
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -160.808
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 195.313
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 124.446
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -160.779
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -160.779
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -122.587
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -7.88653
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 124.574
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" -7.88653
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 62.2872
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -160.817
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -122.587
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 195.313
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 20.9645
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 62.2228
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 195.313
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -160.808
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -160.778
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" 124.446
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -160.778
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -10.3454
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -160.817
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -122.057
+cap "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 195.313
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -7.8524
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -122.057
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" 62.2872
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 124.574
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" -7.8524
+cap "isource_ref_transistor_3/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 62.2228
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -32.1407
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -168.053
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -1.13687e-13
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_3/m1_890_680#" 129.796
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -142.406
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 112.253
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/m1_890_680#" 634.902
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/m1_890_680#" 271.41
+cap "isource_ref_transistor_3/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 2.55
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 6.20185
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 0.408487
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 4.09948
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 196.939
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 276.741
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 212.105
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_4/m1_n370_110#" -0.451089
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/m1_n370_110#" 331.09
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 257.542
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/m1_n370_110#" -27.7612
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 167.683
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_4/m1_n370_110#" 379.638
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 330.692
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.7329
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_4/m1_n370_110#" 359.803
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -143.77
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" -146.904
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 114.251
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 194.989
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -154.374
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.053
+cap "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -9.37459
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.9645
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -8.65557
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" 124.574
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" -160.817
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -134.541
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 195.313
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 124.446
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 195.313
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -160.808
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 20.9645
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" -160.779
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" -10.3454
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -160.817
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 20.9645
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" -122.587
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 195.313
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 124.574
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -7.88653
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 124.446
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -160.778
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -10.3454
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" -160.808
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 195.313
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" -7.8524
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -122.057
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 124.574
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 195.313
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -160.817
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -1.13687e-13
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/m1_890_680#" 124.446
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -160.808
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 3.0727
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -10.3454
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -156.586
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -11.9755
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" -52.2128
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 488.04
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 11.9853
+cap "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 335.891
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" -19.3171
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 8.37959
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 277.074
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 118.271
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/m1_890_680#" 10.2541
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/m1_890_680#" -13.7768
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_4/m1_890_680#" 91.6705
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 0.383045
+cap "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 15.0024
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" 5.04651
+cap "m2_620_1490#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 425.044
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "m2_620_1490#" 359.285
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "m2_620_1490#" -10.585
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 18.7329
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.053
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" 20.9645
+cap "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 20.9645
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 20.9645
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 3.13349
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_4/m1_890_680#" 259.938
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "isource_ref_transistor_4/m1_890_680#" -68.4042
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "isource_ref_transistor_4/m1_890_680#" -9.31101
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_4/m1_890_680#" 34.9937
+cap "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" -26.0944
+merge "isource_ref_transistor_4/VSUBS" "isource_ref_transistor_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "isource_ref_transistor_0/VSUBS" "isource_ref_transistor_1/VSUBS"
+merge "isource_ref_transistor_1/VSUBS" "isource_ref_transistor_3/VSUBS"
+merge "isource_ref_transistor_3/VSUBS" "VSUBS"
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "li_40_4820#" 6408.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45293616 -130760 4603646 -1046 -6010800 -760 133200 -1780 0 0 0 0 0 0
+merge "li_40_4820#" "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "li_20_3600#"
+merge "li_20_3600#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "li_12820_1440#"
+merge "li_12820_1440#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "m2_620_1490#"
+merge "m2_620_1490#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "li_40_1160#"
+merge "li_40_1160#" "li_20_1440#"
+merge "li_20_1440#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#"
+merge "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "li_40_2380#"
+merge "isource_ref_transistor_4/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 26014.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44221120 -4024 -3069560 -974 0 0 0 0 0 0 0 0
+merge "isource_ref_transistor_0/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_1/m1_890_680#"
+merge "isource_ref_transistor_1/m1_890_680#" "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#"
+merge "isource_ref_transistor_1/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#"
+merge "isource_ref_transistor_3/sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "m1_12450_1060#"
+merge "isource_ref_transistor_4/m1_n370_110#" "isource_ref_transistor_0/m1_n370_110#" -12416.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -24972920 -2280 0 0 0 0 0 0 0 0
+merge "isource_ref_transistor_0/m1_n370_110#" "isource_ref_transistor_3/m1_n370_110#"
+merge "isource_ref_transistor_3/m1_n370_110#" "m2_220_270#"
+merge "isource_ref_transistor_4/m1_890_680#" "isource_ref_transistor_3/m1_890_680#" -3300.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4991640 -1680 0 0 0 0 0 0 0 0
+merge "isource_ref_transistor_3/m1_890_680#" "isource_ref_transistor_0/m1_890_680#"
+merge "isource_ref_transistor_0/m1_890_680#" "m2_12120_850#"
diff --git a/mag/isource/isource_ref_5transistors.mag b/mag/isource/isource_ref_5transistors.mag
new file mode 100644
index 0000000..4908c7e
--- /dev/null
+++ b/mag/isource/isource_ref_5transistors.mag
@@ -0,0 +1,193 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< locali >>
+rect 40 4820 12900 4940
+rect 20 3600 12880 3720
+rect 40 2380 12900 2500
+rect 40 1160 12900 1280
+<< viali >>
+rect 20 1440 80 1640
+rect 12820 1440 12900 1640
+<< metal1 >>
+rect 12450 4720 12460 4800
+rect 12660 4720 12670 4800
+rect 12450 3740 12460 3820
+rect 12660 3740 12670 3820
+rect 12450 3480 12460 3560
+rect 12660 3480 12670 3560
+rect 12450 2520 12460 2600
+rect 12660 2520 12670 2600
+rect 12450 2220 12460 2300
+rect 12660 2220 12670 2300
+rect 14 1640 86 1652
+rect 12814 1640 12906 1652
+rect 14 1440 20 1640
+rect 80 1440 180 1640
+rect 12720 1440 12820 1640
+rect 12900 1440 12906 1640
+rect 14 1428 86 1440
+rect 12814 1428 12906 1440
+rect 12450 1300 12460 1380
+rect 12660 1300 12670 1380
+rect 12450 1060 12460 1140
+rect 12660 1060 12670 1140
+rect 12470 80 12480 160
+rect 12680 80 12690 160
+<< via1 >>
+rect 12460 4720 12660 4800
+rect 12460 3740 12660 3820
+rect 12460 3480 12660 3560
+rect 12460 2520 12660 2600
+rect 12460 2220 12660 2300
+rect 12460 1300 12660 1380
+rect 12460 1060 12660 1140
+rect 12480 80 12680 160
+<< metal2 >>
+rect 12460 4800 12660 4810
+rect 12460 4710 12660 4720
+rect 12120 4580 12320 4590
+rect 12120 4510 12320 4520
+rect 220 4020 520 4030
+rect 220 3950 520 3960
+rect 12460 3820 12660 3830
+rect 12460 3730 12660 3740
+rect 12460 3560 12660 3570
+rect 12460 3470 12660 3480
+rect 12120 3360 12320 3370
+rect 12120 3290 12320 3300
+rect 220 2800 520 2810
+rect 220 2730 520 2740
+rect 12460 2600 12660 2610
+rect 12460 2510 12660 2520
+rect 12460 2300 12660 2310
+rect 12460 2210 12660 2220
+rect 12460 2140 12660 2150
+rect 12460 2070 12660 2080
+rect 620 1560 920 1570
+rect 620 1490 920 1500
+rect 12460 1380 12660 1390
+rect 12460 1290 12660 1300
+rect 12460 1140 12660 1150
+rect 12460 1050 12660 1060
+rect 12120 920 12320 930
+rect 12120 850 12320 860
+rect 220 340 520 350
+rect 220 270 520 280
+rect 12480 160 12680 170
+rect 12480 70 12680 80
+<< via2 >>
+rect 12460 4720 12660 4800
+rect 12120 4520 12320 4580
+rect 220 3960 520 4020
+rect 12460 3740 12660 3820
+rect 12460 3480 12660 3560
+rect 12120 3300 12320 3360
+rect 220 2740 520 2800
+rect 12460 2520 12660 2600
+rect 12460 2220 12660 2300
+rect 12460 2080 12660 2140
+rect 620 1500 920 1560
+rect 12460 1300 12660 1380
+rect 12460 1060 12660 1140
+rect 12120 860 12320 920
+rect 220 280 520 340
+rect 12480 80 12680 160
+<< metal3 >>
+rect 210 4020 530 4025
+rect 210 3960 220 4020
+rect 520 3960 530 4020
+rect 210 3955 530 3960
+rect 220 2805 520 3955
+rect 210 2800 530 2805
+rect 210 2740 220 2800
+rect 520 2740 530 2800
+rect 210 2735 530 2740
+rect 220 345 520 2735
+rect 620 1565 920 4940
+rect 12460 4805 12660 4940
+rect 12450 4800 12670 4805
+rect 12450 4720 12460 4800
+rect 12660 4720 12670 4800
+rect 12450 4715 12670 4720
+rect 12110 4580 12330 4585
+rect 12110 4520 12120 4580
+rect 12320 4520 12330 4580
+rect 12110 4515 12330 4520
+rect 12120 3365 12320 4515
+rect 12460 3825 12660 4715
+rect 12450 3820 12670 3825
+rect 12450 3740 12460 3820
+rect 12660 3740 12670 3820
+rect 12450 3735 12670 3740
+rect 12460 3565 12660 3735
+rect 12450 3560 12670 3565
+rect 12450 3480 12460 3560
+rect 12660 3480 12670 3560
+rect 12450 3475 12670 3480
+rect 12110 3360 12330 3365
+rect 12110 3300 12120 3360
+rect 12320 3300 12330 3360
+rect 12110 3295 12330 3300
+rect 610 1560 930 1565
+rect 610 1500 620 1560
+rect 920 1500 930 1560
+rect 610 1495 930 1500
+rect 12120 925 12320 3295
+rect 12460 2605 12660 3475
+rect 12450 2600 12670 2605
+rect 12450 2520 12460 2600
+rect 12660 2520 12670 2600
+rect 12450 2515 12670 2520
+rect 12460 2305 12660 2515
+rect 12450 2300 12670 2305
+rect 12450 2220 12460 2300
+rect 12660 2220 12670 2300
+rect 12450 2215 12670 2220
+rect 12460 2145 12660 2215
+rect 12450 2140 12670 2145
+rect 12450 2080 12460 2140
+rect 12660 2080 12670 2140
+rect 12450 2075 12670 2080
+rect 12460 1385 12660 2075
+rect 12450 1380 12670 1385
+rect 12450 1300 12460 1380
+rect 12660 1300 12670 1380
+rect 12450 1295 12670 1300
+rect 12460 1145 12660 1295
+rect 12450 1140 12670 1145
+rect 12450 1060 12460 1140
+rect 12660 1060 12670 1140
+rect 12450 1055 12670 1060
+rect 12110 920 12330 925
+rect 12110 860 12120 920
+rect 12320 860 12330 920
+rect 12110 855 12330 860
+rect 210 340 530 345
+rect 210 280 220 340
+rect 520 280 530 340
+rect 210 275 530 280
+rect 12460 165 12660 1055
+rect 12460 160 12690 165
+rect 12460 80 12480 160
+rect 12680 80 12690 160
+rect 12460 75 12690 80
+rect 12460 40 12660 75
+use isource_ref_transistor  isource_ref_transistor_0
+timestamp 1647868710
+transform 1 0 493 0 1 117
+box -493 -117 12421 1103
+use isource_ref_transistor  isource_ref_transistor_1
+timestamp 1647868710
+transform 1 0 493 0 1 1337
+box -493 -117 12421 1103
+use isource_ref_transistor  isource_ref_transistor_3
+timestamp 1647868710
+transform 1 0 493 0 1 2557
+box -493 -117 12421 1103
+use isource_ref_transistor  isource_ref_transistor_4
+timestamp 1647868710
+transform 1 0 493 0 1 3777
+box -493 -117 12421 1103
+<< end >>
diff --git a/mag/isource/isource_ref_transistor.ext b/mag/isource/isource_ref_transistor.ext
new file mode 100644
index 0000000..121ef2d
--- /dev/null
+++ b/mag/isource/isource_ref_transistor.ext
@@ -0,0 +1,139 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_HZ8P49 sky130_fd_pr__nfet_01v8_HZ8P49_0 1 0 5964 0 1 493
+node "m1_10951_21#" 0 44.691 10951 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_9693_21#" 0 38.2959 9693 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_8435_21#" 0 44.0821 8435 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_7177_21#" 0 38.2959 7177 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_5919_21#" 0 44.0804 5919 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_4661_21#" 0 38.2959 4661 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_3403_21#" 0 44.3088 3403 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_2145_21#" 0 38.2959 2145 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_887_21#" 0 44.9194 887 21 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3060 248 0 0 0 0 0 0 0 0 0 0
+node "m1_n370_110#" 11 5565.91 -370 110 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96000 3360 2786100 25790 0 0 0 0 0 0 0 0
+node "m1_890_680#" 11 4924.58 890 680 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100000 3000 2536000 25880 0 0 0 0 0 0 0 0
+node "m1_10952_932#" 0 35.2733 10952 932 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2992 244 0 0 0 0 0 0 0 0 0 0
+node "m1_9692_930#" 0 47.0514 9692 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_8434_930#" 0 37.0356 8434 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_7176_930#" 0 47.0096 7176 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_5918_930#" 0 37.0312 5918 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_4660_930#" 0 47.0096 4660 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_3402_930#" 0 37.4199 3402 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_2144_930#" 0 47.0096 2144 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+node "m1_886_930#" 0 38.0724 886 930 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3312 256 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_8434_930#" "m1_890_680#" 67.896
+cap "m1_2144_930#" "m1_3402_930#" 1.13928
+cap "m1_4660_930#" "m1_5918_930#" 1.13928
+cap "m1_7177_21#" "m1_5919_21#" 1.07414
+cap "m1_5919_21#" "m1_4661_21#" 1.07414
+cap "m1_9692_930#" "m1_10952_932#" 1.07414
+cap "m1_2144_930#" "m1_n370_110#" 4.73836
+cap "m1_10952_932#" "m1_890_680#" 62.4462
+cap "m1_7177_21#" "m1_8435_21#" 1.07414
+cap "m1_9693_21#" "m1_n370_110#" 56.7692
+cap "m1_7176_930#" "m1_5918_930#" 1.13928
+cap "m1_10951_21#" "m1_890_680#" 5.3136
+cap "m1_4660_930#" "m1_3402_930#" 1.13928
+cap "m1_5919_21#" "m1_890_680#" 5.3136
+cap "m1_5918_930#" "m1_890_680#" 67.896
+cap "m1_4660_930#" "m1_n370_110#" 4.73836
+cap "m1_3403_21#" "m1_4661_21#" 1.07414
+cap "m1_7177_21#" "m1_n370_110#" 56.7692
+cap "m1_4661_21#" "m1_n370_110#" 56.7692
+cap "m1_8435_21#" "m1_890_680#" 5.3136
+cap "m1_7176_930#" "m1_n370_110#" 4.73836
+cap "m1_886_930#" "m1_890_680#" 64.944
+cap "m1_890_680#" "m1_3402_930#" 64.944
+cap "m1_887_21#" "m1_890_680#" 5.13648
+cap "m1_9692_930#" "m1_n370_110#" 4.73836
+cap "m1_10951_21#" "m1_9693_21#" 1.07414
+cap "m1_3403_21#" "m1_890_680#" 5.13648
+cap "m1_890_680#" "m1_n370_110#" 1374.09
+cap "m1_887_21#" "m1_2145_21#" 1.07414
+cap "m1_8434_930#" "m1_7176_930#" 1.13928
+cap "m1_3403_21#" "m1_2145_21#" 1.07414
+cap "m1_2145_21#" "m1_n370_110#" 56.7692
+cap "m1_8434_930#" "m1_9692_930#" 1.13928
+cap "m1_8435_21#" "m1_9693_21#" 1.07414
+cap "m1_886_930#" "m1_2144_930#" 1.13928
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 153.618
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 503.159
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 545.273
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 637.421
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" 687.593
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" 0.687861
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" -711.621
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" 159.22
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 710.419
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" -3.69482e-13
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" 711.083
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" 145.127
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 829.71
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" -3.41061e-13
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" 539.31
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 944.251
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" 723.877
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" -2.27374e-13
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" 160.241
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" -2.27374e-13
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 145.118
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 1036.09
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" 539.169
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 724.475
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" 872.854
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" 160.124
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 966.285
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" 539.29
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" -2.27374e-13
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" 145.124
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" 1244.19
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" 0.687861
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 791.611
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 125.289
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 187.068
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" 259.261
+cap "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" 47.4197
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5061_n488#" "m1_10952_932#" 6512.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1940740 -3404 0 0 0 0 0 0 0 0 0 0
+merge "m1_10952_932#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3803_n488#" "m1_10951_21#"
+merge "m1_10951_21#" "m1_9693_21#"
+merge "m1_9693_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2545_n488#" "m1_9692_930#"
+merge "m1_9692_930#" "m1_8435_21#"
+merge "m1_8435_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1287_n488#" "m1_8434_930#"
+merge "m1_8434_930#" "m1_7177_21#"
+merge "m1_7177_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_29_n488#" "m1_7176_930#"
+merge "m1_7176_930#" "m1_5919_21#"
+merge "m1_5919_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1229_n488#" "m1_5918_930#"
+merge "m1_5918_930#" "m1_4661_21#"
+merge "m1_4661_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2487_n488#" "m1_4660_930#"
+merge "m1_4660_930#" "m1_3403_21#"
+merge "m1_3403_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3745_n488#" "m1_3402_930#"
+merge "m1_3402_930#" "m1_2145_21#"
+merge "m1_2145_21#" "m1_887_21#"
+merge "m1_887_21#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5003_n488#" "m1_2144_930#"
+merge "m1_2144_930#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6261_n488#" "m1_886_930#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_6261_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" -4623.51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1898400 -2952 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_3745_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_1229_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n1287_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n3803_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6319_n400#" "m1_n370_110#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n6421_n574#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_5003_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" -4416.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1308000 -2460 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_2487_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n2545_n400#" "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#"
+merge "sky130_fd_pr__nfet_01v8_HZ8P49_0/a_n5061_n400#" "m1_890_680#"
diff --git a/mag/isource/isource_ref_transistor.mag b/mag/isource/isource_ref_transistor.mag
new file mode 100644
index 0000000..b44d050
--- /dev/null
+++ b/mag/isource/isource_ref_transistor.mag
@@ -0,0 +1,95 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal1 >>
+rect 886 930 978 966
+rect 2144 930 2236 966
+rect 3402 930 3494 966
+rect 4660 930 4752 966
+rect 5918 930 6010 966
+rect 7176 930 7268 966
+rect 8434 930 8526 966
+rect 9692 930 9784 966
+rect 10952 932 11040 966
+rect 890 680 900 880
+rect 980 680 990 880
+rect 3390 680 3400 880
+rect 3480 680 3490 880
+rect 5910 680 5920 880
+rect 6000 680 6010 880
+rect 8430 680 8440 880
+rect 8520 680 8530 880
+rect 10950 680 10960 880
+rect 11040 680 11050 880
+rect -370 110 -360 310
+rect -300 110 -290 310
+rect 2153 107 2163 307
+rect 2223 107 2233 307
+rect 4663 107 4673 307
+rect 4733 107 4743 307
+rect 7183 107 7193 307
+rect 7253 107 7263 307
+rect 9693 107 9703 307
+rect 9763 107 9773 307
+rect 12213 107 12223 307
+rect 12283 107 12293 307
+rect 887 21 977 55
+rect 2145 21 2235 55
+rect 3403 21 3493 55
+rect 4661 21 4751 55
+rect 5919 21 6009 55
+rect 7177 21 7267 55
+rect 8435 21 8525 55
+rect 9693 21 9783 55
+rect 10951 21 11041 55
+<< via1 >>
+rect 900 680 980 880
+rect 3400 680 3480 880
+rect 5920 680 6000 880
+rect 8440 680 8520 880
+rect 10960 680 11040 880
+rect -360 110 -300 310
+rect 2163 107 2223 307
+rect 4673 107 4733 307
+rect 7193 107 7253 307
+rect 9703 107 9763 307
+rect 12223 107 12283 307
+<< metal2 >>
+rect 900 880 980 890
+rect 3400 880 3480 890
+rect 5920 880 6000 890
+rect 8440 880 8520 890
+rect 10960 880 11040 890
+rect -360 680 900 880
+rect 980 680 3400 880
+rect 3480 680 5920 880
+rect 6000 680 8440 880
+rect 8520 680 10960 880
+rect 11040 680 12280 880
+rect 900 670 980 680
+rect 3400 670 3480 680
+rect 5920 670 6000 680
+rect 8440 670 8520 680
+rect 10960 670 11040 680
+rect -370 310 12290 320
+rect -370 110 -360 310
+rect -300 307 12290 310
+rect -300 110 2163 307
+rect -370 107 2163 110
+rect 2223 107 4673 307
+rect 4733 107 7193 307
+rect 7253 107 9703 307
+rect 9763 107 12223 307
+rect 12283 107 12290 307
+rect -370 100 12290 107
+rect 2163 97 2223 100
+rect 4673 97 4733 100
+rect 7193 97 7253 100
+rect 9703 97 9763 100
+rect 12223 97 12283 100
+use sky130_fd_pr__nfet_01v8_HZ8P49  sky130_fd_pr__nfet_01v8_HZ8P49_0
+timestamp 1647868710
+transform 1 0 5964 0 1 493
+box -6457 -610 6457 610
+<< end >>
diff --git a/mag/isource/isource_startup.ext b/mag/isource/isource_startup.ext
new file mode 100644
index 0000000..5af1aaa
--- /dev/null
+++ b/mag/isource/isource_startup.ext
@@ -0,0 +1,71 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_QDYTZD sky130_fd_pr__pfet_01v8_QDYTZD_1 1 0 1956 0 1 969
+use sky130_fd_pr__nfet_01v8_lvt_E9U3PA sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0 1 0 857 0 1 610
+use sky130_fd_pr__nfet_01v8_U3V43Z sky130_fd_pr__nfet_01v8_U3V43Z_0 1 0 1936 0 1 440
+node "m1_330_800#" 7 1051.54 330 800 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 130900 4680 336900 4700 0 0 0 0 0 0 0 0
+node "m1_360_100#" 7 1144.22 360 100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 247200 7720 0 0 0 0 0 0 0 0 0 0
+node "li_2190_920#" 15 82.1076 2190 920 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14300 480 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_1590_740#" 1485 345.87 1590 740 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11600 2340 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_240_1150#" 441 1973.98 240 1150 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 200400 5380 107128 3752 294600 3720 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_1590_740#" "m1_330_800#" 36.4487
+cap "li_1590_740#" "m1_360_100#" 36.7765
+cap "m1_330_800#" "m1_360_100#" 1037.98
+cap "li_1590_740#" "li_2190_920#" 23.338
+cap "li_1590_740#" "li_240_1150#" 129.916
+cap "m1_330_800#" "li_240_1150#" 403.245
+cap "m1_360_100#" "li_240_1150#" 1027.11
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" -416.338
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 2.70231
+cap "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 2.75912
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" -47.5194
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 301.678
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" 553.187
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 2120.03
+cap "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" 1.40263
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" -2204.11
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 11.8269
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" -23.5977
+cap "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" 4.2514
+cap "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" -49.0657
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" 2.23636
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" 75.5587
+cap "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#" -6.1459
+cap "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" 304.477
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_310_n488#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_114_n488#" 2774.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 190720 -2108 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_114_n488#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n82_n488#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n82_n488#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n278_n488#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n278_n488#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n474_n488#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n474_n488#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_408_422#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_212_422#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_212_422#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_16_422#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_16_422#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n180_422#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n180_422#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n376_422#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n376_422#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#"
+merge "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n200_n147#" "m1_360_100#"
+merge "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n258_n50#" "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n360_n224#" -1817.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -234272 -6428 679220 -2692 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n360_n224#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_363_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_363_n400#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_QDYTZD_1/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_167_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_167_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n29_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n29_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n225_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n225_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n421_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n421_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n621_n574#" "li_240_1150#"
+merge "sky130_fd_pr__nfet_01v8_U3V43Z_0/a_n200_n138#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_461_n400#" -45.5394 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 819520 -3852 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_461_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_265_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_265_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_69_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_69_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n127_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n127_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n323_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n323_n400#" "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#"
+merge "sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0/a_n519_n400#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#"
+merge "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_n258_n50#" "m1_330_800#"
+merge "sky130_fd_pr__pfet_01v8_QDYTZD_1/w_n396_n269#" "li_1590_740#" -575.122 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -78654 -3296 0 0 0 0 0 0 0 0 0 0 0 0
+merge "li_1590_740#" "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_200_n50#"
+merge "sky130_fd_pr__pfet_01v8_QDYTZD_1/a_200_n50#" "li_2190_920#"
diff --git a/mag/isource/isource_startup.mag b/mag/isource/isource_startup.mag
new file mode 100644
index 0000000..aba8e45
--- /dev/null
+++ b/mag/isource/isource_startup.mag
@@ -0,0 +1,134 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< locali >>
+rect 240 1150 1480 1200
+rect 1440 650 1480 1150
+rect 1590 750 1600 1200
+rect 2190 920 2320 1030
+rect 1590 740 2300 750
+rect 1440 250 1600 650
+rect 1440 160 1630 250
+rect 1440 110 1710 160
+rect 1440 40 1600 110
+<< viali >>
+rect 1630 160 1770 250
+<< metal1 >>
+rect 360 1060 1840 1120
+rect 330 800 340 1000
+rect 400 800 410 1000
+rect 530 800 540 1000
+rect 600 800 610 1000
+rect 720 800 730 1000
+rect 790 800 800 1000
+rect 910 800 920 1000
+rect 980 800 990 1000
+rect 1110 800 1120 1000
+rect 1180 800 1190 1000
+rect 1310 800 1320 1000
+rect 1380 800 1390 1000
+rect 1500 860 1580 1060
+rect 1660 900 1670 1030
+rect 1730 900 1740 1030
+rect 1500 800 1800 860
+rect 420 230 430 430
+rect 490 230 500 430
+rect 620 230 630 430
+rect 690 230 700 430
+rect 820 230 830 430
+rect 890 230 900 430
+rect 1010 230 1020 430
+rect 1080 230 1090 430
+rect 1210 230 1220 430
+rect 1280 230 1290 430
+rect 1500 160 1580 800
+rect 1740 530 1750 600
+rect 1900 530 1910 600
+rect 1630 350 1640 480
+rect 1700 350 1710 480
+rect 1770 320 1830 530
+rect 360 100 1580 160
+rect 1618 250 1782 256
+rect 1618 160 1630 250
+rect 1770 160 1782 250
+rect 1618 154 1782 160
+<< via1 >>
+rect 340 800 400 1000
+rect 540 800 600 1000
+rect 730 800 790 1000
+rect 920 800 980 1000
+rect 1120 800 1180 1000
+rect 1320 800 1380 1000
+rect 1670 900 1730 1030
+rect 430 230 490 430
+rect 630 230 690 430
+rect 830 230 890 430
+rect 1020 230 1080 430
+rect 1220 230 1280 430
+rect 1750 530 1900 600
+rect 1640 350 1700 480
+rect 1630 160 1770 250
+<< metal2 >>
+rect 1670 1030 1730 1040
+rect 340 1000 400 1010
+rect 540 1000 600 1010
+rect 730 1000 790 1010
+rect 920 1000 980 1010
+rect 1120 1000 1180 1010
+rect 1320 1000 1380 1010
+rect 1520 1000 1670 1030
+rect 400 800 540 1000
+rect 600 800 730 1000
+rect 790 800 920 1000
+rect 980 800 1120 1000
+rect 1180 800 1320 1000
+rect 1380 920 1670 1000
+rect 1380 800 1630 920
+rect 1730 920 1750 1030
+rect 1670 890 1730 900
+rect 340 790 400 800
+rect 540 790 600 800
+rect 730 790 790 800
+rect 920 790 980 800
+rect 1120 790 1180 800
+rect 1320 790 1380 800
+rect 1520 610 1630 800
+rect 1520 600 1900 610
+rect 1520 530 1750 600
+rect 1750 520 1900 530
+rect 1640 480 1700 490
+rect 430 430 490 440
+rect 630 430 690 440
+rect 830 430 890 440
+rect 1020 430 1080 440
+rect 1220 430 1280 440
+rect 350 230 430 430
+rect 490 230 630 430
+rect 690 230 830 430
+rect 890 230 1020 430
+rect 1080 230 1220 430
+rect 1280 350 1640 430
+rect 1700 350 1710 430
+rect 1280 260 1710 350
+rect 1280 250 1770 260
+rect 1280 230 1630 250
+rect 430 220 490 230
+rect 630 220 690 230
+rect 830 220 890 230
+rect 1020 220 1080 230
+rect 1220 220 1280 230
+rect 1630 150 1770 160
+use sky130_fd_pr__nfet_01v8_U3V43Z  sky130_fd_pr__nfet_01v8_U3V43Z_0
+timestamp 1647868710
+transform 1 0 1936 0 1 440
+box -396 -260 396 260
+use sky130_fd_pr__nfet_01v8_lvt_E9U3PA  sky130_fd_pr__nfet_01v8_lvt_E9U3PA_0
+timestamp 1647868710
+transform 1 0 857 0 1 610
+box -657 -610 657 610
+use sky130_fd_pr__pfet_01v8_QDYTZD  sky130_fd_pr__pfet_01v8_QDYTZD_1
+timestamp 1647868710
+transform 1 0 1956 0 1 969
+box -396 -269 396 269
+<< end >>
diff --git a/mag/isource/pex_isource.spice b/mag/isource/pex_isource.spice
new file mode 100644
index 0000000..1ae5ffc
--- /dev/null
+++ b/mag/isource/pex_isource.spice
@@ -0,0 +1,2431 @@
+* NGSPICE file created from isource_flat.ext - technology: sky130A
+
+.subckt isource_flat I_ref VP VN
+X0 VM2D VM2D VN.t100 VN.t77 sky130_fd_pr__nfet_01v8 ad=3.132e+13p pd=2.3166e+08u as=0p ps=0u w=4e+06u l=6e+06u
+X1 a_17176_1646.t1 a_16646_4078.t0 VN.t27 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X2 VP.t137 VM8D.t26 a_19136_919.t52 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X3 VM2D VM2D VN.t99 VN.t75 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X4 a_19136_n1351.t9 VM8D.t27 VP.t136 VP.t95 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X5 a_15056_1646.t0 a_14526_4078.t1 VN.t4 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X6 VM2D VM9D.t38 VM9D.t39 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X7 a_19136_919.t1 VM8D.t28 VM14D.t13 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X8 VP.t135 VM8D.t29 a_19136_919.t21 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 VM2D VM9D.t36 VM9D.t37 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X10 VP.t134 VM8D.t30 a_19136_919.t20 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X11 VM12D.t66 VM2D VM11D VN.t92 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.22e+13p ps=3.861e+08u w=4e+06u l=6e+06u
+X12 VM12G VM14D.t14 VP.t1 VM12G sky130_fd_pr__nfet_01v8_lvt ad=1.32e+13p pd=8.66e+07u as=0p ps=0u w=4e+06u l=150000u
+X13 a_19136_919.t18 VM8D.t31 VP.t133 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X14 VP.t132 VM8D.t32 a_19136_n1351.t8 VP.t72 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X15 a_11158_13910.t10 VM11D VN.t25 VN.t24 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X16 VM2D VM9D.t34 VM9D.t35 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X17 a_18646_n4664.t1 a_19176_n2232.t1 VN.t31 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X18 I_ref.t19 VM22D.t22 a_216_n2258.t3 VN.t59 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X19 VN.t98 VM2D VM2D VN.t71 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X20 VM3D.t19 a_216_n2258.t21 VM22D.t10 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X21 a_11158_13910.t9 VM11D VN.t23 VN.t22 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X22 VM8D.t16 VM9D.t42 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X23 VM3D.t18 a_216_n2258.t22 VM22D.t6 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X24 VM11D VM2D VM12D.t65 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X25 VM8D.t6 VM9D.t43 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X26 VM12G VM14D.t15 VP.t6 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X27 a_19136_919.t62 VM8D.t33 VP.t131 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X28 VM11D VM2D VM12D.t64 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X29 a_19136_7699.t9 VM8D.t34 VP.t130 VP.t30 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X30 VP.t129 VM8D.t35 a_19136_919.t55 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X31 VM11D VM2D VM12D.t63 VN.t66 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X32 VM12D.t62 VM2D VM11D VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X33 VM11D VM9D.t44 VM8D.t1 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X34 VM11D VM9D.t45 VM8D.t17 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X35 a_19136_7699.t11 VM8D.t23 VM8D.t24 VP.t54 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X36 VP.t20 VM14D.t16 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X37 VM11D VM2D VM12D.t61 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X38 VP.t128 VM8D.t36 a_19136_919.t54 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X39 a_19136_919.t29 VM8D.t37 VP.t127 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X40 a_19136_919.t8 VM8D.t38 VM14D.t12 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X41 VM2D VM2D VN.t97 VN.t66 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X42 VM22D.t21 a_216_n2258.t23 VM3D.t17 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X43 VM12D.t60 VM2D VM11D VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X44 VM22D.t9 a_216_n2258.t24 VM3D.t16 VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X45 a_19136_n1351.t11 VM8D.t39 VM22D.t19 VP.t99 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X46 VN.t37 a_20236_n2232.t1 VN.t31 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X47 VM22D.t16 a_216_n2258.t25 VM3D.t15 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X48 a_11158_13910.t8 VM11D VN.t21 VN.t20 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X49 VP.t0 VM14D.t17 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X50 VP.t126 VM8D.t40 a_19136_919.t28 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X51 VM12G VM14D.t18 VP.t12 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X52 a_19136_919.t66 VM8D.t41 VP.t125 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X53 VM3D.t14 a_216_n2258.t26 VM22D.t3 VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X54 VM12D.t59 VM2D VM11D VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X55 a_19136_9959.t9 VM8D.t42 VP.t124 VP.t30 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X56 VM9D.t33 VM9D.t32 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X57 VM12G VM14D.t19 VP.t7 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X58 VP.t123 VM8D.t43 a_19136_919.t57 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X59 VM3G.t1 a_13386_4078.t1 VN.t47 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X60 I_ref.t18 VM22D.t23 a_216_n2258.t1 VN.t38 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X61 VP.t122 VM8D.t44 a_19136_919.t56 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X62 VP.t121 VM8D.t45 a_19136_919.t39 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X63 VM3D.t13 a_216_n2258.t27 VM22D.t5 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X64 a_19136_919.t15 VM8D.t46 VM14D.t11 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X65 VM11D VM2D VM12D.t58 VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X66 VM11D VM2D VM12D.t57 VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X67 a_19706_n4664.t0 a_19176_n2232.t0 VN.t31 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X68 VM9D.t31 VM9D.t30 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X69 VM12D.t56 VM2D VM11D VN.t67 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X70 a_19136_919.t38 VM8D.t47 VP.t120 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X71 VM12D.t55 VM2D VM11D VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X72 a_19136_919.t31 VM8D.t48 VP.t119 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X73 VP.t118 VM8D.t49 a_19136_919.t30 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X74 VM3D.t22 VM3G.t2 VN.t56 VN.t55 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X75 VM12D.t54 VM2D VM11D VN.t92 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X76 VM12D.t53 VM2D VM11D VN.t71 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X77 VM11D VM2D VM12D.t52 VN.t81 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X78 a_19136_7699.t10 VM8D.t21 VM8D.t22 VP.t54 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X79 VM12G VM14D.t20 VP.t21 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X80 VP.t117 VM8D.t50 a_19136_919.t68 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X81 VP.t116 VM8D.t51 a_19136_919.t67 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X82 a_19136_919.t59 VM8D.t52 VP.t115 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X83 VN.t52 VM12G VM12D.t1 VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X84 a_19136_919.t58 VM8D.t53 VP.t114 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X85 a_19136_919.t27 VM8D.t54 VM14D.t10 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X86 VP.t19 VM14D.t21 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X87 a_19136_919.t49 VM8D.t55 VM14D.t9 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X88 VM12D.t51 VM2D VM11D VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X89 a_216_n2258.t0 VM22D.t24 I_ref.t17 VN.t41 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X90 VM8D.t4 VM9D.t46 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X91 VM11D VM2D VM12D.t50 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X92 VM2D VM9D.t28 VM9D.t29 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X93 VP.t107 VM8D.t56 a_19136_7699.t8 VP.t90 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X94 a_19136_9959.t8 VM8D.t57 VP.t108 VP.t66 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X95 VP.t15 VM14D.t22 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X96 a_19136_919.t41 VM8D.t58 VP.t113 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X97 a_19136_919.t40 VM8D.t59 VP.t112 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X98 VM12D.t49 VM2D VM11D VN.t92 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X99 VM9D.t27 VM9D.t26 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X100 VM12G VM14D.t23 VP.t2 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X101 VP.t111 VM8D.t60 a_19136_919.t0 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X102 VN.t101 VP.t23 sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X103 VP.t110 VM8D.t61 a_19136_n1351.t7 VP.t24 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X104 a_216_n2258.t15 VM22D.t25 I_ref.t16 VN.t29 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X105 a_11158_13910.t7 VM11D VN.t17 VN.t16 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X106 VP.t109 VM8D.t62 a_19136_9959.t7 VP.t90 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X107 VM12D.t48 VM2D VM11D VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X108 VM9D.t25 VM9D.t24 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X109 a_19136_9959.t11 VM8D.t63 VM9D.t41 VP.t54 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X110 a_19706_n4664.t1 a_20236_n2232.t0 VN.t31 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X111 a_11158_13910.t6 VM11D VN.t19 VN.t18 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X112 a_18646_n4664.t0 a_216_n2258.t20 VN.t31 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X113 VP.t106 VM8D.t64 a_19136_919.t42 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X114 I_ref.t15 VM22D.t26 a_216_n2258.t10 VN.t42 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X115 VM12D.t47 VM2D VM11D VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X116 VM11D VM9D.t47 VM8D.t0 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X117 VM11D VM2D VM12D.t46 VN.t66 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X118 VM12D.t0 VM12G VN.t51 VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X119 VM2D VM9D.t22 VM9D.t23 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X120 VM12G VM14D.t24 VP.t14 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X121 VM11D VM9D.t48 VM8D.t18 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X122 VM11D VM9D.t49 VM8D.t15 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X123 VM12D.t45 VM2D VM11D VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X124 VM11D VM2D VM12D.t44 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X125 a_19136_919.t48 VM8D.t65 VP.t105 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X126 VM2D VM9D.t20 VM9D.t21 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X127 VP.t13 VM14D.t25 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X128 a_19136_919.t10 VM8D.t66 VM14D.t8 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X129 VM8D.t14 VM9D.t50 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X130 VP.t104 VM8D.t67 a_19136_9959.t6 VP.t38 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X131 VM11D VM2D VM12D.t43 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X132 VP.t138 VM8D.t2 sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X133 VM11D VM2D VM12D.t42 VN.t81 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X134 VM11D VM2D VM12D.t41 VN.t77 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X135 VM8D.t3 VM9D.t51 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X136 VM12D.t40 VM2D VM11D VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X137 VP.t102 VM8D.t68 a_19136_7699.t7 VP.t90 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X138 a_19136_919.t32 VM8D.t69 VP.t103 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X139 VM11D VM2D VM12D.t39 VN.t75 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X140 VM3D.t23 VM3G.t3 VN.t57 VN.t45 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X141 VP.t101 VM8D.t70 a_19136_919.t37 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X142 I_ref.t14 VM22D.t27 a_216_n2258.t9 VN.t59 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X143 a_216_n2258.t18 VM22D.t28 I_ref.t13 VN.t0 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X144 VM11D VM2D VM12D.t38 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X145 VP.t100 VM8D.t71 a_19136_919.t36 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X146 VM11D VM9D.t52 VM8D.t10 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X147 I_ref.t12 VM22D.t29 a_216_n2258.t17 VN.t42 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X148 a_216_n2258.t13 VM22D.t30 I_ref.t11 VN.t41 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X149 I_ref.t10 VM22D.t31 a_216_n2258.t14 VN.t38 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X150 VM12D.t37 VM2D VM11D VN.t69 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X151 VP.t5 VM14D.t26 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X152 VM2D VM2D VN.t96 VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X153 VM11D VM2D VM12D.t36 VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X154 a_19136_n1351.t10 VM8D.t72 VM22D.t18 VP.t99 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X155 I_ref.t9 VM22D.t32 a_216_n2258.t5 VN.t2 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X156 a_216_n2258.t4 VM22D.t33 I_ref.t8 VN.t1 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X157 I_ref.t7 VM22D.t34 a_216_n2258.t16 VN.t30 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X158 VM12D.t35 VM2D VM11D VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X159 VM12D.t34 VM2D VM11D VN.t67 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X160 a_19136_919.t11 VM8D.t73 VP.t98 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X161 a_19136_919.t3 VM8D.t74 VP.t97 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X162 VM12G VM14D.t27 VP.t8 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X163 VN.t95 VM2D VM2D VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X164 I_ref.t6 VM22D.t35 a_216_n2258.t11 VN.t30 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X165 a_216_n2258.t19 VM22D.t36 I_ref.t5 VN.t39 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X166 VN.t94 VM2D VM2D VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X167 a_19136_n1351.t6 VM8D.t75 VP.t96 VP.t95 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X168 VP.t94 VM8D.t76 a_19136_919.t53 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X169 VN.t93 VM2D VM2D VN.t92 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X170 VM12D.t33 VM2D VM11D VN.t71 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X171 VM11D VM2D VM12D.t32 VN.t81 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X172 VN.t46 VM3G.t4 VM3D.t20 VN.t45 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X173 VP.t93 VM8D.t77 a_19136_919.t22 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X174 VP.t91 VM8D.t78 a_19136_9959.t5 VP.t90 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X175 a_19136_7699.t6 VM8D.t79 VP.t92 VP.t66 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X176 VP.t89 VM8D.t80 a_19136_919.t19 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X177 a_19136_919.t50 VM8D.t81 VM14D.t7 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X178 VM12D.t31 VM2D VM11D VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X179 VN.t91 VM2D VM2D VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X180 VP.t88 VM8D.t82 a_19136_n1351.t5 VP.t63 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X181 VN.t15 VM11D a_11158_13910.t5 VN.t14 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X182 VM2D VM2D VN.t90 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X183 a_19136_919.t51 VM8D.t83 VM14D.t6 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X184 VM12D.t30 VM2D VM11D VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X185 a_19136_919.t64 VM8D.t84 VP.t87 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X186 VM2D VM2D VN.t89 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X187 VN.t88 VM2D VM2D VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X188 VM12G a_13386_4078.t0 VN.t34 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X189 VM3D.t12 a_216_n2258.t28 VM22D.t14 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X190 VN.t13 VM11D a_11158_13910.t4 VN.t12 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X191 a_19136_n1351.t4 VM8D.t85 VP.t70 VP.t36 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X192 VM9D.t19 VM9D.t18 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X193 VM8D.t9 VM9D.t53 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X194 VM12D.t29 VM2D VM11D VN.t69 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X195 a_216_n2258.t8 VM22D.t37 I_ref.t4 VN.t1 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X196 VM12D.t28 VM2D VM11D VN.t67 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X197 VM9D.t17 VM9D.t16 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X198 VP.t86 VM8D.t86 a_19136_919.t63 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X199 VP.t85 VM8D.t87 a_19136_919.t61 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X200 VM22D.t12 a_216_n2258.t29 VM3D.t11 VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X201 VM11D VM2D VM12D.t27 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X202 VM11D VM2D VM12D.t26 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X203 VP.t84 VM8D.t88 a_19136_919.t60 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X204 VM11D VM9D.t54 VM8D.t12 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X205 VP.t10 VM14D.t28 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X206 VN.t54 VM3G.t5 VM3D.t21 VN.t53 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X207 VM11D VM2D VM12D.t25 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X208 a_17176_1646.t0 a_17706_4078.t0 VN.t27 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X209 VM8D.t20 VM9D.t55 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X210 VM12G VM14D.t29 VP.t11 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X211 a_19136_919.t25 VM8D.t89 VP.t83 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X212 VP.t4 VM11D a_11158_13910.t0 VP.t3 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X213 VP.t82 VM8D.t90 a_19136_919.t24 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X214 VM2D VM9D.t14 VM9D.t15 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X215 a_19136_919.t13 VM8D.t91 VM14D.t5 VP.t81 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X216 VM12D.t24 VM2D VM11D VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X217 VM8D.t13 a_11158_13910.t11 VN.t44 VN.t43 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=500000u l=2e+06u
+X218 VP.t80 VM8D.t92 a_19136_919.t12 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X219 a_19136_7699.t5 VM8D.t93 VP.t79 VP.t66 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X220 VN.t87 VM2D VM2D VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X221 VM2D VM2D VN.t86 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X222 I_ref.t3 VM22D.t38 a_216_n2258.t12 VN.t2 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X223 VM11D VM2D VM12D.t23 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X224 VM2D VM9D.t12 VM9D.t13 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X225 VM8D.t11 VM9D.t56 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X226 VM2D VM2D VN.t85 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X227 a_19136_919.t14 VM8D.t94 VM14D.t4 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X228 VP.t78 VM8D.t95 a_19136_919.t43 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X229 VN.t84 VM2D VM2D VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X230 VM2D VM9D.t10 VM9D.t11 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X231 VP.t77 VM8D.t96 a_19136_7699.t4 VP.t38 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X232 VM2D VM2D VN.t83 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X233 a_19136_919.t33 VM8D.t97 VP.t76 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X234 a_216_n2258.t2 VM22D.t39 I_ref.t2 VN.t29 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X235 VM2D VM2D VN.t82 VN.t81 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X236 VM11D VM2D VM12D.t22 VN.t77 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X237 a_19136_919.t70 VM8D.t98 VP.t75 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X238 VN.t80 VM2D VM2D VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X239 VN.t102 VP.t22 sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X240 VN.t79 VM2D VM2D VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X241 VM2D VM2D VN.t78 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X242 VM9D.t9 VM9D.t8 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X243 VM11D VM2D VM12D.t21 VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X244 VP.t74 VM8D.t99 a_19136_919.t69 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X245 VM11D VM2D VM12D.t20 VN.t77 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X246 VM9D.t7 VM9D.t6 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X247 VM11D VM2D VM12D.t19 VN.t75 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X248 VM12D.t18 VM2D VM11D VN.t76 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X249 VM11D VM9D.t57 VM8D.t25 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X250 VM12D.t17 VM2D VM11D VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X251 VP.t73 VM8D.t100 a_19136_n1351.t3 VP.t72 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X252 VM12D.t16 VM2D VM11D VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X253 VM11D VM2D VM12D.t15 VN.t75 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X254 VP.t69 VM8D.t101 a_19136_7699.t3 VP.t32 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X255 VP.t71 VM8D.t102 a_19136_919.t71 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X256 VM12D.t14 VM2D VM11D VN.t69 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X257 VM12D.t13 VM2D VM11D VN.t74 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X258 VP.t68 VM8D.t103 a_19136_919.t44 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X259 VN.t11 VM11D a_11158_13910.t3 VN.t10 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X260 VN.t50 VM12G VM14D.t1 VN.t48 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X261 VN.t73 VM2D VM2D VN.t72 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X262 a_19136_9959.t4 VM8D.t104 VP.t67 VP.t66 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X263 a_16116_1646.t1 a_16646_4078.t1 VN.t27 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X264 VM2D VM9D.t4 VM9D.t5 VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X265 VM3D.t10 a_216_n2258.t30 VM22D.t7 VN.t33 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X266 VM11D VM9D.t58 VM8D.t19 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X267 VP.t17 VM14D.t30 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X268 a_19136_919.t45 VM8D.t105 VP.t65 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X269 VP.t64 VM8D.t106 a_19136_n1351.t2 VP.t63 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X270 VM3D.t9 a_216_n2258.t31 VM22D.t17 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X271 VM11D VM2D VM12D.t12 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X272 VM12D.t11 VM2D VM11D VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X273 VM3G.t0 a_14526_4078.t0 VN.t4 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X274 VP.t62 VM8D.t107 a_19136_919.t47 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X275 VM12D.t10 VM2D VM11D VN.t71 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X276 a_19136_919.t2 VM8D.t108 VM14D.t3 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X277 VP.t59 VM8D.t109 a_19136_7699.t2 VP.t38 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X278 VM3D.t8 a_216_n2258.t32 VM22D.t20 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X279 VM22D.t8 a_216_n2258.t33 VM3D.t7 VN.t28 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X280 VP.t61 VM8D.t110 a_19136_919.t34 VP.t60 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X281 a_19136_919.t9 VM8D.t111 VP.t58 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X282 VN.t9 VM11D a_11158_13910.t2 VN.t8 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X283 VP.t57 VM8D.t112 a_19136_919.t5 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X284 VM22D.t15 a_216_n2258.t34 VM3D.t6 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X285 VP.t56 VM8D.t113 a_19136_919.t4 VP.t55 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X286 VN.t7 VM11D a_11158_13910.t1 VN.t6 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X287 VN.t70 VM2D VM2D VN.t69 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X288 a_19136_9959.t10 VM8D.t114 VM9D.t40 VP.t54 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X289 VN.t58 a_17706_4078.t1 VN.t27 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X290 VP.t53 VM8D.t115 a_19136_919.t23 VP.t52 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X291 VM9D.t3 VM9D.t2 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X292 VN.t68 VM2D VM2D VN.t67 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X293 VM14D.t0 VM12G VN.t49 VN.t48 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X294 VM11D VM2D VM12D.t9 VN.t66 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X295 a_19136_919.t65 VM8D.t116 VP.t51 VP.t50 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X296 VM2D VM2D VN.t65 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X297 VM8D.t8 VM9D.t59 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X298 a_19136_9959.t3 VM8D.t117 VP.t49 VP.t30 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X299 VP.t48 VM8D.t118 a_19136_7699.t1 VP.t32 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X300 a_19136_919.t17 VM8D.t119 VP.t47 VP.t46 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X301 a_16116_1646.t0 a_15586_4078.t0 VN.t4 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X302 VM2D VM2D VN.t64 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X303 VP.t45 VM8D.t120 a_19136_919.t26 VP.t44 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X304 a_216_n2258.t7 VM22D.t40 I_ref.t1 VN.t39 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X305 VM12D.t8 VM2D VM11D VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X306 VM11D VM2D VM12D.t7 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X307 VM2D VM2D VN.t63 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X308 VP.t43 VM8D.t121 a_19136_919.t16 VP.t42 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X309 VM11D VM9D.t60 VM8D.t5 VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X310 a_15056_1646.t1 a_15586_4078.t1 VN.t4 sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X311 VM2D VM2D VN.t62 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X312 VP.t18 VM14D.t31 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X313 a_19136_919.t7 VM8D.t122 VM14D.t2 VP.t41 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X314 VP.t40 VM8D.t123 a_19136_9959.t2 VP.t32 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X315 VP.t39 VM8D.t124 a_19136_9959.t1 VP.t38 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X316 VM11D VM2D VM12D.t6 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X317 VN.t61 VM2D VM2D VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X318 VM12D.t5 VM2D VM11D VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X319 VN.t60 VM2D VM2D VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X320 a_19136_n1351.t1 VM8D.t125 VP.t37 VP.t36 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X321 VM22D.t2 a_216_n2258.t35 VM3D.t5 VN.t26 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X322 VM8D.t7 VM9D.t61 VM11D VM11D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X323 VM22D.t0 a_216_n2258.t36 VM3D.t4 VN.t3 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X324 VM22D.t1 a_216_n2258.t37 VM3D.t3 VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X325 VM3D.t2 a_216_n2258.t38 VM22D.t4 VN.t5 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X326 VM11D VM2D VM12D.t4 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X327 a_19136_919.t35 VM8D.t126 VP.t35 VP.t34 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X328 VM12G VM14D.t32 VP.t9 VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X329 VM11D VM2D VM12D.t3 VN.t32 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X330 VP.t33 VM8D.t127 a_19136_9959.t0 VP.t32 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X331 a_19136_7699.t0 VM8D.t128 VP.t31 VP.t30 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X332 VP.t29 VM8D.t129 a_19136_919.t46 VP.t28 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X333 VM22D.t11 a_216_n2258.t39 VM3D.t1 VN.t40 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X334 VM3D.t0 a_216_n2258.t40 VM22D.t13 VN.t35 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X335 VM9D.t1 VM9D.t0 VM2D VM2D sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X336 a_19136_919.t6 VM8D.t130 VP.t27 VP.t26 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X337 VM11D VM2D VM12D.t2 VN.t36 sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X338 VP.t16 VM14D.t33 VM12G VM12G sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X339 VP.t25 VM8D.t131 a_19136_n1351.t0 VP.t24 sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X340 a_216_n2258.t6 VM22D.t41 I_ref.t0 VN.t0 sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+R0 VN.t33 VN.t74 1024.98
+R1 VN.t32 VN.t76 1024.98
+R2 VN.t48 VN.n61 719.811
+R3 VN.t48 VN.n58 719.811
+R4 VN.n139 VN.n138 628.873
+R5 VN.n136 VN.n135 628.873
+R6 VN.t72 VN.n65 628.873
+R7 VN.n240 VN.t20 587.883
+R8 VN.n267 VN.t14 587.883
+R9 VN.n159 VN.n158 583.954
+R10 VN.n155 VN.n154 583.954
+R11 VN.n151 VN.n150 583.954
+R12 VN.n143 VN.n142 583.954
+R13 VN.t72 VN.n56 583.954
+R14 VN.n53 VN.n52 583.954
+R15 VN.n49 VN.n48 583.954
+R16 VN.n95 VN.t31 488.392
+R17 VN.n61 VN.n60 487.115
+R18 VN.n103 VN.t47 364.831
+R19 VN.n103 VN.t34 364.831
+R20 VN.n114 VN.t4 364.831
+R21 VN.n114 VN.t27 364.831
+R22 VN.t20 VN.t10 353.442
+R23 VN.t6 VN.t18 353.442
+R24 VN.t16 VN.t6 353.442
+R25 VN.t8 VN.t22 353.442
+R26 VN.t22 VN.t12 353.442
+R27 VN.t14 VN.t24 353.442
+R28 VN.n165 VN.n164 349.735
+R29 VN.t31 VN.n94 349.691
+R30 VN.n91 VN.t2 318.504
+R31 VN.n123 VN.t29 318.504
+R32 VN.n100 VN.n99 317.542
+R33 VN.n133 VN.n132 314.436
+R34 VN.n22 VN.n21 296.411
+R35 VN.t33 VN.n20 279.14
+R36 VN.n90 VN.n89 256.926
+R37 VN.t69 VN.t77 254.146
+R38 VN.t81 VN.t69 254.146
+R39 VN.t72 VN.t81 254.146
+R40 VN.t72 VN.t71 254.146
+R41 VN.t67 VN.t66 254.146
+R42 VN.t75 VN.t67 254.146
+R43 VN.n101 VN.n100 228.692
+R44 VN.t33 VN.n165 203.294
+R45 VN.n101 VN.n98 188.988
+R46 VN.t2 VN.t39 188.739
+R47 VN.t1 VN.t42 188.739
+R48 VN.t59 VN.t1 188.739
+R49 VN.t41 VN.t30 188.739
+R50 VN.t30 VN.t0 188.739
+R51 VN.t29 VN.t38 188.739
+R52 VN.n249 VN.n246 182.211
+R53 VN.n271 VN.t16 176.721
+R54 VN.n271 VN.t8 176.721
+R55 VN.t75 VN.n43 156.16
+R56 VN.t32 VN.n26 156.16
+R57 VN.n149 VN.n148 154.88
+R58 VN.t75 VN.n42 154.88
+R59 VN.n34 VN.n33 154.88
+R60 VN.n36 VN.n35 154.88
+R61 VN.n128 VN.n127 151.392
+R62 VN.t3 VN.t36 145.567
+R63 VN.t40 VN.t3 145.567
+R64 VN.t26 VN.t40 145.567
+R65 VN.t26 VN.t35 145.567
+R66 VN.t35 VN.t28 145.567
+R67 VN.t28 VN.t5 145.567
+R68 VN.t5 VN.t32 145.567
+R69 VN.n111 VN.n110 143.811
+R70 VN.t75 VN.n66 138.24
+R71 VN.n131 VN.n90 133.415
+R72 VN.n132 VN.n131 128.64
+R73 VN.n66 VN.t72 122.497
+R74 VN.n40 VN.n39 119.296
+R75 VN.n116 VN.n111 115.2
+R76 VN.n31 VN.n30 109.056
+R77 VN.n74 VN.n72 108.4
+R78 VN.n120 VN.t59 94.369
+R79 VN.n120 VN.t41 94.369
+R80 VN.n127 VN.n126 85.221
+R81 VN.n125 VN.n124 51.643
+R82 VN.n256 VN.n253 47.045
+R83 VN.n64 VN.n63 45.968
+R84 VN.n45 VN.n44 45.056
+R85 VN.n84 VN.n83 45.056
+R86 VN.n81 VN.n80 45.056
+R87 VN.n258 VN.t44 34.853
+R88 VN.n118 VN.n97 30.519
+R89 VN.n118 VN.n117 30.519
+R90 VN.n111 VN.n105 30.4
+R91 VN.n128 VN.n125 29.999
+R92 VN.n96 VN.n92 25.845
+R93 VN.n274 VN.n273 24.045
+R94 VN.t48 VN.n62 23.421
+R95 VN.n63 VN.t48 22.264
+R96 VN.n244 VN.n243 22.198
+R97 VN.n125 VN.n122 21.045
+R98 VN.n253 VN.n249 18.447
+R99 VN.n96 VN.n95 17.962
+R100 VN.n122 VN.n96 17.175
+R101 VN.n39 VN.n38 16.64
+R102 VN.n243 VN.n241 12.8
+R103 VN.n164 VN.n163 11.224
+R104 VN.n30 VN.n29 10.24
+R105 VN.n74 VN.n73 9.154
+R106 VN.n172 VN.n171 9.154
+R107 VN.n208 VN.t50 6.258
+R108 VN.n210 VN.t51 5.724
+R109 VN.n148 VN.n147 5.44
+R110 VN.n6 VN.t94 5.013
+R111 VN.n75 VN.t62 5.001
+R112 VN.n209 VN.t52 4.961
+R113 VN.n228 VN.t93 4.919
+R114 VN.t33 VN.t95 4.919
+R115 VN.t75 VN.t99 4.916
+R116 VN.t32 VN.t63 4.916
+R117 VN.n265 VN.t25 4.35
+R118 VN.n265 VN.t15 4.35
+R119 VN.n238 VN.t21 4.35
+R120 VN.n238 VN.t11 4.35
+R121 VN.n260 VN.t19 4.35
+R122 VN.n260 VN.t7 4.35
+R123 VN.n237 VN.t17 4.35
+R124 VN.n237 VN.t9 4.35
+R125 VN.n263 VN.t23 4.35
+R126 VN.n263 VN.t13 4.35
+R127 VN.n185 VN.t56 4.35
+R128 VN.n70 VN.t89 4.35
+R129 VN.n70 VN.t84 4.35
+R130 VN.n9 VN.t85 4.35
+R131 VN.n9 VN.t79 4.35
+R132 VN.n8 VN.t78 4.35
+R133 VN.n8 VN.t88 4.35
+R134 VN.n7 VN.t64 4.35
+R135 VN.n7 VN.t60 4.35
+R136 VN.n67 VN.t97 4.35
+R137 VN.n67 VN.t68 4.35
+R138 VN.n229 VN.t96 4.35
+R139 VN.n229 VN.t98 4.35
+R140 VN.n231 VN.t82 4.35
+R141 VN.n231 VN.t73 4.35
+R142 VN.n233 VN.t100 4.35
+R143 VN.n233 VN.t70 4.35
+R144 VN.n77 VN.t90 4.35
+R145 VN.n77 VN.t87 4.35
+R146 VN.n16 VN.t86 4.35
+R147 VN.n16 VN.t80 4.35
+R148 VN.n15 VN.t83 4.35
+R149 VN.n15 VN.t91 4.35
+R150 VN.n14 VN.t65 4.35
+R151 VN.n14 VN.t61 4.35
+R152 VN.n174 VN.t57 4.35
+R153 VN.n174 VN.t46 4.35
+R154 VN.n0 VN.t54 4.35
+R155 VN.n204 VN.t49 4.35
+R156 VN.n274 VN.n268 3.899
+R157 VN.n275 VN.n274 3.28
+R158 VN.n117 VN.n116 3.142
+R159 VN.n65 VN.n64 2.876
+R160 VN.n52 VN.n51 2.285
+R161 VN.n241 VN.n239 2.258
+R162 VN.n3 VN.n2 1.6
+R163 VN.n207 VN.n206 1.453
+R164 VN.n232 VN.n230 1.428
+R165 VN.n18 VN.n17 1.428
+R166 VN.n11 VN.n10 1.428
+R167 VN.n234 VN.n232 1.425
+R168 VN.n19 VN.n18 1.425
+R169 VN.n12 VN.n11 1.425
+R170 VN.n176 VN.n175 1.31
+R171 VN.n257 VN.n244 1.183
+R172 VN.n69 VN.n68 1.086
+R173 VN.n79 VN.n78 1.086
+R174 VN.n76 VN.n71 1.086
+R175 VN.n276 VN.n266 1.057
+R176 VN.n76 VN.n69 1.043
+R177 VN.n235 VN.n234 0.971
+R178 VN.n200 VN.n19 0.97
+R179 VN.n13 VN.n12 0.969
+R180 VN.n193 VN.n192 0.794
+R181 VN.t33 VN.n193 0.794
+R182 VN.n180 VN.t55 0.698
+R183 VN.n71 VN.n70 0.658
+R184 VN.n10 VN.n9 0.658
+R185 VN.n11 VN.n8 0.658
+R186 VN.n12 VN.n7 0.658
+R187 VN.n68 VN.n67 0.658
+R188 VN.n230 VN.n229 0.658
+R189 VN.n232 VN.n231 0.658
+R190 VN.n234 VN.n233 0.658
+R191 VN.n78 VN.n77 0.658
+R192 VN.n17 VN.n16 0.658
+R193 VN.n18 VN.n15 0.658
+R194 VN.n19 VN.n14 0.658
+R195 VN.n266 VN.n265 0.642
+R196 VN.n259 VN.n238 0.642
+R197 VN.n261 VN.n260 0.642
+R198 VN.n262 VN.n237 0.642
+R199 VN.n264 VN.n263 0.642
+R200 VN.n79 VN.n76 0.576
+R201 VN.n207 VN.n205 0.556
+R202 VN.t33 VN.n199 0.5
+R203 VN.t32 VN.n82 0.5
+R204 VN.n225 VN.n224 0.5
+R205 VN.n46 VN.n45 0.5
+R206 VN.t75 VN.n46 0.5
+R207 VN.n82 VN.n81 0.5
+R208 VN.n85 VN.n84 0.5
+R209 VN.t32 VN.n85 0.5
+R210 VN.n199 VN.n198 0.5
+R211 VN.n224 VN.n223 0.5
+R212 VN.n236 VN.n235 0.49
+R213 VN.n201 VN.n200 0.476
+R214 VN.n202 VN.n4 0.475
+R215 VN.n200 VN.t33 0.458
+R216 VN.n235 VN.n228 0.457
+R217 VN.n177 VN.n176 0.449
+R218 VN.n175 VN.n174 0.447
+R219 VN.n13 VN.n6 0.43
+R220 VN.n1 VN.n0 0.428
+R221 VN.n210 VN.n209 0.384
+R222 VN.n150 VN.n149 0.38
+R223 VN.n69 VN.t75 0.342
+R224 VN.t32 VN.n79 0.342
+R225 VN.n76 VN.n75 0.342
+R226 VN.n277 VN.n236 0.339
+R227 VN.n186 VN.n185 0.336
+R228 VN.n209 VN.n208 0.333
+R229 VN.n179 VN.n178 0.287
+R230 VN.n180 VN.n179 0.287
+R231 VN.n259 VN.n258 0.262
+R232 VN.n4 VN.n3 0.255
+R233 VN.n278 VN.t101 0.19
+R234 VN.n211 VN.n203 0.169
+R235 VN.n261 VN.n259 0.121
+R236 VN.n264 VN.n262 0.121
+R237 VN.n266 VN.n264 0.12
+R238 VN.n262 VN.n261 0.117
+R239 VN.n277 VN.n276 0.116
+R240 VN.n236 VN.n211 0.1
+R241 VN.n4 VN.t58 0.072
+R242 VN.n249 VN.n248 0.068
+R243 VN.t101 VN.t102 0.062
+R244 VN.t102 VN.n277 0.061
+R245 VN.n246 VN.n245 0.061
+R246 VN.n243 VN.n242 0.061
+R247 VN.n253 VN.n252 0.054
+R248 VN.n252 VN.t43 0.054
+R249 VN.n183 VN.n182 0.048
+R250 VN.n182 VN.n181 0.048
+R251 VN.t33 VN.n197 0.044
+R252 VN.n197 VN.n196 0.044
+R253 VN.t33 VN.n169 0.042
+R254 VN.t32 VN.n32 0.042
+R255 VN.n216 VN.n215 0.042
+R256 VN.n41 VN.n40 0.042
+R257 VN.n32 VN.n31 0.042
+R258 VN.n169 VN.n168 0.042
+R259 VN.n215 VN.n214 0.042
+R260 VN.t75 VN.n41 0.042
+R261 VN.n248 VN.n247 0.037
+R262 VN.n258 VN.n257 0.036
+R263 VN.n257 VN.n256 0.032
+R264 VN.n184 VN.n183 0.029
+R265 VN.t32 VN.n87 0.029
+R266 VN.t33 VN.n195 0.029
+R267 VN.t32 VN.n28 0.029
+R268 VN.t33 VN.n167 0.029
+R269 VN.n216 VN.n213 0.029
+R270 VN.n28 VN.n27 0.029
+R271 VN.n87 VN.n86 0.029
+R272 VN.n185 VN.n184 0.029
+R273 VN.n195 VN.n194 0.029
+R274 VN.n167 VN.n166 0.029
+R275 VN.n213 VN.n212 0.029
+R276 VN.n251 VN.n250 0.027
+R277 VN.t43 VN.n251 0.027
+R278 VN.n75 VN.n74 0.024
+R279 VN.n202 VN.n201 0.024
+R280 VN.n102 VN.n101 0.016
+R281 VN.n103 VN.n102 0.016
+R282 VN.n104 VN.n103 0.016
+R283 VN.n105 VN.n104 0.016
+R284 VN.n241 VN.n240 0.015
+R285 VN.n268 VN.n267 0.015
+R286 VN.n37 VN.n36 0.015
+R287 VN.t32 VN.n37 0.015
+R288 VN.n187 VN.n186 0.015
+R289 VN.t33 VN.n187 0.015
+R290 VN.t33 VN.n189 0.015
+R291 VN.n189 VN.n188 0.015
+R292 VN.t33 VN.n191 0.015
+R293 VN.n191 VN.n190 0.015
+R294 VN.n220 VN.n219 0.015
+R295 VN.t92 VN.n220 0.015
+R296 VN.n218 VN.n217 0.015
+R297 VN.t92 VN.n218 0.015
+R298 VN.n222 VN.n221 0.015
+R299 VN.t92 VN.n222 0.015
+R300 VN.n0 VN.t53 0.015
+R301 VN.t32 VN.n34 0.015
+R302 VN.t33 VN.n170 0.015
+R303 VN.n278 VN 0.014
+R304 VN.n119 VN.n118 0.014
+R305 VN.n120 VN.n119 0.014
+R306 VN.n122 VN.n121 0.014
+R307 VN.n121 VN.n120 0.014
+R308 VN.n270 VN.n269 0.013
+R309 VN.n271 VN.n270 0.013
+R310 VN.n273 VN.n272 0.013
+R311 VN.n272 VN.n271 0.013
+R312 VN.n6 VN.n5 0.011
+R313 VN.n124 VN.n123 0.007
+R314 VN.n92 VN.n91 0.007
+R315 VN.n256 VN.n255 0.006
+R316 VN.n61 VN.n59 0.005
+R317 VN.n58 VN.n57 0.005
+R318 VN.n89 VN.n88 0.005
+R319 VN.n94 VN.n93 0.005
+R320 VN.n147 VN.n146 0.005
+R321 VN.n110 VN.n107 0.005
+R322 VN.n107 VN.n106 0.005
+R323 VN.n110 VN.n109 0.005
+R324 VN.n109 VN.n108 0.005
+R325 VN.n255 VN.n254 0.004
+R326 VN.n116 VN.n115 0.003
+R327 VN.n115 VN.n114 0.003
+R328 VN.n113 VN.n112 0.003
+R329 VN.n114 VN.n113 0.003
+R330 VN.n129 VN.n128 0.003
+R331 VN.t45 VN.n129 0.003
+R332 VN.n130 VN.t45 0.003
+R333 VN.n131 VN.n130 0.003
+R334 VN.n228 VN.n227 0.002
+R335 VN.n226 VN.n225 0.002
+R336 VN.n173 VN.n172 0.002
+R337 VN.n23 VN.n22 0.002
+R338 VN.t28 VN.n23 0.002
+R339 VN.t28 VN.n25 0.002
+R340 VN.n25 VN.n24 0.002
+R341 VN.n227 VN.n226 0.002
+R342 VN.n208 VN.n207 0.001
+R343 VN.n211 VN.n210 0.001
+R344 VN.n163 VN.n162 0.001
+R345 VN.n162 VN.t26 0.001
+R346 VN.t26 VN.n161 0.001
+R347 VN.n160 VN.n159 0.001
+R348 VN.t26 VN.n160 0.001
+R349 VN.t26 VN.n157 0.001
+R350 VN.n156 VN.n155 0.001
+R351 VN.t26 VN.n156 0.001
+R352 VN.t26 VN.n153 0.001
+R353 VN.n152 VN.n151 0.001
+R354 VN.t26 VN.n152 0.001
+R355 VN.t26 VN.n145 0.001
+R356 VN.n144 VN.n143 0.001
+R357 VN.t26 VN.n144 0.001
+R358 VN.t26 VN.n141 0.001
+R359 VN.n140 VN.n139 0.001
+R360 VN.t26 VN.n140 0.001
+R361 VN.n137 VN.n136 0.001
+R362 VN.t26 VN.n137 0.001
+R363 VN.n54 VN.n53 0.001
+R364 VN.t72 VN.n54 0.001
+R365 VN.n50 VN.n49 0.001
+R366 VN.t72 VN.n50 0.001
+R367 VN.t72 VN.n47 0.001
+R368 VN.n134 VN.n133 0.001
+R369 VN.t72 VN.n55 0.001
+R370 VN.t26 VN.n134 0.001
+R371 VN.n205 VN.n204 0.001
+R372 VN.n176 VN.n173 0.001
+R373 VN.n2 VN.n1 0.001
+R374 VN.n276 VN.n275 0.001
+R375 VN.t92 VN.n216 0.001
+R376 VN.n183 VN.n180 0.001
+R377 VN.n225 VN.t92 0.001
+R378 VN.n201 VN.n13 0.001
+R379 VN.n203 VN.n202 0.001
+R380 VN.n185 VN.n177 0.001
+R381 VN.n3 VN.t37 0
+R382 a_17176_1646.t0 a_17176_1646.t1 0.138
+R383 a_16646_4078.t0 a_16646_4078.t1 0.138
+R384 VM8D.n78 VM8D.t91 556.869
+R385 VM8D.n54 VM8D.t28 556.869
+R386 VM8D.n71 VM8D.t55 556.869
+R387 VM8D.n71 VM8D.t122 556.869
+R388 VM8D.n108 VM8D.t66 556.869
+R389 VM8D.n84 VM8D.t83 556.869
+R390 VM8D.n101 VM8D.t108 556.869
+R391 VM8D.n101 VM8D.t94 556.869
+R392 VM8D.n138 VM8D.t38 556.869
+R393 VM8D.n114 VM8D.t54 556.869
+R394 VM8D.n131 VM8D.t81 556.869
+R395 VM8D.n131 VM8D.t46 556.869
+R396 VM8D.n153 VM8D.t72 556.869
+R397 VM8D.n156 VM8D.t39 556.869
+R398 VM8D.n170 VM8D.t23 556.869
+R399 VM8D.n170 VM8D.t21 556.869
+R400 VM8D.n38 VM8D.t114 556.869
+R401 VM8D.n26 VM8D.t63 556.869
+R402 VM8D.n139 VM8D.t100 112.215
+R403 VM8D.n76 VM8D.t110 111.828
+R404 VM8D.n52 VM8D.t43 111.828
+R405 VM8D.n51 VM8D.t69 111.828
+R406 VM8D.n50 VM8D.t90 111.828
+R407 VM8D.n73 VM8D.t119 111.828
+R408 VM8D.n72 VM8D.t86 111.828
+R409 VM8D.n69 VM8D.t99 111.828
+R410 VM8D.n68 VM8D.t98 111.828
+R411 VM8D.n67 VM8D.t51 111.828
+R412 VM8D.n66 VM8D.t48 111.828
+R413 VM8D.n65 VM8D.t45 111.828
+R414 VM8D.n75 VM8D.t31 111.828
+R415 VM8D.n74 VM8D.t50 111.828
+R416 VM8D.n73 VM8D.t73 111.828
+R417 VM8D.n72 VM8D.t44 111.828
+R418 VM8D.n69 VM8D.t60 111.828
+R419 VM8D.n68 VM8D.t59 111.828
+R420 VM8D.n67 VM8D.t120 111.828
+R421 VM8D.n66 VM8D.t116 111.828
+R422 VM8D.n65 VM8D.t112 111.828
+R423 VM8D.n106 VM8D.t87 111.828
+R424 VM8D.n82 VM8D.t102 111.828
+R425 VM8D.n81 VM8D.t130 111.828
+R426 VM8D.n80 VM8D.t40 111.828
+R427 VM8D.n103 VM8D.t65 111.828
+R428 VM8D.n102 VM8D.t36 111.828
+R429 VM8D.n99 VM8D.t49 111.828
+R430 VM8D.n98 VM8D.t47 111.828
+R431 VM8D.n97 VM8D.t107 111.828
+R432 VM8D.n96 VM8D.t105 111.828
+R433 VM8D.n95 VM8D.t103 111.828
+R434 VM8D.n105 VM8D.t111 111.828
+R435 VM8D.n104 VM8D.t29 111.828
+R436 VM8D.n103 VM8D.t52 111.828
+R437 VM8D.n102 VM8D.t26 111.828
+R438 VM8D.n99 VM8D.t35 111.828
+R439 VM8D.n98 VM8D.t33 111.828
+R440 VM8D.n97 VM8D.t92 111.828
+R441 VM8D.n96 VM8D.t89 111.828
+R442 VM8D.n95 VM8D.t88 111.828
+R443 VM8D.n136 VM8D.t95 111.828
+R444 VM8D.n112 VM8D.t70 111.828
+R445 VM8D.n111 VM8D.t97 111.828
+R446 VM8D.n110 VM8D.t121 111.828
+R447 VM8D.n133 VM8D.t37 111.828
+R448 VM8D.n132 VM8D.t113 111.828
+R449 VM8D.n129 VM8D.t129 111.828
+R450 VM8D.n128 VM8D.t126 111.828
+R451 VM8D.n127 VM8D.t77 111.828
+R452 VM8D.n126 VM8D.t74 111.828
+R453 VM8D.n125 VM8D.t71 111.828
+R454 VM8D.n135 VM8D.t41 111.828
+R455 VM8D.n134 VM8D.t30 111.828
+R456 VM8D.n133 VM8D.t84 111.828
+R457 VM8D.n132 VM8D.t64 111.828
+R458 VM8D.n129 VM8D.t76 111.828
+R459 VM8D.n128 VM8D.t53 111.828
+R460 VM8D.n127 VM8D.t80 111.828
+R461 VM8D.n126 VM8D.t58 111.828
+R462 VM8D.n125 VM8D.t115 111.828
+R463 VM8D.n141 VM8D.t85 111.828
+R464 VM8D.n140 VM8D.t106 111.828
+R465 VM8D.n139 VM8D.t27 111.828
+R466 VM8D.n142 VM8D.t61 111.828
+R467 VM8D.n152 VM8D.t131 111.828
+R468 VM8D.n151 VM8D.t125 111.828
+R469 VM8D.n150 VM8D.t82 111.828
+R470 VM8D.n149 VM8D.t75 111.828
+R471 VM8D.n148 VM8D.t32 111.828
+R472 VM8D.n165 VM8D.t34 111.828
+R473 VM8D.n166 VM8D.t118 111.828
+R474 VM8D.n167 VM8D.t93 111.828
+R475 VM8D.n168 VM8D.t68 111.828
+R476 VM8D.n164 VM8D.t109 111.828
+R477 VM8D.n168 VM8D.t56 111.828
+R478 VM8D.n167 VM8D.t79 111.828
+R479 VM8D.n166 VM8D.t101 111.828
+R480 VM8D.n165 VM8D.t128 111.828
+R481 VM8D.n164 VM8D.t96 111.828
+R482 VM8D.n28 VM8D.t117 111.828
+R483 VM8D.n29 VM8D.t123 111.828
+R484 VM8D.n30 VM8D.t57 111.828
+R485 VM8D.n31 VM8D.t62 111.828
+R486 VM8D.n27 VM8D.t67 111.828
+R487 VM8D.n24 VM8D.t78 111.828
+R488 VM8D.n23 VM8D.t104 111.828
+R489 VM8D.n27 VM8D.t124 111.828
+R490 VM8D.n28 VM8D.t42 111.828
+R491 VM8D.n29 VM8D.t127 111.828
+R492 VM8D.n175 VM8D.t13 39.071
+R493 VM8D.n172 VM8D.t24 7.903
+R494 VM8D.n172 VM8D.t22 7.871
+R495 VM8D.n12 VM8D.t15 4.35
+R496 VM8D.n12 VM8D.t6 4.35
+R497 VM8D.n9 VM8D.t1 4.35
+R498 VM8D.n9 VM8D.t8 4.35
+R499 VM8D.n6 VM8D.t5 4.35
+R500 VM8D.n6 VM8D.t9 4.35
+R501 VM8D.n3 VM8D.t12 4.35
+R502 VM8D.n3 VM8D.t20 4.35
+R503 VM8D.n0 VM8D.t18 4.35
+R504 VM8D.n0 VM8D.t16 4.35
+R505 VM8D.n1 VM8D.t10 4.35
+R506 VM8D.n1 VM8D.t4 4.35
+R507 VM8D.n4 VM8D.t25 4.35
+R508 VM8D.n4 VM8D.t3 4.35
+R509 VM8D.n7 VM8D.t17 4.35
+R510 VM8D.n7 VM8D.t7 4.35
+R511 VM8D.n10 VM8D.t0 4.35
+R512 VM8D.n10 VM8D.t14 4.35
+R513 VM8D.n13 VM8D.t19 4.35
+R514 VM8D.n13 VM8D.t11 4.35
+R515 VM8D.n157 VM8D.n156 1.081
+R516 VM8D.n174 VM8D.n14 1.079
+R517 VM8D.n40 VM8D.n39 1.015
+R518 VM8D VM8D.n174 0.983
+R519 VM8D.n70 VM8D.n59 0.958
+R520 VM8D.n70 VM8D.n64 0.958
+R521 VM8D.n100 VM8D.n89 0.958
+R522 VM8D.n100 VM8D.n94 0.958
+R523 VM8D.n130 VM8D.n119 0.958
+R524 VM8D.n130 VM8D.n124 0.958
+R525 VM8D.n154 VM8D.n147 0.958
+R526 VM8D.n155 VM8D.n154 0.958
+R527 VM8D.n37 VM8D.n36 0.958
+R528 VM8D.n161 VM8D.n160 0.874
+R529 VM8D.n159 VM8D.n158 0.874
+R530 VM8D.n174 VM8D.n173 0.841
+R531 VM8D.n41 VM8D.n40 0.694
+R532 VM8D.n162 VM8D.n161 0.694
+R533 VM8D.n160 VM8D.n159 0.694
+R534 VM8D.n158 VM8D.n157 0.694
+R535 VM8D.n14 VM8D.n13 0.632
+R536 VM8D.n11 VM8D.n10 0.632
+R537 VM8D.n8 VM8D.n7 0.632
+R538 VM8D.n5 VM8D.n4 0.632
+R539 VM8D.n2 VM8D.n1 0.632
+R540 VM8D.n171 VM8D.n163 0.611
+R541 VM8D.n171 VM8D.n42 0.597
+R542 VM8D.n14 VM8D.n12 0.584
+R543 VM8D.n11 VM8D.n9 0.584
+R544 VM8D.n8 VM8D.n6 0.584
+R545 VM8D.n5 VM8D.n3 0.584
+R546 VM8D.n2 VM8D.n0 0.584
+R547 VM8D.n61 VM8D.n60 0.403
+R548 VM8D.n62 VM8D.n61 0.403
+R549 VM8D.n63 VM8D.n62 0.403
+R550 VM8D.n91 VM8D.n90 0.403
+R551 VM8D.n92 VM8D.n91 0.403
+R552 VM8D.n93 VM8D.n92 0.403
+R553 VM8D.n121 VM8D.n120 0.403
+R554 VM8D.n122 VM8D.n121 0.403
+R555 VM8D.n123 VM8D.n122 0.403
+R556 VM8D.n144 VM8D.n143 0.403
+R557 VM8D.n145 VM8D.n144 0.403
+R558 VM8D.n146 VM8D.n145 0.403
+R559 VM8D.n44 VM8D.n43 0.403
+R560 VM8D.n45 VM8D.n44 0.403
+R561 VM8D.n46 VM8D.n45 0.403
+R562 VM8D.n22 VM8D.n21 0.403
+R563 VM8D.n23 VM8D.n22 0.403
+R564 VM8D.n24 VM8D.n23 0.403
+R565 VM8D.n72 VM8D.n71 0.396
+R566 VM8D.n102 VM8D.n101 0.396
+R567 VM8D.n132 VM8D.n131 0.396
+R568 VM8D.n50 VM8D.n49 0.387
+R569 VM8D.n51 VM8D.n50 0.387
+R570 VM8D.n52 VM8D.n51 0.387
+R571 VM8D.n56 VM8D.n55 0.387
+R572 VM8D.n57 VM8D.n56 0.387
+R573 VM8D.n58 VM8D.n57 0.387
+R574 VM8D.n80 VM8D.n79 0.387
+R575 VM8D.n81 VM8D.n80 0.387
+R576 VM8D.n82 VM8D.n81 0.387
+R577 VM8D.n86 VM8D.n85 0.387
+R578 VM8D.n87 VM8D.n86 0.387
+R579 VM8D.n88 VM8D.n87 0.387
+R580 VM8D.n110 VM8D.n109 0.387
+R581 VM8D.n111 VM8D.n110 0.387
+R582 VM8D.n112 VM8D.n111 0.387
+R583 VM8D.n116 VM8D.n115 0.387
+R584 VM8D.n117 VM8D.n116 0.387
+R585 VM8D.n118 VM8D.n117 0.387
+R586 VM8D.n140 VM8D.n139 0.387
+R587 VM8D.n141 VM8D.n140 0.387
+R588 VM8D.n142 VM8D.n141 0.387
+R589 VM8D.n18 VM8D.n17 0.387
+R590 VM8D.n17 VM8D.n16 0.387
+R591 VM8D.n16 VM8D.n15 0.387
+R592 VM8D.n35 VM8D.n34 0.387
+R593 VM8D.n34 VM8D.n33 0.387
+R594 VM8D.n33 VM8D.n32 0.387
+R595 VM8D.n64 VM8D.n63 0.368
+R596 VM8D.n94 VM8D.n93 0.368
+R597 VM8D.n124 VM8D.n123 0.368
+R598 VM8D.n147 VM8D.n146 0.368
+R599 VM8D.n47 VM8D.n46 0.368
+R600 VM8D.n25 VM8D.n24 0.368
+R601 VM8D.n53 VM8D.n52 0.36
+R602 VM8D.n59 VM8D.n58 0.36
+R603 VM8D.n83 VM8D.n82 0.36
+R604 VM8D.n89 VM8D.n88 0.36
+R605 VM8D.n113 VM8D.n112 0.36
+R606 VM8D.n119 VM8D.n118 0.36
+R607 VM8D.n155 VM8D.n142 0.36
+R608 VM8D.n19 VM8D.n18 0.36
+R609 VM8D.n36 VM8D.n35 0.36
+R610 VM8D.n70 VM8D.n69 0.231
+R611 VM8D.n77 VM8D.n76 0.231
+R612 VM8D.n100 VM8D.n99 0.231
+R613 VM8D.n107 VM8D.n106 0.231
+R614 VM8D.n130 VM8D.n129 0.231
+R615 VM8D.n137 VM8D.n136 0.231
+R616 VM8D.n154 VM8D.n152 0.231
+R617 VM8D.n169 VM8D.n168 0.231
+R618 VM8D.n37 VM8D.n31 0.231
+R619 VM8D.n48 VM8D.n47 0.225
+R620 VM8D.n26 VM8D.n25 0.225
+R621 VM8D.n54 VM8D.n53 0.224
+R622 VM8D.n84 VM8D.n83 0.224
+R623 VM8D.n114 VM8D.n113 0.224
+R624 VM8D.n156 VM8D.n155 0.224
+R625 VM8D.n20 VM8D.n19 0.224
+R626 VM8D.n162 VM8D.n54 0.212
+R627 VM8D.n160 VM8D.n84 0.212
+R628 VM8D.n158 VM8D.n114 0.212
+R629 VM8D.n163 VM8D.n48 0.212
+R630 VM8D.n42 VM8D.n20 0.212
+R631 VM8D.n41 VM8D.n26 0.212
+R632 VM8D.n66 VM8D.n65 0.201
+R633 VM8D.n67 VM8D.n66 0.201
+R634 VM8D.n68 VM8D.n67 0.201
+R635 VM8D.n69 VM8D.n68 0.201
+R636 VM8D.n73 VM8D.n72 0.201
+R637 VM8D.n74 VM8D.n73 0.201
+R638 VM8D.n75 VM8D.n74 0.201
+R639 VM8D.n76 VM8D.n75 0.201
+R640 VM8D.n96 VM8D.n95 0.201
+R641 VM8D.n97 VM8D.n96 0.201
+R642 VM8D.n98 VM8D.n97 0.201
+R643 VM8D.n99 VM8D.n98 0.201
+R644 VM8D.n103 VM8D.n102 0.201
+R645 VM8D.n104 VM8D.n103 0.201
+R646 VM8D.n105 VM8D.n104 0.201
+R647 VM8D.n106 VM8D.n105 0.201
+R648 VM8D.n126 VM8D.n125 0.201
+R649 VM8D.n127 VM8D.n126 0.201
+R650 VM8D.n128 VM8D.n127 0.201
+R651 VM8D.n129 VM8D.n128 0.201
+R652 VM8D.n133 VM8D.n132 0.201
+R653 VM8D.n134 VM8D.n133 0.201
+R654 VM8D.n135 VM8D.n134 0.201
+R655 VM8D.n136 VM8D.n135 0.201
+R656 VM8D.n149 VM8D.n148 0.201
+R657 VM8D.n150 VM8D.n149 0.201
+R658 VM8D.n151 VM8D.n150 0.201
+R659 VM8D.n152 VM8D.n151 0.201
+R660 VM8D.n165 VM8D.n164 0.201
+R661 VM8D.n166 VM8D.n165 0.201
+R662 VM8D.n167 VM8D.n166 0.201
+R663 VM8D.n168 VM8D.n167 0.201
+R664 VM8D.n28 VM8D.n27 0.201
+R665 VM8D.n29 VM8D.n28 0.201
+R666 VM8D.n30 VM8D.n29 0.201
+R667 VM8D.n31 VM8D.n30 0.201
+R668 VM8D.n42 VM8D.n41 0.18
+R669 VM8D.n163 VM8D.n162 0.18
+R670 VM8D.n71 VM8D.n70 0.159
+R671 VM8D.n78 VM8D.n77 0.159
+R672 VM8D.n101 VM8D.n100 0.159
+R673 VM8D.n108 VM8D.n107 0.159
+R674 VM8D.n131 VM8D.n130 0.159
+R675 VM8D.n138 VM8D.n137 0.159
+R676 VM8D.n154 VM8D.n153 0.159
+R677 VM8D.n170 VM8D.n169 0.159
+R678 VM8D.n38 VM8D.n37 0.159
+R679 VM8D.n171 VM8D.n170 0.149
+R680 VM8D.n173 VM8D.n172 0.129
+R681 VM8D.n161 VM8D.n78 0.106
+R682 VM8D.n159 VM8D.n108 0.106
+R683 VM8D.n157 VM8D.n138 0.106
+R684 VM8D.n40 VM8D.n38 0.106
+R685 VM8D.n175 VM8D.t2 0.1
+R686 VM8D.n8 VM8D.n5 0.099
+R687 VM8D.n5 VM8D.n2 0.098
+R688 VM8D.n11 VM8D.n8 0.096
+R689 VM8D.n14 VM8D.n11 0.093
+R690 VM8D VM8D.n175 0.091
+R691 VM8D.n173 VM8D.n171 0.086
+R692 a_19136_919.n20 a_19136_919.t7 7.865
+R693 a_19136_919.n25 a_19136_919.t14 7.865
+R694 a_19136_919.n37 a_19136_919.t15 7.865
+R695 a_19136_919.n19 a_19136_919.t49 7.845
+R696 a_19136_919.n8 a_19136_919.t2 7.833
+R697 a_19136_919.n4 a_19136_919.t43 7.831
+R698 a_19136_919.n2 a_19136_919.t61 7.831
+R699 a_19136_919.n3 a_19136_919.t34 7.831
+R700 a_19136_919.n6 a_19136_919.t0 7.831
+R701 a_19136_919.n24 a_19136_919.t55 7.831
+R702 a_19136_919.n36 a_19136_919.t53 7.831
+R703 a_19136_919.n4 a_19136_919.t8 7.827
+R704 a_19136_919.n2 a_19136_919.t10 7.826
+R705 a_19136_919.n3 a_19136_919.t13 7.826
+R706 a_19136_919.n7 a_19136_919.t50 7.826
+R707 a_19136_919.n5 a_19136_919.t57 7.82
+R708 a_19136_919.n0 a_19136_919.t37 7.82
+R709 a_19136_919.n1 a_19136_919.t71 7.82
+R710 a_19136_919.n18 a_19136_919.t69 7.82
+R711 a_19136_919.n29 a_19136_919.t30 7.82
+R712 a_19136_919.n41 a_19136_919.t46 7.82
+R713 a_19136_919.n0 a_19136_919.t27 7.81
+R714 a_19136_919.n1 a_19136_919.t51 7.81
+R715 a_19136_919.t1 a_19136_919.n5 7.808
+R716 a_19136_919.n9 a_19136_919.t24 7.141
+R717 a_19136_919.n9 a_19136_919.t32 7.141
+R718 a_19136_919.n10 a_19136_919.t63 7.141
+R719 a_19136_919.n10 a_19136_919.t17 7.141
+R720 a_19136_919.n45 a_19136_919.t20 7.141
+R721 a_19136_919.n45 a_19136_919.t66 7.141
+R722 a_19136_919.n46 a_19136_919.t42 7.141
+R723 a_19136_919.n46 a_19136_919.t64 7.141
+R724 a_19136_919.n42 a_19136_919.t16 7.141
+R725 a_19136_919.n42 a_19136_919.t33 7.141
+R726 a_19136_919.n43 a_19136_919.t4 7.141
+R727 a_19136_919.n43 a_19136_919.t29 7.141
+R728 a_19136_919.n49 a_19136_919.t21 7.141
+R729 a_19136_919.n49 a_19136_919.t9 7.141
+R730 a_19136_919.n50 a_19136_919.t52 7.141
+R731 a_19136_919.n50 a_19136_919.t59 7.141
+R732 a_19136_919.n30 a_19136_919.t28 7.141
+R733 a_19136_919.n30 a_19136_919.t6 7.141
+R734 a_19136_919.n31 a_19136_919.t54 7.141
+R735 a_19136_919.n31 a_19136_919.t48 7.141
+R736 a_19136_919.n54 a_19136_919.t68 7.141
+R737 a_19136_919.n54 a_19136_919.t18 7.141
+R738 a_19136_919.n55 a_19136_919.t56 7.141
+R739 a_19136_919.n55 a_19136_919.t11 7.141
+R740 a_19136_919.n12 a_19136_919.t26 7.141
+R741 a_19136_919.n12 a_19136_919.t40 7.141
+R742 a_19136_919.n13 a_19136_919.t5 7.141
+R743 a_19136_919.n13 a_19136_919.t65 7.141
+R744 a_19136_919.n15 a_19136_919.t67 7.141
+R745 a_19136_919.n15 a_19136_919.t70 7.141
+R746 a_19136_919.n16 a_19136_919.t39 7.141
+R747 a_19136_919.n16 a_19136_919.t31 7.141
+R748 a_19136_919.n26 a_19136_919.t47 7.141
+R749 a_19136_919.n26 a_19136_919.t38 7.141
+R750 a_19136_919.n27 a_19136_919.t44 7.141
+R751 a_19136_919.n27 a_19136_919.t45 7.141
+R752 a_19136_919.n21 a_19136_919.t12 7.141
+R753 a_19136_919.n21 a_19136_919.t62 7.141
+R754 a_19136_919.n22 a_19136_919.t60 7.141
+R755 a_19136_919.n22 a_19136_919.t25 7.141
+R756 a_19136_919.n38 a_19136_919.t22 7.141
+R757 a_19136_919.n38 a_19136_919.t35 7.141
+R758 a_19136_919.n39 a_19136_919.t36 7.141
+R759 a_19136_919.n39 a_19136_919.t3 7.141
+R760 a_19136_919.n33 a_19136_919.t19 7.141
+R761 a_19136_919.n33 a_19136_919.t58 7.141
+R762 a_19136_919.n34 a_19136_919.t23 7.141
+R763 a_19136_919.n34 a_19136_919.t41 7.141
+R764 a_19136_919.n52 a_19136_919.n8 1.862
+R765 a_19136_919.n53 a_19136_919.n6 1.782
+R766 a_19136_919.n48 a_19136_919.n7 1.069
+R767 a_19136_919.n47 a_19136_919.n46 1.011
+R768 a_19136_919.n51 a_19136_919.n50 1.011
+R769 a_19136_919.n56 a_19136_919.n55 1.011
+R770 a_19136_919.n14 a_19136_919.n13 1.011
+R771 a_19136_919.n23 a_19136_919.n22 1.011
+R772 a_19136_919.n35 a_19136_919.n34 1.011
+R773 a_19136_919.n11 a_19136_919.n10 0.999
+R774 a_19136_919.n44 a_19136_919.n43 0.999
+R775 a_19136_919.n32 a_19136_919.n31 0.999
+R776 a_19136_919.n17 a_19136_919.n16 0.999
+R777 a_19136_919.n28 a_19136_919.n27 0.999
+R778 a_19136_919.n40 a_19136_919.n39 0.999
+R779 a_19136_919.n2 a_19136_919.n48 0.735
+R780 a_19136_919.n47 a_19136_919.n45 0.69
+R781 a_19136_919.n51 a_19136_919.n49 0.69
+R782 a_19136_919.n56 a_19136_919.n54 0.69
+R783 a_19136_919.n14 a_19136_919.n12 0.69
+R784 a_19136_919.n23 a_19136_919.n21 0.69
+R785 a_19136_919.n35 a_19136_919.n33 0.69
+R786 a_19136_919.n11 a_19136_919.n9 0.678
+R787 a_19136_919.n44 a_19136_919.n42 0.678
+R788 a_19136_919.n32 a_19136_919.n30 0.678
+R789 a_19136_919.n17 a_19136_919.n15 0.678
+R790 a_19136_919.n28 a_19136_919.n26 0.678
+R791 a_19136_919.n40 a_19136_919.n38 0.678
+R792 a_19136_919.n53 a_19136_919.n52 0.576
+R793 a_19136_919.n4 a_19136_919.n47 0.323
+R794 a_19136_919.n2 a_19136_919.n51 0.323
+R795 a_19136_919.n3 a_19136_919.n56 0.323
+R796 a_19136_919.n24 a_19136_919.n23 0.323
+R797 a_19136_919.n36 a_19136_919.n35 0.323
+R798 a_19136_919.n5 a_19136_919.n11 0.323
+R799 a_19136_919.n0 a_19136_919.n44 0.323
+R800 a_19136_919.n1 a_19136_919.n32 0.323
+R801 a_19136_919.n18 a_19136_919.n17 0.323
+R802 a_19136_919.n29 a_19136_919.n28 0.323
+R803 a_19136_919.n41 a_19136_919.n40 0.323
+R804 a_19136_919.n6 a_19136_919.n14 0.29
+R805 a_19136_919.n0 a_19136_919.n4 0.253
+R806 a_19136_919.n1 a_19136_919.n2 0.252
+R807 a_19136_919.n5 a_19136_919.n3 0.252
+R808 a_19136_919.n52 a_19136_919.n1 0.197
+R809 a_19136_919.n3 a_19136_919.n53 0.187
+R810 a_19136_919.n48 a_19136_919.n0 0.182
+R811 a_19136_919.n6 a_19136_919.n20 0.181
+R812 a_19136_919.n7 a_19136_919.n41 0.167
+R813 a_19136_919.n20 a_19136_919.n19 0.166
+R814 a_19136_919.n8 a_19136_919.n25 0.166
+R815 a_19136_919.n7 a_19136_919.n37 0.166
+R816 a_19136_919.n8 a_19136_919.n29 0.161
+R817 a_19136_919.n19 a_19136_919.n18 0.149
+R818 a_19136_919.n25 a_19136_919.n24 0.149
+R819 a_19136_919.n37 a_19136_919.n36 0.149
+R820 VP.n357 VP.n354 1195.29
+R821 VP.n405 VP.n402 1195.29
+R822 VP.n368 VP.n365 1153.13
+R823 VP.n392 VP.n389 1153.13
+R824 VP.n5 VP.n2 828.234
+R825 VP.n358 VP.n357 679.152
+R826 VP.n406 VP.n405 679.152
+R827 VP.n16 VP.n13 601.599
+R828 VP.n8 VP.n5 530.446
+R829 VP.n386 VP.n371 452.705
+R830 VP.n407 VP.n395 452.705
+R831 VP.n361 VP.n360 229.197
+R832 VP.n398 VP.n397 229.197
+R833 VP.n19 VP.n16 226.635
+R834 VP.n379 VP.n373 204.046
+R835 VP.n39 VP.n8 201.446
+R836 VP.n383 VP.n379 186.89
+R837 VP.n46 VP.n45 136.339
+R838 VP.n202 VP.n201 136.339
+R839 VP.n348 VP.n347 136.339
+R840 VP.n264 VP.n263 118.72
+R841 VP.t63 VP.t95 107.973
+R842 VP.t36 VP.t24 107.973
+R843 VP.n307 VP.n306 106.788
+R844 VP.n306 VP.n297 105.218
+R845 VP.n44 VP.t72 101.698
+R846 VP.n361 VP.n359 91.233
+R847 VP.n398 VP.n396 91.233
+R848 VP.n271 VP.n270 79.36
+R849 VP.n325 VP.n262 79.36
+R850 VP.n280 VP.n279 79.36
+R851 VP.n287 VP.n286 79.36
+R852 VP.n190 VP.n189 76.307
+R853 VP.n326 VP.n325 73.058
+R854 VP.n303 VP.n299 67.162
+R855 VP.n384 VP.t4 57.14
+R856 VP.t30 VP.t38 54.225
+R857 VP.t32 VP.t30 54.225
+R858 VP.t66 VP.t90 54.225
+R859 VP.n39 VP.n19 46.717
+R860 VP.n371 VP.n368 42.164
+R861 VP.n395 VP.n392 42.164
+R862 VP.n326 VP.n232 40.953
+R863 VP.n308 VP.n307 40.594
+R864 VP.n307 VP.n292 40.594
+R865 VP.n220 VP.n219 39.192
+R866 VP.n108 VP.n107 39.013
+R867 VP.n219 VP.n218 39.013
+R868 VP.n191 VP.n190 39.013
+R869 VP.n251 VP.n250 38.4
+R870 VP.n306 VP.n305 38.4
+R871 VP.t44 VP.t50 36.075
+R872 VP.t28 VP.t34 36.075
+R873 VP.t55 VP.t46 36.075
+R874 VP.t26 VP.t60 36.075
+R875 VP.t54 VP.n241 34.258
+R876 VP.t54 VP.n246 34.258
+R877 VP.n345 VP.t52 33.978
+R878 VP.n132 VP.t28 33.978
+R879 VP.n149 VP.t55 33.978
+R880 VP.t60 VP.n320 33.978
+R881 VP.t42 VP.n321 29.364
+R882 VP.n147 VP.n146 26.697
+R883 VP.n301 VP.n300 26.697
+R884 VP.n95 VP.n94 26.469
+R885 VP.n168 VP.n167 26.469
+R886 VP.n94 VP.n93 26.371
+R887 VP.n329 VP.n327 24.018
+R888 VP.n162 VP.n161 23.36
+R889 VP.t41 VP.n142 22.792
+R890 VP.t41 VP.n159 22.792
+R891 VP.t81 VP.n259 22.792
+R892 VP.n270 VP.n269 20.676
+R893 VP.n262 VP.n261 20.676
+R894 VP.n279 VP.n278 20.676
+R895 VP.n286 VP.n285 20.676
+R896 VP.n166 VP.n131 20.676
+R897 VP.n144 VP.n143 20.676
+R898 VP.n81 VP.n80 20.352
+R899 VP.n386 VP.n358 20.141
+R900 VP.n407 VP.n406 20.141
+R901 VP.n321 VP.t36 20.088
+R902 VP.n278 VP.n275 18.806
+R903 VP.n285 VP.n282 18.806
+R904 VP.n269 VP.n267 17.821
+R905 VP.n261 VP.n233 17.821
+R906 VP.n167 VP.n166 14.375
+R907 VP.n321 VP.t66 10.088
+R908 VP.n39 VP.n10 8.855
+R909 VP.n10 VP.n9 8.855
+R910 VP.n67 VP.t97 7.141
+R911 VP.n67 VP.t93 7.141
+R912 VP.n66 VP.t35 7.141
+R913 VP.n66 VP.t29 7.141
+R914 VP.n57 VP.t113 7.141
+R915 VP.n57 VP.t89 7.141
+R916 VP.n58 VP.t114 7.141
+R917 VP.n58 VP.t94 7.141
+R918 VP.n52 VP.t96 7.141
+R919 VP.n52 VP.t88 7.141
+R920 VP.n53 VP.t37 7.141
+R921 VP.n53 VP.t25 7.141
+R922 VP.n41 VP.t136 7.141
+R923 VP.n41 VP.t64 7.141
+R924 VP.n40 VP.t70 7.141
+R925 VP.n40 VP.t110 7.141
+R926 VP.n43 VP.t73 7.141
+R927 VP.n48 VP.t132 7.141
+R928 VP.n61 VP.t53 7.141
+R929 VP.n69 VP.t100 7.141
+R930 VP.n105 VP.t84 7.141
+R931 VP.n123 VP.t68 7.141
+R932 VP.n178 VP.t57 7.141
+R933 VP.n340 VP.t121 7.141
+R934 VP.n336 VP.t75 7.141
+R935 VP.n336 VP.t74 7.141
+R936 VP.n338 VP.t119 7.141
+R937 VP.n338 VP.t116 7.141
+R938 VP.n331 VP.t47 7.141
+R939 VP.n331 VP.t82 7.141
+R940 VP.n330 VP.t103 7.141
+R941 VP.n330 VP.t123 7.141
+R942 VP.n129 VP.t122 7.141
+R943 VP.n119 VP.t120 7.141
+R944 VP.n119 VP.t118 7.141
+R945 VP.n121 VP.t65 7.141
+R946 VP.n121 VP.t62 7.141
+R947 VP.n114 VP.t105 7.141
+R948 VP.n114 VP.t126 7.141
+R949 VP.n113 VP.t27 7.141
+R950 VP.n113 VP.t71 7.141
+R951 VP.n75 VP.t137 7.141
+R952 VP.n88 VP.t127 7.141
+R953 VP.n88 VP.t43 7.141
+R954 VP.n87 VP.t76 7.141
+R955 VP.n87 VP.t101 7.141
+R956 VP.n78 VP.t106 7.141
+R957 VP.n196 VP.t77 7.141
+R958 VP.n227 VP.t31 7.141
+R959 VP.n227 VP.t69 7.141
+R960 VP.n228 VP.t92 7.141
+R961 VP.n228 VP.t107 7.141
+R962 VP.n224 VP.t130 7.141
+R963 VP.n224 VP.t48 7.141
+R964 VP.n223 VP.t79 7.141
+R965 VP.n223 VP.t102 7.141
+R966 VP.n221 VP.t59 7.141
+R967 VP.n213 VP.t49 7.141
+R968 VP.n213 VP.t40 7.141
+R969 VP.n212 VP.t108 7.141
+R970 VP.n212 VP.t109 7.141
+R971 VP.n204 VP.t39 7.141
+R972 VP.n205 VP.t124 7.141
+R973 VP.n205 VP.t33 7.141
+R974 VP.n206 VP.t67 7.141
+R975 VP.n206 VP.t91 7.141
+R976 VP.n210 VP.t104 7.141
+R977 VP.n83 VP.t87 7.141
+R978 VP.n83 VP.t134 7.141
+R979 VP.n84 VP.t125 7.141
+R980 VP.n84 VP.t78 7.141
+R981 VP.n91 VP.t56 7.141
+R982 VP.n74 VP.t131 7.141
+R983 VP.n74 VP.t129 7.141
+R984 VP.n73 VP.t83 7.141
+R985 VP.n73 VP.t80 7.141
+R986 VP.n97 VP.t115 7.141
+R987 VP.n97 VP.t135 7.141
+R988 VP.n98 VP.t58 7.141
+R989 VP.n98 VP.t85 7.141
+R990 VP.n117 VP.t128 7.141
+R991 VP.n128 VP.t112 7.141
+R992 VP.n128 VP.t111 7.141
+R993 VP.n127 VP.t51 7.141
+R994 VP.n127 VP.t45 7.141
+R995 VP.n170 VP.t98 7.141
+R996 VP.n170 VP.t117 7.141
+R997 VP.n171 VP.t133 7.141
+R998 VP.n171 VP.t61 7.141
+R999 VP.n334 VP.t86 7.141
+R1000 VP.n125 VP.n124 7.112
+R1001 VP.n220 VP.n202 7.112
+R1002 VP.n209 VP.n208 7.112
+R1003 VP.n349 VP.n348 7.112
+R1004 VP.n71 VP.n70 7.112
+R1005 VP.n47 VP.n46 7.112
+R1006 VP.n50 VP.n49 6.755
+R1007 VP.n108 VP.n106 6.755
+R1008 VP.n232 VP.n195 6.755
+R1009 VP.n218 VP.n203 6.755
+R1010 VP.n191 VP.n179 6.755
+R1011 VP.n63 VP.n62 6.755
+R1012 VP.n321 VP.t26 6.711
+R1013 VP.n24 VP.t2 5.831
+R1014 VP.n33 VP.t7 5.813
+R1015 VP.n28 VP.t18 5.692
+R1016 VP.n37 VP.t17 5.676
+R1017 VP.n93 VP.n77 5.121
+R1018 VP.n112 VP.n111 5.121
+R1019 VP.n329 VP.n328 5.121
+R1020 VP.n29 VP.t21 4.95
+R1021 VP.n29 VP.t5 4.95
+R1022 VP.n30 VP.t9 4.95
+R1023 VP.n30 VP.t0 4.95
+R1024 VP.n31 VP.t1 4.95
+R1025 VP.n31 VP.t19 4.95
+R1026 VP.n32 VP.t8 4.95
+R1027 VP.n32 VP.t16 4.95
+R1028 VP.n20 VP.t14 4.95
+R1029 VP.n20 VP.t10 4.95
+R1030 VP.n21 VP.t6 4.95
+R1031 VP.n21 VP.t15 4.95
+R1032 VP.n22 VP.t12 4.95
+R1033 VP.n22 VP.t13 4.95
+R1034 VP.n23 VP.t11 4.95
+R1035 VP.n23 VP.t20 4.95
+R1036 VP.n81 VP.n79 4.864
+R1037 VP.n95 VP.n76 4.864
+R1038 VP.n168 VP.n130 4.864
+R1039 VP.n382 VP.n381 4.824
+R1040 VP.n408 VP.n386 3.335
+R1041 VP.n386 VP.n385 3.253
+R1042 VP.n408 VP.n351 2.655
+R1043 VP.n60 VP.n56 1.98
+R1044 VP.n327 VP.n326 1.411
+R1045 VP.n408 VP.n407 1.229
+R1046 VP.n384 VP.n383 1.163
+R1047 VP.n351 VP.n350 1.071
+R1048 VP.n194 VP.n39 1.019
+R1049 VP.n59 VP.n58 1.008
+R1050 VP.n54 VP.n53 1.008
+R1051 VP.n229 VP.n228 1.008
+R1052 VP.n207 VP.n206 1.008
+R1053 VP.n85 VP.n84 1.008
+R1054 VP.n99 VP.n98 1.008
+R1055 VP.n172 VP.n171 1.008
+R1056 VP.n68 VP.n66 0.974
+R1057 VP.n42 VP.n40 0.974
+R1058 VP.n225 VP.n223 0.974
+R1059 VP.n214 VP.n212 0.974
+R1060 VP.n89 VP.n87 0.974
+R1061 VP.n115 VP.n113 0.974
+R1062 VP.n332 VP.n330 0.974
+R1063 VP.n230 VP.n226 0.887
+R1064 VP.n216 VP.n215 0.887
+R1065 VP.n90 VP.n86 0.887
+R1066 VP.n27 VP.n20 0.742
+R1067 VP.n25 VP.n22 0.742
+R1068 VP.n24 VP.n23 0.742
+R1069 VP.n26 VP.n21 0.742
+R1070 VP.n36 VP.n29 0.726
+R1071 VP.n34 VP.n31 0.725
+R1072 VP.n33 VP.n32 0.725
+R1073 VP.n35 VP.n30 0.725
+R1074 VP.n38 VP.n37 0.717
+R1075 VP.n102 VP.n74 0.687
+R1076 VP.n175 VP.n128 0.687
+R1077 VP.n59 VP.n57 0.686
+R1078 VP.n54 VP.n52 0.686
+R1079 VP.n229 VP.n227 0.686
+R1080 VP.n207 VP.n205 0.686
+R1081 VP.n85 VP.n83 0.686
+R1082 VP.n103 VP.n73 0.686
+R1083 VP.n99 VP.n97 0.686
+R1084 VP.n176 VP.n127 0.686
+R1085 VP.n172 VP.n170 0.686
+R1086 VP.n51 VP.n48 0.658
+R1087 VP.n64 VP.n61 0.658
+R1088 VP.n109 VP.n105 0.658
+R1089 VP.n192 VP.n178 0.658
+R1090 VP.n231 VP.n196 0.658
+R1091 VP.n217 VP.n204 0.658
+R1092 VP.n82 VP.n78 0.658
+R1093 VP.n96 VP.n75 0.658
+R1094 VP.n169 VP.n129 0.658
+R1095 VP.n409 VP.n408 0.657
+R1096 VP.n68 VP.n67 0.655
+R1097 VP.n42 VP.n41 0.655
+R1098 VP.n337 VP.n336 0.655
+R1099 VP.n339 VP.n338 0.655
+R1100 VP.n332 VP.n331 0.655
+R1101 VP.n120 VP.n119 0.655
+R1102 VP.n122 VP.n121 0.655
+R1103 VP.n115 VP.n114 0.655
+R1104 VP.n89 VP.n88 0.655
+R1105 VP.n225 VP.n224 0.655
+R1106 VP.n214 VP.n213 0.655
+R1107 VP.n102 VP.n101 0.631
+R1108 VP.n175 VP.n174 0.631
+R1109 VP.n120 VP.n118 0.628
+R1110 VP.n337 VP.n335 0.628
+R1111 VP.n72 VP.n69 0.627
+R1112 VP.n126 VP.n123 0.627
+R1113 VP.n350 VP.n340 0.627
+R1114 VP.n222 VP.n221 0.627
+R1115 VP.n211 VP.n210 0.627
+R1116 VP.n92 VP.n91 0.627
+R1117 VP.n118 VP.n117 0.627
+R1118 VP.n335 VP.n334 0.627
+R1119 VP.n56 VP.n43 0.627
+R1120 VP.n56 VP.n55 0.481
+R1121 VP.n72 VP.n65 0.459
+R1122 VP.n126 VP.n110 0.459
+R1123 VP.n194 VP.n193 0.394
+R1124 VP VP.n412 0.388
+R1125 VP.n103 VP.n102 0.323
+R1126 VP.n176 VP.n175 0.323
+R1127 VP.n122 VP.n120 0.319
+R1128 VP.n339 VP.n337 0.319
+R1129 VP.n230 VP.n229 0.284
+R1130 VP.n216 VP.n207 0.284
+R1131 VP.n86 VP.n85 0.284
+R1132 VP.n100 VP.n99 0.284
+R1133 VP.n173 VP.n172 0.284
+R1134 VP.n226 VP.n225 0.28
+R1135 VP.n215 VP.n214 0.28
+R1136 VP.n90 VP.n89 0.28
+R1137 VP.n116 VP.n115 0.28
+R1138 VP.n333 VP.n332 0.28
+R1139 VP.n104 VP.n72 0.227
+R1140 VP.n177 VP.n126 0.227
+R1141 VP.n55 VP.n54 0.222
+R1142 VP.n60 VP.n59 0.221
+R1143 VP.n104 VP.n103 0.221
+R1144 VP.n177 VP.n176 0.221
+R1145 VP.n72 VP.n68 0.217
+R1146 VP.n56 VP.n42 0.217
+R1147 VP.n126 VP.n122 0.217
+R1148 VP.n350 VP.n339 0.217
+R1149 VP.n383 VP.n382 0.196
+R1150 VP.n36 VP.n35 0.144
+R1151 VP.n27 VP.n26 0.143
+R1152 VP.n26 VP.n25 0.141
+R1153 VP.n28 VP.n27 0.141
+R1154 VP.n25 VP.n24 0.14
+R1155 VP.n35 VP.n34 0.14
+R1156 VP.n37 VP.n36 0.14
+R1157 VP.n34 VP.n33 0.14
+R1158 VP.n38 VP.n28 0.094
+R1159 VP.n39 VP.n38 0.08
+R1160 VP.n410 VP.n409 0.067
+R1161 VP.n350 VP.n194 0.065
+R1162 VP.n351 VP.t138 0.061
+R1163 VP.n411 VP.n410 0.043
+R1164 VP.n231 VP.n230 0.037
+R1165 VP.n217 VP.n216 0.037
+R1166 VP.n86 VP.n82 0.037
+R1167 VP.n226 VP.n222 0.036
+R1168 VP.n101 VP.n100 0.036
+R1169 VP.n174 VP.n173 0.036
+R1170 VP.n215 VP.n211 0.035
+R1171 VP.n92 VP.n90 0.035
+R1172 VP.n118 VP.n116 0.035
+R1173 VP.n335 VP.n333 0.035
+R1174 VP.n304 VP.n303 0.032
+R1175 VP.n248 VP.n247 0.032
+R1176 VP.t54 VP.n248 0.032
+R1177 VP.n269 VP.n266 0.032
+R1178 VP.n269 VP.n268 0.032
+R1179 VP.n261 VP.n249 0.032
+R1180 VP.n249 VP.t54 0.032
+R1181 VP.n148 VP.n147 0.032
+R1182 VP.t41 VP.n148 0.032
+R1183 VP.n252 VP.n251 0.032
+R1184 VP.t81 VP.n252 0.032
+R1185 VP.n145 VP.n144 0.032
+R1186 VP.t41 VP.n145 0.032
+R1187 VP.n285 VP.n283 0.032
+R1188 VP.n166 VP.n164 0.032
+R1189 VP.n164 VP.t41 0.032
+R1190 VP.n278 VP.n276 0.032
+R1191 VP.n163 VP.n162 0.032
+R1192 VP.t41 VP.n163 0.032
+R1193 VP.n261 VP.n260 0.032
+R1194 VP.n260 VP.t81 0.032
+R1195 VP.n166 VP.n165 0.032
+R1196 VP.n278 VP.n277 0.032
+R1197 VP.t41 VP.n160 0.032
+R1198 VP.n285 VP.n284 0.032
+R1199 VP.n302 VP.n301 0.032
+R1200 VP.t99 VP.n302 0.032
+R1201 VP.n305 VP.n304 0.032
+R1202 VP.n411 VP.t23 0.019
+R1203 VP.n410 VP.t22 0.019
+R1204 VP.n373 VP.n372 0.018
+R1205 VP.n382 VP.n380 0.018
+R1206 VP.n385 VP.n384 0.01
+R1207 VP.n375 VP.n374 0.009
+R1208 VP.n379 VP.n378 0.009
+R1209 VP.n8 VP.n7 0.008
+R1210 VP.n7 VP.n6 0.008
+R1211 VP.n412 VP.n411 0.008
+R1212 VP.n378 VP.n377 0.007
+R1213 VP.n376 VP.n375 0.007
+R1214 VP.n16 VP.n15 0.006
+R1215 VP.n15 VP.n14 0.006
+R1216 VP.n368 VP.n367 0.003
+R1217 VP.n367 VP.n366 0.003
+R1218 VP.n371 VP.n370 0.003
+R1219 VP.n370 VP.n369 0.003
+R1220 VP.n19 VP.n18 0.003
+R1221 VP.n18 VP.n17 0.003
+R1222 VP.n265 VP.n264 0.003
+R1223 VP.t32 VP.n265 0.003
+R1224 VP.t32 VP.n273 0.003
+R1225 VP.n272 VP.n271 0.003
+R1226 VP.t32 VP.n272 0.003
+R1227 VP.n325 VP.n274 0.003
+R1228 VP.n274 VP.t32 0.003
+R1229 VP.n183 VP.n182 0.003
+R1230 VP.t44 VP.n183 0.003
+R1231 VP.n309 VP.n308 0.003
+R1232 VP.t42 VP.n309 0.003
+R1233 VP.n181 VP.n180 0.003
+R1234 VP.t44 VP.n181 0.003
+R1235 VP.n288 VP.n287 0.003
+R1236 VP.t42 VP.n288 0.003
+R1237 VP.n189 VP.n187 0.003
+R1238 VP.n187 VP.t44 0.003
+R1239 VP.n281 VP.n280 0.003
+R1240 VP.t42 VP.n281 0.003
+R1241 VP.n186 VP.n185 0.003
+R1242 VP.t44 VP.n186 0.003
+R1243 VP.n325 VP.n324 0.003
+R1244 VP.n324 VP.t42 0.003
+R1245 VP.n189 VP.n188 0.003
+R1246 VP.t42 VP.n323 0.003
+R1247 VP.t44 VP.n184 0.003
+R1248 VP.t42 VP.n322 0.003
+R1249 VP.n290 VP.n289 0.003
+R1250 VP.t63 VP.n290 0.003
+R1251 VP.n292 VP.n291 0.003
+R1252 VP.n291 VP.t63 0.003
+R1253 VP.n392 VP.n391 0.003
+R1254 VP.n391 VP.n390 0.003
+R1255 VP.n395 VP.n394 0.003
+R1256 VP.n394 VP.n393 0.003
+R1257 VP.t3 VP.n376 0.003
+R1258 VP.n377 VP.t3 0.003
+R1259 VP.n5 VP.n4 0.003
+R1260 VP.n4 VP.n3 0.003
+R1261 VP.n13 VP.n12 0.003
+R1262 VP.n12 VP.n11 0.003
+R1263 VP.n65 VP.n60 0.002
+R1264 VP.n110 VP.n104 0.002
+R1265 VP.n193 VP.n177 0.002
+R1266 VP.n386 VP.n362 0.002
+R1267 VP.n198 VP.n197 0.002
+R1268 VP.n199 VP.n198 0.002
+R1269 VP.n201 VP.n200 0.002
+R1270 VP.n200 VP.n199 0.002
+R1271 VP.n240 VP.n239 0.002
+R1272 VP.n241 VP.n240 0.002
+R1273 VP.n239 VP.n238 0.002
+R1274 VP.n245 VP.n244 0.002
+R1275 VP.n246 VP.n245 0.002
+R1276 VP.n243 VP.n242 0.002
+R1277 VP.n246 VP.n243 0.002
+R1278 VP.n237 VP.n236 0.002
+R1279 VP.n241 VP.n237 0.002
+R1280 VP.n236 VP.n235 0.002
+R1281 VP.n235 VP.n234 0.002
+R1282 VP.n258 VP.n257 0.002
+R1283 VP.n259 VP.n258 0.002
+R1284 VP.n318 VP.n317 0.002
+R1285 VP.n319 VP.n318 0.002
+R1286 VP.n320 VP.n319 0.002
+R1287 VP.n157 VP.n156 0.002
+R1288 VP.n158 VP.n157 0.002
+R1289 VP.n159 VP.n158 0.002
+R1290 VP.n141 VP.n140 0.002
+R1291 VP.n142 VP.n141 0.002
+R1292 VP.n140 VP.n139 0.002
+R1293 VP.n347 VP.n346 0.002
+R1294 VP.n346 VP.n345 0.002
+R1295 VP.n256 VP.n255 0.002
+R1296 VP.n259 VP.n256 0.002
+R1297 VP.n315 VP.n314 0.002
+R1298 VP.n316 VP.n315 0.002
+R1299 VP.n320 VP.n316 0.002
+R1300 VP.n154 VP.n153 0.002
+R1301 VP.n155 VP.n154 0.002
+R1302 VP.n159 VP.n155 0.002
+R1303 VP.n138 VP.n137 0.002
+R1304 VP.n142 VP.n138 0.002
+R1305 VP.n137 VP.n136 0.002
+R1306 VP.n344 VP.n343 0.002
+R1307 VP.n345 VP.n344 0.002
+R1308 VP.n254 VP.n253 0.002
+R1309 VP.n259 VP.n254 0.002
+R1310 VP.n312 VP.n311 0.002
+R1311 VP.n311 VP.n310 0.002
+R1312 VP.n313 VP.n312 0.002
+R1313 VP.n320 VP.n313 0.002
+R1314 VP.n151 VP.n150 0.002
+R1315 VP.n150 VP.n149 0.002
+R1316 VP.n152 VP.n151 0.002
+R1317 VP.n159 VP.n152 0.002
+R1318 VP.n135 VP.n134 0.002
+R1319 VP.n142 VP.n135 0.002
+R1320 VP.n134 VP.n133 0.002
+R1321 VP.n133 VP.n132 0.002
+R1322 VP.n342 VP.n341 0.002
+R1323 VP.n345 VP.n342 0.002
+R1324 VP.n45 VP.n44 0.002
+R1325 VP.n299 VP.n298 0.002
+R1326 VP.n297 VP.n294 0.002
+R1327 VP.n294 VP.n293 0.002
+R1328 VP.n297 VP.n296 0.002
+R1329 VP.n296 VP.n295 0.002
+R1330 VP.n407 VP.n399 0.002
+R1331 VP.n101 VP.n96 0.002
+R1332 VP.n174 VP.n169 0.002
+R1333 VP.n354 VP.n353 0.002
+R1334 VP.n353 VP.n352 0.002
+R1335 VP.n2 VP.n1 0.002
+R1336 VP.n1 VP.n0 0.002
+R1337 VP.n402 VP.n401 0.002
+R1338 VP.n401 VP.n400 0.002
+R1339 VP.n362 VP.n361 0.001
+R1340 VP.n399 VP.n398 0.001
+R1341 VP.n93 VP.n92 0.001
+R1342 VP.n118 VP.n112 0.001
+R1343 VP.n335 VP.n329 0.001
+R1344 VP.n222 VP.n220 0.001
+R1345 VP.n211 VP.n209 0.001
+R1346 VP.n56 VP.n47 0.001
+R1347 VP.n72 VP.n71 0.001
+R1348 VP.n126 VP.n125 0.001
+R1349 VP.n350 VP.n349 0.001
+R1350 VP.n55 VP.n51 0.001
+R1351 VP.n303 VP.t99 0.001
+R1352 VP.n65 VP.n64 0.001
+R1353 VP.n110 VP.n109 0.001
+R1354 VP.n193 VP.n192 0.001
+R1355 VP.n357 VP.n356 0.001
+R1356 VP.n356 VP.n355 0.001
+R1357 VP.n365 VP.n364 0.001
+R1358 VP.n364 VP.n363 0.001
+R1359 VP.n232 VP.n231 0.001
+R1360 VP.n218 VP.n217 0.001
+R1361 VP.n82 VP.n81 0.001
+R1362 VP.n96 VP.n95 0.001
+R1363 VP.n169 VP.n168 0.001
+R1364 VP.n51 VP.n50 0.001
+R1365 VP.n64 VP.n63 0.001
+R1366 VP.n109 VP.n108 0.001
+R1367 VP.n192 VP.n191 0.001
+R1368 VP.n405 VP.n404 0.001
+R1369 VP.n404 VP.n403 0.001
+R1370 VP.n389 VP.n388 0.001
+R1371 VP.n388 VP.n387 0.001
+R1372 a_19136_n1351.n5 a_19136_n1351.t10 7.865
+R1373 a_19136_n1351.n6 a_19136_n1351.t11 7.846
+R1374 a_19136_n1351.n4 a_19136_n1351.t0 7.831
+R1375 a_19136_n1351.n7 a_19136_n1351.t7 7.82
+R1376 a_19136_n1351.n0 a_19136_n1351.t2 7.141
+R1377 a_19136_n1351.n0 a_19136_n1351.t4 7.141
+R1378 a_19136_n1351.n1 a_19136_n1351.t5 7.141
+R1379 a_19136_n1351.n1 a_19136_n1351.t1 7.141
+R1380 a_19136_n1351.n2 a_19136_n1351.t8 7.141
+R1381 a_19136_n1351.n2 a_19136_n1351.t6 7.141
+R1382 a_19136_n1351.n9 a_19136_n1351.t3 7.141
+R1383 a_19136_n1351.t9 a_19136_n1351.n9 7.141
+R1384 a_19136_n1351.n3 a_19136_n1351.n2 1.011
+R1385 a_19136_n1351.n9 a_19136_n1351.n8 0.998
+R1386 a_19136_n1351.n3 a_19136_n1351.n1 0.69
+R1387 a_19136_n1351.n8 a_19136_n1351.n0 0.678
+R1388 a_19136_n1351.n4 a_19136_n1351.n3 0.323
+R1389 a_19136_n1351.n8 a_19136_n1351.n7 0.323
+R1390 a_19136_n1351.n6 a_19136_n1351.n5 0.166
+R1391 a_19136_n1351.n7 a_19136_n1351.n6 0.149
+R1392 a_19136_n1351.n5 a_19136_n1351.n4 0.149
+R1393 a_15056_1646.t0 a_15056_1646.t1 0.138
+R1394 a_14526_4078.t0 a_14526_4078.t1 0.138
+R1395 VM9D.n4 VM9D.t34 109.659
+R1396 VM9D.n2 VM9D.t18 109.659
+R1397 VM9D.n31 VM9D.t4 109.659
+R1398 VM9D.n30 VM9D.t6 109.659
+R1399 VM9D.n29 VM9D.t38 109.659
+R1400 VM9D.n28 VM9D.t30 109.659
+R1401 VM9D.n27 VM9D.t20 109.659
+R1402 VM9D.n26 VM9D.t8 109.659
+R1403 VM9D.n25 VM9D.t12 109.659
+R1404 VM9D.n24 VM9D.t0 109.659
+R1405 VM9D.n43 VM9D.t26 109.659
+R1406 VM9D.n44 VM9D.t36 109.659
+R1407 VM9D.n45 VM9D.t2 109.659
+R1408 VM9D.n46 VM9D.t14 109.659
+R1409 VM9D.n47 VM9D.t24 109.659
+R1410 VM9D.n48 VM9D.t22 109.659
+R1411 VM9D.n39 VM9D.t32 109.659
+R1412 VM9D.n3 VM9D.t58 109.659
+R1413 VM9D.n69 VM9D.t56 109.659
+R1414 VM9D.n52 VM9D.t47 109.659
+R1415 VM9D.n53 VM9D.t50 109.659
+R1416 VM9D.n54 VM9D.t45 109.659
+R1417 VM9D.n55 VM9D.t61 109.659
+R1418 VM9D.n56 VM9D.t57 109.659
+R1419 VM9D.n57 VM9D.t51 109.659
+R1420 VM9D.n58 VM9D.t52 109.659
+R1421 VM9D.n3 VM9D.t49 109.659
+R1422 VM9D.n69 VM9D.t43 109.659
+R1423 VM9D.n70 VM9D.t44 109.659
+R1424 VM9D.n71 VM9D.t59 109.659
+R1425 VM9D.n72 VM9D.t60 109.659
+R1426 VM9D.n73 VM9D.t53 109.659
+R1427 VM9D.n74 VM9D.t54 109.659
+R1428 VM9D.n75 VM9D.t55 109.659
+R1429 VM9D.n76 VM9D.t48 109.659
+R1430 VM9D.n1 VM9D.t42 109.659
+R1431 VM9D.n77 VM9D.t46 109.659
+R1432 VM9D.n24 VM9D.t16 109.659
+R1433 VM9D.n25 VM9D.t28 109.659
+R1434 VM9D.n4 VM9D.t10 109.659
+R1435 VM9D.n8 VM9D.t41 8.115
+R1436 VM9D.n8 VM9D.t40 7.823
+R1437 VM9D.n20 VM9D.t11 4.35
+R1438 VM9D.n20 VM9D.t17 4.35
+R1439 VM9D.n17 VM9D.t29 4.35
+R1440 VM9D.n17 VM9D.t27 4.35
+R1441 VM9D.n14 VM9D.t37 4.35
+R1442 VM9D.n14 VM9D.t3 4.35
+R1443 VM9D.n13 VM9D.t15 4.35
+R1444 VM9D.n13 VM9D.t25 4.35
+R1445 VM9D.n9 VM9D.t23 4.35
+R1446 VM9D.n9 VM9D.t33 4.35
+R1447 VM9D.n10 VM9D.t5 4.35
+R1448 VM9D.n10 VM9D.t19 4.35
+R1449 VM9D.n15 VM9D.t21 4.35
+R1450 VM9D.n15 VM9D.t31 4.35
+R1451 VM9D.n18 VM9D.t13 4.35
+R1452 VM9D.n18 VM9D.t9 4.35
+R1453 VM9D.n21 VM9D.t35 4.35
+R1454 VM9D.n21 VM9D.t1 4.35
+R1455 VM9D.n12 VM9D.t39 4.35
+R1456 VM9D.n12 VM9D.t7 4.35
+R1457 VM9D.n23 VM9D.n8 2.673
+R1458 VM9D.n1 VM9D.n65 1.385
+R1459 VM9D.n3 VM9D.n68 1.385
+R1460 VM9D.n39 VM9D.n2 1.37
+R1461 VM9D.n77 VM9D.n1 1.37
+R1462 VM9D.n4 VM9D.n7 1.353
+R1463 VM9D.n2 VM9D.n38 1.35
+R1464 VM9D VM9D.n49 1.229
+R1465 VM9D VM9D.n78 0.701
+R1466 VM9D.n4 VM9D.n23 0.644
+R1467 VM9D.n22 VM9D.n21 0.632
+R1468 VM9D.n19 VM9D.n18 0.632
+R1469 VM9D.n16 VM9D.n15 0.632
+R1470 VM9D.n11 VM9D.n10 0.632
+R1471 VM9D.n0 VM9D.n12 0.631
+R1472 VM9D.n22 VM9D.n20 0.584
+R1473 VM9D.n19 VM9D.n17 0.584
+R1474 VM9D.n16 VM9D.n14 0.584
+R1475 VM9D.n11 VM9D.n9 0.584
+R1476 VM9D.n0 VM9D.n13 0.584
+R1477 VM9D.n23 VM9D.n22 0.468
+R1478 VM9D.n64 VM9D.n63 0.443
+R1479 VM9D.n63 VM9D.n62 0.443
+R1480 VM9D.n62 VM9D.n61 0.443
+R1481 VM9D.n61 VM9D.n60 0.443
+R1482 VM9D.n60 VM9D.n59 0.443
+R1483 VM9D.n67 VM9D.n66 0.443
+R1484 VM9D.n48 VM9D.n47 0.443
+R1485 VM9D.n47 VM9D.n46 0.443
+R1486 VM9D.n46 VM9D.n45 0.443
+R1487 VM9D.n45 VM9D.n44 0.443
+R1488 VM9D.n44 VM9D.n43 0.443
+R1489 VM9D.n43 VM9D.n42 0.443
+R1490 VM9D.n42 VM9D.n41 0.443
+R1491 VM9D.n58 VM9D.n57 0.437
+R1492 VM9D.n57 VM9D.n56 0.437
+R1493 VM9D.n56 VM9D.n55 0.437
+R1494 VM9D.n55 VM9D.n54 0.437
+R1495 VM9D.n54 VM9D.n53 0.437
+R1496 VM9D.n53 VM9D.n52 0.437
+R1497 VM9D.n52 VM9D.n51 0.437
+R1498 VM9D.n51 VM9D.n50 0.437
+R1499 VM9D.n37 VM9D.n36 0.437
+R1500 VM9D.n36 VM9D.n35 0.437
+R1501 VM9D.n35 VM9D.n34 0.437
+R1502 VM9D.n34 VM9D.n33 0.437
+R1503 VM9D.n33 VM9D.n32 0.437
+R1504 VM9D.n6 VM9D.n5 0.437
+R1505 VM9D.n7 VM9D.n6 0.437
+R1506 VM9D.n38 VM9D.n37 0.43
+R1507 VM9D.n68 VM9D.n67 0.407
+R1508 VM9D.n41 VM9D.n40 0.407
+R1509 VM9D.n65 VM9D.n64 0.398
+R1510 VM9D.n49 VM9D.n48 0.309
+R1511 VM9D.n78 VM9D.n58 0.305
+R1512 VM9D.n24 VM9D.n4 0.223
+R1513 VM9D.n69 VM9D.n3 0.223
+R1514 VM9D.n70 VM9D.n69 0.222
+R1515 VM9D.n71 VM9D.n70 0.222
+R1516 VM9D.n72 VM9D.n71 0.222
+R1517 VM9D.n73 VM9D.n72 0.222
+R1518 VM9D.n74 VM9D.n73 0.222
+R1519 VM9D.n75 VM9D.n74 0.222
+R1520 VM9D.n76 VM9D.n75 0.222
+R1521 VM9D.n25 VM9D.n24 0.222
+R1522 VM9D.n26 VM9D.n25 0.222
+R1523 VM9D.n27 VM9D.n26 0.222
+R1524 VM9D.n28 VM9D.n27 0.222
+R1525 VM9D.n29 VM9D.n28 0.222
+R1526 VM9D.n30 VM9D.n29 0.222
+R1527 VM9D.n31 VM9D.n30 0.222
+R1528 VM9D.n2 VM9D.n31 0.222
+R1529 VM9D.n1 VM9D.n76 0.222
+R1530 VM9D.n16 VM9D.n0 0.099
+R1531 VM9D.n0 VM9D.n11 0.099
+R1532 VM9D.n19 VM9D.n16 0.096
+R1533 VM9D.n22 VM9D.n19 0.093
+R1534 VM9D.n78 VM9D.n77 0.015
+R1535 VM9D.n49 VM9D.n39 0.014
+R1536 VM14D.n26 VM14D.t30 715.526
+R1537 VM14D.n25 VM14D.t26 715.526
+R1538 VM14D.n24 VM14D.t17 715.526
+R1539 VM14D.n23 VM14D.t21 715.526
+R1540 VM14D.n22 VM14D.t33 715.526
+R1541 VM14D.n22 VM14D.t16 715.526
+R1542 VM14D.n23 VM14D.t25 715.526
+R1543 VM14D.n24 VM14D.t22 715.526
+R1544 VM14D.n25 VM14D.t28 715.526
+R1545 VM14D.n26 VM14D.t31 715.526
+R1546 VM14D.n20 VM14D.t19 715.526
+R1547 VM14D.n19 VM14D.t27 715.526
+R1548 VM14D.n16 VM14D.t14 715.526
+R1549 VM14D.n17 VM14D.t32 715.526
+R1550 VM14D.n18 VM14D.t20 715.526
+R1551 VM14D.n15 VM14D.t24 715.526
+R1552 VM14D.n14 VM14D.t15 715.526
+R1553 VM14D.n13 VM14D.t18 715.526
+R1554 VM14D.n12 VM14D.t29 715.526
+R1555 VM14D.n11 VM14D.t23 715.526
+R1556 VM14D.n0 VM14D.t2 8.068
+R1557 VM14D.n1 VM14D.t4 8.068
+R1558 VM14D.n2 VM14D.t11 8.068
+R1559 VM14D.n0 VM14D.t9 8.052
+R1560 VM14D.n1 VM14D.t3 8.052
+R1561 VM14D.n2 VM14D.t7 8.052
+R1562 VM14D.n3 VM14D.t12 7.938
+R1563 VM14D.n8 VM14D.t5 7.84
+R1564 VM14D.n5 VM14D.t8 7.84
+R1565 VM14D.n7 VM14D.t6 7.823
+R1566 VM14D.n4 VM14D.t10 7.823
+R1567 VM14D.n10 VM14D.t13 7.821
+R1568 VM14D.n29 VM14D.t1 4.35
+R1569 VM14D.n29 VM14D.t0 4.35
+R1570 VM14D.n30 VM14D.n29 2.565
+R1571 VM14D.n27 VM14D.n18 2.326
+R1572 VM14D.n21 VM14D.n20 2.114
+R1573 VM14D.n28 VM14D.n27 1.776
+R1574 VM14D.n5 VM14D.n4 0.866
+R1575 VM14D.n8 VM14D.n7 0.866
+R1576 VM14D VM14D.n10 0.711
+R1577 VM14D.n9 VM14D.n0 0.632
+R1578 VM14D.n6 VM14D.n1 0.632
+R1579 VM14D.n3 VM14D.n2 0.632
+R1580 VM14D.n28 VM14D.n15 0.445
+R1581 VM14D.n18 VM14D.n17 0.4
+R1582 VM14D.n17 VM14D.n16 0.4
+R1583 VM14D.n20 VM14D.n19 0.4
+R1584 VM14D.n15 VM14D.n14 0.363
+R1585 VM14D.n14 VM14D.n13 0.363
+R1586 VM14D.n13 VM14D.n12 0.363
+R1587 VM14D.n12 VM14D.n11 0.363
+R1588 VM14D VM14D.n30 0.264
+R1589 VM14D.n30 VM14D.n28 0.239
+R1590 VM14D.n22 VM14D.n21 0.2
+R1591 VM14D.n26 VM14D.n25 0.16
+R1592 VM14D.n25 VM14D.n24 0.16
+R1593 VM14D.n24 VM14D.n23 0.16
+R1594 VM14D.n23 VM14D.n22 0.16
+R1595 VM14D.n27 VM14D.n26 0.125
+R1596 VM14D.n6 VM14D.n5 0.097
+R1597 VM14D.n9 VM14D.n8 0.097
+R1598 VM14D.n4 VM14D.n3 0.097
+R1599 VM14D.n7 VM14D.n6 0.097
+R1600 VM14D.n10 VM14D.n9 0.097
+R1601 VM12D.n53 VM12D.t31 5.716
+R1602 VM12D.n54 VM12D.t55 5.716
+R1603 VM12D.n64 VM12D.t17 5.716
+R1604 VM12D.n34 VM12D.t49 5.715
+R1605 VM12D.n18 VM12D.t66 5.704
+R1606 VM12D.n9 VM12D.t54 5.704
+R1607 VM12D.n59 VM12D.t61 5.116
+R1608 VM12D.n19 VM12D.t15 5.116
+R1609 VM12D.n39 VM12D.t25 5.116
+R1610 VM12D.n47 VM12D.t3 5.116
+R1611 VM12D.n25 VM12D.t19 5.115
+R1612 VM12D.n20 VM12D.t39 5.115
+R1613 VM12D.n24 VM12D.t4 4.739
+R1614 VM12D.n46 VM12D.t23 4.35
+R1615 VM12D.n46 VM12D.t48 4.35
+R1616 VM12D.n45 VM12D.t38 4.35
+R1617 VM12D.n45 VM12D.t59 4.35
+R1618 VM12D.n44 VM12D.t2 4.35
+R1619 VM12D.n44 VM12D.t16 4.35
+R1620 VM12D.n65 VM12D.t1 4.35
+R1621 VM12D.n65 VM12D.t0 4.35
+R1622 VM12D.n38 VM12D.t50 4.35
+R1623 VM12D.n38 VM12D.t45 4.35
+R1624 VM12D.n37 VM12D.t44 4.35
+R1625 VM12D.n37 VM12D.t40 4.35
+R1626 VM12D.n36 VM12D.t43 4.35
+R1627 VM12D.n36 VM12D.t51 4.35
+R1628 VM12D.n35 VM12D.t26 4.35
+R1629 VM12D.n35 VM12D.t24 4.35
+R1630 VM12D.n58 VM12D.t12 4.35
+R1631 VM12D.n58 VM12D.t8 4.35
+R1632 VM12D.n57 VM12D.t7 4.35
+R1633 VM12D.n57 VM12D.t5 4.35
+R1634 VM12D.n56 VM12D.t6 4.35
+R1635 VM12D.n56 VM12D.t11 4.35
+R1636 VM12D.n55 VM12D.t64 4.35
+R1637 VM12D.n55 VM12D.t60 4.35
+R1638 VM12D.n21 VM12D.t27 4.35
+R1639 VM12D.n21 VM12D.t18 4.35
+R1640 VM12D.n22 VM12D.t21 4.35
+R1641 VM12D.n22 VM12D.t13 4.35
+R1642 VM12D.n26 VM12D.t46 4.35
+R1643 VM12D.n26 VM12D.t34 4.35
+R1644 VM12D.n28 VM12D.t36 4.35
+R1645 VM12D.n28 VM12D.t33 4.35
+R1646 VM12D.n30 VM12D.t32 4.35
+R1647 VM12D.n30 VM12D.t47 4.35
+R1648 VM12D.n32 VM12D.t22 4.35
+R1649 VM12D.n32 VM12D.t14 4.35
+R1650 VM12D.n10 VM12D.t63 4.35
+R1651 VM12D.n10 VM12D.t56 4.35
+R1652 VM12D.n12 VM12D.t57 4.35
+R1653 VM12D.n12 VM12D.t53 4.35
+R1654 VM12D.n14 VM12D.t52 4.35
+R1655 VM12D.n14 VM12D.t62 4.35
+R1656 VM12D.n16 VM12D.t41 4.35
+R1657 VM12D.n16 VM12D.t37 4.35
+R1658 VM12D.n1 VM12D.t9 4.35
+R1659 VM12D.n1 VM12D.t28 4.35
+R1660 VM12D.n3 VM12D.t58 4.35
+R1661 VM12D.n3 VM12D.t10 4.35
+R1662 VM12D.n5 VM12D.t42 4.35
+R1663 VM12D.n5 VM12D.t35 4.35
+R1664 VM12D.n7 VM12D.t20 4.35
+R1665 VM12D.n7 VM12D.t29 4.35
+R1666 VM12D.n48 VM12D.t65 4.35
+R1667 VM12D.n48 VM12D.t30 4.35
+R1668 VM12D.n23 VM12D.n22 1.8
+R1669 VM12D.n24 VM12D.n23 1.446
+R1670 VM12D.n62 VM12D.n61 1.428
+R1671 VM12D.n31 VM12D.n29 1.428
+R1672 VM12D.n15 VM12D.n13 1.428
+R1673 VM12D.n6 VM12D.n4 1.428
+R1674 VM12D.n42 VM12D.n41 1.428
+R1675 VM12D.n51 VM12D.n50 1.428
+R1676 VM12D.n50 VM12D.n49 1.426
+R1677 VM12D.n61 VM12D.n60 1.425
+R1678 VM12D.n29 VM12D.n27 1.425
+R1679 VM12D.n13 VM12D.n11 1.425
+R1680 VM12D.n4 VM12D.n2 1.425
+R1681 VM12D.n41 VM12D.n40 1.425
+R1682 VM12D.n63 VM12D.n62 1.425
+R1683 VM12D.n33 VM12D.n31 1.425
+R1684 VM12D.n17 VM12D.n15 1.425
+R1685 VM12D.n8 VM12D.n6 1.425
+R1686 VM12D.n43 VM12D.n42 1.425
+R1687 VM12D.n52 VM12D.n51 1.425
+R1688 VM12D.n49 VM12D.n47 1.315
+R1689 VM12D.n60 VM12D.n59 1.313
+R1690 VM12D.n27 VM12D.n25 1.313
+R1691 VM12D.n40 VM12D.n39 1.313
+R1692 VM12D.n18 VM12D.n17 0.732
+R1693 VM12D.n9 VM12D.n8 0.732
+R1694 VM12D.n64 VM12D.n63 0.721
+R1695 VM12D.n34 VM12D.n33 0.721
+R1696 VM12D.n54 VM12D.n43 0.721
+R1697 VM12D.n53 VM12D.n52 0.721
+R1698 VM12D.n50 VM12D.n46 0.658
+R1699 VM12D.n51 VM12D.n45 0.658
+R1700 VM12D.n52 VM12D.n44 0.658
+R1701 VM12D.n40 VM12D.n38 0.658
+R1702 VM12D.n41 VM12D.n37 0.658
+R1703 VM12D.n42 VM12D.n36 0.658
+R1704 VM12D.n43 VM12D.n35 0.658
+R1705 VM12D.n60 VM12D.n58 0.658
+R1706 VM12D.n61 VM12D.n57 0.658
+R1707 VM12D.n62 VM12D.n56 0.658
+R1708 VM12D.n63 VM12D.n55 0.658
+R1709 VM12D.n27 VM12D.n26 0.658
+R1710 VM12D.n29 VM12D.n28 0.658
+R1711 VM12D.n31 VM12D.n30 0.658
+R1712 VM12D.n33 VM12D.n32 0.658
+R1713 VM12D.n11 VM12D.n10 0.658
+R1714 VM12D.n13 VM12D.n12 0.658
+R1715 VM12D.n15 VM12D.n14 0.658
+R1716 VM12D.n17 VM12D.n16 0.658
+R1717 VM12D.n2 VM12D.n1 0.658
+R1718 VM12D.n4 VM12D.n3 0.658
+R1719 VM12D.n6 VM12D.n5 0.658
+R1720 VM12D.n8 VM12D.n7 0.658
+R1721 VM12D.n49 VM12D.n48 0.658
+R1722 VM12D.n0 VM12D.n65 0.545
+R1723 VM12D.n25 VM12D.n24 0.432
+R1724 VM12D.n0 VM12D.n64 0.391
+R1725 VM12D.n20 VM12D.n19 0.384
+R1726 VM12D.n18 VM12D.n9 0.382
+R1727 VM12D.n54 VM12D.n53 0.381
+R1728 VM12D VM12D.n34 0.343
+R1729 VM12D.n23 VM12D.n21 0.264
+R1730 VM12D.n34 VM12D.n18 0.191
+R1731 VM12D.n25 VM12D.n20 0.189
+R1732 VM12D.n64 VM12D.n54 0.188
+R1733 VM12D VM12D.n0 0.123
+R1734 a_11158_13910.n2 a_11158_13910.t0 57.252
+R1735 a_11158_13910.n2 a_11158_13910.t11 7.219
+R1736 a_11158_13910.n8 a_11158_13910.t5 5.139
+R1737 a_11158_13910.n3 a_11158_13910.t8 5.018
+R1738 a_11158_13910.n6 a_11158_13910.t2 4.35
+R1739 a_11158_13910.n6 a_11158_13910.t9 4.35
+R1740 a_11158_13910.n0 a_11158_13910.t1 4.35
+R1741 a_11158_13910.n0 a_11158_13910.t7 4.35
+R1742 a_11158_13910.n1 a_11158_13910.t3 4.35
+R1743 a_11158_13910.n1 a_11158_13910.t6 4.35
+R1744 a_11158_13910.n9 a_11158_13910.t4 4.35
+R1745 a_11158_13910.t10 a_11158_13910.n9 4.35
+R1746 a_11158_13910.n4 a_11158_13910.n1 0.669
+R1747 a_11158_13910.n5 a_11158_13910.n0 0.668
+R1748 a_11158_13910.n7 a_11158_13910.n6 0.668
+R1749 a_11158_13910.n9 a_11158_13910.n8 0.667
+R1750 a_11158_13910.n4 a_11158_13910.n3 0.125
+R1751 a_11158_13910.n5 a_11158_13910.n4 0.124
+R1752 a_11158_13910.n7 a_11158_13910.n5 0.121
+R1753 a_11158_13910.n8 a_11158_13910.n7 0.12
+R1754 a_11158_13910.n3 a_11158_13910.n2 0.107
+R1755 a_18646_n4664.t0 a_18646_n4664.t1 0.144
+R1756 a_19176_n2232.t0 a_19176_n2232.t1 0.144
+R1757 VM22D.n4 VM22D.t39 715.526
+R1758 VM22D.n3 VM22D.t28 715.526
+R1759 VM22D.n2 VM22D.t30 715.526
+R1760 VM22D.n1 VM22D.t33 715.526
+R1761 VM22D.n0 VM22D.t36 715.526
+R1762 VM22D.n15 VM22D.t25 715.526
+R1763 VM22D.n14 VM22D.t41 715.526
+R1764 VM22D.n13 VM22D.t24 715.526
+R1765 VM22D.n12 VM22D.t37 715.526
+R1766 VM22D.n11 VM22D.t40 715.526
+R1767 VM22D.n6 VM22D.t38 715.526
+R1768 VM22D.n7 VM22D.t26 715.526
+R1769 VM22D.n8 VM22D.t22 715.526
+R1770 VM22D.n9 VM22D.t35 715.526
+R1771 VM22D.n10 VM22D.t23 715.526
+R1772 VM22D.n10 VM22D.t31 715.526
+R1773 VM22D.n9 VM22D.t34 715.526
+R1774 VM22D.n8 VM22D.t27 715.526
+R1775 VM22D.n7 VM22D.t29 715.526
+R1776 VM22D.n6 VM22D.t32 715.526
+R1777 VM22D.n16 VM22D.t19 8.049
+R1778 VM22D.n16 VM22D.t18 7.84
+R1779 VM22D.n21 VM22D.t6 6.43
+R1780 VM22D.n25 VM22D.t12 5.137
+R1781 VM22D.n26 VM22D.t7 4.35
+R1782 VM22D.n26 VM22D.t21 4.35
+R1783 VM22D.n27 VM22D.t3 4.35
+R1784 VM22D.n27 VM22D.t11 4.35
+R1785 VM22D.n28 VM22D.t20 4.35
+R1786 VM22D.n28 VM22D.t2 4.35
+R1787 VM22D.n29 VM22D.t13 4.35
+R1788 VM22D.n29 VM22D.t8 4.35
+R1789 VM22D.n30 VM22D.t4 4.35
+R1790 VM22D.n30 VM22D.t16 4.35
+R1791 VM22D.n20 VM22D.t5 4.35
+R1792 VM22D.n20 VM22D.t1 4.35
+R1793 VM22D.n19 VM22D.t14 4.35
+R1794 VM22D.n19 VM22D.t9 4.35
+R1795 VM22D.n18 VM22D.t17 4.35
+R1796 VM22D.n18 VM22D.t15 4.35
+R1797 VM22D.n17 VM22D.t10 4.35
+R1798 VM22D.n17 VM22D.t0 4.35
+R1799 VM22D.n36 VM22D.n35 2.806
+R1800 VM22D.n31 VM22D.n30 2.191
+R1801 VM22D.n33 VM22D.n32 1.573
+R1802 VM22D.n34 VM22D.n33 1.572
+R1803 VM22D.n32 VM22D.n31 1.57
+R1804 VM22D.n36 VM22D.n16 1.502
+R1805 VM22D.n23 VM22D.n22 1.428
+R1806 VM22D.n22 VM22D.n21 1.425
+R1807 VM22D.n24 VM22D.n23 1.425
+R1808 VM22D.n25 VM22D.n24 1.3
+R1809 VM22D.n21 VM22D.n20 0.658
+R1810 VM22D.n22 VM22D.n19 0.658
+R1811 VM22D.n23 VM22D.n18 0.658
+R1812 VM22D.n24 VM22D.n17 0.658
+R1813 VM22D.n38 VM22D.n37 0.641
+R1814 VM22D.n35 VM22D.n34 0.641
+R1815 VM22D.n34 VM22D.n26 0.63
+R1816 VM22D.n33 VM22D.n27 0.63
+R1817 VM22D.n32 VM22D.n28 0.63
+R1818 VM22D.n31 VM22D.n29 0.63
+R1819 VM22D.n39 VM22D.n4 0.496
+R1820 VM22D.n12 VM22D.n11 0.4
+R1821 VM22D.n13 VM22D.n12 0.4
+R1822 VM22D.n14 VM22D.n13 0.4
+R1823 VM22D.n15 VM22D.n14 0.4
+R1824 VM22D.n1 VM22D.n0 0.363
+R1825 VM22D.n2 VM22D.n1 0.363
+R1826 VM22D.n3 VM22D.n2 0.363
+R1827 VM22D.n4 VM22D.n3 0.363
+R1828 VM22D.n35 VM22D.n25 0.264
+R1829 VM22D VM22D.n39 0.263
+R1830 VM22D.n37 VM22D.n15 0.239
+R1831 VM22D.n39 VM22D.n38 0.213
+R1832 VM22D.n37 VM22D.n36 0.206
+R1833 VM22D.n38 VM22D.n10 0.175
+R1834 VM22D.n7 VM22D.n6 0.16
+R1835 VM22D.n8 VM22D.n7 0.16
+R1836 VM22D.n9 VM22D.n8 0.16
+R1837 VM22D.n10 VM22D.n9 0.16
+R1838 VM22D.n6 VM22D.n5 0.125
+R1839 a_216_n2258.n0 a_216_n2258.t25 21.742
+R1840 a_216_n2258.n18 a_216_n2258.t22 21.742
+R1841 a_216_n2258.n0 a_216_n2258.t38 18.275
+R1842 a_216_n2258.n1 a_216_n2258.t33 18.275
+R1843 a_216_n2258.n2 a_216_n2258.t40 18.275
+R1844 a_216_n2258.n3 a_216_n2258.t35 18.275
+R1845 a_216_n2258.n4 a_216_n2258.t32 18.275
+R1846 a_216_n2258.n5 a_216_n2258.t39 18.275
+R1847 a_216_n2258.n6 a_216_n2258.t26 18.275
+R1848 a_216_n2258.n7 a_216_n2258.t23 18.275
+R1849 a_216_n2258.n8 a_216_n2258.t30 18.275
+R1850 a_216_n2258.n18 a_216_n2258.t37 18.275
+R1851 a_216_n2258.n19 a_216_n2258.t27 18.275
+R1852 a_216_n2258.n20 a_216_n2258.t24 18.275
+R1853 a_216_n2258.n21 a_216_n2258.t28 18.275
+R1854 a_216_n2258.n22 a_216_n2258.t34 18.275
+R1855 a_216_n2258.n23 a_216_n2258.t31 18.275
+R1856 a_216_n2258.n24 a_216_n2258.t36 18.275
+R1857 a_216_n2258.n25 a_216_n2258.t21 18.275
+R1858 a_216_n2258.n26 a_216_n2258.t29 18.275
+R1859 a_216_n2258.n48 a_216_n2258.t16 4.95
+R1860 a_216_n2258.n48 a_216_n2258.t18 4.95
+R1861 a_216_n2258.n49 a_216_n2258.t9 4.95
+R1862 a_216_n2258.n49 a_216_n2258.t13 4.95
+R1863 a_216_n2258.n50 a_216_n2258.t17 4.95
+R1864 a_216_n2258.n50 a_216_n2258.t4 4.95
+R1865 a_216_n2258.n51 a_216_n2258.t5 4.95
+R1866 a_216_n2258.n51 a_216_n2258.t19 4.95
+R1867 a_216_n2258.n55 a_216_n2258.t14 4.95
+R1868 a_216_n2258.n55 a_216_n2258.t2 4.95
+R1869 a_216_n2258.n46 a_216_n2258.t1 4.95
+R1870 a_216_n2258.n46 a_216_n2258.t15 4.95
+R1871 a_216_n2258.n39 a_216_n2258.t11 4.95
+R1872 a_216_n2258.n39 a_216_n2258.t6 4.95
+R1873 a_216_n2258.n40 a_216_n2258.t3 4.95
+R1874 a_216_n2258.n40 a_216_n2258.t0 4.95
+R1875 a_216_n2258.n41 a_216_n2258.t10 4.95
+R1876 a_216_n2258.n41 a_216_n2258.t8 4.95
+R1877 a_216_n2258.n42 a_216_n2258.t12 4.95
+R1878 a_216_n2258.n42 a_216_n2258.t7 4.95
+R1879 a_216_n2258.n58 a_216_n2258.n38 3.706
+R1880 a_216_n2258.n8 a_216_n2258.n7 3.48
+R1881 a_216_n2258.n10 a_216_n2258.n9 3.48
+R1882 a_216_n2258.n11 a_216_n2258.n10 3.48
+R1883 a_216_n2258.n12 a_216_n2258.n11 3.48
+R1884 a_216_n2258.n13 a_216_n2258.n12 3.48
+R1885 a_216_n2258.n14 a_216_n2258.n13 3.48
+R1886 a_216_n2258.n15 a_216_n2258.n14 3.48
+R1887 a_216_n2258.n16 a_216_n2258.n15 3.48
+R1888 a_216_n2258.n17 a_216_n2258.n16 3.48
+R1889 a_216_n2258.n26 a_216_n2258.n25 3.48
+R1890 a_216_n2258.n28 a_216_n2258.n27 3.48
+R1891 a_216_n2258.n29 a_216_n2258.n28 3.48
+R1892 a_216_n2258.n30 a_216_n2258.n29 3.48
+R1893 a_216_n2258.n31 a_216_n2258.n30 3.48
+R1894 a_216_n2258.n32 a_216_n2258.n31 3.48
+R1895 a_216_n2258.n33 a_216_n2258.n32 3.48
+R1896 a_216_n2258.n34 a_216_n2258.n33 3.48
+R1897 a_216_n2258.n35 a_216_n2258.n34 3.48
+R1898 a_216_n2258.n7 a_216_n2258.n6 3.467
+R1899 a_216_n2258.n6 a_216_n2258.n5 3.467
+R1900 a_216_n2258.n5 a_216_n2258.n4 3.467
+R1901 a_216_n2258.n4 a_216_n2258.n3 3.467
+R1902 a_216_n2258.n3 a_216_n2258.n2 3.467
+R1903 a_216_n2258.n2 a_216_n2258.n1 3.467
+R1904 a_216_n2258.n1 a_216_n2258.n0 3.467
+R1905 a_216_n2258.n25 a_216_n2258.n24 3.467
+R1906 a_216_n2258.n24 a_216_n2258.n23 3.467
+R1907 a_216_n2258.n23 a_216_n2258.n22 3.467
+R1908 a_216_n2258.n22 a_216_n2258.n21 3.467
+R1909 a_216_n2258.n21 a_216_n2258.n20 3.467
+R1910 a_216_n2258.n20 a_216_n2258.n19 3.467
+R1911 a_216_n2258.n19 a_216_n2258.n18 3.467
+R1912 a_216_n2258.n36 a_216_n2258.n35 1.389
+R1913 a_216_n2258.t20 a_216_n2258.n58 1.054
+R1914 a_216_n2258.n38 a_216_n2258.n8 0.875
+R1915 a_216_n2258.n37 a_216_n2258.n17 0.875
+R1916 a_216_n2258.n36 a_216_n2258.n26 0.875
+R1917 a_216_n2258.n43 a_216_n2258.n42 0.835
+R1918 a_216_n2258.n52 a_216_n2258.n51 0.814
+R1919 a_216_n2258.n57 a_216_n2258.n56 0.763
+R1920 a_216_n2258.n47 a_216_n2258.n46 0.699
+R1921 a_216_n2258.n45 a_216_n2258.n39 0.699
+R1922 a_216_n2258.n44 a_216_n2258.n40 0.699
+R1923 a_216_n2258.n43 a_216_n2258.n41 0.699
+R1924 a_216_n2258.n54 a_216_n2258.n48 0.677
+R1925 a_216_n2258.n53 a_216_n2258.n49 0.677
+R1926 a_216_n2258.n52 a_216_n2258.n50 0.677
+R1927 a_216_n2258.n56 a_216_n2258.n55 0.677
+R1928 a_216_n2258.n38 a_216_n2258.n37 0.514
+R1929 a_216_n2258.n58 a_216_n2258.n57 0.27
+R1930 a_216_n2258.n37 a_216_n2258.n36 0.144
+R1931 a_216_n2258.n56 a_216_n2258.n54 0.142
+R1932 a_216_n2258.n47 a_216_n2258.n45 0.141
+R1933 a_216_n2258.n53 a_216_n2258.n52 0.137
+R1934 a_216_n2258.n44 a_216_n2258.n43 0.137
+R1935 a_216_n2258.n54 a_216_n2258.n53 0.137
+R1936 a_216_n2258.n45 a_216_n2258.n44 0.137
+R1937 a_216_n2258.n57 a_216_n2258.n47 0.132
+R1938 I_ref.n13 I_ref.t2 5.832
+R1939 I_ref.n4 I_ref.t16 5.813
+R1940 I_ref.n17 I_ref.t9 5.692
+R1941 I_ref.n8 I_ref.t3 5.676
+R1942 I_ref.n0 I_ref.t1 4.95
+R1943 I_ref.n0 I_ref.t15 4.95
+R1944 I_ref.n1 I_ref.t4 4.95
+R1945 I_ref.n1 I_ref.t19 4.95
+R1946 I_ref.n2 I_ref.t17 4.95
+R1947 I_ref.n2 I_ref.t6 4.95
+R1948 I_ref.n3 I_ref.t0 4.95
+R1949 I_ref.n3 I_ref.t18 4.95
+R1950 I_ref.n12 I_ref.t13 4.95
+R1951 I_ref.n12 I_ref.t10 4.95
+R1952 I_ref.n11 I_ref.t11 4.95
+R1953 I_ref.n11 I_ref.t7 4.95
+R1954 I_ref.n10 I_ref.t8 4.95
+R1955 I_ref.n10 I_ref.t14 4.95
+R1956 I_ref.n9 I_ref.t5 4.95
+R1957 I_ref.n9 I_ref.t12 4.95
+R1958 I_ref I_ref.n18 1.798
+R1959 I_ref.n16 I_ref.n9 0.742
+R1960 I_ref.n13 I_ref.n12 0.742
+R1961 I_ref.n14 I_ref.n11 0.742
+R1962 I_ref.n15 I_ref.n10 0.742
+R1963 I_ref.n7 I_ref.n0 0.726
+R1964 I_ref.n5 I_ref.n2 0.725
+R1965 I_ref.n4 I_ref.n3 0.725
+R1966 I_ref.n6 I_ref.n1 0.725
+R1967 I_ref.n18 I_ref.n8 0.473
+R1968 I_ref.n18 I_ref.n17 0.337
+R1969 I_ref.n7 I_ref.n6 0.144
+R1970 I_ref.n16 I_ref.n15 0.143
+R1971 I_ref.n15 I_ref.n14 0.141
+R1972 I_ref.n17 I_ref.n16 0.141
+R1973 I_ref.n14 I_ref.n13 0.14
+R1974 I_ref.n6 I_ref.n5 0.14
+R1975 I_ref.n8 I_ref.n7 0.14
+R1976 I_ref.n5 I_ref.n4 0.14
+R1977 VM3D.n5 VM3D.t15 6.43
+R1978 VM3D.n9 VM3D.t10 5.009
+R1979 VM3D.n10 VM3D.t4 4.35
+R1980 VM3D.n10 VM3D.t9 4.35
+R1981 VM3D.n11 VM3D.t6 4.35
+R1982 VM3D.n11 VM3D.t12 4.35
+R1983 VM3D.n12 VM3D.t16 4.35
+R1984 VM3D.n12 VM3D.t13 4.35
+R1985 VM3D.n13 VM3D.t3 4.35
+R1986 VM3D.n13 VM3D.t18 4.35
+R1987 VM3D.n4 VM3D.t7 4.35
+R1988 VM3D.n4 VM3D.t2 4.35
+R1989 VM3D.n3 VM3D.t5 4.35
+R1990 VM3D.n3 VM3D.t0 4.35
+R1991 VM3D.n2 VM3D.t1 4.35
+R1992 VM3D.n2 VM3D.t8 4.35
+R1993 VM3D.n1 VM3D.t17 4.35
+R1994 VM3D.n1 VM3D.t14 4.35
+R1995 VM3D.n20 VM3D.t20 4.35
+R1996 VM3D.n20 VM3D.t22 4.35
+R1997 VM3D.n0 VM3D.t21 4.35
+R1998 VM3D.n0 VM3D.t23 4.35
+R1999 VM3D.n17 VM3D.t11 4.35
+R2000 VM3D.n17 VM3D.t19 4.35
+R2001 VM3D.n14 VM3D.n13 2.191
+R2002 VM3D.n18 VM3D.n16 1.573
+R2003 VM3D.n16 VM3D.n15 1.573
+R2004 VM3D.n15 VM3D.n14 1.57
+R2005 VM3D.n7 VM3D.n6 1.428
+R2006 VM3D.n6 VM3D.n5 1.425
+R2007 VM3D.n8 VM3D.n7 1.425
+R2008 VM3D.n22 VM3D.n21 1.284
+R2009 VM3D.n9 VM3D.n8 1.209
+R2010 VM3D.n21 VM3D.n19 0.887
+R2011 VM3D.n5 VM3D.n4 0.658
+R2012 VM3D.n6 VM3D.n3 0.658
+R2013 VM3D.n7 VM3D.n2 0.658
+R2014 VM3D.n8 VM3D.n1 0.658
+R2015 VM3D.n16 VM3D.n10 0.63
+R2016 VM3D.n15 VM3D.n11 0.63
+R2017 VM3D.n14 VM3D.n12 0.63
+R2018 VM3D.n18 VM3D.n17 0.63
+R2019 VM3D.n19 VM3D.n18 0.542
+R2020 VM3D.n21 VM3D.n20 0.447
+R2021 VM3D.n22 VM3D.n0 0.447
+R2022 VM3D VM3D.n22 0.335
+R2023 VM3D.n19 VM3D.n9 0.189
+R2024 a_19136_7699.n5 a_19136_7699.t11 7.865
+R2025 a_19136_7699.n6 a_19136_7699.t10 7.846
+R2026 a_19136_7699.n4 a_19136_7699.t8 7.831
+R2027 a_19136_7699.n7 a_19136_7699.t7 7.82
+R2028 a_19136_7699.n0 a_19136_7699.t1 7.141
+R2029 a_19136_7699.n0 a_19136_7699.t5 7.141
+R2030 a_19136_7699.n1 a_19136_7699.t3 7.141
+R2031 a_19136_7699.n1 a_19136_7699.t6 7.141
+R2032 a_19136_7699.n2 a_19136_7699.t4 7.141
+R2033 a_19136_7699.n2 a_19136_7699.t0 7.141
+R2034 a_19136_7699.n9 a_19136_7699.t2 7.141
+R2035 a_19136_7699.t9 a_19136_7699.n9 7.141
+R2036 a_19136_7699.n3 a_19136_7699.n2 1.011
+R2037 a_19136_7699.n9 a_19136_7699.n8 0.998
+R2038 a_19136_7699.n3 a_19136_7699.n1 0.69
+R2039 a_19136_7699.n8 a_19136_7699.n0 0.678
+R2040 a_19136_7699.n4 a_19136_7699.n3 0.323
+R2041 a_19136_7699.n8 a_19136_7699.n7 0.323
+R2042 a_19136_7699.n6 a_19136_7699.n5 0.166
+R2043 a_19136_7699.n7 a_19136_7699.n6 0.149
+R2044 a_19136_7699.n5 a_19136_7699.n4 0.149
+R2045 a_20236_n2232.t0 a_20236_n2232.t1 0.144
+R2046 a_19136_9959.n6 a_19136_9959.t11 7.865
+R2047 a_19136_9959.n5 a_19136_9959.t10 7.846
+R2048 a_19136_9959.n7 a_19136_9959.t5 7.831
+R2049 a_19136_9959.n4 a_19136_9959.t7 7.82
+R2050 a_19136_9959.n0 a_19136_9959.t0 7.141
+R2051 a_19136_9959.n0 a_19136_9959.t4 7.141
+R2052 a_19136_9959.n1 a_19136_9959.t2 7.141
+R2053 a_19136_9959.n1 a_19136_9959.t8 7.141
+R2054 a_19136_9959.n2 a_19136_9959.t6 7.141
+R2055 a_19136_9959.n2 a_19136_9959.t3 7.141
+R2056 a_19136_9959.n9 a_19136_9959.t1 7.141
+R2057 a_19136_9959.t9 a_19136_9959.n9 7.141
+R2058 a_19136_9959.n9 a_19136_9959.n8 1.009
+R2059 a_19136_9959.n3 a_19136_9959.n2 0.999
+R2060 a_19136_9959.n8 a_19136_9959.n0 0.69
+R2061 a_19136_9959.n3 a_19136_9959.n1 0.678
+R2062 a_19136_9959.n8 a_19136_9959.n7 0.323
+R2063 a_19136_9959.n4 a_19136_9959.n3 0.323
+R2064 a_19136_9959.n6 a_19136_9959.n5 0.166
+R2065 a_19136_9959.n5 a_19136_9959.n4 0.149
+R2066 a_19136_9959.n7 a_19136_9959.n6 0.149
+R2067 VM3G.n4 VM3G.t5 21.755
+R2068 VM3G.n4 VM3G.t3 18.275
+R2069 VM3G.n5 VM3G.t4 18.275
+R2070 VM3G.n3 VM3G.t2 8.553
+R2071 VM3G.n3 VM3G.n2 4.651
+R2072 VM3G.n5 VM3G.n4 3.48
+R2073 VM3G.n2 VM3G.n1 3.48
+R2074 VM3G.n6 VM3G.n5 2.192
+R2075 VM3G.n6 VM3G.n3 1.671
+R2076 VM3G VM3G.n6 0.877
+R2077 VM3G VM3G.n0 0.378
+R2078 VM3G.n0 VM3G.t0 0.124
+R2079 VM3G.n0 VM3G.t1 0.034
+R2080 a_13386_4078.t0 a_13386_4078.t1 0.144
+R2081 a_19706_n4664.t0 a_19706_n4664.t1 0.144
+R2082 a_17706_4078.t0 a_17706_4078.t1 0.138
+R2083 a_16116_1646.t0 a_16116_1646.t1 0.138
+R2084 a_15586_4078.t0 a_15586_4078.t1 0.138
+.ends
+
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_1_33BNLG.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_1_33BNLG.mag
new file mode 100644
index 0000000..d77bbc7
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_1_33BNLG.mag
@@ -0,0 +1,57 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< metal3 >>
+rect -3150 6222 3149 6250
+rect -3150 78 3065 6222
+rect 3129 78 3149 6222
+rect -3150 50 3149 78
+rect -3150 -78 3149 -50
+rect -3150 -6222 3065 -78
+rect 3129 -6222 3149 -78
+rect -3150 -6250 3149 -6222
+<< via3 >>
+rect 3065 78 3129 6222
+rect 3065 -6222 3129 -78
+<< mimcap >>
+rect -3050 6110 2950 6150
+rect -3050 190 -3010 6110
+rect 2910 190 2950 6110
+rect -3050 150 2950 190
+rect -3050 -190 2950 -150
+rect -3050 -6110 -3010 -190
+rect 2910 -6110 2950 -190
+rect -3050 -6150 2950 -6110
+<< mimcapcontact >>
+rect -3010 190 2910 6110
+rect -3010 -6110 2910 -190
+<< metal4 >>
+rect -102 6111 2 6300
+rect 3018 6238 3122 6300
+rect 3018 6222 3145 6238
+rect -3011 6110 2911 6111
+rect -3011 190 -3010 6110
+rect 2910 190 2911 6110
+rect -3011 189 2911 190
+rect -102 -189 2 189
+rect 3018 78 3065 6222
+rect 3129 78 3145 6222
+rect 3018 62 3145 78
+rect 3018 -62 3122 62
+rect 3018 -78 3145 -62
+rect -3011 -190 2911 -189
+rect -3011 -6110 -3010 -190
+rect 2910 -6110 2911 -190
+rect -3011 -6111 2911 -6110
+rect -102 -6300 2 -6111
+rect 3018 -6222 3065 -78
+rect 3129 -6222 3145 -78
+rect 3018 -6238 3145 -6222
+rect 3018 -6300 3122 -6238
+<< properties >>
+string FIXED_BBOX -3150 50 3050 6250
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 30.0 l 30.0 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 2 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag
new file mode 100644
index 0000000..7cdd38d
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645614240
+<< metal3 >>
+rect -3150 3072 3149 3100
+rect -3150 -3072 3065 3072
+rect 3129 -3072 3149 3072
+rect -3150 -3100 3149 -3072
+<< via3 >>
+rect 3065 -3072 3129 3072
+<< mimcap >>
+rect -3050 2960 2950 3000
+rect -3050 -2960 -3010 2960
+rect 2910 -2960 2950 2960
+rect -3050 -3000 2950 -2960
+<< mimcapcontact >>
+rect -3010 -2960 2910 2960
+<< metal4 >>
+rect 3049 3072 3145 3088
+rect -3011 2960 2911 2961
+rect -3011 -2960 -3010 2960
+rect 2910 -2960 2911 2960
+rect -3011 -2961 2911 -2960
+rect 3049 -3072 3065 3072
+rect 3129 -3072 3145 3072
+rect 3049 -3088 3145 -3072
+<< properties >>
+string FIXED_BBOX -3150 -3100 3050 3100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.ext" "b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.ext"
new file mode 100644
index 0000000..4eafc5c
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.ext"
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+node "c1_n2050_n2000#" 0 0 -2050 -2000 mim 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15382084 15688 0 0 0 0
+node "m3_n2150_n2100#" 2 9067.5 -2150 -2100 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18055800 16998 400896 8544 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m3_n2150_n2100#" "c1_n2050_n2000#" 38347.7
+device csubckt sky130_fd_pr__cap_mim_m3_1 -2050 -2000 -2049 -1999 w=4000 l=4000 "None" "c1_n2050_n2000#" 15680 0 "m3_n2150_n2100#" 100 0
diff --git "a/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.mag" "b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.mag"
new file mode 100644
index 0000000..d246348
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ\0430.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal3 >>
+rect -2150 2072 2149 2100
+rect -2150 -2072 2065 2072
+rect 2129 -2072 2149 2072
+rect -2150 -2100 2149 -2072
+<< via3 >>
+rect 2065 -2072 2129 2072
+<< mimcap >>
+rect -2050 1960 1950 2000
+rect -2050 -1960 -2010 1960
+rect 1910 -1960 1950 1960
+rect -2050 -2000 1950 -1960
+<< mimcapcontact >>
+rect -2010 -1960 1910 1960
+<< metal4 >>
+rect 2049 2072 2145 2088
+rect -2011 1960 1911 1961
+rect -2011 -1960 -2010 1960
+rect 1910 -1960 1911 1960
+rect -2011 -1961 1911 -1960
+rect 2049 -2072 2065 2072
+rect 2129 -2072 2145 2072
+rect 2049 -2088 2145 -2072
+<< properties >>
+string FIXED_BBOX -2150 -2100 2050 2100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag
new file mode 100644
index 0000000..7d714e5
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645630008
+<< metal3 >>
+rect -2150 2072 2149 2100
+rect -2150 -2072 2065 2072
+rect 2129 -2072 2149 2072
+rect -2150 -2100 2149 -2072
+<< via3 >>
+rect 2065 -2072 2129 2072
+<< mimcap >>
+rect -2050 1960 1950 2000
+rect -2050 -1960 -2010 1960
+rect 1910 -1960 1950 1960
+rect -2050 -2000 1950 -1960
+<< mimcapcontact >>
+rect -2010 -1960 1910 1960
+<< metal4 >>
+rect 2049 2072 2145 2088
+rect -2011 1960 1911 1961
+rect -2011 -1960 -2010 1960
+rect 1910 -1960 1911 1960
+rect -2011 -1961 1911 -1960
+rect 2049 -2072 2065 2072
+rect 2129 -2072 2145 2072
+rect 2049 -2088 2145 -2072
+<< properties >>
+string FIXED_BBOX -2150 -2100 2050 2100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_2_L46JLG.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_2_L46JLG.mag
new file mode 100644
index 0000000..6432873
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_2_L46JLG.mag
@@ -0,0 +1,63 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< error_p >>
+rect 2733 -6300 3029 6300
+rect 3053 271 3349 6251
+rect 3053 49 3373 271
+rect 3053 -271 3373 -49
+rect 3053 -6251 3349 -271
+<< metal4 >>
+rect -3351 6209 3351 6250
+rect -3351 91 3095 6209
+rect 3331 91 3351 6209
+rect -3351 50 3351 91
+rect -3351 -91 3351 -50
+rect -3351 -6209 3095 -91
+rect 3331 -6209 3351 -91
+rect -3351 -6250 3351 -6209
+<< via4 >>
+rect 3095 91 3331 6209
+rect 3095 -6209 3331 -91
+<< mimcap2 >>
+rect -3251 6110 2749 6150
+rect -3251 190 -3211 6110
+rect 2709 190 2749 6110
+rect -3251 150 2749 190
+rect -3251 -190 2749 -150
+rect -3251 -6110 -3211 -190
+rect 2709 -6110 2749 -190
+rect -3251 -6150 2749 -6110
+<< mimcap2contact >>
+rect -3211 190 2709 6110
+rect -3211 -6110 2709 -190
+<< metal5 >>
+rect -411 6134 -91 6300
+rect 2709 6134 3029 6300
+rect -3235 6110 3029 6134
+rect -3235 190 -3211 6110
+rect 2709 190 3029 6110
+rect -3235 166 3029 190
+rect -411 -166 -91 166
+rect 2709 -166 3029 166
+rect 3053 6209 3373 6251
+rect 3053 91 3095 6209
+rect 3331 91 3373 6209
+rect 3053 49 3373 91
+rect -3235 -190 3029 -166
+rect -3235 -6110 -3211 -190
+rect 2709 -6110 3029 -190
+rect -3235 -6134 3029 -6110
+rect -411 -6300 -91 -6134
+rect 2709 -6300 3029 -6134
+rect 3053 -91 3373 -49
+rect 3053 -6209 3095 -91
+rect 3331 -6209 3373 -91
+rect 3053 -6251 3373 -6209
+<< properties >>
+string FIXED_BBOX -3351 50 2849 6250
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 2 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.ext" "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.ext"
new file mode 100644
index 0000000..42a1782
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.ext"
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n3100#" "c2_n3251_n3000#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 800 0
diff --git "a/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.mag" "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.mag"
new file mode 100644
index 0000000..c2006ac
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0431.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..f85838e
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645614240
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_2_M4K9VW.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_2_M4K9VW.mag
new file mode 100644
index 0000000..d0fa06e
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_2_M4K9VW.mag
@@ -0,0 +1,63 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< error_p >>
+rect 2233 -5300 2529 5300
+rect 2553 271 2849 5251
+rect 2553 49 2873 271
+rect 2553 -271 2873 -49
+rect 2553 -5251 2849 -271
+<< metal4 >>
+rect -2851 5209 2851 5250
+rect -2851 91 2595 5209
+rect 2831 91 2851 5209
+rect -2851 50 2851 91
+rect -2851 -91 2851 -50
+rect -2851 -5209 2595 -91
+rect 2831 -5209 2851 -91
+rect -2851 -5250 2851 -5209
+<< via4 >>
+rect 2595 91 2831 5209
+rect 2595 -5209 2831 -91
+<< mimcap2 >>
+rect -2751 5110 2249 5150
+rect -2751 190 -2711 5110
+rect 2209 190 2249 5110
+rect -2751 150 2249 190
+rect -2751 -190 2249 -150
+rect -2751 -5110 -2711 -190
+rect 2209 -5110 2249 -190
+rect -2751 -5150 2249 -5110
+<< mimcap2contact >>
+rect -2711 190 2209 5110
+rect -2711 -5110 2209 -190
+<< metal5 >>
+rect -411 5134 -91 5300
+rect 2209 5134 2529 5300
+rect -2735 5110 2529 5134
+rect -2735 190 -2711 5110
+rect 2209 190 2529 5110
+rect -2735 166 2529 190
+rect -411 -166 -91 166
+rect 2209 -166 2529 166
+rect 2553 5209 2873 5251
+rect 2553 91 2595 5209
+rect 2831 91 2873 5209
+rect 2553 49 2873 91
+rect -2735 -190 2529 -166
+rect -2735 -5110 -2711 -190
+rect 2209 -5110 2529 -190
+rect -2735 -5134 2529 -5110
+rect -411 -5300 -91 -5134
+rect 2209 -5300 2529 -5134
+rect 2553 -91 2873 -49
+rect 2553 -5209 2595 -91
+rect 2831 -5209 2873 -91
+rect 2553 -5251 2873 -5209
+<< properties >>
+string FIXED_BBOX -2851 50 2349 5250
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 25 l 25 val 1.269k carea 2.00 cperi 0.19 nx 1 ny 2 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ\0430.mag" "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ\0430.mag"
new file mode 100644
index 0000000..512cb2f
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ\0430.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< metal4 >>
+rect -2351 2059 2351 2100
+rect -2351 -2059 2095 2059
+rect 2331 -2059 2351 2059
+rect -2351 -2100 2351 -2059
+<< via4 >>
+rect 2095 -2059 2331 2059
+<< mimcap2 >>
+rect -2251 1960 1749 2000
+rect -2251 -1960 -2211 1960
+rect 1709 -1960 1749 1960
+rect -2251 -2000 1749 -1960
+<< mimcap2contact >>
+rect -2211 -1960 1709 1960
+<< metal5 >>
+rect 2053 2059 2373 2101
+rect -2235 1960 1733 1984
+rect -2235 -1960 -2211 1960
+rect 1709 -1960 1733 1960
+rect -2235 -1984 1733 -1960
+rect 2053 -2059 2095 2059
+rect 2331 -2059 2373 2059
+rect 2053 -2101 2373 -2059
+<< properties >>
+string FIXED_BBOX -2351 -2100 1849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag b/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag
new file mode 100644
index 0000000..512cb2f
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_mim_m3_2_WXTTNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< metal4 >>
+rect -2351 2059 2351 2100
+rect -2351 -2059 2095 2059
+rect 2331 -2059 2351 2059
+rect -2351 -2100 2351 -2059
+<< via4 >>
+rect 2095 -2059 2331 2059
+<< mimcap2 >>
+rect -2251 1960 1749 2000
+rect -2251 -1960 -2211 1960
+rect 1709 -1960 1749 1960
+rect -2251 -2000 1749 -1960
+<< mimcap2contact >>
+rect -2211 -1960 1709 1960
+<< metal5 >>
+rect 2053 2059 2373 2101
+rect -2235 1960 1733 1984
+rect -2235 -1960 -2211 1960
+rect 1709 -1960 1733 1960
+rect -2235 -1984 1733 -1960
+rect 2053 -2059 2095 2059
+rect 2331 -2059 2373 2059
+rect 2053 -2101 2373 -2059
+<< properties >>
+string FIXED_BBOX -2351 -2100 1849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_269Y44.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_269Y44.mag
new file mode 100644
index 0000000..49c91f4
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_269Y44.mag
@@ -0,0 +1,1577 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< nwell >>
+rect -6773 127 -6107 1309
+rect -5853 127 -5187 1309
+rect -4933 127 -4267 1309
+rect -4013 127 -3347 1309
+rect -3093 127 -2427 1309
+rect -2173 127 -1507 1309
+rect -1253 127 -587 1309
+rect -333 127 333 1309
+rect 587 127 1253 1309
+rect 1507 127 2173 1309
+rect 2427 127 3093 1309
+rect 3347 127 4013 1309
+rect 4267 127 4933 1309
+rect 5187 127 5853 1309
+rect 6107 127 6773 1309
+rect -6773 -1309 -6107 -127
+rect -5853 -1309 -5187 -127
+rect -4933 -1309 -4267 -127
+rect -4013 -1309 -3347 -127
+rect -3093 -1309 -2427 -127
+rect -2173 -1309 -1507 -127
+rect -1253 -1309 -587 -127
+rect -333 -1309 333 -127
+rect 587 -1309 1253 -127
+rect 1507 -1309 2173 -127
+rect 2427 -1309 3093 -127
+rect 3347 -1309 4013 -127
+rect 4267 -1309 4933 -127
+rect 5187 -1309 5853 -127
+rect 6107 -1309 6773 -127
+<< pwell >>
+rect -6883 1309 6883 1419
+rect -6883 127 -6773 1309
+rect -6107 127 -5853 1309
+rect -5187 127 -4933 1309
+rect -4267 127 -4013 1309
+rect -3347 127 -3093 1309
+rect -2427 127 -2173 1309
+rect -1507 127 -1253 1309
+rect -587 127 -333 1309
+rect 333 127 587 1309
+rect 1253 127 1507 1309
+rect 2173 127 2427 1309
+rect 3093 127 3347 1309
+rect 4013 127 4267 1309
+rect 4933 127 5187 1309
+rect 5853 127 6107 1309
+rect 6773 127 6883 1309
+rect -6883 -127 6883 127
+rect -6883 -1309 -6773 -127
+rect -6107 -1309 -5853 -127
+rect -5187 -1309 -4933 -127
+rect -4267 -1309 -4013 -127
+rect -3347 -1309 -3093 -127
+rect -2427 -1309 -2173 -127
+rect -1507 -1309 -1253 -127
+rect -587 -1309 -333 -127
+rect 333 -1309 587 -127
+rect 1253 -1309 1507 -127
+rect 2173 -1309 2427 -127
+rect 3093 -1309 3347 -127
+rect 4013 -1309 4267 -127
+rect 4933 -1309 5187 -127
+rect 5853 -1309 6107 -127
+rect 6773 -1309 6883 -127
+rect -6883 -1419 6883 -1309
+<< varactor >>
+rect -6640 218 -6240 1218
+rect -5720 218 -5320 1218
+rect -4800 218 -4400 1218
+rect -3880 218 -3480 1218
+rect -2960 218 -2560 1218
+rect -2040 218 -1640 1218
+rect -1120 218 -720 1218
+rect -200 218 200 1218
+rect 720 218 1120 1218
+rect 1640 218 2040 1218
+rect 2560 218 2960 1218
+rect 3480 218 3880 1218
+rect 4400 218 4800 1218
+rect 5320 218 5720 1218
+rect 6240 218 6640 1218
+rect -6640 -1218 -6240 -218
+rect -5720 -1218 -5320 -218
+rect -4800 -1218 -4400 -218
+rect -3880 -1218 -3480 -218
+rect -2960 -1218 -2560 -218
+rect -2040 -1218 -1640 -218
+rect -1120 -1218 -720 -218
+rect -200 -1218 200 -218
+rect 720 -1218 1120 -218
+rect 1640 -1218 2040 -218
+rect 2560 -1218 2960 -218
+rect 3480 -1218 3880 -218
+rect 4400 -1218 4800 -218
+rect 5320 -1218 5720 -218
+rect 6240 -1218 6640 -218
+<< psubdiff >>
+rect -6847 1349 -6751 1383
+rect 6751 1349 6847 1383
+rect -6847 1287 -6813 1349
+rect 6813 1287 6847 1349
+rect -6847 -1349 -6813 -1287
+rect 6813 -1349 6847 -1287
+rect -6847 -1383 -6751 -1349
+rect 6751 -1383 6847 -1349
+<< nsubdiff >>
+rect -6737 1194 -6640 1218
+rect -6737 242 -6725 1194
+rect -6691 242 -6640 1194
+rect -6737 218 -6640 242
+rect -6240 1194 -6143 1218
+rect -6240 242 -6189 1194
+rect -6155 242 -6143 1194
+rect -6240 218 -6143 242
+rect -5817 1194 -5720 1218
+rect -5817 242 -5805 1194
+rect -5771 242 -5720 1194
+rect -5817 218 -5720 242
+rect -5320 1194 -5223 1218
+rect -5320 242 -5269 1194
+rect -5235 242 -5223 1194
+rect -5320 218 -5223 242
+rect -4897 1194 -4800 1218
+rect -4897 242 -4885 1194
+rect -4851 242 -4800 1194
+rect -4897 218 -4800 242
+rect -4400 1194 -4303 1218
+rect -4400 242 -4349 1194
+rect -4315 242 -4303 1194
+rect -4400 218 -4303 242
+rect -3977 1194 -3880 1218
+rect -3977 242 -3965 1194
+rect -3931 242 -3880 1194
+rect -3977 218 -3880 242
+rect -3480 1194 -3383 1218
+rect -3480 242 -3429 1194
+rect -3395 242 -3383 1194
+rect -3480 218 -3383 242
+rect -3057 1194 -2960 1218
+rect -3057 242 -3045 1194
+rect -3011 242 -2960 1194
+rect -3057 218 -2960 242
+rect -2560 1194 -2463 1218
+rect -2560 242 -2509 1194
+rect -2475 242 -2463 1194
+rect -2560 218 -2463 242
+rect -2137 1194 -2040 1218
+rect -2137 242 -2125 1194
+rect -2091 242 -2040 1194
+rect -2137 218 -2040 242
+rect -1640 1194 -1543 1218
+rect -1640 242 -1589 1194
+rect -1555 242 -1543 1194
+rect -1640 218 -1543 242
+rect -1217 1194 -1120 1218
+rect -1217 242 -1205 1194
+rect -1171 242 -1120 1194
+rect -1217 218 -1120 242
+rect -720 1194 -623 1218
+rect -720 242 -669 1194
+rect -635 242 -623 1194
+rect -720 218 -623 242
+rect -297 1194 -200 1218
+rect -297 242 -285 1194
+rect -251 242 -200 1194
+rect -297 218 -200 242
+rect 200 1194 297 1218
+rect 200 242 251 1194
+rect 285 242 297 1194
+rect 200 218 297 242
+rect 623 1194 720 1218
+rect 623 242 635 1194
+rect 669 242 720 1194
+rect 623 218 720 242
+rect 1120 1194 1217 1218
+rect 1120 242 1171 1194
+rect 1205 242 1217 1194
+rect 1120 218 1217 242
+rect 1543 1194 1640 1218
+rect 1543 242 1555 1194
+rect 1589 242 1640 1194
+rect 1543 218 1640 242
+rect 2040 1194 2137 1218
+rect 2040 242 2091 1194
+rect 2125 242 2137 1194
+rect 2040 218 2137 242
+rect 2463 1194 2560 1218
+rect 2463 242 2475 1194
+rect 2509 242 2560 1194
+rect 2463 218 2560 242
+rect 2960 1194 3057 1218
+rect 2960 242 3011 1194
+rect 3045 242 3057 1194
+rect 2960 218 3057 242
+rect 3383 1194 3480 1218
+rect 3383 242 3395 1194
+rect 3429 242 3480 1194
+rect 3383 218 3480 242
+rect 3880 1194 3977 1218
+rect 3880 242 3931 1194
+rect 3965 242 3977 1194
+rect 3880 218 3977 242
+rect 4303 1194 4400 1218
+rect 4303 242 4315 1194
+rect 4349 242 4400 1194
+rect 4303 218 4400 242
+rect 4800 1194 4897 1218
+rect 4800 242 4851 1194
+rect 4885 242 4897 1194
+rect 4800 218 4897 242
+rect 5223 1194 5320 1218
+rect 5223 242 5235 1194
+rect 5269 242 5320 1194
+rect 5223 218 5320 242
+rect 5720 1194 5817 1218
+rect 5720 242 5771 1194
+rect 5805 242 5817 1194
+rect 5720 218 5817 242
+rect 6143 1194 6240 1218
+rect 6143 242 6155 1194
+rect 6189 242 6240 1194
+rect 6143 218 6240 242
+rect 6640 1194 6737 1218
+rect 6640 242 6691 1194
+rect 6725 242 6737 1194
+rect 6640 218 6737 242
+rect -6737 -242 -6640 -218
+rect -6737 -1194 -6725 -242
+rect -6691 -1194 -6640 -242
+rect -6737 -1218 -6640 -1194
+rect -6240 -242 -6143 -218
+rect -6240 -1194 -6189 -242
+rect -6155 -1194 -6143 -242
+rect -6240 -1218 -6143 -1194
+rect -5817 -242 -5720 -218
+rect -5817 -1194 -5805 -242
+rect -5771 -1194 -5720 -242
+rect -5817 -1218 -5720 -1194
+rect -5320 -242 -5223 -218
+rect -5320 -1194 -5269 -242
+rect -5235 -1194 -5223 -242
+rect -5320 -1218 -5223 -1194
+rect -4897 -242 -4800 -218
+rect -4897 -1194 -4885 -242
+rect -4851 -1194 -4800 -242
+rect -4897 -1218 -4800 -1194
+rect -4400 -242 -4303 -218
+rect -4400 -1194 -4349 -242
+rect -4315 -1194 -4303 -242
+rect -4400 -1218 -4303 -1194
+rect -3977 -242 -3880 -218
+rect -3977 -1194 -3965 -242
+rect -3931 -1194 -3880 -242
+rect -3977 -1218 -3880 -1194
+rect -3480 -242 -3383 -218
+rect -3480 -1194 -3429 -242
+rect -3395 -1194 -3383 -242
+rect -3480 -1218 -3383 -1194
+rect -3057 -242 -2960 -218
+rect -3057 -1194 -3045 -242
+rect -3011 -1194 -2960 -242
+rect -3057 -1218 -2960 -1194
+rect -2560 -242 -2463 -218
+rect -2560 -1194 -2509 -242
+rect -2475 -1194 -2463 -242
+rect -2560 -1218 -2463 -1194
+rect -2137 -242 -2040 -218
+rect -2137 -1194 -2125 -242
+rect -2091 -1194 -2040 -242
+rect -2137 -1218 -2040 -1194
+rect -1640 -242 -1543 -218
+rect -1640 -1194 -1589 -242
+rect -1555 -1194 -1543 -242
+rect -1640 -1218 -1543 -1194
+rect -1217 -242 -1120 -218
+rect -1217 -1194 -1205 -242
+rect -1171 -1194 -1120 -242
+rect -1217 -1218 -1120 -1194
+rect -720 -242 -623 -218
+rect -720 -1194 -669 -242
+rect -635 -1194 -623 -242
+rect -720 -1218 -623 -1194
+rect -297 -242 -200 -218
+rect -297 -1194 -285 -242
+rect -251 -1194 -200 -242
+rect -297 -1218 -200 -1194
+rect 200 -242 297 -218
+rect 200 -1194 251 -242
+rect 285 -1194 297 -242
+rect 200 -1218 297 -1194
+rect 623 -242 720 -218
+rect 623 -1194 635 -242
+rect 669 -1194 720 -242
+rect 623 -1218 720 -1194
+rect 1120 -242 1217 -218
+rect 1120 -1194 1171 -242
+rect 1205 -1194 1217 -242
+rect 1120 -1218 1217 -1194
+rect 1543 -242 1640 -218
+rect 1543 -1194 1555 -242
+rect 1589 -1194 1640 -242
+rect 1543 -1218 1640 -1194
+rect 2040 -242 2137 -218
+rect 2040 -1194 2091 -242
+rect 2125 -1194 2137 -242
+rect 2040 -1218 2137 -1194
+rect 2463 -242 2560 -218
+rect 2463 -1194 2475 -242
+rect 2509 -1194 2560 -242
+rect 2463 -1218 2560 -1194
+rect 2960 -242 3057 -218
+rect 2960 -1194 3011 -242
+rect 3045 -1194 3057 -242
+rect 2960 -1218 3057 -1194
+rect 3383 -242 3480 -218
+rect 3383 -1194 3395 -242
+rect 3429 -1194 3480 -242
+rect 3383 -1218 3480 -1194
+rect 3880 -242 3977 -218
+rect 3880 -1194 3931 -242
+rect 3965 -1194 3977 -242
+rect 3880 -1218 3977 -1194
+rect 4303 -242 4400 -218
+rect 4303 -1194 4315 -242
+rect 4349 -1194 4400 -242
+rect 4303 -1218 4400 -1194
+rect 4800 -242 4897 -218
+rect 4800 -1194 4851 -242
+rect 4885 -1194 4897 -242
+rect 4800 -1218 4897 -1194
+rect 5223 -242 5320 -218
+rect 5223 -1194 5235 -242
+rect 5269 -1194 5320 -242
+rect 5223 -1218 5320 -1194
+rect 5720 -242 5817 -218
+rect 5720 -1194 5771 -242
+rect 5805 -1194 5817 -242
+rect 5720 -1218 5817 -1194
+rect 6143 -242 6240 -218
+rect 6143 -1194 6155 -242
+rect 6189 -1194 6240 -242
+rect 6143 -1218 6240 -1194
+rect 6640 -242 6737 -218
+rect 6640 -1194 6691 -242
+rect 6725 -1194 6737 -242
+rect 6640 -1218 6737 -1194
+<< psubdiffcont >>
+rect -6751 1349 6751 1383
+rect -6847 -1287 -6813 1287
+rect 6813 -1287 6847 1287
+rect -6751 -1383 6751 -1349
+<< nsubdiffcont >>
+rect -6725 242 -6691 1194
+rect -6189 242 -6155 1194
+rect -5805 242 -5771 1194
+rect -5269 242 -5235 1194
+rect -4885 242 -4851 1194
+rect -4349 242 -4315 1194
+rect -3965 242 -3931 1194
+rect -3429 242 -3395 1194
+rect -3045 242 -3011 1194
+rect -2509 242 -2475 1194
+rect -2125 242 -2091 1194
+rect -1589 242 -1555 1194
+rect -1205 242 -1171 1194
+rect -669 242 -635 1194
+rect -285 242 -251 1194
+rect 251 242 285 1194
+rect 635 242 669 1194
+rect 1171 242 1205 1194
+rect 1555 242 1589 1194
+rect 2091 242 2125 1194
+rect 2475 242 2509 1194
+rect 3011 242 3045 1194
+rect 3395 242 3429 1194
+rect 3931 242 3965 1194
+rect 4315 242 4349 1194
+rect 4851 242 4885 1194
+rect 5235 242 5269 1194
+rect 5771 242 5805 1194
+rect 6155 242 6189 1194
+rect 6691 242 6725 1194
+rect -6725 -1194 -6691 -242
+rect -6189 -1194 -6155 -242
+rect -5805 -1194 -5771 -242
+rect -5269 -1194 -5235 -242
+rect -4885 -1194 -4851 -242
+rect -4349 -1194 -4315 -242
+rect -3965 -1194 -3931 -242
+rect -3429 -1194 -3395 -242
+rect -3045 -1194 -3011 -242
+rect -2509 -1194 -2475 -242
+rect -2125 -1194 -2091 -242
+rect -1589 -1194 -1555 -242
+rect -1205 -1194 -1171 -242
+rect -669 -1194 -635 -242
+rect -285 -1194 -251 -242
+rect 251 -1194 285 -242
+rect 635 -1194 669 -242
+rect 1171 -1194 1205 -242
+rect 1555 -1194 1589 -242
+rect 2091 -1194 2125 -242
+rect 2475 -1194 2509 -242
+rect 3011 -1194 3045 -242
+rect 3395 -1194 3429 -242
+rect 3931 -1194 3965 -242
+rect 4315 -1194 4349 -242
+rect 4851 -1194 4885 -242
+rect 5235 -1194 5269 -242
+rect 5771 -1194 5805 -242
+rect 6155 -1194 6189 -242
+rect 6691 -1194 6725 -242
+<< poly >>
+rect -6640 1290 -6240 1306
+rect -6640 1256 -6624 1290
+rect -6256 1256 -6240 1290
+rect -6640 1218 -6240 1256
+rect -5720 1290 -5320 1306
+rect -5720 1256 -5704 1290
+rect -5336 1256 -5320 1290
+rect -5720 1218 -5320 1256
+rect -4800 1290 -4400 1306
+rect -4800 1256 -4784 1290
+rect -4416 1256 -4400 1290
+rect -4800 1218 -4400 1256
+rect -3880 1290 -3480 1306
+rect -3880 1256 -3864 1290
+rect -3496 1256 -3480 1290
+rect -3880 1218 -3480 1256
+rect -2960 1290 -2560 1306
+rect -2960 1256 -2944 1290
+rect -2576 1256 -2560 1290
+rect -2960 1218 -2560 1256
+rect -2040 1290 -1640 1306
+rect -2040 1256 -2024 1290
+rect -1656 1256 -1640 1290
+rect -2040 1218 -1640 1256
+rect -1120 1290 -720 1306
+rect -1120 1256 -1104 1290
+rect -736 1256 -720 1290
+rect -1120 1218 -720 1256
+rect -200 1290 200 1306
+rect -200 1256 -184 1290
+rect 184 1256 200 1290
+rect -200 1218 200 1256
+rect 720 1290 1120 1306
+rect 720 1256 736 1290
+rect 1104 1256 1120 1290
+rect 720 1218 1120 1256
+rect 1640 1290 2040 1306
+rect 1640 1256 1656 1290
+rect 2024 1256 2040 1290
+rect 1640 1218 2040 1256
+rect 2560 1290 2960 1306
+rect 2560 1256 2576 1290
+rect 2944 1256 2960 1290
+rect 2560 1218 2960 1256
+rect 3480 1290 3880 1306
+rect 3480 1256 3496 1290
+rect 3864 1256 3880 1290
+rect 3480 1218 3880 1256
+rect 4400 1290 4800 1306
+rect 4400 1256 4416 1290
+rect 4784 1256 4800 1290
+rect 4400 1218 4800 1256
+rect 5320 1290 5720 1306
+rect 5320 1256 5336 1290
+rect 5704 1256 5720 1290
+rect 5320 1218 5720 1256
+rect 6240 1290 6640 1306
+rect 6240 1256 6256 1290
+rect 6624 1256 6640 1290
+rect 6240 1218 6640 1256
+rect -6640 180 -6240 218
+rect -6640 146 -6624 180
+rect -6256 146 -6240 180
+rect -6640 130 -6240 146
+rect -5720 180 -5320 218
+rect -5720 146 -5704 180
+rect -5336 146 -5320 180
+rect -5720 130 -5320 146
+rect -4800 180 -4400 218
+rect -4800 146 -4784 180
+rect -4416 146 -4400 180
+rect -4800 130 -4400 146
+rect -3880 180 -3480 218
+rect -3880 146 -3864 180
+rect -3496 146 -3480 180
+rect -3880 130 -3480 146
+rect -2960 180 -2560 218
+rect -2960 146 -2944 180
+rect -2576 146 -2560 180
+rect -2960 130 -2560 146
+rect -2040 180 -1640 218
+rect -2040 146 -2024 180
+rect -1656 146 -1640 180
+rect -2040 130 -1640 146
+rect -1120 180 -720 218
+rect -1120 146 -1104 180
+rect -736 146 -720 180
+rect -1120 130 -720 146
+rect -200 180 200 218
+rect -200 146 -184 180
+rect 184 146 200 180
+rect -200 130 200 146
+rect 720 180 1120 218
+rect 720 146 736 180
+rect 1104 146 1120 180
+rect 720 130 1120 146
+rect 1640 180 2040 218
+rect 1640 146 1656 180
+rect 2024 146 2040 180
+rect 1640 130 2040 146
+rect 2560 180 2960 218
+rect 2560 146 2576 180
+rect 2944 146 2960 180
+rect 2560 130 2960 146
+rect 3480 180 3880 218
+rect 3480 146 3496 180
+rect 3864 146 3880 180
+rect 3480 130 3880 146
+rect 4400 180 4800 218
+rect 4400 146 4416 180
+rect 4784 146 4800 180
+rect 4400 130 4800 146
+rect 5320 180 5720 218
+rect 5320 146 5336 180
+rect 5704 146 5720 180
+rect 5320 130 5720 146
+rect 6240 180 6640 218
+rect 6240 146 6256 180
+rect 6624 146 6640 180
+rect 6240 130 6640 146
+rect -6640 -146 -6240 -130
+rect -6640 -180 -6624 -146
+rect -6256 -180 -6240 -146
+rect -6640 -218 -6240 -180
+rect -5720 -146 -5320 -130
+rect -5720 -180 -5704 -146
+rect -5336 -180 -5320 -146
+rect -5720 -218 -5320 -180
+rect -4800 -146 -4400 -130
+rect -4800 -180 -4784 -146
+rect -4416 -180 -4400 -146
+rect -4800 -218 -4400 -180
+rect -3880 -146 -3480 -130
+rect -3880 -180 -3864 -146
+rect -3496 -180 -3480 -146
+rect -3880 -218 -3480 -180
+rect -2960 -146 -2560 -130
+rect -2960 -180 -2944 -146
+rect -2576 -180 -2560 -146
+rect -2960 -218 -2560 -180
+rect -2040 -146 -1640 -130
+rect -2040 -180 -2024 -146
+rect -1656 -180 -1640 -146
+rect -2040 -218 -1640 -180
+rect -1120 -146 -720 -130
+rect -1120 -180 -1104 -146
+rect -736 -180 -720 -146
+rect -1120 -218 -720 -180
+rect -200 -146 200 -130
+rect -200 -180 -184 -146
+rect 184 -180 200 -146
+rect -200 -218 200 -180
+rect 720 -146 1120 -130
+rect 720 -180 736 -146
+rect 1104 -180 1120 -146
+rect 720 -218 1120 -180
+rect 1640 -146 2040 -130
+rect 1640 -180 1656 -146
+rect 2024 -180 2040 -146
+rect 1640 -218 2040 -180
+rect 2560 -146 2960 -130
+rect 2560 -180 2576 -146
+rect 2944 -180 2960 -146
+rect 2560 -218 2960 -180
+rect 3480 -146 3880 -130
+rect 3480 -180 3496 -146
+rect 3864 -180 3880 -146
+rect 3480 -218 3880 -180
+rect 4400 -146 4800 -130
+rect 4400 -180 4416 -146
+rect 4784 -180 4800 -146
+rect 4400 -218 4800 -180
+rect 5320 -146 5720 -130
+rect 5320 -180 5336 -146
+rect 5704 -180 5720 -146
+rect 5320 -218 5720 -180
+rect 6240 -146 6640 -130
+rect 6240 -180 6256 -146
+rect 6624 -180 6640 -146
+rect 6240 -218 6640 -180
+rect -6640 -1256 -6240 -1218
+rect -6640 -1290 -6624 -1256
+rect -6256 -1290 -6240 -1256
+rect -6640 -1306 -6240 -1290
+rect -5720 -1256 -5320 -1218
+rect -5720 -1290 -5704 -1256
+rect -5336 -1290 -5320 -1256
+rect -5720 -1306 -5320 -1290
+rect -4800 -1256 -4400 -1218
+rect -4800 -1290 -4784 -1256
+rect -4416 -1290 -4400 -1256
+rect -4800 -1306 -4400 -1290
+rect -3880 -1256 -3480 -1218
+rect -3880 -1290 -3864 -1256
+rect -3496 -1290 -3480 -1256
+rect -3880 -1306 -3480 -1290
+rect -2960 -1256 -2560 -1218
+rect -2960 -1290 -2944 -1256
+rect -2576 -1290 -2560 -1256
+rect -2960 -1306 -2560 -1290
+rect -2040 -1256 -1640 -1218
+rect -2040 -1290 -2024 -1256
+rect -1656 -1290 -1640 -1256
+rect -2040 -1306 -1640 -1290
+rect -1120 -1256 -720 -1218
+rect -1120 -1290 -1104 -1256
+rect -736 -1290 -720 -1256
+rect -1120 -1306 -720 -1290
+rect -200 -1256 200 -1218
+rect -200 -1290 -184 -1256
+rect 184 -1290 200 -1256
+rect -200 -1306 200 -1290
+rect 720 -1256 1120 -1218
+rect 720 -1290 736 -1256
+rect 1104 -1290 1120 -1256
+rect 720 -1306 1120 -1290
+rect 1640 -1256 2040 -1218
+rect 1640 -1290 1656 -1256
+rect 2024 -1290 2040 -1256
+rect 1640 -1306 2040 -1290
+rect 2560 -1256 2960 -1218
+rect 2560 -1290 2576 -1256
+rect 2944 -1290 2960 -1256
+rect 2560 -1306 2960 -1290
+rect 3480 -1256 3880 -1218
+rect 3480 -1290 3496 -1256
+rect 3864 -1290 3880 -1256
+rect 3480 -1306 3880 -1290
+rect 4400 -1256 4800 -1218
+rect 4400 -1290 4416 -1256
+rect 4784 -1290 4800 -1256
+rect 4400 -1306 4800 -1290
+rect 5320 -1256 5720 -1218
+rect 5320 -1290 5336 -1256
+rect 5704 -1290 5720 -1256
+rect 5320 -1306 5720 -1290
+rect 6240 -1256 6640 -1218
+rect 6240 -1290 6256 -1256
+rect 6624 -1290 6640 -1256
+rect 6240 -1306 6640 -1290
+<< polycont >>
+rect -6624 1256 -6256 1290
+rect -5704 1256 -5336 1290
+rect -4784 1256 -4416 1290
+rect -3864 1256 -3496 1290
+rect -2944 1256 -2576 1290
+rect -2024 1256 -1656 1290
+rect -1104 1256 -736 1290
+rect -184 1256 184 1290
+rect 736 1256 1104 1290
+rect 1656 1256 2024 1290
+rect 2576 1256 2944 1290
+rect 3496 1256 3864 1290
+rect 4416 1256 4784 1290
+rect 5336 1256 5704 1290
+rect 6256 1256 6624 1290
+rect -6624 146 -6256 180
+rect -5704 146 -5336 180
+rect -4784 146 -4416 180
+rect -3864 146 -3496 180
+rect -2944 146 -2576 180
+rect -2024 146 -1656 180
+rect -1104 146 -736 180
+rect -184 146 184 180
+rect 736 146 1104 180
+rect 1656 146 2024 180
+rect 2576 146 2944 180
+rect 3496 146 3864 180
+rect 4416 146 4784 180
+rect 5336 146 5704 180
+rect 6256 146 6624 180
+rect -6624 -180 -6256 -146
+rect -5704 -180 -5336 -146
+rect -4784 -180 -4416 -146
+rect -3864 -180 -3496 -146
+rect -2944 -180 -2576 -146
+rect -2024 -180 -1656 -146
+rect -1104 -180 -736 -146
+rect -184 -180 184 -146
+rect 736 -180 1104 -146
+rect 1656 -180 2024 -146
+rect 2576 -180 2944 -146
+rect 3496 -180 3864 -146
+rect 4416 -180 4784 -146
+rect 5336 -180 5704 -146
+rect 6256 -180 6624 -146
+rect -6624 -1290 -6256 -1256
+rect -5704 -1290 -5336 -1256
+rect -4784 -1290 -4416 -1256
+rect -3864 -1290 -3496 -1256
+rect -2944 -1290 -2576 -1256
+rect -2024 -1290 -1656 -1256
+rect -1104 -1290 -736 -1256
+rect -184 -1290 184 -1256
+rect 736 -1290 1104 -1256
+rect 1656 -1290 2024 -1256
+rect 2576 -1290 2944 -1256
+rect 3496 -1290 3864 -1256
+rect 4416 -1290 4784 -1256
+rect 5336 -1290 5704 -1256
+rect 6256 -1290 6624 -1256
+<< locali >>
+rect -6847 1349 -6751 1383
+rect 6751 1349 6847 1383
+rect -6847 1287 -6813 1349
+rect -6640 1256 -6624 1290
+rect -6256 1256 -6240 1290
+rect -5720 1256 -5704 1290
+rect -5336 1256 -5320 1290
+rect -4800 1256 -4784 1290
+rect -4416 1256 -4400 1290
+rect -3880 1256 -3864 1290
+rect -3496 1256 -3480 1290
+rect -2960 1256 -2944 1290
+rect -2576 1256 -2560 1290
+rect -2040 1256 -2024 1290
+rect -1656 1256 -1640 1290
+rect -1120 1256 -1104 1290
+rect -736 1256 -720 1290
+rect -200 1256 -184 1290
+rect 184 1256 200 1290
+rect 720 1256 736 1290
+rect 1104 1256 1120 1290
+rect 1640 1256 1656 1290
+rect 2024 1256 2040 1290
+rect 2560 1256 2576 1290
+rect 2944 1256 2960 1290
+rect 3480 1256 3496 1290
+rect 3864 1256 3880 1290
+rect 4400 1256 4416 1290
+rect 4784 1256 4800 1290
+rect 5320 1256 5336 1290
+rect 5704 1256 5720 1290
+rect 6240 1256 6256 1290
+rect 6624 1256 6640 1290
+rect 6813 1287 6847 1349
+rect -6725 1194 -6691 1210
+rect -6725 226 -6691 242
+rect -6189 1194 -6155 1210
+rect -6189 226 -6155 242
+rect -5805 1194 -5771 1210
+rect -5805 226 -5771 242
+rect -5269 1194 -5235 1210
+rect -5269 226 -5235 242
+rect -4885 1194 -4851 1210
+rect -4885 226 -4851 242
+rect -4349 1194 -4315 1210
+rect -4349 226 -4315 242
+rect -3965 1194 -3931 1210
+rect -3965 226 -3931 242
+rect -3429 1194 -3395 1210
+rect -3429 226 -3395 242
+rect -3045 1194 -3011 1210
+rect -3045 226 -3011 242
+rect -2509 1194 -2475 1210
+rect -2509 226 -2475 242
+rect -2125 1194 -2091 1210
+rect -2125 226 -2091 242
+rect -1589 1194 -1555 1210
+rect -1589 226 -1555 242
+rect -1205 1194 -1171 1210
+rect -1205 226 -1171 242
+rect -669 1194 -635 1210
+rect -669 226 -635 242
+rect -285 1194 -251 1210
+rect -285 226 -251 242
+rect 251 1194 285 1210
+rect 251 226 285 242
+rect 635 1194 669 1210
+rect 635 226 669 242
+rect 1171 1194 1205 1210
+rect 1171 226 1205 242
+rect 1555 1194 1589 1210
+rect 1555 226 1589 242
+rect 2091 1194 2125 1210
+rect 2091 226 2125 242
+rect 2475 1194 2509 1210
+rect 2475 226 2509 242
+rect 3011 1194 3045 1210
+rect 3011 226 3045 242
+rect 3395 1194 3429 1210
+rect 3395 226 3429 242
+rect 3931 1194 3965 1210
+rect 3931 226 3965 242
+rect 4315 1194 4349 1210
+rect 4315 226 4349 242
+rect 4851 1194 4885 1210
+rect 4851 226 4885 242
+rect 5235 1194 5269 1210
+rect 5235 226 5269 242
+rect 5771 1194 5805 1210
+rect 5771 226 5805 242
+rect 6155 1194 6189 1210
+rect 6155 226 6189 242
+rect 6691 1194 6725 1210
+rect 6691 226 6725 242
+rect -6640 146 -6624 180
+rect -6256 146 -6240 180
+rect -5720 146 -5704 180
+rect -5336 146 -5320 180
+rect -4800 146 -4784 180
+rect -4416 146 -4400 180
+rect -3880 146 -3864 180
+rect -3496 146 -3480 180
+rect -2960 146 -2944 180
+rect -2576 146 -2560 180
+rect -2040 146 -2024 180
+rect -1656 146 -1640 180
+rect -1120 146 -1104 180
+rect -736 146 -720 180
+rect -200 146 -184 180
+rect 184 146 200 180
+rect 720 146 736 180
+rect 1104 146 1120 180
+rect 1640 146 1656 180
+rect 2024 146 2040 180
+rect 2560 146 2576 180
+rect 2944 146 2960 180
+rect 3480 146 3496 180
+rect 3864 146 3880 180
+rect 4400 146 4416 180
+rect 4784 146 4800 180
+rect 5320 146 5336 180
+rect 5704 146 5720 180
+rect 6240 146 6256 180
+rect 6624 146 6640 180
+rect -6640 -180 -6624 -146
+rect -6256 -180 -6240 -146
+rect -5720 -180 -5704 -146
+rect -5336 -180 -5320 -146
+rect -4800 -180 -4784 -146
+rect -4416 -180 -4400 -146
+rect -3880 -180 -3864 -146
+rect -3496 -180 -3480 -146
+rect -2960 -180 -2944 -146
+rect -2576 -180 -2560 -146
+rect -2040 -180 -2024 -146
+rect -1656 -180 -1640 -146
+rect -1120 -180 -1104 -146
+rect -736 -180 -720 -146
+rect -200 -180 -184 -146
+rect 184 -180 200 -146
+rect 720 -180 736 -146
+rect 1104 -180 1120 -146
+rect 1640 -180 1656 -146
+rect 2024 -180 2040 -146
+rect 2560 -180 2576 -146
+rect 2944 -180 2960 -146
+rect 3480 -180 3496 -146
+rect 3864 -180 3880 -146
+rect 4400 -180 4416 -146
+rect 4784 -180 4800 -146
+rect 5320 -180 5336 -146
+rect 5704 -180 5720 -146
+rect 6240 -180 6256 -146
+rect 6624 -180 6640 -146
+rect -6725 -242 -6691 -226
+rect -6725 -1210 -6691 -1194
+rect -6189 -242 -6155 -226
+rect -6189 -1210 -6155 -1194
+rect -5805 -242 -5771 -226
+rect -5805 -1210 -5771 -1194
+rect -5269 -242 -5235 -226
+rect -5269 -1210 -5235 -1194
+rect -4885 -242 -4851 -226
+rect -4885 -1210 -4851 -1194
+rect -4349 -242 -4315 -226
+rect -4349 -1210 -4315 -1194
+rect -3965 -242 -3931 -226
+rect -3965 -1210 -3931 -1194
+rect -3429 -242 -3395 -226
+rect -3429 -1210 -3395 -1194
+rect -3045 -242 -3011 -226
+rect -3045 -1210 -3011 -1194
+rect -2509 -242 -2475 -226
+rect -2509 -1210 -2475 -1194
+rect -2125 -242 -2091 -226
+rect -2125 -1210 -2091 -1194
+rect -1589 -242 -1555 -226
+rect -1589 -1210 -1555 -1194
+rect -1205 -242 -1171 -226
+rect -1205 -1210 -1171 -1194
+rect -669 -242 -635 -226
+rect -669 -1210 -635 -1194
+rect -285 -242 -251 -226
+rect -285 -1210 -251 -1194
+rect 251 -242 285 -226
+rect 251 -1210 285 -1194
+rect 635 -242 669 -226
+rect 635 -1210 669 -1194
+rect 1171 -242 1205 -226
+rect 1171 -1210 1205 -1194
+rect 1555 -242 1589 -226
+rect 1555 -1210 1589 -1194
+rect 2091 -242 2125 -226
+rect 2091 -1210 2125 -1194
+rect 2475 -242 2509 -226
+rect 2475 -1210 2509 -1194
+rect 3011 -242 3045 -226
+rect 3011 -1210 3045 -1194
+rect 3395 -242 3429 -226
+rect 3395 -1210 3429 -1194
+rect 3931 -242 3965 -226
+rect 3931 -1210 3965 -1194
+rect 4315 -242 4349 -226
+rect 4315 -1210 4349 -1194
+rect 4851 -242 4885 -226
+rect 4851 -1210 4885 -1194
+rect 5235 -242 5269 -226
+rect 5235 -1210 5269 -1194
+rect 5771 -242 5805 -226
+rect 5771 -1210 5805 -1194
+rect 6155 -242 6189 -226
+rect 6155 -1210 6189 -1194
+rect 6691 -242 6725 -226
+rect 6691 -1210 6725 -1194
+rect -6847 -1349 -6813 -1287
+rect -6640 -1290 -6624 -1256
+rect -6256 -1290 -6240 -1256
+rect -5720 -1290 -5704 -1256
+rect -5336 -1290 -5320 -1256
+rect -4800 -1290 -4784 -1256
+rect -4416 -1290 -4400 -1256
+rect -3880 -1290 -3864 -1256
+rect -3496 -1290 -3480 -1256
+rect -2960 -1290 -2944 -1256
+rect -2576 -1290 -2560 -1256
+rect -2040 -1290 -2024 -1256
+rect -1656 -1290 -1640 -1256
+rect -1120 -1290 -1104 -1256
+rect -736 -1290 -720 -1256
+rect -200 -1290 -184 -1256
+rect 184 -1290 200 -1256
+rect 720 -1290 736 -1256
+rect 1104 -1290 1120 -1256
+rect 1640 -1290 1656 -1256
+rect 2024 -1290 2040 -1256
+rect 2560 -1290 2576 -1256
+rect 2944 -1290 2960 -1256
+rect 3480 -1290 3496 -1256
+rect 3864 -1290 3880 -1256
+rect 4400 -1290 4416 -1256
+rect 4784 -1290 4800 -1256
+rect 5320 -1290 5336 -1256
+rect 5704 -1290 5720 -1256
+rect 6240 -1290 6256 -1256
+rect 6624 -1290 6640 -1256
+rect 6813 -1349 6847 -1287
+rect -6847 -1383 -6751 -1349
+rect 6751 -1383 6847 -1349
+<< viali >>
+rect -6624 1256 -6256 1290
+rect -5704 1256 -5336 1290
+rect -4784 1256 -4416 1290
+rect -3864 1256 -3496 1290
+rect -2944 1256 -2576 1290
+rect -2024 1256 -1656 1290
+rect -1104 1256 -736 1290
+rect -184 1256 184 1290
+rect 736 1256 1104 1290
+rect 1656 1256 2024 1290
+rect 2576 1256 2944 1290
+rect 3496 1256 3864 1290
+rect 4416 1256 4784 1290
+rect 5336 1256 5704 1290
+rect 6256 1256 6624 1290
+rect -6725 242 -6691 1194
+rect -6189 242 -6155 1194
+rect -5805 242 -5771 1194
+rect -5269 242 -5235 1194
+rect -4885 242 -4851 1194
+rect -4349 242 -4315 1194
+rect -3965 242 -3931 1194
+rect -3429 242 -3395 1194
+rect -3045 242 -3011 1194
+rect -2509 242 -2475 1194
+rect -2125 242 -2091 1194
+rect -1589 242 -1555 1194
+rect -1205 242 -1171 1194
+rect -669 242 -635 1194
+rect -285 242 -251 1194
+rect 251 242 285 1194
+rect 635 242 669 1194
+rect 1171 242 1205 1194
+rect 1555 242 1589 1194
+rect 2091 242 2125 1194
+rect 2475 242 2509 1194
+rect 3011 242 3045 1194
+rect 3395 242 3429 1194
+rect 3931 242 3965 1194
+rect 4315 242 4349 1194
+rect 4851 242 4885 1194
+rect 5235 242 5269 1194
+rect 5771 242 5805 1194
+rect 6155 242 6189 1194
+rect 6691 242 6725 1194
+rect -6624 146 -6256 180
+rect -5704 146 -5336 180
+rect -4784 146 -4416 180
+rect -3864 146 -3496 180
+rect -2944 146 -2576 180
+rect -2024 146 -1656 180
+rect -1104 146 -736 180
+rect -184 146 184 180
+rect 736 146 1104 180
+rect 1656 146 2024 180
+rect 2576 146 2944 180
+rect 3496 146 3864 180
+rect 4416 146 4784 180
+rect 5336 146 5704 180
+rect 6256 146 6624 180
+rect -6624 -180 -6256 -146
+rect -5704 -180 -5336 -146
+rect -4784 -180 -4416 -146
+rect -3864 -180 -3496 -146
+rect -2944 -180 -2576 -146
+rect -2024 -180 -1656 -146
+rect -1104 -180 -736 -146
+rect -184 -180 184 -146
+rect 736 -180 1104 -146
+rect 1656 -180 2024 -146
+rect 2576 -180 2944 -146
+rect 3496 -180 3864 -146
+rect 4416 -180 4784 -146
+rect 5336 -180 5704 -146
+rect 6256 -180 6624 -146
+rect -6725 -1194 -6691 -242
+rect -6189 -1194 -6155 -242
+rect -5805 -1194 -5771 -242
+rect -5269 -1194 -5235 -242
+rect -4885 -1194 -4851 -242
+rect -4349 -1194 -4315 -242
+rect -3965 -1194 -3931 -242
+rect -3429 -1194 -3395 -242
+rect -3045 -1194 -3011 -242
+rect -2509 -1194 -2475 -242
+rect -2125 -1194 -2091 -242
+rect -1589 -1194 -1555 -242
+rect -1205 -1194 -1171 -242
+rect -669 -1194 -635 -242
+rect -285 -1194 -251 -242
+rect 251 -1194 285 -242
+rect 635 -1194 669 -242
+rect 1171 -1194 1205 -242
+rect 1555 -1194 1589 -242
+rect 2091 -1194 2125 -242
+rect 2475 -1194 2509 -242
+rect 3011 -1194 3045 -242
+rect 3395 -1194 3429 -242
+rect 3931 -1194 3965 -242
+rect 4315 -1194 4349 -242
+rect 4851 -1194 4885 -242
+rect 5235 -1194 5269 -242
+rect 5771 -1194 5805 -242
+rect 6155 -1194 6189 -242
+rect 6691 -1194 6725 -242
+rect -6624 -1290 -6256 -1256
+rect -5704 -1290 -5336 -1256
+rect -4784 -1290 -4416 -1256
+rect -3864 -1290 -3496 -1256
+rect -2944 -1290 -2576 -1256
+rect -2024 -1290 -1656 -1256
+rect -1104 -1290 -736 -1256
+rect -184 -1290 184 -1256
+rect 736 -1290 1104 -1256
+rect 1656 -1290 2024 -1256
+rect 2576 -1290 2944 -1256
+rect 3496 -1290 3864 -1256
+rect 4416 -1290 4784 -1256
+rect 5336 -1290 5704 -1256
+rect 6256 -1290 6624 -1256
+<< metal1 >>
+rect -6636 1290 -6244 1296
+rect -6636 1256 -6624 1290
+rect -6256 1256 -6244 1290
+rect -6636 1250 -6244 1256
+rect -5716 1290 -5324 1296
+rect -5716 1256 -5704 1290
+rect -5336 1256 -5324 1290
+rect -5716 1250 -5324 1256
+rect -4796 1290 -4404 1296
+rect -4796 1256 -4784 1290
+rect -4416 1256 -4404 1290
+rect -4796 1250 -4404 1256
+rect -3876 1290 -3484 1296
+rect -3876 1256 -3864 1290
+rect -3496 1256 -3484 1290
+rect -3876 1250 -3484 1256
+rect -2956 1290 -2564 1296
+rect -2956 1256 -2944 1290
+rect -2576 1256 -2564 1290
+rect -2956 1250 -2564 1256
+rect -2036 1290 -1644 1296
+rect -2036 1256 -2024 1290
+rect -1656 1256 -1644 1290
+rect -2036 1250 -1644 1256
+rect -1116 1290 -724 1296
+rect -1116 1256 -1104 1290
+rect -736 1256 -724 1290
+rect -1116 1250 -724 1256
+rect -196 1290 196 1296
+rect -196 1256 -184 1290
+rect 184 1256 196 1290
+rect -196 1250 196 1256
+rect 724 1290 1116 1296
+rect 724 1256 736 1290
+rect 1104 1256 1116 1290
+rect 724 1250 1116 1256
+rect 1644 1290 2036 1296
+rect 1644 1256 1656 1290
+rect 2024 1256 2036 1290
+rect 1644 1250 2036 1256
+rect 2564 1290 2956 1296
+rect 2564 1256 2576 1290
+rect 2944 1256 2956 1290
+rect 2564 1250 2956 1256
+rect 3484 1290 3876 1296
+rect 3484 1256 3496 1290
+rect 3864 1256 3876 1290
+rect 3484 1250 3876 1256
+rect 4404 1290 4796 1296
+rect 4404 1256 4416 1290
+rect 4784 1256 4796 1290
+rect 4404 1250 4796 1256
+rect 5324 1290 5716 1296
+rect 5324 1256 5336 1290
+rect 5704 1256 5716 1290
+rect 5324 1250 5716 1256
+rect 6244 1290 6636 1296
+rect 6244 1256 6256 1290
+rect 6624 1256 6636 1290
+rect 6244 1250 6636 1256
+rect -6731 1194 -6685 1206
+rect -6731 242 -6725 1194
+rect -6691 242 -6685 1194
+rect -6731 230 -6685 242
+rect -6195 1194 -6149 1206
+rect -6195 242 -6189 1194
+rect -6155 242 -6149 1194
+rect -6195 230 -6149 242
+rect -5811 1194 -5765 1206
+rect -5811 242 -5805 1194
+rect -5771 242 -5765 1194
+rect -5811 230 -5765 242
+rect -5275 1194 -5229 1206
+rect -5275 242 -5269 1194
+rect -5235 242 -5229 1194
+rect -5275 230 -5229 242
+rect -4891 1194 -4845 1206
+rect -4891 242 -4885 1194
+rect -4851 242 -4845 1194
+rect -4891 230 -4845 242
+rect -4355 1194 -4309 1206
+rect -4355 242 -4349 1194
+rect -4315 242 -4309 1194
+rect -4355 230 -4309 242
+rect -3971 1194 -3925 1206
+rect -3971 242 -3965 1194
+rect -3931 242 -3925 1194
+rect -3971 230 -3925 242
+rect -3435 1194 -3389 1206
+rect -3435 242 -3429 1194
+rect -3395 242 -3389 1194
+rect -3435 230 -3389 242
+rect -3051 1194 -3005 1206
+rect -3051 242 -3045 1194
+rect -3011 242 -3005 1194
+rect -3051 230 -3005 242
+rect -2515 1194 -2469 1206
+rect -2515 242 -2509 1194
+rect -2475 242 -2469 1194
+rect -2515 230 -2469 242
+rect -2131 1194 -2085 1206
+rect -2131 242 -2125 1194
+rect -2091 242 -2085 1194
+rect -2131 230 -2085 242
+rect -1595 1194 -1549 1206
+rect -1595 242 -1589 1194
+rect -1555 242 -1549 1194
+rect -1595 230 -1549 242
+rect -1211 1194 -1165 1206
+rect -1211 242 -1205 1194
+rect -1171 242 -1165 1194
+rect -1211 230 -1165 242
+rect -675 1194 -629 1206
+rect -675 242 -669 1194
+rect -635 242 -629 1194
+rect -675 230 -629 242
+rect -291 1194 -245 1206
+rect -291 242 -285 1194
+rect -251 242 -245 1194
+rect -291 230 -245 242
+rect 245 1194 291 1206
+rect 245 242 251 1194
+rect 285 242 291 1194
+rect 245 230 291 242
+rect 629 1194 675 1206
+rect 629 242 635 1194
+rect 669 242 675 1194
+rect 629 230 675 242
+rect 1165 1194 1211 1206
+rect 1165 242 1171 1194
+rect 1205 242 1211 1194
+rect 1165 230 1211 242
+rect 1549 1194 1595 1206
+rect 1549 242 1555 1194
+rect 1589 242 1595 1194
+rect 1549 230 1595 242
+rect 2085 1194 2131 1206
+rect 2085 242 2091 1194
+rect 2125 242 2131 1194
+rect 2085 230 2131 242
+rect 2469 1194 2515 1206
+rect 2469 242 2475 1194
+rect 2509 242 2515 1194
+rect 2469 230 2515 242
+rect 3005 1194 3051 1206
+rect 3005 242 3011 1194
+rect 3045 242 3051 1194
+rect 3005 230 3051 242
+rect 3389 1194 3435 1206
+rect 3389 242 3395 1194
+rect 3429 242 3435 1194
+rect 3389 230 3435 242
+rect 3925 1194 3971 1206
+rect 3925 242 3931 1194
+rect 3965 242 3971 1194
+rect 3925 230 3971 242
+rect 4309 1194 4355 1206
+rect 4309 242 4315 1194
+rect 4349 242 4355 1194
+rect 4309 230 4355 242
+rect 4845 1194 4891 1206
+rect 4845 242 4851 1194
+rect 4885 242 4891 1194
+rect 4845 230 4891 242
+rect 5229 1194 5275 1206
+rect 5229 242 5235 1194
+rect 5269 242 5275 1194
+rect 5229 230 5275 242
+rect 5765 1194 5811 1206
+rect 5765 242 5771 1194
+rect 5805 242 5811 1194
+rect 5765 230 5811 242
+rect 6149 1194 6195 1206
+rect 6149 242 6155 1194
+rect 6189 242 6195 1194
+rect 6149 230 6195 242
+rect 6685 1194 6731 1206
+rect 6685 242 6691 1194
+rect 6725 242 6731 1194
+rect 6685 230 6731 242
+rect -6636 180 -6244 186
+rect -6636 146 -6624 180
+rect -6256 146 -6244 180
+rect -6636 140 -6244 146
+rect -5716 180 -5324 186
+rect -5716 146 -5704 180
+rect -5336 146 -5324 180
+rect -5716 140 -5324 146
+rect -4796 180 -4404 186
+rect -4796 146 -4784 180
+rect -4416 146 -4404 180
+rect -4796 140 -4404 146
+rect -3876 180 -3484 186
+rect -3876 146 -3864 180
+rect -3496 146 -3484 180
+rect -3876 140 -3484 146
+rect -2956 180 -2564 186
+rect -2956 146 -2944 180
+rect -2576 146 -2564 180
+rect -2956 140 -2564 146
+rect -2036 180 -1644 186
+rect -2036 146 -2024 180
+rect -1656 146 -1644 180
+rect -2036 140 -1644 146
+rect -1116 180 -724 186
+rect -1116 146 -1104 180
+rect -736 146 -724 180
+rect -1116 140 -724 146
+rect -196 180 196 186
+rect -196 146 -184 180
+rect 184 146 196 180
+rect -196 140 196 146
+rect 724 180 1116 186
+rect 724 146 736 180
+rect 1104 146 1116 180
+rect 724 140 1116 146
+rect 1644 180 2036 186
+rect 1644 146 1656 180
+rect 2024 146 2036 180
+rect 1644 140 2036 146
+rect 2564 180 2956 186
+rect 2564 146 2576 180
+rect 2944 146 2956 180
+rect 2564 140 2956 146
+rect 3484 180 3876 186
+rect 3484 146 3496 180
+rect 3864 146 3876 180
+rect 3484 140 3876 146
+rect 4404 180 4796 186
+rect 4404 146 4416 180
+rect 4784 146 4796 180
+rect 4404 140 4796 146
+rect 5324 180 5716 186
+rect 5324 146 5336 180
+rect 5704 146 5716 180
+rect 5324 140 5716 146
+rect 6244 180 6636 186
+rect 6244 146 6256 180
+rect 6624 146 6636 180
+rect 6244 140 6636 146
+rect -6636 -146 -6244 -140
+rect -6636 -180 -6624 -146
+rect -6256 -180 -6244 -146
+rect -6636 -186 -6244 -180
+rect -5716 -146 -5324 -140
+rect -5716 -180 -5704 -146
+rect -5336 -180 -5324 -146
+rect -5716 -186 -5324 -180
+rect -4796 -146 -4404 -140
+rect -4796 -180 -4784 -146
+rect -4416 -180 -4404 -146
+rect -4796 -186 -4404 -180
+rect -3876 -146 -3484 -140
+rect -3876 -180 -3864 -146
+rect -3496 -180 -3484 -146
+rect -3876 -186 -3484 -180
+rect -2956 -146 -2564 -140
+rect -2956 -180 -2944 -146
+rect -2576 -180 -2564 -146
+rect -2956 -186 -2564 -180
+rect -2036 -146 -1644 -140
+rect -2036 -180 -2024 -146
+rect -1656 -180 -1644 -146
+rect -2036 -186 -1644 -180
+rect -1116 -146 -724 -140
+rect -1116 -180 -1104 -146
+rect -736 -180 -724 -146
+rect -1116 -186 -724 -180
+rect -196 -146 196 -140
+rect -196 -180 -184 -146
+rect 184 -180 196 -146
+rect -196 -186 196 -180
+rect 724 -146 1116 -140
+rect 724 -180 736 -146
+rect 1104 -180 1116 -146
+rect 724 -186 1116 -180
+rect 1644 -146 2036 -140
+rect 1644 -180 1656 -146
+rect 2024 -180 2036 -146
+rect 1644 -186 2036 -180
+rect 2564 -146 2956 -140
+rect 2564 -180 2576 -146
+rect 2944 -180 2956 -146
+rect 2564 -186 2956 -180
+rect 3484 -146 3876 -140
+rect 3484 -180 3496 -146
+rect 3864 -180 3876 -146
+rect 3484 -186 3876 -180
+rect 4404 -146 4796 -140
+rect 4404 -180 4416 -146
+rect 4784 -180 4796 -146
+rect 4404 -186 4796 -180
+rect 5324 -146 5716 -140
+rect 5324 -180 5336 -146
+rect 5704 -180 5716 -146
+rect 5324 -186 5716 -180
+rect 6244 -146 6636 -140
+rect 6244 -180 6256 -146
+rect 6624 -180 6636 -146
+rect 6244 -186 6636 -180
+rect -6731 -242 -6685 -230
+rect -6731 -1194 -6725 -242
+rect -6691 -1194 -6685 -242
+rect -6731 -1206 -6685 -1194
+rect -6195 -242 -6149 -230
+rect -6195 -1194 -6189 -242
+rect -6155 -1194 -6149 -242
+rect -6195 -1206 -6149 -1194
+rect -5811 -242 -5765 -230
+rect -5811 -1194 -5805 -242
+rect -5771 -1194 -5765 -242
+rect -5811 -1206 -5765 -1194
+rect -5275 -242 -5229 -230
+rect -5275 -1194 -5269 -242
+rect -5235 -1194 -5229 -242
+rect -5275 -1206 -5229 -1194
+rect -4891 -242 -4845 -230
+rect -4891 -1194 -4885 -242
+rect -4851 -1194 -4845 -242
+rect -4891 -1206 -4845 -1194
+rect -4355 -242 -4309 -230
+rect -4355 -1194 -4349 -242
+rect -4315 -1194 -4309 -242
+rect -4355 -1206 -4309 -1194
+rect -3971 -242 -3925 -230
+rect -3971 -1194 -3965 -242
+rect -3931 -1194 -3925 -242
+rect -3971 -1206 -3925 -1194
+rect -3435 -242 -3389 -230
+rect -3435 -1194 -3429 -242
+rect -3395 -1194 -3389 -242
+rect -3435 -1206 -3389 -1194
+rect -3051 -242 -3005 -230
+rect -3051 -1194 -3045 -242
+rect -3011 -1194 -3005 -242
+rect -3051 -1206 -3005 -1194
+rect -2515 -242 -2469 -230
+rect -2515 -1194 -2509 -242
+rect -2475 -1194 -2469 -242
+rect -2515 -1206 -2469 -1194
+rect -2131 -242 -2085 -230
+rect -2131 -1194 -2125 -242
+rect -2091 -1194 -2085 -242
+rect -2131 -1206 -2085 -1194
+rect -1595 -242 -1549 -230
+rect -1595 -1194 -1589 -242
+rect -1555 -1194 -1549 -242
+rect -1595 -1206 -1549 -1194
+rect -1211 -242 -1165 -230
+rect -1211 -1194 -1205 -242
+rect -1171 -1194 -1165 -242
+rect -1211 -1206 -1165 -1194
+rect -675 -242 -629 -230
+rect -675 -1194 -669 -242
+rect -635 -1194 -629 -242
+rect -675 -1206 -629 -1194
+rect -291 -242 -245 -230
+rect -291 -1194 -285 -242
+rect -251 -1194 -245 -242
+rect -291 -1206 -245 -1194
+rect 245 -242 291 -230
+rect 245 -1194 251 -242
+rect 285 -1194 291 -242
+rect 245 -1206 291 -1194
+rect 629 -242 675 -230
+rect 629 -1194 635 -242
+rect 669 -1194 675 -242
+rect 629 -1206 675 -1194
+rect 1165 -242 1211 -230
+rect 1165 -1194 1171 -242
+rect 1205 -1194 1211 -242
+rect 1165 -1206 1211 -1194
+rect 1549 -242 1595 -230
+rect 1549 -1194 1555 -242
+rect 1589 -1194 1595 -242
+rect 1549 -1206 1595 -1194
+rect 2085 -242 2131 -230
+rect 2085 -1194 2091 -242
+rect 2125 -1194 2131 -242
+rect 2085 -1206 2131 -1194
+rect 2469 -242 2515 -230
+rect 2469 -1194 2475 -242
+rect 2509 -1194 2515 -242
+rect 2469 -1206 2515 -1194
+rect 3005 -242 3051 -230
+rect 3005 -1194 3011 -242
+rect 3045 -1194 3051 -242
+rect 3005 -1206 3051 -1194
+rect 3389 -242 3435 -230
+rect 3389 -1194 3395 -242
+rect 3429 -1194 3435 -242
+rect 3389 -1206 3435 -1194
+rect 3925 -242 3971 -230
+rect 3925 -1194 3931 -242
+rect 3965 -1194 3971 -242
+rect 3925 -1206 3971 -1194
+rect 4309 -242 4355 -230
+rect 4309 -1194 4315 -242
+rect 4349 -1194 4355 -242
+rect 4309 -1206 4355 -1194
+rect 4845 -242 4891 -230
+rect 4845 -1194 4851 -242
+rect 4885 -1194 4891 -242
+rect 4845 -1206 4891 -1194
+rect 5229 -242 5275 -230
+rect 5229 -1194 5235 -242
+rect 5269 -1194 5275 -242
+rect 5229 -1206 5275 -1194
+rect 5765 -242 5811 -230
+rect 5765 -1194 5771 -242
+rect 5805 -1194 5811 -242
+rect 5765 -1206 5811 -1194
+rect 6149 -242 6195 -230
+rect 6149 -1194 6155 -242
+rect 6189 -1194 6195 -242
+rect 6149 -1206 6195 -1194
+rect 6685 -242 6731 -230
+rect 6685 -1194 6691 -242
+rect 6725 -1194 6731 -242
+rect 6685 -1206 6731 -1194
+rect -6636 -1256 -6244 -1250
+rect -6636 -1290 -6624 -1256
+rect -6256 -1290 -6244 -1256
+rect -6636 -1296 -6244 -1290
+rect -5716 -1256 -5324 -1250
+rect -5716 -1290 -5704 -1256
+rect -5336 -1290 -5324 -1256
+rect -5716 -1296 -5324 -1290
+rect -4796 -1256 -4404 -1250
+rect -4796 -1290 -4784 -1256
+rect -4416 -1290 -4404 -1256
+rect -4796 -1296 -4404 -1290
+rect -3876 -1256 -3484 -1250
+rect -3876 -1290 -3864 -1256
+rect -3496 -1290 -3484 -1256
+rect -3876 -1296 -3484 -1290
+rect -2956 -1256 -2564 -1250
+rect -2956 -1290 -2944 -1256
+rect -2576 -1290 -2564 -1256
+rect -2956 -1296 -2564 -1290
+rect -2036 -1256 -1644 -1250
+rect -2036 -1290 -2024 -1256
+rect -1656 -1290 -1644 -1256
+rect -2036 -1296 -1644 -1290
+rect -1116 -1256 -724 -1250
+rect -1116 -1290 -1104 -1256
+rect -736 -1290 -724 -1256
+rect -1116 -1296 -724 -1290
+rect -196 -1256 196 -1250
+rect -196 -1290 -184 -1256
+rect 184 -1290 196 -1256
+rect -196 -1296 196 -1290
+rect 724 -1256 1116 -1250
+rect 724 -1290 736 -1256
+rect 1104 -1290 1116 -1256
+rect 724 -1296 1116 -1290
+rect 1644 -1256 2036 -1250
+rect 1644 -1290 1656 -1256
+rect 2024 -1290 2036 -1256
+rect 1644 -1296 2036 -1290
+rect 2564 -1256 2956 -1250
+rect 2564 -1290 2576 -1256
+rect 2944 -1290 2956 -1256
+rect 2564 -1296 2956 -1290
+rect 3484 -1256 3876 -1250
+rect 3484 -1290 3496 -1256
+rect 3864 -1290 3876 -1256
+rect 3484 -1296 3876 -1290
+rect 4404 -1256 4796 -1250
+rect 4404 -1290 4416 -1256
+rect 4784 -1290 4796 -1256
+rect 4404 -1296 4796 -1290
+rect 5324 -1256 5716 -1250
+rect 5324 -1290 5336 -1256
+rect 5704 -1290 5716 -1256
+rect 5324 -1296 5716 -1290
+rect 6244 -1256 6636 -1250
+rect 6244 -1290 6256 -1256
+rect 6624 -1290 6636 -1256
+rect 6244 -1296 6636 -1290
+<< properties >>
+string FIXED_BBOX -6830 -1366 6830 1366
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 5 l 2 m 2 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_269Y86.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_269Y86.mag
new file mode 100644
index 0000000..3f26ef6
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_269Y86.mag
@@ -0,0 +1,823 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< error_p >>
+rect -6670 591 -6210 618
+rect -5750 591 -5290 618
+rect -4830 591 -4370 618
+rect -3910 591 -3450 618
+rect -2990 591 -2530 618
+rect -2070 591 -1610 618
+rect -6670 -618 -6210 -591
+rect -5750 -618 -5290 -591
+rect -4830 -618 -4370 -591
+rect -3910 -618 -3450 -591
+rect -2990 -618 -2530 -591
+rect -2070 -618 -1610 -591
+<< nwell >>
+rect -6773 -591 -6107 591
+rect -5853 -591 -5187 591
+rect -4933 -591 -4267 591
+rect -4013 -591 -3347 591
+rect -3093 -591 -2427 591
+rect -2173 -591 -1507 591
+rect -1253 -591 -587 591
+rect -333 -591 333 591
+rect 587 -591 1253 591
+rect 1507 -591 2173 591
+rect 2427 -591 3093 591
+rect 3347 -591 4013 591
+rect 4267 -591 4933 591
+rect 5187 -591 5853 591
+rect 6107 -591 6773 591
+<< pwell >>
+rect -6883 591 6883 701
+rect -6883 -591 -6773 591
+rect -6107 -591 -5853 591
+rect -5187 -591 -4933 591
+rect -4267 -591 -4013 591
+rect -3347 -591 -3093 591
+rect -2427 -591 -2173 591
+rect -1507 -591 -1253 591
+rect -587 -591 -333 591
+rect 333 -591 587 591
+rect 1253 -591 1507 591
+rect 2173 -591 2427 591
+rect 3093 -591 3347 591
+rect 4013 -591 4267 591
+rect 4933 -591 5187 591
+rect 5853 -591 6107 591
+rect 6773 -591 6883 591
+rect -6883 -701 6883 -591
+<< varactor >>
+rect -6640 -500 -6240 500
+rect -5720 -500 -5320 500
+rect -4800 -500 -4400 500
+rect -3880 -500 -3480 500
+rect -2960 -500 -2560 500
+rect -2040 -500 -1640 500
+rect -1120 -500 -720 500
+rect -200 -500 200 500
+rect 720 -500 1120 500
+rect 1640 -500 2040 500
+rect 2560 -500 2960 500
+rect 3480 -500 3880 500
+rect 4400 -500 4800 500
+rect 5320 -500 5720 500
+rect 6240 -500 6640 500
+<< psubdiff >>
+rect -6847 631 -6751 665
+rect 6751 631 6847 665
+rect -6847 569 -6813 631
+rect 6813 569 6847 631
+rect -6847 -631 -6813 -569
+rect 6813 -631 6847 -569
+rect -6847 -665 -6751 -631
+rect 6751 -665 6847 -631
+<< nsubdiff >>
+rect -6737 476 -6640 500
+rect -6737 -476 -6725 476
+rect -6691 -476 -6640 476
+rect -6737 -500 -6640 -476
+rect -6240 476 -6143 500
+rect -6240 -476 -6189 476
+rect -6155 -476 -6143 476
+rect -6240 -500 -6143 -476
+rect -5817 476 -5720 500
+rect -5817 -476 -5805 476
+rect -5771 -476 -5720 476
+rect -5817 -500 -5720 -476
+rect -5320 476 -5223 500
+rect -5320 -476 -5269 476
+rect -5235 -476 -5223 476
+rect -5320 -500 -5223 -476
+rect -4897 476 -4800 500
+rect -4897 -476 -4885 476
+rect -4851 -476 -4800 476
+rect -4897 -500 -4800 -476
+rect -4400 476 -4303 500
+rect -4400 -476 -4349 476
+rect -4315 -476 -4303 476
+rect -4400 -500 -4303 -476
+rect -3977 476 -3880 500
+rect -3977 -476 -3965 476
+rect -3931 -476 -3880 476
+rect -3977 -500 -3880 -476
+rect -3480 476 -3383 500
+rect -3480 -476 -3429 476
+rect -3395 -476 -3383 476
+rect -3480 -500 -3383 -476
+rect -3057 476 -2960 500
+rect -3057 -476 -3045 476
+rect -3011 -476 -2960 476
+rect -3057 -500 -2960 -476
+rect -2560 476 -2463 500
+rect -2560 -476 -2509 476
+rect -2475 -476 -2463 476
+rect -2560 -500 -2463 -476
+rect -2137 476 -2040 500
+rect -2137 -476 -2125 476
+rect -2091 -476 -2040 476
+rect -2137 -500 -2040 -476
+rect -1640 476 -1543 500
+rect -1640 -476 -1589 476
+rect -1555 -476 -1543 476
+rect -1640 -500 -1543 -476
+rect -1217 476 -1120 500
+rect -1217 -476 -1205 476
+rect -1171 -476 -1120 476
+rect -1217 -500 -1120 -476
+rect -720 476 -623 500
+rect -720 -476 -669 476
+rect -635 -476 -623 476
+rect -720 -500 -623 -476
+rect -297 476 -200 500
+rect -297 -476 -285 476
+rect -251 -476 -200 476
+rect -297 -500 -200 -476
+rect 200 476 297 500
+rect 200 -476 251 476
+rect 285 -476 297 476
+rect 200 -500 297 -476
+rect 623 476 720 500
+rect 623 -476 635 476
+rect 669 -476 720 476
+rect 623 -500 720 -476
+rect 1120 476 1217 500
+rect 1120 -476 1171 476
+rect 1205 -476 1217 476
+rect 1120 -500 1217 -476
+rect 1543 476 1640 500
+rect 1543 -476 1555 476
+rect 1589 -476 1640 476
+rect 1543 -500 1640 -476
+rect 2040 476 2137 500
+rect 2040 -476 2091 476
+rect 2125 -476 2137 476
+rect 2040 -500 2137 -476
+rect 2463 476 2560 500
+rect 2463 -476 2475 476
+rect 2509 -476 2560 476
+rect 2463 -500 2560 -476
+rect 2960 476 3057 500
+rect 2960 -476 3011 476
+rect 3045 -476 3057 476
+rect 2960 -500 3057 -476
+rect 3383 476 3480 500
+rect 3383 -476 3395 476
+rect 3429 -476 3480 476
+rect 3383 -500 3480 -476
+rect 3880 476 3977 500
+rect 3880 -476 3931 476
+rect 3965 -476 3977 476
+rect 3880 -500 3977 -476
+rect 4303 476 4400 500
+rect 4303 -476 4315 476
+rect 4349 -476 4400 476
+rect 4303 -500 4400 -476
+rect 4800 476 4897 500
+rect 4800 -476 4851 476
+rect 4885 -476 4897 476
+rect 4800 -500 4897 -476
+rect 5223 476 5320 500
+rect 5223 -476 5235 476
+rect 5269 -476 5320 476
+rect 5223 -500 5320 -476
+rect 5720 476 5817 500
+rect 5720 -476 5771 476
+rect 5805 -476 5817 476
+rect 5720 -500 5817 -476
+rect 6143 476 6240 500
+rect 6143 -476 6155 476
+rect 6189 -476 6240 476
+rect 6143 -500 6240 -476
+rect 6640 476 6737 500
+rect 6640 -476 6691 476
+rect 6725 -476 6737 476
+rect 6640 -500 6737 -476
+<< psubdiffcont >>
+rect -6751 631 6751 665
+rect -6847 -569 -6813 569
+rect 6813 -569 6847 569
+rect -6751 -665 6751 -631
+<< nsubdiffcont >>
+rect -6725 -476 -6691 476
+rect -6189 -476 -6155 476
+rect -5805 -476 -5771 476
+rect -5269 -476 -5235 476
+rect -4885 -476 -4851 476
+rect -4349 -476 -4315 476
+rect -3965 -476 -3931 476
+rect -3429 -476 -3395 476
+rect -3045 -476 -3011 476
+rect -2509 -476 -2475 476
+rect -2125 -476 -2091 476
+rect -1589 -476 -1555 476
+rect -1205 -476 -1171 476
+rect -669 -476 -635 476
+rect -285 -476 -251 476
+rect 251 -476 285 476
+rect 635 -476 669 476
+rect 1171 -476 1205 476
+rect 1555 -476 1589 476
+rect 2091 -476 2125 476
+rect 2475 -476 2509 476
+rect 3011 -476 3045 476
+rect 3395 -476 3429 476
+rect 3931 -476 3965 476
+rect 4315 -476 4349 476
+rect 4851 -476 4885 476
+rect 5235 -476 5269 476
+rect 5771 -476 5805 476
+rect 6155 -476 6189 476
+rect 6691 -476 6725 476
+<< poly >>
+rect -6640 572 -6240 588
+rect -6640 538 -6624 572
+rect -6256 538 -6240 572
+rect -6640 500 -6240 538
+rect -5720 572 -5320 588
+rect -5720 538 -5704 572
+rect -5336 538 -5320 572
+rect -5720 500 -5320 538
+rect -4800 572 -4400 588
+rect -4800 538 -4784 572
+rect -4416 538 -4400 572
+rect -4800 500 -4400 538
+rect -3880 572 -3480 588
+rect -3880 538 -3864 572
+rect -3496 538 -3480 572
+rect -3880 500 -3480 538
+rect -2960 572 -2560 588
+rect -2960 538 -2944 572
+rect -2576 538 -2560 572
+rect -2960 500 -2560 538
+rect -2040 572 -1640 588
+rect -2040 538 -2024 572
+rect -1656 538 -1640 572
+rect -2040 500 -1640 538
+rect -1120 572 -720 588
+rect -1120 538 -1104 572
+rect -736 538 -720 572
+rect -1120 500 -720 538
+rect -200 572 200 588
+rect -200 538 -184 572
+rect 184 538 200 572
+rect -200 500 200 538
+rect 720 572 1120 588
+rect 720 538 736 572
+rect 1104 538 1120 572
+rect 720 500 1120 538
+rect 1640 572 2040 588
+rect 1640 538 1656 572
+rect 2024 538 2040 572
+rect 1640 500 2040 538
+rect 2560 572 2960 588
+rect 2560 538 2576 572
+rect 2944 538 2960 572
+rect 2560 500 2960 538
+rect 3480 572 3880 588
+rect 3480 538 3496 572
+rect 3864 538 3880 572
+rect 3480 500 3880 538
+rect 4400 572 4800 588
+rect 4400 538 4416 572
+rect 4784 538 4800 572
+rect 4400 500 4800 538
+rect 5320 572 5720 588
+rect 5320 538 5336 572
+rect 5704 538 5720 572
+rect 5320 500 5720 538
+rect 6240 572 6640 588
+rect 6240 538 6256 572
+rect 6624 538 6640 572
+rect 6240 500 6640 538
+rect -6640 -538 -6240 -500
+rect -6640 -572 -6624 -538
+rect -6256 -572 -6240 -538
+rect -6640 -588 -6240 -572
+rect -5720 -538 -5320 -500
+rect -5720 -572 -5704 -538
+rect -5336 -572 -5320 -538
+rect -5720 -588 -5320 -572
+rect -4800 -538 -4400 -500
+rect -4800 -572 -4784 -538
+rect -4416 -572 -4400 -538
+rect -4800 -588 -4400 -572
+rect -3880 -538 -3480 -500
+rect -3880 -572 -3864 -538
+rect -3496 -572 -3480 -538
+rect -3880 -588 -3480 -572
+rect -2960 -538 -2560 -500
+rect -2960 -572 -2944 -538
+rect -2576 -572 -2560 -538
+rect -2960 -588 -2560 -572
+rect -2040 -538 -1640 -500
+rect -2040 -572 -2024 -538
+rect -1656 -572 -1640 -538
+rect -2040 -588 -1640 -572
+rect -1120 -538 -720 -500
+rect -1120 -572 -1104 -538
+rect -736 -572 -720 -538
+rect -1120 -588 -720 -572
+rect -200 -538 200 -500
+rect -200 -572 -184 -538
+rect 184 -572 200 -538
+rect -200 -588 200 -572
+rect 720 -538 1120 -500
+rect 720 -572 736 -538
+rect 1104 -572 1120 -538
+rect 720 -588 1120 -572
+rect 1640 -538 2040 -500
+rect 1640 -572 1656 -538
+rect 2024 -572 2040 -538
+rect 1640 -588 2040 -572
+rect 2560 -538 2960 -500
+rect 2560 -572 2576 -538
+rect 2944 -572 2960 -538
+rect 2560 -588 2960 -572
+rect 3480 -538 3880 -500
+rect 3480 -572 3496 -538
+rect 3864 -572 3880 -538
+rect 3480 -588 3880 -572
+rect 4400 -538 4800 -500
+rect 4400 -572 4416 -538
+rect 4784 -572 4800 -538
+rect 4400 -588 4800 -572
+rect 5320 -538 5720 -500
+rect 5320 -572 5336 -538
+rect 5704 -572 5720 -538
+rect 5320 -588 5720 -572
+rect 6240 -538 6640 -500
+rect 6240 -572 6256 -538
+rect 6624 -572 6640 -538
+rect 6240 -588 6640 -572
+<< polycont >>
+rect -6624 538 -6256 572
+rect -5704 538 -5336 572
+rect -4784 538 -4416 572
+rect -3864 538 -3496 572
+rect -2944 538 -2576 572
+rect -2024 538 -1656 572
+rect -1104 538 -736 572
+rect -184 538 184 572
+rect 736 538 1104 572
+rect 1656 538 2024 572
+rect 2576 538 2944 572
+rect 3496 538 3864 572
+rect 4416 538 4784 572
+rect 5336 538 5704 572
+rect 6256 538 6624 572
+rect -6624 -572 -6256 -538
+rect -5704 -572 -5336 -538
+rect -4784 -572 -4416 -538
+rect -3864 -572 -3496 -538
+rect -2944 -572 -2576 -538
+rect -2024 -572 -1656 -538
+rect -1104 -572 -736 -538
+rect -184 -572 184 -538
+rect 736 -572 1104 -538
+rect 1656 -572 2024 -538
+rect 2576 -572 2944 -538
+rect 3496 -572 3864 -538
+rect 4416 -572 4784 -538
+rect 5336 -572 5704 -538
+rect 6256 -572 6624 -538
+<< locali >>
+rect -6847 631 -6751 665
+rect 6751 631 6847 665
+rect -6847 569 -6813 631
+rect -6640 538 -6624 572
+rect -6256 538 -6240 572
+rect -5720 538 -5704 572
+rect -5336 538 -5320 572
+rect -4800 538 -4784 572
+rect -4416 538 -4400 572
+rect -3880 538 -3864 572
+rect -3496 538 -3480 572
+rect -2960 538 -2944 572
+rect -2576 538 -2560 572
+rect -2040 538 -2024 572
+rect -1656 538 -1640 572
+rect -1120 538 -1104 572
+rect -736 538 -720 572
+rect -200 538 -184 572
+rect 184 538 200 572
+rect 720 538 736 572
+rect 1104 538 1120 572
+rect 1640 538 1656 572
+rect 2024 538 2040 572
+rect 2560 538 2576 572
+rect 2944 538 2960 572
+rect 3480 538 3496 572
+rect 3864 538 3880 572
+rect 4400 538 4416 572
+rect 4784 538 4800 572
+rect 5320 538 5336 572
+rect 5704 538 5720 572
+rect 6240 538 6256 572
+rect 6624 538 6640 572
+rect 6813 569 6847 631
+rect -6725 476 -6691 492
+rect -6725 -492 -6691 -476
+rect -6189 476 -6155 492
+rect -6189 -492 -6155 -476
+rect -5805 476 -5771 492
+rect -5805 -492 -5771 -476
+rect -5269 476 -5235 492
+rect -5269 -492 -5235 -476
+rect -4885 476 -4851 492
+rect -4885 -492 -4851 -476
+rect -4349 476 -4315 492
+rect -4349 -492 -4315 -476
+rect -3965 476 -3931 492
+rect -3965 -492 -3931 -476
+rect -3429 476 -3395 492
+rect -3429 -492 -3395 -476
+rect -3045 476 -3011 492
+rect -3045 -492 -3011 -476
+rect -2509 476 -2475 492
+rect -2509 -492 -2475 -476
+rect -2125 476 -2091 492
+rect -2125 -492 -2091 -476
+rect -1589 476 -1555 492
+rect -1589 -492 -1555 -476
+rect -1205 476 -1171 492
+rect -1205 -492 -1171 -476
+rect -669 476 -635 492
+rect -669 -492 -635 -476
+rect -285 476 -251 492
+rect -285 -492 -251 -476
+rect 251 476 285 492
+rect 251 -492 285 -476
+rect 635 476 669 492
+rect 635 -492 669 -476
+rect 1171 476 1205 492
+rect 1171 -492 1205 -476
+rect 1555 476 1589 492
+rect 1555 -492 1589 -476
+rect 2091 476 2125 492
+rect 2091 -492 2125 -476
+rect 2475 476 2509 492
+rect 2475 -492 2509 -476
+rect 3011 476 3045 492
+rect 3011 -492 3045 -476
+rect 3395 476 3429 492
+rect 3395 -492 3429 -476
+rect 3931 476 3965 492
+rect 3931 -492 3965 -476
+rect 4315 476 4349 492
+rect 4315 -492 4349 -476
+rect 4851 476 4885 492
+rect 4851 -492 4885 -476
+rect 5235 476 5269 492
+rect 5235 -492 5269 -476
+rect 5771 476 5805 492
+rect 5771 -492 5805 -476
+rect 6155 476 6189 492
+rect 6155 -492 6189 -476
+rect 6691 476 6725 492
+rect 6691 -492 6725 -476
+rect -6847 -631 -6813 -569
+rect -6640 -572 -6624 -538
+rect -6256 -572 -6240 -538
+rect -5720 -572 -5704 -538
+rect -5336 -572 -5320 -538
+rect -4800 -572 -4784 -538
+rect -4416 -572 -4400 -538
+rect -3880 -572 -3864 -538
+rect -3496 -572 -3480 -538
+rect -2960 -572 -2944 -538
+rect -2576 -572 -2560 -538
+rect -2040 -572 -2024 -538
+rect -1656 -572 -1640 -538
+rect -1120 -572 -1104 -538
+rect -736 -572 -720 -538
+rect -200 -572 -184 -538
+rect 184 -572 200 -538
+rect 720 -572 736 -538
+rect 1104 -572 1120 -538
+rect 1640 -572 1656 -538
+rect 2024 -572 2040 -538
+rect 2560 -572 2576 -538
+rect 2944 -572 2960 -538
+rect 3480 -572 3496 -538
+rect 3864 -572 3880 -538
+rect 4400 -572 4416 -538
+rect 4784 -572 4800 -538
+rect 5320 -572 5336 -538
+rect 5704 -572 5720 -538
+rect 6240 -572 6256 -538
+rect 6624 -572 6640 -538
+rect 6813 -631 6847 -569
+rect -6847 -665 -6751 -631
+rect 6751 -665 6847 -631
+<< viali >>
+rect -6624 538 -6256 572
+rect -5704 538 -5336 572
+rect -4784 538 -4416 572
+rect -3864 538 -3496 572
+rect -2944 538 -2576 572
+rect -2024 538 -1656 572
+rect -1104 538 -736 572
+rect -184 538 184 572
+rect 736 538 1104 572
+rect 1656 538 2024 572
+rect 2576 538 2944 572
+rect 3496 538 3864 572
+rect 4416 538 4784 572
+rect 5336 538 5704 572
+rect 6256 538 6624 572
+rect -6725 -476 -6691 476
+rect -6189 -476 -6155 476
+rect -5805 -476 -5771 476
+rect -5269 -476 -5235 476
+rect -4885 -476 -4851 476
+rect -4349 -476 -4315 476
+rect -3965 -476 -3931 476
+rect -3429 -476 -3395 476
+rect -3045 -476 -3011 476
+rect -2509 -476 -2475 476
+rect -2125 -476 -2091 476
+rect -1589 -476 -1555 476
+rect -1205 -476 -1171 476
+rect -669 -476 -635 476
+rect -285 -476 -251 476
+rect 251 -476 285 476
+rect 635 -476 669 476
+rect 1171 -476 1205 476
+rect 1555 -476 1589 476
+rect 2091 -476 2125 476
+rect 2475 -476 2509 476
+rect 3011 -476 3045 476
+rect 3395 -476 3429 476
+rect 3931 -476 3965 476
+rect 4315 -476 4349 476
+rect 4851 -476 4885 476
+rect 5235 -476 5269 476
+rect 5771 -476 5805 476
+rect 6155 -476 6189 476
+rect 6691 -476 6725 476
+rect -6624 -572 -6256 -538
+rect -5704 -572 -5336 -538
+rect -4784 -572 -4416 -538
+rect -3864 -572 -3496 -538
+rect -2944 -572 -2576 -538
+rect -2024 -572 -1656 -538
+rect -1104 -572 -736 -538
+rect -184 -572 184 -538
+rect 736 -572 1104 -538
+rect 1656 -572 2024 -538
+rect 2576 -572 2944 -538
+rect 3496 -572 3864 -538
+rect 4416 -572 4784 -538
+rect 5336 -572 5704 -538
+rect 6256 -572 6624 -538
+<< metal1 >>
+rect -6636 572 -6244 578
+rect -6636 538 -6624 572
+rect -6256 538 -6244 572
+rect -6636 532 -6244 538
+rect -5716 572 -5324 578
+rect -5716 538 -5704 572
+rect -5336 538 -5324 572
+rect -5716 532 -5324 538
+rect -4796 572 -4404 578
+rect -4796 538 -4784 572
+rect -4416 538 -4404 572
+rect -4796 532 -4404 538
+rect -3876 572 -3484 578
+rect -3876 538 -3864 572
+rect -3496 538 -3484 572
+rect -3876 532 -3484 538
+rect -2956 572 -2564 578
+rect -2956 538 -2944 572
+rect -2576 538 -2564 572
+rect -2956 532 -2564 538
+rect -2036 572 -1644 578
+rect -2036 538 -2024 572
+rect -1656 538 -1644 572
+rect -2036 532 -1644 538
+rect -1116 572 -724 578
+rect -1116 538 -1104 572
+rect -736 538 -724 572
+rect -1116 532 -724 538
+rect -196 572 196 578
+rect -196 538 -184 572
+rect 184 538 196 572
+rect -196 532 196 538
+rect 724 572 1116 578
+rect 724 538 736 572
+rect 1104 538 1116 572
+rect 724 532 1116 538
+rect 1644 572 2036 578
+rect 1644 538 1656 572
+rect 2024 538 2036 572
+rect 1644 532 2036 538
+rect 2564 572 2956 578
+rect 2564 538 2576 572
+rect 2944 538 2956 572
+rect 2564 532 2956 538
+rect 3484 572 3876 578
+rect 3484 538 3496 572
+rect 3864 538 3876 572
+rect 3484 532 3876 538
+rect 4404 572 4796 578
+rect 4404 538 4416 572
+rect 4784 538 4796 572
+rect 4404 532 4796 538
+rect 5324 572 5716 578
+rect 5324 538 5336 572
+rect 5704 538 5716 572
+rect 5324 532 5716 538
+rect 6244 572 6636 578
+rect 6244 538 6256 572
+rect 6624 538 6636 572
+rect 6244 532 6636 538
+rect -6731 476 -6685 488
+rect -6731 -476 -6725 476
+rect -6691 -476 -6685 476
+rect -6731 -488 -6685 -476
+rect -6195 476 -6149 488
+rect -6195 -476 -6189 476
+rect -6155 -476 -6149 476
+rect -6195 -488 -6149 -476
+rect -5811 476 -5765 488
+rect -5811 -476 -5805 476
+rect -5771 -476 -5765 476
+rect -5811 -488 -5765 -476
+rect -5275 476 -5229 488
+rect -5275 -476 -5269 476
+rect -5235 -476 -5229 476
+rect -5275 -488 -5229 -476
+rect -4891 476 -4845 488
+rect -4891 -476 -4885 476
+rect -4851 -476 -4845 476
+rect -4891 -488 -4845 -476
+rect -4355 476 -4309 488
+rect -4355 -476 -4349 476
+rect -4315 -476 -4309 476
+rect -4355 -488 -4309 -476
+rect -3971 476 -3925 488
+rect -3971 -476 -3965 476
+rect -3931 -476 -3925 476
+rect -3971 -488 -3925 -476
+rect -3435 476 -3389 488
+rect -3435 -476 -3429 476
+rect -3395 -476 -3389 476
+rect -3435 -488 -3389 -476
+rect -3051 476 -3005 488
+rect -3051 -476 -3045 476
+rect -3011 -476 -3005 476
+rect -3051 -488 -3005 -476
+rect -2515 476 -2469 488
+rect -2515 -476 -2509 476
+rect -2475 -476 -2469 476
+rect -2515 -488 -2469 -476
+rect -2131 476 -2085 488
+rect -2131 -476 -2125 476
+rect -2091 -476 -2085 476
+rect -2131 -488 -2085 -476
+rect -1595 476 -1549 488
+rect -1595 -476 -1589 476
+rect -1555 -476 -1549 476
+rect -1595 -488 -1549 -476
+rect -1211 476 -1165 488
+rect -1211 -476 -1205 476
+rect -1171 -476 -1165 476
+rect -1211 -488 -1165 -476
+rect -675 476 -629 488
+rect -675 -476 -669 476
+rect -635 -476 -629 476
+rect -675 -488 -629 -476
+rect -291 476 -245 488
+rect -291 -476 -285 476
+rect -251 -476 -245 476
+rect -291 -488 -245 -476
+rect 245 476 291 488
+rect 245 -476 251 476
+rect 285 -476 291 476
+rect 245 -488 291 -476
+rect 629 476 675 488
+rect 629 -476 635 476
+rect 669 -476 675 476
+rect 629 -488 675 -476
+rect 1165 476 1211 488
+rect 1165 -476 1171 476
+rect 1205 -476 1211 476
+rect 1165 -488 1211 -476
+rect 1549 476 1595 488
+rect 1549 -476 1555 476
+rect 1589 -476 1595 476
+rect 1549 -488 1595 -476
+rect 2085 476 2131 488
+rect 2085 -476 2091 476
+rect 2125 -476 2131 476
+rect 2085 -488 2131 -476
+rect 2469 476 2515 488
+rect 2469 -476 2475 476
+rect 2509 -476 2515 476
+rect 2469 -488 2515 -476
+rect 3005 476 3051 488
+rect 3005 -476 3011 476
+rect 3045 -476 3051 476
+rect 3005 -488 3051 -476
+rect 3389 476 3435 488
+rect 3389 -476 3395 476
+rect 3429 -476 3435 476
+rect 3389 -488 3435 -476
+rect 3925 476 3971 488
+rect 3925 -476 3931 476
+rect 3965 -476 3971 476
+rect 3925 -488 3971 -476
+rect 4309 476 4355 488
+rect 4309 -476 4315 476
+rect 4349 -476 4355 476
+rect 4309 -488 4355 -476
+rect 4845 476 4891 488
+rect 4845 -476 4851 476
+rect 4885 -476 4891 476
+rect 4845 -488 4891 -476
+rect 5229 476 5275 488
+rect 5229 -476 5235 476
+rect 5269 -476 5275 476
+rect 5229 -488 5275 -476
+rect 5765 476 5811 488
+rect 5765 -476 5771 476
+rect 5805 -476 5811 476
+rect 5765 -488 5811 -476
+rect 6149 476 6195 488
+rect 6149 -476 6155 476
+rect 6189 -476 6195 476
+rect 6149 -488 6195 -476
+rect 6685 476 6731 488
+rect 6685 -476 6691 476
+rect 6725 -476 6731 476
+rect 6685 -488 6731 -476
+rect -6636 -538 -6244 -532
+rect -6636 -572 -6624 -538
+rect -6256 -572 -6244 -538
+rect -6636 -578 -6244 -572
+rect -5716 -538 -5324 -532
+rect -5716 -572 -5704 -538
+rect -5336 -572 -5324 -538
+rect -5716 -578 -5324 -572
+rect -4796 -538 -4404 -532
+rect -4796 -572 -4784 -538
+rect -4416 -572 -4404 -538
+rect -4796 -578 -4404 -572
+rect -3876 -538 -3484 -532
+rect -3876 -572 -3864 -538
+rect -3496 -572 -3484 -538
+rect -3876 -578 -3484 -572
+rect -2956 -538 -2564 -532
+rect -2956 -572 -2944 -538
+rect -2576 -572 -2564 -538
+rect -2956 -578 -2564 -572
+rect -2036 -538 -1644 -532
+rect -2036 -572 -2024 -538
+rect -1656 -572 -1644 -538
+rect -2036 -578 -1644 -572
+rect -1116 -538 -724 -532
+rect -1116 -572 -1104 -538
+rect -736 -572 -724 -538
+rect -1116 -578 -724 -572
+rect -196 -538 196 -532
+rect -196 -572 -184 -538
+rect 184 -572 196 -538
+rect -196 -578 196 -572
+rect 724 -538 1116 -532
+rect 724 -572 736 -538
+rect 1104 -572 1116 -538
+rect 724 -578 1116 -572
+rect 1644 -538 2036 -532
+rect 1644 -572 1656 -538
+rect 2024 -572 2036 -538
+rect 1644 -578 2036 -572
+rect 2564 -538 2956 -532
+rect 2564 -572 2576 -538
+rect 2944 -572 2956 -538
+rect 2564 -578 2956 -572
+rect 3484 -538 3876 -532
+rect 3484 -572 3496 -538
+rect 3864 -572 3876 -538
+rect 3484 -578 3876 -572
+rect 4404 -538 4796 -532
+rect 4404 -572 4416 -538
+rect 4784 -572 4796 -538
+rect 4404 -578 4796 -572
+rect 5324 -538 5716 -532
+rect 5324 -572 5336 -538
+rect 5704 -572 5716 -538
+rect 5324 -578 5716 -572
+rect 6244 -538 6636 -532
+rect 6244 -572 6256 -538
+rect 6624 -572 6636 -538
+rect 6244 -578 6636 -572
+<< properties >>
+string FIXED_BBOX -6830 -648 6830 648
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 5 l 2 m 1 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_26RPB5.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_26RPB5.mag
new file mode 100644
index 0000000..7476254
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_26RPB5.mag
@@ -0,0 +1,555 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< nwell >>
+rect -4473 -591 -3807 591
+rect -3553 -591 -2887 591
+rect -2633 -591 -1967 591
+rect -1713 -591 -1047 591
+rect -793 -591 -127 591
+rect 127 -591 793 591
+rect 1047 -591 1713 591
+rect 1967 -591 2633 591
+rect 2887 -591 3553 591
+rect 3807 -591 4473 591
+<< pwell >>
+rect -4583 591 4583 701
+rect -4583 -591 -4473 591
+rect -3807 -591 -3553 591
+rect -2887 -591 -2633 591
+rect -1967 -591 -1713 591
+rect -1047 -591 -793 591
+rect -127 -591 127 591
+rect 793 -591 1047 591
+rect 1713 -591 1967 591
+rect 2633 -591 2887 591
+rect 3553 -591 3807 591
+rect 4473 -591 4583 591
+rect -4583 -701 4583 -591
+<< varactor >>
+rect -4340 -500 -3940 500
+rect -3420 -500 -3020 500
+rect -2500 -500 -2100 500
+rect -1580 -500 -1180 500
+rect -660 -500 -260 500
+rect 260 -500 660 500
+rect 1180 -500 1580 500
+rect 2100 -500 2500 500
+rect 3020 -500 3420 500
+rect 3940 -500 4340 500
+<< psubdiff >>
+rect -4547 631 -4451 665
+rect 4451 631 4547 665
+rect -4547 569 -4513 631
+rect 4513 569 4547 631
+rect -4547 -631 -4513 -569
+rect 4513 -631 4547 -569
+rect -4547 -665 -4451 -631
+rect 4451 -665 4547 -631
+<< nsubdiff >>
+rect -4437 476 -4340 500
+rect -4437 -476 -4425 476
+rect -4391 -476 -4340 476
+rect -4437 -500 -4340 -476
+rect -3940 476 -3843 500
+rect -3940 -476 -3889 476
+rect -3855 -476 -3843 476
+rect -3940 -500 -3843 -476
+rect -3517 476 -3420 500
+rect -3517 -476 -3505 476
+rect -3471 -476 -3420 476
+rect -3517 -500 -3420 -476
+rect -3020 476 -2923 500
+rect -3020 -476 -2969 476
+rect -2935 -476 -2923 476
+rect -3020 -500 -2923 -476
+rect -2597 476 -2500 500
+rect -2597 -476 -2585 476
+rect -2551 -476 -2500 476
+rect -2597 -500 -2500 -476
+rect -2100 476 -2003 500
+rect -2100 -476 -2049 476
+rect -2015 -476 -2003 476
+rect -2100 -500 -2003 -476
+rect -1677 476 -1580 500
+rect -1677 -476 -1665 476
+rect -1631 -476 -1580 476
+rect -1677 -500 -1580 -476
+rect -1180 476 -1083 500
+rect -1180 -476 -1129 476
+rect -1095 -476 -1083 476
+rect -1180 -500 -1083 -476
+rect -757 476 -660 500
+rect -757 -476 -745 476
+rect -711 -476 -660 476
+rect -757 -500 -660 -476
+rect -260 476 -163 500
+rect -260 -476 -209 476
+rect -175 -476 -163 476
+rect -260 -500 -163 -476
+rect 163 476 260 500
+rect 163 -476 175 476
+rect 209 -476 260 476
+rect 163 -500 260 -476
+rect 660 476 757 500
+rect 660 -476 711 476
+rect 745 -476 757 476
+rect 660 -500 757 -476
+rect 1083 476 1180 500
+rect 1083 -476 1095 476
+rect 1129 -476 1180 476
+rect 1083 -500 1180 -476
+rect 1580 476 1677 500
+rect 1580 -476 1631 476
+rect 1665 -476 1677 476
+rect 1580 -500 1677 -476
+rect 2003 476 2100 500
+rect 2003 -476 2015 476
+rect 2049 -476 2100 476
+rect 2003 -500 2100 -476
+rect 2500 476 2597 500
+rect 2500 -476 2551 476
+rect 2585 -476 2597 476
+rect 2500 -500 2597 -476
+rect 2923 476 3020 500
+rect 2923 -476 2935 476
+rect 2969 -476 3020 476
+rect 2923 -500 3020 -476
+rect 3420 476 3517 500
+rect 3420 -476 3471 476
+rect 3505 -476 3517 476
+rect 3420 -500 3517 -476
+rect 3843 476 3940 500
+rect 3843 -476 3855 476
+rect 3889 -476 3940 476
+rect 3843 -500 3940 -476
+rect 4340 476 4437 500
+rect 4340 -476 4391 476
+rect 4425 -476 4437 476
+rect 4340 -500 4437 -476
+<< psubdiffcont >>
+rect -4451 631 4451 665
+rect -4547 -569 -4513 569
+rect 4513 -569 4547 569
+rect -4451 -665 4451 -631
+<< nsubdiffcont >>
+rect -4425 -476 -4391 476
+rect -3889 -476 -3855 476
+rect -3505 -476 -3471 476
+rect -2969 -476 -2935 476
+rect -2585 -476 -2551 476
+rect -2049 -476 -2015 476
+rect -1665 -476 -1631 476
+rect -1129 -476 -1095 476
+rect -745 -476 -711 476
+rect -209 -476 -175 476
+rect 175 -476 209 476
+rect 711 -476 745 476
+rect 1095 -476 1129 476
+rect 1631 -476 1665 476
+rect 2015 -476 2049 476
+rect 2551 -476 2585 476
+rect 2935 -476 2969 476
+rect 3471 -476 3505 476
+rect 3855 -476 3889 476
+rect 4391 -476 4425 476
+<< poly >>
+rect -4340 572 -3940 588
+rect -4340 538 -4324 572
+rect -3956 538 -3940 572
+rect -4340 500 -3940 538
+rect -3420 572 -3020 588
+rect -3420 538 -3404 572
+rect -3036 538 -3020 572
+rect -3420 500 -3020 538
+rect -2500 572 -2100 588
+rect -2500 538 -2484 572
+rect -2116 538 -2100 572
+rect -2500 500 -2100 538
+rect -1580 572 -1180 588
+rect -1580 538 -1564 572
+rect -1196 538 -1180 572
+rect -1580 500 -1180 538
+rect -660 572 -260 588
+rect -660 538 -644 572
+rect -276 538 -260 572
+rect -660 500 -260 538
+rect 260 572 660 588
+rect 260 538 276 572
+rect 644 538 660 572
+rect 260 500 660 538
+rect 1180 572 1580 588
+rect 1180 538 1196 572
+rect 1564 538 1580 572
+rect 1180 500 1580 538
+rect 2100 572 2500 588
+rect 2100 538 2116 572
+rect 2484 538 2500 572
+rect 2100 500 2500 538
+rect 3020 572 3420 588
+rect 3020 538 3036 572
+rect 3404 538 3420 572
+rect 3020 500 3420 538
+rect 3940 572 4340 588
+rect 3940 538 3956 572
+rect 4324 538 4340 572
+rect 3940 500 4340 538
+rect -4340 -538 -3940 -500
+rect -4340 -572 -4324 -538
+rect -3956 -572 -3940 -538
+rect -4340 -588 -3940 -572
+rect -3420 -538 -3020 -500
+rect -3420 -572 -3404 -538
+rect -3036 -572 -3020 -538
+rect -3420 -588 -3020 -572
+rect -2500 -538 -2100 -500
+rect -2500 -572 -2484 -538
+rect -2116 -572 -2100 -538
+rect -2500 -588 -2100 -572
+rect -1580 -538 -1180 -500
+rect -1580 -572 -1564 -538
+rect -1196 -572 -1180 -538
+rect -1580 -588 -1180 -572
+rect -660 -538 -260 -500
+rect -660 -572 -644 -538
+rect -276 -572 -260 -538
+rect -660 -588 -260 -572
+rect 260 -538 660 -500
+rect 260 -572 276 -538
+rect 644 -572 660 -538
+rect 260 -588 660 -572
+rect 1180 -538 1580 -500
+rect 1180 -572 1196 -538
+rect 1564 -572 1580 -538
+rect 1180 -588 1580 -572
+rect 2100 -538 2500 -500
+rect 2100 -572 2116 -538
+rect 2484 -572 2500 -538
+rect 2100 -588 2500 -572
+rect 3020 -538 3420 -500
+rect 3020 -572 3036 -538
+rect 3404 -572 3420 -538
+rect 3020 -588 3420 -572
+rect 3940 -538 4340 -500
+rect 3940 -572 3956 -538
+rect 4324 -572 4340 -538
+rect 3940 -588 4340 -572
+<< polycont >>
+rect -4324 538 -3956 572
+rect -3404 538 -3036 572
+rect -2484 538 -2116 572
+rect -1564 538 -1196 572
+rect -644 538 -276 572
+rect 276 538 644 572
+rect 1196 538 1564 572
+rect 2116 538 2484 572
+rect 3036 538 3404 572
+rect 3956 538 4324 572
+rect -4324 -572 -3956 -538
+rect -3404 -572 -3036 -538
+rect -2484 -572 -2116 -538
+rect -1564 -572 -1196 -538
+rect -644 -572 -276 -538
+rect 276 -572 644 -538
+rect 1196 -572 1564 -538
+rect 2116 -572 2484 -538
+rect 3036 -572 3404 -538
+rect 3956 -572 4324 -538
+<< locali >>
+rect -4547 631 -4451 665
+rect 4451 631 4547 665
+rect -4547 569 -4513 631
+rect -4340 538 -4324 572
+rect -3956 538 -3940 572
+rect -3420 538 -3404 572
+rect -3036 538 -3020 572
+rect -2500 538 -2484 572
+rect -2116 538 -2100 572
+rect -1580 538 -1564 572
+rect -1196 538 -1180 572
+rect -660 538 -644 572
+rect -276 538 -260 572
+rect 260 538 276 572
+rect 644 538 660 572
+rect 1180 538 1196 572
+rect 1564 538 1580 572
+rect 2100 538 2116 572
+rect 2484 538 2500 572
+rect 3020 538 3036 572
+rect 3404 538 3420 572
+rect 3940 538 3956 572
+rect 4324 538 4340 572
+rect 4513 569 4547 631
+rect -4425 476 -4391 492
+rect -4425 -492 -4391 -476
+rect -3889 476 -3855 492
+rect -3889 -492 -3855 -476
+rect -3505 476 -3471 492
+rect -3505 -492 -3471 -476
+rect -2969 476 -2935 492
+rect -2969 -492 -2935 -476
+rect -2585 476 -2551 492
+rect -2585 -492 -2551 -476
+rect -2049 476 -2015 492
+rect -2049 -492 -2015 -476
+rect -1665 476 -1631 492
+rect -1665 -492 -1631 -476
+rect -1129 476 -1095 492
+rect -1129 -492 -1095 -476
+rect -745 476 -711 492
+rect -745 -492 -711 -476
+rect -209 476 -175 492
+rect -209 -492 -175 -476
+rect 175 476 209 492
+rect 175 -492 209 -476
+rect 711 476 745 492
+rect 711 -492 745 -476
+rect 1095 476 1129 492
+rect 1095 -492 1129 -476
+rect 1631 476 1665 492
+rect 1631 -492 1665 -476
+rect 2015 476 2049 492
+rect 2015 -492 2049 -476
+rect 2551 476 2585 492
+rect 2551 -492 2585 -476
+rect 2935 476 2969 492
+rect 2935 -492 2969 -476
+rect 3471 476 3505 492
+rect 3471 -492 3505 -476
+rect 3855 476 3889 492
+rect 3855 -492 3889 -476
+rect 4391 476 4425 492
+rect 4391 -492 4425 -476
+rect -4547 -631 -4513 -569
+rect -4340 -572 -4324 -538
+rect -3956 -572 -3940 -538
+rect -3420 -572 -3404 -538
+rect -3036 -572 -3020 -538
+rect -2500 -572 -2484 -538
+rect -2116 -572 -2100 -538
+rect -1580 -572 -1564 -538
+rect -1196 -572 -1180 -538
+rect -660 -572 -644 -538
+rect -276 -572 -260 -538
+rect 260 -572 276 -538
+rect 644 -572 660 -538
+rect 1180 -572 1196 -538
+rect 1564 -572 1580 -538
+rect 2100 -572 2116 -538
+rect 2484 -572 2500 -538
+rect 3020 -572 3036 -538
+rect 3404 -572 3420 -538
+rect 3940 -572 3956 -538
+rect 4324 -572 4340 -538
+rect 4513 -631 4547 -569
+rect -4547 -665 -4451 -631
+rect 4451 -665 4547 -631
+<< viali >>
+rect -4324 538 -3956 572
+rect -3404 538 -3036 572
+rect -2484 538 -2116 572
+rect -1564 538 -1196 572
+rect -644 538 -276 572
+rect 276 538 644 572
+rect 1196 538 1564 572
+rect 2116 538 2484 572
+rect 3036 538 3404 572
+rect 3956 538 4324 572
+rect -4425 -476 -4391 476
+rect -3889 -476 -3855 476
+rect -3505 -476 -3471 476
+rect -2969 -476 -2935 476
+rect -2585 -476 -2551 476
+rect -2049 -476 -2015 476
+rect -1665 -476 -1631 476
+rect -1129 -476 -1095 476
+rect -745 -476 -711 476
+rect -209 -476 -175 476
+rect 175 -476 209 476
+rect 711 -476 745 476
+rect 1095 -476 1129 476
+rect 1631 -476 1665 476
+rect 2015 -476 2049 476
+rect 2551 -476 2585 476
+rect 2935 -476 2969 476
+rect 3471 -476 3505 476
+rect 3855 -476 3889 476
+rect 4391 -476 4425 476
+rect -4324 -572 -3956 -538
+rect -3404 -572 -3036 -538
+rect -2484 -572 -2116 -538
+rect -1564 -572 -1196 -538
+rect -644 -572 -276 -538
+rect 276 -572 644 -538
+rect 1196 -572 1564 -538
+rect 2116 -572 2484 -538
+rect 3036 -572 3404 -538
+rect 3956 -572 4324 -538
+<< metal1 >>
+rect -4336 572 -3944 578
+rect -4336 538 -4324 572
+rect -3956 538 -3944 572
+rect -4336 532 -3944 538
+rect -3416 572 -3024 578
+rect -3416 538 -3404 572
+rect -3036 538 -3024 572
+rect -3416 532 -3024 538
+rect -2496 572 -2104 578
+rect -2496 538 -2484 572
+rect -2116 538 -2104 572
+rect -2496 532 -2104 538
+rect -1576 572 -1184 578
+rect -1576 538 -1564 572
+rect -1196 538 -1184 572
+rect -1576 532 -1184 538
+rect -656 572 -264 578
+rect -656 538 -644 572
+rect -276 538 -264 572
+rect -656 532 -264 538
+rect 264 572 656 578
+rect 264 538 276 572
+rect 644 538 656 572
+rect 264 532 656 538
+rect 1184 572 1576 578
+rect 1184 538 1196 572
+rect 1564 538 1576 572
+rect 1184 532 1576 538
+rect 2104 572 2496 578
+rect 2104 538 2116 572
+rect 2484 538 2496 572
+rect 2104 532 2496 538
+rect 3024 572 3416 578
+rect 3024 538 3036 572
+rect 3404 538 3416 572
+rect 3024 532 3416 538
+rect 3944 572 4336 578
+rect 3944 538 3956 572
+rect 4324 538 4336 572
+rect 3944 532 4336 538
+rect -4431 476 -4385 488
+rect -4431 -476 -4425 476
+rect -4391 -476 -4385 476
+rect -4431 -488 -4385 -476
+rect -3895 476 -3849 488
+rect -3895 -476 -3889 476
+rect -3855 -476 -3849 476
+rect -3895 -488 -3849 -476
+rect -3511 476 -3465 488
+rect -3511 -476 -3505 476
+rect -3471 -476 -3465 476
+rect -3511 -488 -3465 -476
+rect -2975 476 -2929 488
+rect -2975 -476 -2969 476
+rect -2935 -476 -2929 476
+rect -2975 -488 -2929 -476
+rect -2591 476 -2545 488
+rect -2591 -476 -2585 476
+rect -2551 -476 -2545 476
+rect -2591 -488 -2545 -476
+rect -2055 476 -2009 488
+rect -2055 -476 -2049 476
+rect -2015 -476 -2009 476
+rect -2055 -488 -2009 -476
+rect -1671 476 -1625 488
+rect -1671 -476 -1665 476
+rect -1631 -476 -1625 476
+rect -1671 -488 -1625 -476
+rect -1135 476 -1089 488
+rect -1135 -476 -1129 476
+rect -1095 -476 -1089 476
+rect -1135 -488 -1089 -476
+rect -751 476 -705 488
+rect -751 -476 -745 476
+rect -711 -476 -705 476
+rect -751 -488 -705 -476
+rect -215 476 -169 488
+rect -215 -476 -209 476
+rect -175 -476 -169 476
+rect -215 -488 -169 -476
+rect 169 476 215 488
+rect 169 -476 175 476
+rect 209 -476 215 476
+rect 169 -488 215 -476
+rect 705 476 751 488
+rect 705 -476 711 476
+rect 745 -476 751 476
+rect 705 -488 751 -476
+rect 1089 476 1135 488
+rect 1089 -476 1095 476
+rect 1129 -476 1135 476
+rect 1089 -488 1135 -476
+rect 1625 476 1671 488
+rect 1625 -476 1631 476
+rect 1665 -476 1671 476
+rect 1625 -488 1671 -476
+rect 2009 476 2055 488
+rect 2009 -476 2015 476
+rect 2049 -476 2055 476
+rect 2009 -488 2055 -476
+rect 2545 476 2591 488
+rect 2545 -476 2551 476
+rect 2585 -476 2591 476
+rect 2545 -488 2591 -476
+rect 2929 476 2975 488
+rect 2929 -476 2935 476
+rect 2969 -476 2975 476
+rect 2929 -488 2975 -476
+rect 3465 476 3511 488
+rect 3465 -476 3471 476
+rect 3505 -476 3511 476
+rect 3465 -488 3511 -476
+rect 3849 476 3895 488
+rect 3849 -476 3855 476
+rect 3889 -476 3895 476
+rect 3849 -488 3895 -476
+rect 4385 476 4431 488
+rect 4385 -476 4391 476
+rect 4425 -476 4431 476
+rect 4385 -488 4431 -476
+rect -4336 -538 -3944 -532
+rect -4336 -572 -4324 -538
+rect -3956 -572 -3944 -538
+rect -4336 -578 -3944 -572
+rect -3416 -538 -3024 -532
+rect -3416 -572 -3404 -538
+rect -3036 -572 -3024 -538
+rect -3416 -578 -3024 -572
+rect -2496 -538 -2104 -532
+rect -2496 -572 -2484 -538
+rect -2116 -572 -2104 -538
+rect -2496 -578 -2104 -572
+rect -1576 -538 -1184 -532
+rect -1576 -572 -1564 -538
+rect -1196 -572 -1184 -538
+rect -1576 -578 -1184 -572
+rect -656 -538 -264 -532
+rect -656 -572 -644 -538
+rect -276 -572 -264 -538
+rect -656 -578 -264 -572
+rect 264 -538 656 -532
+rect 264 -572 276 -538
+rect 644 -572 656 -538
+rect 264 -578 656 -572
+rect 1184 -538 1576 -532
+rect 1184 -572 1196 -538
+rect 1564 -572 1576 -538
+rect 1184 -578 1576 -572
+rect 2104 -538 2496 -532
+rect 2104 -572 2116 -538
+rect 2484 -572 2496 -538
+rect 2104 -578 2496 -572
+rect 3024 -538 3416 -532
+rect 3024 -572 3036 -538
+rect 3404 -572 3416 -538
+rect 3024 -578 3416 -572
+rect 3944 -538 4336 -532
+rect 3944 -572 3956 -538
+rect 4324 -572 4336 -538
+rect 3944 -578 4336 -572
+<< properties >>
+string FIXED_BBOX -4530 -648 4530 648
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 5 l 2 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_26RX44.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_26RX44.mag
new file mode 100644
index 0000000..38199d8
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_26RX44.mag
@@ -0,0 +1,2087 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645531774
+<< nwell >>
+rect -9073 127 -8407 1309
+rect -8153 127 -7487 1309
+rect -7233 127 -6567 1309
+rect -6313 127 -5647 1309
+rect -5393 127 -4727 1309
+rect -4473 127 -3807 1309
+rect -3553 127 -2887 1309
+rect -2633 127 -1967 1309
+rect -1713 127 -1047 1309
+rect -793 127 -127 1309
+rect 127 127 793 1309
+rect 1047 127 1713 1309
+rect 1967 127 2633 1309
+rect 2887 127 3553 1309
+rect 3807 127 4473 1309
+rect 4727 127 5393 1309
+rect 5647 127 6313 1309
+rect 6567 127 7233 1309
+rect 7487 127 8153 1309
+rect 8407 127 9073 1309
+rect -9073 -1309 -8407 -127
+rect -8153 -1309 -7487 -127
+rect -7233 -1309 -6567 -127
+rect -6313 -1309 -5647 -127
+rect -5393 -1309 -4727 -127
+rect -4473 -1309 -3807 -127
+rect -3553 -1309 -2887 -127
+rect -2633 -1309 -1967 -127
+rect -1713 -1309 -1047 -127
+rect -793 -1309 -127 -127
+rect 127 -1309 793 -127
+rect 1047 -1309 1713 -127
+rect 1967 -1309 2633 -127
+rect 2887 -1309 3553 -127
+rect 3807 -1309 4473 -127
+rect 4727 -1309 5393 -127
+rect 5647 -1309 6313 -127
+rect 6567 -1309 7233 -127
+rect 7487 -1309 8153 -127
+rect 8407 -1309 9073 -127
+<< pwell >>
+rect -9183 1309 9183 1419
+rect -9183 127 -9073 1309
+rect -8407 127 -8153 1309
+rect -7487 127 -7233 1309
+rect -6567 127 -6313 1309
+rect -5647 127 -5393 1309
+rect -4727 127 -4473 1309
+rect -3807 127 -3553 1309
+rect -2887 127 -2633 1309
+rect -1967 127 -1713 1309
+rect -1047 127 -793 1309
+rect -127 127 127 1309
+rect 793 127 1047 1309
+rect 1713 127 1967 1309
+rect 2633 127 2887 1309
+rect 3553 127 3807 1309
+rect 4473 127 4727 1309
+rect 5393 127 5647 1309
+rect 6313 127 6567 1309
+rect 7233 127 7487 1309
+rect 8153 127 8407 1309
+rect 9073 127 9183 1309
+rect -9183 -127 9183 127
+rect -9183 -1309 -9073 -127
+rect -8407 -1309 -8153 -127
+rect -7487 -1309 -7233 -127
+rect -6567 -1309 -6313 -127
+rect -5647 -1309 -5393 -127
+rect -4727 -1309 -4473 -127
+rect -3807 -1309 -3553 -127
+rect -2887 -1309 -2633 -127
+rect -1967 -1309 -1713 -127
+rect -1047 -1309 -793 -127
+rect -127 -1309 127 -127
+rect 793 -1309 1047 -127
+rect 1713 -1309 1967 -127
+rect 2633 -1309 2887 -127
+rect 3553 -1309 3807 -127
+rect 4473 -1309 4727 -127
+rect 5393 -1309 5647 -127
+rect 6313 -1309 6567 -127
+rect 7233 -1309 7487 -127
+rect 8153 -1309 8407 -127
+rect 9073 -1309 9183 -127
+rect -9183 -1419 9183 -1309
+<< varactor >>
+rect -8940 218 -8540 1218
+rect -8020 218 -7620 1218
+rect -7100 218 -6700 1218
+rect -6180 218 -5780 1218
+rect -5260 218 -4860 1218
+rect -4340 218 -3940 1218
+rect -3420 218 -3020 1218
+rect -2500 218 -2100 1218
+rect -1580 218 -1180 1218
+rect -660 218 -260 1218
+rect 260 218 660 1218
+rect 1180 218 1580 1218
+rect 2100 218 2500 1218
+rect 3020 218 3420 1218
+rect 3940 218 4340 1218
+rect 4860 218 5260 1218
+rect 5780 218 6180 1218
+rect 6700 218 7100 1218
+rect 7620 218 8020 1218
+rect 8540 218 8940 1218
+rect -8940 -1218 -8540 -218
+rect -8020 -1218 -7620 -218
+rect -7100 -1218 -6700 -218
+rect -6180 -1218 -5780 -218
+rect -5260 -1218 -4860 -218
+rect -4340 -1218 -3940 -218
+rect -3420 -1218 -3020 -218
+rect -2500 -1218 -2100 -218
+rect -1580 -1218 -1180 -218
+rect -660 -1218 -260 -218
+rect 260 -1218 660 -218
+rect 1180 -1218 1580 -218
+rect 2100 -1218 2500 -218
+rect 3020 -1218 3420 -218
+rect 3940 -1218 4340 -218
+rect 4860 -1218 5260 -218
+rect 5780 -1218 6180 -218
+rect 6700 -1218 7100 -218
+rect 7620 -1218 8020 -218
+rect 8540 -1218 8940 -218
+<< psubdiff >>
+rect -9147 1349 -9051 1383
+rect 9051 1349 9147 1383
+rect -9147 1287 -9113 1349
+rect 9113 1287 9147 1349
+rect -9147 -1349 -9113 -1287
+rect 9113 -1349 9147 -1287
+rect -9147 -1383 -9051 -1349
+rect 9051 -1383 9147 -1349
+<< nsubdiff >>
+rect -9037 1194 -8940 1218
+rect -9037 242 -9025 1194
+rect -8991 242 -8940 1194
+rect -9037 218 -8940 242
+rect -8540 1194 -8443 1218
+rect -8540 242 -8489 1194
+rect -8455 242 -8443 1194
+rect -8540 218 -8443 242
+rect -8117 1194 -8020 1218
+rect -8117 242 -8105 1194
+rect -8071 242 -8020 1194
+rect -8117 218 -8020 242
+rect -7620 1194 -7523 1218
+rect -7620 242 -7569 1194
+rect -7535 242 -7523 1194
+rect -7620 218 -7523 242
+rect -7197 1194 -7100 1218
+rect -7197 242 -7185 1194
+rect -7151 242 -7100 1194
+rect -7197 218 -7100 242
+rect -6700 1194 -6603 1218
+rect -6700 242 -6649 1194
+rect -6615 242 -6603 1194
+rect -6700 218 -6603 242
+rect -6277 1194 -6180 1218
+rect -6277 242 -6265 1194
+rect -6231 242 -6180 1194
+rect -6277 218 -6180 242
+rect -5780 1194 -5683 1218
+rect -5780 242 -5729 1194
+rect -5695 242 -5683 1194
+rect -5780 218 -5683 242
+rect -5357 1194 -5260 1218
+rect -5357 242 -5345 1194
+rect -5311 242 -5260 1194
+rect -5357 218 -5260 242
+rect -4860 1194 -4763 1218
+rect -4860 242 -4809 1194
+rect -4775 242 -4763 1194
+rect -4860 218 -4763 242
+rect -4437 1194 -4340 1218
+rect -4437 242 -4425 1194
+rect -4391 242 -4340 1194
+rect -4437 218 -4340 242
+rect -3940 1194 -3843 1218
+rect -3940 242 -3889 1194
+rect -3855 242 -3843 1194
+rect -3940 218 -3843 242
+rect -3517 1194 -3420 1218
+rect -3517 242 -3505 1194
+rect -3471 242 -3420 1194
+rect -3517 218 -3420 242
+rect -3020 1194 -2923 1218
+rect -3020 242 -2969 1194
+rect -2935 242 -2923 1194
+rect -3020 218 -2923 242
+rect -2597 1194 -2500 1218
+rect -2597 242 -2585 1194
+rect -2551 242 -2500 1194
+rect -2597 218 -2500 242
+rect -2100 1194 -2003 1218
+rect -2100 242 -2049 1194
+rect -2015 242 -2003 1194
+rect -2100 218 -2003 242
+rect -1677 1194 -1580 1218
+rect -1677 242 -1665 1194
+rect -1631 242 -1580 1194
+rect -1677 218 -1580 242
+rect -1180 1194 -1083 1218
+rect -1180 242 -1129 1194
+rect -1095 242 -1083 1194
+rect -1180 218 -1083 242
+rect -757 1194 -660 1218
+rect -757 242 -745 1194
+rect -711 242 -660 1194
+rect -757 218 -660 242
+rect -260 1194 -163 1218
+rect -260 242 -209 1194
+rect -175 242 -163 1194
+rect -260 218 -163 242
+rect 163 1194 260 1218
+rect 163 242 175 1194
+rect 209 242 260 1194
+rect 163 218 260 242
+rect 660 1194 757 1218
+rect 660 242 711 1194
+rect 745 242 757 1194
+rect 660 218 757 242
+rect 1083 1194 1180 1218
+rect 1083 242 1095 1194
+rect 1129 242 1180 1194
+rect 1083 218 1180 242
+rect 1580 1194 1677 1218
+rect 1580 242 1631 1194
+rect 1665 242 1677 1194
+rect 1580 218 1677 242
+rect 2003 1194 2100 1218
+rect 2003 242 2015 1194
+rect 2049 242 2100 1194
+rect 2003 218 2100 242
+rect 2500 1194 2597 1218
+rect 2500 242 2551 1194
+rect 2585 242 2597 1194
+rect 2500 218 2597 242
+rect 2923 1194 3020 1218
+rect 2923 242 2935 1194
+rect 2969 242 3020 1194
+rect 2923 218 3020 242
+rect 3420 1194 3517 1218
+rect 3420 242 3471 1194
+rect 3505 242 3517 1194
+rect 3420 218 3517 242
+rect 3843 1194 3940 1218
+rect 3843 242 3855 1194
+rect 3889 242 3940 1194
+rect 3843 218 3940 242
+rect 4340 1194 4437 1218
+rect 4340 242 4391 1194
+rect 4425 242 4437 1194
+rect 4340 218 4437 242
+rect 4763 1194 4860 1218
+rect 4763 242 4775 1194
+rect 4809 242 4860 1194
+rect 4763 218 4860 242
+rect 5260 1194 5357 1218
+rect 5260 242 5311 1194
+rect 5345 242 5357 1194
+rect 5260 218 5357 242
+rect 5683 1194 5780 1218
+rect 5683 242 5695 1194
+rect 5729 242 5780 1194
+rect 5683 218 5780 242
+rect 6180 1194 6277 1218
+rect 6180 242 6231 1194
+rect 6265 242 6277 1194
+rect 6180 218 6277 242
+rect 6603 1194 6700 1218
+rect 6603 242 6615 1194
+rect 6649 242 6700 1194
+rect 6603 218 6700 242
+rect 7100 1194 7197 1218
+rect 7100 242 7151 1194
+rect 7185 242 7197 1194
+rect 7100 218 7197 242
+rect 7523 1194 7620 1218
+rect 7523 242 7535 1194
+rect 7569 242 7620 1194
+rect 7523 218 7620 242
+rect 8020 1194 8117 1218
+rect 8020 242 8071 1194
+rect 8105 242 8117 1194
+rect 8020 218 8117 242
+rect 8443 1194 8540 1218
+rect 8443 242 8455 1194
+rect 8489 242 8540 1194
+rect 8443 218 8540 242
+rect 8940 1194 9037 1218
+rect 8940 242 8991 1194
+rect 9025 242 9037 1194
+rect 8940 218 9037 242
+rect -9037 -242 -8940 -218
+rect -9037 -1194 -9025 -242
+rect -8991 -1194 -8940 -242
+rect -9037 -1218 -8940 -1194
+rect -8540 -242 -8443 -218
+rect -8540 -1194 -8489 -242
+rect -8455 -1194 -8443 -242
+rect -8540 -1218 -8443 -1194
+rect -8117 -242 -8020 -218
+rect -8117 -1194 -8105 -242
+rect -8071 -1194 -8020 -242
+rect -8117 -1218 -8020 -1194
+rect -7620 -242 -7523 -218
+rect -7620 -1194 -7569 -242
+rect -7535 -1194 -7523 -242
+rect -7620 -1218 -7523 -1194
+rect -7197 -242 -7100 -218
+rect -7197 -1194 -7185 -242
+rect -7151 -1194 -7100 -242
+rect -7197 -1218 -7100 -1194
+rect -6700 -242 -6603 -218
+rect -6700 -1194 -6649 -242
+rect -6615 -1194 -6603 -242
+rect -6700 -1218 -6603 -1194
+rect -6277 -242 -6180 -218
+rect -6277 -1194 -6265 -242
+rect -6231 -1194 -6180 -242
+rect -6277 -1218 -6180 -1194
+rect -5780 -242 -5683 -218
+rect -5780 -1194 -5729 -242
+rect -5695 -1194 -5683 -242
+rect -5780 -1218 -5683 -1194
+rect -5357 -242 -5260 -218
+rect -5357 -1194 -5345 -242
+rect -5311 -1194 -5260 -242
+rect -5357 -1218 -5260 -1194
+rect -4860 -242 -4763 -218
+rect -4860 -1194 -4809 -242
+rect -4775 -1194 -4763 -242
+rect -4860 -1218 -4763 -1194
+rect -4437 -242 -4340 -218
+rect -4437 -1194 -4425 -242
+rect -4391 -1194 -4340 -242
+rect -4437 -1218 -4340 -1194
+rect -3940 -242 -3843 -218
+rect -3940 -1194 -3889 -242
+rect -3855 -1194 -3843 -242
+rect -3940 -1218 -3843 -1194
+rect -3517 -242 -3420 -218
+rect -3517 -1194 -3505 -242
+rect -3471 -1194 -3420 -242
+rect -3517 -1218 -3420 -1194
+rect -3020 -242 -2923 -218
+rect -3020 -1194 -2969 -242
+rect -2935 -1194 -2923 -242
+rect -3020 -1218 -2923 -1194
+rect -2597 -242 -2500 -218
+rect -2597 -1194 -2585 -242
+rect -2551 -1194 -2500 -242
+rect -2597 -1218 -2500 -1194
+rect -2100 -242 -2003 -218
+rect -2100 -1194 -2049 -242
+rect -2015 -1194 -2003 -242
+rect -2100 -1218 -2003 -1194
+rect -1677 -242 -1580 -218
+rect -1677 -1194 -1665 -242
+rect -1631 -1194 -1580 -242
+rect -1677 -1218 -1580 -1194
+rect -1180 -242 -1083 -218
+rect -1180 -1194 -1129 -242
+rect -1095 -1194 -1083 -242
+rect -1180 -1218 -1083 -1194
+rect -757 -242 -660 -218
+rect -757 -1194 -745 -242
+rect -711 -1194 -660 -242
+rect -757 -1218 -660 -1194
+rect -260 -242 -163 -218
+rect -260 -1194 -209 -242
+rect -175 -1194 -163 -242
+rect -260 -1218 -163 -1194
+rect 163 -242 260 -218
+rect 163 -1194 175 -242
+rect 209 -1194 260 -242
+rect 163 -1218 260 -1194
+rect 660 -242 757 -218
+rect 660 -1194 711 -242
+rect 745 -1194 757 -242
+rect 660 -1218 757 -1194
+rect 1083 -242 1180 -218
+rect 1083 -1194 1095 -242
+rect 1129 -1194 1180 -242
+rect 1083 -1218 1180 -1194
+rect 1580 -242 1677 -218
+rect 1580 -1194 1631 -242
+rect 1665 -1194 1677 -242
+rect 1580 -1218 1677 -1194
+rect 2003 -242 2100 -218
+rect 2003 -1194 2015 -242
+rect 2049 -1194 2100 -242
+rect 2003 -1218 2100 -1194
+rect 2500 -242 2597 -218
+rect 2500 -1194 2551 -242
+rect 2585 -1194 2597 -242
+rect 2500 -1218 2597 -1194
+rect 2923 -242 3020 -218
+rect 2923 -1194 2935 -242
+rect 2969 -1194 3020 -242
+rect 2923 -1218 3020 -1194
+rect 3420 -242 3517 -218
+rect 3420 -1194 3471 -242
+rect 3505 -1194 3517 -242
+rect 3420 -1218 3517 -1194
+rect 3843 -242 3940 -218
+rect 3843 -1194 3855 -242
+rect 3889 -1194 3940 -242
+rect 3843 -1218 3940 -1194
+rect 4340 -242 4437 -218
+rect 4340 -1194 4391 -242
+rect 4425 -1194 4437 -242
+rect 4340 -1218 4437 -1194
+rect 4763 -242 4860 -218
+rect 4763 -1194 4775 -242
+rect 4809 -1194 4860 -242
+rect 4763 -1218 4860 -1194
+rect 5260 -242 5357 -218
+rect 5260 -1194 5311 -242
+rect 5345 -1194 5357 -242
+rect 5260 -1218 5357 -1194
+rect 5683 -242 5780 -218
+rect 5683 -1194 5695 -242
+rect 5729 -1194 5780 -242
+rect 5683 -1218 5780 -1194
+rect 6180 -242 6277 -218
+rect 6180 -1194 6231 -242
+rect 6265 -1194 6277 -242
+rect 6180 -1218 6277 -1194
+rect 6603 -242 6700 -218
+rect 6603 -1194 6615 -242
+rect 6649 -1194 6700 -242
+rect 6603 -1218 6700 -1194
+rect 7100 -242 7197 -218
+rect 7100 -1194 7151 -242
+rect 7185 -1194 7197 -242
+rect 7100 -1218 7197 -1194
+rect 7523 -242 7620 -218
+rect 7523 -1194 7535 -242
+rect 7569 -1194 7620 -242
+rect 7523 -1218 7620 -1194
+rect 8020 -242 8117 -218
+rect 8020 -1194 8071 -242
+rect 8105 -1194 8117 -242
+rect 8020 -1218 8117 -1194
+rect 8443 -242 8540 -218
+rect 8443 -1194 8455 -242
+rect 8489 -1194 8540 -242
+rect 8443 -1218 8540 -1194
+rect 8940 -242 9037 -218
+rect 8940 -1194 8991 -242
+rect 9025 -1194 9037 -242
+rect 8940 -1218 9037 -1194
+<< psubdiffcont >>
+rect -9051 1349 9051 1383
+rect -9147 -1287 -9113 1287
+rect 9113 -1287 9147 1287
+rect -9051 -1383 9051 -1349
+<< nsubdiffcont >>
+rect -9025 242 -8991 1194
+rect -8489 242 -8455 1194
+rect -8105 242 -8071 1194
+rect -7569 242 -7535 1194
+rect -7185 242 -7151 1194
+rect -6649 242 -6615 1194
+rect -6265 242 -6231 1194
+rect -5729 242 -5695 1194
+rect -5345 242 -5311 1194
+rect -4809 242 -4775 1194
+rect -4425 242 -4391 1194
+rect -3889 242 -3855 1194
+rect -3505 242 -3471 1194
+rect -2969 242 -2935 1194
+rect -2585 242 -2551 1194
+rect -2049 242 -2015 1194
+rect -1665 242 -1631 1194
+rect -1129 242 -1095 1194
+rect -745 242 -711 1194
+rect -209 242 -175 1194
+rect 175 242 209 1194
+rect 711 242 745 1194
+rect 1095 242 1129 1194
+rect 1631 242 1665 1194
+rect 2015 242 2049 1194
+rect 2551 242 2585 1194
+rect 2935 242 2969 1194
+rect 3471 242 3505 1194
+rect 3855 242 3889 1194
+rect 4391 242 4425 1194
+rect 4775 242 4809 1194
+rect 5311 242 5345 1194
+rect 5695 242 5729 1194
+rect 6231 242 6265 1194
+rect 6615 242 6649 1194
+rect 7151 242 7185 1194
+rect 7535 242 7569 1194
+rect 8071 242 8105 1194
+rect 8455 242 8489 1194
+rect 8991 242 9025 1194
+rect -9025 -1194 -8991 -242
+rect -8489 -1194 -8455 -242
+rect -8105 -1194 -8071 -242
+rect -7569 -1194 -7535 -242
+rect -7185 -1194 -7151 -242
+rect -6649 -1194 -6615 -242
+rect -6265 -1194 -6231 -242
+rect -5729 -1194 -5695 -242
+rect -5345 -1194 -5311 -242
+rect -4809 -1194 -4775 -242
+rect -4425 -1194 -4391 -242
+rect -3889 -1194 -3855 -242
+rect -3505 -1194 -3471 -242
+rect -2969 -1194 -2935 -242
+rect -2585 -1194 -2551 -242
+rect -2049 -1194 -2015 -242
+rect -1665 -1194 -1631 -242
+rect -1129 -1194 -1095 -242
+rect -745 -1194 -711 -242
+rect -209 -1194 -175 -242
+rect 175 -1194 209 -242
+rect 711 -1194 745 -242
+rect 1095 -1194 1129 -242
+rect 1631 -1194 1665 -242
+rect 2015 -1194 2049 -242
+rect 2551 -1194 2585 -242
+rect 2935 -1194 2969 -242
+rect 3471 -1194 3505 -242
+rect 3855 -1194 3889 -242
+rect 4391 -1194 4425 -242
+rect 4775 -1194 4809 -242
+rect 5311 -1194 5345 -242
+rect 5695 -1194 5729 -242
+rect 6231 -1194 6265 -242
+rect 6615 -1194 6649 -242
+rect 7151 -1194 7185 -242
+rect 7535 -1194 7569 -242
+rect 8071 -1194 8105 -242
+rect 8455 -1194 8489 -242
+rect 8991 -1194 9025 -242
+<< poly >>
+rect -8940 1290 -8540 1306
+rect -8940 1256 -8924 1290
+rect -8556 1256 -8540 1290
+rect -8940 1218 -8540 1256
+rect -8020 1290 -7620 1306
+rect -8020 1256 -8004 1290
+rect -7636 1256 -7620 1290
+rect -8020 1218 -7620 1256
+rect -7100 1290 -6700 1306
+rect -7100 1256 -7084 1290
+rect -6716 1256 -6700 1290
+rect -7100 1218 -6700 1256
+rect -6180 1290 -5780 1306
+rect -6180 1256 -6164 1290
+rect -5796 1256 -5780 1290
+rect -6180 1218 -5780 1256
+rect -5260 1290 -4860 1306
+rect -5260 1256 -5244 1290
+rect -4876 1256 -4860 1290
+rect -5260 1218 -4860 1256
+rect -4340 1290 -3940 1306
+rect -4340 1256 -4324 1290
+rect -3956 1256 -3940 1290
+rect -4340 1218 -3940 1256
+rect -3420 1290 -3020 1306
+rect -3420 1256 -3404 1290
+rect -3036 1256 -3020 1290
+rect -3420 1218 -3020 1256
+rect -2500 1290 -2100 1306
+rect -2500 1256 -2484 1290
+rect -2116 1256 -2100 1290
+rect -2500 1218 -2100 1256
+rect -1580 1290 -1180 1306
+rect -1580 1256 -1564 1290
+rect -1196 1256 -1180 1290
+rect -1580 1218 -1180 1256
+rect -660 1290 -260 1306
+rect -660 1256 -644 1290
+rect -276 1256 -260 1290
+rect -660 1218 -260 1256
+rect 260 1290 660 1306
+rect 260 1256 276 1290
+rect 644 1256 660 1290
+rect 260 1218 660 1256
+rect 1180 1290 1580 1306
+rect 1180 1256 1196 1290
+rect 1564 1256 1580 1290
+rect 1180 1218 1580 1256
+rect 2100 1290 2500 1306
+rect 2100 1256 2116 1290
+rect 2484 1256 2500 1290
+rect 2100 1218 2500 1256
+rect 3020 1290 3420 1306
+rect 3020 1256 3036 1290
+rect 3404 1256 3420 1290
+rect 3020 1218 3420 1256
+rect 3940 1290 4340 1306
+rect 3940 1256 3956 1290
+rect 4324 1256 4340 1290
+rect 3940 1218 4340 1256
+rect 4860 1290 5260 1306
+rect 4860 1256 4876 1290
+rect 5244 1256 5260 1290
+rect 4860 1218 5260 1256
+rect 5780 1290 6180 1306
+rect 5780 1256 5796 1290
+rect 6164 1256 6180 1290
+rect 5780 1218 6180 1256
+rect 6700 1290 7100 1306
+rect 6700 1256 6716 1290
+rect 7084 1256 7100 1290
+rect 6700 1218 7100 1256
+rect 7620 1290 8020 1306
+rect 7620 1256 7636 1290
+rect 8004 1256 8020 1290
+rect 7620 1218 8020 1256
+rect 8540 1290 8940 1306
+rect 8540 1256 8556 1290
+rect 8924 1256 8940 1290
+rect 8540 1218 8940 1256
+rect -8940 180 -8540 218
+rect -8940 146 -8924 180
+rect -8556 146 -8540 180
+rect -8940 130 -8540 146
+rect -8020 180 -7620 218
+rect -8020 146 -8004 180
+rect -7636 146 -7620 180
+rect -8020 130 -7620 146
+rect -7100 180 -6700 218
+rect -7100 146 -7084 180
+rect -6716 146 -6700 180
+rect -7100 130 -6700 146
+rect -6180 180 -5780 218
+rect -6180 146 -6164 180
+rect -5796 146 -5780 180
+rect -6180 130 -5780 146
+rect -5260 180 -4860 218
+rect -5260 146 -5244 180
+rect -4876 146 -4860 180
+rect -5260 130 -4860 146
+rect -4340 180 -3940 218
+rect -4340 146 -4324 180
+rect -3956 146 -3940 180
+rect -4340 130 -3940 146
+rect -3420 180 -3020 218
+rect -3420 146 -3404 180
+rect -3036 146 -3020 180
+rect -3420 130 -3020 146
+rect -2500 180 -2100 218
+rect -2500 146 -2484 180
+rect -2116 146 -2100 180
+rect -2500 130 -2100 146
+rect -1580 180 -1180 218
+rect -1580 146 -1564 180
+rect -1196 146 -1180 180
+rect -1580 130 -1180 146
+rect -660 180 -260 218
+rect -660 146 -644 180
+rect -276 146 -260 180
+rect -660 130 -260 146
+rect 260 180 660 218
+rect 260 146 276 180
+rect 644 146 660 180
+rect 260 130 660 146
+rect 1180 180 1580 218
+rect 1180 146 1196 180
+rect 1564 146 1580 180
+rect 1180 130 1580 146
+rect 2100 180 2500 218
+rect 2100 146 2116 180
+rect 2484 146 2500 180
+rect 2100 130 2500 146
+rect 3020 180 3420 218
+rect 3020 146 3036 180
+rect 3404 146 3420 180
+rect 3020 130 3420 146
+rect 3940 180 4340 218
+rect 3940 146 3956 180
+rect 4324 146 4340 180
+rect 3940 130 4340 146
+rect 4860 180 5260 218
+rect 4860 146 4876 180
+rect 5244 146 5260 180
+rect 4860 130 5260 146
+rect 5780 180 6180 218
+rect 5780 146 5796 180
+rect 6164 146 6180 180
+rect 5780 130 6180 146
+rect 6700 180 7100 218
+rect 6700 146 6716 180
+rect 7084 146 7100 180
+rect 6700 130 7100 146
+rect 7620 180 8020 218
+rect 7620 146 7636 180
+rect 8004 146 8020 180
+rect 7620 130 8020 146
+rect 8540 180 8940 218
+rect 8540 146 8556 180
+rect 8924 146 8940 180
+rect 8540 130 8940 146
+rect -8940 -146 -8540 -130
+rect -8940 -180 -8924 -146
+rect -8556 -180 -8540 -146
+rect -8940 -218 -8540 -180
+rect -8020 -146 -7620 -130
+rect -8020 -180 -8004 -146
+rect -7636 -180 -7620 -146
+rect -8020 -218 -7620 -180
+rect -7100 -146 -6700 -130
+rect -7100 -180 -7084 -146
+rect -6716 -180 -6700 -146
+rect -7100 -218 -6700 -180
+rect -6180 -146 -5780 -130
+rect -6180 -180 -6164 -146
+rect -5796 -180 -5780 -146
+rect -6180 -218 -5780 -180
+rect -5260 -146 -4860 -130
+rect -5260 -180 -5244 -146
+rect -4876 -180 -4860 -146
+rect -5260 -218 -4860 -180
+rect -4340 -146 -3940 -130
+rect -4340 -180 -4324 -146
+rect -3956 -180 -3940 -146
+rect -4340 -218 -3940 -180
+rect -3420 -146 -3020 -130
+rect -3420 -180 -3404 -146
+rect -3036 -180 -3020 -146
+rect -3420 -218 -3020 -180
+rect -2500 -146 -2100 -130
+rect -2500 -180 -2484 -146
+rect -2116 -180 -2100 -146
+rect -2500 -218 -2100 -180
+rect -1580 -146 -1180 -130
+rect -1580 -180 -1564 -146
+rect -1196 -180 -1180 -146
+rect -1580 -218 -1180 -180
+rect -660 -146 -260 -130
+rect -660 -180 -644 -146
+rect -276 -180 -260 -146
+rect -660 -218 -260 -180
+rect 260 -146 660 -130
+rect 260 -180 276 -146
+rect 644 -180 660 -146
+rect 260 -218 660 -180
+rect 1180 -146 1580 -130
+rect 1180 -180 1196 -146
+rect 1564 -180 1580 -146
+rect 1180 -218 1580 -180
+rect 2100 -146 2500 -130
+rect 2100 -180 2116 -146
+rect 2484 -180 2500 -146
+rect 2100 -218 2500 -180
+rect 3020 -146 3420 -130
+rect 3020 -180 3036 -146
+rect 3404 -180 3420 -146
+rect 3020 -218 3420 -180
+rect 3940 -146 4340 -130
+rect 3940 -180 3956 -146
+rect 4324 -180 4340 -146
+rect 3940 -218 4340 -180
+rect 4860 -146 5260 -130
+rect 4860 -180 4876 -146
+rect 5244 -180 5260 -146
+rect 4860 -218 5260 -180
+rect 5780 -146 6180 -130
+rect 5780 -180 5796 -146
+rect 6164 -180 6180 -146
+rect 5780 -218 6180 -180
+rect 6700 -146 7100 -130
+rect 6700 -180 6716 -146
+rect 7084 -180 7100 -146
+rect 6700 -218 7100 -180
+rect 7620 -146 8020 -130
+rect 7620 -180 7636 -146
+rect 8004 -180 8020 -146
+rect 7620 -218 8020 -180
+rect 8540 -146 8940 -130
+rect 8540 -180 8556 -146
+rect 8924 -180 8940 -146
+rect 8540 -218 8940 -180
+rect -8940 -1256 -8540 -1218
+rect -8940 -1290 -8924 -1256
+rect -8556 -1290 -8540 -1256
+rect -8940 -1306 -8540 -1290
+rect -8020 -1256 -7620 -1218
+rect -8020 -1290 -8004 -1256
+rect -7636 -1290 -7620 -1256
+rect -8020 -1306 -7620 -1290
+rect -7100 -1256 -6700 -1218
+rect -7100 -1290 -7084 -1256
+rect -6716 -1290 -6700 -1256
+rect -7100 -1306 -6700 -1290
+rect -6180 -1256 -5780 -1218
+rect -6180 -1290 -6164 -1256
+rect -5796 -1290 -5780 -1256
+rect -6180 -1306 -5780 -1290
+rect -5260 -1256 -4860 -1218
+rect -5260 -1290 -5244 -1256
+rect -4876 -1290 -4860 -1256
+rect -5260 -1306 -4860 -1290
+rect -4340 -1256 -3940 -1218
+rect -4340 -1290 -4324 -1256
+rect -3956 -1290 -3940 -1256
+rect -4340 -1306 -3940 -1290
+rect -3420 -1256 -3020 -1218
+rect -3420 -1290 -3404 -1256
+rect -3036 -1290 -3020 -1256
+rect -3420 -1306 -3020 -1290
+rect -2500 -1256 -2100 -1218
+rect -2500 -1290 -2484 -1256
+rect -2116 -1290 -2100 -1256
+rect -2500 -1306 -2100 -1290
+rect -1580 -1256 -1180 -1218
+rect -1580 -1290 -1564 -1256
+rect -1196 -1290 -1180 -1256
+rect -1580 -1306 -1180 -1290
+rect -660 -1256 -260 -1218
+rect -660 -1290 -644 -1256
+rect -276 -1290 -260 -1256
+rect -660 -1306 -260 -1290
+rect 260 -1256 660 -1218
+rect 260 -1290 276 -1256
+rect 644 -1290 660 -1256
+rect 260 -1306 660 -1290
+rect 1180 -1256 1580 -1218
+rect 1180 -1290 1196 -1256
+rect 1564 -1290 1580 -1256
+rect 1180 -1306 1580 -1290
+rect 2100 -1256 2500 -1218
+rect 2100 -1290 2116 -1256
+rect 2484 -1290 2500 -1256
+rect 2100 -1306 2500 -1290
+rect 3020 -1256 3420 -1218
+rect 3020 -1290 3036 -1256
+rect 3404 -1290 3420 -1256
+rect 3020 -1306 3420 -1290
+rect 3940 -1256 4340 -1218
+rect 3940 -1290 3956 -1256
+rect 4324 -1290 4340 -1256
+rect 3940 -1306 4340 -1290
+rect 4860 -1256 5260 -1218
+rect 4860 -1290 4876 -1256
+rect 5244 -1290 5260 -1256
+rect 4860 -1306 5260 -1290
+rect 5780 -1256 6180 -1218
+rect 5780 -1290 5796 -1256
+rect 6164 -1290 6180 -1256
+rect 5780 -1306 6180 -1290
+rect 6700 -1256 7100 -1218
+rect 6700 -1290 6716 -1256
+rect 7084 -1290 7100 -1256
+rect 6700 -1306 7100 -1290
+rect 7620 -1256 8020 -1218
+rect 7620 -1290 7636 -1256
+rect 8004 -1290 8020 -1256
+rect 7620 -1306 8020 -1290
+rect 8540 -1256 8940 -1218
+rect 8540 -1290 8556 -1256
+rect 8924 -1290 8940 -1256
+rect 8540 -1306 8940 -1290
+<< polycont >>
+rect -8924 1256 -8556 1290
+rect -8004 1256 -7636 1290
+rect -7084 1256 -6716 1290
+rect -6164 1256 -5796 1290
+rect -5244 1256 -4876 1290
+rect -4324 1256 -3956 1290
+rect -3404 1256 -3036 1290
+rect -2484 1256 -2116 1290
+rect -1564 1256 -1196 1290
+rect -644 1256 -276 1290
+rect 276 1256 644 1290
+rect 1196 1256 1564 1290
+rect 2116 1256 2484 1290
+rect 3036 1256 3404 1290
+rect 3956 1256 4324 1290
+rect 4876 1256 5244 1290
+rect 5796 1256 6164 1290
+rect 6716 1256 7084 1290
+rect 7636 1256 8004 1290
+rect 8556 1256 8924 1290
+rect -8924 146 -8556 180
+rect -8004 146 -7636 180
+rect -7084 146 -6716 180
+rect -6164 146 -5796 180
+rect -5244 146 -4876 180
+rect -4324 146 -3956 180
+rect -3404 146 -3036 180
+rect -2484 146 -2116 180
+rect -1564 146 -1196 180
+rect -644 146 -276 180
+rect 276 146 644 180
+rect 1196 146 1564 180
+rect 2116 146 2484 180
+rect 3036 146 3404 180
+rect 3956 146 4324 180
+rect 4876 146 5244 180
+rect 5796 146 6164 180
+rect 6716 146 7084 180
+rect 7636 146 8004 180
+rect 8556 146 8924 180
+rect -8924 -180 -8556 -146
+rect -8004 -180 -7636 -146
+rect -7084 -180 -6716 -146
+rect -6164 -180 -5796 -146
+rect -5244 -180 -4876 -146
+rect -4324 -180 -3956 -146
+rect -3404 -180 -3036 -146
+rect -2484 -180 -2116 -146
+rect -1564 -180 -1196 -146
+rect -644 -180 -276 -146
+rect 276 -180 644 -146
+rect 1196 -180 1564 -146
+rect 2116 -180 2484 -146
+rect 3036 -180 3404 -146
+rect 3956 -180 4324 -146
+rect 4876 -180 5244 -146
+rect 5796 -180 6164 -146
+rect 6716 -180 7084 -146
+rect 7636 -180 8004 -146
+rect 8556 -180 8924 -146
+rect -8924 -1290 -8556 -1256
+rect -8004 -1290 -7636 -1256
+rect -7084 -1290 -6716 -1256
+rect -6164 -1290 -5796 -1256
+rect -5244 -1290 -4876 -1256
+rect -4324 -1290 -3956 -1256
+rect -3404 -1290 -3036 -1256
+rect -2484 -1290 -2116 -1256
+rect -1564 -1290 -1196 -1256
+rect -644 -1290 -276 -1256
+rect 276 -1290 644 -1256
+rect 1196 -1290 1564 -1256
+rect 2116 -1290 2484 -1256
+rect 3036 -1290 3404 -1256
+rect 3956 -1290 4324 -1256
+rect 4876 -1290 5244 -1256
+rect 5796 -1290 6164 -1256
+rect 6716 -1290 7084 -1256
+rect 7636 -1290 8004 -1256
+rect 8556 -1290 8924 -1256
+<< locali >>
+rect -9147 1349 -9051 1383
+rect 9051 1349 9147 1383
+rect -9147 1287 -9113 1349
+rect -8940 1256 -8924 1290
+rect -8556 1256 -8540 1290
+rect -8020 1256 -8004 1290
+rect -7636 1256 -7620 1290
+rect -7100 1256 -7084 1290
+rect -6716 1256 -6700 1290
+rect -6180 1256 -6164 1290
+rect -5796 1256 -5780 1290
+rect -5260 1256 -5244 1290
+rect -4876 1256 -4860 1290
+rect -4340 1256 -4324 1290
+rect -3956 1256 -3940 1290
+rect -3420 1256 -3404 1290
+rect -3036 1256 -3020 1290
+rect -2500 1256 -2484 1290
+rect -2116 1256 -2100 1290
+rect -1580 1256 -1564 1290
+rect -1196 1256 -1180 1290
+rect -660 1256 -644 1290
+rect -276 1256 -260 1290
+rect 260 1256 276 1290
+rect 644 1256 660 1290
+rect 1180 1256 1196 1290
+rect 1564 1256 1580 1290
+rect 2100 1256 2116 1290
+rect 2484 1256 2500 1290
+rect 3020 1256 3036 1290
+rect 3404 1256 3420 1290
+rect 3940 1256 3956 1290
+rect 4324 1256 4340 1290
+rect 4860 1256 4876 1290
+rect 5244 1256 5260 1290
+rect 5780 1256 5796 1290
+rect 6164 1256 6180 1290
+rect 6700 1256 6716 1290
+rect 7084 1256 7100 1290
+rect 7620 1256 7636 1290
+rect 8004 1256 8020 1290
+rect 8540 1256 8556 1290
+rect 8924 1256 8940 1290
+rect 9113 1287 9147 1349
+rect -9025 1194 -8991 1210
+rect -9025 226 -8991 242
+rect -8489 1194 -8455 1210
+rect -8489 226 -8455 242
+rect -8105 1194 -8071 1210
+rect -8105 226 -8071 242
+rect -7569 1194 -7535 1210
+rect -7569 226 -7535 242
+rect -7185 1194 -7151 1210
+rect -7185 226 -7151 242
+rect -6649 1194 -6615 1210
+rect -6649 226 -6615 242
+rect -6265 1194 -6231 1210
+rect -6265 226 -6231 242
+rect -5729 1194 -5695 1210
+rect -5729 226 -5695 242
+rect -5345 1194 -5311 1210
+rect -5345 226 -5311 242
+rect -4809 1194 -4775 1210
+rect -4809 226 -4775 242
+rect -4425 1194 -4391 1210
+rect -4425 226 -4391 242
+rect -3889 1194 -3855 1210
+rect -3889 226 -3855 242
+rect -3505 1194 -3471 1210
+rect -3505 226 -3471 242
+rect -2969 1194 -2935 1210
+rect -2969 226 -2935 242
+rect -2585 1194 -2551 1210
+rect -2585 226 -2551 242
+rect -2049 1194 -2015 1210
+rect -2049 226 -2015 242
+rect -1665 1194 -1631 1210
+rect -1665 226 -1631 242
+rect -1129 1194 -1095 1210
+rect -1129 226 -1095 242
+rect -745 1194 -711 1210
+rect -745 226 -711 242
+rect -209 1194 -175 1210
+rect -209 226 -175 242
+rect 175 1194 209 1210
+rect 175 226 209 242
+rect 711 1194 745 1210
+rect 711 226 745 242
+rect 1095 1194 1129 1210
+rect 1095 226 1129 242
+rect 1631 1194 1665 1210
+rect 1631 226 1665 242
+rect 2015 1194 2049 1210
+rect 2015 226 2049 242
+rect 2551 1194 2585 1210
+rect 2551 226 2585 242
+rect 2935 1194 2969 1210
+rect 2935 226 2969 242
+rect 3471 1194 3505 1210
+rect 3471 226 3505 242
+rect 3855 1194 3889 1210
+rect 3855 226 3889 242
+rect 4391 1194 4425 1210
+rect 4391 226 4425 242
+rect 4775 1194 4809 1210
+rect 4775 226 4809 242
+rect 5311 1194 5345 1210
+rect 5311 226 5345 242
+rect 5695 1194 5729 1210
+rect 5695 226 5729 242
+rect 6231 1194 6265 1210
+rect 6231 226 6265 242
+rect 6615 1194 6649 1210
+rect 6615 226 6649 242
+rect 7151 1194 7185 1210
+rect 7151 226 7185 242
+rect 7535 1194 7569 1210
+rect 7535 226 7569 242
+rect 8071 1194 8105 1210
+rect 8071 226 8105 242
+rect 8455 1194 8489 1210
+rect 8455 226 8489 242
+rect 8991 1194 9025 1210
+rect 8991 226 9025 242
+rect -8940 146 -8924 180
+rect -8556 146 -8540 180
+rect -8020 146 -8004 180
+rect -7636 146 -7620 180
+rect -7100 146 -7084 180
+rect -6716 146 -6700 180
+rect -6180 146 -6164 180
+rect -5796 146 -5780 180
+rect -5260 146 -5244 180
+rect -4876 146 -4860 180
+rect -4340 146 -4324 180
+rect -3956 146 -3940 180
+rect -3420 146 -3404 180
+rect -3036 146 -3020 180
+rect -2500 146 -2484 180
+rect -2116 146 -2100 180
+rect -1580 146 -1564 180
+rect -1196 146 -1180 180
+rect -660 146 -644 180
+rect -276 146 -260 180
+rect 260 146 276 180
+rect 644 146 660 180
+rect 1180 146 1196 180
+rect 1564 146 1580 180
+rect 2100 146 2116 180
+rect 2484 146 2500 180
+rect 3020 146 3036 180
+rect 3404 146 3420 180
+rect 3940 146 3956 180
+rect 4324 146 4340 180
+rect 4860 146 4876 180
+rect 5244 146 5260 180
+rect 5780 146 5796 180
+rect 6164 146 6180 180
+rect 6700 146 6716 180
+rect 7084 146 7100 180
+rect 7620 146 7636 180
+rect 8004 146 8020 180
+rect 8540 146 8556 180
+rect 8924 146 8940 180
+rect -8940 -180 -8924 -146
+rect -8556 -180 -8540 -146
+rect -8020 -180 -8004 -146
+rect -7636 -180 -7620 -146
+rect -7100 -180 -7084 -146
+rect -6716 -180 -6700 -146
+rect -6180 -180 -6164 -146
+rect -5796 -180 -5780 -146
+rect -5260 -180 -5244 -146
+rect -4876 -180 -4860 -146
+rect -4340 -180 -4324 -146
+rect -3956 -180 -3940 -146
+rect -3420 -180 -3404 -146
+rect -3036 -180 -3020 -146
+rect -2500 -180 -2484 -146
+rect -2116 -180 -2100 -146
+rect -1580 -180 -1564 -146
+rect -1196 -180 -1180 -146
+rect -660 -180 -644 -146
+rect -276 -180 -260 -146
+rect 260 -180 276 -146
+rect 644 -180 660 -146
+rect 1180 -180 1196 -146
+rect 1564 -180 1580 -146
+rect 2100 -180 2116 -146
+rect 2484 -180 2500 -146
+rect 3020 -180 3036 -146
+rect 3404 -180 3420 -146
+rect 3940 -180 3956 -146
+rect 4324 -180 4340 -146
+rect 4860 -180 4876 -146
+rect 5244 -180 5260 -146
+rect 5780 -180 5796 -146
+rect 6164 -180 6180 -146
+rect 6700 -180 6716 -146
+rect 7084 -180 7100 -146
+rect 7620 -180 7636 -146
+rect 8004 -180 8020 -146
+rect 8540 -180 8556 -146
+rect 8924 -180 8940 -146
+rect -9025 -242 -8991 -226
+rect -9025 -1210 -8991 -1194
+rect -8489 -242 -8455 -226
+rect -8489 -1210 -8455 -1194
+rect -8105 -242 -8071 -226
+rect -8105 -1210 -8071 -1194
+rect -7569 -242 -7535 -226
+rect -7569 -1210 -7535 -1194
+rect -7185 -242 -7151 -226
+rect -7185 -1210 -7151 -1194
+rect -6649 -242 -6615 -226
+rect -6649 -1210 -6615 -1194
+rect -6265 -242 -6231 -226
+rect -6265 -1210 -6231 -1194
+rect -5729 -242 -5695 -226
+rect -5729 -1210 -5695 -1194
+rect -5345 -242 -5311 -226
+rect -5345 -1210 -5311 -1194
+rect -4809 -242 -4775 -226
+rect -4809 -1210 -4775 -1194
+rect -4425 -242 -4391 -226
+rect -4425 -1210 -4391 -1194
+rect -3889 -242 -3855 -226
+rect -3889 -1210 -3855 -1194
+rect -3505 -242 -3471 -226
+rect -3505 -1210 -3471 -1194
+rect -2969 -242 -2935 -226
+rect -2969 -1210 -2935 -1194
+rect -2585 -242 -2551 -226
+rect -2585 -1210 -2551 -1194
+rect -2049 -242 -2015 -226
+rect -2049 -1210 -2015 -1194
+rect -1665 -242 -1631 -226
+rect -1665 -1210 -1631 -1194
+rect -1129 -242 -1095 -226
+rect -1129 -1210 -1095 -1194
+rect -745 -242 -711 -226
+rect -745 -1210 -711 -1194
+rect -209 -242 -175 -226
+rect -209 -1210 -175 -1194
+rect 175 -242 209 -226
+rect 175 -1210 209 -1194
+rect 711 -242 745 -226
+rect 711 -1210 745 -1194
+rect 1095 -242 1129 -226
+rect 1095 -1210 1129 -1194
+rect 1631 -242 1665 -226
+rect 1631 -1210 1665 -1194
+rect 2015 -242 2049 -226
+rect 2015 -1210 2049 -1194
+rect 2551 -242 2585 -226
+rect 2551 -1210 2585 -1194
+rect 2935 -242 2969 -226
+rect 2935 -1210 2969 -1194
+rect 3471 -242 3505 -226
+rect 3471 -1210 3505 -1194
+rect 3855 -242 3889 -226
+rect 3855 -1210 3889 -1194
+rect 4391 -242 4425 -226
+rect 4391 -1210 4425 -1194
+rect 4775 -242 4809 -226
+rect 4775 -1210 4809 -1194
+rect 5311 -242 5345 -226
+rect 5311 -1210 5345 -1194
+rect 5695 -242 5729 -226
+rect 5695 -1210 5729 -1194
+rect 6231 -242 6265 -226
+rect 6231 -1210 6265 -1194
+rect 6615 -242 6649 -226
+rect 6615 -1210 6649 -1194
+rect 7151 -242 7185 -226
+rect 7151 -1210 7185 -1194
+rect 7535 -242 7569 -226
+rect 7535 -1210 7569 -1194
+rect 8071 -242 8105 -226
+rect 8071 -1210 8105 -1194
+rect 8455 -242 8489 -226
+rect 8455 -1210 8489 -1194
+rect 8991 -242 9025 -226
+rect 8991 -1210 9025 -1194
+rect -9147 -1349 -9113 -1287
+rect -8940 -1290 -8924 -1256
+rect -8556 -1290 -8540 -1256
+rect -8020 -1290 -8004 -1256
+rect -7636 -1290 -7620 -1256
+rect -7100 -1290 -7084 -1256
+rect -6716 -1290 -6700 -1256
+rect -6180 -1290 -6164 -1256
+rect -5796 -1290 -5780 -1256
+rect -5260 -1290 -5244 -1256
+rect -4876 -1290 -4860 -1256
+rect -4340 -1290 -4324 -1256
+rect -3956 -1290 -3940 -1256
+rect -3420 -1290 -3404 -1256
+rect -3036 -1290 -3020 -1256
+rect -2500 -1290 -2484 -1256
+rect -2116 -1290 -2100 -1256
+rect -1580 -1290 -1564 -1256
+rect -1196 -1290 -1180 -1256
+rect -660 -1290 -644 -1256
+rect -276 -1290 -260 -1256
+rect 260 -1290 276 -1256
+rect 644 -1290 660 -1256
+rect 1180 -1290 1196 -1256
+rect 1564 -1290 1580 -1256
+rect 2100 -1290 2116 -1256
+rect 2484 -1290 2500 -1256
+rect 3020 -1290 3036 -1256
+rect 3404 -1290 3420 -1256
+rect 3940 -1290 3956 -1256
+rect 4324 -1290 4340 -1256
+rect 4860 -1290 4876 -1256
+rect 5244 -1290 5260 -1256
+rect 5780 -1290 5796 -1256
+rect 6164 -1290 6180 -1256
+rect 6700 -1290 6716 -1256
+rect 7084 -1290 7100 -1256
+rect 7620 -1290 7636 -1256
+rect 8004 -1290 8020 -1256
+rect 8540 -1290 8556 -1256
+rect 8924 -1290 8940 -1256
+rect 9113 -1349 9147 -1287
+rect -9147 -1383 -9051 -1349
+rect 9051 -1383 9147 -1349
+<< viali >>
+rect -8924 1256 -8556 1290
+rect -8004 1256 -7636 1290
+rect -7084 1256 -6716 1290
+rect -6164 1256 -5796 1290
+rect -5244 1256 -4876 1290
+rect -4324 1256 -3956 1290
+rect -3404 1256 -3036 1290
+rect -2484 1256 -2116 1290
+rect -1564 1256 -1196 1290
+rect -644 1256 -276 1290
+rect 276 1256 644 1290
+rect 1196 1256 1564 1290
+rect 2116 1256 2484 1290
+rect 3036 1256 3404 1290
+rect 3956 1256 4324 1290
+rect 4876 1256 5244 1290
+rect 5796 1256 6164 1290
+rect 6716 1256 7084 1290
+rect 7636 1256 8004 1290
+rect 8556 1256 8924 1290
+rect -9025 242 -8991 1194
+rect -8489 242 -8455 1194
+rect -8105 242 -8071 1194
+rect -7569 242 -7535 1194
+rect -7185 242 -7151 1194
+rect -6649 242 -6615 1194
+rect -6265 242 -6231 1194
+rect -5729 242 -5695 1194
+rect -5345 242 -5311 1194
+rect -4809 242 -4775 1194
+rect -4425 242 -4391 1194
+rect -3889 242 -3855 1194
+rect -3505 242 -3471 1194
+rect -2969 242 -2935 1194
+rect -2585 242 -2551 1194
+rect -2049 242 -2015 1194
+rect -1665 242 -1631 1194
+rect -1129 242 -1095 1194
+rect -745 242 -711 1194
+rect -209 242 -175 1194
+rect 175 242 209 1194
+rect 711 242 745 1194
+rect 1095 242 1129 1194
+rect 1631 242 1665 1194
+rect 2015 242 2049 1194
+rect 2551 242 2585 1194
+rect 2935 242 2969 1194
+rect 3471 242 3505 1194
+rect 3855 242 3889 1194
+rect 4391 242 4425 1194
+rect 4775 242 4809 1194
+rect 5311 242 5345 1194
+rect 5695 242 5729 1194
+rect 6231 242 6265 1194
+rect 6615 242 6649 1194
+rect 7151 242 7185 1194
+rect 7535 242 7569 1194
+rect 8071 242 8105 1194
+rect 8455 242 8489 1194
+rect 8991 242 9025 1194
+rect -8924 146 -8556 180
+rect -8004 146 -7636 180
+rect -7084 146 -6716 180
+rect -6164 146 -5796 180
+rect -5244 146 -4876 180
+rect -4324 146 -3956 180
+rect -3404 146 -3036 180
+rect -2484 146 -2116 180
+rect -1564 146 -1196 180
+rect -644 146 -276 180
+rect 276 146 644 180
+rect 1196 146 1564 180
+rect 2116 146 2484 180
+rect 3036 146 3404 180
+rect 3956 146 4324 180
+rect 4876 146 5244 180
+rect 5796 146 6164 180
+rect 6716 146 7084 180
+rect 7636 146 8004 180
+rect 8556 146 8924 180
+rect -8924 -180 -8556 -146
+rect -8004 -180 -7636 -146
+rect -7084 -180 -6716 -146
+rect -6164 -180 -5796 -146
+rect -5244 -180 -4876 -146
+rect -4324 -180 -3956 -146
+rect -3404 -180 -3036 -146
+rect -2484 -180 -2116 -146
+rect -1564 -180 -1196 -146
+rect -644 -180 -276 -146
+rect 276 -180 644 -146
+rect 1196 -180 1564 -146
+rect 2116 -180 2484 -146
+rect 3036 -180 3404 -146
+rect 3956 -180 4324 -146
+rect 4876 -180 5244 -146
+rect 5796 -180 6164 -146
+rect 6716 -180 7084 -146
+rect 7636 -180 8004 -146
+rect 8556 -180 8924 -146
+rect -9025 -1194 -8991 -242
+rect -8489 -1194 -8455 -242
+rect -8105 -1194 -8071 -242
+rect -7569 -1194 -7535 -242
+rect -7185 -1194 -7151 -242
+rect -6649 -1194 -6615 -242
+rect -6265 -1194 -6231 -242
+rect -5729 -1194 -5695 -242
+rect -5345 -1194 -5311 -242
+rect -4809 -1194 -4775 -242
+rect -4425 -1194 -4391 -242
+rect -3889 -1194 -3855 -242
+rect -3505 -1194 -3471 -242
+rect -2969 -1194 -2935 -242
+rect -2585 -1194 -2551 -242
+rect -2049 -1194 -2015 -242
+rect -1665 -1194 -1631 -242
+rect -1129 -1194 -1095 -242
+rect -745 -1194 -711 -242
+rect -209 -1194 -175 -242
+rect 175 -1194 209 -242
+rect 711 -1194 745 -242
+rect 1095 -1194 1129 -242
+rect 1631 -1194 1665 -242
+rect 2015 -1194 2049 -242
+rect 2551 -1194 2585 -242
+rect 2935 -1194 2969 -242
+rect 3471 -1194 3505 -242
+rect 3855 -1194 3889 -242
+rect 4391 -1194 4425 -242
+rect 4775 -1194 4809 -242
+rect 5311 -1194 5345 -242
+rect 5695 -1194 5729 -242
+rect 6231 -1194 6265 -242
+rect 6615 -1194 6649 -242
+rect 7151 -1194 7185 -242
+rect 7535 -1194 7569 -242
+rect 8071 -1194 8105 -242
+rect 8455 -1194 8489 -242
+rect 8991 -1194 9025 -242
+rect -8924 -1290 -8556 -1256
+rect -8004 -1290 -7636 -1256
+rect -7084 -1290 -6716 -1256
+rect -6164 -1290 -5796 -1256
+rect -5244 -1290 -4876 -1256
+rect -4324 -1290 -3956 -1256
+rect -3404 -1290 -3036 -1256
+rect -2484 -1290 -2116 -1256
+rect -1564 -1290 -1196 -1256
+rect -644 -1290 -276 -1256
+rect 276 -1290 644 -1256
+rect 1196 -1290 1564 -1256
+rect 2116 -1290 2484 -1256
+rect 3036 -1290 3404 -1256
+rect 3956 -1290 4324 -1256
+rect 4876 -1290 5244 -1256
+rect 5796 -1290 6164 -1256
+rect 6716 -1290 7084 -1256
+rect 7636 -1290 8004 -1256
+rect 8556 -1290 8924 -1256
+<< metal1 >>
+rect -8936 1290 -8544 1296
+rect -8936 1256 -8924 1290
+rect -8556 1256 -8544 1290
+rect -8936 1250 -8544 1256
+rect -8016 1290 -7624 1296
+rect -8016 1256 -8004 1290
+rect -7636 1256 -7624 1290
+rect -8016 1250 -7624 1256
+rect -7096 1290 -6704 1296
+rect -7096 1256 -7084 1290
+rect -6716 1256 -6704 1290
+rect -7096 1250 -6704 1256
+rect -6176 1290 -5784 1296
+rect -6176 1256 -6164 1290
+rect -5796 1256 -5784 1290
+rect -6176 1250 -5784 1256
+rect -5256 1290 -4864 1296
+rect -5256 1256 -5244 1290
+rect -4876 1256 -4864 1290
+rect -5256 1250 -4864 1256
+rect -4336 1290 -3944 1296
+rect -4336 1256 -4324 1290
+rect -3956 1256 -3944 1290
+rect -4336 1250 -3944 1256
+rect -3416 1290 -3024 1296
+rect -3416 1256 -3404 1290
+rect -3036 1256 -3024 1290
+rect -3416 1250 -3024 1256
+rect -2496 1290 -2104 1296
+rect -2496 1256 -2484 1290
+rect -2116 1256 -2104 1290
+rect -2496 1250 -2104 1256
+rect -1576 1290 -1184 1296
+rect -1576 1256 -1564 1290
+rect -1196 1256 -1184 1290
+rect -1576 1250 -1184 1256
+rect -656 1290 -264 1296
+rect -656 1256 -644 1290
+rect -276 1256 -264 1290
+rect -656 1250 -264 1256
+rect 264 1290 656 1296
+rect 264 1256 276 1290
+rect 644 1256 656 1290
+rect 264 1250 656 1256
+rect 1184 1290 1576 1296
+rect 1184 1256 1196 1290
+rect 1564 1256 1576 1290
+rect 1184 1250 1576 1256
+rect 2104 1290 2496 1296
+rect 2104 1256 2116 1290
+rect 2484 1256 2496 1290
+rect 2104 1250 2496 1256
+rect 3024 1290 3416 1296
+rect 3024 1256 3036 1290
+rect 3404 1256 3416 1290
+rect 3024 1250 3416 1256
+rect 3944 1290 4336 1296
+rect 3944 1256 3956 1290
+rect 4324 1256 4336 1290
+rect 3944 1250 4336 1256
+rect 4864 1290 5256 1296
+rect 4864 1256 4876 1290
+rect 5244 1256 5256 1290
+rect 4864 1250 5256 1256
+rect 5784 1290 6176 1296
+rect 5784 1256 5796 1290
+rect 6164 1256 6176 1290
+rect 5784 1250 6176 1256
+rect 6704 1290 7096 1296
+rect 6704 1256 6716 1290
+rect 7084 1256 7096 1290
+rect 6704 1250 7096 1256
+rect 7624 1290 8016 1296
+rect 7624 1256 7636 1290
+rect 8004 1256 8016 1290
+rect 7624 1250 8016 1256
+rect 8544 1290 8936 1296
+rect 8544 1256 8556 1290
+rect 8924 1256 8936 1290
+rect 8544 1250 8936 1256
+rect -9031 1194 -8985 1206
+rect -9031 242 -9025 1194
+rect -8991 242 -8985 1194
+rect -9031 230 -8985 242
+rect -8495 1194 -8449 1206
+rect -8495 242 -8489 1194
+rect -8455 242 -8449 1194
+rect -8495 230 -8449 242
+rect -8111 1194 -8065 1206
+rect -8111 242 -8105 1194
+rect -8071 242 -8065 1194
+rect -8111 230 -8065 242
+rect -7575 1194 -7529 1206
+rect -7575 242 -7569 1194
+rect -7535 242 -7529 1194
+rect -7575 230 -7529 242
+rect -7191 1194 -7145 1206
+rect -7191 242 -7185 1194
+rect -7151 242 -7145 1194
+rect -7191 230 -7145 242
+rect -6655 1194 -6609 1206
+rect -6655 242 -6649 1194
+rect -6615 242 -6609 1194
+rect -6655 230 -6609 242
+rect -6271 1194 -6225 1206
+rect -6271 242 -6265 1194
+rect -6231 242 -6225 1194
+rect -6271 230 -6225 242
+rect -5735 1194 -5689 1206
+rect -5735 242 -5729 1194
+rect -5695 242 -5689 1194
+rect -5735 230 -5689 242
+rect -5351 1194 -5305 1206
+rect -5351 242 -5345 1194
+rect -5311 242 -5305 1194
+rect -5351 230 -5305 242
+rect -4815 1194 -4769 1206
+rect -4815 242 -4809 1194
+rect -4775 242 -4769 1194
+rect -4815 230 -4769 242
+rect -4431 1194 -4385 1206
+rect -4431 242 -4425 1194
+rect -4391 242 -4385 1194
+rect -4431 230 -4385 242
+rect -3895 1194 -3849 1206
+rect -3895 242 -3889 1194
+rect -3855 242 -3849 1194
+rect -3895 230 -3849 242
+rect -3511 1194 -3465 1206
+rect -3511 242 -3505 1194
+rect -3471 242 -3465 1194
+rect -3511 230 -3465 242
+rect -2975 1194 -2929 1206
+rect -2975 242 -2969 1194
+rect -2935 242 -2929 1194
+rect -2975 230 -2929 242
+rect -2591 1194 -2545 1206
+rect -2591 242 -2585 1194
+rect -2551 242 -2545 1194
+rect -2591 230 -2545 242
+rect -2055 1194 -2009 1206
+rect -2055 242 -2049 1194
+rect -2015 242 -2009 1194
+rect -2055 230 -2009 242
+rect -1671 1194 -1625 1206
+rect -1671 242 -1665 1194
+rect -1631 242 -1625 1194
+rect -1671 230 -1625 242
+rect -1135 1194 -1089 1206
+rect -1135 242 -1129 1194
+rect -1095 242 -1089 1194
+rect -1135 230 -1089 242
+rect -751 1194 -705 1206
+rect -751 242 -745 1194
+rect -711 242 -705 1194
+rect -751 230 -705 242
+rect -215 1194 -169 1206
+rect -215 242 -209 1194
+rect -175 242 -169 1194
+rect -215 230 -169 242
+rect 169 1194 215 1206
+rect 169 242 175 1194
+rect 209 242 215 1194
+rect 169 230 215 242
+rect 705 1194 751 1206
+rect 705 242 711 1194
+rect 745 242 751 1194
+rect 705 230 751 242
+rect 1089 1194 1135 1206
+rect 1089 242 1095 1194
+rect 1129 242 1135 1194
+rect 1089 230 1135 242
+rect 1625 1194 1671 1206
+rect 1625 242 1631 1194
+rect 1665 242 1671 1194
+rect 1625 230 1671 242
+rect 2009 1194 2055 1206
+rect 2009 242 2015 1194
+rect 2049 242 2055 1194
+rect 2009 230 2055 242
+rect 2545 1194 2591 1206
+rect 2545 242 2551 1194
+rect 2585 242 2591 1194
+rect 2545 230 2591 242
+rect 2929 1194 2975 1206
+rect 2929 242 2935 1194
+rect 2969 242 2975 1194
+rect 2929 230 2975 242
+rect 3465 1194 3511 1206
+rect 3465 242 3471 1194
+rect 3505 242 3511 1194
+rect 3465 230 3511 242
+rect 3849 1194 3895 1206
+rect 3849 242 3855 1194
+rect 3889 242 3895 1194
+rect 3849 230 3895 242
+rect 4385 1194 4431 1206
+rect 4385 242 4391 1194
+rect 4425 242 4431 1194
+rect 4385 230 4431 242
+rect 4769 1194 4815 1206
+rect 4769 242 4775 1194
+rect 4809 242 4815 1194
+rect 4769 230 4815 242
+rect 5305 1194 5351 1206
+rect 5305 242 5311 1194
+rect 5345 242 5351 1194
+rect 5305 230 5351 242
+rect 5689 1194 5735 1206
+rect 5689 242 5695 1194
+rect 5729 242 5735 1194
+rect 5689 230 5735 242
+rect 6225 1194 6271 1206
+rect 6225 242 6231 1194
+rect 6265 242 6271 1194
+rect 6225 230 6271 242
+rect 6609 1194 6655 1206
+rect 6609 242 6615 1194
+rect 6649 242 6655 1194
+rect 6609 230 6655 242
+rect 7145 1194 7191 1206
+rect 7145 242 7151 1194
+rect 7185 242 7191 1194
+rect 7145 230 7191 242
+rect 7529 1194 7575 1206
+rect 7529 242 7535 1194
+rect 7569 242 7575 1194
+rect 7529 230 7575 242
+rect 8065 1194 8111 1206
+rect 8065 242 8071 1194
+rect 8105 242 8111 1194
+rect 8065 230 8111 242
+rect 8449 1194 8495 1206
+rect 8449 242 8455 1194
+rect 8489 242 8495 1194
+rect 8449 230 8495 242
+rect 8985 1194 9031 1206
+rect 8985 242 8991 1194
+rect 9025 242 9031 1194
+rect 8985 230 9031 242
+rect -8936 180 -8544 186
+rect -8936 146 -8924 180
+rect -8556 146 -8544 180
+rect -8936 140 -8544 146
+rect -8016 180 -7624 186
+rect -8016 146 -8004 180
+rect -7636 146 -7624 180
+rect -8016 140 -7624 146
+rect -7096 180 -6704 186
+rect -7096 146 -7084 180
+rect -6716 146 -6704 180
+rect -7096 140 -6704 146
+rect -6176 180 -5784 186
+rect -6176 146 -6164 180
+rect -5796 146 -5784 180
+rect -6176 140 -5784 146
+rect -5256 180 -4864 186
+rect -5256 146 -5244 180
+rect -4876 146 -4864 180
+rect -5256 140 -4864 146
+rect -4336 180 -3944 186
+rect -4336 146 -4324 180
+rect -3956 146 -3944 180
+rect -4336 140 -3944 146
+rect -3416 180 -3024 186
+rect -3416 146 -3404 180
+rect -3036 146 -3024 180
+rect -3416 140 -3024 146
+rect -2496 180 -2104 186
+rect -2496 146 -2484 180
+rect -2116 146 -2104 180
+rect -2496 140 -2104 146
+rect -1576 180 -1184 186
+rect -1576 146 -1564 180
+rect -1196 146 -1184 180
+rect -1576 140 -1184 146
+rect -656 180 -264 186
+rect -656 146 -644 180
+rect -276 146 -264 180
+rect -656 140 -264 146
+rect 264 180 656 186
+rect 264 146 276 180
+rect 644 146 656 180
+rect 264 140 656 146
+rect 1184 180 1576 186
+rect 1184 146 1196 180
+rect 1564 146 1576 180
+rect 1184 140 1576 146
+rect 2104 180 2496 186
+rect 2104 146 2116 180
+rect 2484 146 2496 180
+rect 2104 140 2496 146
+rect 3024 180 3416 186
+rect 3024 146 3036 180
+rect 3404 146 3416 180
+rect 3024 140 3416 146
+rect 3944 180 4336 186
+rect 3944 146 3956 180
+rect 4324 146 4336 180
+rect 3944 140 4336 146
+rect 4864 180 5256 186
+rect 4864 146 4876 180
+rect 5244 146 5256 180
+rect 4864 140 5256 146
+rect 5784 180 6176 186
+rect 5784 146 5796 180
+rect 6164 146 6176 180
+rect 5784 140 6176 146
+rect 6704 180 7096 186
+rect 6704 146 6716 180
+rect 7084 146 7096 180
+rect 6704 140 7096 146
+rect 7624 180 8016 186
+rect 7624 146 7636 180
+rect 8004 146 8016 180
+rect 7624 140 8016 146
+rect 8544 180 8936 186
+rect 8544 146 8556 180
+rect 8924 146 8936 180
+rect 8544 140 8936 146
+rect -8936 -146 -8544 -140
+rect -8936 -180 -8924 -146
+rect -8556 -180 -8544 -146
+rect -8936 -186 -8544 -180
+rect -8016 -146 -7624 -140
+rect -8016 -180 -8004 -146
+rect -7636 -180 -7624 -146
+rect -8016 -186 -7624 -180
+rect -7096 -146 -6704 -140
+rect -7096 -180 -7084 -146
+rect -6716 -180 -6704 -146
+rect -7096 -186 -6704 -180
+rect -6176 -146 -5784 -140
+rect -6176 -180 -6164 -146
+rect -5796 -180 -5784 -146
+rect -6176 -186 -5784 -180
+rect -5256 -146 -4864 -140
+rect -5256 -180 -5244 -146
+rect -4876 -180 -4864 -146
+rect -5256 -186 -4864 -180
+rect -4336 -146 -3944 -140
+rect -4336 -180 -4324 -146
+rect -3956 -180 -3944 -146
+rect -4336 -186 -3944 -180
+rect -3416 -146 -3024 -140
+rect -3416 -180 -3404 -146
+rect -3036 -180 -3024 -146
+rect -3416 -186 -3024 -180
+rect -2496 -146 -2104 -140
+rect -2496 -180 -2484 -146
+rect -2116 -180 -2104 -146
+rect -2496 -186 -2104 -180
+rect -1576 -146 -1184 -140
+rect -1576 -180 -1564 -146
+rect -1196 -180 -1184 -146
+rect -1576 -186 -1184 -180
+rect -656 -146 -264 -140
+rect -656 -180 -644 -146
+rect -276 -180 -264 -146
+rect -656 -186 -264 -180
+rect 264 -146 656 -140
+rect 264 -180 276 -146
+rect 644 -180 656 -146
+rect 264 -186 656 -180
+rect 1184 -146 1576 -140
+rect 1184 -180 1196 -146
+rect 1564 -180 1576 -146
+rect 1184 -186 1576 -180
+rect 2104 -146 2496 -140
+rect 2104 -180 2116 -146
+rect 2484 -180 2496 -146
+rect 2104 -186 2496 -180
+rect 3024 -146 3416 -140
+rect 3024 -180 3036 -146
+rect 3404 -180 3416 -146
+rect 3024 -186 3416 -180
+rect 3944 -146 4336 -140
+rect 3944 -180 3956 -146
+rect 4324 -180 4336 -146
+rect 3944 -186 4336 -180
+rect 4864 -146 5256 -140
+rect 4864 -180 4876 -146
+rect 5244 -180 5256 -146
+rect 4864 -186 5256 -180
+rect 5784 -146 6176 -140
+rect 5784 -180 5796 -146
+rect 6164 -180 6176 -146
+rect 5784 -186 6176 -180
+rect 6704 -146 7096 -140
+rect 6704 -180 6716 -146
+rect 7084 -180 7096 -146
+rect 6704 -186 7096 -180
+rect 7624 -146 8016 -140
+rect 7624 -180 7636 -146
+rect 8004 -180 8016 -146
+rect 7624 -186 8016 -180
+rect 8544 -146 8936 -140
+rect 8544 -180 8556 -146
+rect 8924 -180 8936 -146
+rect 8544 -186 8936 -180
+rect -9031 -242 -8985 -230
+rect -9031 -1194 -9025 -242
+rect -8991 -1194 -8985 -242
+rect -9031 -1206 -8985 -1194
+rect -8495 -242 -8449 -230
+rect -8495 -1194 -8489 -242
+rect -8455 -1194 -8449 -242
+rect -8495 -1206 -8449 -1194
+rect -8111 -242 -8065 -230
+rect -8111 -1194 -8105 -242
+rect -8071 -1194 -8065 -242
+rect -8111 -1206 -8065 -1194
+rect -7575 -242 -7529 -230
+rect -7575 -1194 -7569 -242
+rect -7535 -1194 -7529 -242
+rect -7575 -1206 -7529 -1194
+rect -7191 -242 -7145 -230
+rect -7191 -1194 -7185 -242
+rect -7151 -1194 -7145 -242
+rect -7191 -1206 -7145 -1194
+rect -6655 -242 -6609 -230
+rect -6655 -1194 -6649 -242
+rect -6615 -1194 -6609 -242
+rect -6655 -1206 -6609 -1194
+rect -6271 -242 -6225 -230
+rect -6271 -1194 -6265 -242
+rect -6231 -1194 -6225 -242
+rect -6271 -1206 -6225 -1194
+rect -5735 -242 -5689 -230
+rect -5735 -1194 -5729 -242
+rect -5695 -1194 -5689 -242
+rect -5735 -1206 -5689 -1194
+rect -5351 -242 -5305 -230
+rect -5351 -1194 -5345 -242
+rect -5311 -1194 -5305 -242
+rect -5351 -1206 -5305 -1194
+rect -4815 -242 -4769 -230
+rect -4815 -1194 -4809 -242
+rect -4775 -1194 -4769 -242
+rect -4815 -1206 -4769 -1194
+rect -4431 -242 -4385 -230
+rect -4431 -1194 -4425 -242
+rect -4391 -1194 -4385 -242
+rect -4431 -1206 -4385 -1194
+rect -3895 -242 -3849 -230
+rect -3895 -1194 -3889 -242
+rect -3855 -1194 -3849 -242
+rect -3895 -1206 -3849 -1194
+rect -3511 -242 -3465 -230
+rect -3511 -1194 -3505 -242
+rect -3471 -1194 -3465 -242
+rect -3511 -1206 -3465 -1194
+rect -2975 -242 -2929 -230
+rect -2975 -1194 -2969 -242
+rect -2935 -1194 -2929 -242
+rect -2975 -1206 -2929 -1194
+rect -2591 -242 -2545 -230
+rect -2591 -1194 -2585 -242
+rect -2551 -1194 -2545 -242
+rect -2591 -1206 -2545 -1194
+rect -2055 -242 -2009 -230
+rect -2055 -1194 -2049 -242
+rect -2015 -1194 -2009 -242
+rect -2055 -1206 -2009 -1194
+rect -1671 -242 -1625 -230
+rect -1671 -1194 -1665 -242
+rect -1631 -1194 -1625 -242
+rect -1671 -1206 -1625 -1194
+rect -1135 -242 -1089 -230
+rect -1135 -1194 -1129 -242
+rect -1095 -1194 -1089 -242
+rect -1135 -1206 -1089 -1194
+rect -751 -242 -705 -230
+rect -751 -1194 -745 -242
+rect -711 -1194 -705 -242
+rect -751 -1206 -705 -1194
+rect -215 -242 -169 -230
+rect -215 -1194 -209 -242
+rect -175 -1194 -169 -242
+rect -215 -1206 -169 -1194
+rect 169 -242 215 -230
+rect 169 -1194 175 -242
+rect 209 -1194 215 -242
+rect 169 -1206 215 -1194
+rect 705 -242 751 -230
+rect 705 -1194 711 -242
+rect 745 -1194 751 -242
+rect 705 -1206 751 -1194
+rect 1089 -242 1135 -230
+rect 1089 -1194 1095 -242
+rect 1129 -1194 1135 -242
+rect 1089 -1206 1135 -1194
+rect 1625 -242 1671 -230
+rect 1625 -1194 1631 -242
+rect 1665 -1194 1671 -242
+rect 1625 -1206 1671 -1194
+rect 2009 -242 2055 -230
+rect 2009 -1194 2015 -242
+rect 2049 -1194 2055 -242
+rect 2009 -1206 2055 -1194
+rect 2545 -242 2591 -230
+rect 2545 -1194 2551 -242
+rect 2585 -1194 2591 -242
+rect 2545 -1206 2591 -1194
+rect 2929 -242 2975 -230
+rect 2929 -1194 2935 -242
+rect 2969 -1194 2975 -242
+rect 2929 -1206 2975 -1194
+rect 3465 -242 3511 -230
+rect 3465 -1194 3471 -242
+rect 3505 -1194 3511 -242
+rect 3465 -1206 3511 -1194
+rect 3849 -242 3895 -230
+rect 3849 -1194 3855 -242
+rect 3889 -1194 3895 -242
+rect 3849 -1206 3895 -1194
+rect 4385 -242 4431 -230
+rect 4385 -1194 4391 -242
+rect 4425 -1194 4431 -242
+rect 4385 -1206 4431 -1194
+rect 4769 -242 4815 -230
+rect 4769 -1194 4775 -242
+rect 4809 -1194 4815 -242
+rect 4769 -1206 4815 -1194
+rect 5305 -242 5351 -230
+rect 5305 -1194 5311 -242
+rect 5345 -1194 5351 -242
+rect 5305 -1206 5351 -1194
+rect 5689 -242 5735 -230
+rect 5689 -1194 5695 -242
+rect 5729 -1194 5735 -242
+rect 5689 -1206 5735 -1194
+rect 6225 -242 6271 -230
+rect 6225 -1194 6231 -242
+rect 6265 -1194 6271 -242
+rect 6225 -1206 6271 -1194
+rect 6609 -242 6655 -230
+rect 6609 -1194 6615 -242
+rect 6649 -1194 6655 -242
+rect 6609 -1206 6655 -1194
+rect 7145 -242 7191 -230
+rect 7145 -1194 7151 -242
+rect 7185 -1194 7191 -242
+rect 7145 -1206 7191 -1194
+rect 7529 -242 7575 -230
+rect 7529 -1194 7535 -242
+rect 7569 -1194 7575 -242
+rect 7529 -1206 7575 -1194
+rect 8065 -242 8111 -230
+rect 8065 -1194 8071 -242
+rect 8105 -1194 8111 -242
+rect 8065 -1206 8111 -1194
+rect 8449 -242 8495 -230
+rect 8449 -1194 8455 -242
+rect 8489 -1194 8495 -242
+rect 8449 -1206 8495 -1194
+rect 8985 -242 9031 -230
+rect 8985 -1194 8991 -242
+rect 9025 -1194 9031 -242
+rect 8985 -1206 9031 -1194
+rect -8936 -1256 -8544 -1250
+rect -8936 -1290 -8924 -1256
+rect -8556 -1290 -8544 -1256
+rect -8936 -1296 -8544 -1290
+rect -8016 -1256 -7624 -1250
+rect -8016 -1290 -8004 -1256
+rect -7636 -1290 -7624 -1256
+rect -8016 -1296 -7624 -1290
+rect -7096 -1256 -6704 -1250
+rect -7096 -1290 -7084 -1256
+rect -6716 -1290 -6704 -1256
+rect -7096 -1296 -6704 -1290
+rect -6176 -1256 -5784 -1250
+rect -6176 -1290 -6164 -1256
+rect -5796 -1290 -5784 -1256
+rect -6176 -1296 -5784 -1290
+rect -5256 -1256 -4864 -1250
+rect -5256 -1290 -5244 -1256
+rect -4876 -1290 -4864 -1256
+rect -5256 -1296 -4864 -1290
+rect -4336 -1256 -3944 -1250
+rect -4336 -1290 -4324 -1256
+rect -3956 -1290 -3944 -1256
+rect -4336 -1296 -3944 -1290
+rect -3416 -1256 -3024 -1250
+rect -3416 -1290 -3404 -1256
+rect -3036 -1290 -3024 -1256
+rect -3416 -1296 -3024 -1290
+rect -2496 -1256 -2104 -1250
+rect -2496 -1290 -2484 -1256
+rect -2116 -1290 -2104 -1256
+rect -2496 -1296 -2104 -1290
+rect -1576 -1256 -1184 -1250
+rect -1576 -1290 -1564 -1256
+rect -1196 -1290 -1184 -1256
+rect -1576 -1296 -1184 -1290
+rect -656 -1256 -264 -1250
+rect -656 -1290 -644 -1256
+rect -276 -1290 -264 -1256
+rect -656 -1296 -264 -1290
+rect 264 -1256 656 -1250
+rect 264 -1290 276 -1256
+rect 644 -1290 656 -1256
+rect 264 -1296 656 -1290
+rect 1184 -1256 1576 -1250
+rect 1184 -1290 1196 -1256
+rect 1564 -1290 1576 -1256
+rect 1184 -1296 1576 -1290
+rect 2104 -1256 2496 -1250
+rect 2104 -1290 2116 -1256
+rect 2484 -1290 2496 -1256
+rect 2104 -1296 2496 -1290
+rect 3024 -1256 3416 -1250
+rect 3024 -1290 3036 -1256
+rect 3404 -1290 3416 -1256
+rect 3024 -1296 3416 -1290
+rect 3944 -1256 4336 -1250
+rect 3944 -1290 3956 -1256
+rect 4324 -1290 4336 -1256
+rect 3944 -1296 4336 -1290
+rect 4864 -1256 5256 -1250
+rect 4864 -1290 4876 -1256
+rect 5244 -1290 5256 -1256
+rect 4864 -1296 5256 -1290
+rect 5784 -1256 6176 -1250
+rect 5784 -1290 5796 -1256
+rect 6164 -1290 6176 -1256
+rect 5784 -1296 6176 -1290
+rect 6704 -1256 7096 -1250
+rect 6704 -1290 6716 -1256
+rect 7084 -1290 7096 -1256
+rect 6704 -1296 7096 -1290
+rect 7624 -1256 8016 -1250
+rect 7624 -1290 7636 -1256
+rect 8004 -1290 8016 -1256
+rect 7624 -1296 8016 -1290
+rect 8544 -1256 8936 -1250
+rect 8544 -1290 8556 -1256
+rect 8924 -1290 8936 -1256
+rect 8544 -1296 8936 -1290
+<< properties >>
+string FIXED_BBOX -9130 -1366 9130 1366
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 5 l 2 m 2 nf 20 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_2SUUKX.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_2SUUKX.mag
new file mode 100644
index 0000000..d59e7be
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_2SUUKX.mag
@@ -0,0 +1,99 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< error_p >>
+rect -530 291 530 318
+rect -530 -318 530 -291
+<< nwell >>
+rect -633 -291 633 291
+<< pwell >>
+rect -743 291 743 401
+rect -743 -291 -633 291
+rect 633 -291 743 291
+rect -743 -401 743 -291
+<< varactor >>
+rect -500 -200 500 200
+<< psubdiff >>
+rect -707 331 -611 365
+rect 611 331 707 365
+rect -707 269 -673 331
+rect 673 269 707 331
+rect -707 -331 -673 -269
+rect 673 -331 707 -269
+rect -707 -365 -611 -331
+rect 611 -365 707 -331
+<< nsubdiff >>
+rect -597 176 -500 200
+rect -597 -176 -585 176
+rect -551 -176 -500 176
+rect -597 -200 -500 -176
+rect 500 176 597 200
+rect 500 -176 551 176
+rect 585 -176 597 176
+rect 500 -200 597 -176
+<< psubdiffcont >>
+rect -611 331 611 365
+rect -707 -269 -673 269
+rect 673 -269 707 269
+rect -611 -365 611 -331
+<< nsubdiffcont >>
+rect -585 -176 -551 176
+rect 551 -176 585 176
+<< poly >>
+rect -500 272 500 288
+rect -500 238 -484 272
+rect 484 238 500 272
+rect -500 200 500 238
+rect -500 -238 500 -200
+rect -500 -272 -484 -238
+rect 484 -272 500 -238
+rect -500 -288 500 -272
+<< polycont >>
+rect -484 238 484 272
+rect -484 -272 484 -238
+<< locali >>
+rect -707 331 -611 365
+rect 611 331 707 365
+rect -707 269 -673 331
+rect -500 238 -484 272
+rect 484 238 500 272
+rect 673 269 707 331
+rect -585 176 -551 192
+rect -585 -192 -551 -176
+rect 551 176 585 192
+rect 551 -192 585 -176
+rect -707 -331 -673 -269
+rect -500 -272 -484 -238
+rect 484 -272 500 -238
+rect 673 -331 707 -269
+rect -707 -365 -611 -331
+rect 611 -365 707 -331
+<< viali >>
+rect -484 238 484 272
+rect -585 -176 -551 176
+rect 551 -176 585 176
+rect -484 -272 484 -238
+<< metal1 >>
+rect -496 272 496 278
+rect -496 238 -484 272
+rect 484 238 496 272
+rect -496 232 496 238
+rect -591 176 -545 188
+rect -591 -176 -585 176
+rect -551 -176 -545 176
+rect -591 -188 -545 -176
+rect 545 176 591 188
+rect 545 -176 551 176
+rect 585 -176 591 176
+rect 545 -188 591 -176
+rect -496 -238 496 -232
+rect -496 -272 -484 -238
+rect 484 -272 496 -238
+rect -496 -278 496 -272
+<< properties >>
+string FIXED_BBOX -690 -348 690 348
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 2 l 5 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 0 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_BUCBUJ.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_BUCBUJ.mag
new file mode 100644
index 0000000..98d986e
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_BUCBUJ.mag
@@ -0,0 +1,152 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645542524
+<< error_p >>
+rect -1290 291 -230 318
+rect 230 291 1290 318
+rect -1290 -318 -230 -291
+rect 230 -318 1290 -291
+<< nwell >>
+rect -1393 -291 -127 291
+rect 127 -291 1393 291
+<< pwell >>
+rect -1503 291 1503 401
+rect -1503 -291 -1393 291
+rect -127 -291 127 291
+rect 1393 -291 1503 291
+rect -1503 -401 1503 -291
+<< varactor >>
+rect -1260 -200 -260 200
+rect 260 -200 1260 200
+<< psubdiff >>
+rect -1467 331 -1371 365
+rect 1371 331 1467 365
+rect -1467 269 -1433 331
+rect 1433 269 1467 331
+rect -1467 -331 -1433 -269
+rect 1433 -331 1467 -269
+rect -1467 -365 -1371 -331
+rect 1371 -365 1467 -331
+<< nsubdiff >>
+rect -1357 176 -1260 200
+rect -1357 -176 -1345 176
+rect -1311 -176 -1260 176
+rect -1357 -200 -1260 -176
+rect -260 176 -163 200
+rect -260 -176 -209 176
+rect -175 -176 -163 176
+rect -260 -200 -163 -176
+rect 163 176 260 200
+rect 163 -176 175 176
+rect 209 -176 260 176
+rect 163 -200 260 -176
+rect 1260 176 1357 200
+rect 1260 -176 1311 176
+rect 1345 -176 1357 176
+rect 1260 -200 1357 -176
+<< psubdiffcont >>
+rect -1371 331 1371 365
+rect -1467 -269 -1433 269
+rect 1433 -269 1467 269
+rect -1371 -365 1371 -331
+<< nsubdiffcont >>
+rect -1345 -176 -1311 176
+rect -209 -176 -175 176
+rect 175 -176 209 176
+rect 1311 -176 1345 176
+<< poly >>
+rect -1260 272 -260 288
+rect -1260 238 -1244 272
+rect -276 238 -260 272
+rect -1260 200 -260 238
+rect 260 272 1260 288
+rect 260 238 276 272
+rect 1244 238 1260 272
+rect 260 200 1260 238
+rect -1260 -238 -260 -200
+rect -1260 -272 -1244 -238
+rect -276 -272 -260 -238
+rect -1260 -288 -260 -272
+rect 260 -238 1260 -200
+rect 260 -272 276 -238
+rect 1244 -272 1260 -238
+rect 260 -288 1260 -272
+<< polycont >>
+rect -1244 238 -276 272
+rect 276 238 1244 272
+rect -1244 -272 -276 -238
+rect 276 -272 1244 -238
+<< locali >>
+rect -1467 331 -1371 365
+rect 1371 331 1467 365
+rect -1467 269 -1433 331
+rect -1260 238 -1244 272
+rect -276 238 -260 272
+rect 260 238 276 272
+rect 1244 238 1260 272
+rect 1433 269 1467 331
+rect -1345 176 -1311 192
+rect -1345 -192 -1311 -176
+rect -209 176 -175 192
+rect -209 -192 -175 -176
+rect 175 176 209 192
+rect 175 -192 209 -176
+rect 1311 176 1345 192
+rect 1311 -192 1345 -176
+rect -1467 -331 -1433 -269
+rect -1260 -272 -1244 -238
+rect -276 -272 -260 -238
+rect 260 -272 276 -238
+rect 1244 -272 1260 -238
+rect 1433 -331 1467 -269
+rect -1467 -365 -1371 -331
+rect 1371 -365 1467 -331
+<< viali >>
+rect -1244 238 -276 272
+rect 276 238 1244 272
+rect -1345 -176 -1311 176
+rect -209 -176 -175 176
+rect 175 -176 209 176
+rect 1311 -176 1345 176
+rect -1244 -272 -276 -238
+rect 276 -272 1244 -238
+<< metal1 >>
+rect -1256 272 -264 278
+rect -1256 238 -1244 272
+rect -276 238 -264 272
+rect -1256 232 -264 238
+rect 264 272 1256 278
+rect 264 238 276 272
+rect 1244 238 1256 272
+rect 264 232 1256 238
+rect -1351 176 -1305 188
+rect -1351 -176 -1345 176
+rect -1311 -176 -1305 176
+rect -1351 -188 -1305 -176
+rect -215 176 -169 188
+rect -215 -176 -209 176
+rect -175 -176 -169 176
+rect -215 -188 -169 -176
+rect 169 176 215 188
+rect 169 -176 175 176
+rect 209 -176 215 176
+rect 169 -188 215 -176
+rect 1305 176 1351 188
+rect 1305 -176 1311 176
+rect 1345 -176 1351 176
+rect 1305 -188 1351 -176
+rect -1256 -238 -264 -232
+rect -1256 -272 -1244 -238
+rect -276 -272 -264 -238
+rect -1256 -278 -264 -272
+rect 264 -238 1256 -232
+rect 264 -272 276 -238
+rect 1244 -272 1256 -238
+rect 264 -278 1256 -272
+<< properties >>
+string FIXED_BBOX -1450 -348 1450 348
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 2 l 5 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__cap_var_lvt_BUUU8M.mag b/mag/isource/sky130_fd_pr__cap_var_lvt_BUUU8M.mag
new file mode 100644
index 0000000..55e72f5
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__cap_var_lvt_BUUU8M.mag
@@ -0,0 +1,99 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< error_p >>
+rect -530 291 530 318
+rect -530 -318 530 -291
+<< nwell >>
+rect -633 -291 633 291
+<< pwell >>
+rect -743 291 743 401
+rect -743 -291 -633 291
+rect 633 -291 743 291
+rect -743 -401 743 -291
+<< varactor >>
+rect -500 -200 500 200
+<< psubdiff >>
+rect -707 331 -611 365
+rect 611 331 707 365
+rect -707 269 -673 331
+rect 673 269 707 331
+rect -707 -331 -673 -269
+rect 673 -331 707 -269
+rect -707 -365 -611 -331
+rect 611 -365 707 -331
+<< nsubdiff >>
+rect -597 176 -500 200
+rect -597 -176 -585 176
+rect -551 -176 -500 176
+rect -597 -200 -500 -176
+rect 500 176 597 200
+rect 500 -176 551 176
+rect 585 -176 597 176
+rect 500 -200 597 -176
+<< psubdiffcont >>
+rect -611 331 611 365
+rect -707 -269 -673 269
+rect 673 -269 707 269
+rect -611 -365 611 -331
+<< nsubdiffcont >>
+rect -585 -176 -551 176
+rect 551 -176 585 176
+<< poly >>
+rect -500 272 500 288
+rect -500 238 -484 272
+rect 484 238 500 272
+rect -500 200 500 238
+rect -500 -238 500 -200
+rect -500 -272 -484 -238
+rect 484 -272 500 -238
+rect -500 -288 500 -272
+<< polycont >>
+rect -484 238 484 272
+rect -484 -272 484 -238
+<< locali >>
+rect -707 331 -611 365
+rect 611 331 707 365
+rect -707 269 -673 331
+rect -500 238 -484 272
+rect 484 238 500 272
+rect 673 269 707 331
+rect -585 176 -551 192
+rect -585 -192 -551 -176
+rect 551 176 585 192
+rect 551 -192 585 -176
+rect -707 -331 -673 -269
+rect -500 -272 -484 -238
+rect 484 -272 500 -238
+rect 673 -331 707 -269
+rect -707 -365 -611 -331
+rect 611 -365 707 -331
+<< viali >>
+rect -484 238 484 272
+rect -585 -176 -551 176
+rect 551 -176 585 176
+rect -484 -272 484 -238
+<< metal1 >>
+rect -496 272 496 278
+rect -496 238 -484 272
+rect 484 238 496 272
+rect -496 232 496 238
+rect -591 176 -545 188
+rect -591 -176 -585 176
+rect -551 -176 -545 176
+rect -591 -188 -545 -176
+rect 545 176 591 188
+rect 545 -176 551 176
+rect 585 -176 591 176
+rect 545 -188 591 -176
+rect -496 -238 496 -232
+rect -496 -272 -484 -238
+rect 484 -272 496 -238
+rect -496 -278 496 -272
+<< properties >>
+string FIXED_BBOX -690 -348 690 348
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 2 l 5 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 1 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_26RGPZ.mag b/mag/isource/sky130_fd_pr__nfet_01v8_26RGPZ.mag
new file mode 100644
index 0000000..150d6f1
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_26RGPZ.mag
@@ -0,0 +1,667 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645462850
+<< error_p >>
+rect -461 981 -403 987
+rect -269 981 -211 987
+rect -77 981 -19 987
+rect 115 981 173 987
+rect 307 981 365 987
+rect -461 947 -449 981
+rect -269 947 -257 981
+rect -77 947 -65 981
+rect 115 947 127 981
+rect 307 947 319 981
+rect -461 941 -403 947
+rect -269 941 -211 947
+rect -77 941 -19 947
+rect 115 941 173 947
+rect 307 941 365 947
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect -461 -947 -403 -941
+rect -269 -947 -211 -941
+rect -77 -947 -19 -941
+rect 115 -947 173 -941
+rect 307 -947 365 -941
+rect -461 -981 -449 -947
+rect -269 -981 -257 -947
+rect -77 -981 -65 -947
+rect 115 -981 127 -947
+rect 307 -981 319 -947
+rect -461 -987 -403 -981
+rect -269 -987 -211 -981
+rect -77 -987 -19 -981
+rect 115 -987 173 -981
+rect 307 -987 365 -981
+<< pwell >>
+rect -647 -1119 647 1119
+<< nmos >>
+rect -447 109 -417 909
+rect -351 109 -321 909
+rect -255 109 -225 909
+rect -159 109 -129 909
+rect -63 109 -33 909
+rect 33 109 63 909
+rect 129 109 159 909
+rect 225 109 255 909
+rect 321 109 351 909
+rect 417 109 447 909
+rect -447 -909 -417 -109
+rect -351 -909 -321 -109
+rect -255 -909 -225 -109
+rect -159 -909 -129 -109
+rect -63 -909 -33 -109
+rect 33 -909 63 -109
+rect 129 -909 159 -109
+rect 225 -909 255 -109
+rect 321 -909 351 -109
+rect 417 -909 447 -109
+<< ndiff >>
+rect -509 897 -447 909
+rect -509 121 -497 897
+rect -463 121 -447 897
+rect -509 109 -447 121
+rect -417 897 -351 909
+rect -417 121 -401 897
+rect -367 121 -351 897
+rect -417 109 -351 121
+rect -321 897 -255 909
+rect -321 121 -305 897
+rect -271 121 -255 897
+rect -321 109 -255 121
+rect -225 897 -159 909
+rect -225 121 -209 897
+rect -175 121 -159 897
+rect -225 109 -159 121
+rect -129 897 -63 909
+rect -129 121 -113 897
+rect -79 121 -63 897
+rect -129 109 -63 121
+rect -33 897 33 909
+rect -33 121 -17 897
+rect 17 121 33 897
+rect -33 109 33 121
+rect 63 897 129 909
+rect 63 121 79 897
+rect 113 121 129 897
+rect 63 109 129 121
+rect 159 897 225 909
+rect 159 121 175 897
+rect 209 121 225 897
+rect 159 109 225 121
+rect 255 897 321 909
+rect 255 121 271 897
+rect 305 121 321 897
+rect 255 109 321 121
+rect 351 897 417 909
+rect 351 121 367 897
+rect 401 121 417 897
+rect 351 109 417 121
+rect 447 897 509 909
+rect 447 121 463 897
+rect 497 121 509 897
+rect 447 109 509 121
+rect -509 -121 -447 -109
+rect -509 -897 -497 -121
+rect -463 -897 -447 -121
+rect -509 -909 -447 -897
+rect -417 -121 -351 -109
+rect -417 -897 -401 -121
+rect -367 -897 -351 -121
+rect -417 -909 -351 -897
+rect -321 -121 -255 -109
+rect -321 -897 -305 -121
+rect -271 -897 -255 -121
+rect -321 -909 -255 -897
+rect -225 -121 -159 -109
+rect -225 -897 -209 -121
+rect -175 -897 -159 -121
+rect -225 -909 -159 -897
+rect -129 -121 -63 -109
+rect -129 -897 -113 -121
+rect -79 -897 -63 -121
+rect -129 -909 -63 -897
+rect -33 -121 33 -109
+rect -33 -897 -17 -121
+rect 17 -897 33 -121
+rect -33 -909 33 -897
+rect 63 -121 129 -109
+rect 63 -897 79 -121
+rect 113 -897 129 -121
+rect 63 -909 129 -897
+rect 159 -121 225 -109
+rect 159 -897 175 -121
+rect 209 -897 225 -121
+rect 159 -909 225 -897
+rect 255 -121 321 -109
+rect 255 -897 271 -121
+rect 305 -897 321 -121
+rect 255 -909 321 -897
+rect 351 -121 417 -109
+rect 351 -897 367 -121
+rect 401 -897 417 -121
+rect 351 -909 417 -897
+rect 447 -121 509 -109
+rect 447 -897 463 -121
+rect 497 -897 509 -121
+rect 447 -909 509 -897
+<< ndiffc >>
+rect -497 121 -463 897
+rect -401 121 -367 897
+rect -305 121 -271 897
+rect -209 121 -175 897
+rect -113 121 -79 897
+rect -17 121 17 897
+rect 79 121 113 897
+rect 175 121 209 897
+rect 271 121 305 897
+rect 367 121 401 897
+rect 463 121 497 897
+rect -497 -897 -463 -121
+rect -401 -897 -367 -121
+rect -305 -897 -271 -121
+rect -209 -897 -175 -121
+rect -113 -897 -79 -121
+rect -17 -897 17 -121
+rect 79 -897 113 -121
+rect 175 -897 209 -121
+rect 271 -897 305 -121
+rect 367 -897 401 -121
+rect 463 -897 497 -121
+<< psubdiff >>
+rect -611 1049 -515 1083
+rect 515 1049 611 1083
+rect -611 987 -577 1049
+rect 577 987 611 1049
+rect -611 -1049 -577 -987
+rect 577 -1049 611 -987
+rect -611 -1083 -515 -1049
+rect 515 -1083 611 -1049
+<< psubdiffcont >>
+rect -515 1049 515 1083
+rect -611 -987 -577 987
+rect 577 -987 611 987
+rect -515 -1083 515 -1049
+<< poly >>
+rect -465 981 -399 997
+rect -465 947 -449 981
+rect -415 947 -399 981
+rect -465 931 -399 947
+rect -273 981 -207 997
+rect -273 947 -257 981
+rect -223 947 -207 981
+rect -447 909 -417 931
+rect -351 909 -321 935
+rect -273 931 -207 947
+rect -81 981 -15 997
+rect -81 947 -65 981
+rect -31 947 -15 981
+rect -255 909 -225 931
+rect -159 909 -129 935
+rect -81 931 -15 947
+rect 111 981 177 997
+rect 111 947 127 981
+rect 161 947 177 981
+rect -63 909 -33 931
+rect 33 909 63 935
+rect 111 931 177 947
+rect 303 981 369 997
+rect 303 947 319 981
+rect 353 947 369 981
+rect 129 909 159 931
+rect 225 909 255 935
+rect 303 931 369 947
+rect 321 909 351 931
+rect 417 909 447 935
+rect -447 83 -417 109
+rect -351 87 -321 109
+rect -369 71 -303 87
+rect -255 83 -225 109
+rect -159 87 -129 109
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -63 83 -33 109
+rect 33 87 63 109
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 129 83 159 109
+rect 225 87 255 109
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 321 83 351 109
+rect 417 87 447 109
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -447 -109 -417 -83
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -351 -109 -321 -87
+rect -255 -109 -225 -83
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -159 -109 -129 -87
+rect -63 -109 -33 -83
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 33 -109 63 -87
+rect 129 -109 159 -83
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 225 -109 255 -87
+rect 321 -109 351 -83
+rect 399 -87 465 -71
+rect 417 -109 447 -87
+rect -447 -931 -417 -909
+rect -465 -947 -399 -931
+rect -351 -935 -321 -909
+rect -255 -931 -225 -909
+rect -465 -981 -449 -947
+rect -415 -981 -399 -947
+rect -465 -997 -399 -981
+rect -273 -947 -207 -931
+rect -159 -935 -129 -909
+rect -63 -931 -33 -909
+rect -273 -981 -257 -947
+rect -223 -981 -207 -947
+rect -273 -997 -207 -981
+rect -81 -947 -15 -931
+rect 33 -935 63 -909
+rect 129 -931 159 -909
+rect -81 -981 -65 -947
+rect -31 -981 -15 -947
+rect -81 -997 -15 -981
+rect 111 -947 177 -931
+rect 225 -935 255 -909
+rect 321 -931 351 -909
+rect 111 -981 127 -947
+rect 161 -981 177 -947
+rect 111 -997 177 -981
+rect 303 -947 369 -931
+rect 417 -935 447 -909
+rect 303 -981 319 -947
+rect 353 -981 369 -947
+rect 303 -997 369 -981
+<< polycont >>
+rect -449 947 -415 981
+rect -257 947 -223 981
+rect -65 947 -31 981
+rect 127 947 161 981
+rect 319 947 353 981
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -449 -981 -415 -947
+rect -257 -981 -223 -947
+rect -65 -981 -31 -947
+rect 127 -981 161 -947
+rect 319 -981 353 -947
+<< locali >>
+rect -611 1049 -515 1083
+rect 515 1049 611 1083
+rect -611 987 -577 1049
+rect 577 987 611 1049
+rect -465 947 -449 981
+rect -415 947 -399 981
+rect -273 947 -257 981
+rect -223 947 -207 981
+rect -81 947 -65 981
+rect -31 947 -15 981
+rect 111 947 127 981
+rect 161 947 177 981
+rect 303 947 319 981
+rect 353 947 369 981
+rect -497 897 -463 913
+rect -497 105 -463 121
+rect -401 897 -367 913
+rect -401 105 -367 121
+rect -305 897 -271 913
+rect -305 105 -271 121
+rect -209 897 -175 913
+rect -209 105 -175 121
+rect -113 897 -79 913
+rect -113 105 -79 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 79 897 113 913
+rect 79 105 113 121
+rect 175 897 209 913
+rect 175 105 209 121
+rect 271 897 305 913
+rect 271 105 305 121
+rect 367 897 401 913
+rect 367 105 401 121
+rect 463 897 497 913
+rect 463 105 497 121
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect -497 -121 -463 -105
+rect -497 -913 -463 -897
+rect -401 -121 -367 -105
+rect -401 -913 -367 -897
+rect -305 -121 -271 -105
+rect -305 -913 -271 -897
+rect -209 -121 -175 -105
+rect -209 -913 -175 -897
+rect -113 -121 -79 -105
+rect -113 -913 -79 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 79 -121 113 -105
+rect 79 -913 113 -897
+rect 175 -121 209 -105
+rect 175 -913 209 -897
+rect 271 -121 305 -105
+rect 271 -913 305 -897
+rect 367 -121 401 -105
+rect 367 -913 401 -897
+rect 463 -121 497 -105
+rect 463 -913 497 -897
+rect -465 -981 -449 -947
+rect -415 -981 -399 -947
+rect -273 -981 -257 -947
+rect -223 -981 -207 -947
+rect -81 -981 -65 -947
+rect -31 -981 -15 -947
+rect 111 -981 127 -947
+rect 161 -981 177 -947
+rect 303 -981 319 -947
+rect 353 -981 369 -947
+rect -611 -1049 -577 -987
+rect 577 -1049 611 -987
+rect -611 -1083 -515 -1049
+rect 515 -1083 611 -1049
+<< viali >>
+rect -449 947 -415 981
+rect -257 947 -223 981
+rect -65 947 -31 981
+rect 127 947 161 981
+rect 319 947 353 981
+rect -497 121 -463 897
+rect -401 121 -367 897
+rect -305 121 -271 897
+rect -209 121 -175 897
+rect -113 121 -79 897
+rect -17 121 17 897
+rect 79 121 113 897
+rect 175 121 209 897
+rect 271 121 305 897
+rect 367 121 401 897
+rect 463 121 497 897
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -497 -897 -463 -121
+rect -401 -897 -367 -121
+rect -305 -897 -271 -121
+rect -209 -897 -175 -121
+rect -113 -897 -79 -121
+rect -17 -897 17 -121
+rect 79 -897 113 -121
+rect 175 -897 209 -121
+rect 271 -897 305 -121
+rect 367 -897 401 -121
+rect 463 -897 497 -121
+rect -449 -981 -415 -947
+rect -257 -981 -223 -947
+rect -65 -981 -31 -947
+rect 127 -981 161 -947
+rect 319 -981 353 -947
+<< metal1 >>
+rect -461 981 -403 987
+rect -461 947 -449 981
+rect -415 947 -403 981
+rect -461 941 -403 947
+rect -269 981 -211 987
+rect -269 947 -257 981
+rect -223 947 -211 981
+rect -269 941 -211 947
+rect -77 981 -19 987
+rect -77 947 -65 981
+rect -31 947 -19 981
+rect -77 941 -19 947
+rect 115 981 173 987
+rect 115 947 127 981
+rect 161 947 173 981
+rect 115 941 173 947
+rect 307 981 365 987
+rect 307 947 319 981
+rect 353 947 365 981
+rect 307 941 365 947
+rect -503 897 -457 909
+rect -503 121 -497 897
+rect -463 121 -457 897
+rect -503 109 -457 121
+rect -407 897 -361 909
+rect -407 121 -401 897
+rect -367 121 -361 897
+rect -407 109 -361 121
+rect -311 897 -265 909
+rect -311 121 -305 897
+rect -271 121 -265 897
+rect -311 109 -265 121
+rect -215 897 -169 909
+rect -215 121 -209 897
+rect -175 121 -169 897
+rect -215 109 -169 121
+rect -119 897 -73 909
+rect -119 121 -113 897
+rect -79 121 -73 897
+rect -119 109 -73 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 73 897 119 909
+rect 73 121 79 897
+rect 113 121 119 897
+rect 73 109 119 121
+rect 169 897 215 909
+rect 169 121 175 897
+rect 209 121 215 897
+rect 169 109 215 121
+rect 265 897 311 909
+rect 265 121 271 897
+rect 305 121 311 897
+rect 265 109 311 121
+rect 361 897 407 909
+rect 361 121 367 897
+rect 401 121 407 897
+rect 361 109 407 121
+rect 457 897 503 909
+rect 457 121 463 897
+rect 497 121 503 897
+rect 457 109 503 121
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect -503 -121 -457 -109
+rect -503 -897 -497 -121
+rect -463 -897 -457 -121
+rect -503 -909 -457 -897
+rect -407 -121 -361 -109
+rect -407 -897 -401 -121
+rect -367 -897 -361 -121
+rect -407 -909 -361 -897
+rect -311 -121 -265 -109
+rect -311 -897 -305 -121
+rect -271 -897 -265 -121
+rect -311 -909 -265 -897
+rect -215 -121 -169 -109
+rect -215 -897 -209 -121
+rect -175 -897 -169 -121
+rect -215 -909 -169 -897
+rect -119 -121 -73 -109
+rect -119 -897 -113 -121
+rect -79 -897 -73 -121
+rect -119 -909 -73 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 73 -121 119 -109
+rect 73 -897 79 -121
+rect 113 -897 119 -121
+rect 73 -909 119 -897
+rect 169 -121 215 -109
+rect 169 -897 175 -121
+rect 209 -897 215 -121
+rect 169 -909 215 -897
+rect 265 -121 311 -109
+rect 265 -897 271 -121
+rect 305 -897 311 -121
+rect 265 -909 311 -897
+rect 361 -121 407 -109
+rect 361 -897 367 -121
+rect 401 -897 407 -121
+rect 361 -909 407 -897
+rect 457 -121 503 -109
+rect 457 -897 463 -121
+rect 497 -897 503 -121
+rect 457 -909 503 -897
+rect -461 -947 -403 -941
+rect -461 -981 -449 -947
+rect -415 -981 -403 -947
+rect -461 -987 -403 -981
+rect -269 -947 -211 -941
+rect -269 -981 -257 -947
+rect -223 -981 -211 -947
+rect -269 -987 -211 -981
+rect -77 -947 -19 -941
+rect -77 -981 -65 -947
+rect -31 -981 -19 -947
+rect -77 -987 -19 -981
+rect 115 -947 173 -941
+rect 115 -981 127 -947
+rect 161 -981 173 -947
+rect 115 -987 173 -981
+rect 307 -947 365 -941
+rect 307 -981 319 -947
+rect 353 -981 365 -947
+rect 307 -987 365 -981
+<< properties >>
+string FIXED_BBOX -594 -1066 594 1066
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 0.150 m 2 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.ext b/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.ext
new file mode 100644
index 0000000..559cace
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.ext
@@ -0,0 +1,28 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_2487_n400#" 1962 305.408 2487 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1229_n400#" 1962 23.9992 1229 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n400#" 1962 23.9992 -29 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1287_n400#" 1962 23.9992 -1287 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n2545_n400#" 1962 305.408 -2545 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1287_n488#" 996 2978.45 1287 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n488#" 996 2917.06 29 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n488#" 996 2917.06 -1229 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n2487_n488#" 996 2978.96 -2487 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n2647_n574#" 0 0 -2647 -574 ppd 0 0 0 0 0 0 0 0 0 0 433432 25496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 433432 25496 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n400#" "a_n1287_n400#" 42.8401
+cap "a_n1229_n488#" "a_29_n488#" 135.85
+cap "a_n1229_n488#" "a_n2487_n488#" 135.85
+cap "a_29_n488#" "a_1287_n488#" 135.85
+cap "a_n2545_n400#" "a_n1287_n400#" 42.8401
+cap "a_1229_n400#" "a_n29_n400#" 42.8401
+cap "a_2487_n400#" "a_1229_n400#" 42.8401
+device msubckt sky130_fd_pr__nfet_01v8 1287 -400 1288 -399 l=1200 w=800 "a_n2647_n574#" "a_1287_n488#" 2400 0 "a_1229_n400#" 800 0 "a_2487_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -400 30 -399 l=1200 w=800 "a_n2647_n574#" "a_29_n488#" 2400 0 "a_n29_n400#" 800 0 "a_1229_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -1229 -400 -1228 -399 l=1200 w=800 "a_n2647_n574#" "a_n1229_n488#" 2400 0 "a_n1287_n400#" 800 0 "a_n29_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -2487 -400 -2486 -399 l=1200 w=800 "a_n2647_n574#" "a_n2487_n488#" 2400 0 "a_n2545_n400#" 800 0 "a_n1287_n400#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.mag b/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.mag
new file mode 100644
index 0000000..c0b9367
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_834VMG.mag
@@ -0,0 +1,202 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -2683 -610 2683 610
+<< nmos >>
+rect -2487 -400 -1287 400
+rect -1229 -400 -29 400
+rect 29 -400 1229 400
+rect 1287 -400 2487 400
+<< ndiff >>
+rect -2545 388 -2487 400
+rect -2545 -388 -2533 388
+rect -2499 -388 -2487 388
+rect -2545 -400 -2487 -388
+rect -1287 388 -1229 400
+rect -1287 -388 -1275 388
+rect -1241 -388 -1229 388
+rect -1287 -400 -1229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 1229 388 1287 400
+rect 1229 -388 1241 388
+rect 1275 -388 1287 388
+rect 1229 -400 1287 -388
+rect 2487 388 2545 400
+rect 2487 -388 2499 388
+rect 2533 -388 2545 388
+rect 2487 -400 2545 -388
+<< ndiffc >>
+rect -2533 -388 -2499 388
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+rect 2499 -388 2533 388
+<< psubdiff >>
+rect -2647 540 -2551 574
+rect 2551 540 2647 574
+rect -2647 478 -2613 540
+rect 2613 478 2647 540
+rect -2647 -540 -2613 -478
+rect 2613 -540 2647 -478
+rect -2647 -574 -2551 -540
+rect 2551 -574 2647 -540
+<< psubdiffcont >>
+rect -2551 540 2551 574
+rect -2647 -478 -2613 478
+rect 2613 -478 2647 478
+rect -2551 -574 2551 -540
+<< poly >>
+rect -2487 472 -1287 488
+rect -2487 438 -2471 472
+rect -1303 438 -1287 472
+rect -2487 400 -1287 438
+rect -1229 472 -29 488
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect -1229 400 -29 438
+rect 29 472 1229 488
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect 29 400 1229 438
+rect 1287 472 2487 488
+rect 1287 438 1303 472
+rect 2471 438 2487 472
+rect 1287 400 2487 438
+rect -2487 -438 -1287 -400
+rect -2487 -472 -2471 -438
+rect -1303 -472 -1287 -438
+rect -2487 -488 -1287 -472
+rect -1229 -438 -29 -400
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect -1229 -488 -29 -472
+rect 29 -438 1229 -400
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect 29 -488 1229 -472
+rect 1287 -438 2487 -400
+rect 1287 -472 1303 -438
+rect 2471 -472 2487 -438
+rect 1287 -488 2487 -472
+<< polycont >>
+rect -2471 438 -1303 472
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect 1303 438 2471 472
+rect -2471 -472 -1303 -438
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+rect 1303 -472 2471 -438
+<< locali >>
+rect -2647 540 -2551 574
+rect 2551 540 2647 574
+rect -2647 478 -2613 540
+rect 2613 478 2647 540
+rect -2487 438 -2471 472
+rect -1303 438 -1287 472
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect 1287 438 1303 472
+rect 2471 438 2487 472
+rect -2533 388 -2499 404
+rect -2533 -404 -2499 -388
+rect -1275 388 -1241 404
+rect -1275 -404 -1241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 1241 388 1275 404
+rect 1241 -404 1275 -388
+rect 2499 388 2533 404
+rect 2499 -404 2533 -388
+rect -2487 -472 -2471 -438
+rect -1303 -472 -1287 -438
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect 1287 -472 1303 -438
+rect 2471 -472 2487 -438
+rect -2647 -540 -2613 -478
+rect 2613 -540 2647 -478
+rect -2647 -574 -2551 -540
+rect 2551 -574 2647 -540
+<< viali >>
+rect -2471 438 -1303 472
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect 1303 438 2471 472
+rect -2533 -388 -2499 388
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+rect 2499 -388 2533 388
+rect -2471 -472 -1303 -438
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+rect 1303 -472 2471 -438
+<< metal1 >>
+rect -2483 472 -1291 478
+rect -2483 438 -2471 472
+rect -1303 438 -1291 472
+rect -2483 432 -1291 438
+rect -1225 472 -33 478
+rect -1225 438 -1213 472
+rect -45 438 -33 472
+rect -1225 432 -33 438
+rect 33 472 1225 478
+rect 33 438 45 472
+rect 1213 438 1225 472
+rect 33 432 1225 438
+rect 1291 472 2483 478
+rect 1291 438 1303 472
+rect 2471 438 2483 472
+rect 1291 432 2483 438
+rect -2539 388 -2493 400
+rect -2539 -388 -2533 388
+rect -2499 -388 -2493 388
+rect -2539 -400 -2493 -388
+rect -1281 388 -1235 400
+rect -1281 -388 -1275 388
+rect -1241 -388 -1235 388
+rect -1281 -400 -1235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 1235 388 1281 400
+rect 1235 -388 1241 388
+rect 1275 -388 1281 388
+rect 1235 -400 1281 -388
+rect 2493 388 2539 400
+rect 2493 -388 2499 388
+rect 2533 -388 2539 388
+rect 2493 -400 2539 -388
+rect -2483 -438 -1291 -432
+rect -2483 -472 -2471 -438
+rect -1303 -472 -1291 -438
+rect -2483 -478 -1291 -472
+rect -1225 -438 -33 -432
+rect -1225 -472 -1213 -438
+rect -45 -472 -33 -438
+rect -1225 -478 -33 -472
+rect 33 -438 1225 -432
+rect 33 -472 45 -438
+rect 1213 -472 1225 -438
+rect 33 -478 1225 -472
+rect 1291 -438 2483 -432
+rect 1291 -472 1303 -438
+rect 2471 -472 2483 -438
+rect 1291 -478 2483 -472
+<< properties >>
+string FIXED_BBOX -2630 -557 2630 557
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 1 nf 4 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_D34VMW.mag b/mag/isource/sky130_fd_pr__nfet_01v8_D34VMW.mag
new file mode 100644
index 0000000..889c2d2
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_D34VMW.mag
@@ -0,0 +1,90 @@
+magic
+tech sky130A
+timestamp 1645462850
+<< pwell >>
+rect -398 -305 398 305
+<< nmos >>
+rect -300 -200 300 200
+<< ndiff >>
+rect -329 194 -300 200
+rect -329 -194 -323 194
+rect -306 -194 -300 194
+rect -329 -200 -300 -194
+rect 300 194 329 200
+rect 300 -194 306 194
+rect 323 -194 329 194
+rect 300 -200 329 -194
+<< ndiffc >>
+rect -323 -194 -306 194
+rect 306 -194 323 194
+<< psubdiff >>
+rect -380 270 -332 287
+rect 332 270 380 287
+rect -380 239 -363 270
+rect 363 239 380 270
+rect -380 -270 -363 -239
+rect 363 -270 380 -239
+rect -380 -287 -332 -270
+rect 332 -287 380 -270
+<< psubdiffcont >>
+rect -332 270 332 287
+rect -380 -239 -363 239
+rect 363 -239 380 239
+rect -332 -287 332 -270
+<< poly >>
+rect -300 236 300 244
+rect -300 219 -292 236
+rect 292 219 300 236
+rect -300 200 300 219
+rect -300 -219 300 -200
+rect -300 -236 -292 -219
+rect 292 -236 300 -219
+rect -300 -244 300 -236
+<< polycont >>
+rect -292 219 292 236
+rect -292 -236 292 -219
+<< locali >>
+rect -380 270 -332 287
+rect 332 270 380 287
+rect -380 239 -363 270
+rect 363 239 380 270
+rect -300 219 -292 236
+rect 292 219 300 236
+rect -323 194 -306 202
+rect -323 -202 -306 -194
+rect 306 194 323 202
+rect 306 -202 323 -194
+rect -300 -236 -292 -219
+rect 292 -236 300 -219
+rect -380 -270 -363 -239
+rect 363 -270 380 -239
+rect -380 -287 -332 -270
+rect 332 -287 380 -270
+<< viali >>
+rect -292 219 292 236
+rect -323 -194 -306 194
+rect 306 -194 323 194
+rect -292 -236 292 -219
+<< metal1 >>
+rect -298 236 298 239
+rect -298 219 -292 236
+rect 292 219 298 236
+rect -298 216 298 219
+rect -326 194 -303 200
+rect -326 -194 -323 194
+rect -306 -194 -303 194
+rect -326 -200 -303 -194
+rect 303 194 326 200
+rect 303 -194 306 194
+rect 323 -194 326 194
+rect 303 -200 326 -194
+rect -298 -219 298 -216
+rect -298 -236 -292 -219
+rect 292 -236 298 -219
+rect -298 -239 298 -236
+<< properties >>
+string FIXED_BBOX -371 -278 371 278
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_EDB9KC.mag b/mag/isource/sky130_fd_pr__nfet_01v8_EDB9KC.mag
new file mode 100644
index 0000000..2d220ec
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_EDB9KC.mag
@@ -0,0 +1,100 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645632279
+<< error_p >>
+rect -29 114 29 120
+rect -29 80 -17 114
+rect -29 74 29 80
+rect -29 -80 29 -74
+rect -29 -114 -17 -80
+rect -29 -120 29 -114
+<< pwell >>
+rect -211 -252 211 252
+<< nmos >>
+rect -15 -42 15 42
+<< ndiff >>
+rect -73 30 -15 42
+rect -73 -30 -61 30
+rect -27 -30 -15 30
+rect -73 -42 -15 -30
+rect 15 30 73 42
+rect 15 -30 27 30
+rect 61 -30 73 30
+rect 15 -42 73 -30
+<< ndiffc >>
+rect -61 -30 -27 30
+rect 27 -30 61 30
+<< psubdiff >>
+rect -175 182 -79 216
+rect 79 182 175 216
+rect -175 120 -141 182
+rect 141 120 175 182
+rect -175 -182 -141 -120
+rect 141 -182 175 -120
+rect -175 -216 -79 -182
+rect 79 -216 175 -182
+<< psubdiffcont >>
+rect -79 182 79 216
+rect -175 -120 -141 120
+rect 141 -120 175 120
+rect -79 -216 79 -182
+<< poly >>
+rect -33 114 33 130
+rect -33 80 -17 114
+rect 17 80 33 114
+rect -33 64 33 80
+rect -15 42 15 64
+rect -15 -64 15 -42
+rect -33 -80 33 -64
+rect -33 -114 -17 -80
+rect 17 -114 33 -80
+rect -33 -130 33 -114
+<< polycont >>
+rect -17 80 17 114
+rect -17 -114 17 -80
+<< locali >>
+rect -175 182 -79 216
+rect 79 182 175 216
+rect -175 120 -141 182
+rect 141 120 175 182
+rect -33 80 -17 114
+rect 17 80 33 114
+rect -61 30 -27 46
+rect -61 -46 -27 -30
+rect 27 30 61 46
+rect 27 -46 61 -30
+rect -33 -114 -17 -80
+rect 17 -114 33 -80
+rect -175 -182 -141 -120
+rect 141 -182 175 -120
+rect -175 -216 -79 -182
+rect 79 -216 175 -182
+<< viali >>
+rect -17 80 17 114
+rect -61 -30 -27 30
+rect 27 -30 61 30
+rect -17 -114 17 -80
+<< metal1 >>
+rect -29 114 29 120
+rect -29 80 -17 114
+rect 17 80 29 114
+rect -29 74 29 80
+rect -67 30 -21 42
+rect -67 -30 -61 30
+rect -27 -30 -21 30
+rect -67 -42 -21 -30
+rect 21 30 67 42
+rect 21 -30 27 30
+rect 61 -30 67 30
+rect 21 -42 67 -30
+rect -29 -80 29 -74
+rect -29 -114 -17 -80
+rect 17 -114 29 -80
+rect -29 -120 29 -114
+<< properties >>
+string FIXED_BBOX -158 -199 158 199
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 0.420 l 0.150 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.ext b/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.ext
new file mode 100644
index 0000000..3249733
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.ext
@@ -0,0 +1,58 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_6261_n400#" 1962 305.408 6261 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_5003_n400#" 1962 23.9992 5003 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_3745_n400#" 1962 23.9992 3745 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_2487_n400#" 1962 23.9992 2487 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1229_n400#" 1962 23.9992 1229 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n400#" 1962 23.9992 -29 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1287_n400#" 1962 23.9992 -1287 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n2545_n400#" 1962 23.9992 -2545 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n3803_n400#" 1962 23.9992 -3803 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n5061_n400#" 1962 23.9992 -5061 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n6319_n400#" 1962 305.408 -6319 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_5061_n488#" 996 2978.45 5061 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_3803_n488#" 996 2917.06 3803 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_2545_n488#" 996 2917.06 2545 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_1287_n488#" 996 2917.06 1287 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n488#" 996 2917.06 29 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n488#" 996 2917.06 -1229 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n2487_n488#" 996 2917.06 -2487 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n3745_n488#" 996 2917.06 -3745 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n5003_n488#" 996 2917.06 -5003 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n6261_n488#" 996 2978.96 -6261 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n6421_n574#" 0 0 -6421 -574 ppd 0 0 0 0 0 0 0 0 0 0 946696 55688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 946696 55688 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_2487_n400#" "a_3745_n400#" 42.8401
+cap "a_5003_n400#" "a_6261_n400#" 42.8401
+cap "a_n3803_n400#" "a_n2545_n400#" 42.8401
+cap "a_n3803_n400#" "a_n5061_n400#" 42.8401
+cap "a_1287_n488#" "a_2545_n488#" 135.85
+cap "a_n2487_n488#" "a_n3745_n488#" 135.85
+cap "a_3803_n488#" "a_5061_n488#" 135.85
+cap "a_n5003_n488#" "a_n3745_n488#" 135.85
+cap "a_5003_n400#" "a_3745_n400#" 42.8401
+cap "a_29_n488#" "a_n1229_n488#" 135.85
+cap "a_1229_n400#" "a_n29_n400#" 42.8401
+cap "a_29_n488#" "a_1287_n488#" 135.85
+cap "a_n2487_n488#" "a_n1229_n488#" 135.85
+cap "a_n6319_n400#" "a_n5061_n400#" 42.8401
+cap "a_n1287_n400#" "a_n29_n400#" 42.8401
+cap "a_3803_n488#" "a_2545_n488#" 135.85
+cap "a_n6261_n488#" "a_n5003_n488#" 135.85
+cap "a_n1287_n400#" "a_n2545_n400#" 42.8401
+cap "a_1229_n400#" "a_2487_n400#" 42.8401
+device msubckt sky130_fd_pr__nfet_01v8 5061 -400 5062 -399 l=1200 w=800 "a_n6421_n574#" "a_5061_n488#" 2400 0 "a_5003_n400#" 800 0 "a_6261_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 3803 -400 3804 -399 l=1200 w=800 "a_n6421_n574#" "a_3803_n488#" 2400 0 "a_3745_n400#" 800 0 "a_5003_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 2545 -400 2546 -399 l=1200 w=800 "a_n6421_n574#" "a_2545_n488#" 2400 0 "a_2487_n400#" 800 0 "a_3745_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 1287 -400 1288 -399 l=1200 w=800 "a_n6421_n574#" "a_1287_n488#" 2400 0 "a_1229_n400#" 800 0 "a_2487_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -400 30 -399 l=1200 w=800 "a_n6421_n574#" "a_29_n488#" 2400 0 "a_n29_n400#" 800 0 "a_1229_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -1229 -400 -1228 -399 l=1200 w=800 "a_n6421_n574#" "a_n1229_n488#" 2400 0 "a_n1287_n400#" 800 0 "a_n29_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -2487 -400 -2486 -399 l=1200 w=800 "a_n6421_n574#" "a_n2487_n488#" 2400 0 "a_n2545_n400#" 800 0 "a_n1287_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -3745 -400 -3744 -399 l=1200 w=800 "a_n6421_n574#" "a_n3745_n488#" 2400 0 "a_n3803_n400#" 800 0 "a_n2545_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -5003 -400 -5002 -399 l=1200 w=800 "a_n6421_n574#" "a_n5003_n488#" 2400 0 "a_n5061_n400#" 800 0 "a_n3803_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -6261 -400 -6260 -399 l=1200 w=800 "a_n6421_n574#" "a_n6261_n488#" 2400 0 "a_n6319_n400#" 800 0 "a_n5061_n400#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.mag b/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.mag
new file mode 100644
index 0000000..6f3aabd
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_HZ8P49.mag
@@ -0,0 +1,424 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -6457 -610 6457 610
+<< nmos >>
+rect -6261 -400 -5061 400
+rect -5003 -400 -3803 400
+rect -3745 -400 -2545 400
+rect -2487 -400 -1287 400
+rect -1229 -400 -29 400
+rect 29 -400 1229 400
+rect 1287 -400 2487 400
+rect 2545 -400 3745 400
+rect 3803 -400 5003 400
+rect 5061 -400 6261 400
+<< ndiff >>
+rect -6319 388 -6261 400
+rect -6319 -388 -6307 388
+rect -6273 -388 -6261 388
+rect -6319 -400 -6261 -388
+rect -5061 388 -5003 400
+rect -5061 -388 -5049 388
+rect -5015 -388 -5003 388
+rect -5061 -400 -5003 -388
+rect -3803 388 -3745 400
+rect -3803 -388 -3791 388
+rect -3757 -388 -3745 388
+rect -3803 -400 -3745 -388
+rect -2545 388 -2487 400
+rect -2545 -388 -2533 388
+rect -2499 -388 -2487 388
+rect -2545 -400 -2487 -388
+rect -1287 388 -1229 400
+rect -1287 -388 -1275 388
+rect -1241 -388 -1229 388
+rect -1287 -400 -1229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 1229 388 1287 400
+rect 1229 -388 1241 388
+rect 1275 -388 1287 388
+rect 1229 -400 1287 -388
+rect 2487 388 2545 400
+rect 2487 -388 2499 388
+rect 2533 -388 2545 388
+rect 2487 -400 2545 -388
+rect 3745 388 3803 400
+rect 3745 -388 3757 388
+rect 3791 -388 3803 388
+rect 3745 -400 3803 -388
+rect 5003 388 5061 400
+rect 5003 -388 5015 388
+rect 5049 -388 5061 388
+rect 5003 -400 5061 -388
+rect 6261 388 6319 400
+rect 6261 -388 6273 388
+rect 6307 -388 6319 388
+rect 6261 -400 6319 -388
+<< ndiffc >>
+rect -6307 -388 -6273 388
+rect -5049 -388 -5015 388
+rect -3791 -388 -3757 388
+rect -2533 -388 -2499 388
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+rect 2499 -388 2533 388
+rect 3757 -388 3791 388
+rect 5015 -388 5049 388
+rect 6273 -388 6307 388
+<< psubdiff >>
+rect -6421 540 -6325 574
+rect 6325 540 6421 574
+rect -6421 478 -6387 540
+rect 6387 478 6421 540
+rect -6421 -540 -6387 -478
+rect 6387 -540 6421 -478
+rect -6421 -574 -6325 -540
+rect 6325 -574 6421 -540
+<< psubdiffcont >>
+rect -6325 540 6325 574
+rect -6421 -478 -6387 478
+rect 6387 -478 6421 478
+rect -6325 -574 6325 -540
+<< poly >>
+rect -6261 472 -5061 488
+rect -6261 438 -6245 472
+rect -5077 438 -5061 472
+rect -6261 400 -5061 438
+rect -5003 472 -3803 488
+rect -5003 438 -4987 472
+rect -3819 438 -3803 472
+rect -5003 400 -3803 438
+rect -3745 472 -2545 488
+rect -3745 438 -3729 472
+rect -2561 438 -2545 472
+rect -3745 400 -2545 438
+rect -2487 472 -1287 488
+rect -2487 438 -2471 472
+rect -1303 438 -1287 472
+rect -2487 400 -1287 438
+rect -1229 472 -29 488
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect -1229 400 -29 438
+rect 29 472 1229 488
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect 29 400 1229 438
+rect 1287 472 2487 488
+rect 1287 438 1303 472
+rect 2471 438 2487 472
+rect 1287 400 2487 438
+rect 2545 472 3745 488
+rect 2545 438 2561 472
+rect 3729 438 3745 472
+rect 2545 400 3745 438
+rect 3803 472 5003 488
+rect 3803 438 3819 472
+rect 4987 438 5003 472
+rect 3803 400 5003 438
+rect 5061 472 6261 488
+rect 5061 438 5077 472
+rect 6245 438 6261 472
+rect 5061 400 6261 438
+rect -6261 -438 -5061 -400
+rect -6261 -472 -6245 -438
+rect -5077 -472 -5061 -438
+rect -6261 -488 -5061 -472
+rect -5003 -438 -3803 -400
+rect -5003 -472 -4987 -438
+rect -3819 -472 -3803 -438
+rect -5003 -488 -3803 -472
+rect -3745 -438 -2545 -400
+rect -3745 -472 -3729 -438
+rect -2561 -472 -2545 -438
+rect -3745 -488 -2545 -472
+rect -2487 -438 -1287 -400
+rect -2487 -472 -2471 -438
+rect -1303 -472 -1287 -438
+rect -2487 -488 -1287 -472
+rect -1229 -438 -29 -400
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect -1229 -488 -29 -472
+rect 29 -438 1229 -400
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect 29 -488 1229 -472
+rect 1287 -438 2487 -400
+rect 1287 -472 1303 -438
+rect 2471 -472 2487 -438
+rect 1287 -488 2487 -472
+rect 2545 -438 3745 -400
+rect 2545 -472 2561 -438
+rect 3729 -472 3745 -438
+rect 2545 -488 3745 -472
+rect 3803 -438 5003 -400
+rect 3803 -472 3819 -438
+rect 4987 -472 5003 -438
+rect 3803 -488 5003 -472
+rect 5061 -438 6261 -400
+rect 5061 -472 5077 -438
+rect 6245 -472 6261 -438
+rect 5061 -488 6261 -472
+<< polycont >>
+rect -6245 438 -5077 472
+rect -4987 438 -3819 472
+rect -3729 438 -2561 472
+rect -2471 438 -1303 472
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect 1303 438 2471 472
+rect 2561 438 3729 472
+rect 3819 438 4987 472
+rect 5077 438 6245 472
+rect -6245 -472 -5077 -438
+rect -4987 -472 -3819 -438
+rect -3729 -472 -2561 -438
+rect -2471 -472 -1303 -438
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+rect 1303 -472 2471 -438
+rect 2561 -472 3729 -438
+rect 3819 -472 4987 -438
+rect 5077 -472 6245 -438
+<< locali >>
+rect -6421 540 -6325 574
+rect 6325 540 6421 574
+rect -6421 478 -6387 540
+rect 6387 478 6421 540
+rect -6261 438 -6245 472
+rect -5077 438 -5061 472
+rect -5003 438 -4987 472
+rect -3819 438 -3803 472
+rect -3745 438 -3729 472
+rect -2561 438 -2545 472
+rect -2487 438 -2471 472
+rect -1303 438 -1287 472
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect 1287 438 1303 472
+rect 2471 438 2487 472
+rect 2545 438 2561 472
+rect 3729 438 3745 472
+rect 3803 438 3819 472
+rect 4987 438 5003 472
+rect 5061 438 5077 472
+rect 6245 438 6261 472
+rect -6307 388 -6273 404
+rect -6307 -404 -6273 -388
+rect -5049 388 -5015 404
+rect -5049 -404 -5015 -388
+rect -3791 388 -3757 404
+rect -3791 -404 -3757 -388
+rect -2533 388 -2499 404
+rect -2533 -404 -2499 -388
+rect -1275 388 -1241 404
+rect -1275 -404 -1241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 1241 388 1275 404
+rect 1241 -404 1275 -388
+rect 2499 388 2533 404
+rect 2499 -404 2533 -388
+rect 3757 388 3791 404
+rect 3757 -404 3791 -388
+rect 5015 388 5049 404
+rect 5015 -404 5049 -388
+rect 6273 388 6307 404
+rect 6273 -404 6307 -388
+rect -6261 -472 -6245 -438
+rect -5077 -472 -5061 -438
+rect -5003 -472 -4987 -438
+rect -3819 -472 -3803 -438
+rect -3745 -472 -3729 -438
+rect -2561 -472 -2545 -438
+rect -2487 -472 -2471 -438
+rect -1303 -472 -1287 -438
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect 1287 -472 1303 -438
+rect 2471 -472 2487 -438
+rect 2545 -472 2561 -438
+rect 3729 -472 3745 -438
+rect 3803 -472 3819 -438
+rect 4987 -472 5003 -438
+rect 5061 -472 5077 -438
+rect 6245 -472 6261 -438
+rect -6421 -540 -6387 -478
+rect 6387 -540 6421 -478
+rect -6421 -574 -6325 -540
+rect 6325 -574 6421 -540
+<< viali >>
+rect -6245 438 -5077 472
+rect -4987 438 -3819 472
+rect -3729 438 -2561 472
+rect -2471 438 -1303 472
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect 1303 438 2471 472
+rect 2561 438 3729 472
+rect 3819 438 4987 472
+rect 5077 438 6245 472
+rect -6307 -388 -6273 388
+rect -5049 -388 -5015 388
+rect -3791 -388 -3757 388
+rect -2533 -388 -2499 388
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+rect 2499 -388 2533 388
+rect 3757 -388 3791 388
+rect 5015 -388 5049 388
+rect 6273 -388 6307 388
+rect -6245 -472 -5077 -438
+rect -4987 -472 -3819 -438
+rect -3729 -472 -2561 -438
+rect -2471 -472 -1303 -438
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+rect 1303 -472 2471 -438
+rect 2561 -472 3729 -438
+rect 3819 -472 4987 -438
+rect 5077 -472 6245 -438
+<< metal1 >>
+rect -6257 472 -5065 478
+rect -6257 438 -6245 472
+rect -5077 438 -5065 472
+rect -6257 432 -5065 438
+rect -4999 472 -3807 478
+rect -4999 438 -4987 472
+rect -3819 438 -3807 472
+rect -4999 432 -3807 438
+rect -3741 472 -2549 478
+rect -3741 438 -3729 472
+rect -2561 438 -2549 472
+rect -3741 432 -2549 438
+rect -2483 472 -1291 478
+rect -2483 438 -2471 472
+rect -1303 438 -1291 472
+rect -2483 432 -1291 438
+rect -1225 472 -33 478
+rect -1225 438 -1213 472
+rect -45 438 -33 472
+rect -1225 432 -33 438
+rect 33 472 1225 478
+rect 33 438 45 472
+rect 1213 438 1225 472
+rect 33 432 1225 438
+rect 1291 472 2483 478
+rect 1291 438 1303 472
+rect 2471 438 2483 472
+rect 1291 432 2483 438
+rect 2549 472 3741 478
+rect 2549 438 2561 472
+rect 3729 438 3741 472
+rect 2549 432 3741 438
+rect 3807 472 4999 478
+rect 3807 438 3819 472
+rect 4987 438 4999 472
+rect 3807 432 4999 438
+rect 5065 472 6257 478
+rect 5065 438 5077 472
+rect 6245 438 6257 472
+rect 5065 432 6257 438
+rect -6313 388 -6267 400
+rect -6313 -388 -6307 388
+rect -6273 -388 -6267 388
+rect -6313 -400 -6267 -388
+rect -5055 388 -5009 400
+rect -5055 -388 -5049 388
+rect -5015 -388 -5009 388
+rect -5055 -400 -5009 -388
+rect -3797 388 -3751 400
+rect -3797 -388 -3791 388
+rect -3757 -388 -3751 388
+rect -3797 -400 -3751 -388
+rect -2539 388 -2493 400
+rect -2539 -388 -2533 388
+rect -2499 -388 -2493 388
+rect -2539 -400 -2493 -388
+rect -1281 388 -1235 400
+rect -1281 -388 -1275 388
+rect -1241 -388 -1235 388
+rect -1281 -400 -1235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 1235 388 1281 400
+rect 1235 -388 1241 388
+rect 1275 -388 1281 388
+rect 1235 -400 1281 -388
+rect 2493 388 2539 400
+rect 2493 -388 2499 388
+rect 2533 -388 2539 388
+rect 2493 -400 2539 -388
+rect 3751 388 3797 400
+rect 3751 -388 3757 388
+rect 3791 -388 3797 388
+rect 3751 -400 3797 -388
+rect 5009 388 5055 400
+rect 5009 -388 5015 388
+rect 5049 -388 5055 388
+rect 5009 -400 5055 -388
+rect 6267 388 6313 400
+rect 6267 -388 6273 388
+rect 6307 -388 6313 388
+rect 6267 -400 6313 -388
+rect -6257 -438 -5065 -432
+rect -6257 -472 -6245 -438
+rect -5077 -472 -5065 -438
+rect -6257 -478 -5065 -472
+rect -4999 -438 -3807 -432
+rect -4999 -472 -4987 -438
+rect -3819 -472 -3807 -438
+rect -4999 -478 -3807 -472
+rect -3741 -438 -2549 -432
+rect -3741 -472 -3729 -438
+rect -2561 -472 -2549 -438
+rect -3741 -478 -2549 -472
+rect -2483 -438 -1291 -432
+rect -2483 -472 -2471 -438
+rect -1303 -472 -1291 -438
+rect -2483 -478 -1291 -472
+rect -1225 -438 -33 -432
+rect -1225 -472 -1213 -438
+rect -45 -472 -33 -438
+rect -1225 -478 -33 -472
+rect 33 -438 1225 -432
+rect 33 -472 45 -438
+rect 1213 -472 1225 -438
+rect 33 -478 1225 -472
+rect 1291 -438 2483 -432
+rect 1291 -472 1303 -438
+rect 2471 -472 2483 -438
+rect 1291 -478 2483 -472
+rect 2549 -438 3741 -432
+rect 2549 -472 2561 -438
+rect 3729 -472 3741 -438
+rect 2549 -478 3741 -472
+rect 3807 -438 4999 -432
+rect 3807 -472 3819 -438
+rect 4987 -472 4999 -438
+rect 3807 -478 4999 -472
+rect 5065 -438 6257 -432
+rect 5065 -472 5077 -438
+rect 6245 -472 6257 -438
+rect 5065 -478 6257 -472
+<< properties >>
+string FIXED_BBOX -6404 -557 6404 557
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_PJG2KG.mag b/mag/isource/sky130_fd_pr__nfet_01v8_PJG2KG.mag
new file mode 100644
index 0000000..a29c7ac
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_PJG2KG.mag
@@ -0,0 +1,90 @@
+magic
+tech sky130A
+timestamp 1645522756
+<< pwell >>
+rect -123 -205 123 205
+<< nmos >>
+rect -25 -100 25 100
+<< ndiff >>
+rect -54 94 -25 100
+rect -54 -94 -48 94
+rect -31 -94 -25 94
+rect -54 -100 -25 -94
+rect 25 94 54 100
+rect 25 -94 31 94
+rect 48 -94 54 94
+rect 25 -100 54 -94
+<< ndiffc >>
+rect -48 -94 -31 94
+rect 31 -94 48 94
+<< psubdiff >>
+rect -105 170 -57 187
+rect 57 170 105 187
+rect -105 139 -88 170
+rect 88 139 105 170
+rect -105 -170 -88 -139
+rect 88 -170 105 -139
+rect -105 -187 -57 -170
+rect 57 -187 105 -170
+<< psubdiffcont >>
+rect -57 170 57 187
+rect -105 -139 -88 139
+rect 88 -139 105 139
+rect -57 -187 57 -170
+<< poly >>
+rect -25 136 25 144
+rect -25 119 -17 136
+rect 17 119 25 136
+rect -25 100 25 119
+rect -25 -119 25 -100
+rect -25 -136 -17 -119
+rect 17 -136 25 -119
+rect -25 -144 25 -136
+<< polycont >>
+rect -17 119 17 136
+rect -17 -136 17 -119
+<< locali >>
+rect -105 170 -57 187
+rect 57 170 105 187
+rect -105 139 -88 170
+rect 88 139 105 170
+rect -25 119 -17 136
+rect 17 119 25 136
+rect -48 94 -31 102
+rect -48 -102 -31 -94
+rect 31 94 48 102
+rect 31 -102 48 -94
+rect -25 -136 -17 -119
+rect 17 -136 25 -119
+rect -105 -170 -88 -139
+rect 88 -170 105 -139
+rect -105 -187 -57 -170
+rect 57 -187 105 -170
+<< viali >>
+rect -17 119 17 136
+rect -48 -94 -31 94
+rect 31 -94 48 94
+rect -17 -136 17 -119
+<< metal1 >>
+rect -23 136 23 139
+rect -23 119 -17 136
+rect 17 119 23 136
+rect -23 116 23 119
+rect -51 94 -28 100
+rect -51 -94 -48 94
+rect -31 -94 -28 94
+rect -51 -100 -28 -94
+rect 28 94 51 100
+rect 28 -94 31 94
+rect 48 -94 51 94
+rect 28 -100 51 -94
+rect -23 -119 23 -116
+rect -23 -136 -17 -119
+rect 17 -136 23 -119
+rect -23 -139 23 -136
+<< properties >>
+string FIXED_BBOX -96 -178 96 178
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.ext b/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.ext
new file mode 100644
index 0000000..360d4d2
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.ext
@@ -0,0 +1,33 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_3116_n400#" 1962 305.408 3116 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1858_n400#" 1962 23.9992 1858 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_600_n400#" 1962 23.9992 600 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n658_n400#" 1962 23.9992 -658 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1916_n400#" 1962 23.9992 -1916 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n3174_n400#" 1962 305.408 -3174 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1916_n488#" 996 2978.45 1916 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_658_n488#" 996 2917.06 658 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n600_n488#" 996 2917.06 -600 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n1858_n488#" 996 2917.06 -1858 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n3116_n488#" 996 2978.96 -3116 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n3276_n574#" 0 0 -3276 -574 ppd 0 0 0 0 0 0 0 0 0 0 518976 30528 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 518976 30528 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n3116_n488#" "a_n1858_n488#" 135.85
+cap "a_n3174_n400#" "a_n1916_n400#" 42.8401
+cap "a_1916_n488#" "a_658_n488#" 135.85
+cap "a_n600_n488#" "a_658_n488#" 135.85
+cap "a_1858_n400#" "a_600_n400#" 42.8401
+cap "a_n600_n488#" "a_n1858_n488#" 135.85
+cap "a_n1916_n400#" "a_n658_n400#" 42.8401
+cap "a_1858_n400#" "a_3116_n400#" 42.8401
+cap "a_n658_n400#" "a_600_n400#" 42.8401
+device msubckt sky130_fd_pr__nfet_01v8 1916 -400 1917 -399 l=1200 w=800 "a_n3276_n574#" "a_1916_n488#" 2400 0 "a_1858_n400#" 800 0 "a_3116_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 658 -400 659 -399 l=1200 w=800 "a_n3276_n574#" "a_658_n488#" 2400 0 "a_600_n400#" 800 0 "a_1858_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -600 -400 -599 -399 l=1200 w=800 "a_n3276_n574#" "a_n600_n488#" 2400 0 "a_n658_n400#" 800 0 "a_600_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -1858 -400 -1857 -399 l=1200 w=800 "a_n3276_n574#" "a_n1858_n488#" 2400 0 "a_n1916_n400#" 800 0 "a_n658_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -3116 -400 -3115 -399 l=1200 w=800 "a_n3276_n574#" "a_n3116_n488#" 2400 0 "a_n3174_n400#" 800 0 "a_n1916_n400#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.mag b/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.mag
new file mode 100644
index 0000000..a5f9016
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_TV3VM6.mag
@@ -0,0 +1,238 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< pwell >>
+rect -1656 -305 1656 305
+<< nmos >>
+rect -1558 -200 -958 200
+rect -929 -200 -329 200
+rect -300 -200 300 200
+rect 329 -200 929 200
+rect 958 -200 1558 200
+<< ndiff >>
+rect -1587 194 -1558 200
+rect -1587 -194 -1581 194
+rect -1564 -194 -1558 194
+rect -1587 -200 -1558 -194
+rect -958 194 -929 200
+rect -958 -194 -952 194
+rect -935 -194 -929 194
+rect -958 -200 -929 -194
+rect -329 194 -300 200
+rect -329 -194 -323 194
+rect -306 -194 -300 194
+rect -329 -200 -300 -194
+rect 300 194 329 200
+rect 300 -194 306 194
+rect 323 -194 329 194
+rect 300 -200 329 -194
+rect 929 194 958 200
+rect 929 -194 935 194
+rect 952 -194 958 194
+rect 929 -200 958 -194
+rect 1558 194 1587 200
+rect 1558 -194 1564 194
+rect 1581 -194 1587 194
+rect 1558 -200 1587 -194
+<< ndiffc >>
+rect -1581 -194 -1564 194
+rect -952 -194 -935 194
+rect -323 -194 -306 194
+rect 306 -194 323 194
+rect 935 -194 952 194
+rect 1564 -194 1581 194
+<< psubdiff >>
+rect -1638 270 -1590 287
+rect 1590 270 1638 287
+rect -1638 239 -1621 270
+rect 1621 239 1638 270
+rect -1638 -270 -1621 -239
+rect 1621 -270 1638 -239
+rect -1638 -287 -1590 -270
+rect 1590 -287 1638 -270
+<< psubdiffcont >>
+rect -1590 270 1590 287
+rect -1638 -239 -1621 239
+rect 1621 -239 1638 239
+rect -1590 -287 1590 -270
+<< poly >>
+rect -1558 236 -958 244
+rect -1558 219 -1550 236
+rect -966 219 -958 236
+rect -1558 200 -958 219
+rect -929 236 -329 244
+rect -929 219 -921 236
+rect -337 219 -329 236
+rect -929 200 -329 219
+rect -300 236 300 244
+rect -300 219 -292 236
+rect 292 219 300 236
+rect -300 200 300 219
+rect 329 236 929 244
+rect 329 219 337 236
+rect 921 219 929 236
+rect 329 200 929 219
+rect 958 236 1558 244
+rect 958 219 966 236
+rect 1550 219 1558 236
+rect 958 200 1558 219
+rect -1558 -219 -958 -200
+rect -1558 -236 -1550 -219
+rect -966 -236 -958 -219
+rect -1558 -244 -958 -236
+rect -929 -219 -329 -200
+rect -929 -236 -921 -219
+rect -337 -236 -329 -219
+rect -929 -244 -329 -236
+rect -300 -219 300 -200
+rect -300 -236 -292 -219
+rect 292 -236 300 -219
+rect -300 -244 300 -236
+rect 329 -219 929 -200
+rect 329 -236 337 -219
+rect 921 -236 929 -219
+rect 329 -244 929 -236
+rect 958 -219 1558 -200
+rect 958 -236 966 -219
+rect 1550 -236 1558 -219
+rect 958 -244 1558 -236
+<< polycont >>
+rect -1550 219 -966 236
+rect -921 219 -337 236
+rect -292 219 292 236
+rect 337 219 921 236
+rect 966 219 1550 236
+rect -1550 -236 -966 -219
+rect -921 -236 -337 -219
+rect -292 -236 292 -219
+rect 337 -236 921 -219
+rect 966 -236 1550 -219
+<< locali >>
+rect -1638 270 -1590 287
+rect 1590 270 1638 287
+rect -1638 239 -1621 270
+rect 1621 239 1638 270
+rect -1558 219 -1550 236
+rect -966 219 -958 236
+rect -929 219 -921 236
+rect -337 219 -329 236
+rect -300 219 -292 236
+rect 292 219 300 236
+rect 329 219 337 236
+rect 921 219 929 236
+rect 958 219 966 236
+rect 1550 219 1558 236
+rect -1581 194 -1564 202
+rect -1581 -202 -1564 -194
+rect -952 194 -935 202
+rect -952 -202 -935 -194
+rect -323 194 -306 202
+rect -323 -202 -306 -194
+rect 306 194 323 202
+rect 306 -202 323 -194
+rect 935 194 952 202
+rect 935 -202 952 -194
+rect 1564 194 1581 202
+rect 1564 -202 1581 -194
+rect -1558 -236 -1550 -219
+rect -966 -236 -958 -219
+rect -929 -236 -921 -219
+rect -337 -236 -329 -219
+rect -300 -236 -292 -219
+rect 292 -236 300 -219
+rect 329 -236 337 -219
+rect 921 -236 929 -219
+rect 958 -236 966 -219
+rect 1550 -236 1558 -219
+rect -1638 -270 -1621 -239
+rect 1621 -270 1638 -239
+rect -1638 -287 -1590 -270
+rect 1590 -287 1638 -270
+<< viali >>
+rect -1550 219 -966 236
+rect -921 219 -337 236
+rect -292 219 292 236
+rect 337 219 921 236
+rect 966 219 1550 236
+rect -1581 -194 -1564 194
+rect -952 -194 -935 194
+rect -323 -194 -306 194
+rect 306 -194 323 194
+rect 935 -194 952 194
+rect 1564 -194 1581 194
+rect -1550 -236 -966 -219
+rect -921 -236 -337 -219
+rect -292 -236 292 -219
+rect 337 -236 921 -219
+rect 966 -236 1550 -219
+<< metal1 >>
+rect -1556 236 -960 239
+rect -1556 219 -1550 236
+rect -966 219 -960 236
+rect -1556 216 -960 219
+rect -927 236 -331 239
+rect -927 219 -921 236
+rect -337 219 -331 236
+rect -927 216 -331 219
+rect -298 236 298 239
+rect -298 219 -292 236
+rect 292 219 298 236
+rect -298 216 298 219
+rect 331 236 927 239
+rect 331 219 337 236
+rect 921 219 927 236
+rect 331 216 927 219
+rect 960 236 1556 239
+rect 960 219 966 236
+rect 1550 219 1556 236
+rect 960 216 1556 219
+rect -1584 194 -1561 200
+rect -1584 -194 -1581 194
+rect -1564 -194 -1561 194
+rect -1584 -200 -1561 -194
+rect -955 194 -932 200
+rect -955 -194 -952 194
+rect -935 -194 -932 194
+rect -955 -200 -932 -194
+rect -326 194 -303 200
+rect -326 -194 -323 194
+rect -306 -194 -303 194
+rect -326 -200 -303 -194
+rect 303 194 326 200
+rect 303 -194 306 194
+rect 323 -194 326 194
+rect 303 -200 326 -194
+rect 932 194 955 200
+rect 932 -194 935 194
+rect 952 -194 955 194
+rect 932 -200 955 -194
+rect 1561 194 1584 200
+rect 1561 -194 1564 194
+rect 1581 -194 1584 194
+rect 1561 -200 1584 -194
+rect -1556 -219 -960 -216
+rect -1556 -236 -1550 -219
+rect -966 -236 -960 -219
+rect -1556 -239 -960 -236
+rect -927 -219 -331 -216
+rect -927 -236 -921 -219
+rect -337 -236 -331 -219
+rect -927 -239 -331 -236
+rect -298 -219 298 -216
+rect -298 -236 -292 -219
+rect 292 -236 298 -219
+rect -298 -239 298 -236
+rect 331 -219 927 -216
+rect 331 -236 337 -219
+rect 921 -236 927 -219
+rect 331 -239 927 -236
+rect 960 -219 1556 -216
+rect 960 -236 966 -219
+rect 1550 -236 1556 -219
+rect 960 -239 1556 -236
+<< properties >>
+string FIXED_BBOX -1629 -278 1629 278
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 1 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.ext b/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.ext
new file mode 100644
index 0000000..10d0d4c
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.ext
@@ -0,0 +1,13 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_200_n50#" 248 59.5484 200 -50 ndif 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n258_n50#" 248 59.5484 -258 -50 ndif 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n200_n138#" 401 1129.56 -200 -138 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 110400 1352 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+substrate "a_n360_n224#" 0 0 -360 -224 ppd 0 0 0 0 0 0 0 0 0 0 74800 4400 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74800 4400 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n258_n50#" "a_200_n50#" 16.0884
+device msubckt sky130_fd_pr__nfet_01v8 -200 -50 -199 -49 l=400 w=100 "a_n360_n224#" "a_n200_n138#" 800 0 "a_n258_n50#" 100 0 "a_200_n50#" 100 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.mag b/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.mag
new file mode 100644
index 0000000..87afaf0
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_U3V43Z.mag
@@ -0,0 +1,90 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< pwell >>
+rect -198 -130 198 130
+<< nmos >>
+rect -100 -25 100 25
+<< ndiff >>
+rect -129 19 -100 25
+rect -129 -19 -123 19
+rect -106 -19 -100 19
+rect -129 -25 -100 -19
+rect 100 19 129 25
+rect 100 -19 106 19
+rect 123 -19 129 19
+rect 100 -25 129 -19
+<< ndiffc >>
+rect -123 -19 -106 19
+rect 106 -19 123 19
+<< psubdiff >>
+rect -180 95 -132 112
+rect 132 95 180 112
+rect -180 64 -163 95
+rect 163 64 180 95
+rect -180 -95 -163 -64
+rect 163 -95 180 -64
+rect -180 -112 -132 -95
+rect 132 -112 180 -95
+<< psubdiffcont >>
+rect -132 95 132 112
+rect -180 -64 -163 64
+rect 163 -64 180 64
+rect -132 -112 132 -95
+<< poly >>
+rect -100 61 100 69
+rect -100 44 -92 61
+rect 92 44 100 61
+rect -100 25 100 44
+rect -100 -44 100 -25
+rect -100 -61 -92 -44
+rect 92 -61 100 -44
+rect -100 -69 100 -61
+<< polycont >>
+rect -92 44 92 61
+rect -92 -61 92 -44
+<< locali >>
+rect -180 95 -132 112
+rect 132 95 180 112
+rect -180 64 -163 95
+rect 163 64 180 95
+rect -100 44 -92 61
+rect 92 44 100 61
+rect -123 19 -106 27
+rect -123 -27 -106 -19
+rect 106 19 123 27
+rect 106 -27 123 -19
+rect -100 -61 -92 -44
+rect 92 -61 100 -44
+rect -180 -95 -163 -64
+rect 163 -95 180 -64
+rect -180 -112 -132 -95
+rect 132 -112 180 -95
+<< viali >>
+rect -92 44 92 61
+rect -123 -19 -106 19
+rect 106 -19 123 19
+rect -92 -61 92 -44
+<< metal1 >>
+rect -98 61 98 64
+rect -98 44 -92 61
+rect 92 44 98 61
+rect -98 41 98 44
+rect -126 19 -103 25
+rect -126 -19 -123 19
+rect -106 -19 -103 19
+rect -126 -25 -103 -19
+rect 103 19 126 25
+rect 103 -19 106 19
+rect 123 -19 126 19
+rect 103 -25 126 -19
+rect -98 -44 98 -41
+rect -98 -61 -92 -44
+rect 92 -61 98 -44
+rect -98 -64 98 -61
+<< properties >>
+string FIXED_BBOX -171 -103 171 103
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 0.5 l 2 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_UQJKW6.mag b/mag/isource/sky130_fd_pr__nfet_01v8_UQJKW6.mag
new file mode 100644
index 0000000..006f67c
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_UQJKW6.mag
@@ -0,0 +1,830 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645462850
+<< pwell >>
+rect -3312 -2137 3312 2137
+<< nmos >>
+rect -3116 1127 -1916 1927
+rect -1858 1127 -658 1927
+rect -600 1127 600 1927
+rect 658 1127 1858 1927
+rect 1916 1127 3116 1927
+rect -3116 109 -1916 909
+rect -1858 109 -658 909
+rect -600 109 600 909
+rect 658 109 1858 909
+rect 1916 109 3116 909
+rect -3116 -909 -1916 -109
+rect -1858 -909 -658 -109
+rect -600 -909 600 -109
+rect 658 -909 1858 -109
+rect 1916 -909 3116 -109
+rect -3116 -1927 -1916 -1127
+rect -1858 -1927 -658 -1127
+rect -600 -1927 600 -1127
+rect 658 -1927 1858 -1127
+rect 1916 -1927 3116 -1127
+<< ndiff >>
+rect -3174 1915 -3116 1927
+rect -3174 1139 -3162 1915
+rect -3128 1139 -3116 1915
+rect -3174 1127 -3116 1139
+rect -1916 1915 -1858 1927
+rect -1916 1139 -1904 1915
+rect -1870 1139 -1858 1915
+rect -1916 1127 -1858 1139
+rect -658 1915 -600 1927
+rect -658 1139 -646 1915
+rect -612 1139 -600 1915
+rect -658 1127 -600 1139
+rect 600 1915 658 1927
+rect 600 1139 612 1915
+rect 646 1139 658 1915
+rect 600 1127 658 1139
+rect 1858 1915 1916 1927
+rect 1858 1139 1870 1915
+rect 1904 1139 1916 1915
+rect 1858 1127 1916 1139
+rect 3116 1915 3174 1927
+rect 3116 1139 3128 1915
+rect 3162 1139 3174 1915
+rect 3116 1127 3174 1139
+rect -3174 897 -3116 909
+rect -3174 121 -3162 897
+rect -3128 121 -3116 897
+rect -3174 109 -3116 121
+rect -1916 897 -1858 909
+rect -1916 121 -1904 897
+rect -1870 121 -1858 897
+rect -1916 109 -1858 121
+rect -658 897 -600 909
+rect -658 121 -646 897
+rect -612 121 -600 897
+rect -658 109 -600 121
+rect 600 897 658 909
+rect 600 121 612 897
+rect 646 121 658 897
+rect 600 109 658 121
+rect 1858 897 1916 909
+rect 1858 121 1870 897
+rect 1904 121 1916 897
+rect 1858 109 1916 121
+rect 3116 897 3174 909
+rect 3116 121 3128 897
+rect 3162 121 3174 897
+rect 3116 109 3174 121
+rect -3174 -121 -3116 -109
+rect -3174 -897 -3162 -121
+rect -3128 -897 -3116 -121
+rect -3174 -909 -3116 -897
+rect -1916 -121 -1858 -109
+rect -1916 -897 -1904 -121
+rect -1870 -897 -1858 -121
+rect -1916 -909 -1858 -897
+rect -658 -121 -600 -109
+rect -658 -897 -646 -121
+rect -612 -897 -600 -121
+rect -658 -909 -600 -897
+rect 600 -121 658 -109
+rect 600 -897 612 -121
+rect 646 -897 658 -121
+rect 600 -909 658 -897
+rect 1858 -121 1916 -109
+rect 1858 -897 1870 -121
+rect 1904 -897 1916 -121
+rect 1858 -909 1916 -897
+rect 3116 -121 3174 -109
+rect 3116 -897 3128 -121
+rect 3162 -897 3174 -121
+rect 3116 -909 3174 -897
+rect -3174 -1139 -3116 -1127
+rect -3174 -1915 -3162 -1139
+rect -3128 -1915 -3116 -1139
+rect -3174 -1927 -3116 -1915
+rect -1916 -1139 -1858 -1127
+rect -1916 -1915 -1904 -1139
+rect -1870 -1915 -1858 -1139
+rect -1916 -1927 -1858 -1915
+rect -658 -1139 -600 -1127
+rect -658 -1915 -646 -1139
+rect -612 -1915 -600 -1139
+rect -658 -1927 -600 -1915
+rect 600 -1139 658 -1127
+rect 600 -1915 612 -1139
+rect 646 -1915 658 -1139
+rect 600 -1927 658 -1915
+rect 1858 -1139 1916 -1127
+rect 1858 -1915 1870 -1139
+rect 1904 -1915 1916 -1139
+rect 1858 -1927 1916 -1915
+rect 3116 -1139 3174 -1127
+rect 3116 -1915 3128 -1139
+rect 3162 -1915 3174 -1139
+rect 3116 -1927 3174 -1915
+<< ndiffc >>
+rect -3162 1139 -3128 1915
+rect -1904 1139 -1870 1915
+rect -646 1139 -612 1915
+rect 612 1139 646 1915
+rect 1870 1139 1904 1915
+rect 3128 1139 3162 1915
+rect -3162 121 -3128 897
+rect -1904 121 -1870 897
+rect -646 121 -612 897
+rect 612 121 646 897
+rect 1870 121 1904 897
+rect 3128 121 3162 897
+rect -3162 -897 -3128 -121
+rect -1904 -897 -1870 -121
+rect -646 -897 -612 -121
+rect 612 -897 646 -121
+rect 1870 -897 1904 -121
+rect 3128 -897 3162 -121
+rect -3162 -1915 -3128 -1139
+rect -1904 -1915 -1870 -1139
+rect -646 -1915 -612 -1139
+rect 612 -1915 646 -1139
+rect 1870 -1915 1904 -1139
+rect 3128 -1915 3162 -1139
+<< psubdiff >>
+rect -3276 2067 -3180 2101
+rect 3180 2067 3276 2101
+rect -3276 2005 -3242 2067
+rect 3242 2005 3276 2067
+rect -3276 -2067 -3242 -2005
+rect 3242 -2067 3276 -2005
+rect -3276 -2101 -3180 -2067
+rect 3180 -2101 3276 -2067
+<< psubdiffcont >>
+rect -3180 2067 3180 2101
+rect -3276 -2005 -3242 2005
+rect 3242 -2005 3276 2005
+rect -3180 -2101 3180 -2067
+<< poly >>
+rect -3116 1999 -1916 2015
+rect -3116 1965 -3100 1999
+rect -1932 1965 -1916 1999
+rect -3116 1927 -1916 1965
+rect -1858 1999 -658 2015
+rect -1858 1965 -1842 1999
+rect -674 1965 -658 1999
+rect -1858 1927 -658 1965
+rect -600 1999 600 2015
+rect -600 1965 -584 1999
+rect 584 1965 600 1999
+rect -600 1927 600 1965
+rect 658 1999 1858 2015
+rect 658 1965 674 1999
+rect 1842 1965 1858 1999
+rect 658 1927 1858 1965
+rect 1916 1999 3116 2015
+rect 1916 1965 1932 1999
+rect 3100 1965 3116 1999
+rect 1916 1927 3116 1965
+rect -3116 1089 -1916 1127
+rect -3116 1055 -3100 1089
+rect -1932 1055 -1916 1089
+rect -3116 1039 -1916 1055
+rect -1858 1089 -658 1127
+rect -1858 1055 -1842 1089
+rect -674 1055 -658 1089
+rect -1858 1039 -658 1055
+rect -600 1089 600 1127
+rect -600 1055 -584 1089
+rect 584 1055 600 1089
+rect -600 1039 600 1055
+rect 658 1089 1858 1127
+rect 658 1055 674 1089
+rect 1842 1055 1858 1089
+rect 658 1039 1858 1055
+rect 1916 1089 3116 1127
+rect 1916 1055 1932 1089
+rect 3100 1055 3116 1089
+rect 1916 1039 3116 1055
+rect -3116 981 -1916 997
+rect -3116 947 -3100 981
+rect -1932 947 -1916 981
+rect -3116 909 -1916 947
+rect -1858 981 -658 997
+rect -1858 947 -1842 981
+rect -674 947 -658 981
+rect -1858 909 -658 947
+rect -600 981 600 997
+rect -600 947 -584 981
+rect 584 947 600 981
+rect -600 909 600 947
+rect 658 981 1858 997
+rect 658 947 674 981
+rect 1842 947 1858 981
+rect 658 909 1858 947
+rect 1916 981 3116 997
+rect 1916 947 1932 981
+rect 3100 947 3116 981
+rect 1916 909 3116 947
+rect -3116 71 -1916 109
+rect -3116 37 -3100 71
+rect -1932 37 -1916 71
+rect -3116 21 -1916 37
+rect -1858 71 -658 109
+rect -1858 37 -1842 71
+rect -674 37 -658 71
+rect -1858 21 -658 37
+rect -600 71 600 109
+rect -600 37 -584 71
+rect 584 37 600 71
+rect -600 21 600 37
+rect 658 71 1858 109
+rect 658 37 674 71
+rect 1842 37 1858 71
+rect 658 21 1858 37
+rect 1916 71 3116 109
+rect 1916 37 1932 71
+rect 3100 37 3116 71
+rect 1916 21 3116 37
+rect -3116 -37 -1916 -21
+rect -3116 -71 -3100 -37
+rect -1932 -71 -1916 -37
+rect -3116 -109 -1916 -71
+rect -1858 -37 -658 -21
+rect -1858 -71 -1842 -37
+rect -674 -71 -658 -37
+rect -1858 -109 -658 -71
+rect -600 -37 600 -21
+rect -600 -71 -584 -37
+rect 584 -71 600 -37
+rect -600 -109 600 -71
+rect 658 -37 1858 -21
+rect 658 -71 674 -37
+rect 1842 -71 1858 -37
+rect 658 -109 1858 -71
+rect 1916 -37 3116 -21
+rect 1916 -71 1932 -37
+rect 3100 -71 3116 -37
+rect 1916 -109 3116 -71
+rect -3116 -947 -1916 -909
+rect -3116 -981 -3100 -947
+rect -1932 -981 -1916 -947
+rect -3116 -997 -1916 -981
+rect -1858 -947 -658 -909
+rect -1858 -981 -1842 -947
+rect -674 -981 -658 -947
+rect -1858 -997 -658 -981
+rect -600 -947 600 -909
+rect -600 -981 -584 -947
+rect 584 -981 600 -947
+rect -600 -997 600 -981
+rect 658 -947 1858 -909
+rect 658 -981 674 -947
+rect 1842 -981 1858 -947
+rect 658 -997 1858 -981
+rect 1916 -947 3116 -909
+rect 1916 -981 1932 -947
+rect 3100 -981 3116 -947
+rect 1916 -997 3116 -981
+rect -3116 -1055 -1916 -1039
+rect -3116 -1089 -3100 -1055
+rect -1932 -1089 -1916 -1055
+rect -3116 -1127 -1916 -1089
+rect -1858 -1055 -658 -1039
+rect -1858 -1089 -1842 -1055
+rect -674 -1089 -658 -1055
+rect -1858 -1127 -658 -1089
+rect -600 -1055 600 -1039
+rect -600 -1089 -584 -1055
+rect 584 -1089 600 -1055
+rect -600 -1127 600 -1089
+rect 658 -1055 1858 -1039
+rect 658 -1089 674 -1055
+rect 1842 -1089 1858 -1055
+rect 658 -1127 1858 -1089
+rect 1916 -1055 3116 -1039
+rect 1916 -1089 1932 -1055
+rect 3100 -1089 3116 -1055
+rect 1916 -1127 3116 -1089
+rect -3116 -1965 -1916 -1927
+rect -3116 -1999 -3100 -1965
+rect -1932 -1999 -1916 -1965
+rect -3116 -2015 -1916 -1999
+rect -1858 -1965 -658 -1927
+rect -1858 -1999 -1842 -1965
+rect -674 -1999 -658 -1965
+rect -1858 -2015 -658 -1999
+rect -600 -1965 600 -1927
+rect -600 -1999 -584 -1965
+rect 584 -1999 600 -1965
+rect -600 -2015 600 -1999
+rect 658 -1965 1858 -1927
+rect 658 -1999 674 -1965
+rect 1842 -1999 1858 -1965
+rect 658 -2015 1858 -1999
+rect 1916 -1965 3116 -1927
+rect 1916 -1999 1932 -1965
+rect 3100 -1999 3116 -1965
+rect 1916 -2015 3116 -1999
+<< polycont >>
+rect -3100 1965 -1932 1999
+rect -1842 1965 -674 1999
+rect -584 1965 584 1999
+rect 674 1965 1842 1999
+rect 1932 1965 3100 1999
+rect -3100 1055 -1932 1089
+rect -1842 1055 -674 1089
+rect -584 1055 584 1089
+rect 674 1055 1842 1089
+rect 1932 1055 3100 1089
+rect -3100 947 -1932 981
+rect -1842 947 -674 981
+rect -584 947 584 981
+rect 674 947 1842 981
+rect 1932 947 3100 981
+rect -3100 37 -1932 71
+rect -1842 37 -674 71
+rect -584 37 584 71
+rect 674 37 1842 71
+rect 1932 37 3100 71
+rect -3100 -71 -1932 -37
+rect -1842 -71 -674 -37
+rect -584 -71 584 -37
+rect 674 -71 1842 -37
+rect 1932 -71 3100 -37
+rect -3100 -981 -1932 -947
+rect -1842 -981 -674 -947
+rect -584 -981 584 -947
+rect 674 -981 1842 -947
+rect 1932 -981 3100 -947
+rect -3100 -1089 -1932 -1055
+rect -1842 -1089 -674 -1055
+rect -584 -1089 584 -1055
+rect 674 -1089 1842 -1055
+rect 1932 -1089 3100 -1055
+rect -3100 -1999 -1932 -1965
+rect -1842 -1999 -674 -1965
+rect -584 -1999 584 -1965
+rect 674 -1999 1842 -1965
+rect 1932 -1999 3100 -1965
+<< locali >>
+rect -3276 2067 -3180 2101
+rect 3180 2067 3276 2101
+rect -3276 2005 -3242 2067
+rect 3242 2005 3276 2067
+rect -3116 1965 -3100 1999
+rect -1932 1965 -1916 1999
+rect -1858 1965 -1842 1999
+rect -674 1965 -658 1999
+rect -600 1965 -584 1999
+rect 584 1965 600 1999
+rect 658 1965 674 1999
+rect 1842 1965 1858 1999
+rect 1916 1965 1932 1999
+rect 3100 1965 3116 1999
+rect -3162 1915 -3128 1931
+rect -3162 1123 -3128 1139
+rect -1904 1915 -1870 1931
+rect -1904 1123 -1870 1139
+rect -646 1915 -612 1931
+rect -646 1123 -612 1139
+rect 612 1915 646 1931
+rect 612 1123 646 1139
+rect 1870 1915 1904 1931
+rect 1870 1123 1904 1139
+rect 3128 1915 3162 1931
+rect 3128 1123 3162 1139
+rect -3116 1055 -3100 1089
+rect -1932 1055 -1916 1089
+rect -1858 1055 -1842 1089
+rect -674 1055 -658 1089
+rect -600 1055 -584 1089
+rect 584 1055 600 1089
+rect 658 1055 674 1089
+rect 1842 1055 1858 1089
+rect 1916 1055 1932 1089
+rect 3100 1055 3116 1089
+rect -3116 947 -3100 981
+rect -1932 947 -1916 981
+rect -1858 947 -1842 981
+rect -674 947 -658 981
+rect -600 947 -584 981
+rect 584 947 600 981
+rect 658 947 674 981
+rect 1842 947 1858 981
+rect 1916 947 1932 981
+rect 3100 947 3116 981
+rect -3162 897 -3128 913
+rect -3162 105 -3128 121
+rect -1904 897 -1870 913
+rect -1904 105 -1870 121
+rect -646 897 -612 913
+rect -646 105 -612 121
+rect 612 897 646 913
+rect 612 105 646 121
+rect 1870 897 1904 913
+rect 1870 105 1904 121
+rect 3128 897 3162 913
+rect 3128 105 3162 121
+rect -3116 37 -3100 71
+rect -1932 37 -1916 71
+rect -1858 37 -1842 71
+rect -674 37 -658 71
+rect -600 37 -584 71
+rect 584 37 600 71
+rect 658 37 674 71
+rect 1842 37 1858 71
+rect 1916 37 1932 71
+rect 3100 37 3116 71
+rect -3116 -71 -3100 -37
+rect -1932 -71 -1916 -37
+rect -1858 -71 -1842 -37
+rect -674 -71 -658 -37
+rect -600 -71 -584 -37
+rect 584 -71 600 -37
+rect 658 -71 674 -37
+rect 1842 -71 1858 -37
+rect 1916 -71 1932 -37
+rect 3100 -71 3116 -37
+rect -3162 -121 -3128 -105
+rect -3162 -913 -3128 -897
+rect -1904 -121 -1870 -105
+rect -1904 -913 -1870 -897
+rect -646 -121 -612 -105
+rect -646 -913 -612 -897
+rect 612 -121 646 -105
+rect 612 -913 646 -897
+rect 1870 -121 1904 -105
+rect 1870 -913 1904 -897
+rect 3128 -121 3162 -105
+rect 3128 -913 3162 -897
+rect -3116 -981 -3100 -947
+rect -1932 -981 -1916 -947
+rect -1858 -981 -1842 -947
+rect -674 -981 -658 -947
+rect -600 -981 -584 -947
+rect 584 -981 600 -947
+rect 658 -981 674 -947
+rect 1842 -981 1858 -947
+rect 1916 -981 1932 -947
+rect 3100 -981 3116 -947
+rect -3116 -1089 -3100 -1055
+rect -1932 -1089 -1916 -1055
+rect -1858 -1089 -1842 -1055
+rect -674 -1089 -658 -1055
+rect -600 -1089 -584 -1055
+rect 584 -1089 600 -1055
+rect 658 -1089 674 -1055
+rect 1842 -1089 1858 -1055
+rect 1916 -1089 1932 -1055
+rect 3100 -1089 3116 -1055
+rect -3162 -1139 -3128 -1123
+rect -3162 -1931 -3128 -1915
+rect -1904 -1139 -1870 -1123
+rect -1904 -1931 -1870 -1915
+rect -646 -1139 -612 -1123
+rect -646 -1931 -612 -1915
+rect 612 -1139 646 -1123
+rect 612 -1931 646 -1915
+rect 1870 -1139 1904 -1123
+rect 1870 -1931 1904 -1915
+rect 3128 -1139 3162 -1123
+rect 3128 -1931 3162 -1915
+rect -3116 -1999 -3100 -1965
+rect -1932 -1999 -1916 -1965
+rect -1858 -1999 -1842 -1965
+rect -674 -1999 -658 -1965
+rect -600 -1999 -584 -1965
+rect 584 -1999 600 -1965
+rect 658 -1999 674 -1965
+rect 1842 -1999 1858 -1965
+rect 1916 -1999 1932 -1965
+rect 3100 -1999 3116 -1965
+rect -3276 -2067 -3242 -2005
+rect 3242 -2067 3276 -2005
+rect -3276 -2101 -3180 -2067
+rect 3180 -2101 3276 -2067
+<< viali >>
+rect -3100 1965 -1932 1999
+rect -1842 1965 -674 1999
+rect -584 1965 584 1999
+rect 674 1965 1842 1999
+rect 1932 1965 3100 1999
+rect -3162 1139 -3128 1915
+rect -1904 1139 -1870 1915
+rect -646 1139 -612 1915
+rect 612 1139 646 1915
+rect 1870 1139 1904 1915
+rect 3128 1139 3162 1915
+rect -3100 1055 -1932 1089
+rect -1842 1055 -674 1089
+rect -584 1055 584 1089
+rect 674 1055 1842 1089
+rect 1932 1055 3100 1089
+rect -3100 947 -1932 981
+rect -1842 947 -674 981
+rect -584 947 584 981
+rect 674 947 1842 981
+rect 1932 947 3100 981
+rect -3162 121 -3128 897
+rect -1904 121 -1870 897
+rect -646 121 -612 897
+rect 612 121 646 897
+rect 1870 121 1904 897
+rect 3128 121 3162 897
+rect -3100 37 -1932 71
+rect -1842 37 -674 71
+rect -584 37 584 71
+rect 674 37 1842 71
+rect 1932 37 3100 71
+rect -3100 -71 -1932 -37
+rect -1842 -71 -674 -37
+rect -584 -71 584 -37
+rect 674 -71 1842 -37
+rect 1932 -71 3100 -37
+rect -3162 -897 -3128 -121
+rect -1904 -897 -1870 -121
+rect -646 -897 -612 -121
+rect 612 -897 646 -121
+rect 1870 -897 1904 -121
+rect 3128 -897 3162 -121
+rect -3100 -981 -1932 -947
+rect -1842 -981 -674 -947
+rect -584 -981 584 -947
+rect 674 -981 1842 -947
+rect 1932 -981 3100 -947
+rect -3100 -1089 -1932 -1055
+rect -1842 -1089 -674 -1055
+rect -584 -1089 584 -1055
+rect 674 -1089 1842 -1055
+rect 1932 -1089 3100 -1055
+rect -3162 -1915 -3128 -1139
+rect -1904 -1915 -1870 -1139
+rect -646 -1915 -612 -1139
+rect 612 -1915 646 -1139
+rect 1870 -1915 1904 -1139
+rect 3128 -1915 3162 -1139
+rect -3100 -1999 -1932 -1965
+rect -1842 -1999 -674 -1965
+rect -584 -1999 584 -1965
+rect 674 -1999 1842 -1965
+rect 1932 -1999 3100 -1965
+<< metal1 >>
+rect -3112 1999 -1920 2005
+rect -3112 1965 -3100 1999
+rect -1932 1965 -1920 1999
+rect -3112 1959 -1920 1965
+rect -1854 1999 -662 2005
+rect -1854 1965 -1842 1999
+rect -674 1965 -662 1999
+rect -1854 1959 -662 1965
+rect -596 1999 596 2005
+rect -596 1965 -584 1999
+rect 584 1965 596 1999
+rect -596 1959 596 1965
+rect 662 1999 1854 2005
+rect 662 1965 674 1999
+rect 1842 1965 1854 1999
+rect 662 1959 1854 1965
+rect 1920 1999 3112 2005
+rect 1920 1965 1932 1999
+rect 3100 1965 3112 1999
+rect 1920 1959 3112 1965
+rect -3168 1915 -3122 1927
+rect -3168 1139 -3162 1915
+rect -3128 1139 -3122 1915
+rect -3168 1127 -3122 1139
+rect -1910 1915 -1864 1927
+rect -1910 1139 -1904 1915
+rect -1870 1139 -1864 1915
+rect -1910 1127 -1864 1139
+rect -652 1915 -606 1927
+rect -652 1139 -646 1915
+rect -612 1139 -606 1915
+rect -652 1127 -606 1139
+rect 606 1915 652 1927
+rect 606 1139 612 1915
+rect 646 1139 652 1915
+rect 606 1127 652 1139
+rect 1864 1915 1910 1927
+rect 1864 1139 1870 1915
+rect 1904 1139 1910 1915
+rect 1864 1127 1910 1139
+rect 3122 1915 3168 1927
+rect 3122 1139 3128 1915
+rect 3162 1139 3168 1915
+rect 3122 1127 3168 1139
+rect -3112 1089 -1920 1095
+rect -3112 1055 -3100 1089
+rect -1932 1055 -1920 1089
+rect -3112 1049 -1920 1055
+rect -1854 1089 -662 1095
+rect -1854 1055 -1842 1089
+rect -674 1055 -662 1089
+rect -1854 1049 -662 1055
+rect -596 1089 596 1095
+rect -596 1055 -584 1089
+rect 584 1055 596 1089
+rect -596 1049 596 1055
+rect 662 1089 1854 1095
+rect 662 1055 674 1089
+rect 1842 1055 1854 1089
+rect 662 1049 1854 1055
+rect 1920 1089 3112 1095
+rect 1920 1055 1932 1089
+rect 3100 1055 3112 1089
+rect 1920 1049 3112 1055
+rect -3112 981 -1920 987
+rect -3112 947 -3100 981
+rect -1932 947 -1920 981
+rect -3112 941 -1920 947
+rect -1854 981 -662 987
+rect -1854 947 -1842 981
+rect -674 947 -662 981
+rect -1854 941 -662 947
+rect -596 981 596 987
+rect -596 947 -584 981
+rect 584 947 596 981
+rect -596 941 596 947
+rect 662 981 1854 987
+rect 662 947 674 981
+rect 1842 947 1854 981
+rect 662 941 1854 947
+rect 1920 981 3112 987
+rect 1920 947 1932 981
+rect 3100 947 3112 981
+rect 1920 941 3112 947
+rect -3168 897 -3122 909
+rect -3168 121 -3162 897
+rect -3128 121 -3122 897
+rect -3168 109 -3122 121
+rect -1910 897 -1864 909
+rect -1910 121 -1904 897
+rect -1870 121 -1864 897
+rect -1910 109 -1864 121
+rect -652 897 -606 909
+rect -652 121 -646 897
+rect -612 121 -606 897
+rect -652 109 -606 121
+rect 606 897 652 909
+rect 606 121 612 897
+rect 646 121 652 897
+rect 606 109 652 121
+rect 1864 897 1910 909
+rect 1864 121 1870 897
+rect 1904 121 1910 897
+rect 1864 109 1910 121
+rect 3122 897 3168 909
+rect 3122 121 3128 897
+rect 3162 121 3168 897
+rect 3122 109 3168 121
+rect -3112 71 -1920 77
+rect -3112 37 -3100 71
+rect -1932 37 -1920 71
+rect -3112 31 -1920 37
+rect -1854 71 -662 77
+rect -1854 37 -1842 71
+rect -674 37 -662 71
+rect -1854 31 -662 37
+rect -596 71 596 77
+rect -596 37 -584 71
+rect 584 37 596 71
+rect -596 31 596 37
+rect 662 71 1854 77
+rect 662 37 674 71
+rect 1842 37 1854 71
+rect 662 31 1854 37
+rect 1920 71 3112 77
+rect 1920 37 1932 71
+rect 3100 37 3112 71
+rect 1920 31 3112 37
+rect -3112 -37 -1920 -31
+rect -3112 -71 -3100 -37
+rect -1932 -71 -1920 -37
+rect -3112 -77 -1920 -71
+rect -1854 -37 -662 -31
+rect -1854 -71 -1842 -37
+rect -674 -71 -662 -37
+rect -1854 -77 -662 -71
+rect -596 -37 596 -31
+rect -596 -71 -584 -37
+rect 584 -71 596 -37
+rect -596 -77 596 -71
+rect 662 -37 1854 -31
+rect 662 -71 674 -37
+rect 1842 -71 1854 -37
+rect 662 -77 1854 -71
+rect 1920 -37 3112 -31
+rect 1920 -71 1932 -37
+rect 3100 -71 3112 -37
+rect 1920 -77 3112 -71
+rect -3168 -121 -3122 -109
+rect -3168 -897 -3162 -121
+rect -3128 -897 -3122 -121
+rect -3168 -909 -3122 -897
+rect -1910 -121 -1864 -109
+rect -1910 -897 -1904 -121
+rect -1870 -897 -1864 -121
+rect -1910 -909 -1864 -897
+rect -652 -121 -606 -109
+rect -652 -897 -646 -121
+rect -612 -897 -606 -121
+rect -652 -909 -606 -897
+rect 606 -121 652 -109
+rect 606 -897 612 -121
+rect 646 -897 652 -121
+rect 606 -909 652 -897
+rect 1864 -121 1910 -109
+rect 1864 -897 1870 -121
+rect 1904 -897 1910 -121
+rect 1864 -909 1910 -897
+rect 3122 -121 3168 -109
+rect 3122 -897 3128 -121
+rect 3162 -897 3168 -121
+rect 3122 -909 3168 -897
+rect -3112 -947 -1920 -941
+rect -3112 -981 -3100 -947
+rect -1932 -981 -1920 -947
+rect -3112 -987 -1920 -981
+rect -1854 -947 -662 -941
+rect -1854 -981 -1842 -947
+rect -674 -981 -662 -947
+rect -1854 -987 -662 -981
+rect -596 -947 596 -941
+rect -596 -981 -584 -947
+rect 584 -981 596 -947
+rect -596 -987 596 -981
+rect 662 -947 1854 -941
+rect 662 -981 674 -947
+rect 1842 -981 1854 -947
+rect 662 -987 1854 -981
+rect 1920 -947 3112 -941
+rect 1920 -981 1932 -947
+rect 3100 -981 3112 -947
+rect 1920 -987 3112 -981
+rect -3112 -1055 -1920 -1049
+rect -3112 -1089 -3100 -1055
+rect -1932 -1089 -1920 -1055
+rect -3112 -1095 -1920 -1089
+rect -1854 -1055 -662 -1049
+rect -1854 -1089 -1842 -1055
+rect -674 -1089 -662 -1055
+rect -1854 -1095 -662 -1089
+rect -596 -1055 596 -1049
+rect -596 -1089 -584 -1055
+rect 584 -1089 596 -1055
+rect -596 -1095 596 -1089
+rect 662 -1055 1854 -1049
+rect 662 -1089 674 -1055
+rect 1842 -1089 1854 -1055
+rect 662 -1095 1854 -1089
+rect 1920 -1055 3112 -1049
+rect 1920 -1089 1932 -1055
+rect 3100 -1089 3112 -1055
+rect 1920 -1095 3112 -1089
+rect -3168 -1139 -3122 -1127
+rect -3168 -1915 -3162 -1139
+rect -3128 -1915 -3122 -1139
+rect -3168 -1927 -3122 -1915
+rect -1910 -1139 -1864 -1127
+rect -1910 -1915 -1904 -1139
+rect -1870 -1915 -1864 -1139
+rect -1910 -1927 -1864 -1915
+rect -652 -1139 -606 -1127
+rect -652 -1915 -646 -1139
+rect -612 -1915 -606 -1139
+rect -652 -1927 -606 -1915
+rect 606 -1139 652 -1127
+rect 606 -1915 612 -1139
+rect 646 -1915 652 -1139
+rect 606 -1927 652 -1915
+rect 1864 -1139 1910 -1127
+rect 1864 -1915 1870 -1139
+rect 1904 -1915 1910 -1139
+rect 1864 -1927 1910 -1915
+rect 3122 -1139 3168 -1127
+rect 3122 -1915 3128 -1139
+rect 3162 -1915 3168 -1139
+rect 3122 -1927 3168 -1915
+rect -3112 -1965 -1920 -1959
+rect -3112 -1999 -3100 -1965
+rect -1932 -1999 -1920 -1965
+rect -3112 -2005 -1920 -1999
+rect -1854 -1965 -662 -1959
+rect -1854 -1999 -1842 -1965
+rect -674 -1999 -662 -1965
+rect -1854 -2005 -662 -1999
+rect -596 -1965 596 -1959
+rect -596 -1999 -584 -1965
+rect 584 -1999 596 -1965
+rect -596 -2005 596 -1999
+rect 662 -1965 1854 -1959
+rect 662 -1999 674 -1965
+rect 1842 -1999 1854 -1965
+rect 662 -2005 1854 -1999
+rect 1920 -1965 3112 -1959
+rect 1920 -1999 1932 -1965
+rect 3100 -1999 3112 -1965
+rect 1920 -2005 3112 -1999
+<< properties >>
+string FIXED_BBOX -3259 -2084 3259 2084
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 4 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.ext b/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.ext
new file mode 100644
index 0000000..067b15c
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.ext
@@ -0,0 +1,18 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1229_n400#" 1962 305.408 1229 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n400#" 1962 23.9992 -29 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1287_n400#" 1962 305.408 -1287 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_29_n488#" 996 2978.45 29 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n488#" 996 2978.96 -1229 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1171200 4352 0 0 81600 4936 109664 4952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1389_n574#" 0 0 -1389 -574 ppd 0 0 0 0 0 0 0 0 0 0 262344 15432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 262344 15432 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_29_n488#" "a_n1229_n488#" 135.85
+cap "a_1229_n400#" "a_n29_n400#" 42.8401
+cap "a_n1287_n400#" "a_n29_n400#" 42.8401
+device msubckt sky130_fd_pr__nfet_01v8 29 -400 30 -399 l=1200 w=800 "a_n1389_n574#" "a_29_n488#" 2400 0 "a_n29_n400#" 800 0 "a_1229_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8 -1229 -400 -1228 -399 l=1200 w=800 "a_n1389_n574#" "a_n1229_n488#" 2400 0 "a_n1287_n400#" 800 0 "a_n29_n400#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.mag b/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.mag
new file mode 100644
index 0000000..f3872da
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_WY4VMC.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -1425 -610 1425 610
+<< nmos >>
+rect -1229 -400 -29 400
+rect 29 -400 1229 400
+<< ndiff >>
+rect -1287 388 -1229 400
+rect -1287 -388 -1275 388
+rect -1241 -388 -1229 388
+rect -1287 -400 -1229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 1229 388 1287 400
+rect 1229 -388 1241 388
+rect 1275 -388 1287 388
+rect 1229 -400 1287 -388
+<< ndiffc >>
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+<< psubdiff >>
+rect -1389 540 -1293 574
+rect 1293 540 1389 574
+rect -1389 478 -1355 540
+rect 1355 478 1389 540
+rect -1389 -540 -1355 -478
+rect 1355 -540 1389 -478
+rect -1389 -574 -1293 -540
+rect 1293 -574 1389 -540
+<< psubdiffcont >>
+rect -1293 540 1293 574
+rect -1389 -478 -1355 478
+rect 1355 -478 1389 478
+rect -1293 -574 1293 -540
+<< poly >>
+rect -1229 472 -29 488
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect -1229 400 -29 438
+rect 29 472 1229 488
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect 29 400 1229 438
+rect -1229 -438 -29 -400
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect -1229 -488 -29 -472
+rect 29 -438 1229 -400
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect 29 -488 1229 -472
+<< polycont >>
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+<< locali >>
+rect -1389 540 -1293 574
+rect 1293 540 1389 574
+rect -1389 478 -1355 540
+rect 1355 478 1389 540
+rect -1229 438 -1213 472
+rect -45 438 -29 472
+rect 29 438 45 472
+rect 1213 438 1229 472
+rect -1275 388 -1241 404
+rect -1275 -404 -1241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 1241 388 1275 404
+rect 1241 -404 1275 -388
+rect -1229 -472 -1213 -438
+rect -45 -472 -29 -438
+rect 29 -472 45 -438
+rect 1213 -472 1229 -438
+rect -1389 -540 -1355 -478
+rect 1355 -540 1389 -478
+rect -1389 -574 -1293 -540
+rect 1293 -574 1389 -540
+<< viali >>
+rect -1213 438 -45 472
+rect 45 438 1213 472
+rect -1275 -388 -1241 388
+rect -17 -388 17 388
+rect 1241 -388 1275 388
+rect -1213 -472 -45 -438
+rect 45 -472 1213 -438
+<< metal1 >>
+rect -1225 472 -33 478
+rect -1225 438 -1213 472
+rect -45 438 -33 472
+rect -1225 432 -33 438
+rect 33 472 1225 478
+rect 33 438 45 472
+rect 1213 438 1225 472
+rect 33 432 1225 438
+rect -1281 388 -1235 400
+rect -1281 -388 -1275 388
+rect -1241 -388 -1235 388
+rect -1281 -400 -1235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 1235 388 1281 400
+rect 1235 -388 1241 388
+rect 1275 -388 1281 388
+rect 1235 -400 1281 -388
+rect -1225 -438 -33 -432
+rect -1225 -472 -1213 -438
+rect -45 -472 -33 -438
+rect -1225 -478 -33 -472
+rect 33 -438 1225 -432
+rect 33 -472 45 -438
+rect 1213 -472 1225 -438
+rect 33 -478 1225 -472
+<< properties >>
+string FIXED_BBOX -1372 -557 1372 557
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_ZCEJW8.mag b/mag/isource/sky130_fd_pr__nfet_01v8_ZCEJW8.mag
new file mode 100644
index 0000000..cea7d74
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_ZCEJW8.mag
@@ -0,0 +1,1570 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645541123
+<< pwell >>
+rect -1457 -2137 1457 2137
+<< nmos >>
+rect -1261 1127 -1061 1927
+rect -1003 1127 -803 1927
+rect -745 1127 -545 1927
+rect -487 1127 -287 1927
+rect -229 1127 -29 1927
+rect 29 1127 229 1927
+rect 287 1127 487 1927
+rect 545 1127 745 1927
+rect 803 1127 1003 1927
+rect 1061 1127 1261 1927
+rect -1261 109 -1061 909
+rect -1003 109 -803 909
+rect -745 109 -545 909
+rect -487 109 -287 909
+rect -229 109 -29 909
+rect 29 109 229 909
+rect 287 109 487 909
+rect 545 109 745 909
+rect 803 109 1003 909
+rect 1061 109 1261 909
+rect -1261 -909 -1061 -109
+rect -1003 -909 -803 -109
+rect -745 -909 -545 -109
+rect -487 -909 -287 -109
+rect -229 -909 -29 -109
+rect 29 -909 229 -109
+rect 287 -909 487 -109
+rect 545 -909 745 -109
+rect 803 -909 1003 -109
+rect 1061 -909 1261 -109
+rect -1261 -1927 -1061 -1127
+rect -1003 -1927 -803 -1127
+rect -745 -1927 -545 -1127
+rect -487 -1927 -287 -1127
+rect -229 -1927 -29 -1127
+rect 29 -1927 229 -1127
+rect 287 -1927 487 -1127
+rect 545 -1927 745 -1127
+rect 803 -1927 1003 -1127
+rect 1061 -1927 1261 -1127
+<< ndiff >>
+rect -1319 1915 -1261 1927
+rect -1319 1139 -1307 1915
+rect -1273 1139 -1261 1915
+rect -1319 1127 -1261 1139
+rect -1061 1915 -1003 1927
+rect -1061 1139 -1049 1915
+rect -1015 1139 -1003 1915
+rect -1061 1127 -1003 1139
+rect -803 1915 -745 1927
+rect -803 1139 -791 1915
+rect -757 1139 -745 1915
+rect -803 1127 -745 1139
+rect -545 1915 -487 1927
+rect -545 1139 -533 1915
+rect -499 1139 -487 1915
+rect -545 1127 -487 1139
+rect -287 1915 -229 1927
+rect -287 1139 -275 1915
+rect -241 1139 -229 1915
+rect -287 1127 -229 1139
+rect -29 1915 29 1927
+rect -29 1139 -17 1915
+rect 17 1139 29 1915
+rect -29 1127 29 1139
+rect 229 1915 287 1927
+rect 229 1139 241 1915
+rect 275 1139 287 1915
+rect 229 1127 287 1139
+rect 487 1915 545 1927
+rect 487 1139 499 1915
+rect 533 1139 545 1915
+rect 487 1127 545 1139
+rect 745 1915 803 1927
+rect 745 1139 757 1915
+rect 791 1139 803 1915
+rect 745 1127 803 1139
+rect 1003 1915 1061 1927
+rect 1003 1139 1015 1915
+rect 1049 1139 1061 1915
+rect 1003 1127 1061 1139
+rect 1261 1915 1319 1927
+rect 1261 1139 1273 1915
+rect 1307 1139 1319 1915
+rect 1261 1127 1319 1139
+rect -1319 897 -1261 909
+rect -1319 121 -1307 897
+rect -1273 121 -1261 897
+rect -1319 109 -1261 121
+rect -1061 897 -1003 909
+rect -1061 121 -1049 897
+rect -1015 121 -1003 897
+rect -1061 109 -1003 121
+rect -803 897 -745 909
+rect -803 121 -791 897
+rect -757 121 -745 897
+rect -803 109 -745 121
+rect -545 897 -487 909
+rect -545 121 -533 897
+rect -499 121 -487 897
+rect -545 109 -487 121
+rect -287 897 -229 909
+rect -287 121 -275 897
+rect -241 121 -229 897
+rect -287 109 -229 121
+rect -29 897 29 909
+rect -29 121 -17 897
+rect 17 121 29 897
+rect -29 109 29 121
+rect 229 897 287 909
+rect 229 121 241 897
+rect 275 121 287 897
+rect 229 109 287 121
+rect 487 897 545 909
+rect 487 121 499 897
+rect 533 121 545 897
+rect 487 109 545 121
+rect 745 897 803 909
+rect 745 121 757 897
+rect 791 121 803 897
+rect 745 109 803 121
+rect 1003 897 1061 909
+rect 1003 121 1015 897
+rect 1049 121 1061 897
+rect 1003 109 1061 121
+rect 1261 897 1319 909
+rect 1261 121 1273 897
+rect 1307 121 1319 897
+rect 1261 109 1319 121
+rect -1319 -121 -1261 -109
+rect -1319 -897 -1307 -121
+rect -1273 -897 -1261 -121
+rect -1319 -909 -1261 -897
+rect -1061 -121 -1003 -109
+rect -1061 -897 -1049 -121
+rect -1015 -897 -1003 -121
+rect -1061 -909 -1003 -897
+rect -803 -121 -745 -109
+rect -803 -897 -791 -121
+rect -757 -897 -745 -121
+rect -803 -909 -745 -897
+rect -545 -121 -487 -109
+rect -545 -897 -533 -121
+rect -499 -897 -487 -121
+rect -545 -909 -487 -897
+rect -287 -121 -229 -109
+rect -287 -897 -275 -121
+rect -241 -897 -229 -121
+rect -287 -909 -229 -897
+rect -29 -121 29 -109
+rect -29 -897 -17 -121
+rect 17 -897 29 -121
+rect -29 -909 29 -897
+rect 229 -121 287 -109
+rect 229 -897 241 -121
+rect 275 -897 287 -121
+rect 229 -909 287 -897
+rect 487 -121 545 -109
+rect 487 -897 499 -121
+rect 533 -897 545 -121
+rect 487 -909 545 -897
+rect 745 -121 803 -109
+rect 745 -897 757 -121
+rect 791 -897 803 -121
+rect 745 -909 803 -897
+rect 1003 -121 1061 -109
+rect 1003 -897 1015 -121
+rect 1049 -897 1061 -121
+rect 1003 -909 1061 -897
+rect 1261 -121 1319 -109
+rect 1261 -897 1273 -121
+rect 1307 -897 1319 -121
+rect 1261 -909 1319 -897
+rect -1319 -1139 -1261 -1127
+rect -1319 -1915 -1307 -1139
+rect -1273 -1915 -1261 -1139
+rect -1319 -1927 -1261 -1915
+rect -1061 -1139 -1003 -1127
+rect -1061 -1915 -1049 -1139
+rect -1015 -1915 -1003 -1139
+rect -1061 -1927 -1003 -1915
+rect -803 -1139 -745 -1127
+rect -803 -1915 -791 -1139
+rect -757 -1915 -745 -1139
+rect -803 -1927 -745 -1915
+rect -545 -1139 -487 -1127
+rect -545 -1915 -533 -1139
+rect -499 -1915 -487 -1139
+rect -545 -1927 -487 -1915
+rect -287 -1139 -229 -1127
+rect -287 -1915 -275 -1139
+rect -241 -1915 -229 -1139
+rect -287 -1927 -229 -1915
+rect -29 -1139 29 -1127
+rect -29 -1915 -17 -1139
+rect 17 -1915 29 -1139
+rect -29 -1927 29 -1915
+rect 229 -1139 287 -1127
+rect 229 -1915 241 -1139
+rect 275 -1915 287 -1139
+rect 229 -1927 287 -1915
+rect 487 -1139 545 -1127
+rect 487 -1915 499 -1139
+rect 533 -1915 545 -1139
+rect 487 -1927 545 -1915
+rect 745 -1139 803 -1127
+rect 745 -1915 757 -1139
+rect 791 -1915 803 -1139
+rect 745 -1927 803 -1915
+rect 1003 -1139 1061 -1127
+rect 1003 -1915 1015 -1139
+rect 1049 -1915 1061 -1139
+rect 1003 -1927 1061 -1915
+rect 1261 -1139 1319 -1127
+rect 1261 -1915 1273 -1139
+rect 1307 -1915 1319 -1139
+rect 1261 -1927 1319 -1915
+<< ndiffc >>
+rect -1307 1139 -1273 1915
+rect -1049 1139 -1015 1915
+rect -791 1139 -757 1915
+rect -533 1139 -499 1915
+rect -275 1139 -241 1915
+rect -17 1139 17 1915
+rect 241 1139 275 1915
+rect 499 1139 533 1915
+rect 757 1139 791 1915
+rect 1015 1139 1049 1915
+rect 1273 1139 1307 1915
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+rect -1307 -1915 -1273 -1139
+rect -1049 -1915 -1015 -1139
+rect -791 -1915 -757 -1139
+rect -533 -1915 -499 -1139
+rect -275 -1915 -241 -1139
+rect -17 -1915 17 -1139
+rect 241 -1915 275 -1139
+rect 499 -1915 533 -1139
+rect 757 -1915 791 -1139
+rect 1015 -1915 1049 -1139
+rect 1273 -1915 1307 -1139
+<< psubdiff >>
+rect -1421 2067 -1325 2101
+rect 1325 2067 1421 2101
+rect -1421 2005 -1387 2067
+rect 1387 2005 1421 2067
+rect -1421 -2067 -1387 -2005
+rect 1387 -2067 1421 -2005
+rect -1421 -2101 -1325 -2067
+rect 1325 -2101 1421 -2067
+<< psubdiffcont >>
+rect -1325 2067 1325 2101
+rect -1421 -2005 -1387 2005
+rect 1387 -2005 1421 2005
+rect -1325 -2101 1325 -2067
+<< poly >>
+rect -1261 1999 -1061 2015
+rect -1261 1965 -1245 1999
+rect -1077 1965 -1061 1999
+rect -1261 1927 -1061 1965
+rect -1003 1999 -803 2015
+rect -1003 1965 -987 1999
+rect -819 1965 -803 1999
+rect -1003 1927 -803 1965
+rect -745 1999 -545 2015
+rect -745 1965 -729 1999
+rect -561 1965 -545 1999
+rect -745 1927 -545 1965
+rect -487 1999 -287 2015
+rect -487 1965 -471 1999
+rect -303 1965 -287 1999
+rect -487 1927 -287 1965
+rect -229 1999 -29 2015
+rect -229 1965 -213 1999
+rect -45 1965 -29 1999
+rect -229 1927 -29 1965
+rect 29 1999 229 2015
+rect 29 1965 45 1999
+rect 213 1965 229 1999
+rect 29 1927 229 1965
+rect 287 1999 487 2015
+rect 287 1965 303 1999
+rect 471 1965 487 1999
+rect 287 1927 487 1965
+rect 545 1999 745 2015
+rect 545 1965 561 1999
+rect 729 1965 745 1999
+rect 545 1927 745 1965
+rect 803 1999 1003 2015
+rect 803 1965 819 1999
+rect 987 1965 1003 1999
+rect 803 1927 1003 1965
+rect 1061 1999 1261 2015
+rect 1061 1965 1077 1999
+rect 1245 1965 1261 1999
+rect 1061 1927 1261 1965
+rect -1261 1089 -1061 1127
+rect -1261 1055 -1245 1089
+rect -1077 1055 -1061 1089
+rect -1261 1039 -1061 1055
+rect -1003 1089 -803 1127
+rect -1003 1055 -987 1089
+rect -819 1055 -803 1089
+rect -1003 1039 -803 1055
+rect -745 1089 -545 1127
+rect -745 1055 -729 1089
+rect -561 1055 -545 1089
+rect -745 1039 -545 1055
+rect -487 1089 -287 1127
+rect -487 1055 -471 1089
+rect -303 1055 -287 1089
+rect -487 1039 -287 1055
+rect -229 1089 -29 1127
+rect -229 1055 -213 1089
+rect -45 1055 -29 1089
+rect -229 1039 -29 1055
+rect 29 1089 229 1127
+rect 29 1055 45 1089
+rect 213 1055 229 1089
+rect 29 1039 229 1055
+rect 287 1089 487 1127
+rect 287 1055 303 1089
+rect 471 1055 487 1089
+rect 287 1039 487 1055
+rect 545 1089 745 1127
+rect 545 1055 561 1089
+rect 729 1055 745 1089
+rect 545 1039 745 1055
+rect 803 1089 1003 1127
+rect 803 1055 819 1089
+rect 987 1055 1003 1089
+rect 803 1039 1003 1055
+rect 1061 1089 1261 1127
+rect 1061 1055 1077 1089
+rect 1245 1055 1261 1089
+rect 1061 1039 1261 1055
+rect -1261 981 -1061 997
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1261 909 -1061 947
+rect -1003 981 -803 997
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -1003 909 -803 947
+rect -745 981 -545 997
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -745 909 -545 947
+rect -487 981 -287 997
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -487 909 -287 947
+rect -229 981 -29 997
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect -229 909 -29 947
+rect 29 981 229 997
+rect 29 947 45 981
+rect 213 947 229 981
+rect 29 909 229 947
+rect 287 981 487 997
+rect 287 947 303 981
+rect 471 947 487 981
+rect 287 909 487 947
+rect 545 981 745 997
+rect 545 947 561 981
+rect 729 947 745 981
+rect 545 909 745 947
+rect 803 981 1003 997
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 803 909 1003 947
+rect 1061 981 1261 997
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect 1061 909 1261 947
+rect -1261 71 -1061 109
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1261 21 -1061 37
+rect -1003 71 -803 109
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -1003 21 -803 37
+rect -745 71 -545 109
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -745 21 -545 37
+rect -487 71 -287 109
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -487 21 -287 37
+rect -229 71 -29 109
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect -229 21 -29 37
+rect 29 71 229 109
+rect 29 37 45 71
+rect 213 37 229 71
+rect 29 21 229 37
+rect 287 71 487 109
+rect 287 37 303 71
+rect 471 37 487 71
+rect 287 21 487 37
+rect 545 71 745 109
+rect 545 37 561 71
+rect 729 37 745 71
+rect 545 21 745 37
+rect 803 71 1003 109
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 803 21 1003 37
+rect 1061 71 1261 109
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect 1061 21 1261 37
+rect -1261 -37 -1061 -21
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1261 -109 -1061 -71
+rect -1003 -37 -803 -21
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -1003 -109 -803 -71
+rect -745 -37 -545 -21
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -745 -109 -545 -71
+rect -487 -37 -287 -21
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -487 -109 -287 -71
+rect -229 -37 -29 -21
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect -229 -109 -29 -71
+rect 29 -37 229 -21
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 29 -109 229 -71
+rect 287 -37 487 -21
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 287 -109 487 -71
+rect 545 -37 745 -21
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 545 -109 745 -71
+rect 803 -37 1003 -21
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 803 -109 1003 -71
+rect 1061 -37 1261 -21
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect 1061 -109 1261 -71
+rect -1261 -947 -1061 -909
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1261 -997 -1061 -981
+rect -1003 -947 -803 -909
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -1003 -997 -803 -981
+rect -745 -947 -545 -909
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -745 -997 -545 -981
+rect -487 -947 -287 -909
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -487 -997 -287 -981
+rect -229 -947 -29 -909
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect -229 -997 -29 -981
+rect 29 -947 229 -909
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 29 -997 229 -981
+rect 287 -947 487 -909
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 287 -997 487 -981
+rect 545 -947 745 -909
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 545 -997 745 -981
+rect 803 -947 1003 -909
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 803 -997 1003 -981
+rect 1061 -947 1261 -909
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect 1061 -997 1261 -981
+rect -1261 -1055 -1061 -1039
+rect -1261 -1089 -1245 -1055
+rect -1077 -1089 -1061 -1055
+rect -1261 -1127 -1061 -1089
+rect -1003 -1055 -803 -1039
+rect -1003 -1089 -987 -1055
+rect -819 -1089 -803 -1055
+rect -1003 -1127 -803 -1089
+rect -745 -1055 -545 -1039
+rect -745 -1089 -729 -1055
+rect -561 -1089 -545 -1055
+rect -745 -1127 -545 -1089
+rect -487 -1055 -287 -1039
+rect -487 -1089 -471 -1055
+rect -303 -1089 -287 -1055
+rect -487 -1127 -287 -1089
+rect -229 -1055 -29 -1039
+rect -229 -1089 -213 -1055
+rect -45 -1089 -29 -1055
+rect -229 -1127 -29 -1089
+rect 29 -1055 229 -1039
+rect 29 -1089 45 -1055
+rect 213 -1089 229 -1055
+rect 29 -1127 229 -1089
+rect 287 -1055 487 -1039
+rect 287 -1089 303 -1055
+rect 471 -1089 487 -1055
+rect 287 -1127 487 -1089
+rect 545 -1055 745 -1039
+rect 545 -1089 561 -1055
+rect 729 -1089 745 -1055
+rect 545 -1127 745 -1089
+rect 803 -1055 1003 -1039
+rect 803 -1089 819 -1055
+rect 987 -1089 1003 -1055
+rect 803 -1127 1003 -1089
+rect 1061 -1055 1261 -1039
+rect 1061 -1089 1077 -1055
+rect 1245 -1089 1261 -1055
+rect 1061 -1127 1261 -1089
+rect -1261 -1965 -1061 -1927
+rect -1261 -1999 -1245 -1965
+rect -1077 -1999 -1061 -1965
+rect -1261 -2015 -1061 -1999
+rect -1003 -1965 -803 -1927
+rect -1003 -1999 -987 -1965
+rect -819 -1999 -803 -1965
+rect -1003 -2015 -803 -1999
+rect -745 -1965 -545 -1927
+rect -745 -1999 -729 -1965
+rect -561 -1999 -545 -1965
+rect -745 -2015 -545 -1999
+rect -487 -1965 -287 -1927
+rect -487 -1999 -471 -1965
+rect -303 -1999 -287 -1965
+rect -487 -2015 -287 -1999
+rect -229 -1965 -29 -1927
+rect -229 -1999 -213 -1965
+rect -45 -1999 -29 -1965
+rect -229 -2015 -29 -1999
+rect 29 -1965 229 -1927
+rect 29 -1999 45 -1965
+rect 213 -1999 229 -1965
+rect 29 -2015 229 -1999
+rect 287 -1965 487 -1927
+rect 287 -1999 303 -1965
+rect 471 -1999 487 -1965
+rect 287 -2015 487 -1999
+rect 545 -1965 745 -1927
+rect 545 -1999 561 -1965
+rect 729 -1999 745 -1965
+rect 545 -2015 745 -1999
+rect 803 -1965 1003 -1927
+rect 803 -1999 819 -1965
+rect 987 -1999 1003 -1965
+rect 803 -2015 1003 -1999
+rect 1061 -1965 1261 -1927
+rect 1061 -1999 1077 -1965
+rect 1245 -1999 1261 -1965
+rect 1061 -2015 1261 -1999
+<< polycont >>
+rect -1245 1965 -1077 1999
+rect -987 1965 -819 1999
+rect -729 1965 -561 1999
+rect -471 1965 -303 1999
+rect -213 1965 -45 1999
+rect 45 1965 213 1999
+rect 303 1965 471 1999
+rect 561 1965 729 1999
+rect 819 1965 987 1999
+rect 1077 1965 1245 1999
+rect -1245 1055 -1077 1089
+rect -987 1055 -819 1089
+rect -729 1055 -561 1089
+rect -471 1055 -303 1089
+rect -213 1055 -45 1089
+rect 45 1055 213 1089
+rect 303 1055 471 1089
+rect 561 1055 729 1089
+rect 819 1055 987 1089
+rect 1077 1055 1245 1089
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+rect -1245 -1089 -1077 -1055
+rect -987 -1089 -819 -1055
+rect -729 -1089 -561 -1055
+rect -471 -1089 -303 -1055
+rect -213 -1089 -45 -1055
+rect 45 -1089 213 -1055
+rect 303 -1089 471 -1055
+rect 561 -1089 729 -1055
+rect 819 -1089 987 -1055
+rect 1077 -1089 1245 -1055
+rect -1245 -1999 -1077 -1965
+rect -987 -1999 -819 -1965
+rect -729 -1999 -561 -1965
+rect -471 -1999 -303 -1965
+rect -213 -1999 -45 -1965
+rect 45 -1999 213 -1965
+rect 303 -1999 471 -1965
+rect 561 -1999 729 -1965
+rect 819 -1999 987 -1965
+rect 1077 -1999 1245 -1965
+<< locali >>
+rect -1421 2067 -1325 2101
+rect 1325 2067 1421 2101
+rect -1421 2005 -1387 2067
+rect 1387 2005 1421 2067
+rect -1261 1965 -1245 1999
+rect -1077 1965 -1061 1999
+rect -1003 1965 -987 1999
+rect -819 1965 -803 1999
+rect -745 1965 -729 1999
+rect -561 1965 -545 1999
+rect -487 1965 -471 1999
+rect -303 1965 -287 1999
+rect -229 1965 -213 1999
+rect -45 1965 -29 1999
+rect 29 1965 45 1999
+rect 213 1965 229 1999
+rect 287 1965 303 1999
+rect 471 1965 487 1999
+rect 545 1965 561 1999
+rect 729 1965 745 1999
+rect 803 1965 819 1999
+rect 987 1965 1003 1999
+rect 1061 1965 1077 1999
+rect 1245 1965 1261 1999
+rect -1307 1915 -1273 1931
+rect -1307 1123 -1273 1139
+rect -1049 1915 -1015 1931
+rect -1049 1123 -1015 1139
+rect -791 1915 -757 1931
+rect -791 1123 -757 1139
+rect -533 1915 -499 1931
+rect -533 1123 -499 1139
+rect -275 1915 -241 1931
+rect -275 1123 -241 1139
+rect -17 1915 17 1931
+rect -17 1123 17 1139
+rect 241 1915 275 1931
+rect 241 1123 275 1139
+rect 499 1915 533 1931
+rect 499 1123 533 1139
+rect 757 1915 791 1931
+rect 757 1123 791 1139
+rect 1015 1915 1049 1931
+rect 1015 1123 1049 1139
+rect 1273 1915 1307 1931
+rect 1273 1123 1307 1139
+rect -1261 1055 -1245 1089
+rect -1077 1055 -1061 1089
+rect -1003 1055 -987 1089
+rect -819 1055 -803 1089
+rect -745 1055 -729 1089
+rect -561 1055 -545 1089
+rect -487 1055 -471 1089
+rect -303 1055 -287 1089
+rect -229 1055 -213 1089
+rect -45 1055 -29 1089
+rect 29 1055 45 1089
+rect 213 1055 229 1089
+rect 287 1055 303 1089
+rect 471 1055 487 1089
+rect 545 1055 561 1089
+rect 729 1055 745 1089
+rect 803 1055 819 1089
+rect 987 1055 1003 1089
+rect 1061 1055 1077 1089
+rect 1245 1055 1261 1089
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect 29 947 45 981
+rect 213 947 229 981
+rect 287 947 303 981
+rect 471 947 487 981
+rect 545 947 561 981
+rect 729 947 745 981
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect -1307 897 -1273 913
+rect -1307 105 -1273 121
+rect -1049 897 -1015 913
+rect -1049 105 -1015 121
+rect -791 897 -757 913
+rect -791 105 -757 121
+rect -533 897 -499 913
+rect -533 105 -499 121
+rect -275 897 -241 913
+rect -275 105 -241 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 241 897 275 913
+rect 241 105 275 121
+rect 499 897 533 913
+rect 499 105 533 121
+rect 757 897 791 913
+rect 757 105 791 121
+rect 1015 897 1049 913
+rect 1015 105 1049 121
+rect 1273 897 1307 913
+rect 1273 105 1307 121
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 213 37 229 71
+rect 287 37 303 71
+rect 471 37 487 71
+rect 545 37 561 71
+rect 729 37 745 71
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect -1307 -121 -1273 -105
+rect -1307 -913 -1273 -897
+rect -1049 -121 -1015 -105
+rect -1049 -913 -1015 -897
+rect -791 -121 -757 -105
+rect -791 -913 -757 -897
+rect -533 -121 -499 -105
+rect -533 -913 -499 -897
+rect -275 -121 -241 -105
+rect -275 -913 -241 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 241 -121 275 -105
+rect 241 -913 275 -897
+rect 499 -121 533 -105
+rect 499 -913 533 -897
+rect 757 -121 791 -105
+rect 757 -913 791 -897
+rect 1015 -121 1049 -105
+rect 1015 -913 1049 -897
+rect 1273 -121 1307 -105
+rect 1273 -913 1307 -897
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect -1261 -1089 -1245 -1055
+rect -1077 -1089 -1061 -1055
+rect -1003 -1089 -987 -1055
+rect -819 -1089 -803 -1055
+rect -745 -1089 -729 -1055
+rect -561 -1089 -545 -1055
+rect -487 -1089 -471 -1055
+rect -303 -1089 -287 -1055
+rect -229 -1089 -213 -1055
+rect -45 -1089 -29 -1055
+rect 29 -1089 45 -1055
+rect 213 -1089 229 -1055
+rect 287 -1089 303 -1055
+rect 471 -1089 487 -1055
+rect 545 -1089 561 -1055
+rect 729 -1089 745 -1055
+rect 803 -1089 819 -1055
+rect 987 -1089 1003 -1055
+rect 1061 -1089 1077 -1055
+rect 1245 -1089 1261 -1055
+rect -1307 -1139 -1273 -1123
+rect -1307 -1931 -1273 -1915
+rect -1049 -1139 -1015 -1123
+rect -1049 -1931 -1015 -1915
+rect -791 -1139 -757 -1123
+rect -791 -1931 -757 -1915
+rect -533 -1139 -499 -1123
+rect -533 -1931 -499 -1915
+rect -275 -1139 -241 -1123
+rect -275 -1931 -241 -1915
+rect -17 -1139 17 -1123
+rect -17 -1931 17 -1915
+rect 241 -1139 275 -1123
+rect 241 -1931 275 -1915
+rect 499 -1139 533 -1123
+rect 499 -1931 533 -1915
+rect 757 -1139 791 -1123
+rect 757 -1931 791 -1915
+rect 1015 -1139 1049 -1123
+rect 1015 -1931 1049 -1915
+rect 1273 -1139 1307 -1123
+rect 1273 -1931 1307 -1915
+rect -1261 -1999 -1245 -1965
+rect -1077 -1999 -1061 -1965
+rect -1003 -1999 -987 -1965
+rect -819 -1999 -803 -1965
+rect -745 -1999 -729 -1965
+rect -561 -1999 -545 -1965
+rect -487 -1999 -471 -1965
+rect -303 -1999 -287 -1965
+rect -229 -1999 -213 -1965
+rect -45 -1999 -29 -1965
+rect 29 -1999 45 -1965
+rect 213 -1999 229 -1965
+rect 287 -1999 303 -1965
+rect 471 -1999 487 -1965
+rect 545 -1999 561 -1965
+rect 729 -1999 745 -1965
+rect 803 -1999 819 -1965
+rect 987 -1999 1003 -1965
+rect 1061 -1999 1077 -1965
+rect 1245 -1999 1261 -1965
+rect -1421 -2067 -1387 -2005
+rect 1387 -2067 1421 -2005
+rect -1421 -2101 -1325 -2067
+rect 1325 -2101 1421 -2067
+<< viali >>
+rect -1245 1965 -1077 1999
+rect -987 1965 -819 1999
+rect -729 1965 -561 1999
+rect -471 1965 -303 1999
+rect -213 1965 -45 1999
+rect 45 1965 213 1999
+rect 303 1965 471 1999
+rect 561 1965 729 1999
+rect 819 1965 987 1999
+rect 1077 1965 1245 1999
+rect -1307 1139 -1273 1915
+rect -1049 1139 -1015 1915
+rect -791 1139 -757 1915
+rect -533 1139 -499 1915
+rect -275 1139 -241 1915
+rect -17 1139 17 1915
+rect 241 1139 275 1915
+rect 499 1139 533 1915
+rect 757 1139 791 1915
+rect 1015 1139 1049 1915
+rect 1273 1139 1307 1915
+rect -1245 1055 -1077 1089
+rect -987 1055 -819 1089
+rect -729 1055 -561 1089
+rect -471 1055 -303 1089
+rect -213 1055 -45 1089
+rect 45 1055 213 1089
+rect 303 1055 471 1089
+rect 561 1055 729 1089
+rect 819 1055 987 1089
+rect 1077 1055 1245 1089
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+rect -1245 -1089 -1077 -1055
+rect -987 -1089 -819 -1055
+rect -729 -1089 -561 -1055
+rect -471 -1089 -303 -1055
+rect -213 -1089 -45 -1055
+rect 45 -1089 213 -1055
+rect 303 -1089 471 -1055
+rect 561 -1089 729 -1055
+rect 819 -1089 987 -1055
+rect 1077 -1089 1245 -1055
+rect -1307 -1915 -1273 -1139
+rect -1049 -1915 -1015 -1139
+rect -791 -1915 -757 -1139
+rect -533 -1915 -499 -1139
+rect -275 -1915 -241 -1139
+rect -17 -1915 17 -1139
+rect 241 -1915 275 -1139
+rect 499 -1915 533 -1139
+rect 757 -1915 791 -1139
+rect 1015 -1915 1049 -1139
+rect 1273 -1915 1307 -1139
+rect -1245 -1999 -1077 -1965
+rect -987 -1999 -819 -1965
+rect -729 -1999 -561 -1965
+rect -471 -1999 -303 -1965
+rect -213 -1999 -45 -1965
+rect 45 -1999 213 -1965
+rect 303 -1999 471 -1965
+rect 561 -1999 729 -1965
+rect 819 -1999 987 -1965
+rect 1077 -1999 1245 -1965
+<< metal1 >>
+rect -1257 1999 -1065 2005
+rect -1257 1965 -1245 1999
+rect -1077 1965 -1065 1999
+rect -1257 1959 -1065 1965
+rect -999 1999 -807 2005
+rect -999 1965 -987 1999
+rect -819 1965 -807 1999
+rect -999 1959 -807 1965
+rect -741 1999 -549 2005
+rect -741 1965 -729 1999
+rect -561 1965 -549 1999
+rect -741 1959 -549 1965
+rect -483 1999 -291 2005
+rect -483 1965 -471 1999
+rect -303 1965 -291 1999
+rect -483 1959 -291 1965
+rect -225 1999 -33 2005
+rect -225 1965 -213 1999
+rect -45 1965 -33 1999
+rect -225 1959 -33 1965
+rect 33 1999 225 2005
+rect 33 1965 45 1999
+rect 213 1965 225 1999
+rect 33 1959 225 1965
+rect 291 1999 483 2005
+rect 291 1965 303 1999
+rect 471 1965 483 1999
+rect 291 1959 483 1965
+rect 549 1999 741 2005
+rect 549 1965 561 1999
+rect 729 1965 741 1999
+rect 549 1959 741 1965
+rect 807 1999 999 2005
+rect 807 1965 819 1999
+rect 987 1965 999 1999
+rect 807 1959 999 1965
+rect 1065 1999 1257 2005
+rect 1065 1965 1077 1999
+rect 1245 1965 1257 1999
+rect 1065 1959 1257 1965
+rect -1313 1915 -1267 1927
+rect -1313 1139 -1307 1915
+rect -1273 1139 -1267 1915
+rect -1313 1127 -1267 1139
+rect -1055 1915 -1009 1927
+rect -1055 1139 -1049 1915
+rect -1015 1139 -1009 1915
+rect -1055 1127 -1009 1139
+rect -797 1915 -751 1927
+rect -797 1139 -791 1915
+rect -757 1139 -751 1915
+rect -797 1127 -751 1139
+rect -539 1915 -493 1927
+rect -539 1139 -533 1915
+rect -499 1139 -493 1915
+rect -539 1127 -493 1139
+rect -281 1915 -235 1927
+rect -281 1139 -275 1915
+rect -241 1139 -235 1915
+rect -281 1127 -235 1139
+rect -23 1915 23 1927
+rect -23 1139 -17 1915
+rect 17 1139 23 1915
+rect -23 1127 23 1139
+rect 235 1915 281 1927
+rect 235 1139 241 1915
+rect 275 1139 281 1915
+rect 235 1127 281 1139
+rect 493 1915 539 1927
+rect 493 1139 499 1915
+rect 533 1139 539 1915
+rect 493 1127 539 1139
+rect 751 1915 797 1927
+rect 751 1139 757 1915
+rect 791 1139 797 1915
+rect 751 1127 797 1139
+rect 1009 1915 1055 1927
+rect 1009 1139 1015 1915
+rect 1049 1139 1055 1915
+rect 1009 1127 1055 1139
+rect 1267 1915 1313 1927
+rect 1267 1139 1273 1915
+rect 1307 1139 1313 1915
+rect 1267 1127 1313 1139
+rect -1257 1089 -1065 1095
+rect -1257 1055 -1245 1089
+rect -1077 1055 -1065 1089
+rect -1257 1049 -1065 1055
+rect -999 1089 -807 1095
+rect -999 1055 -987 1089
+rect -819 1055 -807 1089
+rect -999 1049 -807 1055
+rect -741 1089 -549 1095
+rect -741 1055 -729 1089
+rect -561 1055 -549 1089
+rect -741 1049 -549 1055
+rect -483 1089 -291 1095
+rect -483 1055 -471 1089
+rect -303 1055 -291 1089
+rect -483 1049 -291 1055
+rect -225 1089 -33 1095
+rect -225 1055 -213 1089
+rect -45 1055 -33 1089
+rect -225 1049 -33 1055
+rect 33 1089 225 1095
+rect 33 1055 45 1089
+rect 213 1055 225 1089
+rect 33 1049 225 1055
+rect 291 1089 483 1095
+rect 291 1055 303 1089
+rect 471 1055 483 1089
+rect 291 1049 483 1055
+rect 549 1089 741 1095
+rect 549 1055 561 1089
+rect 729 1055 741 1089
+rect 549 1049 741 1055
+rect 807 1089 999 1095
+rect 807 1055 819 1089
+rect 987 1055 999 1089
+rect 807 1049 999 1055
+rect 1065 1089 1257 1095
+rect 1065 1055 1077 1089
+rect 1245 1055 1257 1089
+rect 1065 1049 1257 1055
+rect -1257 981 -1065 987
+rect -1257 947 -1245 981
+rect -1077 947 -1065 981
+rect -1257 941 -1065 947
+rect -999 981 -807 987
+rect -999 947 -987 981
+rect -819 947 -807 981
+rect -999 941 -807 947
+rect -741 981 -549 987
+rect -741 947 -729 981
+rect -561 947 -549 981
+rect -741 941 -549 947
+rect -483 981 -291 987
+rect -483 947 -471 981
+rect -303 947 -291 981
+rect -483 941 -291 947
+rect -225 981 -33 987
+rect -225 947 -213 981
+rect -45 947 -33 981
+rect -225 941 -33 947
+rect 33 981 225 987
+rect 33 947 45 981
+rect 213 947 225 981
+rect 33 941 225 947
+rect 291 981 483 987
+rect 291 947 303 981
+rect 471 947 483 981
+rect 291 941 483 947
+rect 549 981 741 987
+rect 549 947 561 981
+rect 729 947 741 981
+rect 549 941 741 947
+rect 807 981 999 987
+rect 807 947 819 981
+rect 987 947 999 981
+rect 807 941 999 947
+rect 1065 981 1257 987
+rect 1065 947 1077 981
+rect 1245 947 1257 981
+rect 1065 941 1257 947
+rect -1313 897 -1267 909
+rect -1313 121 -1307 897
+rect -1273 121 -1267 897
+rect -1313 109 -1267 121
+rect -1055 897 -1009 909
+rect -1055 121 -1049 897
+rect -1015 121 -1009 897
+rect -1055 109 -1009 121
+rect -797 897 -751 909
+rect -797 121 -791 897
+rect -757 121 -751 897
+rect -797 109 -751 121
+rect -539 897 -493 909
+rect -539 121 -533 897
+rect -499 121 -493 897
+rect -539 109 -493 121
+rect -281 897 -235 909
+rect -281 121 -275 897
+rect -241 121 -235 897
+rect -281 109 -235 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 235 897 281 909
+rect 235 121 241 897
+rect 275 121 281 897
+rect 235 109 281 121
+rect 493 897 539 909
+rect 493 121 499 897
+rect 533 121 539 897
+rect 493 109 539 121
+rect 751 897 797 909
+rect 751 121 757 897
+rect 791 121 797 897
+rect 751 109 797 121
+rect 1009 897 1055 909
+rect 1009 121 1015 897
+rect 1049 121 1055 897
+rect 1009 109 1055 121
+rect 1267 897 1313 909
+rect 1267 121 1273 897
+rect 1307 121 1313 897
+rect 1267 109 1313 121
+rect -1257 71 -1065 77
+rect -1257 37 -1245 71
+rect -1077 37 -1065 71
+rect -1257 31 -1065 37
+rect -999 71 -807 77
+rect -999 37 -987 71
+rect -819 37 -807 71
+rect -999 31 -807 37
+rect -741 71 -549 77
+rect -741 37 -729 71
+rect -561 37 -549 71
+rect -741 31 -549 37
+rect -483 71 -291 77
+rect -483 37 -471 71
+rect -303 37 -291 71
+rect -483 31 -291 37
+rect -225 71 -33 77
+rect -225 37 -213 71
+rect -45 37 -33 71
+rect -225 31 -33 37
+rect 33 71 225 77
+rect 33 37 45 71
+rect 213 37 225 71
+rect 33 31 225 37
+rect 291 71 483 77
+rect 291 37 303 71
+rect 471 37 483 71
+rect 291 31 483 37
+rect 549 71 741 77
+rect 549 37 561 71
+rect 729 37 741 71
+rect 549 31 741 37
+rect 807 71 999 77
+rect 807 37 819 71
+rect 987 37 999 71
+rect 807 31 999 37
+rect 1065 71 1257 77
+rect 1065 37 1077 71
+rect 1245 37 1257 71
+rect 1065 31 1257 37
+rect -1257 -37 -1065 -31
+rect -1257 -71 -1245 -37
+rect -1077 -71 -1065 -37
+rect -1257 -77 -1065 -71
+rect -999 -37 -807 -31
+rect -999 -71 -987 -37
+rect -819 -71 -807 -37
+rect -999 -77 -807 -71
+rect -741 -37 -549 -31
+rect -741 -71 -729 -37
+rect -561 -71 -549 -37
+rect -741 -77 -549 -71
+rect -483 -37 -291 -31
+rect -483 -71 -471 -37
+rect -303 -71 -291 -37
+rect -483 -77 -291 -71
+rect -225 -37 -33 -31
+rect -225 -71 -213 -37
+rect -45 -71 -33 -37
+rect -225 -77 -33 -71
+rect 33 -37 225 -31
+rect 33 -71 45 -37
+rect 213 -71 225 -37
+rect 33 -77 225 -71
+rect 291 -37 483 -31
+rect 291 -71 303 -37
+rect 471 -71 483 -37
+rect 291 -77 483 -71
+rect 549 -37 741 -31
+rect 549 -71 561 -37
+rect 729 -71 741 -37
+rect 549 -77 741 -71
+rect 807 -37 999 -31
+rect 807 -71 819 -37
+rect 987 -71 999 -37
+rect 807 -77 999 -71
+rect 1065 -37 1257 -31
+rect 1065 -71 1077 -37
+rect 1245 -71 1257 -37
+rect 1065 -77 1257 -71
+rect -1313 -121 -1267 -109
+rect -1313 -897 -1307 -121
+rect -1273 -897 -1267 -121
+rect -1313 -909 -1267 -897
+rect -1055 -121 -1009 -109
+rect -1055 -897 -1049 -121
+rect -1015 -897 -1009 -121
+rect -1055 -909 -1009 -897
+rect -797 -121 -751 -109
+rect -797 -897 -791 -121
+rect -757 -897 -751 -121
+rect -797 -909 -751 -897
+rect -539 -121 -493 -109
+rect -539 -897 -533 -121
+rect -499 -897 -493 -121
+rect -539 -909 -493 -897
+rect -281 -121 -235 -109
+rect -281 -897 -275 -121
+rect -241 -897 -235 -121
+rect -281 -909 -235 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 235 -121 281 -109
+rect 235 -897 241 -121
+rect 275 -897 281 -121
+rect 235 -909 281 -897
+rect 493 -121 539 -109
+rect 493 -897 499 -121
+rect 533 -897 539 -121
+rect 493 -909 539 -897
+rect 751 -121 797 -109
+rect 751 -897 757 -121
+rect 791 -897 797 -121
+rect 751 -909 797 -897
+rect 1009 -121 1055 -109
+rect 1009 -897 1015 -121
+rect 1049 -897 1055 -121
+rect 1009 -909 1055 -897
+rect 1267 -121 1313 -109
+rect 1267 -897 1273 -121
+rect 1307 -897 1313 -121
+rect 1267 -909 1313 -897
+rect -1257 -947 -1065 -941
+rect -1257 -981 -1245 -947
+rect -1077 -981 -1065 -947
+rect -1257 -987 -1065 -981
+rect -999 -947 -807 -941
+rect -999 -981 -987 -947
+rect -819 -981 -807 -947
+rect -999 -987 -807 -981
+rect -741 -947 -549 -941
+rect -741 -981 -729 -947
+rect -561 -981 -549 -947
+rect -741 -987 -549 -981
+rect -483 -947 -291 -941
+rect -483 -981 -471 -947
+rect -303 -981 -291 -947
+rect -483 -987 -291 -981
+rect -225 -947 -33 -941
+rect -225 -981 -213 -947
+rect -45 -981 -33 -947
+rect -225 -987 -33 -981
+rect 33 -947 225 -941
+rect 33 -981 45 -947
+rect 213 -981 225 -947
+rect 33 -987 225 -981
+rect 291 -947 483 -941
+rect 291 -981 303 -947
+rect 471 -981 483 -947
+rect 291 -987 483 -981
+rect 549 -947 741 -941
+rect 549 -981 561 -947
+rect 729 -981 741 -947
+rect 549 -987 741 -981
+rect 807 -947 999 -941
+rect 807 -981 819 -947
+rect 987 -981 999 -947
+rect 807 -987 999 -981
+rect 1065 -947 1257 -941
+rect 1065 -981 1077 -947
+rect 1245 -981 1257 -947
+rect 1065 -987 1257 -981
+rect -1257 -1055 -1065 -1049
+rect -1257 -1089 -1245 -1055
+rect -1077 -1089 -1065 -1055
+rect -1257 -1095 -1065 -1089
+rect -999 -1055 -807 -1049
+rect -999 -1089 -987 -1055
+rect -819 -1089 -807 -1055
+rect -999 -1095 -807 -1089
+rect -741 -1055 -549 -1049
+rect -741 -1089 -729 -1055
+rect -561 -1089 -549 -1055
+rect -741 -1095 -549 -1089
+rect -483 -1055 -291 -1049
+rect -483 -1089 -471 -1055
+rect -303 -1089 -291 -1055
+rect -483 -1095 -291 -1089
+rect -225 -1055 -33 -1049
+rect -225 -1089 -213 -1055
+rect -45 -1089 -33 -1055
+rect -225 -1095 -33 -1089
+rect 33 -1055 225 -1049
+rect 33 -1089 45 -1055
+rect 213 -1089 225 -1055
+rect 33 -1095 225 -1089
+rect 291 -1055 483 -1049
+rect 291 -1089 303 -1055
+rect 471 -1089 483 -1055
+rect 291 -1095 483 -1089
+rect 549 -1055 741 -1049
+rect 549 -1089 561 -1055
+rect 729 -1089 741 -1055
+rect 549 -1095 741 -1089
+rect 807 -1055 999 -1049
+rect 807 -1089 819 -1055
+rect 987 -1089 999 -1055
+rect 807 -1095 999 -1089
+rect 1065 -1055 1257 -1049
+rect 1065 -1089 1077 -1055
+rect 1245 -1089 1257 -1055
+rect 1065 -1095 1257 -1089
+rect -1313 -1139 -1267 -1127
+rect -1313 -1915 -1307 -1139
+rect -1273 -1915 -1267 -1139
+rect -1313 -1927 -1267 -1915
+rect -1055 -1139 -1009 -1127
+rect -1055 -1915 -1049 -1139
+rect -1015 -1915 -1009 -1139
+rect -1055 -1927 -1009 -1915
+rect -797 -1139 -751 -1127
+rect -797 -1915 -791 -1139
+rect -757 -1915 -751 -1139
+rect -797 -1927 -751 -1915
+rect -539 -1139 -493 -1127
+rect -539 -1915 -533 -1139
+rect -499 -1915 -493 -1139
+rect -539 -1927 -493 -1915
+rect -281 -1139 -235 -1127
+rect -281 -1915 -275 -1139
+rect -241 -1915 -235 -1139
+rect -281 -1927 -235 -1915
+rect -23 -1139 23 -1127
+rect -23 -1915 -17 -1139
+rect 17 -1915 23 -1139
+rect -23 -1927 23 -1915
+rect 235 -1139 281 -1127
+rect 235 -1915 241 -1139
+rect 275 -1915 281 -1139
+rect 235 -1927 281 -1915
+rect 493 -1139 539 -1127
+rect 493 -1915 499 -1139
+rect 533 -1915 539 -1139
+rect 493 -1927 539 -1915
+rect 751 -1139 797 -1127
+rect 751 -1915 757 -1139
+rect 791 -1915 797 -1139
+rect 751 -1927 797 -1915
+rect 1009 -1139 1055 -1127
+rect 1009 -1915 1015 -1139
+rect 1049 -1915 1055 -1139
+rect 1009 -1927 1055 -1915
+rect 1267 -1139 1313 -1127
+rect 1267 -1915 1273 -1139
+rect 1307 -1915 1313 -1139
+rect 1267 -1927 1313 -1915
+rect -1257 -1965 -1065 -1959
+rect -1257 -1999 -1245 -1965
+rect -1077 -1999 -1065 -1965
+rect -1257 -2005 -1065 -1999
+rect -999 -1965 -807 -1959
+rect -999 -1999 -987 -1965
+rect -819 -1999 -807 -1965
+rect -999 -2005 -807 -1999
+rect -741 -1965 -549 -1959
+rect -741 -1999 -729 -1965
+rect -561 -1999 -549 -1965
+rect -741 -2005 -549 -1999
+rect -483 -1965 -291 -1959
+rect -483 -1999 -471 -1965
+rect -303 -1999 -291 -1965
+rect -483 -2005 -291 -1999
+rect -225 -1965 -33 -1959
+rect -225 -1999 -213 -1965
+rect -45 -1999 -33 -1965
+rect -225 -2005 -33 -1999
+rect 33 -1965 225 -1959
+rect 33 -1999 45 -1965
+rect 213 -1999 225 -1965
+rect 33 -2005 225 -1999
+rect 291 -1965 483 -1959
+rect 291 -1999 303 -1965
+rect 471 -1999 483 -1965
+rect 291 -2005 483 -1999
+rect 549 -1965 741 -1959
+rect 549 -1999 561 -1965
+rect 729 -1999 741 -1965
+rect 549 -2005 741 -1999
+rect 807 -1965 999 -1959
+rect 807 -1999 819 -1965
+rect 987 -1999 999 -1965
+rect 807 -2005 999 -1999
+rect 1065 -1965 1257 -1959
+rect 1065 -1999 1077 -1965
+rect 1245 -1999 1257 -1965
+rect 1065 -2005 1257 -1999
+<< properties >>
+string FIXED_BBOX -1404 -2084 1404 2084
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 1 m 4 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_ZRXZ49.mag b/mag/isource/sky130_fd_pr__nfet_01v8_ZRXZ49.mag
new file mode 100644
index 0000000..5056564
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_ZRXZ49.mag
@@ -0,0 +1,806 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645462850
+<< pwell >>
+rect -6457 -1119 6457 1119
+<< nmos >>
+rect -6261 109 -5061 909
+rect -5003 109 -3803 909
+rect -3745 109 -2545 909
+rect -2487 109 -1287 909
+rect -1229 109 -29 909
+rect 29 109 1229 909
+rect 1287 109 2487 909
+rect 2545 109 3745 909
+rect 3803 109 5003 909
+rect 5061 109 6261 909
+rect -6261 -909 -5061 -109
+rect -5003 -909 -3803 -109
+rect -3745 -909 -2545 -109
+rect -2487 -909 -1287 -109
+rect -1229 -909 -29 -109
+rect 29 -909 1229 -109
+rect 1287 -909 2487 -109
+rect 2545 -909 3745 -109
+rect 3803 -909 5003 -109
+rect 5061 -909 6261 -109
+<< ndiff >>
+rect -6319 897 -6261 909
+rect -6319 121 -6307 897
+rect -6273 121 -6261 897
+rect -6319 109 -6261 121
+rect -5061 897 -5003 909
+rect -5061 121 -5049 897
+rect -5015 121 -5003 897
+rect -5061 109 -5003 121
+rect -3803 897 -3745 909
+rect -3803 121 -3791 897
+rect -3757 121 -3745 897
+rect -3803 109 -3745 121
+rect -2545 897 -2487 909
+rect -2545 121 -2533 897
+rect -2499 121 -2487 897
+rect -2545 109 -2487 121
+rect -1287 897 -1229 909
+rect -1287 121 -1275 897
+rect -1241 121 -1229 897
+rect -1287 109 -1229 121
+rect -29 897 29 909
+rect -29 121 -17 897
+rect 17 121 29 897
+rect -29 109 29 121
+rect 1229 897 1287 909
+rect 1229 121 1241 897
+rect 1275 121 1287 897
+rect 1229 109 1287 121
+rect 2487 897 2545 909
+rect 2487 121 2499 897
+rect 2533 121 2545 897
+rect 2487 109 2545 121
+rect 3745 897 3803 909
+rect 3745 121 3757 897
+rect 3791 121 3803 897
+rect 3745 109 3803 121
+rect 5003 897 5061 909
+rect 5003 121 5015 897
+rect 5049 121 5061 897
+rect 5003 109 5061 121
+rect 6261 897 6319 909
+rect 6261 121 6273 897
+rect 6307 121 6319 897
+rect 6261 109 6319 121
+rect -6319 -121 -6261 -109
+rect -6319 -897 -6307 -121
+rect -6273 -897 -6261 -121
+rect -6319 -909 -6261 -897
+rect -5061 -121 -5003 -109
+rect -5061 -897 -5049 -121
+rect -5015 -897 -5003 -121
+rect -5061 -909 -5003 -897
+rect -3803 -121 -3745 -109
+rect -3803 -897 -3791 -121
+rect -3757 -897 -3745 -121
+rect -3803 -909 -3745 -897
+rect -2545 -121 -2487 -109
+rect -2545 -897 -2533 -121
+rect -2499 -897 -2487 -121
+rect -2545 -909 -2487 -897
+rect -1287 -121 -1229 -109
+rect -1287 -897 -1275 -121
+rect -1241 -897 -1229 -121
+rect -1287 -909 -1229 -897
+rect -29 -121 29 -109
+rect -29 -897 -17 -121
+rect 17 -897 29 -121
+rect -29 -909 29 -897
+rect 1229 -121 1287 -109
+rect 1229 -897 1241 -121
+rect 1275 -897 1287 -121
+rect 1229 -909 1287 -897
+rect 2487 -121 2545 -109
+rect 2487 -897 2499 -121
+rect 2533 -897 2545 -121
+rect 2487 -909 2545 -897
+rect 3745 -121 3803 -109
+rect 3745 -897 3757 -121
+rect 3791 -897 3803 -121
+rect 3745 -909 3803 -897
+rect 5003 -121 5061 -109
+rect 5003 -897 5015 -121
+rect 5049 -897 5061 -121
+rect 5003 -909 5061 -897
+rect 6261 -121 6319 -109
+rect 6261 -897 6273 -121
+rect 6307 -897 6319 -121
+rect 6261 -909 6319 -897
+<< ndiffc >>
+rect -6307 121 -6273 897
+rect -5049 121 -5015 897
+rect -3791 121 -3757 897
+rect -2533 121 -2499 897
+rect -1275 121 -1241 897
+rect -17 121 17 897
+rect 1241 121 1275 897
+rect 2499 121 2533 897
+rect 3757 121 3791 897
+rect 5015 121 5049 897
+rect 6273 121 6307 897
+rect -6307 -897 -6273 -121
+rect -5049 -897 -5015 -121
+rect -3791 -897 -3757 -121
+rect -2533 -897 -2499 -121
+rect -1275 -897 -1241 -121
+rect -17 -897 17 -121
+rect 1241 -897 1275 -121
+rect 2499 -897 2533 -121
+rect 3757 -897 3791 -121
+rect 5015 -897 5049 -121
+rect 6273 -897 6307 -121
+<< psubdiff >>
+rect -6421 1049 -6325 1083
+rect 6325 1049 6421 1083
+rect -6421 987 -6387 1049
+rect 6387 987 6421 1049
+rect -6421 -1049 -6387 -987
+rect 6387 -1049 6421 -987
+rect -6421 -1083 -6325 -1049
+rect 6325 -1083 6421 -1049
+<< psubdiffcont >>
+rect -6325 1049 6325 1083
+rect -6421 -987 -6387 987
+rect 6387 -987 6421 987
+rect -6325 -1083 6325 -1049
+<< poly >>
+rect -6261 981 -5061 997
+rect -6261 947 -6245 981
+rect -5077 947 -5061 981
+rect -6261 909 -5061 947
+rect -5003 981 -3803 997
+rect -5003 947 -4987 981
+rect -3819 947 -3803 981
+rect -5003 909 -3803 947
+rect -3745 981 -2545 997
+rect -3745 947 -3729 981
+rect -2561 947 -2545 981
+rect -3745 909 -2545 947
+rect -2487 981 -1287 997
+rect -2487 947 -2471 981
+rect -1303 947 -1287 981
+rect -2487 909 -1287 947
+rect -1229 981 -29 997
+rect -1229 947 -1213 981
+rect -45 947 -29 981
+rect -1229 909 -29 947
+rect 29 981 1229 997
+rect 29 947 45 981
+rect 1213 947 1229 981
+rect 29 909 1229 947
+rect 1287 981 2487 997
+rect 1287 947 1303 981
+rect 2471 947 2487 981
+rect 1287 909 2487 947
+rect 2545 981 3745 997
+rect 2545 947 2561 981
+rect 3729 947 3745 981
+rect 2545 909 3745 947
+rect 3803 981 5003 997
+rect 3803 947 3819 981
+rect 4987 947 5003 981
+rect 3803 909 5003 947
+rect 5061 981 6261 997
+rect 5061 947 5077 981
+rect 6245 947 6261 981
+rect 5061 909 6261 947
+rect -6261 71 -5061 109
+rect -6261 37 -6245 71
+rect -5077 37 -5061 71
+rect -6261 21 -5061 37
+rect -5003 71 -3803 109
+rect -5003 37 -4987 71
+rect -3819 37 -3803 71
+rect -5003 21 -3803 37
+rect -3745 71 -2545 109
+rect -3745 37 -3729 71
+rect -2561 37 -2545 71
+rect -3745 21 -2545 37
+rect -2487 71 -1287 109
+rect -2487 37 -2471 71
+rect -1303 37 -1287 71
+rect -2487 21 -1287 37
+rect -1229 71 -29 109
+rect -1229 37 -1213 71
+rect -45 37 -29 71
+rect -1229 21 -29 37
+rect 29 71 1229 109
+rect 29 37 45 71
+rect 1213 37 1229 71
+rect 29 21 1229 37
+rect 1287 71 2487 109
+rect 1287 37 1303 71
+rect 2471 37 2487 71
+rect 1287 21 2487 37
+rect 2545 71 3745 109
+rect 2545 37 2561 71
+rect 3729 37 3745 71
+rect 2545 21 3745 37
+rect 3803 71 5003 109
+rect 3803 37 3819 71
+rect 4987 37 5003 71
+rect 3803 21 5003 37
+rect 5061 71 6261 109
+rect 5061 37 5077 71
+rect 6245 37 6261 71
+rect 5061 21 6261 37
+rect -6261 -37 -5061 -21
+rect -6261 -71 -6245 -37
+rect -5077 -71 -5061 -37
+rect -6261 -109 -5061 -71
+rect -5003 -37 -3803 -21
+rect -5003 -71 -4987 -37
+rect -3819 -71 -3803 -37
+rect -5003 -109 -3803 -71
+rect -3745 -37 -2545 -21
+rect -3745 -71 -3729 -37
+rect -2561 -71 -2545 -37
+rect -3745 -109 -2545 -71
+rect -2487 -37 -1287 -21
+rect -2487 -71 -2471 -37
+rect -1303 -71 -1287 -37
+rect -2487 -109 -1287 -71
+rect -1229 -37 -29 -21
+rect -1229 -71 -1213 -37
+rect -45 -71 -29 -37
+rect -1229 -109 -29 -71
+rect 29 -37 1229 -21
+rect 29 -71 45 -37
+rect 1213 -71 1229 -37
+rect 29 -109 1229 -71
+rect 1287 -37 2487 -21
+rect 1287 -71 1303 -37
+rect 2471 -71 2487 -37
+rect 1287 -109 2487 -71
+rect 2545 -37 3745 -21
+rect 2545 -71 2561 -37
+rect 3729 -71 3745 -37
+rect 2545 -109 3745 -71
+rect 3803 -37 5003 -21
+rect 3803 -71 3819 -37
+rect 4987 -71 5003 -37
+rect 3803 -109 5003 -71
+rect 5061 -37 6261 -21
+rect 5061 -71 5077 -37
+rect 6245 -71 6261 -37
+rect 5061 -109 6261 -71
+rect -6261 -947 -5061 -909
+rect -6261 -981 -6245 -947
+rect -5077 -981 -5061 -947
+rect -6261 -997 -5061 -981
+rect -5003 -947 -3803 -909
+rect -5003 -981 -4987 -947
+rect -3819 -981 -3803 -947
+rect -5003 -997 -3803 -981
+rect -3745 -947 -2545 -909
+rect -3745 -981 -3729 -947
+rect -2561 -981 -2545 -947
+rect -3745 -997 -2545 -981
+rect -2487 -947 -1287 -909
+rect -2487 -981 -2471 -947
+rect -1303 -981 -1287 -947
+rect -2487 -997 -1287 -981
+rect -1229 -947 -29 -909
+rect -1229 -981 -1213 -947
+rect -45 -981 -29 -947
+rect -1229 -997 -29 -981
+rect 29 -947 1229 -909
+rect 29 -981 45 -947
+rect 1213 -981 1229 -947
+rect 29 -997 1229 -981
+rect 1287 -947 2487 -909
+rect 1287 -981 1303 -947
+rect 2471 -981 2487 -947
+rect 1287 -997 2487 -981
+rect 2545 -947 3745 -909
+rect 2545 -981 2561 -947
+rect 3729 -981 3745 -947
+rect 2545 -997 3745 -981
+rect 3803 -947 5003 -909
+rect 3803 -981 3819 -947
+rect 4987 -981 5003 -947
+rect 3803 -997 5003 -981
+rect 5061 -947 6261 -909
+rect 5061 -981 5077 -947
+rect 6245 -981 6261 -947
+rect 5061 -997 6261 -981
+<< polycont >>
+rect -6245 947 -5077 981
+rect -4987 947 -3819 981
+rect -3729 947 -2561 981
+rect -2471 947 -1303 981
+rect -1213 947 -45 981
+rect 45 947 1213 981
+rect 1303 947 2471 981
+rect 2561 947 3729 981
+rect 3819 947 4987 981
+rect 5077 947 6245 981
+rect -6245 37 -5077 71
+rect -4987 37 -3819 71
+rect -3729 37 -2561 71
+rect -2471 37 -1303 71
+rect -1213 37 -45 71
+rect 45 37 1213 71
+rect 1303 37 2471 71
+rect 2561 37 3729 71
+rect 3819 37 4987 71
+rect 5077 37 6245 71
+rect -6245 -71 -5077 -37
+rect -4987 -71 -3819 -37
+rect -3729 -71 -2561 -37
+rect -2471 -71 -1303 -37
+rect -1213 -71 -45 -37
+rect 45 -71 1213 -37
+rect 1303 -71 2471 -37
+rect 2561 -71 3729 -37
+rect 3819 -71 4987 -37
+rect 5077 -71 6245 -37
+rect -6245 -981 -5077 -947
+rect -4987 -981 -3819 -947
+rect -3729 -981 -2561 -947
+rect -2471 -981 -1303 -947
+rect -1213 -981 -45 -947
+rect 45 -981 1213 -947
+rect 1303 -981 2471 -947
+rect 2561 -981 3729 -947
+rect 3819 -981 4987 -947
+rect 5077 -981 6245 -947
+<< locali >>
+rect -6421 1049 -6325 1083
+rect 6325 1049 6421 1083
+rect -6421 987 -6387 1049
+rect 6387 987 6421 1049
+rect -6261 947 -6245 981
+rect -5077 947 -5061 981
+rect -5003 947 -4987 981
+rect -3819 947 -3803 981
+rect -3745 947 -3729 981
+rect -2561 947 -2545 981
+rect -2487 947 -2471 981
+rect -1303 947 -1287 981
+rect -1229 947 -1213 981
+rect -45 947 -29 981
+rect 29 947 45 981
+rect 1213 947 1229 981
+rect 1287 947 1303 981
+rect 2471 947 2487 981
+rect 2545 947 2561 981
+rect 3729 947 3745 981
+rect 3803 947 3819 981
+rect 4987 947 5003 981
+rect 5061 947 5077 981
+rect 6245 947 6261 981
+rect -6307 897 -6273 913
+rect -6307 105 -6273 121
+rect -5049 897 -5015 913
+rect -5049 105 -5015 121
+rect -3791 897 -3757 913
+rect -3791 105 -3757 121
+rect -2533 897 -2499 913
+rect -2533 105 -2499 121
+rect -1275 897 -1241 913
+rect -1275 105 -1241 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 1241 897 1275 913
+rect 1241 105 1275 121
+rect 2499 897 2533 913
+rect 2499 105 2533 121
+rect 3757 897 3791 913
+rect 3757 105 3791 121
+rect 5015 897 5049 913
+rect 5015 105 5049 121
+rect 6273 897 6307 913
+rect 6273 105 6307 121
+rect -6261 37 -6245 71
+rect -5077 37 -5061 71
+rect -5003 37 -4987 71
+rect -3819 37 -3803 71
+rect -3745 37 -3729 71
+rect -2561 37 -2545 71
+rect -2487 37 -2471 71
+rect -1303 37 -1287 71
+rect -1229 37 -1213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 1213 37 1229 71
+rect 1287 37 1303 71
+rect 2471 37 2487 71
+rect 2545 37 2561 71
+rect 3729 37 3745 71
+rect 3803 37 3819 71
+rect 4987 37 5003 71
+rect 5061 37 5077 71
+rect 6245 37 6261 71
+rect -6261 -71 -6245 -37
+rect -5077 -71 -5061 -37
+rect -5003 -71 -4987 -37
+rect -3819 -71 -3803 -37
+rect -3745 -71 -3729 -37
+rect -2561 -71 -2545 -37
+rect -2487 -71 -2471 -37
+rect -1303 -71 -1287 -37
+rect -1229 -71 -1213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 1213 -71 1229 -37
+rect 1287 -71 1303 -37
+rect 2471 -71 2487 -37
+rect 2545 -71 2561 -37
+rect 3729 -71 3745 -37
+rect 3803 -71 3819 -37
+rect 4987 -71 5003 -37
+rect 5061 -71 5077 -37
+rect 6245 -71 6261 -37
+rect -6307 -121 -6273 -105
+rect -6307 -913 -6273 -897
+rect -5049 -121 -5015 -105
+rect -5049 -913 -5015 -897
+rect -3791 -121 -3757 -105
+rect -3791 -913 -3757 -897
+rect -2533 -121 -2499 -105
+rect -2533 -913 -2499 -897
+rect -1275 -121 -1241 -105
+rect -1275 -913 -1241 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 1241 -121 1275 -105
+rect 1241 -913 1275 -897
+rect 2499 -121 2533 -105
+rect 2499 -913 2533 -897
+rect 3757 -121 3791 -105
+rect 3757 -913 3791 -897
+rect 5015 -121 5049 -105
+rect 5015 -913 5049 -897
+rect 6273 -121 6307 -105
+rect 6273 -913 6307 -897
+rect -6261 -981 -6245 -947
+rect -5077 -981 -5061 -947
+rect -5003 -981 -4987 -947
+rect -3819 -981 -3803 -947
+rect -3745 -981 -3729 -947
+rect -2561 -981 -2545 -947
+rect -2487 -981 -2471 -947
+rect -1303 -981 -1287 -947
+rect -1229 -981 -1213 -947
+rect -45 -981 -29 -947
+rect 29 -981 45 -947
+rect 1213 -981 1229 -947
+rect 1287 -981 1303 -947
+rect 2471 -981 2487 -947
+rect 2545 -981 2561 -947
+rect 3729 -981 3745 -947
+rect 3803 -981 3819 -947
+rect 4987 -981 5003 -947
+rect 5061 -981 5077 -947
+rect 6245 -981 6261 -947
+rect -6421 -1049 -6387 -987
+rect 6387 -1049 6421 -987
+rect -6421 -1083 -6325 -1049
+rect 6325 -1083 6421 -1049
+<< viali >>
+rect -6245 947 -5077 981
+rect -4987 947 -3819 981
+rect -3729 947 -2561 981
+rect -2471 947 -1303 981
+rect -1213 947 -45 981
+rect 45 947 1213 981
+rect 1303 947 2471 981
+rect 2561 947 3729 981
+rect 3819 947 4987 981
+rect 5077 947 6245 981
+rect -6307 121 -6273 897
+rect -5049 121 -5015 897
+rect -3791 121 -3757 897
+rect -2533 121 -2499 897
+rect -1275 121 -1241 897
+rect -17 121 17 897
+rect 1241 121 1275 897
+rect 2499 121 2533 897
+rect 3757 121 3791 897
+rect 5015 121 5049 897
+rect 6273 121 6307 897
+rect -6245 37 -5077 71
+rect -4987 37 -3819 71
+rect -3729 37 -2561 71
+rect -2471 37 -1303 71
+rect -1213 37 -45 71
+rect 45 37 1213 71
+rect 1303 37 2471 71
+rect 2561 37 3729 71
+rect 3819 37 4987 71
+rect 5077 37 6245 71
+rect -6245 -71 -5077 -37
+rect -4987 -71 -3819 -37
+rect -3729 -71 -2561 -37
+rect -2471 -71 -1303 -37
+rect -1213 -71 -45 -37
+rect 45 -71 1213 -37
+rect 1303 -71 2471 -37
+rect 2561 -71 3729 -37
+rect 3819 -71 4987 -37
+rect 5077 -71 6245 -37
+rect -6307 -897 -6273 -121
+rect -5049 -897 -5015 -121
+rect -3791 -897 -3757 -121
+rect -2533 -897 -2499 -121
+rect -1275 -897 -1241 -121
+rect -17 -897 17 -121
+rect 1241 -897 1275 -121
+rect 2499 -897 2533 -121
+rect 3757 -897 3791 -121
+rect 5015 -897 5049 -121
+rect 6273 -897 6307 -121
+rect -6245 -981 -5077 -947
+rect -4987 -981 -3819 -947
+rect -3729 -981 -2561 -947
+rect -2471 -981 -1303 -947
+rect -1213 -981 -45 -947
+rect 45 -981 1213 -947
+rect 1303 -981 2471 -947
+rect 2561 -981 3729 -947
+rect 3819 -981 4987 -947
+rect 5077 -981 6245 -947
+<< metal1 >>
+rect -6257 981 -5065 987
+rect -6257 947 -6245 981
+rect -5077 947 -5065 981
+rect -6257 941 -5065 947
+rect -4999 981 -3807 987
+rect -4999 947 -4987 981
+rect -3819 947 -3807 981
+rect -4999 941 -3807 947
+rect -3741 981 -2549 987
+rect -3741 947 -3729 981
+rect -2561 947 -2549 981
+rect -3741 941 -2549 947
+rect -2483 981 -1291 987
+rect -2483 947 -2471 981
+rect -1303 947 -1291 981
+rect -2483 941 -1291 947
+rect -1225 981 -33 987
+rect -1225 947 -1213 981
+rect -45 947 -33 981
+rect -1225 941 -33 947
+rect 33 981 1225 987
+rect 33 947 45 981
+rect 1213 947 1225 981
+rect 33 941 1225 947
+rect 1291 981 2483 987
+rect 1291 947 1303 981
+rect 2471 947 2483 981
+rect 1291 941 2483 947
+rect 2549 981 3741 987
+rect 2549 947 2561 981
+rect 3729 947 3741 981
+rect 2549 941 3741 947
+rect 3807 981 4999 987
+rect 3807 947 3819 981
+rect 4987 947 4999 981
+rect 3807 941 4999 947
+rect 5065 981 6257 987
+rect 5065 947 5077 981
+rect 6245 947 6257 981
+rect 5065 941 6257 947
+rect -6313 897 -6267 909
+rect -6313 121 -6307 897
+rect -6273 121 -6267 897
+rect -6313 109 -6267 121
+rect -5055 897 -5009 909
+rect -5055 121 -5049 897
+rect -5015 121 -5009 897
+rect -5055 109 -5009 121
+rect -3797 897 -3751 909
+rect -3797 121 -3791 897
+rect -3757 121 -3751 897
+rect -3797 109 -3751 121
+rect -2539 897 -2493 909
+rect -2539 121 -2533 897
+rect -2499 121 -2493 897
+rect -2539 109 -2493 121
+rect -1281 897 -1235 909
+rect -1281 121 -1275 897
+rect -1241 121 -1235 897
+rect -1281 109 -1235 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 1235 897 1281 909
+rect 1235 121 1241 897
+rect 1275 121 1281 897
+rect 1235 109 1281 121
+rect 2493 897 2539 909
+rect 2493 121 2499 897
+rect 2533 121 2539 897
+rect 2493 109 2539 121
+rect 3751 897 3797 909
+rect 3751 121 3757 897
+rect 3791 121 3797 897
+rect 3751 109 3797 121
+rect 5009 897 5055 909
+rect 5009 121 5015 897
+rect 5049 121 5055 897
+rect 5009 109 5055 121
+rect 6267 897 6313 909
+rect 6267 121 6273 897
+rect 6307 121 6313 897
+rect 6267 109 6313 121
+rect -6257 71 -5065 77
+rect -6257 37 -6245 71
+rect -5077 37 -5065 71
+rect -6257 31 -5065 37
+rect -4999 71 -3807 77
+rect -4999 37 -4987 71
+rect -3819 37 -3807 71
+rect -4999 31 -3807 37
+rect -3741 71 -2549 77
+rect -3741 37 -3729 71
+rect -2561 37 -2549 71
+rect -3741 31 -2549 37
+rect -2483 71 -1291 77
+rect -2483 37 -2471 71
+rect -1303 37 -1291 71
+rect -2483 31 -1291 37
+rect -1225 71 -33 77
+rect -1225 37 -1213 71
+rect -45 37 -33 71
+rect -1225 31 -33 37
+rect 33 71 1225 77
+rect 33 37 45 71
+rect 1213 37 1225 71
+rect 33 31 1225 37
+rect 1291 71 2483 77
+rect 1291 37 1303 71
+rect 2471 37 2483 71
+rect 1291 31 2483 37
+rect 2549 71 3741 77
+rect 2549 37 2561 71
+rect 3729 37 3741 71
+rect 2549 31 3741 37
+rect 3807 71 4999 77
+rect 3807 37 3819 71
+rect 4987 37 4999 71
+rect 3807 31 4999 37
+rect 5065 71 6257 77
+rect 5065 37 5077 71
+rect 6245 37 6257 71
+rect 5065 31 6257 37
+rect -6257 -37 -5065 -31
+rect -6257 -71 -6245 -37
+rect -5077 -71 -5065 -37
+rect -6257 -77 -5065 -71
+rect -4999 -37 -3807 -31
+rect -4999 -71 -4987 -37
+rect -3819 -71 -3807 -37
+rect -4999 -77 -3807 -71
+rect -3741 -37 -2549 -31
+rect -3741 -71 -3729 -37
+rect -2561 -71 -2549 -37
+rect -3741 -77 -2549 -71
+rect -2483 -37 -1291 -31
+rect -2483 -71 -2471 -37
+rect -1303 -71 -1291 -37
+rect -2483 -77 -1291 -71
+rect -1225 -37 -33 -31
+rect -1225 -71 -1213 -37
+rect -45 -71 -33 -37
+rect -1225 -77 -33 -71
+rect 33 -37 1225 -31
+rect 33 -71 45 -37
+rect 1213 -71 1225 -37
+rect 33 -77 1225 -71
+rect 1291 -37 2483 -31
+rect 1291 -71 1303 -37
+rect 2471 -71 2483 -37
+rect 1291 -77 2483 -71
+rect 2549 -37 3741 -31
+rect 2549 -71 2561 -37
+rect 3729 -71 3741 -37
+rect 2549 -77 3741 -71
+rect 3807 -37 4999 -31
+rect 3807 -71 3819 -37
+rect 4987 -71 4999 -37
+rect 3807 -77 4999 -71
+rect 5065 -37 6257 -31
+rect 5065 -71 5077 -37
+rect 6245 -71 6257 -37
+rect 5065 -77 6257 -71
+rect -6313 -121 -6267 -109
+rect -6313 -897 -6307 -121
+rect -6273 -897 -6267 -121
+rect -6313 -909 -6267 -897
+rect -5055 -121 -5009 -109
+rect -5055 -897 -5049 -121
+rect -5015 -897 -5009 -121
+rect -5055 -909 -5009 -897
+rect -3797 -121 -3751 -109
+rect -3797 -897 -3791 -121
+rect -3757 -897 -3751 -121
+rect -3797 -909 -3751 -897
+rect -2539 -121 -2493 -109
+rect -2539 -897 -2533 -121
+rect -2499 -897 -2493 -121
+rect -2539 -909 -2493 -897
+rect -1281 -121 -1235 -109
+rect -1281 -897 -1275 -121
+rect -1241 -897 -1235 -121
+rect -1281 -909 -1235 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 1235 -121 1281 -109
+rect 1235 -897 1241 -121
+rect 1275 -897 1281 -121
+rect 1235 -909 1281 -897
+rect 2493 -121 2539 -109
+rect 2493 -897 2499 -121
+rect 2533 -897 2539 -121
+rect 2493 -909 2539 -897
+rect 3751 -121 3797 -109
+rect 3751 -897 3757 -121
+rect 3791 -897 3797 -121
+rect 3751 -909 3797 -897
+rect 5009 -121 5055 -109
+rect 5009 -897 5015 -121
+rect 5049 -897 5055 -121
+rect 5009 -909 5055 -897
+rect 6267 -121 6313 -109
+rect 6267 -897 6273 -121
+rect 6307 -897 6313 -121
+rect 6267 -909 6313 -897
+rect -6257 -947 -5065 -941
+rect -6257 -981 -6245 -947
+rect -5077 -981 -5065 -947
+rect -6257 -987 -5065 -981
+rect -4999 -947 -3807 -941
+rect -4999 -981 -4987 -947
+rect -3819 -981 -3807 -947
+rect -4999 -987 -3807 -981
+rect -3741 -947 -2549 -941
+rect -3741 -981 -3729 -947
+rect -2561 -981 -2549 -947
+rect -3741 -987 -2549 -981
+rect -2483 -947 -1291 -941
+rect -2483 -981 -2471 -947
+rect -1303 -981 -1291 -947
+rect -2483 -987 -1291 -981
+rect -1225 -947 -33 -941
+rect -1225 -981 -1213 -947
+rect -45 -981 -33 -947
+rect -1225 -987 -33 -981
+rect 33 -947 1225 -941
+rect 33 -981 45 -947
+rect 1213 -981 1225 -947
+rect 33 -987 1225 -981
+rect 1291 -947 2483 -941
+rect 1291 -981 1303 -947
+rect 2471 -981 2483 -947
+rect 1291 -987 2483 -981
+rect 2549 -947 3741 -941
+rect 2549 -981 2561 -947
+rect 3729 -981 3741 -947
+rect 2549 -987 3741 -981
+rect 3807 -947 4999 -941
+rect 3807 -981 3819 -947
+rect 4987 -981 4999 -947
+rect 3807 -987 4999 -981
+rect 5065 -947 6257 -941
+rect 5065 -981 5077 -947
+rect 6245 -981 6257 -947
+rect 5065 -987 6257 -981
+<< properties >>
+string FIXED_BBOX -6404 -1066 6404 1066
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 4 l 6 m 2 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.ext b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.ext
new file mode 100644
index 0000000..b20c4ae
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.ext
@@ -0,0 +1,185 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_447_n909#" 1855 295.425 447 -909 ndif 0 0 0 0 0 0 0 0 49600 1724 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_351_n909#" 1761 12.2058 351 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_255_n909#" 1761 12.2058 255 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_159_n909#" 1761 12.2058 159 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_63_n909#" 1761 12.2058 63 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n909#" 1761 12.2058 -33 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n909#" 1761 12.2058 -129 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n909#" 1761 12.2058 -225 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n909#" 1761 12.2058 -321 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n909#" 1761 12.2058 -417 -909 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n509_n909#" 1855 295.176 -509 -909 ndif 0 0 0 0 0 0 0 0 49600 1724 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_303_n997#" 1481 116.534 303 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n87#" 1481 97.4628 399 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n997#" 1481 96.6422 111 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n87#" 1481 60.8133 207 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n997#" 1481 96.6422 -81 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n87#" 1481 60.8133 15 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n997#" 1481 96.6422 -273 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n87#" 1481 60.8133 -177 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n997#" 1481 133.546 -465 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n87#" 1481 80.9591 -369 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_109#" 1855 295.695 447 109 ndif 0 0 0 0 0 0 0 0 49600 1724 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_351_109#" 1761 12.4348 351 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_255_109#" 1761 12.4348 255 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_159_109#" 1761 12.4348 159 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_63_109#" 1761 12.4348 63 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_109#" 1761 12.4348 -33 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n129_109#" 1761 12.4348 -129 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n225_109#" 1761 12.4348 -225 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n321_109#" 1761 12.4348 -321 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n417_109#" 1761 12.4348 -417 109 ndif 0 0 0 0 0 0 0 0 52800 1732 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n509_109#" 1855 295.264 -509 109 ndif 0 0 0 0 0 0 0 0 49600 1724 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_399_21#" 1481 97.6694 399 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_21#" 1481 61.0199 207 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_931#" 1481 116.534 303 931 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_21#" 1481 61.0199 15 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_931#" 1481 96.6422 111 931 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_21#" 1481 61.0199 -177 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_931#" 1481 96.6422 -81 931 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_21#" 1481 81.1657 -369 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_931#" 1481 96.6422 -273 931 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_931#" 1481 133.546 -465 931 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29796 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n611_n1083#" 0 0 -611 -1083 ppd 0 0 0 0 0 0 0 0 0 0 225760 13280 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 225760 13280 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n225_109#" "a_n225_n909#" 12.3196
+cap "a_n81_931#" "a_15_21#" 14.1667
+cap "a_15_n87#" "a_n81_n997#" 14.1667
+cap "a_n33_109#" "a_63_109#" 955.303
+cap "a_63_n909#" "a_15_n87#" 6.25956
+cap "a_159_n909#" "a_255_n909#" 955.303
+cap "a_399_n87#" "a_207_n87#" 28.5878
+cap "a_351_n909#" "a_351_109#" 12.3196
+cap "a_n321_n909#" "a_n273_n997#" 6.25956
+cap "a_447_109#" "a_447_n909#" 12.3196
+cap "a_n273_931#" "a_n177_21#" 14.1667
+cap "a_n273_931#" "a_n465_931#" 28.5878
+cap "a_255_109#" "a_207_21#" 6.25956
+cap "a_n465_n997#" "a_n417_n909#" 6.25956
+cap "a_351_n909#" "a_303_n997#" 6.25956
+cap "a_n465_n997#" "a_n465_931#" 3.07229
+cap "a_159_n909#" "a_111_n997#" 6.25956
+cap "a_399_21#" "a_303_931#" 14.1667
+cap "a_n33_n909#" "a_n81_n997#" 6.25956
+cap "a_63_n909#" "a_n33_n909#" 955.303
+cap "a_n81_931#" "a_111_931#" 28.5878
+cap "a_351_109#" "a_447_109#" 955.303
+cap "a_n509_109#" "a_n465_931#" 6.25956
+cap "a_111_931#" "a_111_n997#" 3.07229
+cap "a_15_21#" "a_n177_21#" 28.5878
+cap "a_255_109#" "a_159_109#" 955.303
+cap "a_63_n909#" "a_159_n909#" 955.303
+cap "a_n369_21#" "a_n369_n87#" 86.2066
+cap "a_15_n87#" "a_207_n87#" 28.5878
+cap "a_n321_109#" "a_n417_109#" 955.303
+cap "a_303_n997#" "a_207_n87#" 14.1667
+cap "a_15_n87#" "a_15_21#" 86.2066
+cap "a_n129_109#" "a_n129_n909#" 12.3196
+cap "a_n177_n87#" "a_n81_n997#" 14.1667
+cap "a_63_n909#" "a_63_109#" 12.3196
+cap "a_n129_n909#" "a_n81_n997#" 6.25956
+cap "a_255_109#" "a_303_931#" 6.25956
+cap "a_207_21#" "a_207_n87#" 86.2066
+cap "a_15_n87#" "a_n33_n909#" 6.25956
+cap "a_n81_931#" "a_n33_109#" 6.25956
+cap "a_n417_n909#" "a_n369_n87#" 6.25956
+cap "a_n321_109#" "a_n321_n909#" 12.3196
+cap "a_n273_n997#" "a_n81_n997#" 28.5878
+cap "a_n417_109#" "a_n369_21#" 6.25956
+cap "a_207_21#" "a_15_21#" 28.5878
+cap "a_n177_n87#" "a_n177_21#" 86.2066
+cap "a_n129_109#" "a_n33_109#" 955.303
+cap "a_n465_n997#" "a_n369_n87#" 14.1667
+cap "a_351_109#" "a_303_931#" 6.25956
+cap "a_159_n909#" "a_207_n87#" 6.25956
+cap "a_15_n87#" "a_n177_n87#" 28.5878
+cap "a_207_21#" "a_159_109#" 6.25956
+cap "a_n417_109#" "a_n417_n909#" 12.3196
+cap "a_n417_109#" "a_n465_931#" 6.25956
+cap "a_303_n997#" "a_303_931#" 3.07229
+cap "a_n273_931#" "a_n273_n997#" 3.07229
+cap "a_399_21#" "a_399_n87#" 86.2066
+cap "a_n177_n87#" "a_n225_n909#" 6.25956
+cap "a_255_109#" "a_255_n909#" 12.3196
+cap "a_n321_109#" "a_n225_109#" 955.303
+cap "a_111_931#" "a_15_21#" 14.1667
+cap "a_n129_n909#" "a_n225_n909#" 955.303
+cap "a_n465_n997#" "a_n273_n997#" 28.5878
+cap "a_63_109#" "a_15_21#" 6.25956
+cap "a_111_931#" "a_207_21#" 14.1667
+cap "a_n417_n909#" "a_n321_n909#" 955.303
+cap "a_207_21#" "a_303_931#" 14.1667
+cap "a_159_n909#" "a_159_109#" 12.3196
+cap "a_n417_109#" "a_n509_109#" 955.303
+cap "a_n225_n909#" "a_n273_n997#" 6.25956
+cap "a_n129_109#" "a_n81_931#" 6.25956
+cap "a_n321_109#" "a_n369_21#" 6.25956
+cap "a_351_n909#" "a_255_n909#" 955.303
+cap "a_n129_109#" "a_n225_109#" 955.303
+cap "a_n81_931#" "a_n81_n997#" 3.07229
+cap "a_n33_n909#" "a_n129_n909#" 955.303
+cap "a_111_931#" "a_159_109#" 6.25956
+cap "a_111_n997#" "a_n81_n997#" 28.5878
+cap "a_63_n909#" "a_111_n997#" 6.25956
+cap "a_63_109#" "a_159_109#" 955.303
+cap "a_n177_n87#" "a_n369_n87#" 28.5878
+cap "a_n225_n909#" "a_n321_n909#" 955.303
+cap "a_n33_109#" "a_15_21#" 6.25956
+cap "a_399_21#" "a_351_109#" 6.25956
+cap "a_399_n87#" "a_447_n909#" 6.25956
+cap "a_255_n909#" "a_303_n997#" 6.25956
+cap "a_111_931#" "a_63_109#" 6.25956
+cap "a_255_n909#" "a_207_n87#" 6.25956
+cap "a_111_931#" "a_303_931#" 28.5878
+cap "a_n81_931#" "a_n177_21#" 14.1667
+cap "a_n509_n909#" "a_n417_n909#" 955.303
+cap "a_n177_n87#" "a_n129_n909#" 6.25956
+cap "a_n273_n997#" "a_n369_n87#" 14.1667
+cap "a_n225_109#" "a_n177_21#" 6.25956
+cap "a_n273_931#" "a_n321_109#" 6.25956
+cap "a_n33_n909#" "a_n33_109#" 12.3196
+cap "a_351_n909#" "a_399_n87#" 6.25956
+cap "a_n273_931#" "a_n81_931#" 28.5878
+cap "a_n273_931#" "a_n225_109#" 6.25956
+cap "a_399_21#" "a_447_109#" 6.25956
+cap "a_n129_109#" "a_n177_21#" 6.25956
+cap "a_n177_n87#" "a_n273_n997#" 14.1667
+cap "a_n465_n997#" "a_n509_n909#" 6.25956
+cap "a_15_n87#" "a_111_n997#" 14.1667
+cap "a_n369_21#" "a_n177_21#" 28.5878
+cap "a_n465_931#" "a_n369_21#" 14.1667
+cap "a_399_21#" "a_207_21#" 28.5878
+cap "a_n321_n909#" "a_n369_n87#" 6.25956
+cap "a_111_n997#" "a_303_n997#" 28.5878
+cap "a_n273_931#" "a_n369_21#" 14.1667
+cap "a_n509_n909#" "a_n509_109#" 12.3196
+cap "a_351_n909#" "a_447_n909#" 955.303
+cap "a_255_109#" "a_351_109#" 955.303
+cap "a_303_n997#" "a_399_n87#" 14.1667
+cap "a_111_n997#" "a_207_n87#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8_lvt 417 -909 418 -908 l=30 w=800 "a_n611_n1083#" "a_399_n87#" 60 0 "a_351_n909#" 800 0 "a_447_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 321 -909 322 -908 l=30 w=800 "a_n611_n1083#" "a_303_n997#" 60 0 "a_255_n909#" 800 0 "a_351_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 -909 226 -908 l=30 w=800 "a_n611_n1083#" "a_207_n87#" 60 0 "a_159_n909#" 800 0 "a_255_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 129 -909 130 -908 l=30 w=800 "a_n611_n1083#" "a_111_n997#" 60 0 "a_63_n909#" 800 0 "a_159_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -909 34 -908 l=30 w=800 "a_n611_n1083#" "a_15_n87#" 60 0 "a_n33_n909#" 800 0 "a_63_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -909 -62 -908 l=30 w=800 "a_n611_n1083#" "a_n81_n997#" 60 0 "a_n129_n909#" 800 0 "a_n33_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -159 -909 -158 -908 l=30 w=800 "a_n611_n1083#" "a_n177_n87#" 60 0 "a_n225_n909#" 800 0 "a_n129_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -255 -909 -254 -908 l=30 w=800 "a_n611_n1083#" "a_n273_n997#" 60 0 "a_n321_n909#" 800 0 "a_n225_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -351 -909 -350 -908 l=30 w=800 "a_n611_n1083#" "a_n369_n87#" 60 0 "a_n417_n909#" 800 0 "a_n321_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -447 -909 -446 -908 l=30 w=800 "a_n611_n1083#" "a_n465_n997#" 60 0 "a_n509_n909#" 800 0 "a_n417_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 417 109 418 110 l=30 w=800 "a_n611_n1083#" "a_399_21#" 60 0 "a_351_109#" 800 0 "a_447_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 321 109 322 110 l=30 w=800 "a_n611_n1083#" "a_303_931#" 60 0 "a_255_109#" 800 0 "a_351_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 109 226 110 l=30 w=800 "a_n611_n1083#" "a_207_21#" 60 0 "a_159_109#" 800 0 "a_255_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 129 109 130 110 l=30 w=800 "a_n611_n1083#" "a_111_931#" 60 0 "a_63_109#" 800 0 "a_159_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 109 34 110 l=30 w=800 "a_n611_n1083#" "a_15_21#" 60 0 "a_n33_109#" 800 0 "a_63_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 109 -62 110 l=30 w=800 "a_n611_n1083#" "a_n81_931#" 60 0 "a_n129_109#" 800 0 "a_n33_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -159 109 -158 110 l=30 w=800 "a_n611_n1083#" "a_n177_21#" 60 0 "a_n225_109#" 800 0 "a_n129_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -255 109 -254 110 l=30 w=800 "a_n611_n1083#" "a_n273_931#" 60 0 "a_n321_109#" 800 0 "a_n225_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -351 109 -350 110 l=30 w=800 "a_n611_n1083#" "a_n369_21#" 60 0 "a_n417_109#" 800 0 "a_n321_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -447 109 -446 110 l=30 w=800 "a_n611_n1083#" "a_n465_931#" 60 0 "a_n509_109#" 800 0 "a_n417_109#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.mag b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.mag
new file mode 100644
index 0000000..1d17b39
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_26RGPZ.mag
@@ -0,0 +1,667 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -461 981 -403 987
+rect -269 981 -211 987
+rect -77 981 -19 987
+rect 115 981 173 987
+rect 307 981 365 987
+rect -461 947 -449 981
+rect -269 947 -257 981
+rect -77 947 -65 981
+rect 115 947 127 981
+rect 307 947 319 981
+rect -461 941 -403 947
+rect -269 941 -211 947
+rect -77 941 -19 947
+rect 115 941 173 947
+rect 307 941 365 947
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect -461 -947 -403 -941
+rect -269 -947 -211 -941
+rect -77 -947 -19 -941
+rect 115 -947 173 -941
+rect 307 -947 365 -941
+rect -461 -981 -449 -947
+rect -269 -981 -257 -947
+rect -77 -981 -65 -947
+rect 115 -981 127 -947
+rect 307 -981 319 -947
+rect -461 -987 -403 -981
+rect -269 -987 -211 -981
+rect -77 -987 -19 -981
+rect 115 -987 173 -981
+rect 307 -987 365 -981
+<< pwell >>
+rect -647 -1119 647 1119
+<< nmoslvt >>
+rect -447 109 -417 909
+rect -351 109 -321 909
+rect -255 109 -225 909
+rect -159 109 -129 909
+rect -63 109 -33 909
+rect 33 109 63 909
+rect 129 109 159 909
+rect 225 109 255 909
+rect 321 109 351 909
+rect 417 109 447 909
+rect -447 -909 -417 -109
+rect -351 -909 -321 -109
+rect -255 -909 -225 -109
+rect -159 -909 -129 -109
+rect -63 -909 -33 -109
+rect 33 -909 63 -109
+rect 129 -909 159 -109
+rect 225 -909 255 -109
+rect 321 -909 351 -109
+rect 417 -909 447 -109
+<< ndiff >>
+rect -509 897 -447 909
+rect -509 121 -497 897
+rect -463 121 -447 897
+rect -509 109 -447 121
+rect -417 897 -351 909
+rect -417 121 -401 897
+rect -367 121 -351 897
+rect -417 109 -351 121
+rect -321 897 -255 909
+rect -321 121 -305 897
+rect -271 121 -255 897
+rect -321 109 -255 121
+rect -225 897 -159 909
+rect -225 121 -209 897
+rect -175 121 -159 897
+rect -225 109 -159 121
+rect -129 897 -63 909
+rect -129 121 -113 897
+rect -79 121 -63 897
+rect -129 109 -63 121
+rect -33 897 33 909
+rect -33 121 -17 897
+rect 17 121 33 897
+rect -33 109 33 121
+rect 63 897 129 909
+rect 63 121 79 897
+rect 113 121 129 897
+rect 63 109 129 121
+rect 159 897 225 909
+rect 159 121 175 897
+rect 209 121 225 897
+rect 159 109 225 121
+rect 255 897 321 909
+rect 255 121 271 897
+rect 305 121 321 897
+rect 255 109 321 121
+rect 351 897 417 909
+rect 351 121 367 897
+rect 401 121 417 897
+rect 351 109 417 121
+rect 447 897 509 909
+rect 447 121 463 897
+rect 497 121 509 897
+rect 447 109 509 121
+rect -509 -121 -447 -109
+rect -509 -897 -497 -121
+rect -463 -897 -447 -121
+rect -509 -909 -447 -897
+rect -417 -121 -351 -109
+rect -417 -897 -401 -121
+rect -367 -897 -351 -121
+rect -417 -909 -351 -897
+rect -321 -121 -255 -109
+rect -321 -897 -305 -121
+rect -271 -897 -255 -121
+rect -321 -909 -255 -897
+rect -225 -121 -159 -109
+rect -225 -897 -209 -121
+rect -175 -897 -159 -121
+rect -225 -909 -159 -897
+rect -129 -121 -63 -109
+rect -129 -897 -113 -121
+rect -79 -897 -63 -121
+rect -129 -909 -63 -897
+rect -33 -121 33 -109
+rect -33 -897 -17 -121
+rect 17 -897 33 -121
+rect -33 -909 33 -897
+rect 63 -121 129 -109
+rect 63 -897 79 -121
+rect 113 -897 129 -121
+rect 63 -909 129 -897
+rect 159 -121 225 -109
+rect 159 -897 175 -121
+rect 209 -897 225 -121
+rect 159 -909 225 -897
+rect 255 -121 321 -109
+rect 255 -897 271 -121
+rect 305 -897 321 -121
+rect 255 -909 321 -897
+rect 351 -121 417 -109
+rect 351 -897 367 -121
+rect 401 -897 417 -121
+rect 351 -909 417 -897
+rect 447 -121 509 -109
+rect 447 -897 463 -121
+rect 497 -897 509 -121
+rect 447 -909 509 -897
+<< ndiffc >>
+rect -497 121 -463 897
+rect -401 121 -367 897
+rect -305 121 -271 897
+rect -209 121 -175 897
+rect -113 121 -79 897
+rect -17 121 17 897
+rect 79 121 113 897
+rect 175 121 209 897
+rect 271 121 305 897
+rect 367 121 401 897
+rect 463 121 497 897
+rect -497 -897 -463 -121
+rect -401 -897 -367 -121
+rect -305 -897 -271 -121
+rect -209 -897 -175 -121
+rect -113 -897 -79 -121
+rect -17 -897 17 -121
+rect 79 -897 113 -121
+rect 175 -897 209 -121
+rect 271 -897 305 -121
+rect 367 -897 401 -121
+rect 463 -897 497 -121
+<< psubdiff >>
+rect -611 1049 -515 1083
+rect 515 1049 611 1083
+rect -611 987 -577 1049
+rect 577 987 611 1049
+rect -611 -1049 -577 -987
+rect 577 -1049 611 -987
+rect -611 -1083 -515 -1049
+rect 515 -1083 611 -1049
+<< psubdiffcont >>
+rect -515 1049 515 1083
+rect -611 -987 -577 987
+rect 577 -987 611 987
+rect -515 -1083 515 -1049
+<< poly >>
+rect -465 981 -399 997
+rect -465 947 -449 981
+rect -415 947 -399 981
+rect -465 931 -399 947
+rect -273 981 -207 997
+rect -273 947 -257 981
+rect -223 947 -207 981
+rect -447 909 -417 931
+rect -351 909 -321 935
+rect -273 931 -207 947
+rect -81 981 -15 997
+rect -81 947 -65 981
+rect -31 947 -15 981
+rect -255 909 -225 931
+rect -159 909 -129 935
+rect -81 931 -15 947
+rect 111 981 177 997
+rect 111 947 127 981
+rect 161 947 177 981
+rect -63 909 -33 931
+rect 33 909 63 935
+rect 111 931 177 947
+rect 303 981 369 997
+rect 303 947 319 981
+rect 353 947 369 981
+rect 129 909 159 931
+rect 225 909 255 935
+rect 303 931 369 947
+rect 321 909 351 931
+rect 417 909 447 935
+rect -447 83 -417 109
+rect -351 87 -321 109
+rect -369 71 -303 87
+rect -255 83 -225 109
+rect -159 87 -129 109
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -63 83 -33 109
+rect 33 87 63 109
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 129 83 159 109
+rect 225 87 255 109
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 321 83 351 109
+rect 417 87 447 109
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -447 -109 -417 -83
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -351 -109 -321 -87
+rect -255 -109 -225 -83
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -159 -109 -129 -87
+rect -63 -109 -33 -83
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 33 -109 63 -87
+rect 129 -109 159 -83
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 225 -109 255 -87
+rect 321 -109 351 -83
+rect 399 -87 465 -71
+rect 417 -109 447 -87
+rect -447 -931 -417 -909
+rect -465 -947 -399 -931
+rect -351 -935 -321 -909
+rect -255 -931 -225 -909
+rect -465 -981 -449 -947
+rect -415 -981 -399 -947
+rect -465 -997 -399 -981
+rect -273 -947 -207 -931
+rect -159 -935 -129 -909
+rect -63 -931 -33 -909
+rect -273 -981 -257 -947
+rect -223 -981 -207 -947
+rect -273 -997 -207 -981
+rect -81 -947 -15 -931
+rect 33 -935 63 -909
+rect 129 -931 159 -909
+rect -81 -981 -65 -947
+rect -31 -981 -15 -947
+rect -81 -997 -15 -981
+rect 111 -947 177 -931
+rect 225 -935 255 -909
+rect 321 -931 351 -909
+rect 111 -981 127 -947
+rect 161 -981 177 -947
+rect 111 -997 177 -981
+rect 303 -947 369 -931
+rect 417 -935 447 -909
+rect 303 -981 319 -947
+rect 353 -981 369 -947
+rect 303 -997 369 -981
+<< polycont >>
+rect -449 947 -415 981
+rect -257 947 -223 981
+rect -65 947 -31 981
+rect 127 947 161 981
+rect 319 947 353 981
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -449 -981 -415 -947
+rect -257 -981 -223 -947
+rect -65 -981 -31 -947
+rect 127 -981 161 -947
+rect 319 -981 353 -947
+<< locali >>
+rect -611 1049 -515 1083
+rect 515 1049 611 1083
+rect -611 987 -577 1049
+rect 577 987 611 1049
+rect -465 947 -449 981
+rect -415 947 -399 981
+rect -273 947 -257 981
+rect -223 947 -207 981
+rect -81 947 -65 981
+rect -31 947 -15 981
+rect 111 947 127 981
+rect 161 947 177 981
+rect 303 947 319 981
+rect 353 947 369 981
+rect -497 897 -463 913
+rect -497 105 -463 121
+rect -401 897 -367 913
+rect -401 105 -367 121
+rect -305 897 -271 913
+rect -305 105 -271 121
+rect -209 897 -175 913
+rect -209 105 -175 121
+rect -113 897 -79 913
+rect -113 105 -79 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 79 897 113 913
+rect 79 105 113 121
+rect 175 897 209 913
+rect 175 105 209 121
+rect 271 897 305 913
+rect 271 105 305 121
+rect 367 897 401 913
+rect 367 105 401 121
+rect 463 897 497 913
+rect 463 105 497 121
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect -497 -121 -463 -105
+rect -497 -913 -463 -897
+rect -401 -121 -367 -105
+rect -401 -913 -367 -897
+rect -305 -121 -271 -105
+rect -305 -913 -271 -897
+rect -209 -121 -175 -105
+rect -209 -913 -175 -897
+rect -113 -121 -79 -105
+rect -113 -913 -79 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 79 -121 113 -105
+rect 79 -913 113 -897
+rect 175 -121 209 -105
+rect 175 -913 209 -897
+rect 271 -121 305 -105
+rect 271 -913 305 -897
+rect 367 -121 401 -105
+rect 367 -913 401 -897
+rect 463 -121 497 -105
+rect 463 -913 497 -897
+rect -465 -981 -449 -947
+rect -415 -981 -399 -947
+rect -273 -981 -257 -947
+rect -223 -981 -207 -947
+rect -81 -981 -65 -947
+rect -31 -981 -15 -947
+rect 111 -981 127 -947
+rect 161 -981 177 -947
+rect 303 -981 319 -947
+rect 353 -981 369 -947
+rect -611 -1049 -577 -987
+rect 577 -1049 611 -987
+rect -611 -1083 -515 -1049
+rect 515 -1083 611 -1049
+<< viali >>
+rect -449 947 -415 981
+rect -257 947 -223 981
+rect -65 947 -31 981
+rect 127 947 161 981
+rect 319 947 353 981
+rect -497 121 -463 897
+rect -401 121 -367 897
+rect -305 121 -271 897
+rect -209 121 -175 897
+rect -113 121 -79 897
+rect -17 121 17 897
+rect 79 121 113 897
+rect 175 121 209 897
+rect 271 121 305 897
+rect 367 121 401 897
+rect 463 121 497 897
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -497 -897 -463 -121
+rect -401 -897 -367 -121
+rect -305 -897 -271 -121
+rect -209 -897 -175 -121
+rect -113 -897 -79 -121
+rect -17 -897 17 -121
+rect 79 -897 113 -121
+rect 175 -897 209 -121
+rect 271 -897 305 -121
+rect 367 -897 401 -121
+rect 463 -897 497 -121
+rect -449 -981 -415 -947
+rect -257 -981 -223 -947
+rect -65 -981 -31 -947
+rect 127 -981 161 -947
+rect 319 -981 353 -947
+<< metal1 >>
+rect -461 981 -403 987
+rect -461 947 -449 981
+rect -415 947 -403 981
+rect -461 941 -403 947
+rect -269 981 -211 987
+rect -269 947 -257 981
+rect -223 947 -211 981
+rect -269 941 -211 947
+rect -77 981 -19 987
+rect -77 947 -65 981
+rect -31 947 -19 981
+rect -77 941 -19 947
+rect 115 981 173 987
+rect 115 947 127 981
+rect 161 947 173 981
+rect 115 941 173 947
+rect 307 981 365 987
+rect 307 947 319 981
+rect 353 947 365 981
+rect 307 941 365 947
+rect -503 897 -457 909
+rect -503 121 -497 897
+rect -463 121 -457 897
+rect -503 109 -457 121
+rect -407 897 -361 909
+rect -407 121 -401 897
+rect -367 121 -361 897
+rect -407 109 -361 121
+rect -311 897 -265 909
+rect -311 121 -305 897
+rect -271 121 -265 897
+rect -311 109 -265 121
+rect -215 897 -169 909
+rect -215 121 -209 897
+rect -175 121 -169 897
+rect -215 109 -169 121
+rect -119 897 -73 909
+rect -119 121 -113 897
+rect -79 121 -73 897
+rect -119 109 -73 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 73 897 119 909
+rect 73 121 79 897
+rect 113 121 119 897
+rect 73 109 119 121
+rect 169 897 215 909
+rect 169 121 175 897
+rect 209 121 215 897
+rect 169 109 215 121
+rect 265 897 311 909
+rect 265 121 271 897
+rect 305 121 311 897
+rect 265 109 311 121
+rect 361 897 407 909
+rect 361 121 367 897
+rect 401 121 407 897
+rect 361 109 407 121
+rect 457 897 503 909
+rect 457 121 463 897
+rect 497 121 503 897
+rect 457 109 503 121
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect -503 -121 -457 -109
+rect -503 -897 -497 -121
+rect -463 -897 -457 -121
+rect -503 -909 -457 -897
+rect -407 -121 -361 -109
+rect -407 -897 -401 -121
+rect -367 -897 -361 -121
+rect -407 -909 -361 -897
+rect -311 -121 -265 -109
+rect -311 -897 -305 -121
+rect -271 -897 -265 -121
+rect -311 -909 -265 -897
+rect -215 -121 -169 -109
+rect -215 -897 -209 -121
+rect -175 -897 -169 -121
+rect -215 -909 -169 -897
+rect -119 -121 -73 -109
+rect -119 -897 -113 -121
+rect -79 -897 -73 -121
+rect -119 -909 -73 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 73 -121 119 -109
+rect 73 -897 79 -121
+rect 113 -897 119 -121
+rect 73 -909 119 -897
+rect 169 -121 215 -109
+rect 169 -897 175 -121
+rect 209 -897 215 -121
+rect 169 -909 215 -897
+rect 265 -121 311 -109
+rect 265 -897 271 -121
+rect 305 -897 311 -121
+rect 265 -909 311 -897
+rect 361 -121 407 -109
+rect 361 -897 367 -121
+rect 401 -897 407 -121
+rect 361 -909 407 -897
+rect 457 -121 503 -109
+rect 457 -897 463 -121
+rect 497 -897 503 -121
+rect 457 -909 503 -897
+rect -461 -947 -403 -941
+rect -461 -981 -449 -947
+rect -415 -981 -403 -947
+rect -461 -987 -403 -981
+rect -269 -947 -211 -941
+rect -269 -981 -257 -947
+rect -223 -981 -211 -947
+rect -269 -987 -211 -981
+rect -77 -947 -19 -941
+rect -77 -981 -65 -947
+rect -31 -981 -19 -947
+rect -77 -987 -19 -981
+rect 115 -947 173 -941
+rect 115 -981 127 -947
+rect 161 -981 173 -947
+rect 115 -987 173 -981
+rect 307 -947 365 -941
+rect 307 -981 319 -947
+rect 353 -981 365 -947
+rect 307 -987 365 -981
+<< properties >>
+string FIXED_BBOX -594 -1066 594 1066
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 4 l 0.150 m 2 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E8J47E.mag b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E8J47E.mag
new file mode 100644
index 0000000..771a823
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E8J47E.mag
@@ -0,0 +1,128 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645633816
+<< pwell >>
+rect -425 -610 425 610
+<< nmoslvt >>
+rect -229 -400 -29 400
+rect 29 -400 229 400
+<< ndiff >>
+rect -287 388 -229 400
+rect -287 -388 -275 388
+rect -241 -388 -229 388
+rect -287 -400 -229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 229 388 287 400
+rect 229 -388 241 388
+rect 275 -388 287 388
+rect 229 -400 287 -388
+<< ndiffc >>
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+<< psubdiff >>
+rect -389 540 -293 574
+rect 293 540 389 574
+rect -389 478 -355 540
+rect 355 478 389 540
+rect -389 -540 -355 -478
+rect 355 -540 389 -478
+rect -389 -574 -293 -540
+rect 293 -574 389 -540
+<< psubdiffcont >>
+rect -293 540 293 574
+rect -389 -478 -355 478
+rect 355 -478 389 478
+rect -293 -574 293 -540
+<< poly >>
+rect -229 472 -29 488
+rect -229 438 -213 472
+rect -45 438 -29 472
+rect -229 400 -29 438
+rect 29 472 229 488
+rect 29 438 45 472
+rect 213 438 229 472
+rect 29 400 229 438
+rect -229 -438 -29 -400
+rect -229 -472 -213 -438
+rect -45 -472 -29 -438
+rect -229 -488 -29 -472
+rect 29 -438 229 -400
+rect 29 -472 45 -438
+rect 213 -472 229 -438
+rect 29 -488 229 -472
+<< polycont >>
+rect -213 438 -45 472
+rect 45 438 213 472
+rect -213 -472 -45 -438
+rect 45 -472 213 -438
+<< locali >>
+rect -389 540 -293 574
+rect 293 540 389 574
+rect -389 478 -355 540
+rect 355 478 389 540
+rect -229 438 -213 472
+rect -45 438 -29 472
+rect 29 438 45 472
+rect 213 438 229 472
+rect -275 388 -241 404
+rect -275 -404 -241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 241 388 275 404
+rect 241 -404 275 -388
+rect -229 -472 -213 -438
+rect -45 -472 -29 -438
+rect 29 -472 45 -438
+rect 213 -472 229 -438
+rect -389 -540 -355 -478
+rect 355 -540 389 -478
+rect -389 -574 -293 -540
+rect 293 -574 389 -540
+<< viali >>
+rect -213 438 -45 472
+rect 45 438 213 472
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+rect -213 -472 -45 -438
+rect 45 -472 213 -438
+<< metal1 >>
+rect -225 472 -33 478
+rect -225 438 -213 472
+rect -45 438 -33 472
+rect -225 432 -33 438
+rect 33 472 225 478
+rect 33 438 45 472
+rect 213 438 225 472
+rect 33 432 225 438
+rect -281 388 -235 400
+rect -281 -388 -275 388
+rect -241 -388 -235 388
+rect -281 -400 -235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 235 388 281 400
+rect 235 -388 241 388
+rect 275 -388 281 388
+rect 235 -400 281 -388
+rect -225 -438 -33 -432
+rect -225 -472 -213 -438
+rect -45 -472 -33 -438
+rect -225 -478 -33 -472
+rect 33 -438 225 -432
+rect 33 -472 45 -438
+rect 213 -472 225 -438
+rect 33 -478 225 -472
+<< properties >>
+string FIXED_BBOX -372 -557 372 557
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 4 l 1 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.ext b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.ext
new file mode 100644
index 0000000..fbe7b1a
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.ext
@@ -0,0 +1,86 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_461_n400#" 1962 303.675 461 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_363_n400#" 1962 20.5533 363 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_265_n400#" 1962 20.5533 265 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_167_n400#" 1962 20.5533 167 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_69_n400#" 1962 20.5533 69 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n400#" 1962 20.5533 -29 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n127_n400#" 1962 20.5533 -127 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n400#" 1962 20.5533 -225 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n323_n400#" 1962 20.5533 -323 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n421_n400#" 1962 20.5533 -421 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n519_n400#" 1962 303.696 -519 -400 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_310_n488#" 1136 132.014 310 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_408_422#" 1136 148.85 408 422 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_114_n488#" 1136 112.261 114 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_212_422#" 1136 112.261 212 422 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n82_n488#" 1136 112.261 -82 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_16_422#" 1136 112.261 16 422 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n278_n488#" 1136 112.261 -278 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n180_422#" 1136 112.261 -180 422 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n474_n488#" 1136 149.104 -474 -488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n376_422#" 1136 132.268 -376 422 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38276 1960 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n621_n574#" 0 0 -621 -574 ppd 0 0 0 0 0 0 0 0 0 0 157896 9288 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 157896 9288 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_n400#" "a_69_n400#" 921.192
+cap "a_n180_422#" "a_n82_n488#" 15.9188
+cap "a_n180_422#" "a_n376_422#" 27.7308
+cap "a_310_n488#" "a_363_n400#" 4.2829
+cap "a_16_422#" "a_69_n400#" 4.2829
+cap "a_n225_n400#" "a_n323_n400#" 921.192
+cap "a_114_n488#" "a_n82_n488#" 27.7308
+cap "a_n519_n400#" "a_n474_n488#" 4.2829
+cap "a_n180_422#" "a_n127_n400#" 4.2829
+cap "a_n225_n400#" "a_n127_n400#" 921.192
+cap "a_n376_422#" "a_n474_n488#" 15.9188
+cap "a_461_n400#" "a_363_n400#" 921.192
+cap "a_16_422#" "a_n180_422#" 27.7308
+cap "a_114_n488#" "a_16_422#" 15.9188
+cap "a_310_n488#" "a_265_n400#" 4.2829
+cap "a_n180_422#" "a_n278_n488#" 15.9188
+cap "a_167_n400#" "a_265_n400#" 921.192
+cap "a_n225_n400#" "a_n278_n488#" 4.2829
+cap "a_n376_422#" "a_n323_n400#" 4.2829
+cap "a_114_n488#" "a_69_n400#" 4.2829
+cap "a_167_n400#" "a_69_n400#" 921.192
+cap "a_16_422#" "a_212_422#" 27.7308
+cap "a_n421_n400#" "a_n474_n488#" 4.2829
+cap "a_212_422#" "a_265_n400#" 4.2829
+cap "a_n29_n400#" "a_n82_n488#" 4.2829
+cap "a_310_n488#" "a_408_422#" 15.9188
+cap "a_n421_n400#" "a_n519_n400#" 921.192
+cap "a_n127_n400#" "a_n82_n488#" 4.2829
+cap "a_n180_422#" "a_n225_n400#" 4.2829
+cap "a_363_n400#" "a_265_n400#" 921.192
+cap "a_n376_422#" "a_n421_n400#" 4.2829
+cap "a_n278_n488#" "a_n474_n488#" 27.7308
+cap "a_16_422#" "a_n82_n488#" 15.9188
+cap "a_n421_n400#" "a_n323_n400#" 921.192
+cap "a_212_422#" "a_408_422#" 27.7308
+cap "a_310_n488#" "a_114_n488#" 27.7308
+cap "a_n29_n400#" "a_n127_n400#" 921.192
+cap "a_n82_n488#" "a_n278_n488#" 27.7308
+cap "a_n376_422#" "a_n278_n488#" 15.9188
+cap "a_167_n400#" "a_114_n488#" 4.2829
+cap "a_461_n400#" "a_408_422#" 4.2829
+cap "a_n278_n488#" "a_n323_n400#" 4.2829
+cap "a_363_n400#" "a_408_422#" 4.2829
+cap "a_n29_n400#" "a_16_422#" 4.2829
+cap "a_310_n488#" "a_212_422#" 15.9188
+cap "a_114_n488#" "a_212_422#" 15.9188
+cap "a_167_n400#" "a_212_422#" 4.2829
+device msubckt sky130_fd_pr__nfet_01v8_lvt 421 -400 422 -399 l=40 w=800 "a_n621_n574#" "a_408_422#" 80 0 "a_363_n400#" 800 0 "a_461_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 323 -400 324 -399 l=40 w=800 "a_n621_n574#" "a_310_n488#" 80 0 "a_265_n400#" 800 0 "a_363_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 -400 226 -399 l=40 w=800 "a_n621_n574#" "a_212_422#" 80 0 "a_167_n400#" 800 0 "a_265_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 127 -400 128 -399 l=40 w=800 "a_n621_n574#" "a_114_n488#" 80 0 "a_69_n400#" 800 0 "a_167_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 -400 30 -399 l=40 w=800 "a_n621_n574#" "a_16_422#" 80 0 "a_n29_n400#" 800 0 "a_69_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -69 -400 -68 -399 l=40 w=800 "a_n621_n574#" "a_n82_n488#" 80 0 "a_n127_n400#" 800 0 "a_n29_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -167 -400 -166 -399 l=40 w=800 "a_n621_n574#" "a_n180_422#" 80 0 "a_n225_n400#" 800 0 "a_n127_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -265 -400 -264 -399 l=40 w=800 "a_n621_n574#" "a_n278_n488#" 80 0 "a_n323_n400#" 800 0 "a_n225_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -363 -400 -362 -399 l=40 w=800 "a_n621_n574#" "a_n376_422#" 80 0 "a_n421_n400#" 800 0 "a_n323_n400#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -461 -400 -460 -399 l=40 w=800 "a_n621_n574#" "a_n474_n488#" 80 0 "a_n519_n400#" 800 0 "a_n421_n400#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.mag b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.mag
new file mode 100644
index 0000000..cd3c400
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_E9U3PA.mag
@@ -0,0 +1,355 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -372 472 -314 478
+rect -176 472 -118 478
+rect 20 472 78 478
+rect 216 472 274 478
+rect 412 472 470 478
+rect -372 438 -360 472
+rect -176 438 -164 472
+rect 20 438 32 472
+rect 216 438 228 472
+rect 412 438 424 472
+rect -372 432 -314 438
+rect -176 432 -118 438
+rect 20 432 78 438
+rect 216 432 274 438
+rect 412 432 470 438
+rect -470 -438 -412 -432
+rect -274 -438 -216 -432
+rect -78 -438 -20 -432
+rect 118 -438 176 -432
+rect 314 -438 372 -432
+rect -470 -472 -458 -438
+rect -274 -472 -262 -438
+rect -78 -472 -66 -438
+rect 118 -472 130 -438
+rect 314 -472 326 -438
+rect -470 -478 -412 -472
+rect -274 -478 -216 -472
+rect -78 -478 -20 -472
+rect 118 -478 176 -472
+rect 314 -478 372 -472
+<< pwell >>
+rect -657 -610 657 610
+<< nmoslvt >>
+rect -461 -400 -421 400
+rect -363 -400 -323 400
+rect -265 -400 -225 400
+rect -167 -400 -127 400
+rect -69 -400 -29 400
+rect 29 -400 69 400
+rect 127 -400 167 400
+rect 225 -400 265 400
+rect 323 -400 363 400
+rect 421 -400 461 400
+<< ndiff >>
+rect -519 388 -461 400
+rect -519 -388 -507 388
+rect -473 -388 -461 388
+rect -519 -400 -461 -388
+rect -421 388 -363 400
+rect -421 -388 -409 388
+rect -375 -388 -363 388
+rect -421 -400 -363 -388
+rect -323 388 -265 400
+rect -323 -388 -311 388
+rect -277 -388 -265 388
+rect -323 -400 -265 -388
+rect -225 388 -167 400
+rect -225 -388 -213 388
+rect -179 -388 -167 388
+rect -225 -400 -167 -388
+rect -127 388 -69 400
+rect -127 -388 -115 388
+rect -81 -388 -69 388
+rect -127 -400 -69 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 69 388 127 400
+rect 69 -388 81 388
+rect 115 -388 127 388
+rect 69 -400 127 -388
+rect 167 388 225 400
+rect 167 -388 179 388
+rect 213 -388 225 388
+rect 167 -400 225 -388
+rect 265 388 323 400
+rect 265 -388 277 388
+rect 311 -388 323 388
+rect 265 -400 323 -388
+rect 363 388 421 400
+rect 363 -388 375 388
+rect 409 -388 421 388
+rect 363 -400 421 -388
+rect 461 388 519 400
+rect 461 -388 473 388
+rect 507 -388 519 388
+rect 461 -400 519 -388
+<< ndiffc >>
+rect -507 -388 -473 388
+rect -409 -388 -375 388
+rect -311 -388 -277 388
+rect -213 -388 -179 388
+rect -115 -388 -81 388
+rect -17 -388 17 388
+rect 81 -388 115 388
+rect 179 -388 213 388
+rect 277 -388 311 388
+rect 375 -388 409 388
+rect 473 -388 507 388
+<< psubdiff >>
+rect -621 540 -525 574
+rect 525 540 621 574
+rect -621 478 -587 540
+rect 587 478 621 540
+rect -621 -540 -587 -478
+rect 587 -540 621 -478
+rect -621 -574 -525 -540
+rect 525 -574 621 -540
+<< psubdiffcont >>
+rect -525 540 525 574
+rect -621 -478 -587 478
+rect 587 -478 621 478
+rect -525 -574 525 -540
+<< poly >>
+rect -376 472 -310 488
+rect -376 438 -360 472
+rect -326 438 -310 472
+rect -461 400 -421 426
+rect -376 422 -310 438
+rect -180 472 -114 488
+rect -180 438 -164 472
+rect -130 438 -114 472
+rect -363 400 -323 422
+rect -265 400 -225 426
+rect -180 422 -114 438
+rect 16 472 82 488
+rect 16 438 32 472
+rect 66 438 82 472
+rect -167 400 -127 422
+rect -69 400 -29 426
+rect 16 422 82 438
+rect 212 472 278 488
+rect 212 438 228 472
+rect 262 438 278 472
+rect 29 400 69 422
+rect 127 400 167 426
+rect 212 422 278 438
+rect 408 472 474 488
+rect 408 438 424 472
+rect 458 438 474 472
+rect 225 400 265 422
+rect 323 400 363 426
+rect 408 422 474 438
+rect 421 400 461 422
+rect -461 -422 -421 -400
+rect -474 -438 -408 -422
+rect -363 -426 -323 -400
+rect -265 -422 -225 -400
+rect -474 -472 -458 -438
+rect -424 -472 -408 -438
+rect -474 -488 -408 -472
+rect -278 -438 -212 -422
+rect -167 -426 -127 -400
+rect -69 -422 -29 -400
+rect -278 -472 -262 -438
+rect -228 -472 -212 -438
+rect -278 -488 -212 -472
+rect -82 -438 -16 -422
+rect 29 -426 69 -400
+rect 127 -422 167 -400
+rect -82 -472 -66 -438
+rect -32 -472 -16 -438
+rect -82 -488 -16 -472
+rect 114 -438 180 -422
+rect 225 -426 265 -400
+rect 323 -422 363 -400
+rect 114 -472 130 -438
+rect 164 -472 180 -438
+rect 114 -488 180 -472
+rect 310 -438 376 -422
+rect 421 -426 461 -400
+rect 310 -472 326 -438
+rect 360 -472 376 -438
+rect 310 -488 376 -472
+<< polycont >>
+rect -360 438 -326 472
+rect -164 438 -130 472
+rect 32 438 66 472
+rect 228 438 262 472
+rect 424 438 458 472
+rect -458 -472 -424 -438
+rect -262 -472 -228 -438
+rect -66 -472 -32 -438
+rect 130 -472 164 -438
+rect 326 -472 360 -438
+<< locali >>
+rect -621 540 -525 574
+rect 525 540 621 574
+rect -621 478 -587 540
+rect 587 478 621 540
+rect -376 438 -360 472
+rect -326 438 -310 472
+rect -180 438 -164 472
+rect -130 438 -114 472
+rect 16 438 32 472
+rect 66 438 82 472
+rect 212 438 228 472
+rect 262 438 278 472
+rect 408 438 424 472
+rect 458 438 474 472
+rect -507 388 -473 404
+rect -507 -404 -473 -388
+rect -409 388 -375 404
+rect -409 -404 -375 -388
+rect -311 388 -277 404
+rect -311 -404 -277 -388
+rect -213 388 -179 404
+rect -213 -404 -179 -388
+rect -115 388 -81 404
+rect -115 -404 -81 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 81 388 115 404
+rect 81 -404 115 -388
+rect 179 388 213 404
+rect 179 -404 213 -388
+rect 277 388 311 404
+rect 277 -404 311 -388
+rect 375 388 409 404
+rect 375 -404 409 -388
+rect 473 388 507 404
+rect 473 -404 507 -388
+rect -474 -472 -458 -438
+rect -424 -472 -408 -438
+rect -278 -472 -262 -438
+rect -228 -472 -212 -438
+rect -82 -472 -66 -438
+rect -32 -472 -16 -438
+rect 114 -472 130 -438
+rect 164 -472 180 -438
+rect 310 -472 326 -438
+rect 360 -472 376 -438
+rect -621 -540 -587 -478
+rect 587 -540 621 -478
+rect -621 -574 -525 -540
+rect 525 -574 621 -540
+<< viali >>
+rect -360 438 -326 472
+rect -164 438 -130 472
+rect 32 438 66 472
+rect 228 438 262 472
+rect 424 438 458 472
+rect -507 -388 -473 388
+rect -409 -388 -375 388
+rect -311 -388 -277 388
+rect -213 -388 -179 388
+rect -115 -388 -81 388
+rect -17 -388 17 388
+rect 81 -388 115 388
+rect 179 -388 213 388
+rect 277 -388 311 388
+rect 375 -388 409 388
+rect 473 -388 507 388
+rect -458 -472 -424 -438
+rect -262 -472 -228 -438
+rect -66 -472 -32 -438
+rect 130 -472 164 -438
+rect 326 -472 360 -438
+<< metal1 >>
+rect -372 472 -314 478
+rect -372 438 -360 472
+rect -326 438 -314 472
+rect -372 432 -314 438
+rect -176 472 -118 478
+rect -176 438 -164 472
+rect -130 438 -118 472
+rect -176 432 -118 438
+rect 20 472 78 478
+rect 20 438 32 472
+rect 66 438 78 472
+rect 20 432 78 438
+rect 216 472 274 478
+rect 216 438 228 472
+rect 262 438 274 472
+rect 216 432 274 438
+rect 412 472 470 478
+rect 412 438 424 472
+rect 458 438 470 472
+rect 412 432 470 438
+rect -513 388 -467 400
+rect -513 -388 -507 388
+rect -473 -388 -467 388
+rect -513 -400 -467 -388
+rect -415 388 -369 400
+rect -415 -388 -409 388
+rect -375 -388 -369 388
+rect -415 -400 -369 -388
+rect -317 388 -271 400
+rect -317 -388 -311 388
+rect -277 -388 -271 388
+rect -317 -400 -271 -388
+rect -219 388 -173 400
+rect -219 -388 -213 388
+rect -179 -388 -173 388
+rect -219 -400 -173 -388
+rect -121 388 -75 400
+rect -121 -388 -115 388
+rect -81 -388 -75 388
+rect -121 -400 -75 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 75 388 121 400
+rect 75 -388 81 388
+rect 115 -388 121 388
+rect 75 -400 121 -388
+rect 173 388 219 400
+rect 173 -388 179 388
+rect 213 -388 219 388
+rect 173 -400 219 -388
+rect 271 388 317 400
+rect 271 -388 277 388
+rect 311 -388 317 388
+rect 271 -400 317 -388
+rect 369 388 415 400
+rect 369 -388 375 388
+rect 409 -388 415 388
+rect 369 -400 415 -388
+rect 467 388 513 400
+rect 467 -388 473 388
+rect 507 -388 513 388
+rect 467 -400 513 -388
+rect -470 -438 -412 -432
+rect -470 -472 -458 -438
+rect -424 -472 -412 -438
+rect -470 -478 -412 -472
+rect -274 -438 -216 -432
+rect -274 -472 -262 -438
+rect -228 -472 -216 -438
+rect -274 -478 -216 -472
+rect -78 -438 -20 -432
+rect -78 -472 -66 -438
+rect -32 -472 -20 -438
+rect -78 -478 -20 -472
+rect 118 -438 176 -432
+rect 118 -472 130 -438
+rect 164 -472 176 -438
+rect 118 -478 176 -472
+rect 314 -438 372 -432
+rect 314 -472 326 -438
+rect 360 -472 372 -438
+rect 314 -478 372 -472
+<< properties >>
+string FIXED_BBOX -604 -557 604 557
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 4 l 0.2 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZCEJW8.mag b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZCEJW8.mag
new file mode 100644
index 0000000..abc6c7b
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZCEJW8.mag
@@ -0,0 +1,1570 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645549824
+<< pwell >>
+rect -1457 -2137 1457 2137
+<< nmoslvt >>
+rect -1261 1127 -1061 1927
+rect -1003 1127 -803 1927
+rect -745 1127 -545 1927
+rect -487 1127 -287 1927
+rect -229 1127 -29 1927
+rect 29 1127 229 1927
+rect 287 1127 487 1927
+rect 545 1127 745 1927
+rect 803 1127 1003 1927
+rect 1061 1127 1261 1927
+rect -1261 109 -1061 909
+rect -1003 109 -803 909
+rect -745 109 -545 909
+rect -487 109 -287 909
+rect -229 109 -29 909
+rect 29 109 229 909
+rect 287 109 487 909
+rect 545 109 745 909
+rect 803 109 1003 909
+rect 1061 109 1261 909
+rect -1261 -909 -1061 -109
+rect -1003 -909 -803 -109
+rect -745 -909 -545 -109
+rect -487 -909 -287 -109
+rect -229 -909 -29 -109
+rect 29 -909 229 -109
+rect 287 -909 487 -109
+rect 545 -909 745 -109
+rect 803 -909 1003 -109
+rect 1061 -909 1261 -109
+rect -1261 -1927 -1061 -1127
+rect -1003 -1927 -803 -1127
+rect -745 -1927 -545 -1127
+rect -487 -1927 -287 -1127
+rect -229 -1927 -29 -1127
+rect 29 -1927 229 -1127
+rect 287 -1927 487 -1127
+rect 545 -1927 745 -1127
+rect 803 -1927 1003 -1127
+rect 1061 -1927 1261 -1127
+<< ndiff >>
+rect -1319 1915 -1261 1927
+rect -1319 1139 -1307 1915
+rect -1273 1139 -1261 1915
+rect -1319 1127 -1261 1139
+rect -1061 1915 -1003 1927
+rect -1061 1139 -1049 1915
+rect -1015 1139 -1003 1915
+rect -1061 1127 -1003 1139
+rect -803 1915 -745 1927
+rect -803 1139 -791 1915
+rect -757 1139 -745 1915
+rect -803 1127 -745 1139
+rect -545 1915 -487 1927
+rect -545 1139 -533 1915
+rect -499 1139 -487 1915
+rect -545 1127 -487 1139
+rect -287 1915 -229 1927
+rect -287 1139 -275 1915
+rect -241 1139 -229 1915
+rect -287 1127 -229 1139
+rect -29 1915 29 1927
+rect -29 1139 -17 1915
+rect 17 1139 29 1915
+rect -29 1127 29 1139
+rect 229 1915 287 1927
+rect 229 1139 241 1915
+rect 275 1139 287 1915
+rect 229 1127 287 1139
+rect 487 1915 545 1927
+rect 487 1139 499 1915
+rect 533 1139 545 1915
+rect 487 1127 545 1139
+rect 745 1915 803 1927
+rect 745 1139 757 1915
+rect 791 1139 803 1915
+rect 745 1127 803 1139
+rect 1003 1915 1061 1927
+rect 1003 1139 1015 1915
+rect 1049 1139 1061 1915
+rect 1003 1127 1061 1139
+rect 1261 1915 1319 1927
+rect 1261 1139 1273 1915
+rect 1307 1139 1319 1915
+rect 1261 1127 1319 1139
+rect -1319 897 -1261 909
+rect -1319 121 -1307 897
+rect -1273 121 -1261 897
+rect -1319 109 -1261 121
+rect -1061 897 -1003 909
+rect -1061 121 -1049 897
+rect -1015 121 -1003 897
+rect -1061 109 -1003 121
+rect -803 897 -745 909
+rect -803 121 -791 897
+rect -757 121 -745 897
+rect -803 109 -745 121
+rect -545 897 -487 909
+rect -545 121 -533 897
+rect -499 121 -487 897
+rect -545 109 -487 121
+rect -287 897 -229 909
+rect -287 121 -275 897
+rect -241 121 -229 897
+rect -287 109 -229 121
+rect -29 897 29 909
+rect -29 121 -17 897
+rect 17 121 29 897
+rect -29 109 29 121
+rect 229 897 287 909
+rect 229 121 241 897
+rect 275 121 287 897
+rect 229 109 287 121
+rect 487 897 545 909
+rect 487 121 499 897
+rect 533 121 545 897
+rect 487 109 545 121
+rect 745 897 803 909
+rect 745 121 757 897
+rect 791 121 803 897
+rect 745 109 803 121
+rect 1003 897 1061 909
+rect 1003 121 1015 897
+rect 1049 121 1061 897
+rect 1003 109 1061 121
+rect 1261 897 1319 909
+rect 1261 121 1273 897
+rect 1307 121 1319 897
+rect 1261 109 1319 121
+rect -1319 -121 -1261 -109
+rect -1319 -897 -1307 -121
+rect -1273 -897 -1261 -121
+rect -1319 -909 -1261 -897
+rect -1061 -121 -1003 -109
+rect -1061 -897 -1049 -121
+rect -1015 -897 -1003 -121
+rect -1061 -909 -1003 -897
+rect -803 -121 -745 -109
+rect -803 -897 -791 -121
+rect -757 -897 -745 -121
+rect -803 -909 -745 -897
+rect -545 -121 -487 -109
+rect -545 -897 -533 -121
+rect -499 -897 -487 -121
+rect -545 -909 -487 -897
+rect -287 -121 -229 -109
+rect -287 -897 -275 -121
+rect -241 -897 -229 -121
+rect -287 -909 -229 -897
+rect -29 -121 29 -109
+rect -29 -897 -17 -121
+rect 17 -897 29 -121
+rect -29 -909 29 -897
+rect 229 -121 287 -109
+rect 229 -897 241 -121
+rect 275 -897 287 -121
+rect 229 -909 287 -897
+rect 487 -121 545 -109
+rect 487 -897 499 -121
+rect 533 -897 545 -121
+rect 487 -909 545 -897
+rect 745 -121 803 -109
+rect 745 -897 757 -121
+rect 791 -897 803 -121
+rect 745 -909 803 -897
+rect 1003 -121 1061 -109
+rect 1003 -897 1015 -121
+rect 1049 -897 1061 -121
+rect 1003 -909 1061 -897
+rect 1261 -121 1319 -109
+rect 1261 -897 1273 -121
+rect 1307 -897 1319 -121
+rect 1261 -909 1319 -897
+rect -1319 -1139 -1261 -1127
+rect -1319 -1915 -1307 -1139
+rect -1273 -1915 -1261 -1139
+rect -1319 -1927 -1261 -1915
+rect -1061 -1139 -1003 -1127
+rect -1061 -1915 -1049 -1139
+rect -1015 -1915 -1003 -1139
+rect -1061 -1927 -1003 -1915
+rect -803 -1139 -745 -1127
+rect -803 -1915 -791 -1139
+rect -757 -1915 -745 -1139
+rect -803 -1927 -745 -1915
+rect -545 -1139 -487 -1127
+rect -545 -1915 -533 -1139
+rect -499 -1915 -487 -1139
+rect -545 -1927 -487 -1915
+rect -287 -1139 -229 -1127
+rect -287 -1915 -275 -1139
+rect -241 -1915 -229 -1139
+rect -287 -1927 -229 -1915
+rect -29 -1139 29 -1127
+rect -29 -1915 -17 -1139
+rect 17 -1915 29 -1139
+rect -29 -1927 29 -1915
+rect 229 -1139 287 -1127
+rect 229 -1915 241 -1139
+rect 275 -1915 287 -1139
+rect 229 -1927 287 -1915
+rect 487 -1139 545 -1127
+rect 487 -1915 499 -1139
+rect 533 -1915 545 -1139
+rect 487 -1927 545 -1915
+rect 745 -1139 803 -1127
+rect 745 -1915 757 -1139
+rect 791 -1915 803 -1139
+rect 745 -1927 803 -1915
+rect 1003 -1139 1061 -1127
+rect 1003 -1915 1015 -1139
+rect 1049 -1915 1061 -1139
+rect 1003 -1927 1061 -1915
+rect 1261 -1139 1319 -1127
+rect 1261 -1915 1273 -1139
+rect 1307 -1915 1319 -1139
+rect 1261 -1927 1319 -1915
+<< ndiffc >>
+rect -1307 1139 -1273 1915
+rect -1049 1139 -1015 1915
+rect -791 1139 -757 1915
+rect -533 1139 -499 1915
+rect -275 1139 -241 1915
+rect -17 1139 17 1915
+rect 241 1139 275 1915
+rect 499 1139 533 1915
+rect 757 1139 791 1915
+rect 1015 1139 1049 1915
+rect 1273 1139 1307 1915
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+rect -1307 -1915 -1273 -1139
+rect -1049 -1915 -1015 -1139
+rect -791 -1915 -757 -1139
+rect -533 -1915 -499 -1139
+rect -275 -1915 -241 -1139
+rect -17 -1915 17 -1139
+rect 241 -1915 275 -1139
+rect 499 -1915 533 -1139
+rect 757 -1915 791 -1139
+rect 1015 -1915 1049 -1139
+rect 1273 -1915 1307 -1139
+<< psubdiff >>
+rect -1421 2067 -1325 2101
+rect 1325 2067 1421 2101
+rect -1421 2005 -1387 2067
+rect 1387 2005 1421 2067
+rect -1421 -2067 -1387 -2005
+rect 1387 -2067 1421 -2005
+rect -1421 -2101 -1325 -2067
+rect 1325 -2101 1421 -2067
+<< psubdiffcont >>
+rect -1325 2067 1325 2101
+rect -1421 -2005 -1387 2005
+rect 1387 -2005 1421 2005
+rect -1325 -2101 1325 -2067
+<< poly >>
+rect -1261 1999 -1061 2015
+rect -1261 1965 -1245 1999
+rect -1077 1965 -1061 1999
+rect -1261 1927 -1061 1965
+rect -1003 1999 -803 2015
+rect -1003 1965 -987 1999
+rect -819 1965 -803 1999
+rect -1003 1927 -803 1965
+rect -745 1999 -545 2015
+rect -745 1965 -729 1999
+rect -561 1965 -545 1999
+rect -745 1927 -545 1965
+rect -487 1999 -287 2015
+rect -487 1965 -471 1999
+rect -303 1965 -287 1999
+rect -487 1927 -287 1965
+rect -229 1999 -29 2015
+rect -229 1965 -213 1999
+rect -45 1965 -29 1999
+rect -229 1927 -29 1965
+rect 29 1999 229 2015
+rect 29 1965 45 1999
+rect 213 1965 229 1999
+rect 29 1927 229 1965
+rect 287 1999 487 2015
+rect 287 1965 303 1999
+rect 471 1965 487 1999
+rect 287 1927 487 1965
+rect 545 1999 745 2015
+rect 545 1965 561 1999
+rect 729 1965 745 1999
+rect 545 1927 745 1965
+rect 803 1999 1003 2015
+rect 803 1965 819 1999
+rect 987 1965 1003 1999
+rect 803 1927 1003 1965
+rect 1061 1999 1261 2015
+rect 1061 1965 1077 1999
+rect 1245 1965 1261 1999
+rect 1061 1927 1261 1965
+rect -1261 1089 -1061 1127
+rect -1261 1055 -1245 1089
+rect -1077 1055 -1061 1089
+rect -1261 1039 -1061 1055
+rect -1003 1089 -803 1127
+rect -1003 1055 -987 1089
+rect -819 1055 -803 1089
+rect -1003 1039 -803 1055
+rect -745 1089 -545 1127
+rect -745 1055 -729 1089
+rect -561 1055 -545 1089
+rect -745 1039 -545 1055
+rect -487 1089 -287 1127
+rect -487 1055 -471 1089
+rect -303 1055 -287 1089
+rect -487 1039 -287 1055
+rect -229 1089 -29 1127
+rect -229 1055 -213 1089
+rect -45 1055 -29 1089
+rect -229 1039 -29 1055
+rect 29 1089 229 1127
+rect 29 1055 45 1089
+rect 213 1055 229 1089
+rect 29 1039 229 1055
+rect 287 1089 487 1127
+rect 287 1055 303 1089
+rect 471 1055 487 1089
+rect 287 1039 487 1055
+rect 545 1089 745 1127
+rect 545 1055 561 1089
+rect 729 1055 745 1089
+rect 545 1039 745 1055
+rect 803 1089 1003 1127
+rect 803 1055 819 1089
+rect 987 1055 1003 1089
+rect 803 1039 1003 1055
+rect 1061 1089 1261 1127
+rect 1061 1055 1077 1089
+rect 1245 1055 1261 1089
+rect 1061 1039 1261 1055
+rect -1261 981 -1061 997
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1261 909 -1061 947
+rect -1003 981 -803 997
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -1003 909 -803 947
+rect -745 981 -545 997
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -745 909 -545 947
+rect -487 981 -287 997
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -487 909 -287 947
+rect -229 981 -29 997
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect -229 909 -29 947
+rect 29 981 229 997
+rect 29 947 45 981
+rect 213 947 229 981
+rect 29 909 229 947
+rect 287 981 487 997
+rect 287 947 303 981
+rect 471 947 487 981
+rect 287 909 487 947
+rect 545 981 745 997
+rect 545 947 561 981
+rect 729 947 745 981
+rect 545 909 745 947
+rect 803 981 1003 997
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 803 909 1003 947
+rect 1061 981 1261 997
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect 1061 909 1261 947
+rect -1261 71 -1061 109
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1261 21 -1061 37
+rect -1003 71 -803 109
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -1003 21 -803 37
+rect -745 71 -545 109
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -745 21 -545 37
+rect -487 71 -287 109
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -487 21 -287 37
+rect -229 71 -29 109
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect -229 21 -29 37
+rect 29 71 229 109
+rect 29 37 45 71
+rect 213 37 229 71
+rect 29 21 229 37
+rect 287 71 487 109
+rect 287 37 303 71
+rect 471 37 487 71
+rect 287 21 487 37
+rect 545 71 745 109
+rect 545 37 561 71
+rect 729 37 745 71
+rect 545 21 745 37
+rect 803 71 1003 109
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 803 21 1003 37
+rect 1061 71 1261 109
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect 1061 21 1261 37
+rect -1261 -37 -1061 -21
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1261 -109 -1061 -71
+rect -1003 -37 -803 -21
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -1003 -109 -803 -71
+rect -745 -37 -545 -21
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -745 -109 -545 -71
+rect -487 -37 -287 -21
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -487 -109 -287 -71
+rect -229 -37 -29 -21
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect -229 -109 -29 -71
+rect 29 -37 229 -21
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 29 -109 229 -71
+rect 287 -37 487 -21
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 287 -109 487 -71
+rect 545 -37 745 -21
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 545 -109 745 -71
+rect 803 -37 1003 -21
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 803 -109 1003 -71
+rect 1061 -37 1261 -21
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect 1061 -109 1261 -71
+rect -1261 -947 -1061 -909
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1261 -997 -1061 -981
+rect -1003 -947 -803 -909
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -1003 -997 -803 -981
+rect -745 -947 -545 -909
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -745 -997 -545 -981
+rect -487 -947 -287 -909
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -487 -997 -287 -981
+rect -229 -947 -29 -909
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect -229 -997 -29 -981
+rect 29 -947 229 -909
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 29 -997 229 -981
+rect 287 -947 487 -909
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 287 -997 487 -981
+rect 545 -947 745 -909
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 545 -997 745 -981
+rect 803 -947 1003 -909
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 803 -997 1003 -981
+rect 1061 -947 1261 -909
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect 1061 -997 1261 -981
+rect -1261 -1055 -1061 -1039
+rect -1261 -1089 -1245 -1055
+rect -1077 -1089 -1061 -1055
+rect -1261 -1127 -1061 -1089
+rect -1003 -1055 -803 -1039
+rect -1003 -1089 -987 -1055
+rect -819 -1089 -803 -1055
+rect -1003 -1127 -803 -1089
+rect -745 -1055 -545 -1039
+rect -745 -1089 -729 -1055
+rect -561 -1089 -545 -1055
+rect -745 -1127 -545 -1089
+rect -487 -1055 -287 -1039
+rect -487 -1089 -471 -1055
+rect -303 -1089 -287 -1055
+rect -487 -1127 -287 -1089
+rect -229 -1055 -29 -1039
+rect -229 -1089 -213 -1055
+rect -45 -1089 -29 -1055
+rect -229 -1127 -29 -1089
+rect 29 -1055 229 -1039
+rect 29 -1089 45 -1055
+rect 213 -1089 229 -1055
+rect 29 -1127 229 -1089
+rect 287 -1055 487 -1039
+rect 287 -1089 303 -1055
+rect 471 -1089 487 -1055
+rect 287 -1127 487 -1089
+rect 545 -1055 745 -1039
+rect 545 -1089 561 -1055
+rect 729 -1089 745 -1055
+rect 545 -1127 745 -1089
+rect 803 -1055 1003 -1039
+rect 803 -1089 819 -1055
+rect 987 -1089 1003 -1055
+rect 803 -1127 1003 -1089
+rect 1061 -1055 1261 -1039
+rect 1061 -1089 1077 -1055
+rect 1245 -1089 1261 -1055
+rect 1061 -1127 1261 -1089
+rect -1261 -1965 -1061 -1927
+rect -1261 -1999 -1245 -1965
+rect -1077 -1999 -1061 -1965
+rect -1261 -2015 -1061 -1999
+rect -1003 -1965 -803 -1927
+rect -1003 -1999 -987 -1965
+rect -819 -1999 -803 -1965
+rect -1003 -2015 -803 -1999
+rect -745 -1965 -545 -1927
+rect -745 -1999 -729 -1965
+rect -561 -1999 -545 -1965
+rect -745 -2015 -545 -1999
+rect -487 -1965 -287 -1927
+rect -487 -1999 -471 -1965
+rect -303 -1999 -287 -1965
+rect -487 -2015 -287 -1999
+rect -229 -1965 -29 -1927
+rect -229 -1999 -213 -1965
+rect -45 -1999 -29 -1965
+rect -229 -2015 -29 -1999
+rect 29 -1965 229 -1927
+rect 29 -1999 45 -1965
+rect 213 -1999 229 -1965
+rect 29 -2015 229 -1999
+rect 287 -1965 487 -1927
+rect 287 -1999 303 -1965
+rect 471 -1999 487 -1965
+rect 287 -2015 487 -1999
+rect 545 -1965 745 -1927
+rect 545 -1999 561 -1965
+rect 729 -1999 745 -1965
+rect 545 -2015 745 -1999
+rect 803 -1965 1003 -1927
+rect 803 -1999 819 -1965
+rect 987 -1999 1003 -1965
+rect 803 -2015 1003 -1999
+rect 1061 -1965 1261 -1927
+rect 1061 -1999 1077 -1965
+rect 1245 -1999 1261 -1965
+rect 1061 -2015 1261 -1999
+<< polycont >>
+rect -1245 1965 -1077 1999
+rect -987 1965 -819 1999
+rect -729 1965 -561 1999
+rect -471 1965 -303 1999
+rect -213 1965 -45 1999
+rect 45 1965 213 1999
+rect 303 1965 471 1999
+rect 561 1965 729 1999
+rect 819 1965 987 1999
+rect 1077 1965 1245 1999
+rect -1245 1055 -1077 1089
+rect -987 1055 -819 1089
+rect -729 1055 -561 1089
+rect -471 1055 -303 1089
+rect -213 1055 -45 1089
+rect 45 1055 213 1089
+rect 303 1055 471 1089
+rect 561 1055 729 1089
+rect 819 1055 987 1089
+rect 1077 1055 1245 1089
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+rect -1245 -1089 -1077 -1055
+rect -987 -1089 -819 -1055
+rect -729 -1089 -561 -1055
+rect -471 -1089 -303 -1055
+rect -213 -1089 -45 -1055
+rect 45 -1089 213 -1055
+rect 303 -1089 471 -1055
+rect 561 -1089 729 -1055
+rect 819 -1089 987 -1055
+rect 1077 -1089 1245 -1055
+rect -1245 -1999 -1077 -1965
+rect -987 -1999 -819 -1965
+rect -729 -1999 -561 -1965
+rect -471 -1999 -303 -1965
+rect -213 -1999 -45 -1965
+rect 45 -1999 213 -1965
+rect 303 -1999 471 -1965
+rect 561 -1999 729 -1965
+rect 819 -1999 987 -1965
+rect 1077 -1999 1245 -1965
+<< locali >>
+rect -1421 2067 -1325 2101
+rect 1325 2067 1421 2101
+rect -1421 2005 -1387 2067
+rect 1387 2005 1421 2067
+rect -1261 1965 -1245 1999
+rect -1077 1965 -1061 1999
+rect -1003 1965 -987 1999
+rect -819 1965 -803 1999
+rect -745 1965 -729 1999
+rect -561 1965 -545 1999
+rect -487 1965 -471 1999
+rect -303 1965 -287 1999
+rect -229 1965 -213 1999
+rect -45 1965 -29 1999
+rect 29 1965 45 1999
+rect 213 1965 229 1999
+rect 287 1965 303 1999
+rect 471 1965 487 1999
+rect 545 1965 561 1999
+rect 729 1965 745 1999
+rect 803 1965 819 1999
+rect 987 1965 1003 1999
+rect 1061 1965 1077 1999
+rect 1245 1965 1261 1999
+rect -1307 1915 -1273 1931
+rect -1307 1123 -1273 1139
+rect -1049 1915 -1015 1931
+rect -1049 1123 -1015 1139
+rect -791 1915 -757 1931
+rect -791 1123 -757 1139
+rect -533 1915 -499 1931
+rect -533 1123 -499 1139
+rect -275 1915 -241 1931
+rect -275 1123 -241 1139
+rect -17 1915 17 1931
+rect -17 1123 17 1139
+rect 241 1915 275 1931
+rect 241 1123 275 1139
+rect 499 1915 533 1931
+rect 499 1123 533 1139
+rect 757 1915 791 1931
+rect 757 1123 791 1139
+rect 1015 1915 1049 1931
+rect 1015 1123 1049 1139
+rect 1273 1915 1307 1931
+rect 1273 1123 1307 1139
+rect -1261 1055 -1245 1089
+rect -1077 1055 -1061 1089
+rect -1003 1055 -987 1089
+rect -819 1055 -803 1089
+rect -745 1055 -729 1089
+rect -561 1055 -545 1089
+rect -487 1055 -471 1089
+rect -303 1055 -287 1089
+rect -229 1055 -213 1089
+rect -45 1055 -29 1089
+rect 29 1055 45 1089
+rect 213 1055 229 1089
+rect 287 1055 303 1089
+rect 471 1055 487 1089
+rect 545 1055 561 1089
+rect 729 1055 745 1089
+rect 803 1055 819 1089
+rect 987 1055 1003 1089
+rect 1061 1055 1077 1089
+rect 1245 1055 1261 1089
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect 29 947 45 981
+rect 213 947 229 981
+rect 287 947 303 981
+rect 471 947 487 981
+rect 545 947 561 981
+rect 729 947 745 981
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect -1307 897 -1273 913
+rect -1307 105 -1273 121
+rect -1049 897 -1015 913
+rect -1049 105 -1015 121
+rect -791 897 -757 913
+rect -791 105 -757 121
+rect -533 897 -499 913
+rect -533 105 -499 121
+rect -275 897 -241 913
+rect -275 105 -241 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 241 897 275 913
+rect 241 105 275 121
+rect 499 897 533 913
+rect 499 105 533 121
+rect 757 897 791 913
+rect 757 105 791 121
+rect 1015 897 1049 913
+rect 1015 105 1049 121
+rect 1273 897 1307 913
+rect 1273 105 1307 121
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 213 37 229 71
+rect 287 37 303 71
+rect 471 37 487 71
+rect 545 37 561 71
+rect 729 37 745 71
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect -1307 -121 -1273 -105
+rect -1307 -913 -1273 -897
+rect -1049 -121 -1015 -105
+rect -1049 -913 -1015 -897
+rect -791 -121 -757 -105
+rect -791 -913 -757 -897
+rect -533 -121 -499 -105
+rect -533 -913 -499 -897
+rect -275 -121 -241 -105
+rect -275 -913 -241 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 241 -121 275 -105
+rect 241 -913 275 -897
+rect 499 -121 533 -105
+rect 499 -913 533 -897
+rect 757 -121 791 -105
+rect 757 -913 791 -897
+rect 1015 -121 1049 -105
+rect 1015 -913 1049 -897
+rect 1273 -121 1307 -105
+rect 1273 -913 1307 -897
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect -1261 -1089 -1245 -1055
+rect -1077 -1089 -1061 -1055
+rect -1003 -1089 -987 -1055
+rect -819 -1089 -803 -1055
+rect -745 -1089 -729 -1055
+rect -561 -1089 -545 -1055
+rect -487 -1089 -471 -1055
+rect -303 -1089 -287 -1055
+rect -229 -1089 -213 -1055
+rect -45 -1089 -29 -1055
+rect 29 -1089 45 -1055
+rect 213 -1089 229 -1055
+rect 287 -1089 303 -1055
+rect 471 -1089 487 -1055
+rect 545 -1089 561 -1055
+rect 729 -1089 745 -1055
+rect 803 -1089 819 -1055
+rect 987 -1089 1003 -1055
+rect 1061 -1089 1077 -1055
+rect 1245 -1089 1261 -1055
+rect -1307 -1139 -1273 -1123
+rect -1307 -1931 -1273 -1915
+rect -1049 -1139 -1015 -1123
+rect -1049 -1931 -1015 -1915
+rect -791 -1139 -757 -1123
+rect -791 -1931 -757 -1915
+rect -533 -1139 -499 -1123
+rect -533 -1931 -499 -1915
+rect -275 -1139 -241 -1123
+rect -275 -1931 -241 -1915
+rect -17 -1139 17 -1123
+rect -17 -1931 17 -1915
+rect 241 -1139 275 -1123
+rect 241 -1931 275 -1915
+rect 499 -1139 533 -1123
+rect 499 -1931 533 -1915
+rect 757 -1139 791 -1123
+rect 757 -1931 791 -1915
+rect 1015 -1139 1049 -1123
+rect 1015 -1931 1049 -1915
+rect 1273 -1139 1307 -1123
+rect 1273 -1931 1307 -1915
+rect -1261 -1999 -1245 -1965
+rect -1077 -1999 -1061 -1965
+rect -1003 -1999 -987 -1965
+rect -819 -1999 -803 -1965
+rect -745 -1999 -729 -1965
+rect -561 -1999 -545 -1965
+rect -487 -1999 -471 -1965
+rect -303 -1999 -287 -1965
+rect -229 -1999 -213 -1965
+rect -45 -1999 -29 -1965
+rect 29 -1999 45 -1965
+rect 213 -1999 229 -1965
+rect 287 -1999 303 -1965
+rect 471 -1999 487 -1965
+rect 545 -1999 561 -1965
+rect 729 -1999 745 -1965
+rect 803 -1999 819 -1965
+rect 987 -1999 1003 -1965
+rect 1061 -1999 1077 -1965
+rect 1245 -1999 1261 -1965
+rect -1421 -2067 -1387 -2005
+rect 1387 -2067 1421 -2005
+rect -1421 -2101 -1325 -2067
+rect 1325 -2101 1421 -2067
+<< viali >>
+rect -1245 1965 -1077 1999
+rect -987 1965 -819 1999
+rect -729 1965 -561 1999
+rect -471 1965 -303 1999
+rect -213 1965 -45 1999
+rect 45 1965 213 1999
+rect 303 1965 471 1999
+rect 561 1965 729 1999
+rect 819 1965 987 1999
+rect 1077 1965 1245 1999
+rect -1307 1139 -1273 1915
+rect -1049 1139 -1015 1915
+rect -791 1139 -757 1915
+rect -533 1139 -499 1915
+rect -275 1139 -241 1915
+rect -17 1139 17 1915
+rect 241 1139 275 1915
+rect 499 1139 533 1915
+rect 757 1139 791 1915
+rect 1015 1139 1049 1915
+rect 1273 1139 1307 1915
+rect -1245 1055 -1077 1089
+rect -987 1055 -819 1089
+rect -729 1055 -561 1089
+rect -471 1055 -303 1089
+rect -213 1055 -45 1089
+rect 45 1055 213 1089
+rect 303 1055 471 1089
+rect 561 1055 729 1089
+rect 819 1055 987 1089
+rect 1077 1055 1245 1089
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+rect -1245 -1089 -1077 -1055
+rect -987 -1089 -819 -1055
+rect -729 -1089 -561 -1055
+rect -471 -1089 -303 -1055
+rect -213 -1089 -45 -1055
+rect 45 -1089 213 -1055
+rect 303 -1089 471 -1055
+rect 561 -1089 729 -1055
+rect 819 -1089 987 -1055
+rect 1077 -1089 1245 -1055
+rect -1307 -1915 -1273 -1139
+rect -1049 -1915 -1015 -1139
+rect -791 -1915 -757 -1139
+rect -533 -1915 -499 -1139
+rect -275 -1915 -241 -1139
+rect -17 -1915 17 -1139
+rect 241 -1915 275 -1139
+rect 499 -1915 533 -1139
+rect 757 -1915 791 -1139
+rect 1015 -1915 1049 -1139
+rect 1273 -1915 1307 -1139
+rect -1245 -1999 -1077 -1965
+rect -987 -1999 -819 -1965
+rect -729 -1999 -561 -1965
+rect -471 -1999 -303 -1965
+rect -213 -1999 -45 -1965
+rect 45 -1999 213 -1965
+rect 303 -1999 471 -1965
+rect 561 -1999 729 -1965
+rect 819 -1999 987 -1965
+rect 1077 -1999 1245 -1965
+<< metal1 >>
+rect -1257 1999 -1065 2005
+rect -1257 1965 -1245 1999
+rect -1077 1965 -1065 1999
+rect -1257 1959 -1065 1965
+rect -999 1999 -807 2005
+rect -999 1965 -987 1999
+rect -819 1965 -807 1999
+rect -999 1959 -807 1965
+rect -741 1999 -549 2005
+rect -741 1965 -729 1999
+rect -561 1965 -549 1999
+rect -741 1959 -549 1965
+rect -483 1999 -291 2005
+rect -483 1965 -471 1999
+rect -303 1965 -291 1999
+rect -483 1959 -291 1965
+rect -225 1999 -33 2005
+rect -225 1965 -213 1999
+rect -45 1965 -33 1999
+rect -225 1959 -33 1965
+rect 33 1999 225 2005
+rect 33 1965 45 1999
+rect 213 1965 225 1999
+rect 33 1959 225 1965
+rect 291 1999 483 2005
+rect 291 1965 303 1999
+rect 471 1965 483 1999
+rect 291 1959 483 1965
+rect 549 1999 741 2005
+rect 549 1965 561 1999
+rect 729 1965 741 1999
+rect 549 1959 741 1965
+rect 807 1999 999 2005
+rect 807 1965 819 1999
+rect 987 1965 999 1999
+rect 807 1959 999 1965
+rect 1065 1999 1257 2005
+rect 1065 1965 1077 1999
+rect 1245 1965 1257 1999
+rect 1065 1959 1257 1965
+rect -1313 1915 -1267 1927
+rect -1313 1139 -1307 1915
+rect -1273 1139 -1267 1915
+rect -1313 1127 -1267 1139
+rect -1055 1915 -1009 1927
+rect -1055 1139 -1049 1915
+rect -1015 1139 -1009 1915
+rect -1055 1127 -1009 1139
+rect -797 1915 -751 1927
+rect -797 1139 -791 1915
+rect -757 1139 -751 1915
+rect -797 1127 -751 1139
+rect -539 1915 -493 1927
+rect -539 1139 -533 1915
+rect -499 1139 -493 1915
+rect -539 1127 -493 1139
+rect -281 1915 -235 1927
+rect -281 1139 -275 1915
+rect -241 1139 -235 1915
+rect -281 1127 -235 1139
+rect -23 1915 23 1927
+rect -23 1139 -17 1915
+rect 17 1139 23 1915
+rect -23 1127 23 1139
+rect 235 1915 281 1927
+rect 235 1139 241 1915
+rect 275 1139 281 1915
+rect 235 1127 281 1139
+rect 493 1915 539 1927
+rect 493 1139 499 1915
+rect 533 1139 539 1915
+rect 493 1127 539 1139
+rect 751 1915 797 1927
+rect 751 1139 757 1915
+rect 791 1139 797 1915
+rect 751 1127 797 1139
+rect 1009 1915 1055 1927
+rect 1009 1139 1015 1915
+rect 1049 1139 1055 1915
+rect 1009 1127 1055 1139
+rect 1267 1915 1313 1927
+rect 1267 1139 1273 1915
+rect 1307 1139 1313 1915
+rect 1267 1127 1313 1139
+rect -1257 1089 -1065 1095
+rect -1257 1055 -1245 1089
+rect -1077 1055 -1065 1089
+rect -1257 1049 -1065 1055
+rect -999 1089 -807 1095
+rect -999 1055 -987 1089
+rect -819 1055 -807 1089
+rect -999 1049 -807 1055
+rect -741 1089 -549 1095
+rect -741 1055 -729 1089
+rect -561 1055 -549 1089
+rect -741 1049 -549 1055
+rect -483 1089 -291 1095
+rect -483 1055 -471 1089
+rect -303 1055 -291 1089
+rect -483 1049 -291 1055
+rect -225 1089 -33 1095
+rect -225 1055 -213 1089
+rect -45 1055 -33 1089
+rect -225 1049 -33 1055
+rect 33 1089 225 1095
+rect 33 1055 45 1089
+rect 213 1055 225 1089
+rect 33 1049 225 1055
+rect 291 1089 483 1095
+rect 291 1055 303 1089
+rect 471 1055 483 1089
+rect 291 1049 483 1055
+rect 549 1089 741 1095
+rect 549 1055 561 1089
+rect 729 1055 741 1089
+rect 549 1049 741 1055
+rect 807 1089 999 1095
+rect 807 1055 819 1089
+rect 987 1055 999 1089
+rect 807 1049 999 1055
+rect 1065 1089 1257 1095
+rect 1065 1055 1077 1089
+rect 1245 1055 1257 1089
+rect 1065 1049 1257 1055
+rect -1257 981 -1065 987
+rect -1257 947 -1245 981
+rect -1077 947 -1065 981
+rect -1257 941 -1065 947
+rect -999 981 -807 987
+rect -999 947 -987 981
+rect -819 947 -807 981
+rect -999 941 -807 947
+rect -741 981 -549 987
+rect -741 947 -729 981
+rect -561 947 -549 981
+rect -741 941 -549 947
+rect -483 981 -291 987
+rect -483 947 -471 981
+rect -303 947 -291 981
+rect -483 941 -291 947
+rect -225 981 -33 987
+rect -225 947 -213 981
+rect -45 947 -33 981
+rect -225 941 -33 947
+rect 33 981 225 987
+rect 33 947 45 981
+rect 213 947 225 981
+rect 33 941 225 947
+rect 291 981 483 987
+rect 291 947 303 981
+rect 471 947 483 981
+rect 291 941 483 947
+rect 549 981 741 987
+rect 549 947 561 981
+rect 729 947 741 981
+rect 549 941 741 947
+rect 807 981 999 987
+rect 807 947 819 981
+rect 987 947 999 981
+rect 807 941 999 947
+rect 1065 981 1257 987
+rect 1065 947 1077 981
+rect 1245 947 1257 981
+rect 1065 941 1257 947
+rect -1313 897 -1267 909
+rect -1313 121 -1307 897
+rect -1273 121 -1267 897
+rect -1313 109 -1267 121
+rect -1055 897 -1009 909
+rect -1055 121 -1049 897
+rect -1015 121 -1009 897
+rect -1055 109 -1009 121
+rect -797 897 -751 909
+rect -797 121 -791 897
+rect -757 121 -751 897
+rect -797 109 -751 121
+rect -539 897 -493 909
+rect -539 121 -533 897
+rect -499 121 -493 897
+rect -539 109 -493 121
+rect -281 897 -235 909
+rect -281 121 -275 897
+rect -241 121 -235 897
+rect -281 109 -235 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 235 897 281 909
+rect 235 121 241 897
+rect 275 121 281 897
+rect 235 109 281 121
+rect 493 897 539 909
+rect 493 121 499 897
+rect 533 121 539 897
+rect 493 109 539 121
+rect 751 897 797 909
+rect 751 121 757 897
+rect 791 121 797 897
+rect 751 109 797 121
+rect 1009 897 1055 909
+rect 1009 121 1015 897
+rect 1049 121 1055 897
+rect 1009 109 1055 121
+rect 1267 897 1313 909
+rect 1267 121 1273 897
+rect 1307 121 1313 897
+rect 1267 109 1313 121
+rect -1257 71 -1065 77
+rect -1257 37 -1245 71
+rect -1077 37 -1065 71
+rect -1257 31 -1065 37
+rect -999 71 -807 77
+rect -999 37 -987 71
+rect -819 37 -807 71
+rect -999 31 -807 37
+rect -741 71 -549 77
+rect -741 37 -729 71
+rect -561 37 -549 71
+rect -741 31 -549 37
+rect -483 71 -291 77
+rect -483 37 -471 71
+rect -303 37 -291 71
+rect -483 31 -291 37
+rect -225 71 -33 77
+rect -225 37 -213 71
+rect -45 37 -33 71
+rect -225 31 -33 37
+rect 33 71 225 77
+rect 33 37 45 71
+rect 213 37 225 71
+rect 33 31 225 37
+rect 291 71 483 77
+rect 291 37 303 71
+rect 471 37 483 71
+rect 291 31 483 37
+rect 549 71 741 77
+rect 549 37 561 71
+rect 729 37 741 71
+rect 549 31 741 37
+rect 807 71 999 77
+rect 807 37 819 71
+rect 987 37 999 71
+rect 807 31 999 37
+rect 1065 71 1257 77
+rect 1065 37 1077 71
+rect 1245 37 1257 71
+rect 1065 31 1257 37
+rect -1257 -37 -1065 -31
+rect -1257 -71 -1245 -37
+rect -1077 -71 -1065 -37
+rect -1257 -77 -1065 -71
+rect -999 -37 -807 -31
+rect -999 -71 -987 -37
+rect -819 -71 -807 -37
+rect -999 -77 -807 -71
+rect -741 -37 -549 -31
+rect -741 -71 -729 -37
+rect -561 -71 -549 -37
+rect -741 -77 -549 -71
+rect -483 -37 -291 -31
+rect -483 -71 -471 -37
+rect -303 -71 -291 -37
+rect -483 -77 -291 -71
+rect -225 -37 -33 -31
+rect -225 -71 -213 -37
+rect -45 -71 -33 -37
+rect -225 -77 -33 -71
+rect 33 -37 225 -31
+rect 33 -71 45 -37
+rect 213 -71 225 -37
+rect 33 -77 225 -71
+rect 291 -37 483 -31
+rect 291 -71 303 -37
+rect 471 -71 483 -37
+rect 291 -77 483 -71
+rect 549 -37 741 -31
+rect 549 -71 561 -37
+rect 729 -71 741 -37
+rect 549 -77 741 -71
+rect 807 -37 999 -31
+rect 807 -71 819 -37
+rect 987 -71 999 -37
+rect 807 -77 999 -71
+rect 1065 -37 1257 -31
+rect 1065 -71 1077 -37
+rect 1245 -71 1257 -37
+rect 1065 -77 1257 -71
+rect -1313 -121 -1267 -109
+rect -1313 -897 -1307 -121
+rect -1273 -897 -1267 -121
+rect -1313 -909 -1267 -897
+rect -1055 -121 -1009 -109
+rect -1055 -897 -1049 -121
+rect -1015 -897 -1009 -121
+rect -1055 -909 -1009 -897
+rect -797 -121 -751 -109
+rect -797 -897 -791 -121
+rect -757 -897 -751 -121
+rect -797 -909 -751 -897
+rect -539 -121 -493 -109
+rect -539 -897 -533 -121
+rect -499 -897 -493 -121
+rect -539 -909 -493 -897
+rect -281 -121 -235 -109
+rect -281 -897 -275 -121
+rect -241 -897 -235 -121
+rect -281 -909 -235 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 235 -121 281 -109
+rect 235 -897 241 -121
+rect 275 -897 281 -121
+rect 235 -909 281 -897
+rect 493 -121 539 -109
+rect 493 -897 499 -121
+rect 533 -897 539 -121
+rect 493 -909 539 -897
+rect 751 -121 797 -109
+rect 751 -897 757 -121
+rect 791 -897 797 -121
+rect 751 -909 797 -897
+rect 1009 -121 1055 -109
+rect 1009 -897 1015 -121
+rect 1049 -897 1055 -121
+rect 1009 -909 1055 -897
+rect 1267 -121 1313 -109
+rect 1267 -897 1273 -121
+rect 1307 -897 1313 -121
+rect 1267 -909 1313 -897
+rect -1257 -947 -1065 -941
+rect -1257 -981 -1245 -947
+rect -1077 -981 -1065 -947
+rect -1257 -987 -1065 -981
+rect -999 -947 -807 -941
+rect -999 -981 -987 -947
+rect -819 -981 -807 -947
+rect -999 -987 -807 -981
+rect -741 -947 -549 -941
+rect -741 -981 -729 -947
+rect -561 -981 -549 -947
+rect -741 -987 -549 -981
+rect -483 -947 -291 -941
+rect -483 -981 -471 -947
+rect -303 -981 -291 -947
+rect -483 -987 -291 -981
+rect -225 -947 -33 -941
+rect -225 -981 -213 -947
+rect -45 -981 -33 -947
+rect -225 -987 -33 -981
+rect 33 -947 225 -941
+rect 33 -981 45 -947
+rect 213 -981 225 -947
+rect 33 -987 225 -981
+rect 291 -947 483 -941
+rect 291 -981 303 -947
+rect 471 -981 483 -947
+rect 291 -987 483 -981
+rect 549 -947 741 -941
+rect 549 -981 561 -947
+rect 729 -981 741 -947
+rect 549 -987 741 -981
+rect 807 -947 999 -941
+rect 807 -981 819 -947
+rect 987 -981 999 -947
+rect 807 -987 999 -981
+rect 1065 -947 1257 -941
+rect 1065 -981 1077 -947
+rect 1245 -981 1257 -947
+rect 1065 -987 1257 -981
+rect -1257 -1055 -1065 -1049
+rect -1257 -1089 -1245 -1055
+rect -1077 -1089 -1065 -1055
+rect -1257 -1095 -1065 -1089
+rect -999 -1055 -807 -1049
+rect -999 -1089 -987 -1055
+rect -819 -1089 -807 -1055
+rect -999 -1095 -807 -1089
+rect -741 -1055 -549 -1049
+rect -741 -1089 -729 -1055
+rect -561 -1089 -549 -1055
+rect -741 -1095 -549 -1089
+rect -483 -1055 -291 -1049
+rect -483 -1089 -471 -1055
+rect -303 -1089 -291 -1055
+rect -483 -1095 -291 -1089
+rect -225 -1055 -33 -1049
+rect -225 -1089 -213 -1055
+rect -45 -1089 -33 -1055
+rect -225 -1095 -33 -1089
+rect 33 -1055 225 -1049
+rect 33 -1089 45 -1055
+rect 213 -1089 225 -1055
+rect 33 -1095 225 -1089
+rect 291 -1055 483 -1049
+rect 291 -1089 303 -1055
+rect 471 -1089 483 -1055
+rect 291 -1095 483 -1089
+rect 549 -1055 741 -1049
+rect 549 -1089 561 -1055
+rect 729 -1089 741 -1055
+rect 549 -1095 741 -1089
+rect 807 -1055 999 -1049
+rect 807 -1089 819 -1055
+rect 987 -1089 999 -1055
+rect 807 -1095 999 -1089
+rect 1065 -1055 1257 -1049
+rect 1065 -1089 1077 -1055
+rect 1245 -1089 1257 -1055
+rect 1065 -1095 1257 -1089
+rect -1313 -1139 -1267 -1127
+rect -1313 -1915 -1307 -1139
+rect -1273 -1915 -1267 -1139
+rect -1313 -1927 -1267 -1915
+rect -1055 -1139 -1009 -1127
+rect -1055 -1915 -1049 -1139
+rect -1015 -1915 -1009 -1139
+rect -1055 -1927 -1009 -1915
+rect -797 -1139 -751 -1127
+rect -797 -1915 -791 -1139
+rect -757 -1915 -751 -1139
+rect -797 -1927 -751 -1915
+rect -539 -1139 -493 -1127
+rect -539 -1915 -533 -1139
+rect -499 -1915 -493 -1139
+rect -539 -1927 -493 -1915
+rect -281 -1139 -235 -1127
+rect -281 -1915 -275 -1139
+rect -241 -1915 -235 -1139
+rect -281 -1927 -235 -1915
+rect -23 -1139 23 -1127
+rect -23 -1915 -17 -1139
+rect 17 -1915 23 -1139
+rect -23 -1927 23 -1915
+rect 235 -1139 281 -1127
+rect 235 -1915 241 -1139
+rect 275 -1915 281 -1139
+rect 235 -1927 281 -1915
+rect 493 -1139 539 -1127
+rect 493 -1915 499 -1139
+rect 533 -1915 539 -1139
+rect 493 -1927 539 -1915
+rect 751 -1139 797 -1127
+rect 751 -1915 757 -1139
+rect 791 -1915 797 -1139
+rect 751 -1927 797 -1915
+rect 1009 -1139 1055 -1127
+rect 1009 -1915 1015 -1139
+rect 1049 -1915 1055 -1139
+rect 1009 -1927 1055 -1915
+rect 1267 -1139 1313 -1127
+rect 1267 -1915 1273 -1139
+rect 1307 -1915 1313 -1139
+rect 1267 -1927 1313 -1915
+rect -1257 -1965 -1065 -1959
+rect -1257 -1999 -1245 -1965
+rect -1077 -1999 -1065 -1965
+rect -1257 -2005 -1065 -1999
+rect -999 -1965 -807 -1959
+rect -999 -1999 -987 -1965
+rect -819 -1999 -807 -1965
+rect -999 -2005 -807 -1999
+rect -741 -1965 -549 -1959
+rect -741 -1999 -729 -1965
+rect -561 -1999 -549 -1965
+rect -741 -2005 -549 -1999
+rect -483 -1965 -291 -1959
+rect -483 -1999 -471 -1965
+rect -303 -1999 -291 -1965
+rect -483 -2005 -291 -1999
+rect -225 -1965 -33 -1959
+rect -225 -1999 -213 -1965
+rect -45 -1999 -33 -1965
+rect -225 -2005 -33 -1999
+rect 33 -1965 225 -1959
+rect 33 -1999 45 -1965
+rect 213 -1999 225 -1965
+rect 33 -2005 225 -1999
+rect 291 -1965 483 -1959
+rect 291 -1999 303 -1965
+rect 471 -1999 483 -1965
+rect 291 -2005 483 -1999
+rect 549 -1965 741 -1959
+rect 549 -1999 561 -1965
+rect 729 -1999 741 -1965
+rect 549 -2005 741 -1999
+rect 807 -1965 999 -1959
+rect 807 -1999 819 -1965
+rect 987 -1999 999 -1965
+rect 807 -2005 999 -1999
+rect 1065 -1965 1257 -1959
+rect 1065 -1999 1077 -1965
+rect 1245 -1999 1257 -1965
+rect 1065 -2005 1257 -1999
+<< properties >>
+string FIXED_BBOX -1404 -2084 1404 2084
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 4 l 1 m 4 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.ext b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.ext
new file mode 100644
index 0000000..8a25a09
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.ext
@@ -0,0 +1,129 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1261_n909#" 1962 295.823 1261 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1003_n909#" 1962 13.2509 1003 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_745_n909#" 1962 13.2509 745 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_487_n909#" 1962 13.2509 487 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_229_n909#" 1962 13.2509 229 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n909#" 1962 13.2509 -29 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n909#" 1962 13.2509 -287 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n545_n909#" 1962 13.2509 -545 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n803_n909#" 1962 13.2509 -803 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1061_n909#" 1962 13.2509 -1061 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1319_n909#" 1962 295.823 -1319 -909 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1061_n997#" 416 415.711 1061 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_803_n997#" 416 354.322 803 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_545_n997#" 416 354.322 545 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_287_n997#" 416 354.322 287 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n997#" 416 354.322 29 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n997#" 416 354.322 -229 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_n997#" 416 354.322 -487 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n745_n997#" 416 354.322 -745 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n1003_n997#" 416 354.322 -1003 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n1261_n997#" 416 416.223 -1261 -997 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_1261_109#" 1962 295.952 1261 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1003_109#" 1962 13.3796 1003 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_745_109#" 1962 13.3796 745 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_487_109#" 1962 13.3796 487 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_229_109#" 1962 13.3796 229 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n29_109#" 1962 13.3796 -29 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n287_109#" 1962 13.3796 -287 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n545_109#" 1962 13.3796 -545 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n803_109#" 1962 13.3796 -803 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1061_109#" 1962 13.3796 -1061 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n1319_109#" 1962 295.952 -1319 109 ndif 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_1061_21#" 416 416.461 1061 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_803_21#" 416 355.072 803 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_545_21#" 416 355.072 545 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_287_21#" 416 355.072 287 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_21#" 416 355.072 29 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_21#" 416 355.072 -229 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_21#" 416 355.072 -487 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n745_21#" 416 355.072 -745 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n1003_21#" 416 355.072 -1003 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n1261_21#" 416 416.973 -1261 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195200 2352 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1421_n1083#" 0 0 -1421 -1083 ppd 0 0 0 0 0 0 0 0 0 0 335920 19760 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 335920 19760 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n1003_n997#" "a_n745_n997#" 135.85
+cap "a_n803_n909#" "a_n1061_n909#" 240.245
+cap "a_287_21#" "a_545_21#" 135.85
+cap "a_n545_109#" "a_n803_109#" 240.245
+cap "a_n287_n909#" "a_n29_n909#" 240.245
+cap "a_n487_21#" "a_n745_21#" 135.85
+cap "a_n1261_21#" "a_n1261_n997#" 283.879
+cap "a_n487_21#" "a_n229_21#" 135.85
+cap "a_29_n997#" "a_287_n997#" 135.85
+cap "a_803_21#" "a_545_21#" 135.85
+cap "a_487_n909#" "a_745_n909#" 240.245
+cap "a_1261_n909#" "a_1003_n909#" 240.245
+cap "a_n803_n909#" "a_n803_109#" 12.3196
+cap "a_487_109#" "a_229_109#" 240.245
+cap "a_287_21#" "a_29_21#" 135.85
+cap "a_n229_n997#" "a_29_n997#" 135.85
+cap "a_1003_109#" "a_745_109#" 240.245
+cap "a_n287_n909#" "a_n287_109#" 12.3196
+cap "a_1061_n997#" "a_1061_21#" 283.879
+cap "a_1261_109#" "a_1261_n909#" 12.3196
+cap "a_n1061_109#" "a_n1061_n909#" 12.3196
+cap "a_487_109#" "a_487_n909#" 12.3196
+cap "a_803_n997#" "a_803_21#" 283.879
+cap "a_229_n909#" "a_n29_n909#" 240.245
+cap "a_n545_n909#" "a_n545_109#" 12.3196
+cap "a_745_109#" "a_745_n909#" 12.3196
+cap "a_n1003_n997#" "a_n1261_n997#" 135.85
+cap "a_229_n909#" "a_229_109#" 12.3196
+cap "a_n1061_109#" "a_n803_109#" 240.245
+cap "a_29_n997#" "a_29_21#" 283.879
+cap "a_n29_n909#" "a_n29_109#" 12.3196
+cap "a_545_n997#" "a_287_n997#" 135.85
+cap "a_n1061_109#" "a_n1319_109#" 240.245
+cap "a_n803_n909#" "a_n545_n909#" 240.245
+cap "a_229_109#" "a_n29_109#" 240.245
+cap "a_229_n909#" "a_487_n909#" 240.245
+cap "a_n229_n997#" "a_n487_n997#" 135.85
+cap "a_487_109#" "a_745_109#" 240.245
+cap "a_n29_109#" "a_n287_109#" 240.245
+cap "a_545_n997#" "a_545_21#" 283.879
+cap "a_n229_n997#" "a_n229_21#" 283.879
+cap "a_n1319_n909#" "a_n1061_n909#" 240.245
+cap "a_1061_n997#" "a_803_n997#" 135.85
+cap "a_803_n997#" "a_545_n997#" 135.85
+cap "a_n287_n909#" "a_n545_n909#" 240.245
+cap "a_n1261_21#" "a_n1003_21#" 135.85
+cap "a_n1319_n909#" "a_n1319_109#" 12.3196
+cap "a_1061_21#" "a_803_21#" 135.85
+cap "a_n545_109#" "a_n287_109#" 240.245
+cap "a_29_21#" "a_n229_21#" 135.85
+cap "a_1003_109#" "a_1003_n909#" 12.3196
+cap "a_287_21#" "a_287_n997#" 283.879
+cap "a_1261_109#" "a_1003_109#" 240.245
+cap "a_n745_n997#" "a_n487_n997#" 135.85
+cap "a_n1003_21#" "a_n745_21#" 135.85
+cap "a_745_n909#" "a_1003_n909#" 240.245
+cap "a_n487_21#" "a_n487_n997#" 283.879
+cap "a_n745_n997#" "a_n745_21#" 283.879
+cap "a_n1003_21#" "a_n1003_n997#" 283.879
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1061 -909 1062 -908 l=200 w=800 "a_n1421_n1083#" "a_1061_n997#" 400 0 "a_1003_n909#" 800 0 "a_1261_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 803 -909 804 -908 l=200 w=800 "a_n1421_n1083#" "a_803_n997#" 400 0 "a_745_n909#" 800 0 "a_1003_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 545 -909 546 -908 l=200 w=800 "a_n1421_n1083#" "a_545_n997#" 400 0 "a_487_n909#" 800 0 "a_745_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 287 -909 288 -908 l=200 w=800 "a_n1421_n1083#" "a_287_n997#" 400 0 "a_229_n909#" 800 0 "a_487_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 -909 30 -908 l=200 w=800 "a_n1421_n1083#" "a_29_n997#" 400 0 "a_n29_n909#" 800 0 "a_229_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -229 -909 -228 -908 l=200 w=800 "a_n1421_n1083#" "a_n229_n997#" 400 0 "a_n287_n909#" 800 0 "a_n29_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -487 -909 -486 -908 l=200 w=800 "a_n1421_n1083#" "a_n487_n997#" 400 0 "a_n545_n909#" 800 0 "a_n287_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -745 -909 -744 -908 l=200 w=800 "a_n1421_n1083#" "a_n745_n997#" 400 0 "a_n803_n909#" 800 0 "a_n545_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1003 -909 -1002 -908 l=200 w=800 "a_n1421_n1083#" "a_n1003_n997#" 400 0 "a_n1061_n909#" 800 0 "a_n803_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1261 -909 -1260 -908 l=200 w=800 "a_n1421_n1083#" "a_n1261_n997#" 400 0 "a_n1319_n909#" 800 0 "a_n1061_n909#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1061 109 1062 110 l=200 w=800 "a_n1421_n1083#" "a_1061_21#" 400 0 "a_1003_109#" 800 0 "a_1261_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 803 109 804 110 l=200 w=800 "a_n1421_n1083#" "a_803_21#" 400 0 "a_745_109#" 800 0 "a_1003_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 545 109 546 110 l=200 w=800 "a_n1421_n1083#" "a_545_21#" 400 0 "a_487_109#" 800 0 "a_745_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 287 109 288 110 l=200 w=800 "a_n1421_n1083#" "a_287_21#" 400 0 "a_229_109#" 800 0 "a_487_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 109 30 110 l=200 w=800 "a_n1421_n1083#" "a_29_21#" 400 0 "a_n29_109#" 800 0 "a_229_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -229 109 -228 110 l=200 w=800 "a_n1421_n1083#" "a_n229_21#" 400 0 "a_n287_109#" 800 0 "a_n29_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -487 109 -486 110 l=200 w=800 "a_n1421_n1083#" "a_n487_21#" 400 0 "a_n545_109#" 800 0 "a_n287_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -745 109 -744 110 l=200 w=800 "a_n1421_n1083#" "a_n745_21#" 400 0 "a_n803_109#" 800 0 "a_n545_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1003 109 -1002 110 l=200 w=800 "a_n1421_n1083#" "a_n1003_21#" 400 0 "a_n1061_109#" 800 0 "a_n803_109#" 800 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1261 109 -1260 110 l=200 w=800 "a_n1421_n1083#" "a_n1261_21#" 400 0 "a_n1319_109#" 800 0 "a_n1061_109#" 800 0
diff --git a/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.mag b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.mag
new file mode 100644
index 0000000..b3175a2
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87.mag
@@ -0,0 +1,806 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -1457 -1119 1457 1119
+<< nmoslvt >>
+rect -1261 109 -1061 909
+rect -1003 109 -803 909
+rect -745 109 -545 909
+rect -487 109 -287 909
+rect -229 109 -29 909
+rect 29 109 229 909
+rect 287 109 487 909
+rect 545 109 745 909
+rect 803 109 1003 909
+rect 1061 109 1261 909
+rect -1261 -909 -1061 -109
+rect -1003 -909 -803 -109
+rect -745 -909 -545 -109
+rect -487 -909 -287 -109
+rect -229 -909 -29 -109
+rect 29 -909 229 -109
+rect 287 -909 487 -109
+rect 545 -909 745 -109
+rect 803 -909 1003 -109
+rect 1061 -909 1261 -109
+<< ndiff >>
+rect -1319 897 -1261 909
+rect -1319 121 -1307 897
+rect -1273 121 -1261 897
+rect -1319 109 -1261 121
+rect -1061 897 -1003 909
+rect -1061 121 -1049 897
+rect -1015 121 -1003 897
+rect -1061 109 -1003 121
+rect -803 897 -745 909
+rect -803 121 -791 897
+rect -757 121 -745 897
+rect -803 109 -745 121
+rect -545 897 -487 909
+rect -545 121 -533 897
+rect -499 121 -487 897
+rect -545 109 -487 121
+rect -287 897 -229 909
+rect -287 121 -275 897
+rect -241 121 -229 897
+rect -287 109 -229 121
+rect -29 897 29 909
+rect -29 121 -17 897
+rect 17 121 29 897
+rect -29 109 29 121
+rect 229 897 287 909
+rect 229 121 241 897
+rect 275 121 287 897
+rect 229 109 287 121
+rect 487 897 545 909
+rect 487 121 499 897
+rect 533 121 545 897
+rect 487 109 545 121
+rect 745 897 803 909
+rect 745 121 757 897
+rect 791 121 803 897
+rect 745 109 803 121
+rect 1003 897 1061 909
+rect 1003 121 1015 897
+rect 1049 121 1061 897
+rect 1003 109 1061 121
+rect 1261 897 1319 909
+rect 1261 121 1273 897
+rect 1307 121 1319 897
+rect 1261 109 1319 121
+rect -1319 -121 -1261 -109
+rect -1319 -897 -1307 -121
+rect -1273 -897 -1261 -121
+rect -1319 -909 -1261 -897
+rect -1061 -121 -1003 -109
+rect -1061 -897 -1049 -121
+rect -1015 -897 -1003 -121
+rect -1061 -909 -1003 -897
+rect -803 -121 -745 -109
+rect -803 -897 -791 -121
+rect -757 -897 -745 -121
+rect -803 -909 -745 -897
+rect -545 -121 -487 -109
+rect -545 -897 -533 -121
+rect -499 -897 -487 -121
+rect -545 -909 -487 -897
+rect -287 -121 -229 -109
+rect -287 -897 -275 -121
+rect -241 -897 -229 -121
+rect -287 -909 -229 -897
+rect -29 -121 29 -109
+rect -29 -897 -17 -121
+rect 17 -897 29 -121
+rect -29 -909 29 -897
+rect 229 -121 287 -109
+rect 229 -897 241 -121
+rect 275 -897 287 -121
+rect 229 -909 287 -897
+rect 487 -121 545 -109
+rect 487 -897 499 -121
+rect 533 -897 545 -121
+rect 487 -909 545 -897
+rect 745 -121 803 -109
+rect 745 -897 757 -121
+rect 791 -897 803 -121
+rect 745 -909 803 -897
+rect 1003 -121 1061 -109
+rect 1003 -897 1015 -121
+rect 1049 -897 1061 -121
+rect 1003 -909 1061 -897
+rect 1261 -121 1319 -109
+rect 1261 -897 1273 -121
+rect 1307 -897 1319 -121
+rect 1261 -909 1319 -897
+<< ndiffc >>
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+<< psubdiff >>
+rect -1421 1049 -1325 1083
+rect 1325 1049 1421 1083
+rect -1421 987 -1387 1049
+rect 1387 987 1421 1049
+rect -1421 -1049 -1387 -987
+rect 1387 -1049 1421 -987
+rect -1421 -1083 -1325 -1049
+rect 1325 -1083 1421 -1049
+<< psubdiffcont >>
+rect -1325 1049 1325 1083
+rect -1421 -987 -1387 987
+rect 1387 -987 1421 987
+rect -1325 -1083 1325 -1049
+<< poly >>
+rect -1261 981 -1061 997
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1261 909 -1061 947
+rect -1003 981 -803 997
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -1003 909 -803 947
+rect -745 981 -545 997
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -745 909 -545 947
+rect -487 981 -287 997
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -487 909 -287 947
+rect -229 981 -29 997
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect -229 909 -29 947
+rect 29 981 229 997
+rect 29 947 45 981
+rect 213 947 229 981
+rect 29 909 229 947
+rect 287 981 487 997
+rect 287 947 303 981
+rect 471 947 487 981
+rect 287 909 487 947
+rect 545 981 745 997
+rect 545 947 561 981
+rect 729 947 745 981
+rect 545 909 745 947
+rect 803 981 1003 997
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 803 909 1003 947
+rect 1061 981 1261 997
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect 1061 909 1261 947
+rect -1261 71 -1061 109
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1261 21 -1061 37
+rect -1003 71 -803 109
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -1003 21 -803 37
+rect -745 71 -545 109
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -745 21 -545 37
+rect -487 71 -287 109
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -487 21 -287 37
+rect -229 71 -29 109
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect -229 21 -29 37
+rect 29 71 229 109
+rect 29 37 45 71
+rect 213 37 229 71
+rect 29 21 229 37
+rect 287 71 487 109
+rect 287 37 303 71
+rect 471 37 487 71
+rect 287 21 487 37
+rect 545 71 745 109
+rect 545 37 561 71
+rect 729 37 745 71
+rect 545 21 745 37
+rect 803 71 1003 109
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 803 21 1003 37
+rect 1061 71 1261 109
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect 1061 21 1261 37
+rect -1261 -37 -1061 -21
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1261 -109 -1061 -71
+rect -1003 -37 -803 -21
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -1003 -109 -803 -71
+rect -745 -37 -545 -21
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -745 -109 -545 -71
+rect -487 -37 -287 -21
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -487 -109 -287 -71
+rect -229 -37 -29 -21
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect -229 -109 -29 -71
+rect 29 -37 229 -21
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 29 -109 229 -71
+rect 287 -37 487 -21
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 287 -109 487 -71
+rect 545 -37 745 -21
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 545 -109 745 -71
+rect 803 -37 1003 -21
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 803 -109 1003 -71
+rect 1061 -37 1261 -21
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect 1061 -109 1261 -71
+rect -1261 -947 -1061 -909
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1261 -997 -1061 -981
+rect -1003 -947 -803 -909
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -1003 -997 -803 -981
+rect -745 -947 -545 -909
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -745 -997 -545 -981
+rect -487 -947 -287 -909
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -487 -997 -287 -981
+rect -229 -947 -29 -909
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect -229 -997 -29 -981
+rect 29 -947 229 -909
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 29 -997 229 -981
+rect 287 -947 487 -909
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 287 -997 487 -981
+rect 545 -947 745 -909
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 545 -997 745 -981
+rect 803 -947 1003 -909
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 803 -997 1003 -981
+rect 1061 -947 1261 -909
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect 1061 -997 1261 -981
+<< polycont >>
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+<< locali >>
+rect -1421 1049 -1325 1083
+rect 1325 1049 1421 1083
+rect -1421 987 -1387 1049
+rect 1387 987 1421 1049
+rect -1261 947 -1245 981
+rect -1077 947 -1061 981
+rect -1003 947 -987 981
+rect -819 947 -803 981
+rect -745 947 -729 981
+rect -561 947 -545 981
+rect -487 947 -471 981
+rect -303 947 -287 981
+rect -229 947 -213 981
+rect -45 947 -29 981
+rect 29 947 45 981
+rect 213 947 229 981
+rect 287 947 303 981
+rect 471 947 487 981
+rect 545 947 561 981
+rect 729 947 745 981
+rect 803 947 819 981
+rect 987 947 1003 981
+rect 1061 947 1077 981
+rect 1245 947 1261 981
+rect -1307 897 -1273 913
+rect -1307 105 -1273 121
+rect -1049 897 -1015 913
+rect -1049 105 -1015 121
+rect -791 897 -757 913
+rect -791 105 -757 121
+rect -533 897 -499 913
+rect -533 105 -499 121
+rect -275 897 -241 913
+rect -275 105 -241 121
+rect -17 897 17 913
+rect -17 105 17 121
+rect 241 897 275 913
+rect 241 105 275 121
+rect 499 897 533 913
+rect 499 105 533 121
+rect 757 897 791 913
+rect 757 105 791 121
+rect 1015 897 1049 913
+rect 1015 105 1049 121
+rect 1273 897 1307 913
+rect 1273 105 1307 121
+rect -1261 37 -1245 71
+rect -1077 37 -1061 71
+rect -1003 37 -987 71
+rect -819 37 -803 71
+rect -745 37 -729 71
+rect -561 37 -545 71
+rect -487 37 -471 71
+rect -303 37 -287 71
+rect -229 37 -213 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 213 37 229 71
+rect 287 37 303 71
+rect 471 37 487 71
+rect 545 37 561 71
+rect 729 37 745 71
+rect 803 37 819 71
+rect 987 37 1003 71
+rect 1061 37 1077 71
+rect 1245 37 1261 71
+rect -1261 -71 -1245 -37
+rect -1077 -71 -1061 -37
+rect -1003 -71 -987 -37
+rect -819 -71 -803 -37
+rect -745 -71 -729 -37
+rect -561 -71 -545 -37
+rect -487 -71 -471 -37
+rect -303 -71 -287 -37
+rect -229 -71 -213 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 213 -71 229 -37
+rect 287 -71 303 -37
+rect 471 -71 487 -37
+rect 545 -71 561 -37
+rect 729 -71 745 -37
+rect 803 -71 819 -37
+rect 987 -71 1003 -37
+rect 1061 -71 1077 -37
+rect 1245 -71 1261 -37
+rect -1307 -121 -1273 -105
+rect -1307 -913 -1273 -897
+rect -1049 -121 -1015 -105
+rect -1049 -913 -1015 -897
+rect -791 -121 -757 -105
+rect -791 -913 -757 -897
+rect -533 -121 -499 -105
+rect -533 -913 -499 -897
+rect -275 -121 -241 -105
+rect -275 -913 -241 -897
+rect -17 -121 17 -105
+rect -17 -913 17 -897
+rect 241 -121 275 -105
+rect 241 -913 275 -897
+rect 499 -121 533 -105
+rect 499 -913 533 -897
+rect 757 -121 791 -105
+rect 757 -913 791 -897
+rect 1015 -121 1049 -105
+rect 1015 -913 1049 -897
+rect 1273 -121 1307 -105
+rect 1273 -913 1307 -897
+rect -1261 -981 -1245 -947
+rect -1077 -981 -1061 -947
+rect -1003 -981 -987 -947
+rect -819 -981 -803 -947
+rect -745 -981 -729 -947
+rect -561 -981 -545 -947
+rect -487 -981 -471 -947
+rect -303 -981 -287 -947
+rect -229 -981 -213 -947
+rect -45 -981 -29 -947
+rect 29 -981 45 -947
+rect 213 -981 229 -947
+rect 287 -981 303 -947
+rect 471 -981 487 -947
+rect 545 -981 561 -947
+rect 729 -981 745 -947
+rect 803 -981 819 -947
+rect 987 -981 1003 -947
+rect 1061 -981 1077 -947
+rect 1245 -981 1261 -947
+rect -1421 -1049 -1387 -987
+rect 1387 -1049 1421 -987
+rect -1421 -1083 -1325 -1049
+rect 1325 -1083 1421 -1049
+<< viali >>
+rect -1245 947 -1077 981
+rect -987 947 -819 981
+rect -729 947 -561 981
+rect -471 947 -303 981
+rect -213 947 -45 981
+rect 45 947 213 981
+rect 303 947 471 981
+rect 561 947 729 981
+rect 819 947 987 981
+rect 1077 947 1245 981
+rect -1307 121 -1273 897
+rect -1049 121 -1015 897
+rect -791 121 -757 897
+rect -533 121 -499 897
+rect -275 121 -241 897
+rect -17 121 17 897
+rect 241 121 275 897
+rect 499 121 533 897
+rect 757 121 791 897
+rect 1015 121 1049 897
+rect 1273 121 1307 897
+rect -1245 37 -1077 71
+rect -987 37 -819 71
+rect -729 37 -561 71
+rect -471 37 -303 71
+rect -213 37 -45 71
+rect 45 37 213 71
+rect 303 37 471 71
+rect 561 37 729 71
+rect 819 37 987 71
+rect 1077 37 1245 71
+rect -1245 -71 -1077 -37
+rect -987 -71 -819 -37
+rect -729 -71 -561 -37
+rect -471 -71 -303 -37
+rect -213 -71 -45 -37
+rect 45 -71 213 -37
+rect 303 -71 471 -37
+rect 561 -71 729 -37
+rect 819 -71 987 -37
+rect 1077 -71 1245 -37
+rect -1307 -897 -1273 -121
+rect -1049 -897 -1015 -121
+rect -791 -897 -757 -121
+rect -533 -897 -499 -121
+rect -275 -897 -241 -121
+rect -17 -897 17 -121
+rect 241 -897 275 -121
+rect 499 -897 533 -121
+rect 757 -897 791 -121
+rect 1015 -897 1049 -121
+rect 1273 -897 1307 -121
+rect -1245 -981 -1077 -947
+rect -987 -981 -819 -947
+rect -729 -981 -561 -947
+rect -471 -981 -303 -947
+rect -213 -981 -45 -947
+rect 45 -981 213 -947
+rect 303 -981 471 -947
+rect 561 -981 729 -947
+rect 819 -981 987 -947
+rect 1077 -981 1245 -947
+<< metal1 >>
+rect -1257 981 -1065 987
+rect -1257 947 -1245 981
+rect -1077 947 -1065 981
+rect -1257 941 -1065 947
+rect -999 981 -807 987
+rect -999 947 -987 981
+rect -819 947 -807 981
+rect -999 941 -807 947
+rect -741 981 -549 987
+rect -741 947 -729 981
+rect -561 947 -549 981
+rect -741 941 -549 947
+rect -483 981 -291 987
+rect -483 947 -471 981
+rect -303 947 -291 981
+rect -483 941 -291 947
+rect -225 981 -33 987
+rect -225 947 -213 981
+rect -45 947 -33 981
+rect -225 941 -33 947
+rect 33 981 225 987
+rect 33 947 45 981
+rect 213 947 225 981
+rect 33 941 225 947
+rect 291 981 483 987
+rect 291 947 303 981
+rect 471 947 483 981
+rect 291 941 483 947
+rect 549 981 741 987
+rect 549 947 561 981
+rect 729 947 741 981
+rect 549 941 741 947
+rect 807 981 999 987
+rect 807 947 819 981
+rect 987 947 999 981
+rect 807 941 999 947
+rect 1065 981 1257 987
+rect 1065 947 1077 981
+rect 1245 947 1257 981
+rect 1065 941 1257 947
+rect -1313 897 -1267 909
+rect -1313 121 -1307 897
+rect -1273 121 -1267 897
+rect -1313 109 -1267 121
+rect -1055 897 -1009 909
+rect -1055 121 -1049 897
+rect -1015 121 -1009 897
+rect -1055 109 -1009 121
+rect -797 897 -751 909
+rect -797 121 -791 897
+rect -757 121 -751 897
+rect -797 109 -751 121
+rect -539 897 -493 909
+rect -539 121 -533 897
+rect -499 121 -493 897
+rect -539 109 -493 121
+rect -281 897 -235 909
+rect -281 121 -275 897
+rect -241 121 -235 897
+rect -281 109 -235 121
+rect -23 897 23 909
+rect -23 121 -17 897
+rect 17 121 23 897
+rect -23 109 23 121
+rect 235 897 281 909
+rect 235 121 241 897
+rect 275 121 281 897
+rect 235 109 281 121
+rect 493 897 539 909
+rect 493 121 499 897
+rect 533 121 539 897
+rect 493 109 539 121
+rect 751 897 797 909
+rect 751 121 757 897
+rect 791 121 797 897
+rect 751 109 797 121
+rect 1009 897 1055 909
+rect 1009 121 1015 897
+rect 1049 121 1055 897
+rect 1009 109 1055 121
+rect 1267 897 1313 909
+rect 1267 121 1273 897
+rect 1307 121 1313 897
+rect 1267 109 1313 121
+rect -1257 71 -1065 77
+rect -1257 37 -1245 71
+rect -1077 37 -1065 71
+rect -1257 31 -1065 37
+rect -999 71 -807 77
+rect -999 37 -987 71
+rect -819 37 -807 71
+rect -999 31 -807 37
+rect -741 71 -549 77
+rect -741 37 -729 71
+rect -561 37 -549 71
+rect -741 31 -549 37
+rect -483 71 -291 77
+rect -483 37 -471 71
+rect -303 37 -291 71
+rect -483 31 -291 37
+rect -225 71 -33 77
+rect -225 37 -213 71
+rect -45 37 -33 71
+rect -225 31 -33 37
+rect 33 71 225 77
+rect 33 37 45 71
+rect 213 37 225 71
+rect 33 31 225 37
+rect 291 71 483 77
+rect 291 37 303 71
+rect 471 37 483 71
+rect 291 31 483 37
+rect 549 71 741 77
+rect 549 37 561 71
+rect 729 37 741 71
+rect 549 31 741 37
+rect 807 71 999 77
+rect 807 37 819 71
+rect 987 37 999 71
+rect 807 31 999 37
+rect 1065 71 1257 77
+rect 1065 37 1077 71
+rect 1245 37 1257 71
+rect 1065 31 1257 37
+rect -1257 -37 -1065 -31
+rect -1257 -71 -1245 -37
+rect -1077 -71 -1065 -37
+rect -1257 -77 -1065 -71
+rect -999 -37 -807 -31
+rect -999 -71 -987 -37
+rect -819 -71 -807 -37
+rect -999 -77 -807 -71
+rect -741 -37 -549 -31
+rect -741 -71 -729 -37
+rect -561 -71 -549 -37
+rect -741 -77 -549 -71
+rect -483 -37 -291 -31
+rect -483 -71 -471 -37
+rect -303 -71 -291 -37
+rect -483 -77 -291 -71
+rect -225 -37 -33 -31
+rect -225 -71 -213 -37
+rect -45 -71 -33 -37
+rect -225 -77 -33 -71
+rect 33 -37 225 -31
+rect 33 -71 45 -37
+rect 213 -71 225 -37
+rect 33 -77 225 -71
+rect 291 -37 483 -31
+rect 291 -71 303 -37
+rect 471 -71 483 -37
+rect 291 -77 483 -71
+rect 549 -37 741 -31
+rect 549 -71 561 -37
+rect 729 -71 741 -37
+rect 549 -77 741 -71
+rect 807 -37 999 -31
+rect 807 -71 819 -37
+rect 987 -71 999 -37
+rect 807 -77 999 -71
+rect 1065 -37 1257 -31
+rect 1065 -71 1077 -37
+rect 1245 -71 1257 -37
+rect 1065 -77 1257 -71
+rect -1313 -121 -1267 -109
+rect -1313 -897 -1307 -121
+rect -1273 -897 -1267 -121
+rect -1313 -909 -1267 -897
+rect -1055 -121 -1009 -109
+rect -1055 -897 -1049 -121
+rect -1015 -897 -1009 -121
+rect -1055 -909 -1009 -897
+rect -797 -121 -751 -109
+rect -797 -897 -791 -121
+rect -757 -897 -751 -121
+rect -797 -909 -751 -897
+rect -539 -121 -493 -109
+rect -539 -897 -533 -121
+rect -499 -897 -493 -121
+rect -539 -909 -493 -897
+rect -281 -121 -235 -109
+rect -281 -897 -275 -121
+rect -241 -897 -235 -121
+rect -281 -909 -235 -897
+rect -23 -121 23 -109
+rect -23 -897 -17 -121
+rect 17 -897 23 -121
+rect -23 -909 23 -897
+rect 235 -121 281 -109
+rect 235 -897 241 -121
+rect 275 -897 281 -121
+rect 235 -909 281 -897
+rect 493 -121 539 -109
+rect 493 -897 499 -121
+rect 533 -897 539 -121
+rect 493 -909 539 -897
+rect 751 -121 797 -109
+rect 751 -897 757 -121
+rect 791 -897 797 -121
+rect 751 -909 797 -897
+rect 1009 -121 1055 -109
+rect 1009 -897 1015 -121
+rect 1049 -897 1055 -121
+rect 1009 -909 1055 -897
+rect 1267 -121 1313 -109
+rect 1267 -897 1273 -121
+rect 1307 -897 1313 -121
+rect 1267 -909 1313 -897
+rect -1257 -947 -1065 -941
+rect -1257 -981 -1245 -947
+rect -1077 -981 -1065 -947
+rect -1257 -987 -1065 -981
+rect -999 -947 -807 -941
+rect -999 -981 -987 -947
+rect -819 -981 -807 -947
+rect -999 -987 -807 -981
+rect -741 -947 -549 -941
+rect -741 -981 -729 -947
+rect -561 -981 -549 -947
+rect -741 -987 -549 -981
+rect -483 -947 -291 -941
+rect -483 -981 -471 -947
+rect -303 -981 -291 -947
+rect -483 -987 -291 -981
+rect -225 -947 -33 -941
+rect -225 -981 -213 -947
+rect -45 -981 -33 -947
+rect -225 -987 -33 -981
+rect 33 -947 225 -941
+rect 33 -981 45 -947
+rect 213 -981 225 -947
+rect 33 -987 225 -981
+rect 291 -947 483 -941
+rect 291 -981 303 -947
+rect 471 -981 483 -947
+rect 291 -987 483 -981
+rect 549 -947 741 -941
+rect 549 -981 561 -947
+rect 729 -981 741 -947
+rect 549 -987 741 -981
+rect 807 -947 999 -941
+rect 807 -981 819 -947
+rect 987 -981 999 -947
+rect 807 -987 999 -981
+rect 1065 -947 1257 -941
+rect 1065 -981 1077 -947
+rect 1245 -981 1257 -947
+rect 1065 -987 1257 -981
+<< properties >>
+string FIXED_BBOX -1404 -1066 1404 1066
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 4 l 1 m 2 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.ext" "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.ext"
new file mode 100644
index 0000000..39ef3e0
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.ext"
@@ -0,0 +1,32 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_20_n918#" 3024 0 20 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n918#" 3024 0 -78 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1015#" 1305 0 -33 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_20_118#" 3024 0 20 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_118#" 3024 0 -78 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 1305 0 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n216_n1137#" 24217 2947.1 -216 -1137 nw 0 0 0 0 982368 5412 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_21#" "w_n216_n1137#" 227.767
+cap "a_20_118#" "a_n78_118#" 921.192
+cap "a_n33_21#" "a_20_118#" 6.70233
+cap "a_n78_118#" "a_n78_n918#" 11.3678
+cap "a_20_118#" "w_n216_n1137#" 295.172
+cap "a_n33_21#" "a_n33_n1015#" 90.2127
+cap "w_n216_n1137#" "a_20_n918#" 294.97
+cap "a_n78_n918#" "w_n216_n1137#" 294.97
+cap "a_20_118#" "a_20_n918#" 11.3678
+cap "w_n216_n1137#" "a_n33_n1015#" 227.561
+cap "a_n33_21#" "a_n78_118#" 6.70233
+cap "a_n78_n918#" "a_20_n918#" 921.192
+cap "a_20_n918#" "a_n33_n1015#" 6.70233
+cap "a_n78_n918#" "a_n33_n1015#" 6.70233
+cap "a_n78_118#" "w_n216_n1137#" 295.171
+device msubckt sky130_fd_pr__pfet_01v8 -20 -918 -19 -917 l=40 w=800 "w_n216_n1137#" "a_n33_n1015#" 80 0 "a_n78_n918#" 800 0 "a_20_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -20 118 -19 119 l=40 w=800 "w_n216_n1137#" "a_n33_21#" 80 0 "a_n78_118#" 800 0 "a_20_118#" 800 0
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.mag" "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.mag"
new file mode 100644
index 0000000..eeb4314
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430\0430.mag"
@@ -0,0 +1,157 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect -29 959 29 965
+rect -29 71 29 77
+rect -29 37 -17 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect -29 -77 29 -71
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect -29 -1005 29 -999
+<< nwell >>
+rect -216 -1137 216 1137
+<< pmos >>
+rect -20 118 20 918
+rect -20 -918 20 -118
+<< pdiff >>
+rect -78 906 -20 918
+rect -78 130 -66 906
+rect -32 130 -20 906
+rect -78 118 -20 130
+rect 20 906 78 918
+rect 20 130 32 906
+rect 66 130 78 906
+rect 20 118 78 130
+rect -78 -130 -20 -118
+rect -78 -906 -66 -130
+rect -32 -906 -20 -130
+rect -78 -918 -20 -906
+rect 20 -130 78 -118
+rect 20 -906 32 -130
+rect 66 -906 78 -130
+rect 20 -918 78 -906
+<< pdiffc >>
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+<< nsubdiff >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< nsubdiffcont >>
+rect -84 1067 84 1101
+rect -180 -1005 -146 1005
+rect 146 -1005 180 1005
+rect -84 -1101 84 -1067
+<< poly >>
+rect -33 999 33 1015
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -33 949 33 965
+rect -20 918 20 949
+rect -20 87 20 118
+rect -33 71 33 87
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -33 -87 33 -71
+rect -20 -118 20 -87
+rect -20 -949 20 -918
+rect -33 -965 33 -949
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -33 -1015 33 -999
+<< polycont >>
+rect -17 965 17 999
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -17 -999 17 -965
+<< locali >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -66 906 -32 922
+rect -66 114 -32 130
+rect 32 906 66 922
+rect 32 114 66 130
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -66 -130 -32 -114
+rect -66 -922 -32 -906
+rect 32 -130 66 -114
+rect 32 -922 66 -906
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< viali >>
+rect -17 965 17 999
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+rect -17 -999 17 -965
+<< metal1 >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect 17 965 29 999
+rect -29 959 29 965
+rect -72 906 -26 918
+rect -72 130 -66 906
+rect -32 130 -26 906
+rect -72 118 -26 130
+rect 26 906 72 918
+rect 26 130 32 906
+rect 66 130 72 906
+rect 26 118 72 130
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect -72 -130 -26 -118
+rect -72 -906 -66 -130
+rect -32 -906 -26 -130
+rect -72 -918 -26 -906
+rect 26 -130 72 -118
+rect 26 -906 32 -130
+rect 66 -906 72 -130
+rect 26 -918 72 -906
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect 17 -999 29 -965
+rect -29 -1005 29 -999
+<< properties >>
+string FIXED_BBOX -163 -1084 163 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 0.2 m 2 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.ext" "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.ext"
new file mode 100644
index 0000000..a86d5a3
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.ext"
@@ -0,0 +1,36 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_20_n918#" 3024 0 20 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n918#" 3024 0 -78 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1015#" 1305 0 -33 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_20_118#" 3024 0 20 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_118#" 3024 0 -78 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 1305 0 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n216_n1137#" 24217 2947.1 -216 -1137 nw 0 0 0 0 982368 5412 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n33_21#" "w_n216_n1137#" 241.836
+cap "a_20_118#" "w_n216_n1137#" 429.141
+cap "a_n33_21#" "a_20_118#" 6.70233
+cap "a_n33_n1015#" "a_20_n918#" 6.70233
+cap "a_20_n918#" "a_n78_n918#" 921.192
+cap "a_n33_n1015#" "a_n78_118#" 1.05712
+cap "a_20_n918#" "w_n216_n1137#" 422.69
+cap "a_n33_n1015#" "a_n78_n918#" 6.70233
+cap "a_n33_n1015#" "w_n216_n1137#" 226.781
+cap "a_n33_21#" "a_20_n918#" 1.05712
+cap "a_20_118#" "a_20_n918#" 11.3678
+cap "a_n33_n1015#" "a_n33_21#" 95.1302
+cap "a_n33_n1015#" "a_20_118#" 1.05712
+cap "a_n78_n918#" "a_n78_118#" 11.3678
+cap "a_n78_118#" "w_n216_n1137#" 429.322
+cap "a_n78_n918#" "w_n216_n1137#" 422.87
+cap "a_n33_21#" "a_n78_118#" 6.70233
+cap "a_20_118#" "a_n78_118#" 921.192
+cap "a_n33_21#" "a_n78_n918#" 1.05712
+device msubckt sky130_fd_pr__pfet_01v8 -20 -918 -19 -917 l=40 w=800 "w_n216_n1137#" "a_n33_n1015#" 80 0 "a_n78_n918#" 800 0 "a_20_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -20 118 -19 119 l=40 w=800 "w_n216_n1137#" "a_n33_21#" 80 0 "a_n78_118#" 800 0 "a_20_118#" 800 0
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.mag" "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.mag"
new file mode 100644
index 0000000..eeb4314
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ\0430.mag"
@@ -0,0 +1,157 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect -29 959 29 965
+rect -29 71 29 77
+rect -29 37 -17 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect -29 -77 29 -71
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect -29 -1005 29 -999
+<< nwell >>
+rect -216 -1137 216 1137
+<< pmos >>
+rect -20 118 20 918
+rect -20 -918 20 -118
+<< pdiff >>
+rect -78 906 -20 918
+rect -78 130 -66 906
+rect -32 130 -20 906
+rect -78 118 -20 130
+rect 20 906 78 918
+rect 20 130 32 906
+rect 66 130 78 906
+rect 20 118 78 130
+rect -78 -130 -20 -118
+rect -78 -906 -66 -130
+rect -32 -906 -20 -130
+rect -78 -918 -20 -906
+rect 20 -130 78 -118
+rect 20 -906 32 -130
+rect 66 -906 78 -130
+rect 20 -918 78 -906
+<< pdiffc >>
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+<< nsubdiff >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< nsubdiffcont >>
+rect -84 1067 84 1101
+rect -180 -1005 -146 1005
+rect 146 -1005 180 1005
+rect -84 -1101 84 -1067
+<< poly >>
+rect -33 999 33 1015
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -33 949 33 965
+rect -20 918 20 949
+rect -20 87 20 118
+rect -33 71 33 87
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -33 -87 33 -71
+rect -20 -118 20 -87
+rect -20 -949 20 -918
+rect -33 -965 33 -949
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -33 -1015 33 -999
+<< polycont >>
+rect -17 965 17 999
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -17 -999 17 -965
+<< locali >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -66 906 -32 922
+rect -66 114 -32 130
+rect 32 906 66 922
+rect 32 114 66 130
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -66 -130 -32 -114
+rect -66 -922 -32 -906
+rect 32 -130 66 -114
+rect 32 -922 66 -906
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< viali >>
+rect -17 965 17 999
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+rect -17 -999 17 -965
+<< metal1 >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect 17 965 29 999
+rect -29 959 29 965
+rect -72 906 -26 918
+rect -72 130 -66 906
+rect -32 130 -26 906
+rect -72 118 -26 130
+rect 26 906 72 918
+rect 26 130 32 906
+rect 66 130 72 906
+rect 26 118 72 130
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect -72 -130 -26 -118
+rect -72 -906 -66 -130
+rect -32 -906 -26 -130
+rect -72 -918 -26 -906
+rect 26 -130 72 -118
+rect 26 -906 32 -130
+rect 66 -906 72 -130
+rect 26 -918 72 -906
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect 17 -999 29 -965
+rect -29 -1005 29 -999
+<< properties >>
+string FIXED_BBOX -163 -1084 163 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 0.2 m 2 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.ext b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.ext
new file mode 100644
index 0000000..4034e5c
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.ext
@@ -0,0 +1,36 @@
+timestamp 1645630008
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_20_n918#" 3024 0 20 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n918#" 3024 0 -78 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1015#" 1305 29.6588 -33 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_20_118#" 3024 0 20 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n78_118#" 3024 0 -78 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 1305 29.6588 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43192 2172 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n216_n1137#" 24217 2947.1 -216 -1137 nw 0 0 0 0 982368 5412 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169592 9976 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n78_118#" "a_n33_21#" 8.12025
+cap "a_n33_21#" "a_20_118#" 8.12025
+cap "a_n78_118#" "a_20_118#" 1108.93
+cap "a_20_n918#" "a_n78_n918#" 1108.93
+cap "w_n216_n1137#" "a_n78_n918#" 513.227
+cap "a_20_n918#" "a_n33_21#" 1.12458
+cap "a_n33_21#" "w_n216_n1137#" 278.926
+cap "a_20_n918#" "a_20_118#" 13.6922
+cap "a_n78_118#" "w_n216_n1137#" 513.227
+cap "a_20_118#" "w_n216_n1137#" 513.227
+cap "a_n33_n1015#" "a_n78_n918#" 8.12025
+cap "a_20_n918#" "w_n216_n1137#" 513.227
+cap "a_n33_21#" "a_n33_n1015#" 107.672
+cap "a_n78_118#" "a_n33_n1015#" 1.12458
+cap "a_20_118#" "a_n33_n1015#" 1.12458
+cap "a_n33_21#" "a_n78_n918#" 1.12458
+cap "a_20_n918#" "a_n33_n1015#" 8.12025
+cap "a_n78_118#" "a_n78_n918#" 13.6922
+cap "w_n216_n1137#" "a_n33_n1015#" 278.926
+device msubckt sky130_fd_pr__pfet_01v8 -20 -918 -19 -917 l=40 w=800 "w_n216_n1137#" "a_n33_n1015#" 80 0 "a_n78_n918#" 800 0 "a_20_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -20 118 -19 119 l=40 w=800 "w_n216_n1137#" "a_n33_21#" 80 0 "a_n78_118#" 800 0 "a_20_118#" 800 0
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.mag b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.mag
new file mode 100644
index 0000000..9133d7b
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_ACY9XJ.mag
@@ -0,0 +1,157 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< error_p >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect -29 959 29 965
+rect -29 71 29 77
+rect -29 37 -17 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect -29 -77 29 -71
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect -29 -1005 29 -999
+<< nwell >>
+rect -216 -1137 216 1137
+<< pmos >>
+rect -20 118 20 918
+rect -20 -918 20 -118
+<< pdiff >>
+rect -78 906 -20 918
+rect -78 130 -66 906
+rect -32 130 -20 906
+rect -78 118 -20 130
+rect 20 906 78 918
+rect 20 130 32 906
+rect 66 130 78 906
+rect 20 118 78 130
+rect -78 -130 -20 -118
+rect -78 -906 -66 -130
+rect -32 -906 -20 -130
+rect -78 -918 -20 -906
+rect 20 -130 78 -118
+rect 20 -906 32 -130
+rect 66 -906 78 -130
+rect 20 -918 78 -906
+<< pdiffc >>
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+<< nsubdiff >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< nsubdiffcont >>
+rect -84 1067 84 1101
+rect -180 -1005 -146 1005
+rect 146 -1005 180 1005
+rect -84 -1101 84 -1067
+<< poly >>
+rect -33 999 33 1015
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -33 949 33 965
+rect -20 918 20 949
+rect -20 87 20 118
+rect -33 71 33 87
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -33 -87 33 -71
+rect -20 -118 20 -87
+rect -20 -949 20 -918
+rect -33 -965 33 -949
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -33 -1015 33 -999
+<< polycont >>
+rect -17 965 17 999
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -17 -999 17 -965
+<< locali >>
+rect -180 1067 -84 1101
+rect 84 1067 180 1101
+rect -180 1005 -146 1067
+rect 146 1005 180 1067
+rect -33 965 -17 999
+rect 17 965 33 999
+rect -66 906 -32 922
+rect -66 114 -32 130
+rect 32 906 66 922
+rect 32 114 66 130
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -66 -130 -32 -114
+rect -66 -922 -32 -906
+rect 32 -130 66 -114
+rect 32 -922 66 -906
+rect -33 -999 -17 -965
+rect 17 -999 33 -965
+rect -180 -1067 -146 -1005
+rect 146 -1067 180 -1005
+rect -180 -1101 -84 -1067
+rect 84 -1101 180 -1067
+<< viali >>
+rect -17 965 17 999
+rect -66 130 -32 906
+rect 32 130 66 906
+rect -17 37 17 71
+rect -17 -71 17 -37
+rect -66 -906 -32 -130
+rect 32 -906 66 -130
+rect -17 -999 17 -965
+<< metal1 >>
+rect -29 999 29 1005
+rect -29 965 -17 999
+rect 17 965 29 999
+rect -29 959 29 965
+rect -72 906 -26 918
+rect -72 130 -66 906
+rect -32 130 -26 906
+rect -72 118 -26 130
+rect 26 906 72 918
+rect 26 130 32 906
+rect 66 130 72 906
+rect 26 118 72 130
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect -72 -130 -26 -118
+rect -72 -906 -66 -130
+rect -32 -906 -26 -130
+rect -72 -918 -26 -906
+rect 26 -130 72 -118
+rect 26 -906 32 -130
+rect 66 -906 72 -130
+rect 26 -918 72 -906
+rect -29 -965 29 -959
+rect -29 -999 -17 -965
+rect 17 -999 29 -965
+rect -29 -1005 29 -999
+<< properties >>
+string FIXED_BBOX -163 -1084 163 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 0.2 m 2 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_FC4XHA.mag b/mag/isource/sky130_fd_pr__pfet_01v8_FC4XHA.mag
new file mode 100644
index 0000000..203b1ad
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_FC4XHA.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645179809
+<< error_p >>
+rect 20 481 78 487
+rect 20 447 32 481
+rect 20 441 78 447
+rect -78 -447 -20 -441
+rect -78 -481 -66 -447
+rect -78 -487 -20 -481
+<< nwell >>
+rect -265 -619 265 619
+<< pmos >>
+rect -69 -400 -29 400
+rect 29 -400 69 400
+<< pdiff >>
+rect -127 388 -69 400
+rect -127 -388 -115 388
+rect -81 -388 -69 388
+rect -127 -400 -69 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 69 388 127 400
+rect 69 -388 81 388
+rect 115 -388 127 388
+rect 69 -400 127 -388
+<< pdiffc >>
+rect -115 -388 -81 388
+rect -17 -388 17 388
+rect 81 -388 115 388
+<< nsubdiff >>
+rect -229 549 -133 583
+rect 133 549 229 583
+rect -229 487 -195 549
+rect 195 487 229 549
+rect -229 -549 -195 -487
+rect 195 -549 229 -487
+rect -229 -583 -133 -549
+rect 133 -583 229 -549
+<< nsubdiffcont >>
+rect -133 549 133 583
+rect -229 -487 -195 487
+rect 195 -487 229 487
+rect -133 -583 133 -549
+<< poly >>
+rect 16 481 82 497
+rect 16 447 32 481
+rect 66 447 82 481
+rect 16 431 82 447
+rect -69 400 -29 426
+rect 29 400 69 431
+rect -69 -431 -29 -400
+rect 29 -426 69 -400
+rect -82 -447 -16 -431
+rect -82 -481 -66 -447
+rect -32 -481 -16 -447
+rect -82 -497 -16 -481
+<< polycont >>
+rect 32 447 66 481
+rect -66 -481 -32 -447
+<< locali >>
+rect -229 549 -133 583
+rect 133 549 229 583
+rect -229 487 -195 549
+rect 195 487 229 549
+rect 16 447 32 481
+rect 66 447 82 481
+rect -115 388 -81 404
+rect -115 -404 -81 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 81 388 115 404
+rect 81 -404 115 -388
+rect -82 -481 -66 -447
+rect -32 -481 -16 -447
+rect -229 -549 -195 -487
+rect 195 -549 229 -487
+rect -229 -583 -133 -549
+rect 133 -583 229 -549
+<< viali >>
+rect 32 447 66 481
+rect -115 -388 -81 388
+rect -17 -388 17 388
+rect 81 -388 115 388
+rect -66 -481 -32 -447
+<< metal1 >>
+rect 20 481 78 487
+rect 20 447 32 481
+rect 66 447 78 481
+rect 20 441 78 447
+rect -121 388 -75 400
+rect -121 -388 -115 388
+rect -81 -388 -75 388
+rect -121 -400 -75 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 75 388 121 400
+rect 75 -388 81 388
+rect 115 -388 121 388
+rect 75 -400 121 -388
+rect -78 -447 -20 -441
+rect -78 -481 -66 -447
+rect -32 -481 -20 -447
+rect -78 -487 -20 -481
+<< properties >>
+string FIXED_BBOX -212 -566 212 566
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 0.2 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.ext" "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.ext"
new file mode 100644
index 0000000..5516f51
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.ext"
@@ -0,0 +1,92 @@
+timestamp 1646921651
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_616_n918#" 3024 0 616 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_n918#" 3024 0 358 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_n918#" 3024 0 100 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_n918#" 3024 0 -158 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_n918#" 3024 0 -416 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_n918#" 3024 0 -674 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_n1015#" 421 0 416 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_n1015#" 421 0 158 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_n1015#" 421 0 -100 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_n1015#" 421 0 -358 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_n1015#" 421 0 -616 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_616_118#" 3024 0 616 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_118#" 3024 0 358 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_118#" 3024 0 100 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_118#" 3024 0 -158 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_118#" 3024 0 -416 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_118#" 3024 0 -674 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_21#" 421 0 416 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_21#" 421 0 158 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_21#" 421 0 -100 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_21#" 421 0 -358 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_21#" 421 0 -616 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n812_n1137#" 29858 11078.9 -812 -1137 nw 0 0 0 0 3692976 7796 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_416_21#" "a_158_21#" 141.126
+cap "a_n616_n1015#" "a_n616_21#" 283.644
+cap "a_n616_n1015#" "a_n358_n1015#" 141.126
+cap "w_n812_n1137#" "a_358_n918#" 13.0384
+cap "a_n100_21#" "a_158_21#" 141.126
+cap "w_n812_n1137#" "a_n158_n918#" 13.0384
+cap "a_358_118#" "a_100_118#" 240.245
+cap "w_n812_n1137#" "a_158_n1015#" 261.443
+cap "w_n812_n1137#" "a_416_n1015#" 327.523
+cap "a_n674_n918#" "a_n674_118#" 11.3678
+cap "a_n158_118#" "a_n416_118#" 240.245
+cap "a_n100_21#" "a_n358_21#" 141.126
+cap "w_n812_n1137#" "a_616_118#" 295.739
+cap "w_n812_n1137#" "a_n616_21#" 328.784
+cap "a_416_n1015#" "a_158_n1015#" 141.126
+cap "w_n812_n1137#" "a_n358_n1015#" 261.443
+cap "w_n812_n1137#" "a_n100_n1015#" 261.443
+cap "a_n416_118#" "a_n674_118#" 240.245
+cap "a_158_n1015#" "a_n100_n1015#" 141.126
+cap "a_358_118#" "a_358_n918#" 11.3678
+cap "w_n812_n1137#" "a_n674_n918#" 295.611
+cap "a_n358_n1015#" "a_n100_n1015#" 141.126
+cap "a_n158_n918#" "a_n416_n918#" 240.245
+cap "w_n812_n1137#" "a_358_118#" 13.1666
+cap "w_n812_n1137#" "a_n416_n918#" 13.0384
+cap "a_358_118#" "a_616_118#" 240.245
+cap "a_100_n918#" "a_100_118#" 11.3678
+cap "w_n812_n1137#" "a_n416_118#" 13.1666
+cap "w_n812_n1137#" "a_158_21#" 262.192
+cap "a_n158_118#" "a_100_118#" 240.245
+cap "a_158_n1015#" "a_158_21#" 283.644
+cap "w_n812_n1137#" "a_416_21#" 328.272
+cap "a_416_n1015#" "a_416_21#" 283.644
+cap "a_n674_n918#" "a_n416_n918#" 240.245
+cap "w_n812_n1137#" "a_n358_21#" 262.192
+cap "w_n812_n1137#" "a_n100_21#" 262.192
+cap "a_358_n918#" "a_100_n918#" 240.245
+cap "a_100_n918#" "a_n158_n918#" 240.245
+cap "w_n812_n1137#" "a_100_n918#" 13.0384
+cap "a_n616_21#" "a_n358_21#" 141.126
+cap "a_n358_n1015#" "a_n358_21#" 283.644
+cap "a_n416_118#" "a_n416_n918#" 11.3678
+cap "a_n158_118#" "a_n158_n918#" 11.3678
+cap "a_n100_n1015#" "a_n100_21#" 283.644
+cap "w_n812_n1137#" "a_n158_118#" 13.1666
+cap "a_358_n918#" "a_616_n918#" 240.245
+cap "w_n812_n1137#" "a_100_118#" 13.1666
+cap "w_n812_n1137#" "a_616_n918#" 295.611
+cap "w_n812_n1137#" "a_n616_n1015#" 328.034
+cap "w_n812_n1137#" "a_n674_118#" 295.739
+cap "a_616_118#" "a_616_n918#" 11.3678
+device msubckt sky130_fd_pr__pfet_01v8 416 -918 417 -917 l=200 w=800 "w_n812_n1137#" "a_416_n1015#" 400 0 "a_358_n918#" 800 0 "a_616_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 -918 159 -917 l=200 w=800 "w_n812_n1137#" "a_158_n1015#" 400 0 "a_100_n918#" 800 0 "a_358_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 -918 -99 -917 l=200 w=800 "w_n812_n1137#" "a_n100_n1015#" 400 0 "a_n158_n918#" 800 0 "a_100_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 -918 -357 -917 l=200 w=800 "w_n812_n1137#" "a_n358_n1015#" 400 0 "a_n416_n918#" 800 0 "a_n158_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 -918 -615 -917 l=200 w=800 "w_n812_n1137#" "a_n616_n1015#" 400 0 "a_n674_n918#" 800 0 "a_n416_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 416 118 417 119 l=200 w=800 "w_n812_n1137#" "a_416_21#" 400 0 "a_358_118#" 800 0 "a_616_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 118 159 119 l=200 w=800 "w_n812_n1137#" "a_158_21#" 400 0 "a_100_118#" 800 0 "a_358_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 118 -99 119 l=200 w=800 "w_n812_n1137#" "a_n100_21#" 400 0 "a_n158_118#" 800 0 "a_100_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 118 -357 119 l=200 w=800 "w_n812_n1137#" "a_n358_21#" 400 0 "a_n416_118#" 800 0 "a_n158_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 118 -615 119 l=200 w=800 "w_n812_n1137#" "a_n616_21#" 400 0 "a_n674_118#" 800 0 "a_n416_118#" 800 0
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.mag" "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.mag"
new file mode 100644
index 0000000..8389a76
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430\0430.mag"
@@ -0,0 +1,436 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< nwell >>
+rect -812 -1137 812 1137
+<< pmos >>
+rect -616 118 -416 918
+rect -358 118 -158 918
+rect -100 118 100 918
+rect 158 118 358 918
+rect 416 118 616 918
+rect -616 -918 -416 -118
+rect -358 -918 -158 -118
+rect -100 -918 100 -118
+rect 158 -918 358 -118
+rect 416 -918 616 -118
+<< pdiff >>
+rect -674 906 -616 918
+rect -674 130 -662 906
+rect -628 130 -616 906
+rect -674 118 -616 130
+rect -416 906 -358 918
+rect -416 130 -404 906
+rect -370 130 -358 906
+rect -416 118 -358 130
+rect -158 906 -100 918
+rect -158 130 -146 906
+rect -112 130 -100 906
+rect -158 118 -100 130
+rect 100 906 158 918
+rect 100 130 112 906
+rect 146 130 158 906
+rect 100 118 158 130
+rect 358 906 416 918
+rect 358 130 370 906
+rect 404 130 416 906
+rect 358 118 416 130
+rect 616 906 674 918
+rect 616 130 628 906
+rect 662 130 674 906
+rect 616 118 674 130
+rect -674 -130 -616 -118
+rect -674 -906 -662 -130
+rect -628 -906 -616 -130
+rect -674 -918 -616 -906
+rect -416 -130 -358 -118
+rect -416 -906 -404 -130
+rect -370 -906 -358 -130
+rect -416 -918 -358 -906
+rect -158 -130 -100 -118
+rect -158 -906 -146 -130
+rect -112 -906 -100 -130
+rect -158 -918 -100 -906
+rect 100 -130 158 -118
+rect 100 -906 112 -130
+rect 146 -906 158 -130
+rect 100 -918 158 -906
+rect 358 -130 416 -118
+rect 358 -906 370 -130
+rect 404 -906 416 -130
+rect 358 -918 416 -906
+rect 616 -130 674 -118
+rect 616 -906 628 -130
+rect 662 -906 674 -130
+rect 616 -918 674 -906
+<< pdiffc >>
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+<< nsubdiff >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< nsubdiffcont >>
+rect -680 1067 680 1101
+rect -776 -1005 -742 1005
+rect 742 -1005 776 1005
+rect -680 -1101 680 -1067
+<< poly >>
+rect -616 999 -416 1015
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -616 918 -416 965
+rect -358 999 -158 1015
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -358 918 -158 965
+rect -100 999 100 1015
+rect -100 965 -84 999
+rect 84 965 100 999
+rect -100 918 100 965
+rect 158 999 358 1015
+rect 158 965 174 999
+rect 342 965 358 999
+rect 158 918 358 965
+rect 416 999 616 1015
+rect 416 965 432 999
+rect 600 965 616 999
+rect 416 918 616 965
+rect -616 71 -416 118
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -616 21 -416 37
+rect -358 71 -158 118
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -358 21 -158 37
+rect -100 71 100 118
+rect -100 37 -84 71
+rect 84 37 100 71
+rect -100 21 100 37
+rect 158 71 358 118
+rect 158 37 174 71
+rect 342 37 358 71
+rect 158 21 358 37
+rect 416 71 616 118
+rect 416 37 432 71
+rect 600 37 616 71
+rect 416 21 616 37
+rect -616 -37 -416 -21
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -616 -118 -416 -71
+rect -358 -37 -158 -21
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -358 -118 -158 -71
+rect -100 -37 100 -21
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect -100 -118 100 -71
+rect 158 -37 358 -21
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 158 -118 358 -71
+rect 416 -37 616 -21
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect 416 -118 616 -71
+rect -616 -965 -416 -918
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -616 -1015 -416 -999
+rect -358 -965 -158 -918
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -358 -1015 -158 -999
+rect -100 -965 100 -918
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect -100 -1015 100 -999
+rect 158 -965 358 -918
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 158 -1015 358 -999
+rect 416 -965 616 -918
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect 416 -1015 616 -999
+<< polycont >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< locali >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -100 965 -84 999
+rect 84 965 100 999
+rect 158 965 174 999
+rect 342 965 358 999
+rect 416 965 432 999
+rect 600 965 616 999
+rect -662 906 -628 922
+rect -662 114 -628 130
+rect -404 906 -370 922
+rect -404 114 -370 130
+rect -146 906 -112 922
+rect -146 114 -112 130
+rect 112 906 146 922
+rect 112 114 146 130
+rect 370 906 404 922
+rect 370 114 404 130
+rect 628 906 662 922
+rect 628 114 662 130
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -100 37 -84 71
+rect 84 37 100 71
+rect 158 37 174 71
+rect 342 37 358 71
+rect 416 37 432 71
+rect 600 37 616 71
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect -662 -130 -628 -114
+rect -662 -922 -628 -906
+rect -404 -130 -370 -114
+rect -404 -922 -370 -906
+rect -146 -130 -112 -114
+rect -146 -922 -112 -906
+rect 112 -130 146 -114
+rect 112 -922 146 -906
+rect 370 -130 404 -114
+rect 370 -922 404 -906
+rect 628 -130 662 -114
+rect 628 -922 662 -906
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< viali >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< metal1 >>
+rect -612 999 -420 1005
+rect -612 965 -600 999
+rect -432 965 -420 999
+rect -612 959 -420 965
+rect -354 999 -162 1005
+rect -354 965 -342 999
+rect -174 965 -162 999
+rect -354 959 -162 965
+rect -96 999 96 1005
+rect -96 965 -84 999
+rect 84 965 96 999
+rect -96 959 96 965
+rect 162 999 354 1005
+rect 162 965 174 999
+rect 342 965 354 999
+rect 162 959 354 965
+rect 420 999 612 1005
+rect 420 965 432 999
+rect 600 965 612 999
+rect 420 959 612 965
+rect -668 906 -622 918
+rect -668 130 -662 906
+rect -628 130 -622 906
+rect -668 118 -622 130
+rect -410 906 -364 918
+rect -410 130 -404 906
+rect -370 130 -364 906
+rect -410 118 -364 130
+rect -152 906 -106 918
+rect -152 130 -146 906
+rect -112 130 -106 906
+rect -152 118 -106 130
+rect 106 906 152 918
+rect 106 130 112 906
+rect 146 130 152 906
+rect 106 118 152 130
+rect 364 906 410 918
+rect 364 130 370 906
+rect 404 130 410 906
+rect 364 118 410 130
+rect 622 906 668 918
+rect 622 130 628 906
+rect 662 130 668 906
+rect 622 118 668 130
+rect -612 71 -420 77
+rect -612 37 -600 71
+rect -432 37 -420 71
+rect -612 31 -420 37
+rect -354 71 -162 77
+rect -354 37 -342 71
+rect -174 37 -162 71
+rect -354 31 -162 37
+rect -96 71 96 77
+rect -96 37 -84 71
+rect 84 37 96 71
+rect -96 31 96 37
+rect 162 71 354 77
+rect 162 37 174 71
+rect 342 37 354 71
+rect 162 31 354 37
+rect 420 71 612 77
+rect 420 37 432 71
+rect 600 37 612 71
+rect 420 31 612 37
+rect -612 -37 -420 -31
+rect -612 -71 -600 -37
+rect -432 -71 -420 -37
+rect -612 -77 -420 -71
+rect -354 -37 -162 -31
+rect -354 -71 -342 -37
+rect -174 -71 -162 -37
+rect -354 -77 -162 -71
+rect -96 -37 96 -31
+rect -96 -71 -84 -37
+rect 84 -71 96 -37
+rect -96 -77 96 -71
+rect 162 -37 354 -31
+rect 162 -71 174 -37
+rect 342 -71 354 -37
+rect 162 -77 354 -71
+rect 420 -37 612 -31
+rect 420 -71 432 -37
+rect 600 -71 612 -37
+rect 420 -77 612 -71
+rect -668 -130 -622 -118
+rect -668 -906 -662 -130
+rect -628 -906 -622 -130
+rect -668 -918 -622 -906
+rect -410 -130 -364 -118
+rect -410 -906 -404 -130
+rect -370 -906 -364 -130
+rect -410 -918 -364 -906
+rect -152 -130 -106 -118
+rect -152 -906 -146 -130
+rect -112 -906 -106 -130
+rect -152 -918 -106 -906
+rect 106 -130 152 -118
+rect 106 -906 112 -130
+rect 146 -906 152 -130
+rect 106 -918 152 -906
+rect 364 -130 410 -118
+rect 364 -906 370 -130
+rect 404 -906 410 -130
+rect 364 -918 410 -906
+rect 622 -130 668 -118
+rect 622 -906 628 -130
+rect 662 -906 668 -130
+rect 622 -918 668 -906
+rect -612 -965 -420 -959
+rect -612 -999 -600 -965
+rect -432 -999 -420 -965
+rect -612 -1005 -420 -999
+rect -354 -965 -162 -959
+rect -354 -999 -342 -965
+rect -174 -999 -162 -965
+rect -354 -1005 -162 -999
+rect -96 -965 96 -959
+rect -96 -999 -84 -965
+rect 84 -999 96 -965
+rect -96 -1005 96 -999
+rect 162 -965 354 -959
+rect 162 -999 174 -965
+rect 342 -999 354 -965
+rect 162 -1005 354 -999
+rect 420 -965 612 -959
+rect 420 -999 432 -965
+rect 600 -999 612 -965
+rect 420 -1005 612 -999
+<< properties >>
+string FIXED_BBOX -759 -1084 759 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 1 m 2 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.ext" "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.ext"
new file mode 100644
index 0000000..203a1dd
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.ext"
@@ -0,0 +1,124 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_616_n918#" 3024 0 616 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_n918#" 3024 0 358 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_n918#" 3024 0 100 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_n918#" 3024 0 -158 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_n918#" 3024 0 -416 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_n918#" 3024 0 -674 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_n1015#" 421 0 416 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_n1015#" 421 0 158 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_n1015#" 421 0 -100 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_n1015#" 421 0 -358 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_n1015#" 421 0 -616 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_616_118#" 3024 0 616 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_118#" 3024 0 358 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_118#" 3024 0 100 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_118#" 3024 0 -158 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_118#" 3024 0 -416 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_118#" 3024 0 -674 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_21#" 421 0 416 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_21#" 421 0 158 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_21#" 421 0 -100 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_21#" 421 0 -358 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_21#" 421 0 -616 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n812_n1137#" 29858 11078.9 -812 -1137 nw 0 0 0 0 3692976 7796 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_358_118#" "a_n158_118#" 109.746
+cap "a_416_21#" "a_n616_21#" 10.2938
+cap "a_n100_n1015#" "a_n616_n1015#" 26.9398
+cap "a_358_n918#" "a_n416_n918#" 71.1224
+cap "w_n812_n1137#" "a_158_n1015#" 283.549
+cap "a_358_n918#" "a_100_n918#" 240.245
+cap "a_n100_n1015#" "a_n358_n1015#" 141.126
+cap "a_100_118#" "a_616_118#" 109.746
+cap "a_n416_n918#" "a_n416_118#" 11.3678
+cap "a_358_118#" "a_n674_118#" 52.6085
+cap "a_416_n1015#" "a_158_n1015#" 141.126
+cap "a_n358_21#" "a_n616_21#" 141.126
+cap "a_n358_21#" "a_n358_n1015#" 296.389
+cap "a_158_21#" "a_n616_21#" 14.8957
+cap "a_358_n918#" "a_616_n918#" 240.245
+cap "a_n158_n918#" "a_358_n918#" 109.746
+cap "w_n812_n1137#" "a_616_118#" 319.234
+cap "a_n158_118#" "a_616_118#" 71.1224
+cap "a_416_21#" "a_n358_21#" 14.8957
+cap "a_358_n918#" "a_358_118#" 11.3678
+cap "w_n812_n1137#" "a_n100_21#" 342.829
+cap "w_n812_n1137#" "a_100_118#" 85.1427
+cap "a_158_21#" "a_416_21#" 141.126
+cap "a_100_118#" "a_n158_118#" 240.245
+cap "a_100_n918#" "a_n416_n918#" 109.746
+cap "a_358_118#" "a_n416_118#" 71.1224
+cap "a_158_n1015#" "a_n616_n1015#" 14.8957
+cap "w_n812_n1137#" "a_n674_n918#" 314.163
+cap "a_n674_118#" "a_616_118#" 41.7426
+cap "a_158_n1015#" "a_n358_n1015#" 26.9398
+cap "w_n812_n1137#" "a_n158_118#" 85.4542
+cap "a_616_n918#" "a_n416_n918#" 52.6085
+cap "a_n158_n918#" "a_n416_n918#" 240.245
+cap "a_100_118#" "a_n674_118#" 71.1224
+cap "a_158_21#" "a_n358_21#" 26.9398
+cap "a_100_n918#" "a_616_n918#" 109.746
+cap "a_n158_n918#" "a_100_n918#" 240.245
+cap "w_n812_n1137#" "a_416_n1015#" 337.05
+cap "a_n674_n918#" "a_n674_118#" 11.3678
+cap "a_158_n1015#" "a_n100_n1015#" 141.126
+cap "w_n812_n1137#" "a_n674_118#" 320.465
+cap "a_n158_118#" "a_n674_118#" 109.746
+cap "a_n158_n918#" "a_616_n918#" 71.1224
+cap "a_616_118#" "a_n416_118#" 52.6085
+cap "a_n100_21#" "a_n616_21#" 26.9398
+cap "a_100_118#" "a_n416_118#" 109.746
+cap "a_358_n918#" "a_n674_n918#" 52.6085
+cap "a_158_21#" "a_158_n1015#" 296.389
+cap "w_n812_n1137#" "a_n616_n1015#" 386.941
+cap "a_n100_21#" "a_416_21#" 26.9398
+cap "w_n812_n1137#" "a_358_n918#" 101.3
+cap "w_n812_n1137#" "a_n616_21#" 431.216
+cap "w_n812_n1137#" "a_n358_n1015#" 314.079
+cap "a_416_n1015#" "a_n616_n1015#" 10.2938
+cap "a_n158_118#" "a_n416_118#" 240.245
+cap "w_n812_n1137#" "a_n416_118#" 108.517
+cap "a_n100_21#" "a_n100_n1015#" 296.389
+cap "a_100_118#" "a_100_n918#" 11.3678
+cap "a_416_n1015#" "a_n358_n1015#" 14.8957
+cap "w_n812_n1137#" "a_416_21#" 381.325
+cap "a_n100_21#" "a_n358_21#" 141.126
+cap "a_158_21#" "a_n100_21#" 141.126
+cap "a_n674_n918#" "a_n416_n918#" 240.245
+cap "a_616_n918#" "a_616_118#" 11.3678
+cap "a_100_n918#" "a_n674_n918#" 71.1224
+cap "a_416_n1015#" "a_416_21#" 296.389
+cap "w_n812_n1137#" "a_n100_n1015#" 298.554
+cap "w_n812_n1137#" "a_n416_n918#" 102.214
+cap "a_n674_118#" "a_n416_118#" 240.245
+cap "a_358_118#" "a_616_118#" 240.245
+cap "w_n812_n1137#" "a_100_n918#" 78.8401
+cap "a_100_118#" "a_358_118#" 240.245
+cap "a_416_n1015#" "a_n100_n1015#" 26.9398
+cap "w_n812_n1137#" "a_n358_21#" 358.354
+cap "a_n616_n1015#" "a_n616_21#" 296.389
+cap "a_n616_n1015#" "a_n358_n1015#" 141.126
+cap "w_n812_n1137#" "a_158_21#" 327.824
+cap "a_n674_n918#" "a_616_n918#" 41.7426
+cap "a_n158_n918#" "a_n674_n918#" 109.746
+cap "w_n812_n1137#" "a_616_n918#" 312.931
+cap "a_n158_n918#" "w_n812_n1137#" 79.1515
+cap "a_n158_n918#" "a_n158_118#" 11.3678
+cap "w_n812_n1137#" "a_358_118#" 107.603
+device msubckt sky130_fd_pr__pfet_01v8 416 -918 417 -917 l=200 w=800 "w_n812_n1137#" "a_416_n1015#" 400 0 "a_358_n918#" 800 0 "a_616_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 -918 159 -917 l=200 w=800 "w_n812_n1137#" "a_158_n1015#" 400 0 "a_100_n918#" 800 0 "a_358_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 -918 -99 -917 l=200 w=800 "w_n812_n1137#" "a_n100_n1015#" 400 0 "a_n158_n918#" 800 0 "a_100_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 -918 -357 -917 l=200 w=800 "w_n812_n1137#" "a_n358_n1015#" 400 0 "a_n416_n918#" 800 0 "a_n158_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 -918 -615 -917 l=200 w=800 "w_n812_n1137#" "a_n616_n1015#" 400 0 "a_n674_n918#" 800 0 "a_n416_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 416 118 417 119 l=200 w=800 "w_n812_n1137#" "a_416_21#" 400 0 "a_358_118#" 800 0 "a_616_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 118 159 119 l=200 w=800 "w_n812_n1137#" "a_158_21#" 400 0 "a_100_118#" 800 0 "a_358_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 118 -99 119 l=200 w=800 "w_n812_n1137#" "a_n100_21#" 400 0 "a_n158_118#" 800 0 "a_100_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 118 -357 119 l=200 w=800 "w_n812_n1137#" "a_n358_21#" 400 0 "a_n416_118#" 800 0 "a_n158_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 118 -615 119 l=200 w=800 "w_n812_n1137#" "a_n616_21#" 400 0 "a_n674_118#" 800 0 "a_n416_118#" 800 0
diff --git "a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.mag" "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.mag"
new file mode 100644
index 0000000..36f3bea
--- /dev/null
+++ "b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ\0430.mag"
@@ -0,0 +1,436 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -812 -1137 812 1137
+<< pmos >>
+rect -616 118 -416 918
+rect -358 118 -158 918
+rect -100 118 100 918
+rect 158 118 358 918
+rect 416 118 616 918
+rect -616 -918 -416 -118
+rect -358 -918 -158 -118
+rect -100 -918 100 -118
+rect 158 -918 358 -118
+rect 416 -918 616 -118
+<< pdiff >>
+rect -674 906 -616 918
+rect -674 130 -662 906
+rect -628 130 -616 906
+rect -674 118 -616 130
+rect -416 906 -358 918
+rect -416 130 -404 906
+rect -370 130 -358 906
+rect -416 118 -358 130
+rect -158 906 -100 918
+rect -158 130 -146 906
+rect -112 130 -100 906
+rect -158 118 -100 130
+rect 100 906 158 918
+rect 100 130 112 906
+rect 146 130 158 906
+rect 100 118 158 130
+rect 358 906 416 918
+rect 358 130 370 906
+rect 404 130 416 906
+rect 358 118 416 130
+rect 616 906 674 918
+rect 616 130 628 906
+rect 662 130 674 906
+rect 616 118 674 130
+rect -674 -130 -616 -118
+rect -674 -906 -662 -130
+rect -628 -906 -616 -130
+rect -674 -918 -616 -906
+rect -416 -130 -358 -118
+rect -416 -906 -404 -130
+rect -370 -906 -358 -130
+rect -416 -918 -358 -906
+rect -158 -130 -100 -118
+rect -158 -906 -146 -130
+rect -112 -906 -100 -130
+rect -158 -918 -100 -906
+rect 100 -130 158 -118
+rect 100 -906 112 -130
+rect 146 -906 158 -130
+rect 100 -918 158 -906
+rect 358 -130 416 -118
+rect 358 -906 370 -130
+rect 404 -906 416 -130
+rect 358 -918 416 -906
+rect 616 -130 674 -118
+rect 616 -906 628 -130
+rect 662 -906 674 -130
+rect 616 -918 674 -906
+<< pdiffc >>
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+<< nsubdiff >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< nsubdiffcont >>
+rect -680 1067 680 1101
+rect -776 -1005 -742 1005
+rect 742 -1005 776 1005
+rect -680 -1101 680 -1067
+<< poly >>
+rect -616 999 -416 1015
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -616 918 -416 965
+rect -358 999 -158 1015
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -358 918 -158 965
+rect -100 999 100 1015
+rect -100 965 -84 999
+rect 84 965 100 999
+rect -100 918 100 965
+rect 158 999 358 1015
+rect 158 965 174 999
+rect 342 965 358 999
+rect 158 918 358 965
+rect 416 999 616 1015
+rect 416 965 432 999
+rect 600 965 616 999
+rect 416 918 616 965
+rect -616 71 -416 118
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -616 21 -416 37
+rect -358 71 -158 118
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -358 21 -158 37
+rect -100 71 100 118
+rect -100 37 -84 71
+rect 84 37 100 71
+rect -100 21 100 37
+rect 158 71 358 118
+rect 158 37 174 71
+rect 342 37 358 71
+rect 158 21 358 37
+rect 416 71 616 118
+rect 416 37 432 71
+rect 600 37 616 71
+rect 416 21 616 37
+rect -616 -37 -416 -21
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -616 -118 -416 -71
+rect -358 -37 -158 -21
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -358 -118 -158 -71
+rect -100 -37 100 -21
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect -100 -118 100 -71
+rect 158 -37 358 -21
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 158 -118 358 -71
+rect 416 -37 616 -21
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect 416 -118 616 -71
+rect -616 -965 -416 -918
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -616 -1015 -416 -999
+rect -358 -965 -158 -918
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -358 -1015 -158 -999
+rect -100 -965 100 -918
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect -100 -1015 100 -999
+rect 158 -965 358 -918
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 158 -1015 358 -999
+rect 416 -965 616 -918
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect 416 -1015 616 -999
+<< polycont >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< locali >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -100 965 -84 999
+rect 84 965 100 999
+rect 158 965 174 999
+rect 342 965 358 999
+rect 416 965 432 999
+rect 600 965 616 999
+rect -662 906 -628 922
+rect -662 114 -628 130
+rect -404 906 -370 922
+rect -404 114 -370 130
+rect -146 906 -112 922
+rect -146 114 -112 130
+rect 112 906 146 922
+rect 112 114 146 130
+rect 370 906 404 922
+rect 370 114 404 130
+rect 628 906 662 922
+rect 628 114 662 130
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -100 37 -84 71
+rect 84 37 100 71
+rect 158 37 174 71
+rect 342 37 358 71
+rect 416 37 432 71
+rect 600 37 616 71
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect -662 -130 -628 -114
+rect -662 -922 -628 -906
+rect -404 -130 -370 -114
+rect -404 -922 -370 -906
+rect -146 -130 -112 -114
+rect -146 -922 -112 -906
+rect 112 -130 146 -114
+rect 112 -922 146 -906
+rect 370 -130 404 -114
+rect 370 -922 404 -906
+rect 628 -130 662 -114
+rect 628 -922 662 -906
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< viali >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< metal1 >>
+rect -612 999 -420 1005
+rect -612 965 -600 999
+rect -432 965 -420 999
+rect -612 959 -420 965
+rect -354 999 -162 1005
+rect -354 965 -342 999
+rect -174 965 -162 999
+rect -354 959 -162 965
+rect -96 999 96 1005
+rect -96 965 -84 999
+rect 84 965 96 999
+rect -96 959 96 965
+rect 162 999 354 1005
+rect 162 965 174 999
+rect 342 965 354 999
+rect 162 959 354 965
+rect 420 999 612 1005
+rect 420 965 432 999
+rect 600 965 612 999
+rect 420 959 612 965
+rect -668 906 -622 918
+rect -668 130 -662 906
+rect -628 130 -622 906
+rect -668 118 -622 130
+rect -410 906 -364 918
+rect -410 130 -404 906
+rect -370 130 -364 906
+rect -410 118 -364 130
+rect -152 906 -106 918
+rect -152 130 -146 906
+rect -112 130 -106 906
+rect -152 118 -106 130
+rect 106 906 152 918
+rect 106 130 112 906
+rect 146 130 152 906
+rect 106 118 152 130
+rect 364 906 410 918
+rect 364 130 370 906
+rect 404 130 410 906
+rect 364 118 410 130
+rect 622 906 668 918
+rect 622 130 628 906
+rect 662 130 668 906
+rect 622 118 668 130
+rect -612 71 -420 77
+rect -612 37 -600 71
+rect -432 37 -420 71
+rect -612 31 -420 37
+rect -354 71 -162 77
+rect -354 37 -342 71
+rect -174 37 -162 71
+rect -354 31 -162 37
+rect -96 71 96 77
+rect -96 37 -84 71
+rect 84 37 96 71
+rect -96 31 96 37
+rect 162 71 354 77
+rect 162 37 174 71
+rect 342 37 354 71
+rect 162 31 354 37
+rect 420 71 612 77
+rect 420 37 432 71
+rect 600 37 612 71
+rect 420 31 612 37
+rect -612 -37 -420 -31
+rect -612 -71 -600 -37
+rect -432 -71 -420 -37
+rect -612 -77 -420 -71
+rect -354 -37 -162 -31
+rect -354 -71 -342 -37
+rect -174 -71 -162 -37
+rect -354 -77 -162 -71
+rect -96 -37 96 -31
+rect -96 -71 -84 -37
+rect 84 -71 96 -37
+rect -96 -77 96 -71
+rect 162 -37 354 -31
+rect 162 -71 174 -37
+rect 342 -71 354 -37
+rect 162 -77 354 -71
+rect 420 -37 612 -31
+rect 420 -71 432 -37
+rect 600 -71 612 -37
+rect 420 -77 612 -71
+rect -668 -130 -622 -118
+rect -668 -906 -662 -130
+rect -628 -906 -622 -130
+rect -668 -918 -622 -906
+rect -410 -130 -364 -118
+rect -410 -906 -404 -130
+rect -370 -906 -364 -130
+rect -410 -918 -364 -906
+rect -152 -130 -106 -118
+rect -152 -906 -146 -130
+rect -112 -906 -106 -130
+rect -152 -918 -106 -906
+rect 106 -130 152 -118
+rect 106 -906 112 -130
+rect 146 -906 152 -130
+rect 106 -918 152 -906
+rect 364 -130 410 -118
+rect 364 -906 370 -130
+rect 404 -906 410 -130
+rect 364 -918 410 -906
+rect 622 -130 668 -118
+rect 622 -906 628 -130
+rect 662 -906 668 -130
+rect 622 -918 668 -906
+rect -612 -965 -420 -959
+rect -612 -999 -600 -965
+rect -432 -999 -420 -965
+rect -612 -1005 -420 -999
+rect -354 -965 -162 -959
+rect -354 -999 -342 -965
+rect -174 -999 -162 -965
+rect -354 -1005 -162 -999
+rect -96 -965 96 -959
+rect -96 -999 -84 -965
+rect 84 -999 96 -965
+rect -96 -1005 96 -999
+rect 162 -965 354 -959
+rect 162 -999 174 -965
+rect 342 -999 354 -965
+rect 162 -1005 354 -999
+rect 420 -965 612 -959
+rect 420 -999 432 -965
+rect 600 -999 612 -965
+rect 420 -1005 612 -999
+<< properties >>
+string FIXED_BBOX -759 -1084 759 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 1 m 2 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.ext b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.ext
new file mode 100644
index 0000000..ec13a75
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.ext
@@ -0,0 +1,98 @@
+timestamp 1645630008
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_616_n918#" 3024 0 616 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_n918#" 3024 0 358 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_n918#" 3024 0 100 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_n918#" 3024 0 -158 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_n918#" 3024 0 -416 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_n918#" 3024 0 -674 -918 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_n1015#" 421 102.82 416 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_n1015#" 421 102.82 158 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_n1015#" 421 102.82 -100 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_n1015#" 421 102.82 -358 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_n1015#" 421 102.82 -616 -1015 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_616_118#" 3024 0 616 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_358_118#" 3024 0 358 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_100_118#" 3024 0 100 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n158_118#" 3024 0 -158 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n416_118#" 3024 0 -416 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_n674_118#" 3024 0 -674 118 pdif 0 0 0 0 0 0 0 0 0 0 46400 1716 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27472 1684 36800 1692 0 0 0 0 0 0 0 0 0 0
+node "a_416_21#" 421 102.82 416 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_158_21#" 421 102.82 158 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n100_21#" 421 102.82 -100 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n358_21#" 421 102.82 -358 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n616_21#" 421 102.82 -616 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 198800 2388 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n812_n1137#" 29858 11078.9 -812 -1137 nw 0 0 0 0 3692976 7796 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 250648 14744 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_100_118#" "a_358_118#" 288.847
+cap "a_616_n918#" "a_358_n918#" 288.847
+cap "a_358_118#" "a_358_n918#" 13.6922
+cap "a_616_n918#" "w_n812_n1137#" 363.43
+cap "a_n358_21#" "a_n100_21#" 178.348
+cap "a_616_n918#" "a_616_118#" 13.6922
+cap "w_n812_n1137#" "a_358_118#" 109.017
+cap "w_n812_n1137#" "a_416_n1015#" 469.448
+cap "a_n358_21#" "a_158_21#" 33.9993
+cap "w_n812_n1137#" "a_n100_21#" 451.639
+cap "a_616_118#" "a_358_118#" 288.847
+cap "a_n358_n1015#" "a_158_n1015#" 33.9993
+cap "w_n812_n1137#" "a_n158_n918#" 30.1295
+cap "w_n812_n1137#" "a_158_n1015#" 457.483
+cap "a_n358_n1015#" "a_n616_n1015#" 178.348
+cap "w_n812_n1137#" "a_n616_n1015#" 469.448
+cap "w_n812_n1137#" "a_158_21#" 457.483
+cap "a_n674_118#" "a_n416_118#" 288.847
+cap "a_100_118#" "w_n812_n1137#" 30.1295
+cap "w_n812_n1137#" "a_n416_118#" 109.017
+cap "a_n358_n1015#" "a_n358_21#" 338.068
+cap "a_n358_21#" "w_n812_n1137#" 457.483
+cap "a_n158_n918#" "a_n158_118#" 13.6922
+cap "a_n674_118#" "w_n812_n1137#" 363.43
+cap "w_n812_n1137#" "a_358_n918#" 109.017
+cap "a_n358_n1015#" "w_n812_n1137#" 457.483
+cap "a_416_21#" "a_416_n1015#" 338.068
+cap "a_n158_n918#" "a_n416_n918#" 288.847
+cap "a_n100_21#" "a_416_21#" 33.9993
+cap "a_616_118#" "w_n812_n1137#" 363.43
+cap "a_100_118#" "a_n158_118#" 288.847
+cap "a_158_21#" "a_416_21#" 178.348
+cap "a_100_n918#" "a_n158_n918#" 288.847
+cap "a_n674_118#" "a_n674_n918#" 13.6922
+cap "a_n416_118#" "a_n158_118#" 288.847
+cap "a_n616_21#" "a_n100_21#" 33.9993
+cap "a_416_n1015#" "a_n100_n1015#" 33.9993
+cap "a_n416_118#" "a_n416_n918#" 13.6922
+cap "w_n812_n1137#" "a_n674_n918#" 363.43
+cap "a_n100_21#" "a_n100_n1015#" 338.068
+cap "a_n616_21#" "a_n616_n1015#" 338.068
+cap "w_n812_n1137#" "a_n158_118#" 30.1295
+cap "a_158_n1015#" "a_n100_n1015#" 178.348
+cap "a_100_118#" "a_100_n918#" 13.6922
+cap "a_n616_n1015#" "a_n100_n1015#" 33.9993
+cap "w_n812_n1137#" "a_n416_n918#" 109.017
+cap "a_100_n918#" "a_358_n918#" 288.847
+cap "w_n812_n1137#" "a_416_21#" 469.448
+cap "w_n812_n1137#" "a_100_n918#" 30.1295
+cap "a_n358_21#" "a_n616_21#" 178.348
+cap "w_n812_n1137#" "a_n616_21#" 469.448
+cap "a_158_n1015#" "a_416_n1015#" 178.348
+cap "a_n674_n918#" "a_n416_n918#" 288.847
+cap "a_n358_n1015#" "a_n100_n1015#" 178.348
+cap "w_n812_n1137#" "a_n100_n1015#" 451.639
+cap "a_n100_21#" "a_158_21#" 178.348
+cap "a_158_n1015#" "a_158_21#" 338.068
+device msubckt sky130_fd_pr__pfet_01v8 416 -918 417 -917 l=200 w=800 "w_n812_n1137#" "a_416_n1015#" 400 0 "a_358_n918#" 800 0 "a_616_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 -918 159 -917 l=200 w=800 "w_n812_n1137#" "a_158_n1015#" 400 0 "a_100_n918#" 800 0 "a_358_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 -918 -99 -917 l=200 w=800 "w_n812_n1137#" "a_n100_n1015#" 400 0 "a_n158_n918#" 800 0 "a_100_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 -918 -357 -917 l=200 w=800 "w_n812_n1137#" "a_n358_n1015#" 400 0 "a_n416_n918#" 800 0 "a_n158_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 -918 -615 -917 l=200 w=800 "w_n812_n1137#" "a_n616_n1015#" 400 0 "a_n674_n918#" 800 0 "a_n416_n918#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 416 118 417 119 l=200 w=800 "w_n812_n1137#" "a_416_21#" 400 0 "a_358_118#" 800 0 "a_616_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 158 118 159 119 l=200 w=800 "w_n812_n1137#" "a_158_21#" 400 0 "a_100_118#" 800 0 "a_358_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -100 118 -99 119 l=200 w=800 "w_n812_n1137#" "a_n100_21#" 400 0 "a_n158_118#" 800 0 "a_100_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -358 118 -357 119 l=200 w=800 "w_n812_n1137#" "a_n358_21#" 400 0 "a_n416_118#" 800 0 "a_n158_118#" 800 0
+device msubckt sky130_fd_pr__pfet_01v8 -616 118 -615 119 l=200 w=800 "w_n812_n1137#" "a_n616_21#" 400 0 "a_n674_118#" 800 0 "a_n416_118#" 800 0
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.mag b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.mag
new file mode 100644
index 0000000..8389a76
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_J24RLQ.mag
@@ -0,0 +1,436 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< nwell >>
+rect -812 -1137 812 1137
+<< pmos >>
+rect -616 118 -416 918
+rect -358 118 -158 918
+rect -100 118 100 918
+rect 158 118 358 918
+rect 416 118 616 918
+rect -616 -918 -416 -118
+rect -358 -918 -158 -118
+rect -100 -918 100 -118
+rect 158 -918 358 -118
+rect 416 -918 616 -118
+<< pdiff >>
+rect -674 906 -616 918
+rect -674 130 -662 906
+rect -628 130 -616 906
+rect -674 118 -616 130
+rect -416 906 -358 918
+rect -416 130 -404 906
+rect -370 130 -358 906
+rect -416 118 -358 130
+rect -158 906 -100 918
+rect -158 130 -146 906
+rect -112 130 -100 906
+rect -158 118 -100 130
+rect 100 906 158 918
+rect 100 130 112 906
+rect 146 130 158 906
+rect 100 118 158 130
+rect 358 906 416 918
+rect 358 130 370 906
+rect 404 130 416 906
+rect 358 118 416 130
+rect 616 906 674 918
+rect 616 130 628 906
+rect 662 130 674 906
+rect 616 118 674 130
+rect -674 -130 -616 -118
+rect -674 -906 -662 -130
+rect -628 -906 -616 -130
+rect -674 -918 -616 -906
+rect -416 -130 -358 -118
+rect -416 -906 -404 -130
+rect -370 -906 -358 -130
+rect -416 -918 -358 -906
+rect -158 -130 -100 -118
+rect -158 -906 -146 -130
+rect -112 -906 -100 -130
+rect -158 -918 -100 -906
+rect 100 -130 158 -118
+rect 100 -906 112 -130
+rect 146 -906 158 -130
+rect 100 -918 158 -906
+rect 358 -130 416 -118
+rect 358 -906 370 -130
+rect 404 -906 416 -130
+rect 358 -918 416 -906
+rect 616 -130 674 -118
+rect 616 -906 628 -130
+rect 662 -906 674 -130
+rect 616 -918 674 -906
+<< pdiffc >>
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+<< nsubdiff >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< nsubdiffcont >>
+rect -680 1067 680 1101
+rect -776 -1005 -742 1005
+rect 742 -1005 776 1005
+rect -680 -1101 680 -1067
+<< poly >>
+rect -616 999 -416 1015
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -616 918 -416 965
+rect -358 999 -158 1015
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -358 918 -158 965
+rect -100 999 100 1015
+rect -100 965 -84 999
+rect 84 965 100 999
+rect -100 918 100 965
+rect 158 999 358 1015
+rect 158 965 174 999
+rect 342 965 358 999
+rect 158 918 358 965
+rect 416 999 616 1015
+rect 416 965 432 999
+rect 600 965 616 999
+rect 416 918 616 965
+rect -616 71 -416 118
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -616 21 -416 37
+rect -358 71 -158 118
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -358 21 -158 37
+rect -100 71 100 118
+rect -100 37 -84 71
+rect 84 37 100 71
+rect -100 21 100 37
+rect 158 71 358 118
+rect 158 37 174 71
+rect 342 37 358 71
+rect 158 21 358 37
+rect 416 71 616 118
+rect 416 37 432 71
+rect 600 37 616 71
+rect 416 21 616 37
+rect -616 -37 -416 -21
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -616 -118 -416 -71
+rect -358 -37 -158 -21
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -358 -118 -158 -71
+rect -100 -37 100 -21
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect -100 -118 100 -71
+rect 158 -37 358 -21
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 158 -118 358 -71
+rect 416 -37 616 -21
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect 416 -118 616 -71
+rect -616 -965 -416 -918
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -616 -1015 -416 -999
+rect -358 -965 -158 -918
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -358 -1015 -158 -999
+rect -100 -965 100 -918
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect -100 -1015 100 -999
+rect 158 -965 358 -918
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 158 -1015 358 -999
+rect 416 -965 616 -918
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect 416 -1015 616 -999
+<< polycont >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< locali >>
+rect -776 1067 -680 1101
+rect 680 1067 776 1101
+rect -776 1005 -742 1067
+rect 742 1005 776 1067
+rect -616 965 -600 999
+rect -432 965 -416 999
+rect -358 965 -342 999
+rect -174 965 -158 999
+rect -100 965 -84 999
+rect 84 965 100 999
+rect 158 965 174 999
+rect 342 965 358 999
+rect 416 965 432 999
+rect 600 965 616 999
+rect -662 906 -628 922
+rect -662 114 -628 130
+rect -404 906 -370 922
+rect -404 114 -370 130
+rect -146 906 -112 922
+rect -146 114 -112 130
+rect 112 906 146 922
+rect 112 114 146 130
+rect 370 906 404 922
+rect 370 114 404 130
+rect 628 906 662 922
+rect 628 114 662 130
+rect -616 37 -600 71
+rect -432 37 -416 71
+rect -358 37 -342 71
+rect -174 37 -158 71
+rect -100 37 -84 71
+rect 84 37 100 71
+rect 158 37 174 71
+rect 342 37 358 71
+rect 416 37 432 71
+rect 600 37 616 71
+rect -616 -71 -600 -37
+rect -432 -71 -416 -37
+rect -358 -71 -342 -37
+rect -174 -71 -158 -37
+rect -100 -71 -84 -37
+rect 84 -71 100 -37
+rect 158 -71 174 -37
+rect 342 -71 358 -37
+rect 416 -71 432 -37
+rect 600 -71 616 -37
+rect -662 -130 -628 -114
+rect -662 -922 -628 -906
+rect -404 -130 -370 -114
+rect -404 -922 -370 -906
+rect -146 -130 -112 -114
+rect -146 -922 -112 -906
+rect 112 -130 146 -114
+rect 112 -922 146 -906
+rect 370 -130 404 -114
+rect 370 -922 404 -906
+rect 628 -130 662 -114
+rect 628 -922 662 -906
+rect -616 -999 -600 -965
+rect -432 -999 -416 -965
+rect -358 -999 -342 -965
+rect -174 -999 -158 -965
+rect -100 -999 -84 -965
+rect 84 -999 100 -965
+rect 158 -999 174 -965
+rect 342 -999 358 -965
+rect 416 -999 432 -965
+rect 600 -999 616 -965
+rect -776 -1067 -742 -1005
+rect 742 -1067 776 -1005
+rect -776 -1101 -680 -1067
+rect 680 -1101 776 -1067
+<< viali >>
+rect -600 965 -432 999
+rect -342 965 -174 999
+rect -84 965 84 999
+rect 174 965 342 999
+rect 432 965 600 999
+rect -662 130 -628 906
+rect -404 130 -370 906
+rect -146 130 -112 906
+rect 112 130 146 906
+rect 370 130 404 906
+rect 628 130 662 906
+rect -600 37 -432 71
+rect -342 37 -174 71
+rect -84 37 84 71
+rect 174 37 342 71
+rect 432 37 600 71
+rect -600 -71 -432 -37
+rect -342 -71 -174 -37
+rect -84 -71 84 -37
+rect 174 -71 342 -37
+rect 432 -71 600 -37
+rect -662 -906 -628 -130
+rect -404 -906 -370 -130
+rect -146 -906 -112 -130
+rect 112 -906 146 -130
+rect 370 -906 404 -130
+rect 628 -906 662 -130
+rect -600 -999 -432 -965
+rect -342 -999 -174 -965
+rect -84 -999 84 -965
+rect 174 -999 342 -965
+rect 432 -999 600 -965
+<< metal1 >>
+rect -612 999 -420 1005
+rect -612 965 -600 999
+rect -432 965 -420 999
+rect -612 959 -420 965
+rect -354 999 -162 1005
+rect -354 965 -342 999
+rect -174 965 -162 999
+rect -354 959 -162 965
+rect -96 999 96 1005
+rect -96 965 -84 999
+rect 84 965 96 999
+rect -96 959 96 965
+rect 162 999 354 1005
+rect 162 965 174 999
+rect 342 965 354 999
+rect 162 959 354 965
+rect 420 999 612 1005
+rect 420 965 432 999
+rect 600 965 612 999
+rect 420 959 612 965
+rect -668 906 -622 918
+rect -668 130 -662 906
+rect -628 130 -622 906
+rect -668 118 -622 130
+rect -410 906 -364 918
+rect -410 130 -404 906
+rect -370 130 -364 906
+rect -410 118 -364 130
+rect -152 906 -106 918
+rect -152 130 -146 906
+rect -112 130 -106 906
+rect -152 118 -106 130
+rect 106 906 152 918
+rect 106 130 112 906
+rect 146 130 152 906
+rect 106 118 152 130
+rect 364 906 410 918
+rect 364 130 370 906
+rect 404 130 410 906
+rect 364 118 410 130
+rect 622 906 668 918
+rect 622 130 628 906
+rect 662 130 668 906
+rect 622 118 668 130
+rect -612 71 -420 77
+rect -612 37 -600 71
+rect -432 37 -420 71
+rect -612 31 -420 37
+rect -354 71 -162 77
+rect -354 37 -342 71
+rect -174 37 -162 71
+rect -354 31 -162 37
+rect -96 71 96 77
+rect -96 37 -84 71
+rect 84 37 96 71
+rect -96 31 96 37
+rect 162 71 354 77
+rect 162 37 174 71
+rect 342 37 354 71
+rect 162 31 354 37
+rect 420 71 612 77
+rect 420 37 432 71
+rect 600 37 612 71
+rect 420 31 612 37
+rect -612 -37 -420 -31
+rect -612 -71 -600 -37
+rect -432 -71 -420 -37
+rect -612 -77 -420 -71
+rect -354 -37 -162 -31
+rect -354 -71 -342 -37
+rect -174 -71 -162 -37
+rect -354 -77 -162 -71
+rect -96 -37 96 -31
+rect -96 -71 -84 -37
+rect 84 -71 96 -37
+rect -96 -77 96 -71
+rect 162 -37 354 -31
+rect 162 -71 174 -37
+rect 342 -71 354 -37
+rect 162 -77 354 -71
+rect 420 -37 612 -31
+rect 420 -71 432 -37
+rect 600 -71 612 -37
+rect 420 -77 612 -71
+rect -668 -130 -622 -118
+rect -668 -906 -662 -130
+rect -628 -906 -622 -130
+rect -668 -918 -622 -906
+rect -410 -130 -364 -118
+rect -410 -906 -404 -130
+rect -370 -906 -364 -130
+rect -410 -918 -364 -906
+rect -152 -130 -106 -118
+rect -152 -906 -146 -130
+rect -112 -906 -106 -130
+rect -152 -918 -106 -906
+rect 106 -130 152 -118
+rect 106 -906 112 -130
+rect 146 -906 152 -130
+rect 106 -918 152 -906
+rect 364 -130 410 -118
+rect 364 -906 370 -130
+rect 404 -906 410 -130
+rect 364 -918 410 -906
+rect 622 -130 668 -118
+rect 622 -906 628 -130
+rect 662 -906 668 -130
+rect 622 -918 668 -906
+rect -612 -965 -420 -959
+rect -612 -999 -600 -965
+rect -432 -999 -420 -965
+rect -612 -1005 -420 -999
+rect -354 -965 -162 -959
+rect -354 -999 -342 -965
+rect -174 -999 -162 -965
+rect -354 -1005 -162 -999
+rect -96 -965 96 -959
+rect -96 -999 -84 -965
+rect 84 -999 96 -965
+rect -96 -1005 96 -999
+rect 162 -965 354 -959
+rect 162 -999 174 -965
+rect 342 -999 354 -965
+rect 162 -1005 354 -999
+rect 420 -965 612 -959
+rect 420 -999 432 -965
+rect 600 -999 612 -965
+rect 420 -1005 612 -999
+<< properties >>
+string FIXED_BBOX -759 -1084 759 1084
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 1 m 2 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_J2QBNN.mag b/mag/isource/sky130_fd_pr__pfet_01v8_J2QBNN.mag
new file mode 100644
index 0000000..f2d8791
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_J2QBNN.mag
@@ -0,0 +1,472 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645179809
+<< nwell >>
+rect -425 -2691 425 2691
+<< pmos >>
+rect -229 1672 -29 2472
+rect 29 1672 229 2472
+rect -229 636 -29 1436
+rect 29 636 229 1436
+rect -229 -400 -29 400
+rect 29 -400 229 400
+rect -229 -1436 -29 -636
+rect 29 -1436 229 -636
+rect -229 -2472 -29 -1672
+rect 29 -2472 229 -1672
+<< pdiff >>
+rect -287 2460 -229 2472
+rect -287 1684 -275 2460
+rect -241 1684 -229 2460
+rect -287 1672 -229 1684
+rect -29 2460 29 2472
+rect -29 1684 -17 2460
+rect 17 1684 29 2460
+rect -29 1672 29 1684
+rect 229 2460 287 2472
+rect 229 1684 241 2460
+rect 275 1684 287 2460
+rect 229 1672 287 1684
+rect -287 1424 -229 1436
+rect -287 648 -275 1424
+rect -241 648 -229 1424
+rect -287 636 -229 648
+rect -29 1424 29 1436
+rect -29 648 -17 1424
+rect 17 648 29 1424
+rect -29 636 29 648
+rect 229 1424 287 1436
+rect 229 648 241 1424
+rect 275 648 287 1424
+rect 229 636 287 648
+rect -287 388 -229 400
+rect -287 -388 -275 388
+rect -241 -388 -229 388
+rect -287 -400 -229 -388
+rect -29 388 29 400
+rect -29 -388 -17 388
+rect 17 -388 29 388
+rect -29 -400 29 -388
+rect 229 388 287 400
+rect 229 -388 241 388
+rect 275 -388 287 388
+rect 229 -400 287 -388
+rect -287 -648 -229 -636
+rect -287 -1424 -275 -648
+rect -241 -1424 -229 -648
+rect -287 -1436 -229 -1424
+rect -29 -648 29 -636
+rect -29 -1424 -17 -648
+rect 17 -1424 29 -648
+rect -29 -1436 29 -1424
+rect 229 -648 287 -636
+rect 229 -1424 241 -648
+rect 275 -1424 287 -648
+rect 229 -1436 287 -1424
+rect -287 -1684 -229 -1672
+rect -287 -2460 -275 -1684
+rect -241 -2460 -229 -1684
+rect -287 -2472 -229 -2460
+rect -29 -1684 29 -1672
+rect -29 -2460 -17 -1684
+rect 17 -2460 29 -1684
+rect -29 -2472 29 -2460
+rect 229 -1684 287 -1672
+rect 229 -2460 241 -1684
+rect 275 -2460 287 -1684
+rect 229 -2472 287 -2460
+<< pdiffc >>
+rect -275 1684 -241 2460
+rect -17 1684 17 2460
+rect 241 1684 275 2460
+rect -275 648 -241 1424
+rect -17 648 17 1424
+rect 241 648 275 1424
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+rect -275 -1424 -241 -648
+rect -17 -1424 17 -648
+rect 241 -1424 275 -648
+rect -275 -2460 -241 -1684
+rect -17 -2460 17 -1684
+rect 241 -2460 275 -1684
+<< nsubdiff >>
+rect -389 2621 -293 2655
+rect 293 2621 389 2655
+rect -389 2559 -355 2621
+rect 355 2559 389 2621
+rect -389 -2621 -355 -2559
+rect 355 -2621 389 -2559
+rect -389 -2655 -293 -2621
+rect 293 -2655 389 -2621
+<< nsubdiffcont >>
+rect -293 2621 293 2655
+rect -389 -2559 -355 2559
+rect 355 -2559 389 2559
+rect -293 -2655 293 -2621
+<< poly >>
+rect -229 2553 -29 2569
+rect -229 2519 -213 2553
+rect -45 2519 -29 2553
+rect -229 2472 -29 2519
+rect 29 2553 229 2569
+rect 29 2519 45 2553
+rect 213 2519 229 2553
+rect 29 2472 229 2519
+rect -229 1625 -29 1672
+rect -229 1591 -213 1625
+rect -45 1591 -29 1625
+rect -229 1575 -29 1591
+rect 29 1625 229 1672
+rect 29 1591 45 1625
+rect 213 1591 229 1625
+rect 29 1575 229 1591
+rect -229 1517 -29 1533
+rect -229 1483 -213 1517
+rect -45 1483 -29 1517
+rect -229 1436 -29 1483
+rect 29 1517 229 1533
+rect 29 1483 45 1517
+rect 213 1483 229 1517
+rect 29 1436 229 1483
+rect -229 589 -29 636
+rect -229 555 -213 589
+rect -45 555 -29 589
+rect -229 539 -29 555
+rect 29 589 229 636
+rect 29 555 45 589
+rect 213 555 229 589
+rect 29 539 229 555
+rect -229 481 -29 497
+rect -229 447 -213 481
+rect -45 447 -29 481
+rect -229 400 -29 447
+rect 29 481 229 497
+rect 29 447 45 481
+rect 213 447 229 481
+rect 29 400 229 447
+rect -229 -447 -29 -400
+rect -229 -481 -213 -447
+rect -45 -481 -29 -447
+rect -229 -497 -29 -481
+rect 29 -447 229 -400
+rect 29 -481 45 -447
+rect 213 -481 229 -447
+rect 29 -497 229 -481
+rect -229 -555 -29 -539
+rect -229 -589 -213 -555
+rect -45 -589 -29 -555
+rect -229 -636 -29 -589
+rect 29 -555 229 -539
+rect 29 -589 45 -555
+rect 213 -589 229 -555
+rect 29 -636 229 -589
+rect -229 -1483 -29 -1436
+rect -229 -1517 -213 -1483
+rect -45 -1517 -29 -1483
+rect -229 -1533 -29 -1517
+rect 29 -1483 229 -1436
+rect 29 -1517 45 -1483
+rect 213 -1517 229 -1483
+rect 29 -1533 229 -1517
+rect -229 -1591 -29 -1575
+rect -229 -1625 -213 -1591
+rect -45 -1625 -29 -1591
+rect -229 -1672 -29 -1625
+rect 29 -1591 229 -1575
+rect 29 -1625 45 -1591
+rect 213 -1625 229 -1591
+rect 29 -1672 229 -1625
+rect -229 -2519 -29 -2472
+rect -229 -2553 -213 -2519
+rect -45 -2553 -29 -2519
+rect -229 -2569 -29 -2553
+rect 29 -2519 229 -2472
+rect 29 -2553 45 -2519
+rect 213 -2553 229 -2519
+rect 29 -2569 229 -2553
+<< polycont >>
+rect -213 2519 -45 2553
+rect 45 2519 213 2553
+rect -213 1591 -45 1625
+rect 45 1591 213 1625
+rect -213 1483 -45 1517
+rect 45 1483 213 1517
+rect -213 555 -45 589
+rect 45 555 213 589
+rect -213 447 -45 481
+rect 45 447 213 481
+rect -213 -481 -45 -447
+rect 45 -481 213 -447
+rect -213 -589 -45 -555
+rect 45 -589 213 -555
+rect -213 -1517 -45 -1483
+rect 45 -1517 213 -1483
+rect -213 -1625 -45 -1591
+rect 45 -1625 213 -1591
+rect -213 -2553 -45 -2519
+rect 45 -2553 213 -2519
+<< locali >>
+rect -389 2621 -293 2655
+rect 293 2621 389 2655
+rect -389 2559 -355 2621
+rect 355 2559 389 2621
+rect -229 2519 -213 2553
+rect -45 2519 -29 2553
+rect 29 2519 45 2553
+rect 213 2519 229 2553
+rect -275 2460 -241 2476
+rect -275 1668 -241 1684
+rect -17 2460 17 2476
+rect -17 1668 17 1684
+rect 241 2460 275 2476
+rect 241 1668 275 1684
+rect -229 1591 -213 1625
+rect -45 1591 -29 1625
+rect 29 1591 45 1625
+rect 213 1591 229 1625
+rect -229 1483 -213 1517
+rect -45 1483 -29 1517
+rect 29 1483 45 1517
+rect 213 1483 229 1517
+rect -275 1424 -241 1440
+rect -275 632 -241 648
+rect -17 1424 17 1440
+rect -17 632 17 648
+rect 241 1424 275 1440
+rect 241 632 275 648
+rect -229 555 -213 589
+rect -45 555 -29 589
+rect 29 555 45 589
+rect 213 555 229 589
+rect -229 447 -213 481
+rect -45 447 -29 481
+rect 29 447 45 481
+rect 213 447 229 481
+rect -275 388 -241 404
+rect -275 -404 -241 -388
+rect -17 388 17 404
+rect -17 -404 17 -388
+rect 241 388 275 404
+rect 241 -404 275 -388
+rect -229 -481 -213 -447
+rect -45 -481 -29 -447
+rect 29 -481 45 -447
+rect 213 -481 229 -447
+rect -229 -589 -213 -555
+rect -45 -589 -29 -555
+rect 29 -589 45 -555
+rect 213 -589 229 -555
+rect -275 -648 -241 -632
+rect -275 -1440 -241 -1424
+rect -17 -648 17 -632
+rect -17 -1440 17 -1424
+rect 241 -648 275 -632
+rect 241 -1440 275 -1424
+rect -229 -1517 -213 -1483
+rect -45 -1517 -29 -1483
+rect 29 -1517 45 -1483
+rect 213 -1517 229 -1483
+rect -229 -1625 -213 -1591
+rect -45 -1625 -29 -1591
+rect 29 -1625 45 -1591
+rect 213 -1625 229 -1591
+rect -275 -1684 -241 -1668
+rect -275 -2476 -241 -2460
+rect -17 -1684 17 -1668
+rect -17 -2476 17 -2460
+rect 241 -1684 275 -1668
+rect 241 -2476 275 -2460
+rect -229 -2553 -213 -2519
+rect -45 -2553 -29 -2519
+rect 29 -2553 45 -2519
+rect 213 -2553 229 -2519
+rect -389 -2621 -355 -2559
+rect 355 -2621 389 -2559
+rect -389 -2655 -293 -2621
+rect 293 -2655 389 -2621
+<< viali >>
+rect -213 2519 -45 2553
+rect 45 2519 213 2553
+rect -275 1684 -241 2460
+rect -17 1684 17 2460
+rect 241 1684 275 2460
+rect -213 1591 -45 1625
+rect 45 1591 213 1625
+rect -213 1483 -45 1517
+rect 45 1483 213 1517
+rect -275 648 -241 1424
+rect -17 648 17 1424
+rect 241 648 275 1424
+rect -213 555 -45 589
+rect 45 555 213 589
+rect -213 447 -45 481
+rect 45 447 213 481
+rect -275 -388 -241 388
+rect -17 -388 17 388
+rect 241 -388 275 388
+rect -213 -481 -45 -447
+rect 45 -481 213 -447
+rect -213 -589 -45 -555
+rect 45 -589 213 -555
+rect -275 -1424 -241 -648
+rect -17 -1424 17 -648
+rect 241 -1424 275 -648
+rect -213 -1517 -45 -1483
+rect 45 -1517 213 -1483
+rect -213 -1625 -45 -1591
+rect 45 -1625 213 -1591
+rect -275 -2460 -241 -1684
+rect -17 -2460 17 -1684
+rect 241 -2460 275 -1684
+rect -213 -2553 -45 -2519
+rect 45 -2553 213 -2519
+<< metal1 >>
+rect -225 2553 -33 2559
+rect -225 2519 -213 2553
+rect -45 2519 -33 2553
+rect -225 2513 -33 2519
+rect 33 2553 225 2559
+rect 33 2519 45 2553
+rect 213 2519 225 2553
+rect 33 2513 225 2519
+rect -281 2460 -235 2472
+rect -281 1684 -275 2460
+rect -241 1684 -235 2460
+rect -281 1672 -235 1684
+rect -23 2460 23 2472
+rect -23 1684 -17 2460
+rect 17 1684 23 2460
+rect -23 1672 23 1684
+rect 235 2460 281 2472
+rect 235 1684 241 2460
+rect 275 1684 281 2460
+rect 235 1672 281 1684
+rect -225 1625 -33 1631
+rect -225 1591 -213 1625
+rect -45 1591 -33 1625
+rect -225 1585 -33 1591
+rect 33 1625 225 1631
+rect 33 1591 45 1625
+rect 213 1591 225 1625
+rect 33 1585 225 1591
+rect -225 1517 -33 1523
+rect -225 1483 -213 1517
+rect -45 1483 -33 1517
+rect -225 1477 -33 1483
+rect 33 1517 225 1523
+rect 33 1483 45 1517
+rect 213 1483 225 1517
+rect 33 1477 225 1483
+rect -281 1424 -235 1436
+rect -281 648 -275 1424
+rect -241 648 -235 1424
+rect -281 636 -235 648
+rect -23 1424 23 1436
+rect -23 648 -17 1424
+rect 17 648 23 1424
+rect -23 636 23 648
+rect 235 1424 281 1436
+rect 235 648 241 1424
+rect 275 648 281 1424
+rect 235 636 281 648
+rect -225 589 -33 595
+rect -225 555 -213 589
+rect -45 555 -33 589
+rect -225 549 -33 555
+rect 33 589 225 595
+rect 33 555 45 589
+rect 213 555 225 589
+rect 33 549 225 555
+rect -225 481 -33 487
+rect -225 447 -213 481
+rect -45 447 -33 481
+rect -225 441 -33 447
+rect 33 481 225 487
+rect 33 447 45 481
+rect 213 447 225 481
+rect 33 441 225 447
+rect -281 388 -235 400
+rect -281 -388 -275 388
+rect -241 -388 -235 388
+rect -281 -400 -235 -388
+rect -23 388 23 400
+rect -23 -388 -17 388
+rect 17 -388 23 388
+rect -23 -400 23 -388
+rect 235 388 281 400
+rect 235 -388 241 388
+rect 275 -388 281 388
+rect 235 -400 281 -388
+rect -225 -447 -33 -441
+rect -225 -481 -213 -447
+rect -45 -481 -33 -447
+rect -225 -487 -33 -481
+rect 33 -447 225 -441
+rect 33 -481 45 -447
+rect 213 -481 225 -447
+rect 33 -487 225 -481
+rect -225 -555 -33 -549
+rect -225 -589 -213 -555
+rect -45 -589 -33 -555
+rect -225 -595 -33 -589
+rect 33 -555 225 -549
+rect 33 -589 45 -555
+rect 213 -589 225 -555
+rect 33 -595 225 -589
+rect -281 -648 -235 -636
+rect -281 -1424 -275 -648
+rect -241 -1424 -235 -648
+rect -281 -1436 -235 -1424
+rect -23 -648 23 -636
+rect -23 -1424 -17 -648
+rect 17 -1424 23 -648
+rect -23 -1436 23 -1424
+rect 235 -648 281 -636
+rect 235 -1424 241 -648
+rect 275 -1424 281 -648
+rect 235 -1436 281 -1424
+rect -225 -1483 -33 -1477
+rect -225 -1517 -213 -1483
+rect -45 -1517 -33 -1483
+rect -225 -1523 -33 -1517
+rect 33 -1483 225 -1477
+rect 33 -1517 45 -1483
+rect 213 -1517 225 -1483
+rect 33 -1523 225 -1517
+rect -225 -1591 -33 -1585
+rect -225 -1625 -213 -1591
+rect -45 -1625 -33 -1591
+rect -225 -1631 -33 -1625
+rect 33 -1591 225 -1585
+rect 33 -1625 45 -1591
+rect 213 -1625 225 -1591
+rect 33 -1631 225 -1625
+rect -281 -1684 -235 -1672
+rect -281 -2460 -275 -1684
+rect -241 -2460 -235 -1684
+rect -281 -2472 -235 -2460
+rect -23 -1684 23 -1672
+rect -23 -2460 -17 -1684
+rect 17 -2460 23 -1684
+rect -23 -2472 23 -2460
+rect 235 -1684 281 -1672
+rect 235 -2460 241 -1684
+rect 275 -2460 281 -1684
+rect 235 -2472 281 -2460
+rect -225 -2519 -33 -2513
+rect -225 -2553 -213 -2519
+rect -45 -2553 -33 -2519
+rect -225 -2559 -33 -2553
+rect 33 -2519 225 -2513
+rect 33 -2553 45 -2519
+rect 213 -2553 225 -2519
+rect 33 -2559 225 -2553
+<< properties >>
+string FIXED_BBOX -372 -2638 372 2638
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 4 l 1 m 5 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.ext b/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.ext
new file mode 100644
index 0000000..5d6b238
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.ext
@@ -0,0 +1,17 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_200_n50#" 381 0 200 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n258_n50#" 381 0 -258 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n200_n147#" 396 0 -200 -147 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 117600 1388 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "w_n396_n269#" 9864 1278.29 -396 -269 nw 0 0 0 0 426096 2660 0 0 76024 4472 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76024 4472 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n258_n50#" "w_n396_n269#" 58.8006
+cap "w_n396_n269#" "a_n200_n147#" 950.271
+cap "a_n258_n50#" "a_200_n50#" 16.0884
+cap "w_n396_n269#" "a_200_n50#" 58.8006
+device msubckt sky130_fd_pr__pfet_01v8 -200 -50 -199 -49 l=400 w=100 "w_n396_n269#" "a_n200_n147#" 800 0 "a_n258_n50#" 100 0 "a_200_n50#" 100 0
diff --git a/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.mag b/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.mag
new file mode 100644
index 0000000..3768010
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__pfet_01v8_QDYTZD.mag
@@ -0,0 +1,91 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -396 -269 396 269
+<< pmos >>
+rect -200 -50 200 50
+<< pdiff >>
+rect -258 38 -200 50
+rect -258 -38 -246 38
+rect -212 -38 -200 38
+rect -258 -50 -200 -38
+rect 200 38 258 50
+rect 200 -38 212 38
+rect 246 -38 258 38
+rect 200 -50 258 -38
+<< pdiffc >>
+rect -246 -38 -212 38
+rect 212 -38 246 38
+<< nsubdiff >>
+rect -360 199 -264 233
+rect 264 199 360 233
+rect -360 137 -326 199
+rect 326 137 360 199
+rect -360 -199 -326 -137
+rect 326 -199 360 -137
+rect -360 -233 -264 -199
+rect 264 -233 360 -199
+<< nsubdiffcont >>
+rect -264 199 264 233
+rect -360 -137 -326 137
+rect 326 -137 360 137
+rect -264 -233 264 -199
+<< poly >>
+rect -200 131 200 147
+rect -200 97 -184 131
+rect 184 97 200 131
+rect -200 50 200 97
+rect -200 -97 200 -50
+rect -200 -131 -184 -97
+rect 184 -131 200 -97
+rect -200 -147 200 -131
+<< polycont >>
+rect -184 97 184 131
+rect -184 -131 184 -97
+<< locali >>
+rect -360 199 -264 233
+rect 264 199 360 233
+rect -360 137 -326 199
+rect 326 137 360 199
+rect -200 97 -184 131
+rect 184 97 200 131
+rect -246 38 -212 54
+rect -246 -54 -212 -38
+rect 212 38 246 54
+rect 212 -54 246 -38
+rect -200 -131 -184 -97
+rect 184 -131 200 -97
+rect -360 -199 -326 -137
+rect 326 -199 360 -137
+rect -360 -233 -264 -199
+rect 264 -233 360 -199
+<< viali >>
+rect -184 97 184 131
+rect -246 -38 -212 38
+rect 212 -38 246 38
+rect -184 -131 184 -97
+<< metal1 >>
+rect -196 131 196 137
+rect -196 97 -184 131
+rect 184 97 196 131
+rect -196 91 196 97
+rect -252 38 -206 50
+rect -252 -38 -246 38
+rect -212 -38 -206 38
+rect -252 -50 -206 -38
+rect 206 38 252 50
+rect 206 -38 212 38
+rect 246 -38 252 38
+rect 206 -50 252 -38
+rect -196 -97 196 -91
+rect -196 -131 -184 -97
+rect 184 -131 196 -97
+rect -196 -137 196 -131
+<< properties >>
+string FIXED_BBOX -343 -216 343 216
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 0.5 l 2 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_8WDBUB.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_8WDBUB.mag
new file mode 100644
index 0000000..fe21cf0
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_8WDBUB.mag
@@ -0,0 +1,180 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645614240
+<< pwell >>
+rect -2692 -1598 2692 1598
+<< psubdiff >>
+rect -2656 1528 -2560 1562
+rect 2560 1528 2656 1562
+rect -2656 1466 -2622 1528
+rect 2622 1466 2656 1528
+rect -2656 -1528 -2622 -1466
+rect 2622 -1528 2656 -1466
+rect -2656 -1562 -2560 -1528
+rect 2560 -1562 2656 -1528
+<< psubdiffcont >>
+rect -2560 1528 2560 1562
+rect -2656 -1466 -2622 1466
+rect 2622 -1466 2656 1466
+rect -2560 -1562 2560 -1528
+<< xpolycontact >>
+rect -2526 1000 -2244 1432
+rect -2526 -1432 -2244 -1000
+rect -1996 1000 -1714 1432
+rect -1996 -1432 -1714 -1000
+rect -1466 1000 -1184 1432
+rect -1466 -1432 -1184 -1000
+rect -936 1000 -654 1432
+rect -936 -1432 -654 -1000
+rect -406 1000 -124 1432
+rect -406 -1432 -124 -1000
+rect 124 1000 406 1432
+rect 124 -1432 406 -1000
+rect 654 1000 936 1432
+rect 654 -1432 936 -1000
+rect 1184 1000 1466 1432
+rect 1184 -1432 1466 -1000
+rect 1714 1000 1996 1432
+rect 1714 -1432 1996 -1000
+rect 2244 1000 2526 1432
+rect 2244 -1432 2526 -1000
+<< xpolyres >>
+rect -2526 -1000 -2244 1000
+rect -1996 -1000 -1714 1000
+rect -1466 -1000 -1184 1000
+rect -936 -1000 -654 1000
+rect -406 -1000 -124 1000
+rect 124 -1000 406 1000
+rect 654 -1000 936 1000
+rect 1184 -1000 1466 1000
+rect 1714 -1000 1996 1000
+rect 2244 -1000 2526 1000
+<< locali >>
+rect -2656 1528 -2560 1562
+rect 2560 1528 2656 1562
+rect -2656 1466 -2622 1528
+rect 2622 1466 2656 1528
+rect -2656 -1528 -2622 -1466
+rect 2622 -1528 2656 -1466
+rect -2656 -1562 -2560 -1528
+rect 2560 -1562 2656 -1528
+<< viali >>
+rect -2510 1017 -2260 1414
+rect -1980 1017 -1730 1414
+rect -1450 1017 -1200 1414
+rect -920 1017 -670 1414
+rect -390 1017 -140 1414
+rect 140 1017 390 1414
+rect 670 1017 920 1414
+rect 1200 1017 1450 1414
+rect 1730 1017 1980 1414
+rect 2260 1017 2510 1414
+rect -2510 -1414 -2260 -1017
+rect -1980 -1414 -1730 -1017
+rect -1450 -1414 -1200 -1017
+rect -920 -1414 -670 -1017
+rect -390 -1414 -140 -1017
+rect 140 -1414 390 -1017
+rect 670 -1414 920 -1017
+rect 1200 -1414 1450 -1017
+rect 1730 -1414 1980 -1017
+rect 2260 -1414 2510 -1017
+<< metal1 >>
+rect -2516 1414 -2254 1426
+rect -2516 1017 -2510 1414
+rect -2260 1017 -2254 1414
+rect -2516 1005 -2254 1017
+rect -1986 1414 -1724 1426
+rect -1986 1017 -1980 1414
+rect -1730 1017 -1724 1414
+rect -1986 1005 -1724 1017
+rect -1456 1414 -1194 1426
+rect -1456 1017 -1450 1414
+rect -1200 1017 -1194 1414
+rect -1456 1005 -1194 1017
+rect -926 1414 -664 1426
+rect -926 1017 -920 1414
+rect -670 1017 -664 1414
+rect -926 1005 -664 1017
+rect -396 1414 -134 1426
+rect -396 1017 -390 1414
+rect -140 1017 -134 1414
+rect -396 1005 -134 1017
+rect 134 1414 396 1426
+rect 134 1017 140 1414
+rect 390 1017 396 1414
+rect 134 1005 396 1017
+rect 664 1414 926 1426
+rect 664 1017 670 1414
+rect 920 1017 926 1414
+rect 664 1005 926 1017
+rect 1194 1414 1456 1426
+rect 1194 1017 1200 1414
+rect 1450 1017 1456 1414
+rect 1194 1005 1456 1017
+rect 1724 1414 1986 1426
+rect 1724 1017 1730 1414
+rect 1980 1017 1986 1414
+rect 1724 1005 1986 1017
+rect 2254 1414 2516 1426
+rect 2254 1017 2260 1414
+rect 2510 1017 2516 1414
+rect 2254 1005 2516 1017
+rect -2516 -1017 -2254 -1005
+rect -2516 -1414 -2510 -1017
+rect -2260 -1414 -2254 -1017
+rect -2516 -1426 -2254 -1414
+rect -1986 -1017 -1724 -1005
+rect -1986 -1414 -1980 -1017
+rect -1730 -1414 -1724 -1017
+rect -1986 -1426 -1724 -1414
+rect -1456 -1017 -1194 -1005
+rect -1456 -1414 -1450 -1017
+rect -1200 -1414 -1194 -1017
+rect -1456 -1426 -1194 -1414
+rect -926 -1017 -664 -1005
+rect -926 -1414 -920 -1017
+rect -670 -1414 -664 -1017
+rect -926 -1426 -664 -1414
+rect -396 -1017 -134 -1005
+rect -396 -1414 -390 -1017
+rect -140 -1414 -134 -1017
+rect -396 -1426 -134 -1414
+rect 134 -1017 396 -1005
+rect 134 -1414 140 -1017
+rect 390 -1414 396 -1017
+rect 134 -1426 396 -1414
+rect 664 -1017 926 -1005
+rect 664 -1414 670 -1017
+rect 920 -1414 926 -1017
+rect 664 -1426 926 -1414
+rect 1194 -1017 1456 -1005
+rect 1194 -1414 1200 -1017
+rect 1450 -1414 1456 -1017
+rect 1194 -1426 1456 -1414
+rect 1724 -1017 1986 -1005
+rect 1724 -1414 1730 -1017
+rect 1980 -1414 1986 -1017
+rect 1724 -1426 1986 -1414
+rect 2254 -1017 2516 -1005
+rect 2254 -1414 2260 -1017
+rect 2510 -1414 2516 -1017
+rect 2254 -1426 2516 -1414
+<< res1p41 >>
+rect -2528 -1002 -2242 1002
+rect -1998 -1002 -1712 1002
+rect -1468 -1002 -1182 1002
+rect -938 -1002 -652 1002
+rect -408 -1002 -122 1002
+rect 122 -1002 408 1002
+rect 652 -1002 938 1002
+rect 1182 -1002 1468 1002
+rect 1712 -1002 1998 1002
+rect 2242 -1002 2528 1002
+<< properties >>
+string FIXED_BBOX -2639 -1545 2639 1545
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 1 nx 10 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.ext b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.ext
new file mode 100644
index 0000000..15ce3cc
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.ext
@@ -0,0 +1,59 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_1714_n1432#" 80 679.412 1714 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_1714_n1000#" 14184 0 1714 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_1714_1000#" 80 679.412 1714 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_1184_n1432#" 80 504.563 1184 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_1184_n1000#" 14184 0 1184 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_1184_1000#" 80 504.563 1184 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_654_n1432#" 80 504.563 654 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_654_n1000#" 14184 0 654 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_654_1000#" 80 504.563 654 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1432#" 80 504.563 124 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1000#" 14184 0 124 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_124_1000#" 80 504.563 124 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n406_n1432#" 80 504.563 -406 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n406_n1000#" 14184 0 -406 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n406_1000#" 80 504.563 -406 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n936_n1432#" 80 504.563 -936 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n936_n1000#" 14184 0 -936 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n936_1000#" 80 504.563 -936 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1466_n1432#" 80 504.563 -1466 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1466_n1000#" 14184 0 -1466 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n1466_1000#" 80 504.563 -1466 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1996_n1432#" 80 680.641 -1996 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1996_n1000#" 14184 0 -1996 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n1996_1000#" 80 680.641 -1996 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+substrate "a_n2126_n1562#" 0 0 -2126 -1562 ppd 0 0 0 0 0 0 0 0 0 0 496944 29232 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 496944 29232 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n1466_1000#" "a_n936_1000#" 155.514
+cap "a_1184_1000#" "a_1714_1000#" 155.514
+cap "a_1714_n1432#" "a_1184_n1432#" 155.514
+cap "a_n936_n1432#" "a_n406_n1432#" 155.514
+cap "a_124_1000#" "a_n406_1000#" 155.514
+cap "a_654_1000#" "a_1184_1000#" 155.514
+cap "a_654_n1432#" "a_1184_n1432#" 155.514
+cap "a_n936_1000#" "a_n406_1000#" 155.514
+cap "a_654_1000#" "a_124_1000#" 155.514
+cap "a_654_n1432#" "a_124_n1432#" 155.514
+cap "a_n1996_1000#" "a_n1466_1000#" 155.514
+cap "a_n406_n1432#" "a_124_n1432#" 155.514
+cap "a_n1466_n1432#" "a_n1996_n1432#" 155.514
+cap "a_n1466_n1432#" "a_n936_n1432#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 1714 -1000 1715 -999 l=2000 "a_n2126_n1562#" "a_1714_n1000#" 0 0 "a_1714_n1432#" 282 0 "a_1714_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 1184 -1000 1185 -999 l=2000 "a_n2126_n1562#" "a_1184_n1000#" 0 0 "a_1184_n1432#" 282 0 "a_1184_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 654 -1000 655 -999 l=2000 "a_n2126_n1562#" "a_654_n1000#" 0 0 "a_654_n1432#" 282 0 "a_654_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 124 -1000 125 -999 l=2000 "a_n2126_n1562#" "a_124_n1000#" 0 0 "a_124_n1432#" 282 0 "a_124_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -406 -1000 -405 -999 l=2000 "a_n2126_n1562#" "a_n406_n1000#" 0 0 "a_n406_n1432#" 282 0 "a_n406_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -936 -1000 -935 -999 l=2000 "a_n2126_n1562#" "a_n936_n1000#" 0 0 "a_n936_n1432#" 282 0 "a_n936_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -1466 -1000 -1465 -999 l=2000 "a_n2126_n1562#" "a_n1466_n1000#" 0 0 "a_n1466_n1432#" 282 0 "a_n1466_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -1996 -1000 -1995 -999 l=2000 "a_n2126_n1562#" "a_n1996_n1000#" 0 0 "a_n1996_n1432#" 282 0 "a_n1996_1000#" 282 0
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.mag
new file mode 100644
index 0000000..86fd59f
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_BQY2W7.mag
@@ -0,0 +1,152 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -2162 -1598 2162 1598
+<< psubdiff >>
+rect -2126 1528 -2030 1562
+rect 2030 1528 2126 1562
+rect -2126 1466 -2092 1528
+rect 2092 1466 2126 1528
+rect -2126 -1528 -2092 -1466
+rect 2092 -1528 2126 -1466
+rect -2126 -1562 -2030 -1528
+rect 2030 -1562 2126 -1528
+<< psubdiffcont >>
+rect -2030 1528 2030 1562
+rect -2126 -1466 -2092 1466
+rect 2092 -1466 2126 1466
+rect -2030 -1562 2030 -1528
+<< xpolycontact >>
+rect -1996 1000 -1714 1432
+rect -1996 -1432 -1714 -1000
+rect -1466 1000 -1184 1432
+rect -1466 -1432 -1184 -1000
+rect -936 1000 -654 1432
+rect -936 -1432 -654 -1000
+rect -406 1000 -124 1432
+rect -406 -1432 -124 -1000
+rect 124 1000 406 1432
+rect 124 -1432 406 -1000
+rect 654 1000 936 1432
+rect 654 -1432 936 -1000
+rect 1184 1000 1466 1432
+rect 1184 -1432 1466 -1000
+rect 1714 1000 1996 1432
+rect 1714 -1432 1996 -1000
+<< xpolyres >>
+rect -1996 -1000 -1714 1000
+rect -1466 -1000 -1184 1000
+rect -936 -1000 -654 1000
+rect -406 -1000 -124 1000
+rect 124 -1000 406 1000
+rect 654 -1000 936 1000
+rect 1184 -1000 1466 1000
+rect 1714 -1000 1996 1000
+<< locali >>
+rect -2126 1528 -2030 1562
+rect 2030 1528 2126 1562
+rect -2126 1466 -2092 1528
+rect 2092 1466 2126 1528
+rect -2126 -1528 -2092 -1466
+rect 2092 -1528 2126 -1466
+rect -2126 -1562 -2030 -1528
+rect 2030 -1562 2126 -1528
+<< viali >>
+rect -1980 1017 -1730 1414
+rect -1450 1017 -1200 1414
+rect -920 1017 -670 1414
+rect -390 1017 -140 1414
+rect 140 1017 390 1414
+rect 670 1017 920 1414
+rect 1200 1017 1450 1414
+rect 1730 1017 1980 1414
+rect -1980 -1414 -1730 -1017
+rect -1450 -1414 -1200 -1017
+rect -920 -1414 -670 -1017
+rect -390 -1414 -140 -1017
+rect 140 -1414 390 -1017
+rect 670 -1414 920 -1017
+rect 1200 -1414 1450 -1017
+rect 1730 -1414 1980 -1017
+<< metal1 >>
+rect -1986 1414 -1724 1426
+rect -1986 1017 -1980 1414
+rect -1730 1017 -1724 1414
+rect -1986 1005 -1724 1017
+rect -1456 1414 -1194 1426
+rect -1456 1017 -1450 1414
+rect -1200 1017 -1194 1414
+rect -1456 1005 -1194 1017
+rect -926 1414 -664 1426
+rect -926 1017 -920 1414
+rect -670 1017 -664 1414
+rect -926 1005 -664 1017
+rect -396 1414 -134 1426
+rect -396 1017 -390 1414
+rect -140 1017 -134 1414
+rect -396 1005 -134 1017
+rect 134 1414 396 1426
+rect 134 1017 140 1414
+rect 390 1017 396 1414
+rect 134 1005 396 1017
+rect 664 1414 926 1426
+rect 664 1017 670 1414
+rect 920 1017 926 1414
+rect 664 1005 926 1017
+rect 1194 1414 1456 1426
+rect 1194 1017 1200 1414
+rect 1450 1017 1456 1414
+rect 1194 1005 1456 1017
+rect 1724 1414 1986 1426
+rect 1724 1017 1730 1414
+rect 1980 1017 1986 1414
+rect 1724 1005 1986 1017
+rect -1986 -1017 -1724 -1005
+rect -1986 -1414 -1980 -1017
+rect -1730 -1414 -1724 -1017
+rect -1986 -1426 -1724 -1414
+rect -1456 -1017 -1194 -1005
+rect -1456 -1414 -1450 -1017
+rect -1200 -1414 -1194 -1017
+rect -1456 -1426 -1194 -1414
+rect -926 -1017 -664 -1005
+rect -926 -1414 -920 -1017
+rect -670 -1414 -664 -1017
+rect -926 -1426 -664 -1414
+rect -396 -1017 -134 -1005
+rect -396 -1414 -390 -1017
+rect -140 -1414 -134 -1017
+rect -396 -1426 -134 -1414
+rect 134 -1017 396 -1005
+rect 134 -1414 140 -1017
+rect 390 -1414 396 -1017
+rect 134 -1426 396 -1414
+rect 664 -1017 926 -1005
+rect 664 -1414 670 -1017
+rect 920 -1414 926 -1017
+rect 664 -1426 926 -1414
+rect 1194 -1017 1456 -1005
+rect 1194 -1414 1200 -1017
+rect 1450 -1414 1456 -1017
+rect 1194 -1426 1456 -1414
+rect 1724 -1017 1986 -1005
+rect 1724 -1414 1730 -1017
+rect 1980 -1414 1986 -1017
+rect 1724 -1426 1986 -1414
+<< res1p41 >>
+rect -1998 -1002 -1712 1002
+rect -1468 -1002 -1182 1002
+rect -938 -1002 -652 1002
+rect -408 -1002 -122 1002
+rect 122 -1002 408 1002
+rect 652 -1002 938 1002
+rect 1182 -1002 1468 1002
+rect 1712 -1002 1998 1002
+<< properties >>
+string FIXED_BBOX -2109 -1545 2109 1545
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 1 nx 8 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.ext b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.ext
new file mode 100644
index 0000000..df95e59
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.ext
@@ -0,0 +1,23 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_124_n1432#" 80 679.412 124 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1000#" 14184 0 124 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_124_1000#" 80 679.412 124 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n406_n1432#" 80 680.641 -406 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n406_n1000#" 14184 0 -406 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n406_1000#" 80 680.641 -406 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+substrate "a_n536_n1562#" 0 0 -536 -1562 ppd 0 0 0 0 0 0 0 0 0 0 280704 16512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 280704 16512 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n406_1000#" "a_124_1000#" 155.514
+cap "a_124_n1432#" "a_n406_n1432#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 124 -1000 125 -999 l=2000 "a_n536_n1562#" "a_124_n1000#" 0 0 "a_124_n1432#" 282 0 "a_124_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -406 -1000 -405 -999 l=2000 "a_n536_n1562#" "a_n406_n1000#" 0 0 "a_n406_n1432#" 282 0 "a_n406_1000#" 282 0
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.mag
new file mode 100644
index 0000000..f37e9f0
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_J2NVFM.mag
@@ -0,0 +1,68 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -572 -1598 572 1598
+<< psubdiff >>
+rect -536 1528 -440 1562
+rect 440 1528 536 1562
+rect -536 1466 -502 1528
+rect 502 1466 536 1528
+rect -536 -1528 -502 -1466
+rect 502 -1528 536 -1466
+rect -536 -1562 -440 -1528
+rect 440 -1562 536 -1528
+<< psubdiffcont >>
+rect -440 1528 440 1562
+rect -536 -1466 -502 1466
+rect 502 -1466 536 1466
+rect -440 -1562 440 -1528
+<< xpolycontact >>
+rect -406 1000 -124 1432
+rect -406 -1432 -124 -1000
+rect 124 1000 406 1432
+rect 124 -1432 406 -1000
+<< xpolyres >>
+rect -406 -1000 -124 1000
+rect 124 -1000 406 1000
+<< locali >>
+rect -536 1528 -440 1562
+rect 440 1528 536 1562
+rect -536 1466 -502 1528
+rect 502 1466 536 1528
+rect -536 -1528 -502 -1466
+rect 502 -1528 536 -1466
+rect -536 -1562 -440 -1528
+rect 440 -1562 536 -1528
+<< viali >>
+rect -390 1017 -140 1414
+rect 140 1017 390 1414
+rect -390 -1414 -140 -1017
+rect 140 -1414 390 -1017
+<< metal1 >>
+rect -396 1414 -134 1426
+rect -396 1017 -390 1414
+rect -140 1017 -134 1414
+rect -396 1005 -134 1017
+rect 134 1414 396 1426
+rect 134 1017 140 1414
+rect 390 1017 396 1414
+rect 134 1005 396 1017
+rect -396 -1017 -134 -1005
+rect -396 -1414 -390 -1017
+rect -140 -1414 -134 -1017
+rect -396 -1426 -134 -1414
+rect 134 -1017 396 -1005
+rect 134 -1414 140 -1017
+rect 390 -1414 396 -1017
+rect 134 -1426 396 -1414
+<< res1p41 >>
+rect -408 -1002 -122 1002
+rect 122 -1002 408 1002
+<< properties >>
+string FIXED_BBOX -519 -1545 519 1545
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 1 nx 2 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.ext b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.ext
new file mode 100644
index 0000000..f382b32
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.ext
@@ -0,0 +1,41 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_919_n1432#" 80 679.412 919 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_919_n1000#" 14184 0 919 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_919_1000#" 80 679.412 919 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_389_n1432#" 80 504.563 389 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_389_n1000#" 14184 0 389 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_389_1000#" 80 504.563 389 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n141_n1432#" 80 504.563 -141 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n141_n1000#" 14184 0 -141 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n141_1000#" 80 504.563 -141 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n671_n1432#" 80 504.563 -671 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n671_n1000#" 14184 0 -671 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n671_1000#" 80 504.563 -671 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1201_n1432#" 80 680.641 -1201 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+node "a_n1201_n1000#" 14184 0 -1201 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 564000 4564 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n1201_1000#" 80 680.641 -1201 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243648 2856 110302 1366 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1331_n1562#" 0 0 -1331 -1562 ppd 0 0 0 0 0 0 0 0 0 0 388824 22872 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 388824 22872 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n141_n1432#" "a_n671_n1432#" 155.514
+cap "a_389_n1432#" "a_919_n1432#" 155.514
+cap "a_n1201_n1432#" "a_n671_n1432#" 155.514
+cap "a_n141_n1432#" "a_389_n1432#" 155.514
+cap "a_n141_1000#" "a_389_1000#" 155.514
+cap "a_919_1000#" "a_389_1000#" 155.514
+cap "a_n141_1000#" "a_n671_1000#" 155.514
+cap "a_n671_1000#" "a_n1201_1000#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 919 -1000 920 -999 l=2000 "a_n1331_n1562#" "a_919_n1000#" 0 0 "a_919_n1432#" 282 0 "a_919_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 389 -1000 390 -999 l=2000 "a_n1331_n1562#" "a_389_n1000#" 0 0 "a_389_n1432#" 282 0 "a_389_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -141 -1000 -140 -999 l=2000 "a_n1331_n1562#" "a_n141_n1000#" 0 0 "a_n141_n1432#" 282 0 "a_n141_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -671 -1000 -670 -999 l=2000 "a_n1331_n1562#" "a_n671_n1000#" 0 0 "a_n671_n1432#" 282 0 "a_n671_1000#" 282 0
+device rsubckt sky130_fd_pr__res_xhigh_po_1p41 -1201 -1000 -1200 -999 l=2000 "a_n1331_n1562#" "a_n1201_n1000#" 0 0 "a_n1201_n1432#" 282 0 "a_n1201_1000#" 282 0
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.mag
new file mode 100644
index 0000000..bd368fb
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM.mag
@@ -0,0 +1,110 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -1367 -1598 1367 1598
+<< psubdiff >>
+rect -1331 1528 -1235 1562
+rect 1235 1528 1331 1562
+rect -1331 1466 -1297 1528
+rect 1297 1466 1331 1528
+rect -1331 -1528 -1297 -1466
+rect 1297 -1528 1331 -1466
+rect -1331 -1562 -1235 -1528
+rect 1235 -1562 1331 -1528
+<< psubdiffcont >>
+rect -1235 1528 1235 1562
+rect -1331 -1466 -1297 1466
+rect 1297 -1466 1331 1466
+rect -1235 -1562 1235 -1528
+<< xpolycontact >>
+rect -1201 1000 -919 1432
+rect -1201 -1432 -919 -1000
+rect -671 1000 -389 1432
+rect -671 -1432 -389 -1000
+rect -141 1000 141 1432
+rect -141 -1432 141 -1000
+rect 389 1000 671 1432
+rect 389 -1432 671 -1000
+rect 919 1000 1201 1432
+rect 919 -1432 1201 -1000
+<< xpolyres >>
+rect -1201 -1000 -919 1000
+rect -671 -1000 -389 1000
+rect -141 -1000 141 1000
+rect 389 -1000 671 1000
+rect 919 -1000 1201 1000
+<< locali >>
+rect -1331 1528 -1235 1562
+rect 1235 1528 1331 1562
+rect -1331 1466 -1297 1528
+rect 1297 1466 1331 1528
+rect -1331 -1528 -1297 -1466
+rect 1297 -1528 1331 -1466
+rect -1331 -1562 -1235 -1528
+rect 1235 -1562 1331 -1528
+<< viali >>
+rect -1185 1017 -935 1414
+rect -655 1017 -405 1414
+rect -125 1017 125 1414
+rect 405 1017 655 1414
+rect 935 1017 1185 1414
+rect -1185 -1414 -935 -1017
+rect -655 -1414 -405 -1017
+rect -125 -1414 125 -1017
+rect 405 -1414 655 -1017
+rect 935 -1414 1185 -1017
+<< metal1 >>
+rect -1191 1414 -929 1426
+rect -1191 1017 -1185 1414
+rect -935 1017 -929 1414
+rect -1191 1005 -929 1017
+rect -661 1414 -399 1426
+rect -661 1017 -655 1414
+rect -405 1017 -399 1414
+rect -661 1005 -399 1017
+rect -131 1414 131 1426
+rect -131 1017 -125 1414
+rect 125 1017 131 1414
+rect -131 1005 131 1017
+rect 399 1414 661 1426
+rect 399 1017 405 1414
+rect 655 1017 661 1414
+rect 399 1005 661 1017
+rect 929 1414 1191 1426
+rect 929 1017 935 1414
+rect 1185 1017 1191 1414
+rect 929 1005 1191 1017
+rect -1191 -1017 -929 -1005
+rect -1191 -1414 -1185 -1017
+rect -935 -1414 -929 -1017
+rect -1191 -1426 -929 -1414
+rect -661 -1017 -399 -1005
+rect -661 -1414 -655 -1017
+rect -405 -1414 -399 -1017
+rect -661 -1426 -399 -1414
+rect -131 -1017 131 -1005
+rect -131 -1414 -125 -1017
+rect 125 -1414 131 -1017
+rect -131 -1426 131 -1414
+rect 399 -1017 661 -1005
+rect 399 -1414 405 -1017
+rect 655 -1414 661 -1017
+rect 399 -1426 661 -1414
+rect 929 -1017 1191 -1005
+rect 929 -1414 935 -1017
+rect 1185 -1414 1191 -1017
+rect 929 -1426 1191 -1414
+<< res1p41 >>
+rect -1203 -1002 -917 1002
+rect -673 -1002 -387 1002
+rect -143 -1002 143 1002
+rect 387 -1002 673 1002
+rect 917 -1002 1203 1002
+<< properties >>
+string FIXED_BBOX -1314 -1545 1314 1545
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 1 nx 5 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAZH5M.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAZH5M.mag
new file mode 100644
index 0000000..aa51e48
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JAZH5M.mag
@@ -0,0 +1,54 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645462850
+<< pwell >>
+rect -307 -1598 307 1598
+<< psubdiff >>
+rect -271 1528 -175 1562
+rect 175 1528 271 1562
+rect -271 1466 -237 1528
+rect 237 1466 271 1528
+rect -271 -1528 -237 -1466
+rect 237 -1528 271 -1466
+rect -271 -1562 -175 -1528
+rect 175 -1562 271 -1528
+<< psubdiffcont >>
+rect -175 1528 175 1562
+rect -271 -1466 -237 1466
+rect 237 -1466 271 1466
+rect -175 -1562 175 -1528
+<< xpolycontact >>
+rect -141 1000 141 1432
+rect -141 -1432 141 -1000
+<< xpolyres >>
+rect -141 -1000 141 1000
+<< locali >>
+rect -271 1528 -175 1562
+rect 175 1528 271 1562
+rect -271 1466 -237 1528
+rect 237 1466 271 1528
+rect -271 -1528 -237 -1466
+rect 237 -1528 271 -1466
+rect -271 -1562 -175 -1528
+rect 175 -1562 271 -1528
+<< viali >>
+rect -125 1017 125 1414
+rect -125 -1414 125 -1017
+<< metal1 >>
+rect -131 1414 131 1426
+rect -131 1017 -125 1414
+rect 125 1017 131 1414
+rect -131 1005 131 1017
+rect -131 -1017 131 -1005
+rect -131 -1414 -125 -1017
+rect 125 -1414 131 -1017
+rect -131 -1426 131 -1414
+<< res1p41 >>
+rect -143 -1002 143 1002
+<< properties >>
+string FIXED_BBOX -254 -1545 254 1545
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 1 nx 1 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JJ44ZS.mag b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JJ44ZS.mag
new file mode 100644
index 0000000..6ad8f7a
--- /dev/null
+++ b/mag/isource/sky130_fd_pr__res_xhigh_po_1p41_JJ44ZS.mag
@@ -0,0 +1,273 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645462850
+<< error_p >>
+rect -1996 52 -1714 196
+rect -1466 52 -1184 196
+rect -936 52 -654 196
+rect -406 52 -124 196
+rect 124 52 406 196
+rect 654 52 936 196
+rect 1184 52 1466 196
+rect 1714 52 1996 196
+<< pwell >>
+rect -2162 -3082 2162 3082
+<< psubdiff >>
+rect -2126 3012 -2030 3046
+rect 2030 3012 2126 3046
+rect -2126 2950 -2092 3012
+rect 2092 2950 2126 3012
+rect -2126 -3012 -2092 -2950
+rect 2092 -3012 2126 -2950
+rect -2126 -3046 -2030 -3012
+rect 2030 -3046 2126 -3012
+<< psubdiffcont >>
+rect -2030 3012 2030 3046
+rect -2126 -2950 -2092 2950
+rect 2092 -2950 2126 2950
+rect -2030 -3046 2030 -3012
+<< xpolycontact >>
+rect -1996 2484 -1714 2916
+rect -1996 52 -1714 484
+rect -1466 2484 -1184 2916
+rect -1466 52 -1184 484
+rect -936 2484 -654 2916
+rect -936 52 -654 484
+rect -406 2484 -124 2916
+rect -406 52 -124 484
+rect 124 2484 406 2916
+rect 124 52 406 484
+rect 654 2484 936 2916
+rect 654 52 936 484
+rect 1184 2484 1466 2916
+rect 1184 52 1466 484
+rect 1714 2484 1996 2916
+rect 1714 52 1996 484
+rect -1996 -484 -1714 -52
+rect -1996 -2916 -1714 -2484
+rect -1466 -484 -1184 -52
+rect -1466 -2916 -1184 -2484
+rect -936 -484 -654 -52
+rect -936 -2916 -654 -2484
+rect -406 -484 -124 -52
+rect -406 -2916 -124 -2484
+rect 124 -484 406 -52
+rect 124 -2916 406 -2484
+rect 654 -484 936 -52
+rect 654 -2916 936 -2484
+rect 1184 -484 1466 -52
+rect 1184 -2916 1466 -2484
+rect 1714 -484 1996 -52
+rect 1714 -2916 1996 -2484
+<< xpolyres >>
+rect -1996 484 -1714 2484
+rect -1466 484 -1184 2484
+rect -936 484 -654 2484
+rect -406 484 -124 2484
+rect 124 484 406 2484
+rect 654 484 936 2484
+rect 1184 484 1466 2484
+rect 1714 484 1996 2484
+rect -1996 -2484 -1714 -484
+rect -1466 -2484 -1184 -484
+rect -936 -2484 -654 -484
+rect -406 -2484 -124 -484
+rect 124 -2484 406 -484
+rect 654 -2484 936 -484
+rect 1184 -2484 1466 -484
+rect 1714 -2484 1996 -484
+<< locali >>
+rect -2126 3012 -2030 3046
+rect 2030 3012 2126 3046
+rect -2126 2950 -2092 3012
+rect 2092 2950 2126 3012
+rect -2126 -3012 -2092 -2950
+rect 2092 -3012 2126 -2950
+rect -2126 -3046 -2030 -3012
+rect 2030 -3046 2126 -3012
+<< viali >>
+rect -1980 2501 -1730 2898
+rect -1450 2501 -1200 2898
+rect -920 2501 -670 2898
+rect -390 2501 -140 2898
+rect 140 2501 390 2898
+rect 670 2501 920 2898
+rect 1200 2501 1450 2898
+rect 1730 2501 1980 2898
+rect -1980 70 -1730 467
+rect -1450 70 -1200 467
+rect -920 70 -670 467
+rect -390 70 -140 467
+rect 140 70 390 467
+rect 670 70 920 467
+rect 1200 70 1450 467
+rect 1730 70 1980 467
+rect -1980 -467 -1730 -70
+rect -1450 -467 -1200 -70
+rect -920 -467 -670 -70
+rect -390 -467 -140 -70
+rect 140 -467 390 -70
+rect 670 -467 920 -70
+rect 1200 -467 1450 -70
+rect 1730 -467 1980 -70
+rect -1980 -2898 -1730 -2501
+rect -1450 -2898 -1200 -2501
+rect -920 -2898 -670 -2501
+rect -390 -2898 -140 -2501
+rect 140 -2898 390 -2501
+rect 670 -2898 920 -2501
+rect 1200 -2898 1450 -2501
+rect 1730 -2898 1980 -2501
+<< metal1 >>
+rect -1986 2898 -1724 2910
+rect -1986 2501 -1980 2898
+rect -1730 2501 -1724 2898
+rect -1986 2489 -1724 2501
+rect -1456 2898 -1194 2910
+rect -1456 2501 -1450 2898
+rect -1200 2501 -1194 2898
+rect -1456 2489 -1194 2501
+rect -926 2898 -664 2910
+rect -926 2501 -920 2898
+rect -670 2501 -664 2898
+rect -926 2489 -664 2501
+rect -396 2898 -134 2910
+rect -396 2501 -390 2898
+rect -140 2501 -134 2898
+rect -396 2489 -134 2501
+rect 134 2898 396 2910
+rect 134 2501 140 2898
+rect 390 2501 396 2898
+rect 134 2489 396 2501
+rect 664 2898 926 2910
+rect 664 2501 670 2898
+rect 920 2501 926 2898
+rect 664 2489 926 2501
+rect 1194 2898 1456 2910
+rect 1194 2501 1200 2898
+rect 1450 2501 1456 2898
+rect 1194 2489 1456 2501
+rect 1724 2898 1986 2910
+rect 1724 2501 1730 2898
+rect 1980 2501 1986 2898
+rect 1724 2489 1986 2501
+rect -1986 467 -1724 479
+rect -1986 70 -1980 467
+rect -1730 70 -1724 467
+rect -1986 58 -1724 70
+rect -1456 467 -1194 479
+rect -1456 70 -1450 467
+rect -1200 70 -1194 467
+rect -1456 58 -1194 70
+rect -926 467 -664 479
+rect -926 70 -920 467
+rect -670 70 -664 467
+rect -926 58 -664 70
+rect -396 467 -134 479
+rect -396 70 -390 467
+rect -140 70 -134 467
+rect -396 58 -134 70
+rect 134 467 396 479
+rect 134 70 140 467
+rect 390 70 396 467
+rect 134 58 396 70
+rect 664 467 926 479
+rect 664 70 670 467
+rect 920 70 926 467
+rect 664 58 926 70
+rect 1194 467 1456 479
+rect 1194 70 1200 467
+rect 1450 70 1456 467
+rect 1194 58 1456 70
+rect 1724 467 1986 479
+rect 1724 70 1730 467
+rect 1980 70 1986 467
+rect 1724 58 1986 70
+rect -1986 -70 -1724 -58
+rect -1986 -467 -1980 -70
+rect -1730 -467 -1724 -70
+rect -1986 -479 -1724 -467
+rect -1456 -70 -1194 -58
+rect -1456 -467 -1450 -70
+rect -1200 -467 -1194 -70
+rect -1456 -479 -1194 -467
+rect -926 -70 -664 -58
+rect -926 -467 -920 -70
+rect -670 -467 -664 -70
+rect -926 -479 -664 -467
+rect -396 -70 -134 -58
+rect -396 -467 -390 -70
+rect -140 -467 -134 -70
+rect -396 -479 -134 -467
+rect 134 -70 396 -58
+rect 134 -467 140 -70
+rect 390 -467 396 -70
+rect 134 -479 396 -467
+rect 664 -70 926 -58
+rect 664 -467 670 -70
+rect 920 -467 926 -70
+rect 664 -479 926 -467
+rect 1194 -70 1456 -58
+rect 1194 -467 1200 -70
+rect 1450 -467 1456 -70
+rect 1194 -479 1456 -467
+rect 1724 -70 1986 -58
+rect 1724 -467 1730 -70
+rect 1980 -467 1986 -70
+rect 1724 -479 1986 -467
+rect -1986 -2501 -1724 -2489
+rect -1986 -2898 -1980 -2501
+rect -1730 -2898 -1724 -2501
+rect -1986 -2910 -1724 -2898
+rect -1456 -2501 -1194 -2489
+rect -1456 -2898 -1450 -2501
+rect -1200 -2898 -1194 -2501
+rect -1456 -2910 -1194 -2898
+rect -926 -2501 -664 -2489
+rect -926 -2898 -920 -2501
+rect -670 -2898 -664 -2501
+rect -926 -2910 -664 -2898
+rect -396 -2501 -134 -2489
+rect -396 -2898 -390 -2501
+rect -140 -2898 -134 -2501
+rect -396 -2910 -134 -2898
+rect 134 -2501 396 -2489
+rect 134 -2898 140 -2501
+rect 390 -2898 396 -2501
+rect 134 -2910 396 -2898
+rect 664 -2501 926 -2489
+rect 664 -2898 670 -2501
+rect 920 -2898 926 -2501
+rect 664 -2910 926 -2898
+rect 1194 -2501 1456 -2489
+rect 1194 -2898 1200 -2501
+rect 1450 -2898 1456 -2501
+rect 1194 -2910 1456 -2898
+rect 1724 -2501 1986 -2489
+rect 1724 -2898 1730 -2501
+rect 1980 -2898 1986 -2501
+rect 1724 -2910 1986 -2898
+<< res1p41 >>
+rect -1998 482 -1712 2486
+rect -1468 482 -1182 2486
+rect -938 482 -652 2486
+rect -408 482 -122 2486
+rect 122 482 408 2486
+rect 652 482 938 2486
+rect 1182 482 1468 2486
+rect 1712 482 1998 2486
+rect -1998 -2486 -1712 -482
+rect -1468 -2486 -1182 -482
+rect -938 -2486 -652 -482
+rect -408 -2486 -122 -482
+rect 122 -2486 408 -482
+rect 652 -2486 938 -482
+rect 1182 -2486 1468 -482
+rect 1712 -2486 1998 -482
+<< properties >>
+string FIXED_BBOX -2109 -3029 2109 3029
+string gencell sky130_fd_pr__res_xhigh_po_1p41
+string library sky130
+string parameters w 1.410 l 10 m 2 nx 8 wmin 1.410 lmin 0.50 rho 2000 val 14.451k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 1.410 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/isource/test_low_pvt_source.spice b/mag/isource/test_low_pvt_source.spice
new file mode 100644
index 0000000..0088370
--- /dev/null
+++ b/mag/isource/test_low_pvt_source.spice
@@ -0,0 +1,99 @@
+** sch_path: /home/simon/code/asic/analog/test/test_low_pvt_source.sch
+**.subckt test_low_pvt_source
+V2 VDD GND 1.8
+V1 VDD V_iout 0
+xisource V_iout VDD GND isource_flat
+I0 V_iout V_iout 10u
+**** begin user architecture code
+
+
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+set ITL1=10000
+
+let min_temp=0
+let var_temp = min_temp
+let max_temp=100
+let temp_step=100
+
+option temp=20
+op
+write test_low_pvt_source.raw
+print var_temp i(v1)
+*  i(v.xisource.v1)
+run
+reset
+
+
+
+dowhile var_temp <= max_temp
+	option temp=$&var_temp
+	op
+	* wrdata 'result_{$&var_temp}deg.csv' v(V_vout)
+	let var_temp = var_temp + temp_step
+	run
+	echo 'Result will follow ...'
+	print var_temp  i(v1)
+	* i(v.xisource.v1)
+	if i(v.xisource.v1) > 1e-6
+		echo 'Large current'
+		write 'result_op_{$&var_temp}deg.raw'
+	end
+	*tran 100n 100u
+	*MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+	reset
+end
+
+* reset
+* option temp=0
+* op
+* run
+* print v(v_vout) i(v1)
+* let var_vout_0deg=v(v_vout)
+* reset
+* option temp=100
+* op
+* run
+* print v(v_vout) i(v1)
+* let var_vout_100deg=v(v_vout)
+
+* print var_vout_100deg-var_vout_0deg
+
+* tran 100n 100u
+* plot i(v.xisource.v1)
+* MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+* noise i(v1) I0 dec 1000 10 100G
+* print all
+* wrdata result_noise.csv inoise_total onoise_total
+* setplot noise1
+* plot onoise_spectrum
+* noise i(v1) I0 dec 1000 2MEG 2G
+* print all
+* wrdata result_noise.csv inoise_total onoise_total
+* setplot noise3
+* plot onoise_spectrum
+
+
+.endc
+
+
+
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include pex_isource.spice
+
+
+
+* .lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice hl
+.lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+
+**** end user architecture code
+**.ends
diff --git a/mag/isource/test_low_pvt_source_mc.spice b/mag/isource/test_low_pvt_source_mc.spice
new file mode 100644
index 0000000..95d4074
--- /dev/null
+++ b/mag/isource/test_low_pvt_source_mc.spice
@@ -0,0 +1,166 @@
+** sch_path: /home/simon/code/asic/analog/test/test_low_pvt_source_mc.sch
+**.subckt test_low_pvt_source_mc
+VB VDD GND #UB#
+V0 VDD V_iout_0 0
+xisource  V_iout_0 VDD GND isource_flat
+I0 V_iout_0 V_iout_0 10u
+**** begin user architecture code
+
+
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+set model="#model#"
+let mc_runs=100
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=3
+	dowhile var_temp <= max_temp
+		option temp=$&var_temp
+		wrdata 'result_op_op_{$&var_temp}deg_{$&mc_runNo}.csv' i(V0)
+		op
+		run
+		if i(V0) > 1.3E-5
+			echo 'Large current'
+*			print i(v.xisource.v1) i(V0)
+*			write 'result_op_high_{$&var_temp}deg_{$&mc_runNo}_{$&i(v.xisource.v1)}.raw'
+		end
+		if i(V0) < 0.7E-5
+			echo 'Large current'
+*			print i(v.xisource.v1) i(V0)
+*			write 'result_op_low_{$&var_temp}deg_{$&mc_runNo}_{$&i(v.xisource.v1)}.raw'
+		end
+*
+*		tran 100n 100u
+*		MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+*		wrdata 'result_tran_{$&var_temp}deg_{$&mc_runNo}.csv' isource
+		run
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1
+	reset
+end
+
+.endc
+
+
+
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+* .include bandgap.spice
+.include ../../../pex_isource.spice
+
+
+
+.lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice #model#
+* .lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.#model#.red #model#
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+
+**** end user architecture code
+**.ends
+
+* expanding   symbol:  /home/simon/code/asic/analog/bias/low_pvt_source.sym # of pins=3
+** sym_path: /home/simon/code/asic/analog/bias/low_pvt_source.sym
+** sch_path: /home/simon/code/asic/analog/bias/low_pvt_source.sch
+.subckt low_pvt_source  VP I_ref VN
+*.iopin VP
+*.opin I_ref
+*.iopin VN
+XM1 VM1D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM2 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=30 m=30
+XM5 VM9D VM8D VM1D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=65 m=65
+XM12 VM12D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM16D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM17 VM8D VM8D VM16D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM18 VM18D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*3*2 m=10*3*2
+XM19 VM14D VM8D VM18D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*3*2 m=2*3*2
+XM20 VM20D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*1*1 m=10*1*1
+XM21 VM22D VM8D VM20D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*1*1 m=2*1*1
+XM22 VM22D VM4S VM3D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM3 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM4 I_ref VM22D VM4S VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM48 VM50D VM11D VP VP sky130_fd_pr__pfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM50 VM50D VM11D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC3 VP VM8D sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XM8 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM9 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM10 VM8D VM50D VN VN sky130_fd_pr__nfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XC1 VP VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=10
+XC2 VP VN sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XC4 VP VN sky130_fd_pr__cap_mim_m3_2 W=20 L=20 MF=1 m=1
+XR7 net3 VM4S VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR3 net4 net3 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR4 net2 net4 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR5 net1 net2 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR6 VN net1 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR8 net5 VM12G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR1 net5 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR2 net7 net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR9 VN net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR10 net11 net7 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR11 net12 net11 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR12 net8 net12 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR13 net10 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR14 net9 net10 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR15 net8 net9 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+.ends
+
+.GLOBAL VDD
+.GLOBAL GND
+.end
diff --git a/mag/lvds/.magicrc b/mag/lvds/.magicrc
new file mode 120000
index 0000000..d7f5712
--- /dev/null
+++ b/mag/lvds/.magicrc
@@ -0,0 +1 @@
+../.magicrc
\ No newline at end of file
diff --git a/mag/lvds/comp.out b/mag/lvds/comp.out
new file mode 100644
index 0000000..b39c808
--- /dev/null
+++ b/mag/lvds/comp.out
@@ -0,0 +1,105 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+
+Class sky130_fd_sc_hs__inv_16 (0):  Merged 30 parallel devices.
+Class sky130_fd_sc_hs__inv_16 (1):  Merged 30 parallel devices.
+Subcircuit summary:
+Circuit 1: sky130_fd_sc_hs__inv_16         |Circuit 2: sky130_fd_sc_hs__inv_16         
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__pfet_01v8 (16->1)            |sky130_fd_pr__pfet_01v8 (16->1)            
+sky130_fd_pr__nfet_01v8_lvt (16->1)        |sky130_fd_pr__nfet_01v8_lvt (16->1)        
+Number of devices: 2                       |Number of devices: 2                       
+Number of nets: 6                          |Number of nets: 6                          
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: sky130_fd_sc_hs__inv_16         |Circuit 2: sky130_fd_sc_hs__inv_16         
+-------------------------------------------|-------------------------------------------
+Y                                          |Y                                          
+A                                          |A                                          
+VPWR                                       |VPWR                                       
+VPB                                        |VPB                                        
+VGND                                       |VGND                                       
+VNB                                        |VNB                                        
+---------------------------------------------------------------------------------------
+Cell pin lists are equivalent.
+Device classes sky130_fd_sc_hs__inv_16 and sky130_fd_sc_hs__inv_16 are equivalent.
+
+Class sky130_fd_sc_hs__inv_4 (0):  Merged 6 parallel devices.
+Class sky130_fd_sc_hs__inv_4 (1):  Merged 6 parallel devices.
+Subcircuit summary:
+Circuit 1: sky130_fd_sc_hs__inv_4          |Circuit 2: sky130_fd_sc_hs__inv_4          
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (4->1)         |sky130_fd_pr__nfet_01v8_lvt (4->1)         
+sky130_fd_pr__pfet_01v8 (4->1)             |sky130_fd_pr__pfet_01v8 (4->1)             
+Number of devices: 2                       |Number of devices: 2                       
+Number of nets: 6                          |Number of nets: 6                          
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+
+Subcircuit pins:
+Circuit 1: sky130_fd_sc_hs__inv_4          |Circuit 2: sky130_fd_sc_hs__inv_4          
+-------------------------------------------|-------------------------------------------
+Y                                          |Y                                          
+A                                          |A                                          
+VPWR                                       |VPWR                                       
+VPB                                        |VPB                                        
+VGND                                       |VGND                                       
+VNB                                        |VNB                                        
+---------------------------------------------------------------------------------------
+Cell pin lists are equivalent.
+Device classes sky130_fd_sc_hs__inv_4 and sky130_fd_sc_hs__inv_4 are equivalent.
+Flattening unmatched subcell lvds_currm_n in circuit transmitter.spice (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_HR8DH9 in circuit transmitter.spice (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_XZXALN in circuit transmitter.spice (1)(32 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL in circuit transmitter.spice (1)(3 instances)
+Flattening unmatched subcell sky130_fd_pr__res_xhigh_po_0p35_RS2YEK in circuit transmitter.spice (1)(1 instance)
+Flattening unmatched subcell lvds_currm_p in circuit transmitter.spice (1)(31 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_8DK6RJ in circuit transmitter.spice (1)(31 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_9Z5L4S in circuit transmitter.spice (1)(31 instances)
+Flattening unmatched subcell lvds_switch_p in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_VCB4SW in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_1_N3PKNJ in circuit transmitter.spice (1)(1 instance)
+Flattening unmatched subcell lvds_nswitch in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_RE4MKQ in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__cap_mim_m3_2_LJ5JLG in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell lvds_diffamp in circuit transmitter.spice (1)(2 instances)
+Flattening unmatched subcell sky130_fd_pr__nfet_01v8_lvt_ZHX6G9 in circuit transmitter.spice (1)(2 instances)
+
+Class ../../analog/test/transmitter.spice (0):  Merged 1 parallel devices.
+Class transmitter.spice (1):  Merged 4463 parallel devices.
+Class transmitter.spice (1):  Merged 5 series devices.
+Subcircuit summary:
+Circuit 1: ../../analog/test/transmitter.s |Circuit 2: transmitter.spice               
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__res_xhigh_po_0p35 (4)        |sky130_fd_pr__res_xhigh_po_0p35 (9->4)     
+sky130_fd_pr__pfet_01v8 (2412->8)          |sky130_fd_pr__pfet_01v8 (2412->8)          
+sky130_fd_pr__nfet_01v8 (1920->6)          |sky130_fd_pr__nfet_01v8 (1920->6)          
+sky130_fd_pr__nfet_01v8_lvt (148->4)       |sky130_fd_pr__nfet_01v8_lvt (148->4)       
+sky130_fd_pr__cap_mim_m3_1 (1)             |sky130_fd_pr__cap_mim_m3_1 (1)             
+sky130_fd_sc_hs__inv_16 (10)               |sky130_fd_sc_hs__inv_16 (10)               
+sky130_fd_sc_hs__inv_4 (2)                 |sky130_fd_sc_hs__inv_4 (2)                 
+sky130_fd_pr__cap_mim_m3_2 (2->1)          |sky130_fd_pr__cap_mim_m3_2 (2->1)          
+Number of devices: 36                      |Number of devices: 36                      
+Number of nets: 25                         |Number of nets: 25                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match with 2 symmetries.
+Circuits match correctly.
+There were property errors.
+sky130_fd_pr__cap_mim_m3_2:C1 vs. sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/sky130_fd_pr__cap_mim_m3_2:0:
+Property VM in circuit1 has no matching property in circuit2
+Cells have no pins;  pin matching not needed.
+Device classes ../../analog/test/transmitter.spice and transmitter.spice are equivalent.
+Circuits match uniquely.
+Property errors were found.
+The following cells had property errors:
+ ../../analog/test/transmitter.spice
diff --git a/mag/lvds/lvds_currm_n.ext b/mag/lvds/lvds_currm_n.ext
new file mode 100644
index 0000000..be7cad3
--- /dev/null
+++ b/mag/lvds/lvds_currm_n.ext
@@ -0,0 +1,200 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_XZXALN sky130_fd_pr__nfet_01v8_XZXALN_0 1 0 593 0 1 1547
+use sky130_fd_pr__nfet_01v8_HR8DH9 sky130_fd_pr__nfet_01v8_HR8DH9_0 1 0 725 0 1 -190
+node "m1_n20_420#" 24 2573.32 -20 420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 442816 17000 2219996 17028 1701650 6230 0 0 0 0 0 0
+node "m1_76_644#" 19 1493.19 76 644 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312576 12000 1081044 12812 1421200 5620 0 0 0 0 0 0
+node "li_n10_n580#" 104 1029.16 -10 -580 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23800 960 122984 4604 313408 4524 0 0 0 0 0 0 0 0
+node "li_42_n462#" 514 13.838 42 -462 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_42_48#" 514 0.691789 42 48 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n110_170#" 447 2551.43 -110 170 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 840300 11140 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_42_n468#" 1431 735.732 42 -468 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62836 2824 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_42_42#" 1433 472.334 42 42 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62928 2828 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_32_332#" 10856 7190.78 32 332 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 592416 19008 0 0 305184 18496 1136664 39064 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_n20_420#" "a_32_332#" 10032.3
+cap "a_32_332#" "li_42_48#" 260.751
+cap "m1_76_644#" "m1_n20_420#" 8657.49
+cap "li_n10_n580#" "a_32_332#" 1883.14
+cap "li_42_48#" "li_42_n462#" 80.3529
+cap "li_n10_n580#" "li_42_n462#" 143.5
+cap "m1_n20_420#" "li_n110_170#" 1558.22
+cap "a_32_332#" "a_42_n468#" 190.189
+cap "li_n110_170#" "li_42_48#" 459.131
+cap "a_42_n468#" "li_42_n462#" 564.978
+cap "li_n10_n580#" "li_n110_170#" 107.273
+cap "a_32_332#" "li_42_n462#" 449.333
+cap "a_42_42#" "li_42_48#" 299.939
+cap "m1_76_644#" "a_32_332#" 6577.71
+cap "a_32_332#" "li_n110_170#" 2346.54
+cap "a_42_42#" "a_42_n468#" 50.0474
+cap "li_n10_n580#" "m1_n20_420#" 736.981
+cap "a_32_332#" "a_42_42#" 224.932
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" 1087.1
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#" 300.795
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" 1031.22
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#" -42
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 644.961
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#" 1576.29
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" -2252.92
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 104.034
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#" -20.5586
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" -66.2844
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 3.91295
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" 435.237
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" 3348.19
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" 1225.81
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 2360.44
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 151.556
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" -49.0243
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" -1.13243e-13
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" -44.4342
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" 411.723
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.329184
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 904.318
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1661.15
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" 459.066
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" -42
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.329184
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" -35
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" -20.7638
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 5.08848
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 71.2552
+cap "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" -23.1943
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_443_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_207_n200#" 8668.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6361280 -16252 8722404 -3108 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n29_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n265_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n265_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n501_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n501_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_679_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_679_n200#" "li_n10_n580#"
+merge "li_n10_n580#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n737_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n737_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "VSUBS"
+merge "VSUBS" "li_n110_170#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_616_n288#" "li_42_n462#" -399941 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -104695362 -21312 0 0 -39379818 -14400 -131341038 -14976 0 0 0 0 0 0 0 0 0 0
+merge "li_42_n462#" "a_42_n468#"
+merge "a_42_n468#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_498_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_498_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_380_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_380_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_262_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_262_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_144_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_144_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_26_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_26_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n92_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n92_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n210_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n210_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n328_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n328_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n446_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n446_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n564_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n564_n288#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n682_n288#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n682_n288#" "li_42_48#"
+merge "li_42_48#" "a_42_42#"
+merge "a_42_42#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n1215#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n1215#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_n705#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_n705#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_n597#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_n597#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n87#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n87#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_21#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_21#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_531#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_531#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_399_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_303_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_207_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_15_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n81_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n273_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n369_1149#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_639#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n465_639#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_1149#" "a_32_332#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_561_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_325_n200#" 20407.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35824108 -15096 -6427008 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_325_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_89_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_89_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n147_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n147_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n383_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n383_n200#" "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#"
+merge "sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_351_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "m1_n20_420#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_727#" 26084.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42483240 -10656 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_727#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n509#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n509#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_255_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_63_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#"
+merge "sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_109#" "m1_76_644#"
diff --git a/mag/lvds/lvds_currm_n.mag b/mag/lvds/lvds_currm_n.mag
new file mode 100644
index 0000000..3affbf7
--- /dev/null
+++ b/mag/lvds/lvds_currm_n.mag
@@ -0,0 +1,843 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< pwell >>
+rect 32 2696 1154 2762
+rect 32 2186 1154 2252
+rect 32 2078 1154 2144
+rect 86 1906 1100 2066
+rect 32 1568 1154 1634
+rect 32 1460 1154 1526
+rect 32 950 1154 1016
+rect 32 842 1154 908
+rect 32 332 1154 398
+rect 42 42 1410 88
+rect 42 -468 1408 -422
+<< poly >>
+rect 32 2746 1154 2762
+rect 32 2712 144 2746
+rect 178 2712 336 2746
+rect 370 2712 528 2746
+rect 562 2712 720 2746
+rect 754 2712 912 2746
+rect 946 2712 1104 2746
+rect 1138 2712 1154 2746
+rect 32 2696 1154 2712
+rect 32 2236 1154 2252
+rect 32 2202 48 2236
+rect 82 2202 240 2236
+rect 274 2202 432 2236
+rect 466 2202 624 2236
+rect 658 2202 816 2236
+rect 850 2202 1008 2236
+rect 1042 2202 1154 2236
+rect 32 2186 1154 2202
+rect 32 2128 1154 2144
+rect 32 2094 48 2128
+rect 82 2094 240 2128
+rect 274 2094 432 2128
+rect 466 2094 624 2128
+rect 658 2094 816 2128
+rect 850 2094 1008 2128
+rect 1042 2094 1154 2128
+rect 32 2078 1154 2094
+rect 32 1618 1154 1634
+rect 32 1584 144 1618
+rect 178 1584 336 1618
+rect 370 1584 528 1618
+rect 562 1584 720 1618
+rect 754 1584 912 1618
+rect 946 1584 1104 1618
+rect 1138 1584 1154 1618
+rect 32 1568 1154 1584
+rect 32 1510 1154 1526
+rect 32 1476 144 1510
+rect 178 1476 336 1510
+rect 370 1476 528 1510
+rect 562 1476 720 1510
+rect 754 1476 912 1510
+rect 946 1476 1104 1510
+rect 1138 1476 1154 1510
+rect 32 1460 1154 1476
+rect 32 1000 1154 1016
+rect 32 966 48 1000
+rect 82 966 240 1000
+rect 274 966 432 1000
+rect 466 966 624 1000
+rect 658 966 816 1000
+rect 850 966 1008 1000
+rect 1042 966 1154 1000
+rect 32 950 1154 966
+rect 32 892 1154 908
+rect 32 858 48 892
+rect 82 858 240 892
+rect 274 858 432 892
+rect 466 858 624 892
+rect 658 858 816 892
+rect 850 858 1008 892
+rect 1042 858 1154 892
+rect 32 842 1154 858
+rect 32 382 1154 398
+rect 32 348 144 382
+rect 178 348 336 382
+rect 370 348 528 382
+rect 562 348 720 382
+rect 754 348 912 382
+rect 946 348 1104 382
+rect 1138 348 1154 382
+rect 32 332 1154 348
+rect 42 42 1410 88
+rect 42 -468 1408 -422
+<< polycont >>
+rect 144 2712 178 2746
+rect 336 2712 370 2746
+rect 528 2712 562 2746
+rect 720 2712 754 2746
+rect 912 2712 946 2746
+rect 1104 2712 1138 2746
+rect 48 2202 82 2236
+rect 240 2202 274 2236
+rect 432 2202 466 2236
+rect 624 2202 658 2236
+rect 816 2202 850 2236
+rect 1008 2202 1042 2236
+rect 48 2094 82 2128
+rect 240 2094 274 2128
+rect 432 2094 466 2128
+rect 624 2094 658 2128
+rect 816 2094 850 2128
+rect 1008 2094 1042 2128
+rect 144 1584 178 1618
+rect 336 1584 370 1618
+rect 528 1584 562 1618
+rect 720 1584 754 1618
+rect 912 1584 946 1618
+rect 1104 1584 1138 1618
+rect 144 1476 178 1510
+rect 336 1476 370 1510
+rect 528 1476 562 1510
+rect 720 1476 754 1510
+rect 912 1476 946 1510
+rect 1104 1476 1138 1510
+rect 48 966 82 1000
+rect 240 966 274 1000
+rect 432 966 466 1000
+rect 624 966 658 1000
+rect 816 966 850 1000
+rect 1008 966 1042 1000
+rect 48 858 82 892
+rect 240 858 274 892
+rect 432 858 466 892
+rect 624 858 658 892
+rect 816 858 850 892
+rect 1008 858 1042 892
+rect 144 348 178 382
+rect 336 348 370 382
+rect 528 348 562 382
+rect 720 348 754 382
+rect 912 348 946 382
+rect 1104 348 1138 382
+<< locali >>
+rect 32 2712 144 2746
+rect 178 2712 336 2746
+rect 370 2712 528 2746
+rect 562 2712 720 2746
+rect 754 2712 912 2746
+rect 946 2712 1104 2746
+rect 1138 2712 1154 2746
+rect 32 2202 48 2236
+rect 82 2202 240 2236
+rect 274 2202 432 2236
+rect 466 2202 624 2236
+rect 658 2202 816 2236
+rect 850 2202 1008 2236
+rect 1042 2202 1154 2236
+rect 32 2094 48 2128
+rect 82 2094 240 2128
+rect 274 2094 432 2128
+rect 466 2094 624 2128
+rect 658 2094 816 2128
+rect 850 2094 1008 2128
+rect 1042 2094 1154 2128
+rect 32 1584 144 1618
+rect 178 1584 336 1618
+rect 370 1584 528 1618
+rect 562 1584 720 1618
+rect 754 1584 912 1618
+rect 946 1584 1104 1618
+rect 1138 1584 1154 1618
+rect 32 1476 144 1510
+rect 178 1476 336 1510
+rect 370 1476 528 1510
+rect 562 1476 720 1510
+rect 754 1476 912 1510
+rect 946 1476 1104 1510
+rect 1138 1476 1154 1510
+rect 32 966 48 1000
+rect 82 966 240 1000
+rect 274 966 432 1000
+rect 466 966 624 1000
+rect 658 966 816 1000
+rect 850 966 1008 1000
+rect 1042 966 1154 1000
+rect 32 858 48 892
+rect 82 858 240 892
+rect 274 858 432 892
+rect 466 858 624 892
+rect 658 858 816 892
+rect 850 858 1008 892
+rect 1042 858 1154 892
+rect 32 348 144 382
+rect 178 348 336 382
+rect 370 348 528 382
+rect 562 348 720 382
+rect 754 348 912 382
+rect 946 348 1104 382
+rect 1138 348 1154 382
+rect 1290 260 1520 2840
+rect -110 170 1520 260
+rect -100 10 -60 170
+rect 1290 160 1520 170
+rect 42 48 1408 82
+rect 1500 10 1550 160
+rect -100 -390 10 10
+rect 1450 -390 1550 10
+rect 42 -462 1408 -428
+<< viali >>
+rect 144 2712 178 2746
+rect 336 2712 370 2746
+rect 528 2712 562 2746
+rect 720 2712 754 2746
+rect 912 2712 946 2746
+rect 1104 2712 1138 2746
+rect 48 2202 82 2236
+rect 240 2202 274 2236
+rect 432 2202 466 2236
+rect 624 2202 658 2236
+rect 816 2202 850 2236
+rect 1008 2202 1042 2236
+rect 48 2094 82 2128
+rect 240 2094 274 2128
+rect 432 2094 466 2128
+rect 624 2094 658 2128
+rect 816 2094 850 2128
+rect 1008 2094 1042 2128
+rect 144 1584 178 1618
+rect 336 1584 370 1618
+rect 528 1584 562 1618
+rect 720 1584 754 1618
+rect 912 1584 946 1618
+rect 1104 1584 1138 1618
+rect 144 1476 178 1510
+rect 336 1476 370 1510
+rect 528 1476 562 1510
+rect 720 1476 754 1510
+rect 912 1476 946 1510
+rect 1104 1476 1138 1510
+rect 48 966 82 1000
+rect 240 966 274 1000
+rect 432 966 466 1000
+rect 624 966 658 1000
+rect 816 966 850 1000
+rect 1008 966 1042 1000
+rect 48 858 82 892
+rect 240 858 274 892
+rect 432 858 466 892
+rect 624 858 658 892
+rect 816 858 850 892
+rect 1008 858 1042 892
+rect 144 348 178 382
+rect 336 348 370 382
+rect 528 348 562 382
+rect 720 348 754 382
+rect 912 348 946 382
+rect 1104 348 1138 382
+rect -10 -580 160 -510
+rect 1280 -580 1450 -510
+<< metal1 >>
+rect -120 2746 1310 2760
+rect -120 2712 144 2746
+rect 178 2712 336 2746
+rect 370 2712 528 2746
+rect 562 2712 720 2746
+rect 754 2712 912 2746
+rect 946 2712 1104 2746
+rect 1138 2712 1310 2746
+rect -120 2710 1310 2712
+rect -120 2240 -50 2710
+rect 32 2706 1154 2710
+rect 76 2498 86 2674
+rect 140 2498 150 2674
+rect 268 2498 278 2674
+rect 332 2498 342 2674
+rect 460 2498 470 2674
+rect 524 2498 534 2674
+rect 652 2498 662 2674
+rect 716 2498 726 2674
+rect 844 2498 854 2674
+rect 908 2498 918 2674
+rect 1036 2498 1046 2674
+rect 1100 2498 1110 2674
+rect -20 2274 -10 2450
+rect 44 2274 54 2450
+rect 172 2274 182 2450
+rect 236 2274 246 2450
+rect 364 2274 374 2450
+rect 428 2274 438 2450
+rect 556 2274 566 2450
+rect 620 2274 630 2450
+rect 748 2274 758 2450
+rect 812 2274 822 2450
+rect 940 2274 950 2450
+rect 1004 2274 1014 2450
+rect 1132 2274 1142 2450
+rect 1196 2274 1206 2450
+rect 32 2240 1154 2242
+rect 1240 2240 1310 2710
+rect -120 2236 1310 2240
+rect -120 2202 48 2236
+rect 82 2202 240 2236
+rect 274 2202 432 2236
+rect 466 2202 624 2236
+rect 658 2202 816 2236
+rect 850 2202 1008 2236
+rect 1042 2202 1310 2236
+rect -120 2190 1310 2202
+rect -120 2140 -50 2190
+rect 1240 2140 1310 2190
+rect -120 2128 1310 2140
+rect -120 2094 48 2128
+rect 82 2094 240 2128
+rect 274 2094 432 2128
+rect 466 2094 624 2128
+rect 658 2094 816 2128
+rect 850 2094 1008 2128
+rect 1042 2094 1310 2128
+rect -120 2090 1310 2094
+rect -120 1620 -50 2090
+rect 32 2088 1154 2090
+rect 76 1880 86 2056
+rect 140 1880 150 2056
+rect 268 1880 278 2056
+rect 332 1880 342 2056
+rect 460 1880 470 2056
+rect 524 1880 534 2056
+rect 652 1880 662 2056
+rect 716 1880 726 2056
+rect 844 1880 854 2056
+rect 908 1880 918 2056
+rect 1036 1880 1046 2056
+rect 1100 1880 1110 2056
+rect -20 1656 -10 1832
+rect 44 1656 54 1832
+rect 172 1656 182 1832
+rect 236 1656 246 1832
+rect 364 1656 374 1832
+rect 428 1656 438 1832
+rect 556 1656 566 1832
+rect 620 1656 630 1832
+rect 748 1656 758 1832
+rect 812 1656 822 1832
+rect 940 1656 950 1832
+rect 1004 1656 1014 1832
+rect 1132 1656 1142 1832
+rect 1196 1656 1206 1832
+rect 32 1620 1154 1624
+rect 1240 1620 1310 2090
+rect -120 1618 1310 1620
+rect -120 1584 144 1618
+rect 178 1584 336 1618
+rect 370 1584 528 1618
+rect 562 1584 720 1618
+rect 754 1584 912 1618
+rect 946 1584 1104 1618
+rect 1138 1584 1310 1618
+rect -120 1570 1310 1584
+rect -120 1520 -50 1570
+rect 1240 1520 1310 1570
+rect -120 1510 1310 1520
+rect -120 1476 144 1510
+rect 178 1476 336 1510
+rect 370 1476 528 1510
+rect 562 1476 720 1510
+rect 754 1476 912 1510
+rect 946 1476 1104 1510
+rect 1138 1476 1310 1510
+rect -120 1470 1310 1476
+rect -120 1010 -50 1470
+rect 76 1262 86 1438
+rect 140 1262 150 1438
+rect 268 1262 278 1438
+rect 332 1262 342 1438
+rect 460 1262 470 1438
+rect 524 1262 534 1438
+rect 652 1262 662 1438
+rect 716 1262 726 1438
+rect 844 1262 854 1438
+rect 908 1262 918 1438
+rect 1036 1262 1046 1438
+rect 1100 1262 1110 1438
+rect -20 1038 -10 1214
+rect 44 1038 54 1214
+rect 172 1038 182 1214
+rect 236 1038 246 1214
+rect 364 1038 374 1214
+rect 428 1038 438 1214
+rect 556 1038 566 1214
+rect 620 1038 630 1214
+rect 748 1038 758 1214
+rect 812 1038 822 1214
+rect 940 1038 950 1214
+rect 1004 1038 1014 1214
+rect 1132 1038 1142 1214
+rect 1196 1038 1206 1214
+rect 1240 1010 1310 1470
+rect -120 1000 1310 1010
+rect -120 966 48 1000
+rect 82 966 240 1000
+rect 274 966 432 1000
+rect 466 966 624 1000
+rect 658 966 816 1000
+rect 850 966 1008 1000
+rect 1042 966 1310 1000
+rect -120 960 1310 966
+rect -120 900 -50 960
+rect 1240 900 1310 960
+rect -120 892 1310 900
+rect -120 858 48 892
+rect 82 858 240 892
+rect 274 858 432 892
+rect 466 858 624 892
+rect 658 858 816 892
+rect 850 858 1008 892
+rect 1042 858 1310 892
+rect -120 850 1310 858
+rect -120 390 -50 850
+rect 76 644 86 820
+rect 140 644 150 820
+rect 268 644 278 820
+rect 332 644 342 820
+rect 460 644 470 820
+rect 524 644 534 820
+rect 652 644 662 820
+rect 716 644 726 820
+rect 844 644 854 820
+rect 908 644 918 820
+rect 1036 644 1046 820
+rect 1100 644 1110 820
+rect -20 420 -10 596
+rect 44 420 54 596
+rect 172 420 182 596
+rect 236 420 246 596
+rect 364 420 374 596
+rect 428 420 438 596
+rect 556 420 566 596
+rect 620 420 630 596
+rect 748 420 758 596
+rect 812 420 822 596
+rect 940 420 950 596
+rect 1004 420 1014 596
+rect 1132 420 1142 596
+rect 1196 420 1206 596
+rect 1240 390 1310 850
+rect -120 382 1310 390
+rect -120 348 144 382
+rect 178 348 336 382
+rect 370 348 528 382
+rect 562 348 720 382
+rect 754 348 912 382
+rect 946 348 1104 382
+rect 1138 348 1310 382
+rect -120 340 1310 348
+rect -120 90 -50 340
+rect 1240 90 1310 340
+rect -120 40 1570 90
+rect -120 -420 -50 40
+rect 98 -166 108 10
+rect 162 -166 172 10
+rect 334 -166 344 10
+rect 398 -166 408 10
+rect 570 -166 580 10
+rect 634 -166 644 10
+rect 806 -166 816 10
+rect 870 -166 880 10
+rect 1042 -166 1052 10
+rect 1106 -166 1116 10
+rect 1278 -166 1288 10
+rect 1342 -166 1352 10
+rect -20 -390 -10 -214
+rect 44 -390 54 -214
+rect 216 -390 226 -214
+rect 280 -390 290 -214
+rect 452 -390 462 -214
+rect 516 -390 526 -214
+rect 688 -390 698 -214
+rect 752 -390 762 -214
+rect 924 -390 934 -214
+rect 988 -390 998 -214
+rect 1160 -390 1170 -214
+rect 1224 -390 1234 -214
+rect 1396 -390 1406 -214
+rect 1460 -390 1470 -214
+rect 1500 -420 1570 40
+rect -120 -470 1570 -420
+rect -22 -510 172 -504
+rect -22 -580 -10 -510
+rect 160 -580 172 -510
+rect -22 -586 172 -580
+rect 1268 -510 1462 -504
+rect 1268 -580 1280 -510
+rect 1450 -580 1462 -510
+rect 1268 -586 1462 -580
+<< via1 >>
+rect 86 2498 140 2674
+rect 278 2498 332 2674
+rect 470 2498 524 2674
+rect 662 2498 716 2674
+rect 854 2498 908 2674
+rect 1046 2498 1100 2674
+rect -10 2274 44 2450
+rect 182 2274 236 2450
+rect 374 2274 428 2450
+rect 566 2274 620 2450
+rect 758 2274 812 2450
+rect 950 2274 1004 2450
+rect 1142 2274 1196 2450
+rect 86 1880 140 2056
+rect 278 1880 332 2056
+rect 470 1880 524 2056
+rect 662 1880 716 2056
+rect 854 1880 908 2056
+rect 1046 1880 1100 2056
+rect -10 1656 44 1832
+rect 182 1656 236 1832
+rect 374 1656 428 1832
+rect 566 1656 620 1832
+rect 758 1656 812 1832
+rect 950 1656 1004 1832
+rect 1142 1656 1196 1832
+rect 86 1262 140 1438
+rect 278 1262 332 1438
+rect 470 1262 524 1438
+rect 662 1262 716 1438
+rect 854 1262 908 1438
+rect 1046 1262 1100 1438
+rect -10 1038 44 1214
+rect 182 1038 236 1214
+rect 374 1038 428 1214
+rect 566 1038 620 1214
+rect 758 1038 812 1214
+rect 950 1038 1004 1214
+rect 1142 1038 1196 1214
+rect 86 644 140 820
+rect 278 644 332 820
+rect 470 644 524 820
+rect 662 644 716 820
+rect 854 644 908 820
+rect 1046 644 1100 820
+rect -10 420 44 596
+rect 182 420 236 596
+rect 374 420 428 596
+rect 566 420 620 596
+rect 758 420 812 596
+rect 950 420 1004 596
+rect 1142 420 1196 596
+rect 108 -166 162 10
+rect 344 -166 398 10
+rect 580 -166 634 10
+rect 816 -166 870 10
+rect 1052 -166 1106 10
+rect 1288 -166 1342 10
+rect -10 -390 44 -214
+rect 226 -390 280 -214
+rect 462 -390 516 -214
+rect 698 -390 752 -214
+rect 934 -390 988 -214
+rect 1170 -390 1224 -214
+rect 1406 -390 1460 -214
+rect -10 -580 160 -510
+rect 1280 -580 1450 -510
+<< metal2 >>
+rect -70 2700 1100 2740
+rect 620 2674 1100 2700
+rect 620 2540 662 2674
+rect -70 2520 86 2540
+rect 140 2520 278 2540
+rect 86 2488 140 2498
+rect 332 2520 470 2540
+rect 278 2488 332 2498
+rect 524 2520 662 2540
+rect 470 2488 524 2498
+rect 716 2520 854 2674
+rect 662 2488 716 2498
+rect 908 2520 1046 2674
+rect 854 2488 908 2498
+rect 1046 2488 1100 2498
+rect -10 2450 44 2460
+rect 182 2450 236 2460
+rect 44 2274 182 2424
+rect 374 2450 428 2460
+rect 236 2274 374 2424
+rect 566 2450 620 2460
+rect 428 2274 566 2424
+rect 758 2450 812 2460
+rect 730 2424 758 2430
+rect 620 2420 758 2424
+rect 950 2450 1004 2460
+rect 812 2420 950 2430
+rect 1142 2450 1196 2460
+rect 1004 2420 1142 2430
+rect 1196 2420 1460 2430
+rect 620 2274 730 2420
+rect -10 2260 730 2274
+rect -10 2170 1460 2260
+rect -70 2080 1100 2130
+rect 620 2056 1100 2080
+rect 620 1920 662 2056
+rect -70 1910 86 1920
+rect 140 1906 278 1920
+rect 86 1870 140 1880
+rect 332 1906 470 1920
+rect 278 1870 332 1880
+rect 524 1906 662 1920
+rect 470 1870 524 1880
+rect 716 1906 854 2056
+rect 662 1870 716 1880
+rect 908 1906 1046 2056
+rect 854 1870 908 1880
+rect 1046 1870 1100 1880
+rect -10 1832 44 1842
+rect 182 1832 236 1842
+rect 44 1656 182 1810
+rect 374 1832 428 1842
+rect 236 1656 374 1810
+rect 566 1832 620 1842
+rect 428 1656 566 1810
+rect 758 1832 812 1842
+rect 620 1800 758 1810
+rect 950 1832 1004 1842
+rect 812 1800 950 1810
+rect 1142 1832 1196 1842
+rect 1004 1800 1142 1810
+rect 1196 1800 1460 1810
+rect 620 1656 730 1800
+rect -10 1640 730 1656
+rect -10 1560 1460 1640
+rect -70 1460 1100 1510
+rect 620 1438 1100 1460
+rect 620 1300 662 1438
+rect -70 1290 86 1300
+rect 140 1288 278 1300
+rect 86 1252 140 1262
+rect 332 1288 470 1300
+rect 278 1252 332 1262
+rect 524 1288 662 1300
+rect 470 1252 524 1262
+rect 716 1288 854 1438
+rect 662 1252 716 1262
+rect 908 1288 1046 1438
+rect 854 1252 908 1262
+rect 1046 1252 1100 1262
+rect -10 1214 44 1224
+rect 182 1214 236 1224
+rect 44 1038 182 1190
+rect 374 1214 428 1224
+rect 236 1038 374 1190
+rect 566 1214 620 1224
+rect 428 1038 566 1190
+rect 758 1214 812 1224
+rect 620 1180 758 1190
+rect 950 1214 1004 1224
+rect 812 1180 950 1190
+rect 1142 1214 1196 1224
+rect 1004 1180 1142 1190
+rect 1196 1180 1460 1190
+rect 620 1038 730 1180
+rect -10 1020 730 1038
+rect -10 940 1460 1020
+rect -70 840 1100 890
+rect 620 820 1100 840
+rect 620 680 662 820
+rect -70 670 86 680
+rect 140 670 278 680
+rect 86 634 140 644
+rect 332 670 470 680
+rect 278 634 332 644
+rect 524 670 662 680
+rect 470 634 524 644
+rect 716 670 854 820
+rect 662 634 716 644
+rect 908 670 1046 820
+rect 854 634 908 644
+rect 1046 634 1100 644
+rect -10 596 44 606
+rect 182 596 236 606
+rect 44 420 182 570
+rect 374 596 428 606
+rect 236 420 374 570
+rect 566 596 620 606
+rect 428 420 566 570
+rect 758 596 812 606
+rect 620 560 758 570
+rect 950 596 1004 606
+rect 812 560 950 570
+rect 1142 596 1196 606
+rect 1004 560 1142 570
+rect 1196 560 1460 570
+rect 620 420 730 560
+rect -10 130 730 420
+rect -10 10 1460 130
+rect -10 -140 108 10
+rect 162 -140 344 10
+rect 108 -176 162 -166
+rect 398 -140 580 10
+rect 344 -176 398 -166
+rect 634 -140 816 10
+rect 810 -150 816 -140
+rect 580 -176 634 -166
+rect 870 -140 1052 10
+rect 870 -150 880 -140
+rect 1040 -150 1052 -140
+rect 816 -176 870 -166
+rect 1106 -140 1288 10
+rect 1106 -150 1120 -140
+rect 1280 -150 1288 -140
+rect 1052 -176 1106 -166
+rect 1342 -140 1460 10
+rect 1342 -150 1360 -140
+rect 1288 -176 1342 -166
+rect -10 -214 44 -204
+rect 226 -214 280 -204
+rect 44 -390 226 -240
+rect 462 -214 516 -204
+rect 280 -390 462 -240
+rect 698 -214 752 -204
+rect 516 -390 698 -240
+rect 934 -214 988 -204
+rect 752 -390 934 -240
+rect 1170 -214 1224 -204
+rect 988 -390 1170 -240
+rect 1406 -214 1460 -204
+rect 1224 -390 1406 -240
+rect -10 -400 1460 -390
+rect -10 -510 160 -400
+rect -10 -590 160 -580
+rect 1280 -510 1450 -400
+rect 1280 -590 1450 -580
+<< via2 >>
+rect -70 2674 620 2700
+rect -70 2540 86 2674
+rect 86 2540 140 2674
+rect 140 2540 278 2674
+rect 278 2540 332 2674
+rect 332 2540 470 2674
+rect 470 2540 524 2674
+rect 524 2540 620 2674
+rect 730 2274 758 2420
+rect 758 2274 812 2420
+rect 812 2274 950 2420
+rect 950 2274 1004 2420
+rect 1004 2274 1142 2420
+rect 1142 2274 1196 2420
+rect 1196 2274 1460 2420
+rect 730 2260 1460 2274
+rect -70 2056 620 2080
+rect -70 1920 86 2056
+rect 86 1920 140 2056
+rect 140 1920 278 2056
+rect 278 1920 332 2056
+rect 332 1920 470 2056
+rect 470 1920 524 2056
+rect 524 1920 620 2056
+rect 730 1656 758 1800
+rect 758 1656 812 1800
+rect 812 1656 950 1800
+rect 950 1656 1004 1800
+rect 1004 1656 1142 1800
+rect 1142 1656 1196 1800
+rect 1196 1656 1460 1800
+rect 730 1640 1460 1656
+rect -70 1438 620 1460
+rect -70 1300 86 1438
+rect 86 1300 140 1438
+rect 140 1300 278 1438
+rect 278 1300 332 1438
+rect 332 1300 470 1438
+rect 470 1300 524 1438
+rect 524 1300 620 1438
+rect 730 1038 758 1180
+rect 758 1038 812 1180
+rect 812 1038 950 1180
+rect 950 1038 1004 1180
+rect 1004 1038 1142 1180
+rect 1142 1038 1196 1180
+rect 1196 1038 1460 1180
+rect 730 1020 1460 1038
+rect -70 820 620 840
+rect -70 680 86 820
+rect 86 680 140 820
+rect 140 680 278 820
+rect 278 680 332 820
+rect 332 680 470 820
+rect 470 680 524 820
+rect 524 680 620 820
+rect 730 420 758 560
+rect 758 420 812 560
+rect 812 420 950 560
+rect 950 420 1004 560
+rect 1004 420 1142 560
+rect 1142 420 1196 560
+rect 1196 420 1460 560
+rect 730 130 1460 420
+<< metal3 >>
+rect -70 2705 620 2710
+rect -80 2700 630 2705
+rect -80 2540 -70 2700
+rect 620 2540 630 2700
+rect -80 2535 630 2540
+rect -70 2085 620 2535
+rect 730 2425 1460 2430
+rect 720 2420 1470 2425
+rect 720 2260 730 2420
+rect 1460 2260 1470 2420
+rect 720 2255 1470 2260
+rect -80 2080 630 2085
+rect -80 1920 -70 2080
+rect 620 1920 630 2080
+rect -80 1915 630 1920
+rect -70 1465 620 1915
+rect 730 1805 1460 2255
+rect 720 1800 1470 1805
+rect 720 1640 730 1800
+rect 1460 1640 1470 1800
+rect 720 1635 1470 1640
+rect -80 1460 630 1465
+rect -80 1300 -70 1460
+rect 620 1300 630 1460
+rect -80 1295 630 1300
+rect -70 845 620 1295
+rect 730 1185 1460 1635
+rect 720 1180 1470 1185
+rect 720 1020 730 1180
+rect 1460 1020 1470 1180
+rect 720 1015 1470 1020
+rect -80 840 630 845
+rect -80 680 -70 840
+rect 620 680 630 840
+rect -80 675 630 680
+rect -70 670 620 675
+rect 730 565 1460 1015
+rect 720 560 1470 565
+rect 720 130 730 560
+rect 1460 130 1470 560
+rect 720 125 1470 130
+use sky130_fd_pr__nfet_01v8_HR8DH9  sky130_fd_pr__nfet_01v8_HR8DH9_0
+timestamp 1654683408
+transform 1 0 725 0 1 -190
+box -875 -410 875 410
+use sky130_fd_pr__nfet_01v8_XZXALN  sky130_fd_pr__nfet_01v8_XZXALN_0
+timestamp 1654683408
+transform 1 0 593 0 1 1547
+box -743 -1337 743 1337
+<< end >>
diff --git a/mag/lvds/lvds_currm_p.ext b/mag/lvds/lvds_currm_p.ext
new file mode 100644
index 0000000..35f08c3
--- /dev/null
+++ b/mag/lvds/lvds_currm_p.ext
@@ -0,0 +1,247 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_9Z5L4S sky130_fd_pr__pfet_01v8_9Z5L4S_0 1 0 805 0 -1 3457
+use sky130_fd_pr__pfet_01v8_8DK6RJ sky130_fd_pr__pfet_01v8_8DK6RJ_0 1 0 673 0 1 1363
+node "m1_60_208#" 19 2280.45 60 208 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 325600 12500 1690256 13628 1871600 10640 0 0 0 0 0 0
+node "m1_60_1070#" 34 3326.65 60 1070 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 533984 20500 1383128 20964 1710400 7780 0 0 0 0 0 0
+node "li_122_2858#" 514 7.61079 122 2858 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_n30_2690#" 520 4424.94 -30 2690 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 801700 11580 169216 6488 795064 9312 834600 5700 0 0 0 0 0 0
+node "li_122_3386#" 514 7.61079 122 3386 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_122_3494#" 514 7.61079 122 3494 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_122_4022#" 514 7.61079 122 4022 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_112_112#" 11197 7439.51 112 112 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 601056 19584 0 0 305184 18496 1170000 40420 0 0 0 0 0 0 0 0 0 0
+node "a_122_2852#" 1431 307.835 122 2852 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62836 2824 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_122_3370#" 998 224.496 122 3370 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90156 2864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_122_3488#" 1431 380.161 122 3488 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62836 2824 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_122_4006#" 998 821.931 122 4006 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90156 2864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_112_112#" 16990 225.396 112 112 nw 0 0 0 0 75132 2448 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_112_640#" 16990 225.396 112 640 nw 0 0 0 0 75132 2448 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_122_2852#" 28211 188.508 122 2852 nw 0 0 0 0 62836 2824 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_122_3370#" 19662 270.468 122 3370 nw 0 0 0 0 90156 2864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_122_3488#" "li_122_3494#" 300.153
+cap "a_122_2852#" "a_112_112#" 226.925
+cap "li_122_3386#" "li_122_2858#" 77.4251
+cap "li_122_3386#" "a_112_112#" 266.793
+cap "m1_60_208#" "li_n30_2690#" 1594.94
+cap "li_122_2858#" "a_112_112#" 272.358
+cap "li_122_4022#" "a_122_4006#" 628.58
+cap "m1_60_208#" "m1_60_1070#" 7049.22
+cap "li_n30_2690#" "a_122_3370#" 24.4954
+cap "li_122_4022#" "li_122_3494#" 77.4251
+cap "li_n30_2690#" "a_122_4006#" 59.4218
+cap "li_n30_2690#" "li_122_3494#" 9.33333
+cap "a_122_3370#" "m1_60_1070#" 13.1891
+cap "a_122_3488#" "a_112_112#" 82.8166
+cap "li_122_3386#" "li_n30_2690#" 9.33333
+cap "li_122_4022#" "a_112_112#" 486.589
+cap "li_122_2858#" "li_n30_2690#" 449.191
+cap "li_n30_2690#" "a_112_112#" 3416.92
+cap "a_112_112#" "m1_60_1070#" 6193.77
+cap "a_122_2852#" "a_122_3370#" 49.1992
+cap "li_122_3386#" "a_122_3370#" 300.153
+cap "m1_60_208#" "a_112_112#" 7021.4
+cap "li_122_3386#" "li_122_3494#" 516.865
+cap "a_122_3370#" "a_112_112#" 270.595
+cap "li_n30_2690#" "li_122_4022#" 9.33333
+cap "a_122_4006#" "a_112_112#" 661.975
+cap "a_112_112#" "li_122_3494#" 266.793
+cap "a_122_3370#" "a_122_3488#" 446.577
+cap "li_n30_2690#" "m1_60_1070#" 3313.97
+cap "a_122_4006#" "a_122_3488#" 49.1992
+cap "li_122_2858#" "a_122_2852#" 308.468
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" 2570.76
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" 880.311
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" 527.705
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" 984.149
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_89_118#" 0.530769
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 80.7693
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" 3368.61
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" -11.188
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" -722.68
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" 1170.16
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" 2206.93
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" 603.33
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 280.536
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" 3662.74
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 50.8272
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 3.59712e-14
+cap "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -78.0316
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" -28.0234
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" 6.21461
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1952.84
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1454.83
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" 2671.09
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" -4433.43
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 740.039
+cap "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 55.2675
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_679_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 31910.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54238506 -18122 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_207_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_207_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n29_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n29_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n265_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n265_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n501_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n501_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_679_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_679_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_207_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_207_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n29_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n29_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n265_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n265_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n501_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n501_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_118#" "m1_60_1070#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/VSUBS" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_561_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_325_118#" 16569 0 0 0 0 247404 -13588 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4372480 -14336 20172600 -5304 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_325_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_89_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_89_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n147_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n147_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n383_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n383_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n619_118#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n619_118#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_561_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_561_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_325_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_325_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_89_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_89_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n147_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n147_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n383_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n383_n518#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n619_n518#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n619_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "w_122_3370#"
+merge "w_122_3370#" "w_112_112#"
+merge "w_112_112#" "w_112_640#"
+merge "w_112_640#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "li_n30_2690#"
+merge "li_n30_2690#" "w_122_2852#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_616_n615#" "li_122_3494#" -837746 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -228054798 -27360 0 0 -73837268 -19200 -247740520 -19968 0 0 0 0 0 0 0 0 0 0
+merge "li_122_3494#" "a_122_3488#"
+merge "a_122_3488#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_498_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_498_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_380_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_380_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_262_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_262_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_144_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_144_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n92_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n92_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n210_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n210_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n446_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n446_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n564_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n564_n615#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_n615#" "li_122_4022#"
+merge "li_122_4022#" "a_122_4006#"
+merge "a_122_4006#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_n1251#" "li_122_3386#"
+merge "li_122_3386#" "a_122_3370#"
+merge "a_122_3370#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_n1251#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_n1251#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_n1251#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_n1251#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_n1251#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_n1251#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_n723#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_n723#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_n615#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_n615#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_n87#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_n87#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_21#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_21#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_549#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_549#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_495_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_303_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_111_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n81_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n273_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_657#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n465_657#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_399_1185#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_207_1185#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_15_1185#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n177_1185#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n369_1185#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_1185#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n561_1185#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_616_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_616_21#" "a_112_112#"
+merge "a_112_112#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_498_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_498_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_380_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_380_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_262_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_262_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_144_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_144_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n92_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n92_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n210_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n210_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n446_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n446_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n564_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n564_21#" "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#"
+merge "sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n682_21#" "li_122_2858#"
+merge "li_122_2858#" "a_122_2852#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_n1154#" 22986.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37714596 -11050 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_351_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n33_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n417_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n1154#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n1154#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n518#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n518#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_118#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_118#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_63_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n321_754#" "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#"
+merge "sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "m1_60_208#"
diff --git a/mag/lvds/lvds_currm_p.mag b/mag/lvds/lvds_currm_p.mag
new file mode 100644
index 0000000..c27b832
--- /dev/null
+++ b/mag/lvds/lvds_currm_p.mag
@@ -0,0 +1,1044 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< nwell >>
+rect 122 3370 1488 3436
+rect 122 2852 1488 2898
+rect 112 640 1234 706
+rect 130 634 160 640
+rect 322 634 352 640
+rect 514 634 544 640
+rect 706 634 736 640
+rect 898 634 928 640
+rect 1090 634 1120 640
+rect 226 178 256 184
+rect 418 178 448 184
+rect 610 178 640 184
+rect 802 178 832 184
+rect 994 178 1024 184
+rect 1186 178 1216 184
+rect 112 112 1234 178
+<< poly >>
+rect 122 4006 1488 4072
+rect 122 3488 1488 3534
+rect 122 3370 1488 3436
+rect 122 2852 1488 2898
+rect 112 2598 1234 2614
+rect 112 2564 224 2598
+rect 258 2564 416 2598
+rect 450 2564 608 2598
+rect 642 2564 800 2598
+rect 834 2564 992 2598
+rect 1026 2564 1184 2598
+rect 1218 2564 1234 2598
+rect 112 2548 1234 2564
+rect 226 2542 256 2548
+rect 418 2542 448 2548
+rect 610 2542 640 2548
+rect 802 2542 832 2548
+rect 994 2542 1024 2548
+rect 1186 2542 1216 2548
+rect 130 2086 160 2092
+rect 322 2086 352 2092
+rect 514 2086 544 2092
+rect 706 2086 736 2092
+rect 898 2086 928 2092
+rect 1090 2086 1120 2092
+rect 112 2070 1234 2086
+rect 112 2036 128 2070
+rect 162 2036 320 2070
+rect 354 2036 512 2070
+rect 546 2036 704 2070
+rect 738 2036 896 2070
+rect 930 2036 1088 2070
+rect 1122 2036 1234 2070
+rect 112 2020 1234 2036
+rect 112 1962 1234 1978
+rect 112 1928 128 1962
+rect 162 1928 320 1962
+rect 354 1928 512 1962
+rect 546 1928 704 1962
+rect 738 1928 896 1962
+rect 930 1928 1088 1962
+rect 1122 1928 1234 1962
+rect 112 1912 1234 1928
+rect 130 1906 160 1912
+rect 322 1906 352 1912
+rect 514 1906 544 1912
+rect 706 1906 736 1912
+rect 898 1906 928 1912
+rect 1090 1906 1120 1912
+rect 226 1450 256 1456
+rect 418 1450 448 1456
+rect 610 1450 640 1456
+rect 802 1450 832 1456
+rect 994 1450 1024 1456
+rect 1186 1450 1216 1456
+rect 112 1434 1234 1450
+rect 112 1400 224 1434
+rect 258 1400 416 1434
+rect 450 1400 608 1434
+rect 642 1400 800 1434
+rect 834 1400 992 1434
+rect 1026 1400 1184 1434
+rect 1218 1400 1234 1434
+rect 112 1384 1234 1400
+rect 112 1326 1234 1342
+rect 112 1292 224 1326
+rect 258 1292 416 1326
+rect 450 1292 608 1326
+rect 642 1292 800 1326
+rect 834 1292 992 1326
+rect 1026 1292 1184 1326
+rect 1218 1292 1234 1326
+rect 112 1276 1234 1292
+rect 226 1270 256 1276
+rect 418 1270 448 1276
+rect 610 1270 640 1276
+rect 802 1270 832 1276
+rect 994 1270 1024 1276
+rect 1186 1270 1216 1276
+rect 130 814 160 820
+rect 322 814 352 820
+rect 514 814 544 820
+rect 706 814 736 820
+rect 898 814 928 820
+rect 1090 814 1120 820
+rect 112 798 1234 814
+rect 112 764 128 798
+rect 162 764 320 798
+rect 354 764 512 798
+rect 546 764 704 798
+rect 738 764 896 798
+rect 930 764 1088 798
+rect 1122 764 1234 798
+rect 112 748 1234 764
+rect 112 690 1234 706
+rect 112 656 128 690
+rect 162 656 320 690
+rect 354 656 512 690
+rect 546 656 704 690
+rect 738 656 896 690
+rect 930 656 1088 690
+rect 1122 656 1234 690
+rect 112 640 1234 656
+rect 130 634 160 640
+rect 322 634 352 640
+rect 514 634 544 640
+rect 706 634 736 640
+rect 898 634 928 640
+rect 1090 634 1120 640
+rect 226 178 256 184
+rect 418 178 448 184
+rect 610 178 640 184
+rect 802 178 832 184
+rect 994 178 1024 184
+rect 1186 178 1216 184
+rect 112 162 1234 178
+rect 112 128 224 162
+rect 258 128 416 162
+rect 450 128 608 162
+rect 642 128 800 162
+rect 834 128 992 162
+rect 1026 128 1184 162
+rect 1218 128 1234 162
+rect 112 112 1234 128
+<< polycont >>
+rect 224 2564 258 2598
+rect 416 2564 450 2598
+rect 608 2564 642 2598
+rect 800 2564 834 2598
+rect 992 2564 1026 2598
+rect 1184 2564 1218 2598
+rect 128 2036 162 2070
+rect 320 2036 354 2070
+rect 512 2036 546 2070
+rect 704 2036 738 2070
+rect 896 2036 930 2070
+rect 1088 2036 1122 2070
+rect 128 1928 162 1962
+rect 320 1928 354 1962
+rect 512 1928 546 1962
+rect 704 1928 738 1962
+rect 896 1928 930 1962
+rect 1088 1928 1122 1962
+rect 224 1400 258 1434
+rect 416 1400 450 1434
+rect 608 1400 642 1434
+rect 800 1400 834 1434
+rect 992 1400 1026 1434
+rect 1184 1400 1218 1434
+rect 224 1292 258 1326
+rect 416 1292 450 1326
+rect 608 1292 642 1326
+rect 800 1292 834 1326
+rect 992 1292 1026 1326
+rect 1184 1292 1218 1326
+rect 128 764 162 798
+rect 320 764 354 798
+rect 512 764 546 798
+rect 704 764 738 798
+rect 896 764 930 798
+rect 1088 764 1122 798
+rect 128 656 162 690
+rect 320 656 354 690
+rect 512 656 546 690
+rect 704 656 738 690
+rect 896 656 930 690
+rect 1088 656 1122 690
+rect 224 128 258 162
+rect 416 128 450 162
+rect 608 128 642 162
+rect 800 128 834 162
+rect 992 128 1026 162
+rect 1184 128 1218 162
+<< locali >>
+rect 122 4022 1488 4056
+rect 122 3494 1488 3528
+rect 122 3386 1488 3420
+rect 1590 3350 1630 4140
+rect 122 2858 1488 2892
+rect 1590 2780 1630 3210
+rect 1360 2770 1630 2780
+rect -30 2760 1630 2770
+rect -30 2690 1590 2760
+rect 112 2564 224 2598
+rect 258 2564 416 2598
+rect 450 2564 608 2598
+rect 642 2564 800 2598
+rect 834 2564 992 2598
+rect 1026 2564 1184 2598
+rect 1218 2564 1234 2598
+rect 112 2036 128 2070
+rect 162 2036 320 2070
+rect 354 2036 512 2070
+rect 546 2036 704 2070
+rect 738 2036 896 2070
+rect 930 2036 1088 2070
+rect 1122 2036 1234 2070
+rect 112 1928 128 1962
+rect 162 1928 320 1962
+rect 354 1928 512 1962
+rect 546 1928 704 1962
+rect 738 1928 896 1962
+rect 930 1928 1088 1962
+rect 1122 1928 1234 1962
+rect 112 1400 224 1434
+rect 258 1400 416 1434
+rect 450 1400 608 1434
+rect 642 1400 800 1434
+rect 834 1400 992 1434
+rect 1026 1400 1184 1434
+rect 1218 1400 1234 1434
+rect 112 1292 224 1326
+rect 258 1292 416 1326
+rect 450 1292 608 1326
+rect 642 1292 800 1326
+rect 834 1292 992 1326
+rect 1026 1292 1184 1326
+rect 1218 1292 1234 1326
+rect 112 764 128 798
+rect 162 764 320 798
+rect 354 764 512 798
+rect 546 764 704 798
+rect 738 764 896 798
+rect 930 764 1088 798
+rect 1122 764 1234 798
+rect 112 656 128 690
+rect 162 656 320 690
+rect 354 656 512 690
+rect 546 656 704 690
+rect 738 656 896 690
+rect 930 656 1088 690
+rect 1122 656 1234 690
+rect 112 128 224 162
+rect 258 128 416 162
+rect 450 128 608 162
+rect 642 128 800 162
+rect 834 128 992 162
+rect 1026 128 1184 162
+rect 1218 128 1234 162
+rect 1360 30 1590 2690
+<< viali >>
+rect 1590 3210 1650 3350
+rect 224 2564 258 2598
+rect 416 2564 450 2598
+rect 608 2564 642 2598
+rect 800 2564 834 2598
+rect 992 2564 1026 2598
+rect 1184 2564 1218 2598
+rect 128 2036 162 2070
+rect 320 2036 354 2070
+rect 512 2036 546 2070
+rect 704 2036 738 2070
+rect 896 2036 930 2070
+rect 1088 2036 1122 2070
+rect 128 1928 162 1962
+rect 320 1928 354 1962
+rect 512 1928 546 1962
+rect 704 1928 738 1962
+rect 896 1928 930 1962
+rect 1088 1928 1122 1962
+rect 224 1400 258 1434
+rect 416 1400 450 1434
+rect 608 1400 642 1434
+rect 800 1400 834 1434
+rect 992 1400 1026 1434
+rect 1184 1400 1218 1434
+rect 224 1292 258 1326
+rect 416 1292 450 1326
+rect 608 1292 642 1326
+rect 800 1292 834 1326
+rect 992 1292 1026 1326
+rect 1184 1292 1218 1326
+rect 128 764 162 798
+rect 320 764 354 798
+rect 512 764 546 798
+rect 704 764 738 798
+rect 896 764 930 798
+rect 1088 764 1122 798
+rect 128 656 162 690
+rect 320 656 354 690
+rect 512 656 546 690
+rect 704 656 738 690
+rect 896 656 930 690
+rect 1088 656 1122 690
+rect 224 128 258 162
+rect 416 128 450 162
+rect 608 128 642 162
+rect 800 128 834 162
+rect 992 128 1026 162
+rect 1184 128 1218 162
+<< metal1 >>
+rect -30 4010 1490 4070
+rect -30 3540 20 4010
+rect 178 3800 188 3976
+rect 242 3800 252 3976
+rect 414 3800 424 3976
+rect 478 3800 488 3976
+rect 650 3800 660 3976
+rect 714 3800 724 3976
+rect 886 3800 896 3976
+rect 950 3800 960 3976
+rect 1122 3800 1132 3976
+rect 1186 3800 1196 3976
+rect 1358 3800 1368 3976
+rect 1422 3800 1432 3976
+rect 60 3574 70 3750
+rect 124 3574 134 3750
+rect 296 3574 306 3750
+rect 360 3574 370 3750
+rect 532 3574 542 3750
+rect 596 3574 606 3750
+rect 768 3574 778 3750
+rect 832 3574 842 3750
+rect 1004 3574 1014 3750
+rect 1068 3574 1078 3750
+rect 1240 3574 1250 3750
+rect 1304 3574 1314 3750
+rect 1476 3574 1486 3750
+rect 1540 3574 1550 3750
+rect -30 3480 1490 3540
+rect -30 3440 20 3480
+rect -30 3380 1490 3440
+rect -30 2900 20 3380
+rect 1584 3350 1656 3362
+rect 178 3164 188 3340
+rect 242 3164 252 3340
+rect 414 3164 424 3340
+rect 478 3164 488 3340
+rect 650 3164 660 3340
+rect 714 3164 724 3340
+rect 886 3164 896 3340
+rect 950 3164 960 3340
+rect 1122 3164 1132 3340
+rect 1186 3164 1196 3340
+rect 1358 3164 1368 3340
+rect 1422 3164 1432 3340
+rect 1580 3210 1590 3350
+rect 1650 3210 1660 3350
+rect 1584 3198 1656 3210
+rect 60 2938 70 3114
+rect 124 2938 134 3114
+rect 296 2938 306 3114
+rect 360 2938 370 3114
+rect 532 2938 542 3114
+rect 596 2938 606 3114
+rect 768 2938 778 3114
+rect 832 2938 842 3114
+rect 1004 2938 1014 3114
+rect 1068 2938 1078 3114
+rect 1240 2938 1250 3114
+rect 1304 2938 1314 3114
+rect 1476 2938 1486 3114
+rect 1540 2938 1550 3114
+rect -30 2840 1490 2900
+rect -30 2610 20 2840
+rect -30 2598 1310 2610
+rect -30 2564 224 2598
+rect 258 2564 416 2598
+rect 450 2564 608 2598
+rect 642 2564 800 2598
+rect 834 2564 992 2598
+rect 1026 2564 1184 2598
+rect 1218 2564 1310 2598
+rect -30 2550 1310 2564
+rect -30 2080 20 2550
+rect 60 2342 70 2518
+rect 124 2342 134 2518
+rect 252 2342 262 2518
+rect 316 2342 326 2518
+rect 444 2342 454 2518
+rect 508 2342 518 2518
+rect 636 2342 646 2518
+rect 700 2342 710 2518
+rect 828 2342 838 2518
+rect 892 2342 902 2518
+rect 1020 2342 1030 2518
+rect 1084 2342 1094 2518
+rect 1212 2342 1222 2518
+rect 1276 2342 1286 2518
+rect 156 2116 166 2292
+rect 220 2116 230 2292
+rect 348 2116 358 2292
+rect 412 2116 422 2292
+rect 540 2116 550 2292
+rect 604 2116 614 2292
+rect 732 2116 742 2292
+rect 796 2116 806 2292
+rect 924 2116 934 2292
+rect 988 2116 998 2292
+rect 1116 2116 1126 2292
+rect 1180 2116 1190 2292
+rect -30 2070 1310 2080
+rect -30 2036 128 2070
+rect 162 2036 320 2070
+rect 354 2036 512 2070
+rect 546 2036 704 2070
+rect 738 2036 896 2070
+rect 930 2036 1088 2070
+rect 1122 2036 1310 2070
+rect -30 2020 1310 2036
+rect -30 1980 20 2020
+rect -30 1962 1310 1980
+rect -30 1928 128 1962
+rect 162 1928 320 1962
+rect 354 1928 512 1962
+rect 546 1928 704 1962
+rect 738 1928 896 1962
+rect 930 1928 1088 1962
+rect 1122 1928 1310 1962
+rect -30 1920 1310 1928
+rect -30 1440 20 1920
+rect 156 1706 166 1882
+rect 220 1706 230 1882
+rect 348 1706 358 1882
+rect 412 1706 422 1882
+rect 540 1706 550 1882
+rect 604 1706 614 1882
+rect 732 1706 742 1882
+rect 796 1706 806 1882
+rect 924 1706 934 1882
+rect 988 1706 998 1882
+rect 1116 1706 1126 1882
+rect 1180 1706 1190 1882
+rect 60 1480 70 1656
+rect 124 1480 134 1656
+rect 252 1480 262 1656
+rect 316 1480 326 1656
+rect 444 1480 454 1656
+rect 508 1480 518 1656
+rect 636 1480 646 1656
+rect 700 1480 710 1656
+rect 828 1480 838 1656
+rect 892 1480 902 1656
+rect 1020 1480 1030 1656
+rect 1084 1480 1094 1656
+rect 1212 1480 1222 1656
+rect 1276 1480 1286 1656
+rect -30 1434 1310 1440
+rect -30 1400 224 1434
+rect 258 1400 416 1434
+rect 450 1400 608 1434
+rect 642 1400 800 1434
+rect 834 1400 992 1434
+rect 1026 1400 1184 1434
+rect 1218 1400 1310 1434
+rect -30 1380 1310 1400
+rect -30 1340 20 1380
+rect -30 1326 1310 1340
+rect -30 1292 224 1326
+rect 258 1292 416 1326
+rect 450 1292 608 1326
+rect 642 1292 800 1326
+rect 834 1292 992 1326
+rect 1026 1292 1184 1326
+rect 1218 1292 1310 1326
+rect -30 1280 1310 1292
+rect -30 810 20 1280
+rect 60 1070 70 1246
+rect 124 1070 134 1246
+rect 252 1070 262 1246
+rect 316 1070 326 1246
+rect 444 1070 454 1246
+rect 508 1070 518 1246
+rect 636 1070 646 1246
+rect 700 1070 710 1246
+rect 828 1070 838 1246
+rect 892 1070 902 1246
+rect 1020 1070 1030 1246
+rect 1084 1070 1094 1246
+rect 1212 1070 1222 1246
+rect 1276 1070 1286 1246
+rect 156 844 166 1020
+rect 220 844 230 1020
+rect 348 844 358 1020
+rect 412 844 422 1020
+rect 540 844 550 1020
+rect 604 844 614 1020
+rect 732 844 742 1020
+rect 796 844 806 1020
+rect 924 844 934 1020
+rect 988 844 998 1020
+rect 1116 844 1126 1020
+rect 1180 844 1190 1020
+rect -30 798 1310 810
+rect -30 764 128 798
+rect 162 764 320 798
+rect 354 764 512 798
+rect 546 764 704 798
+rect 738 764 896 798
+rect 930 764 1088 798
+rect 1122 764 1310 798
+rect -30 750 1310 764
+rect -30 710 20 750
+rect -30 690 1310 710
+rect -30 656 128 690
+rect 162 656 320 690
+rect 354 656 512 690
+rect 546 656 704 690
+rect 738 656 896 690
+rect 930 656 1088 690
+rect 1122 656 1310 690
+rect -30 650 1310 656
+rect -30 170 20 650
+rect 156 434 166 610
+rect 220 434 230 610
+rect 348 434 358 610
+rect 412 434 422 610
+rect 540 434 550 610
+rect 604 434 614 610
+rect 732 434 742 610
+rect 796 434 806 610
+rect 924 434 934 610
+rect 988 434 998 610
+rect 1116 434 1126 610
+rect 1180 434 1190 610
+rect 60 208 70 384
+rect 124 208 134 384
+rect 252 208 262 384
+rect 316 208 326 384
+rect 444 208 454 384
+rect 508 208 518 384
+rect 636 208 646 384
+rect 700 208 710 384
+rect 828 208 838 384
+rect 892 208 902 384
+rect 1020 208 1030 384
+rect 1084 208 1094 384
+rect 1212 208 1222 384
+rect 1276 208 1286 384
+rect -30 162 1310 170
+rect -30 128 224 162
+rect 258 128 416 162
+rect 450 128 608 162
+rect 642 128 800 162
+rect 834 128 992 162
+rect 1026 128 1184 162
+rect 1218 128 1310 162
+rect -30 110 1310 128
+<< via1 >>
+rect 188 3800 242 3976
+rect 424 3800 478 3976
+rect 660 3800 714 3976
+rect 896 3800 950 3976
+rect 1132 3800 1186 3976
+rect 1368 3800 1422 3976
+rect 70 3574 124 3750
+rect 306 3574 360 3750
+rect 542 3574 596 3750
+rect 778 3574 832 3750
+rect 1014 3574 1068 3750
+rect 1250 3574 1304 3750
+rect 1486 3574 1540 3750
+rect 188 3164 242 3340
+rect 424 3164 478 3340
+rect 660 3164 714 3340
+rect 896 3164 950 3340
+rect 1132 3164 1186 3340
+rect 1368 3164 1422 3340
+rect 1590 3210 1650 3350
+rect 70 2938 124 3114
+rect 306 2938 360 3114
+rect 542 2938 596 3114
+rect 778 2938 832 3114
+rect 1014 2938 1068 3114
+rect 1250 2938 1304 3114
+rect 1486 2938 1540 3114
+rect 70 2342 124 2518
+rect 262 2342 316 2518
+rect 454 2342 508 2518
+rect 646 2342 700 2518
+rect 838 2342 892 2518
+rect 1030 2342 1084 2518
+rect 1222 2342 1276 2518
+rect 166 2116 220 2292
+rect 358 2116 412 2292
+rect 550 2116 604 2292
+rect 742 2116 796 2292
+rect 934 2116 988 2292
+rect 1126 2116 1180 2292
+rect 166 1706 220 1882
+rect 358 1706 412 1882
+rect 550 1706 604 1882
+rect 742 1706 796 1882
+rect 934 1706 988 1882
+rect 1126 1706 1180 1882
+rect 70 1480 124 1656
+rect 262 1480 316 1656
+rect 454 1480 508 1656
+rect 646 1480 700 1656
+rect 838 1480 892 1656
+rect 1030 1480 1084 1656
+rect 1222 1480 1276 1656
+rect 70 1070 124 1246
+rect 262 1070 316 1246
+rect 454 1070 508 1246
+rect 646 1070 700 1246
+rect 838 1070 892 1246
+rect 1030 1070 1084 1246
+rect 1222 1070 1276 1246
+rect 166 844 220 1020
+rect 358 844 412 1020
+rect 550 844 604 1020
+rect 742 844 796 1020
+rect 934 844 988 1020
+rect 1126 844 1180 1020
+rect 166 434 220 610
+rect 358 434 412 610
+rect 550 434 604 610
+rect 742 434 796 610
+rect 934 434 988 610
+rect 1126 434 1180 610
+rect 70 208 124 384
+rect 262 208 316 384
+rect 454 208 508 384
+rect 646 208 700 384
+rect 838 208 892 384
+rect 1030 208 1084 384
+rect 1222 208 1276 384
+<< metal2 >>
+rect 0 4160 420 4170
+rect 1150 4160 1570 4170
+rect 420 3976 1150 3990
+rect 420 3840 424 3976
+rect 0 3830 188 3840
+rect 242 3830 424 3840
+rect 188 3790 242 3800
+rect 478 3830 660 3976
+rect 424 3790 478 3800
+rect 714 3830 896 3976
+rect 660 3790 714 3800
+rect 950 3830 1132 3976
+rect 896 3790 950 3800
+rect 1186 3830 1368 3840
+rect 1132 3790 1186 3800
+rect 1422 3830 1570 3840
+rect 1368 3790 1422 3800
+rect 70 3750 124 3760
+rect 60 3574 70 3720
+rect 306 3750 360 3760
+rect 124 3574 306 3720
+rect 542 3750 596 3760
+rect 360 3710 542 3720
+rect 778 3750 832 3760
+rect 596 3710 778 3720
+rect 1014 3750 1068 3760
+rect 832 3710 1014 3720
+rect 1250 3750 1304 3760
+rect 360 3574 520 3710
+rect 1068 3574 1250 3720
+rect 1486 3750 1540 3760
+rect 1304 3574 1486 3720
+rect 1540 3574 1550 3720
+rect 60 3560 520 3574
+rect 1040 3560 1550 3574
+rect 520 3540 1040 3550
+rect 0 3470 420 3480
+rect 1150 3470 1570 3480
+rect 420 3340 1150 3360
+rect 1570 3350 1650 3360
+rect 420 3210 424 3340
+rect 0 3200 188 3210
+rect 242 3200 424 3210
+rect 188 3154 242 3164
+rect 478 3200 660 3340
+rect 424 3154 478 3164
+rect 714 3200 896 3340
+rect 660 3154 714 3164
+rect 950 3200 1132 3340
+rect 1570 3210 1590 3350
+rect 896 3154 950 3164
+rect 1186 3200 1368 3210
+rect 1132 3154 1186 3164
+rect 1422 3200 1650 3210
+rect 1368 3154 1422 3164
+rect 70 3114 124 3124
+rect 60 2938 70 3080
+rect 306 3114 360 3124
+rect 124 2938 306 3080
+rect 542 3114 596 3124
+rect 360 3070 542 3080
+rect 778 3114 832 3124
+rect 596 3070 778 3080
+rect 1014 3114 1068 3124
+rect 832 3070 1014 3080
+rect 1250 3114 1304 3124
+rect 360 2938 520 3070
+rect 1068 2938 1250 3080
+rect 1486 3114 1540 3124
+rect 1304 2938 1486 3080
+rect 1540 2938 1550 3080
+rect 60 2920 520 2938
+rect 1040 2920 1550 2938
+rect 520 2900 1040 2910
+rect 520 2540 1040 2550
+rect 60 2518 520 2530
+rect 1040 2518 1280 2530
+rect 60 2370 70 2518
+rect 124 2370 262 2518
+rect 70 2332 124 2342
+rect 316 2370 454 2518
+rect 262 2332 316 2342
+rect 508 2380 520 2518
+rect 508 2370 646 2380
+rect 454 2332 508 2342
+rect 700 2370 838 2380
+rect 646 2332 700 2342
+rect 892 2370 1030 2380
+rect 838 2332 892 2342
+rect 1084 2370 1222 2518
+rect 1030 2332 1084 2342
+rect 1276 2370 1280 2518
+rect 1222 2332 1276 2342
+rect 166 2292 220 2302
+rect 0 2250 166 2260
+rect 358 2292 412 2302
+rect 220 2250 358 2260
+rect 550 2292 604 2302
+rect 412 2250 550 2260
+rect 420 2116 550 2250
+rect 742 2292 796 2302
+rect 604 2116 742 2260
+rect 934 2292 988 2302
+rect 796 2116 934 2260
+rect 1126 2292 1180 2302
+rect 988 2116 1126 2260
+rect 1180 2250 1570 2260
+rect 420 1882 1150 2116
+rect 420 1750 550 1882
+rect 0 1740 166 1750
+rect 220 1740 358 1750
+rect 166 1696 220 1706
+rect 412 1740 550 1750
+rect 358 1696 412 1706
+rect 604 1740 742 1882
+rect 550 1696 604 1706
+rect 796 1740 934 1882
+rect 742 1696 796 1706
+rect 988 1740 1126 1882
+rect 934 1696 988 1706
+rect 1180 1740 1570 1750
+rect 1126 1696 1180 1706
+rect 70 1656 124 1666
+rect 60 1480 70 1620
+rect 262 1656 316 1666
+rect 124 1480 262 1620
+rect 454 1656 508 1666
+rect 316 1480 454 1620
+rect 646 1656 700 1666
+rect 508 1610 646 1620
+rect 838 1656 892 1666
+rect 700 1610 838 1620
+rect 1030 1656 1084 1666
+rect 892 1610 1030 1620
+rect 1222 1656 1276 1666
+rect 508 1480 520 1610
+rect 1084 1480 1222 1620
+rect 1276 1480 1280 1620
+rect 60 1460 520 1480
+rect 1040 1460 1280 1480
+rect 520 1440 1040 1450
+rect 520 1270 1040 1280
+rect 60 1246 520 1260
+rect 1040 1246 1280 1260
+rect 60 1100 70 1246
+rect 124 1100 262 1246
+rect 70 1060 124 1070
+rect 316 1100 454 1246
+rect 262 1060 316 1070
+rect 508 1110 520 1246
+rect 508 1100 646 1110
+rect 454 1060 508 1070
+rect 700 1100 838 1110
+rect 646 1060 700 1070
+rect 892 1100 1030 1110
+rect 838 1060 892 1070
+rect 1084 1100 1222 1246
+rect 1030 1060 1084 1070
+rect 1276 1100 1280 1246
+rect 1222 1060 1276 1070
+rect 166 1020 220 1030
+rect 0 980 166 990
+rect 358 1020 412 1030
+rect 220 980 358 990
+rect 550 1020 604 1030
+rect 412 980 550 990
+rect 420 844 550 980
+rect 742 1020 796 1030
+rect 604 844 742 990
+rect 934 1020 988 1030
+rect 796 844 934 990
+rect 1126 1020 1180 1030
+rect 988 844 1126 990
+rect 1180 980 1570 990
+rect 420 740 1150 844
+rect 0 730 1570 740
+rect 520 640 1040 650
+rect 160 610 520 630
+rect 1040 610 1190 630
+rect 160 470 166 610
+rect 220 470 358 610
+rect 166 424 220 434
+rect 412 480 520 610
+rect 1040 480 1126 610
+rect 412 470 550 480
+rect 358 424 412 434
+rect 604 470 742 480
+rect 550 424 604 434
+rect 796 470 934 480
+rect 742 424 796 434
+rect 988 470 1126 480
+rect 934 424 988 434
+rect 1180 470 1190 610
+rect 1126 424 1180 434
+rect 70 384 124 394
+rect 0 340 70 350
+rect 262 384 316 394
+rect 124 340 262 350
+rect 454 384 508 394
+rect 316 340 454 350
+rect 420 208 454 340
+rect 646 384 700 394
+rect 508 208 646 350
+rect 838 384 892 394
+rect 700 208 838 350
+rect 1030 384 1084 394
+rect 892 208 1030 350
+rect 1222 384 1276 394
+rect 1084 340 1222 350
+rect 1276 340 1570 350
+rect 1084 208 1150 340
+rect 420 100 1150 208
+rect 0 90 1570 100
+<< via2 >>
+rect 0 3976 420 4160
+rect 1150 3976 1570 4160
+rect 0 3840 188 3976
+rect 188 3840 242 3976
+rect 242 3840 420 3976
+rect 1150 3840 1186 3976
+rect 1186 3840 1368 3976
+rect 1368 3840 1422 3976
+rect 1422 3840 1570 3976
+rect 520 3574 542 3710
+rect 542 3574 596 3710
+rect 596 3574 778 3710
+rect 778 3574 832 3710
+rect 832 3574 1014 3710
+rect 1014 3574 1040 3710
+rect 520 3550 1040 3574
+rect 0 3340 420 3470
+rect 1150 3340 1570 3470
+rect 0 3210 188 3340
+rect 188 3210 242 3340
+rect 242 3210 420 3340
+rect 1150 3210 1186 3340
+rect 1186 3210 1368 3340
+rect 1368 3210 1422 3340
+rect 1422 3210 1570 3340
+rect 520 2938 542 3070
+rect 542 2938 596 3070
+rect 596 2938 778 3070
+rect 778 2938 832 3070
+rect 832 2938 1014 3070
+rect 1014 2938 1040 3070
+rect 520 2910 1040 2938
+rect 520 2518 1040 2540
+rect 520 2380 646 2518
+rect 646 2380 700 2518
+rect 700 2380 838 2518
+rect 838 2380 892 2518
+rect 892 2380 1030 2518
+rect 1030 2380 1040 2518
+rect 0 2116 166 2250
+rect 166 2116 220 2250
+rect 220 2116 358 2250
+rect 358 2116 412 2250
+rect 412 2116 420 2250
+rect 1150 2116 1180 2250
+rect 1180 2116 1570 2250
+rect 0 1882 420 2116
+rect 1150 1882 1570 2116
+rect 0 1750 166 1882
+rect 166 1750 220 1882
+rect 220 1750 358 1882
+rect 358 1750 412 1882
+rect 412 1750 420 1882
+rect 1150 1750 1180 1882
+rect 1180 1750 1570 1882
+rect 520 1480 646 1610
+rect 646 1480 700 1610
+rect 700 1480 838 1610
+rect 838 1480 892 1610
+rect 892 1480 1030 1610
+rect 1030 1480 1040 1610
+rect 520 1450 1040 1480
+rect 520 1246 1040 1270
+rect 520 1110 646 1246
+rect 646 1110 700 1246
+rect 700 1110 838 1246
+rect 838 1110 892 1246
+rect 892 1110 1030 1246
+rect 1030 1110 1040 1246
+rect 0 844 166 980
+rect 166 844 220 980
+rect 220 844 358 980
+rect 358 844 412 980
+rect 412 844 420 980
+rect 1150 844 1180 980
+rect 1180 844 1570 980
+rect 0 740 420 844
+rect 1150 740 1570 844
+rect 520 610 1040 640
+rect 520 480 550 610
+rect 550 480 604 610
+rect 604 480 742 610
+rect 742 480 796 610
+rect 796 480 934 610
+rect 934 480 988 610
+rect 988 480 1040 610
+rect 0 208 70 340
+rect 70 208 124 340
+rect 124 208 262 340
+rect 262 208 316 340
+rect 316 208 420 340
+rect 1150 208 1222 340
+rect 1222 208 1276 340
+rect 1276 208 1570 340
+rect 0 100 420 208
+rect 1150 100 1570 208
+<< metal3 >>
+rect -10 4160 430 4165
+rect -10 3840 0 4160
+rect 420 3840 430 4160
+rect -10 3835 430 3840
+rect 1140 4160 1580 4165
+rect 1140 3840 1150 4160
+rect 1570 3840 1580 4160
+rect 1140 3835 1580 3840
+rect 0 3475 420 3835
+rect 520 3715 1040 3720
+rect 510 3710 1050 3715
+rect 510 3550 520 3710
+rect 1040 3550 1050 3710
+rect 510 3545 1050 3550
+rect -10 3470 430 3475
+rect -10 3210 0 3470
+rect 420 3210 430 3470
+rect -10 3205 430 3210
+rect 0 3200 420 3205
+rect 520 3075 1040 3545
+rect 1150 3475 1570 3835
+rect 1140 3470 1580 3475
+rect 1140 3210 1150 3470
+rect 1570 3210 1580 3470
+rect 1140 3205 1580 3210
+rect 1150 3200 1570 3205
+rect 510 3070 1050 3075
+rect 510 2910 520 3070
+rect 1040 2910 1050 3070
+rect 510 2905 1050 2910
+rect 520 2545 1040 2905
+rect 510 2540 1050 2545
+rect 510 2380 520 2540
+rect 1040 2380 1050 2540
+rect 510 2375 1050 2380
+rect 0 2255 420 2260
+rect -10 2250 430 2255
+rect -10 1750 0 2250
+rect 420 1750 430 2250
+rect -10 1745 430 1750
+rect 0 985 420 1745
+rect 520 1615 1040 2375
+rect 1150 2255 1570 2260
+rect 1140 2250 1580 2255
+rect 1140 1750 1150 2250
+rect 1570 1750 1580 2250
+rect 1140 1745 1580 1750
+rect 510 1610 1050 1615
+rect 510 1450 520 1610
+rect 1040 1450 1050 1610
+rect 510 1445 1050 1450
+rect 520 1275 1040 1445
+rect 510 1270 1050 1275
+rect 510 1110 520 1270
+rect 1040 1110 1050 1270
+rect 510 1105 1050 1110
+rect -10 980 430 985
+rect -10 740 0 980
+rect 420 740 430 980
+rect -10 735 430 740
+rect 0 345 420 735
+rect 520 645 1040 1105
+rect 1150 985 1570 1745
+rect 1140 980 1580 985
+rect 1140 740 1150 980
+rect 1570 740 1580 980
+rect 1140 735 1580 740
+rect 510 640 1050 645
+rect 510 480 520 640
+rect 1040 480 1050 640
+rect 510 475 1050 480
+rect 520 470 1040 475
+rect 1150 345 1570 735
+rect -10 340 430 345
+rect -10 100 0 340
+rect 420 100 430 340
+rect -10 95 430 100
+rect 1140 340 1580 345
+rect 1140 100 1150 340
+rect 1570 100 1580 340
+rect 1140 95 1580 100
+rect 0 80 420 95
+rect 1150 80 1570 95
+use sky130_fd_pr__pfet_01v8_8DK6RJ  sky130_fd_pr__pfet_01v8_8DK6RJ_0
+timestamp 1654683408
+transform 1 0 673 0 1 1363
+box -743 -1373 743 1373
+use sky130_fd_pr__pfet_01v8_9Z5L4S  sky130_fd_pr__pfet_01v8_9Z5L4S_0
+timestamp 1654683408
+transform 1 0 805 0 -1 3457
+box -875 -737 875 737
+<< end >>
diff --git a/mag/lvds/lvds_diffamp.ext b/mag/lvds/lvds_diffamp.ext
new file mode 100644
index 0000000..775d8a0
--- /dev/null
+++ b/mag/lvds/lvds_diffamp.ext
@@ -0,0 +1,149 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_ZHX6G9 sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0 1 0 815 0 1 669
+node "m1_70_80#" 4 63.8588 70 80 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74500 3080 0 0 0 0 0 0 0 0 0 0
+node "m1_70_160#" 6 815.844 70 160 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91168 3500 255788 3944 0 0 0 0 0 0 0 0
+node "m1_188_384#" 5 454.25 188 384 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78144 3000 211664 3252 0 0 0 0 0 0 0 0
+node "m1_70_590#" 4 40.7651 70 590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74500 3080 0 0 0 0 0 0 0 0 0 0
+node "m1_70_700#" 4 40.1191 70 700 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74500 3080 0 0 0 0 0 0 0 0 0 0
+node "m1_70_778#" 6 621.947 70 778 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 91168 3500 255032 3916 0 0 0 0 0 0 0 0
+node "m1_188_1002#" 5 647.693 188 1002 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78144 3000 212312 3276 0 0 0 0 0 0 0 0
+node "m1_70_1210#" 4 63.7913 70 1210 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74500 3080 0 0 0 0 0 0 0 0 0 0
+node "li_132_88#" 514 13.838 132 88 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46444 2800 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_132_598#" 515 14.0512 132 598 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46512 2804 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_132_706#" 515 14.0512 132 706 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46512 2804 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_130_1216#" 515 13.838 130 1216 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46512 2804 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_132_72#" 998 812.585 132 72 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90156 2864 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_132_582#" 1000 451.427 132 582 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90224 2868 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_132_690#" 1000 457.35 132 690 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90224 2868 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_130_1200#" 999 819.077 130 1200 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90288 2868 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_130_1216#" "a_130_1200#" 624.215
+cap "a_130_1200#" "a_132_690#" 52.3018
+cap "m1_188_1002#" "m1_70_700#" 65.0143
+cap "a_130_1200#" "m1_70_1210#" 543.892
+cap "m1_188_384#" "m1_70_778#" 257.237
+cap "li_132_88#" "li_132_598#" 80.3529
+cap "m1_188_384#" "m1_70_590#" 546.12
+cap "li_132_706#" "m1_70_700#" 268.946
+cap "m1_70_160#" "m1_70_80#" 637.14
+cap "m1_70_778#" "m1_70_1210#" 74.6648
+cap "li_132_88#" "a_132_72#" 623.018
+cap "li_130_1216#" "m1_70_1210#" 489.064
+cap "li_132_598#" "li_132_706#" 517.622
+cap "m1_70_778#" "m1_70_700#" 682.65
+cap "m1_188_1002#" "m1_70_778#" 569.083
+cap "m1_70_700#" "m1_70_590#" 916.35
+cap "m1_70_160#" "m1_70_778#" 11.9
+cap "li_132_598#" "a_132_582#" 295.035
+cap "m1_70_160#" "m1_70_590#" 75.2528
+cap "m1_70_590#" "a_132_582#" 242.683
+cap "a_132_72#" "m1_70_80#" 534.917
+cap "m1_188_384#" "m1_70_80#" 64.5024
+cap "a_132_582#" "a_132_72#" 52.3018
+cap "m1_188_384#" "m1_70_160#" 569.326
+cap "li_130_1216#" "li_132_706#" 80.3529
+cap "m1_70_700#" "a_132_690#" 234.489
+cap "li_132_88#" "m1_70_80#" 488.176
+cap "li_132_706#" "a_132_690#" 295.035
+cap "m1_188_1002#" "m1_70_1210#" 511.987
+cap "li_132_598#" "m1_70_590#" 268.946
+cap "a_132_690#" "a_132_582#" 553.364
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" 786.646
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" -61.5979
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" -35
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" 883.534
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" -951.094
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" -69.3841
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" 206.93
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" 763.545
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" 786.723
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" -35
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" 691.7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" -35
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" 207.883
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" 808.65
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" -35
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" 99.4842
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" -130.823
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" -111.473
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" -178.108
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" 21.378
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" 99.1238
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" 21.378
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" -99.9781
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" -165.684
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" -14.1667
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" -14.1667
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" 73.22
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" 7.42
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_679_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_443_109#" 2232.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3779640 -3108 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_443_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_207_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n29_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n29_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n265_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n265_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n501_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n501_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_109#" "m1_70_778#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_616_21#" "m1_70_700#" -43466.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11301678 -6336 0 0 -3466158 -4800 -13815786 -4992 0 0 0 0 0 0 0 0 0 0
+merge "m1_70_700#" "m1_70_1210#"
+merge "m1_70_1210#" "li_132_706#"
+merge "li_132_706#" "a_132_690#"
+merge "a_132_690#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_498_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_498_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_380_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_380_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_262_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_262_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_144_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_144_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_26_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_26_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n92_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n92_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n210_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n210_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n328_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n328_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n446_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n446_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n564_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n564_21#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_21#" "li_130_1216#"
+merge "li_130_1216#" "a_130_1200#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_616_n597#" "m1_70_80#" -126532 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -34402398 -6336 0 0 -10139322 -4800 -38037678 -4992 0 0 0 0 0 0 0 0 0 0
+merge "m1_70_80#" "m1_70_590#"
+merge "m1_70_590#" "li_132_88#"
+merge "li_132_88#" "a_132_72#"
+merge "a_132_72#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_498_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_498_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_380_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_380_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_262_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_262_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_144_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_144_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_26_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_26_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n92_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n92_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n210_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n210_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n328_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n328_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n446_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n446_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n564_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n564_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n682_n597#" "li_132_598#"
+merge "li_132_598#" "a_132_582#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_561_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_325_n509#" 4508.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7288048 -2664 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_325_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_89_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_89_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n147_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n147_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n383_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n383_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_n509#" "m1_188_384#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_561_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_325_109#" 1828.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3278464 -2664 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_325_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_89_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_89_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n147_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n147_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n383_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n383_109#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n619_109#" "m1_188_1002#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_679_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_443_n509#" 5333.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8722404 -3108 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_443_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_207_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n29_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n29_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n265_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n265_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n501_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n501_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n737_n509#" "m1_70_160#"
diff --git a/mag/lvds/lvds_diffamp.mag b/mag/lvds/lvds_diffamp.mag
new file mode 100644
index 0000000..bfaa332
--- /dev/null
+++ b/mag/lvds/lvds_diffamp.mag
@@ -0,0 +1,177 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< pwell >>
+rect 130 1200 1498 1266
+rect 132 740 1498 756
+rect 132 706 1500 740
+rect 132 690 1498 706
+rect 132 632 1498 648
+rect 132 598 1500 632
+rect 132 582 1498 598
+rect 132 72 1498 138
+<< poly >>
+rect 130 1200 1498 1266
+rect 132 740 1498 756
+rect 132 706 1500 740
+rect 132 690 1498 706
+rect 132 632 1498 648
+rect 132 598 1500 632
+rect 132 582 1498 598
+rect 132 72 1498 138
+<< locali >>
+rect 130 1216 1498 1250
+rect 132 706 1500 740
+rect 132 598 1500 632
+rect 132 88 1498 122
+<< metal1 >>
+rect 70 1210 1560 1260
+rect 188 1002 198 1178
+rect 252 1002 262 1178
+rect 424 1002 434 1178
+rect 488 1002 498 1178
+rect 660 1002 670 1178
+rect 724 1002 734 1178
+rect 896 1002 906 1178
+rect 960 1002 970 1178
+rect 1132 1002 1142 1178
+rect 1196 1002 1206 1178
+rect 1368 1002 1378 1178
+rect 1432 1002 1442 1178
+rect 70 778 80 954
+rect 134 778 144 954
+rect 306 778 316 954
+rect 370 778 380 954
+rect 542 778 552 954
+rect 606 778 616 954
+rect 778 778 788 954
+rect 842 778 852 954
+rect 1014 778 1024 954
+rect 1078 778 1088 954
+rect 1250 778 1260 954
+rect 1314 778 1324 954
+rect 1486 778 1496 954
+rect 1550 778 1560 954
+rect 70 700 1560 750
+rect 70 590 1560 640
+rect 188 384 198 560
+rect 252 384 262 560
+rect 424 384 434 560
+rect 488 384 498 560
+rect 660 384 670 560
+rect 724 384 734 560
+rect 896 384 906 560
+rect 960 384 970 560
+rect 1132 384 1142 560
+rect 1196 384 1206 560
+rect 1368 384 1378 560
+rect 1432 384 1442 560
+rect 70 160 80 336
+rect 134 160 144 336
+rect 306 160 316 336
+rect 370 160 380 336
+rect 542 160 552 336
+rect 606 160 616 336
+rect 778 160 788 336
+rect 842 160 852 336
+rect 1014 160 1024 336
+rect 1078 160 1088 336
+rect 1250 160 1260 336
+rect 1314 160 1324 336
+rect 1486 160 1496 336
+rect 1550 160 1560 336
+rect 70 80 1560 130
+<< via1 >>
+rect 198 1002 252 1178
+rect 434 1002 488 1178
+rect 670 1002 724 1178
+rect 906 1002 960 1178
+rect 1142 1002 1196 1178
+rect 1378 1002 1432 1178
+rect 80 778 134 954
+rect 316 778 370 954
+rect 552 778 606 954
+rect 788 778 842 954
+rect 1024 778 1078 954
+rect 1260 778 1314 954
+rect 1496 778 1550 954
+rect 198 384 252 560
+rect 434 384 488 560
+rect 670 384 724 560
+rect 906 384 960 560
+rect 1142 384 1196 560
+rect 1378 384 1432 560
+rect 80 160 134 336
+rect 316 160 370 336
+rect 552 160 606 336
+rect 788 160 842 336
+rect 1024 160 1078 336
+rect 1260 160 1314 336
+rect 1496 160 1550 336
+<< metal2 >>
+rect 190 1178 1440 1190
+rect 190 1030 198 1178
+rect 252 1030 434 1178
+rect 198 992 252 1002
+rect 488 1030 670 1178
+rect 434 992 488 1002
+rect 724 1030 906 1178
+rect 670 992 724 1002
+rect 960 1030 1142 1178
+rect 906 992 960 1002
+rect 1196 1030 1378 1178
+rect 1142 992 1196 1002
+rect 1432 1030 1440 1178
+rect 1378 992 1432 1002
+rect 80 954 134 964
+rect 70 778 80 920
+rect 316 954 370 964
+rect 134 778 316 920
+rect 552 954 606 964
+rect 370 778 552 920
+rect 788 954 842 964
+rect 606 778 788 920
+rect 1024 954 1078 964
+rect 842 778 1024 920
+rect 1260 954 1314 964
+rect 1078 778 1260 920
+rect 1496 954 1550 964
+rect 1314 778 1496 920
+rect 1550 778 1560 920
+rect 70 760 1560 778
+rect 190 560 1440 570
+rect 190 410 198 560
+rect 252 410 434 560
+rect 198 374 252 384
+rect 488 410 670 560
+rect 434 374 488 384
+rect 724 410 906 560
+rect 670 374 724 384
+rect 960 410 1142 560
+rect 906 374 960 384
+rect 1196 410 1378 560
+rect 1142 374 1196 384
+rect 1432 410 1440 560
+rect 1378 374 1432 384
+rect 80 336 134 346
+rect 70 160 80 300
+rect 316 336 370 346
+rect 134 160 316 300
+rect 552 336 606 346
+rect 370 160 552 300
+rect 788 336 842 346
+rect 606 160 788 300
+rect 1024 336 1078 346
+rect 842 160 1024 300
+rect 1260 336 1314 346
+rect 1078 160 1260 300
+rect 1496 336 1550 346
+rect 1314 160 1496 300
+rect 1550 160 1560 300
+rect 70 140 1560 160
+use sky130_fd_pr__nfet_01v8_lvt_ZHX6G9  sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0
+timestamp 1654683408
+transform 1 0 815 0 1 669
+box -875 -719 875 719
+<< end >>
diff --git a/mag/lvds/lvds_nswitch.ext b/mag/lvds/lvds_nswitch.ext
new file mode 100644
index 0000000..22cf3d6
--- /dev/null
+++ b/mag/lvds/lvds_nswitch.ext
@@ -0,0 +1,154 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_RE4MKQ sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0 1 0 1267 0 1 619
+node "m1_30_110#" 10 1328.32 30 110 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169312 6500 420472 6196 0 0 0 0 0 0 0 0
+node "m1_30_728#" 17 1815.6 30 728 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 338624 13000 1333540 7800 0 0 0 0 0 0 0 0
+node "m1_126_952#" 10 1353.58 126 952 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169312 6500 421876 6248 0 0 0 0 0 0 0 0
+node "a_82_22#" 2626 2060.68 82 22 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156420 4872 0 0 80580 4808 280500 5320 0 0 0 0 0 0 0 0 0 0
+node "a_82_532#" 5372 2033.69 82 532 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312840 9744 0 0 161160 9616 408000 5420 0 0 0 0 0 0 0 0 0 0
+node "a_82_1150#" 2626 2076.1 82 1150 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156420 4872 0 0 80580 4808 280500 5320 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_30_110#" "a_82_22#" 1183.26
+cap "m1_30_728#" "a_82_532#" 4436.01
+cap "m1_126_952#" "a_82_1150#" 1109.31
+cap "m1_30_728#" "m1_30_110#" 1395.95
+cap "m1_30_728#" "a_82_22#" 139.755
+cap "m1_30_110#" "a_82_532#" 139.755
+cap "a_82_532#" "a_82_22#" 528.019
+cap "m1_126_952#" "m1_30_728#" 1176.02
+cap "m1_126_952#" "a_82_532#" 140.864
+cap "m1_30_728#" "a_82_1150#" 138.663
+cap "a_82_1150#" "a_82_532#" 528.019
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" -42
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" 1406.13
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 807.649
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" 1711.48
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" -84
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" -42
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" 1692.91
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 821.152
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 987.279
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" 1307.13
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" 755.334
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" -41.5882
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" 1365.44
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" 1276.2
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" -42
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" 826.563
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" -83.5882
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 892.958
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" -17
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 96.7515
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" -17
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" -17
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" 96.7515
+cap "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" -16.8333
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1167_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_975_n509#" 15455.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25660596 -11544 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_975_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_783_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_783_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_591_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_591_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_399_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_207_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_15_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n177_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n369_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n561_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n561_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n753_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n753_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n945_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n945_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1071_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1071_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_879_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_879_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_687_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_687_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_495_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_303_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_111_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_111_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n81_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n273_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n465_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n657_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n657_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n849_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n849_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1041_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1041_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_109#" "m1_30_728#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1119_n597#" "a_82_22#" -176702 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -48565584 -16732 0 0 -15792840 -10068 -50668632 -10400 0 0 0 0 0 0 0 0 0 0
+merge "a_82_22#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_927_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_927_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1023_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1023_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_735_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_735_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_831_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_831_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_543_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_543_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_639_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_639_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_351_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_351_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_447_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_447_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_159_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_159_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_255_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_255_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n33_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n33_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_63_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_63_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n225_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n225_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n129_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n129_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n417_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n417_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n321_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n321_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n609_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n609_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n513_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n513_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n801_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n801_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n705_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n705_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n993_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n993_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n897_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n897_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_n597#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1089_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1089_n87#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1023_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1023_21#" "a_82_532#"
+merge "a_82_532#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1119_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1119_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_831_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_831_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_927_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_927_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_639_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_639_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_735_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_735_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_447_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_447_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_543_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_543_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_255_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_255_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_351_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_351_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_63_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_63_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_159_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_159_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n129_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n129_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n33_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n33_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n321_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n321_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n225_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n225_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n513_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n513_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n417_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n417_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n705_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n705_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n609_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n609_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n897_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n897_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n801_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n801_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1089_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1089_21#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n993_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n993_531#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1185_531#" "a_82_1150#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1071_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_879_n509#" 10681.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17609940 -5772 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_879_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_687_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_687_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_495_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_303_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_111_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n81_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n273_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n465_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n657_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n657_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n849_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n849_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1041_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1041_n509#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1229_n509#" "m1_30_110#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_1167_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_975_109#" 4548.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8127288 -5772 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_975_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_783_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_783_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_591_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_591_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_399_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_207_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_15_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n177_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n369_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n561_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n561_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n753_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n753_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n945_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n945_109#" "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#"
+merge "sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1137_109#" "m1_126_952#"
diff --git a/mag/lvds/lvds_nswitch.mag b/mag/lvds/lvds_nswitch.mag
new file mode 100644
index 0000000..b3739d5
--- /dev/null
+++ b/mag/lvds/lvds_nswitch.mag
@@ -0,0 +1,564 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< pwell >>
+rect 82 1150 2452 1216
+rect 82 640 2452 706
+rect 82 532 2452 598
+rect 82 22 2452 88
+<< poly >>
+rect 82 1200 2452 1216
+rect 82 1166 194 1200
+rect 228 1166 386 1200
+rect 420 1166 578 1200
+rect 612 1166 770 1200
+rect 804 1166 962 1200
+rect 996 1166 1154 1200
+rect 1188 1166 1346 1200
+rect 1380 1166 1538 1200
+rect 1572 1166 1730 1200
+rect 1764 1166 1922 1200
+rect 1956 1166 2114 1200
+rect 2148 1166 2306 1200
+rect 2340 1166 2452 1200
+rect 82 1150 2452 1166
+rect 82 690 2452 706
+rect 82 656 98 690
+rect 132 656 290 690
+rect 324 656 482 690
+rect 516 656 674 690
+rect 708 656 866 690
+rect 900 656 1058 690
+rect 1092 656 1250 690
+rect 1284 656 1442 690
+rect 1476 656 1634 690
+rect 1668 656 1826 690
+rect 1860 656 2018 690
+rect 2052 656 2210 690
+rect 2244 656 2402 690
+rect 2436 656 2452 690
+rect 82 640 2452 656
+rect 82 582 2452 598
+rect 82 548 98 582
+rect 132 548 290 582
+rect 324 548 482 582
+rect 516 548 674 582
+rect 708 548 866 582
+rect 900 548 1058 582
+rect 1092 548 1250 582
+rect 1284 548 1442 582
+rect 1476 548 1634 582
+rect 1668 548 1826 582
+rect 1860 548 2018 582
+rect 2052 548 2210 582
+rect 2244 548 2402 582
+rect 2436 548 2452 582
+rect 82 532 2452 548
+rect 82 72 2452 88
+rect 82 38 194 72
+rect 228 38 386 72
+rect 420 38 578 72
+rect 612 38 770 72
+rect 804 38 962 72
+rect 996 38 1154 72
+rect 1188 38 1346 72
+rect 1380 38 1538 72
+rect 1572 38 1730 72
+rect 1764 38 1922 72
+rect 1956 38 2114 72
+rect 2148 38 2306 72
+rect 2340 38 2452 72
+rect 82 22 2452 38
+<< polycont >>
+rect 194 1166 228 1200
+rect 386 1166 420 1200
+rect 578 1166 612 1200
+rect 770 1166 804 1200
+rect 962 1166 996 1200
+rect 1154 1166 1188 1200
+rect 1346 1166 1380 1200
+rect 1538 1166 1572 1200
+rect 1730 1166 1764 1200
+rect 1922 1166 1956 1200
+rect 2114 1166 2148 1200
+rect 2306 1166 2340 1200
+rect 98 656 132 690
+rect 290 656 324 690
+rect 482 656 516 690
+rect 674 656 708 690
+rect 866 656 900 690
+rect 1058 656 1092 690
+rect 1250 656 1284 690
+rect 1442 656 1476 690
+rect 1634 656 1668 690
+rect 1826 656 1860 690
+rect 2018 656 2052 690
+rect 2210 656 2244 690
+rect 2402 656 2436 690
+rect 98 548 132 582
+rect 290 548 324 582
+rect 482 548 516 582
+rect 674 548 708 582
+rect 866 548 900 582
+rect 1058 548 1092 582
+rect 1250 548 1284 582
+rect 1442 548 1476 582
+rect 1634 548 1668 582
+rect 1826 548 1860 582
+rect 2018 548 2052 582
+rect 2210 548 2244 582
+rect 2402 548 2436 582
+rect 194 38 228 72
+rect 386 38 420 72
+rect 578 38 612 72
+rect 770 38 804 72
+rect 962 38 996 72
+rect 1154 38 1188 72
+rect 1346 38 1380 72
+rect 1538 38 1572 72
+rect 1730 38 1764 72
+rect 1922 38 1956 72
+rect 2114 38 2148 72
+rect 2306 38 2340 72
+<< locali >>
+rect 82 1166 194 1200
+rect 228 1166 386 1200
+rect 420 1166 578 1200
+rect 612 1166 770 1200
+rect 804 1166 962 1200
+rect 996 1166 1154 1200
+rect 1188 1166 1346 1200
+rect 1380 1166 1538 1200
+rect 1572 1166 1730 1200
+rect 1764 1166 1922 1200
+rect 1956 1166 2114 1200
+rect 2148 1166 2306 1200
+rect 2340 1166 2452 1200
+rect 82 656 98 690
+rect 132 656 290 690
+rect 324 656 482 690
+rect 516 656 674 690
+rect 708 656 866 690
+rect 900 656 1058 690
+rect 1092 656 1250 690
+rect 1284 656 1442 690
+rect 1476 656 1634 690
+rect 1668 656 1826 690
+rect 1860 656 2018 690
+rect 2052 656 2210 690
+rect 2244 656 2402 690
+rect 2436 656 2452 690
+rect 82 548 98 582
+rect 132 548 290 582
+rect 324 548 482 582
+rect 516 548 674 582
+rect 708 548 866 582
+rect 900 548 1058 582
+rect 1092 548 1250 582
+rect 1284 548 1442 582
+rect 1476 548 1634 582
+rect 1668 548 1826 582
+rect 1860 548 2018 582
+rect 2052 548 2210 582
+rect 2244 548 2402 582
+rect 2436 548 2452 582
+rect 82 38 194 72
+rect 228 38 386 72
+rect 420 38 578 72
+rect 612 38 770 72
+rect 804 38 962 72
+rect 996 38 1154 72
+rect 1188 38 1346 72
+rect 1380 38 1538 72
+rect 1572 38 1730 72
+rect 1764 38 1922 72
+rect 1956 38 2114 72
+rect 2148 38 2306 72
+rect 2340 38 2452 72
+<< viali >>
+rect 194 1166 228 1200
+rect 386 1166 420 1200
+rect 578 1166 612 1200
+rect 770 1166 804 1200
+rect 962 1166 996 1200
+rect 1154 1166 1188 1200
+rect 1346 1166 1380 1200
+rect 1538 1166 1572 1200
+rect 1730 1166 1764 1200
+rect 1922 1166 1956 1200
+rect 2114 1166 2148 1200
+rect 2306 1166 2340 1200
+rect 98 656 132 690
+rect 290 656 324 690
+rect 482 656 516 690
+rect 674 656 708 690
+rect 866 656 900 690
+rect 1058 656 1092 690
+rect 1250 656 1284 690
+rect 1442 656 1476 690
+rect 1634 656 1668 690
+rect 1826 656 1860 690
+rect 2018 656 2052 690
+rect 2210 656 2244 690
+rect 2402 656 2436 690
+rect 98 548 132 582
+rect 290 548 324 582
+rect 482 548 516 582
+rect 674 548 708 582
+rect 866 548 900 582
+rect 1058 548 1092 582
+rect 1250 548 1284 582
+rect 1442 548 1476 582
+rect 1634 548 1668 582
+rect 1826 548 1860 582
+rect 2018 548 2052 582
+rect 2210 548 2244 582
+rect 2402 548 2436 582
+rect 194 38 228 72
+rect 386 38 420 72
+rect 578 38 612 72
+rect 770 38 804 72
+rect 962 38 996 72
+rect 1154 38 1188 72
+rect 1346 38 1380 72
+rect 1538 38 1572 72
+rect 1730 38 1764 72
+rect 1922 38 1956 72
+rect 2114 38 2148 72
+rect 2306 38 2340 72
+<< metal1 >>
+rect -10 1200 2540 1270
+rect -10 1166 194 1200
+rect 228 1166 386 1200
+rect 420 1166 578 1200
+rect 612 1166 770 1200
+rect 804 1166 962 1200
+rect 996 1166 1154 1200
+rect 1188 1166 1346 1200
+rect 1380 1166 1538 1200
+rect 1572 1166 1730 1200
+rect 1764 1166 1922 1200
+rect 1956 1166 2114 1200
+rect 2148 1166 2306 1200
+rect 2340 1166 2540 1200
+rect -10 1160 2540 1166
+rect 126 952 136 1128
+rect 190 952 200 1128
+rect 318 952 328 1128
+rect 382 952 392 1128
+rect 510 952 520 1128
+rect 574 952 584 1128
+rect 702 952 712 1128
+rect 766 952 776 1128
+rect 894 952 904 1128
+rect 958 952 968 1128
+rect 1086 952 1096 1128
+rect 1150 952 1160 1128
+rect 1278 952 1288 1128
+rect 1342 952 1352 1128
+rect 1470 952 1480 1128
+rect 1534 952 1544 1128
+rect 1662 952 1672 1128
+rect 1726 952 1736 1128
+rect 1854 952 1864 1128
+rect 1918 952 1928 1128
+rect 2046 952 2056 1128
+rect 2110 952 2120 1128
+rect 2238 952 2248 1128
+rect 2302 952 2312 1128
+rect 2430 952 2440 1128
+rect 2494 952 2504 1128
+rect 30 728 40 904
+rect 94 728 104 904
+rect 222 728 232 904
+rect 286 728 296 904
+rect 414 728 424 904
+rect 478 728 488 904
+rect 606 728 616 904
+rect 670 728 680 904
+rect 798 728 808 904
+rect 862 728 872 904
+rect 990 728 1000 904
+rect 1054 728 1064 904
+rect 1182 728 1192 904
+rect 1246 728 1256 904
+rect 1374 728 1384 904
+rect 1438 728 1448 904
+rect 1566 728 1576 904
+rect 1630 728 1640 904
+rect 1758 728 1768 904
+rect 1822 728 1832 904
+rect 1950 728 1960 904
+rect 2014 728 2024 904
+rect 2142 728 2152 904
+rect 2206 728 2216 904
+rect 2334 728 2344 904
+rect 2398 728 2408 904
+rect -10 690 2540 700
+rect -10 656 98 690
+rect 132 656 290 690
+rect 324 656 482 690
+rect 516 656 674 690
+rect 708 656 866 690
+rect 900 656 1058 690
+rect 1092 656 1250 690
+rect 1284 656 1442 690
+rect 1476 656 1634 690
+rect 1668 656 1826 690
+rect 1860 656 2018 690
+rect 2052 656 2210 690
+rect 2244 656 2402 690
+rect 2436 656 2540 690
+rect -10 582 2540 656
+rect -10 548 98 582
+rect 132 548 290 582
+rect 324 548 482 582
+rect 516 548 674 582
+rect 708 548 866 582
+rect 900 548 1058 582
+rect 1092 548 1250 582
+rect 1284 548 1442 582
+rect 1476 548 1634 582
+rect 1668 548 1826 582
+rect 1860 548 2018 582
+rect 2052 548 2210 582
+rect 2244 548 2402 582
+rect 2436 548 2540 582
+rect -10 540 2540 548
+rect 126 334 136 510
+rect 190 334 200 510
+rect 318 334 328 510
+rect 382 334 392 510
+rect 510 334 520 510
+rect 574 334 584 510
+rect 702 334 712 510
+rect 766 334 776 510
+rect 894 334 904 510
+rect 958 334 968 510
+rect 1086 334 1096 510
+rect 1150 334 1160 510
+rect 1278 334 1288 510
+rect 1342 334 1352 510
+rect 1470 334 1480 510
+rect 1534 334 1544 510
+rect 1662 334 1672 510
+rect 1726 334 1736 510
+rect 1854 334 1864 510
+rect 1918 334 1928 510
+rect 2046 334 2056 510
+rect 2110 334 2120 510
+rect 2238 334 2248 510
+rect 2302 334 2312 510
+rect 2430 334 2440 510
+rect 2494 334 2504 510
+rect 30 110 40 286
+rect 94 110 104 286
+rect 222 110 232 286
+rect 286 110 296 286
+rect 414 110 424 286
+rect 478 110 488 286
+rect 606 110 616 286
+rect 670 110 680 286
+rect 798 110 808 286
+rect 862 110 872 286
+rect 990 110 1000 286
+rect 1054 110 1064 286
+rect 1182 110 1192 286
+rect 1246 110 1256 286
+rect 1374 110 1384 286
+rect 1438 110 1448 286
+rect 1566 110 1576 286
+rect 1630 110 1640 286
+rect 1758 110 1768 286
+rect 1822 110 1832 286
+rect 1950 110 1960 286
+rect 2014 110 2024 286
+rect 2142 110 2152 286
+rect 2206 110 2216 286
+rect 2334 110 2344 286
+rect 2398 110 2408 286
+rect -10 72 2540 80
+rect -10 38 194 72
+rect 228 38 386 72
+rect 420 38 578 72
+rect 612 38 770 72
+rect 804 38 962 72
+rect 996 38 1154 72
+rect 1188 38 1346 72
+rect 1380 38 1538 72
+rect 1572 38 1730 72
+rect 1764 38 1922 72
+rect 1956 38 2114 72
+rect 2148 38 2306 72
+rect 2340 38 2540 72
+rect -10 -30 2540 38
+<< via1 >>
+rect 136 952 190 1128
+rect 328 952 382 1128
+rect 520 952 574 1128
+rect 712 952 766 1128
+rect 904 952 958 1128
+rect 1096 952 1150 1128
+rect 1288 952 1342 1128
+rect 1480 952 1534 1128
+rect 1672 952 1726 1128
+rect 1864 952 1918 1128
+rect 2056 952 2110 1128
+rect 2248 952 2302 1128
+rect 2440 952 2494 1128
+rect 40 728 94 904
+rect 232 728 286 904
+rect 424 728 478 904
+rect 616 728 670 904
+rect 808 728 862 904
+rect 1000 728 1054 904
+rect 1192 728 1246 904
+rect 1384 728 1438 904
+rect 1576 728 1630 904
+rect 1768 728 1822 904
+rect 1960 728 2014 904
+rect 2152 728 2206 904
+rect 2344 728 2398 904
+rect 136 334 190 510
+rect 328 334 382 510
+rect 520 334 574 510
+rect 712 334 766 510
+rect 904 334 958 510
+rect 1096 334 1150 510
+rect 1288 334 1342 510
+rect 1480 334 1534 510
+rect 1672 334 1726 510
+rect 1864 334 1918 510
+rect 2056 334 2110 510
+rect 2248 334 2302 510
+rect 2440 334 2494 510
+rect 40 110 94 286
+rect 232 110 286 286
+rect 424 110 478 286
+rect 616 110 670 286
+rect 808 110 862 286
+rect 1000 110 1054 286
+rect 1192 110 1246 286
+rect 1384 110 1438 286
+rect 1576 110 1630 286
+rect 1768 110 1822 286
+rect 1960 110 2014 286
+rect 2152 110 2206 286
+rect 2344 110 2398 286
+<< metal2 >>
+rect 30 1128 2500 1140
+rect 30 980 136 1128
+rect 190 980 328 1128
+rect 136 942 190 952
+rect 382 980 520 1128
+rect 328 942 382 952
+rect 574 980 712 1128
+rect 520 942 574 952
+rect 766 980 904 1128
+rect 712 942 766 952
+rect 958 980 1096 1128
+rect 904 942 958 952
+rect 1150 980 1288 1128
+rect 1096 942 1150 952
+rect 1342 980 1480 1128
+rect 1288 942 1342 952
+rect 1534 980 1672 1128
+rect 1480 942 1534 952
+rect 1726 980 1864 1128
+rect 1672 942 1726 952
+rect 1918 980 2056 1128
+rect 1864 942 1918 952
+rect 2110 980 2248 1128
+rect 2056 942 2110 952
+rect 2302 980 2440 1128
+rect 2248 942 2302 952
+rect 2494 980 2500 1128
+rect 2440 942 2494 952
+rect 40 904 94 914
+rect 30 728 40 870
+rect 232 904 286 914
+rect 94 728 232 870
+rect 424 904 478 914
+rect 286 728 424 870
+rect 616 904 670 914
+rect 478 728 616 870
+rect 808 904 862 914
+rect 670 728 808 870
+rect 1000 904 1054 914
+rect 862 728 1000 870
+rect 1192 904 1246 914
+rect 1054 728 1192 870
+rect 1384 904 1438 914
+rect 1246 728 1384 870
+rect 1576 904 1630 914
+rect 1438 728 1576 870
+rect 1768 904 1822 914
+rect 1630 728 1768 870
+rect 1960 904 2014 914
+rect 1822 728 1960 870
+rect 2152 904 2206 914
+rect 2014 728 2152 870
+rect 2344 904 2398 914
+rect 2206 728 2344 870
+rect 2398 728 2500 870
+rect 30 510 2500 728
+rect 30 350 136 510
+rect 190 350 328 510
+rect 136 324 190 334
+rect 382 350 520 510
+rect 328 324 382 334
+rect 574 350 712 510
+rect 520 324 574 334
+rect 766 350 904 510
+rect 712 324 766 334
+rect 958 350 1096 510
+rect 904 324 958 334
+rect 1150 350 1288 510
+rect 1096 324 1150 334
+rect 1342 350 1480 510
+rect 1288 324 1342 334
+rect 1534 350 1672 510
+rect 1480 324 1534 334
+rect 1726 350 1864 510
+rect 1672 324 1726 334
+rect 1918 350 2056 510
+rect 1864 324 1918 334
+rect 2110 350 2248 510
+rect 2056 324 2110 334
+rect 2302 350 2440 510
+rect 2248 324 2302 334
+rect 2494 350 2500 510
+rect 2440 324 2494 334
+rect 40 286 94 296
+rect 232 286 286 296
+rect 94 110 232 260
+rect 424 286 478 296
+rect 286 110 424 260
+rect 616 286 670 296
+rect 478 110 616 260
+rect 808 286 862 296
+rect 670 110 808 260
+rect 1000 286 1054 296
+rect 862 110 1000 260
+rect 1192 286 1246 296
+rect 1054 110 1192 260
+rect 1384 286 1438 296
+rect 1246 110 1384 260
+rect 1576 286 1630 296
+rect 1438 110 1576 260
+rect 1768 286 1822 296
+rect 1630 110 1768 260
+rect 1960 286 2014 296
+rect 1822 110 1960 260
+rect 2152 286 2206 296
+rect 2014 110 2152 260
+rect 2344 286 2398 296
+rect 2206 110 2344 260
+rect 2398 110 2510 260
+rect 40 100 2510 110
+use sky130_fd_pr__nfet_01v8_lvt_RE4MKQ  sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0
+timestamp 1654683408
+transform 1 0 1267 0 1 619
+box -1367 -719 1367 719
+<< end >>
diff --git a/mag/lvds/lvds_switch_p.ext b/mag/lvds/lvds_switch_p.ext
new file mode 100644
index 0000000..28e06f2
--- /dev/null
+++ b/mag/lvds/lvds_switch_p.ext
@@ -0,0 +1,319 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_VCB4SW sky130_fd_pr__pfet_01v8_VCB4SW_0 1 0 1655 0 1 1049
+node "m1_178_212#" 12 1604.39 178 212 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208384 8000 500544 7340 0 0 0 0 0 0 0 0
+node "m1_274_438#" 12 1099.29 274 438 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195360 7500 467880 6884 0 0 0 0 0 0 0 0
+node "m1_274_848#" 12 1078.96 274 848 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195360 7500 467880 6884 0 0 0 0 0 0 0 0
+node "m1_178_1074#" 12 1190.09 178 1074 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208384 8000 500544 7340 0 0 0 0 0 0 0 0
+node "m1_178_1484#" 12 1176.93 178 1484 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208384 8000 500544 7340 0 0 0 0 0 0 0 0
+node "m1_274_1710#" 12 1508.57 274 1710 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 195360 7500 467880 6884 0 0 0 0 0 0 0 0
+node "a_230_116#" 3362 1999.6 230 116 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 193380 6184 0 0 96900 5768 309000 6380 0 0 0 0 0 0 0 0 0 0
+node "a_230_644#" 6773 1549 230 644 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 384960 12248 0 0 193800 11536 494400 6500 0 0 0 0 0 0 0 0 0 0
+node "a_230_1280#" 6843 1564.09 230 1280 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386760 12368 0 0 193800 11536 494400 6500 0 0 0 0 0 0 0 0 0 0
+node "a_230_1916#" 3327 2010.22 230 1916 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 192480 6124 0 0 96900 5768 309000 6380 0 0 0 0 0 0 0 0 0 0
+node "w_230_116#" 45047 580.14 230 116 nw 0 0 0 0 193380 6184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_644#" 44355 577.44 230 644 nw 0 0 0 0 192480 6124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_752#" 44355 577.44 230 752 nw 0 0 0 0 192480 6124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_1280#" 45047 580.14 230 1280 nw 0 0 0 0 193380 6184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_1388#" 45047 580.14 230 1388 nw 0 0 0 0 193380 6184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_230_1916#" 44355 577.44 230 1916 nw 0 0 0 0 192480 6124 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_178_1074#" "a_230_1280#" 1092.24
+cap "a_230_644#" "m1_274_848#" 1077.87
+cap "m1_274_438#" "m1_274_848#" 500.992
+cap "m1_178_212#" "m1_178_1074#" 6.34054
+cap "a_230_644#" "a_230_116#" 366.404
+cap "a_230_116#" "m1_274_438#" 158.756
+cap "a_230_644#" "a_230_1280#" 475.3
+cap "a_230_644#" "m1_178_212#" 166.754
+cap "m1_274_438#" "m1_178_212#" 1378.54
+cap "a_230_1916#" "a_230_1280#" 366.38
+cap "m1_178_1484#" "a_230_1280#" 1284.99
+cap "m1_274_848#" "a_230_1280#" 153.981
+cap "m1_274_1710#" "a_230_1916#" 1204.68
+cap "m1_274_1710#" "m1_178_1484#" 1378.54
+cap "a_230_116#" "m1_178_212#" 1365.3
+cap "a_230_644#" "m1_178_1074#" 165.491
+cap "m1_178_1484#" "m1_178_1074#" 536.072
+cap "a_230_644#" "m1_274_438#" 1137.75
+cap "m1_178_1074#" "m1_274_848#" 1378.54
+cap "m1_274_1710#" "a_230_1280#" 157.535
+cap "m1_178_1484#" "a_230_1916#" 168.037
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" -37.6996
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 157.167
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 438.832
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 19.0993
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 72.8109
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" 1835.53
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -325.527
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 536.685
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" -69.7033
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -279.746
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 466.554
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" -75.3992
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 19.0993
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" -34.7289
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 468.501
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" 1834.92
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 2489.7
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" -44.723
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" 25.0331
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" -253.903
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" 1803.79
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" -39.7873
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" -278.025
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" 589.313
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" -218.475
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" 513.114
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 297.525
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" 1805.97
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" 22.0662
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" -89.446
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" 597.979
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" -79.5747
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" -160.056
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" 560.232
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" -5.68391
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" 128.176
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#" 339.32
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" 3.15232
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" 339.249
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#" 196.935
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" 3.33775
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#" 51.5975
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" 59.2083
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" 181.925
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" 407.908
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#" -18.5602
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" 127.388
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" -9.28009
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#" 147.842
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#" 132.193
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" 1834.92
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 19.0993
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" -34.7289
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -208.117
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 463.253
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" -37.6996
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 19.0993
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 1670.79
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 499.372
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 26.4093
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" 1803.79
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" 631.664
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" 25.0331
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" -305.794
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" 149.386
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" -39.7873
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" -44.723
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" 22.0662
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" -134.489
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" 506.759
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" -9.28009
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" 376.853
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" -5.68391
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" 3.33775
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" 182.849
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" 70.1764
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" 3.15232
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" 339.32
+cap "w_230_1916#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" 119.454
+cap "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" 136.105
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/VSUBS" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1311_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_436#" 8632.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14543572 -6630 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_436#" "m1_274_1710#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1263_n933#" "a_230_116#" -678118 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -200555914 -30390 0 0 -48643968 -18102 -152030880 -18720 0 0 0 0 0 0 0 0 0 0
+merge "a_230_116#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_n933#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_n933#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_n405#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_n405#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_n297#" "a_230_644#"
+merge "a_230_644#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_n297#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_n297#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1263_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1263_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_231#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_231#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1263_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1263_339#" "a_230_1280#"
+merge "a_230_1280#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1071_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_879_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_687_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_495_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_303_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_111_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n273_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n465_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n657_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n849_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1233_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_339#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1425_339#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1359_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1167_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_975_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_783_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_591_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_399_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_207_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_15_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n177_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n369_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n561_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n753_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n945_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1137_867#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1329_867#" "a_230_1916#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1311_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_n200#" 10337 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16521592 -6630 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n200#" "m1_274_848#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1311_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_n836#" 26132.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41060888 -6630 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1119_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_927_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_735_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_543_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_159_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n33_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n225_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n417_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n609_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n801_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n993_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1185_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1377_n836#" "m1_274_438#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "w_230_116#" -137742 0 0 0 0 -46005124 -39862 0 0 714740 -5452 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 714740 -5452 0 0 0 0 0 0 0 0 0 0 0 0
+merge "w_230_116#" "w_230_644#"
+merge "w_230_644#" "w_230_752#"
+merge "w_230_752#" "w_230_1280#"
+merge "w_230_1280#" "w_230_1388#"
+merge "w_230_1388#" "w_230_1916#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1407_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_n200#" 10195.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16965984 -7072 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_n200#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n200#" "m1_178_1074#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1407_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_436#" 8992.12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15073500 -7072 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_436#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_436#" "m1_178_1484#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1407_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_n836#" 23390 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38076162 -7072 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1215_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_1023_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_831_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_639_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_447_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_255_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_63_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n129_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n321_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n513_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n705_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n897_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1089_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1281_n836#" "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#"
+merge "sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "m1_178_212#"
diff --git a/mag/lvds/lvds_switch_p.mag b/mag/lvds/lvds_switch_p.mag
new file mode 100644
index 0000000..b023f45
--- /dev/null
+++ b/mag/lvds/lvds_switch_p.mag
@@ -0,0 +1,1158 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< nwell >>
+rect 230 1916 3080 1982
+rect 248 1902 278 1916
+rect 440 1902 470 1916
+rect 632 1902 662 1916
+rect 824 1902 854 1916
+rect 1016 1902 1046 1916
+rect 1208 1902 1238 1916
+rect 1400 1902 1430 1916
+rect 1592 1910 1622 1916
+rect 1784 1910 1814 1916
+rect 1976 1910 2006 1916
+rect 2168 1910 2198 1916
+rect 2360 1910 2390 1916
+rect 2552 1910 2582 1916
+rect 2744 1910 2774 1916
+rect 2936 1910 2966 1916
+rect 344 1454 374 1466
+rect 536 1454 566 1466
+rect 728 1454 758 1466
+rect 920 1454 950 1464
+rect 1112 1454 1142 1466
+rect 1304 1454 1334 1464
+rect 1496 1454 1526 1464
+rect 1688 1454 1718 1466
+rect 1880 1454 1910 1466
+rect 2072 1454 2102 1468
+rect 2264 1454 2294 1468
+rect 2456 1454 2486 1466
+rect 2648 1454 2678 1466
+rect 2840 1454 2870 1464
+rect 3032 1454 3062 1466
+rect 230 1388 3080 1454
+rect 230 1280 3080 1346
+rect 344 1268 374 1280
+rect 536 1268 566 1280
+rect 728 1268 758 1280
+rect 920 1270 950 1280
+rect 1112 1268 1142 1280
+rect 1304 1270 1334 1280
+rect 1496 1270 1526 1280
+rect 1688 1268 1718 1280
+rect 1880 1268 1910 1280
+rect 2072 1266 2102 1280
+rect 2264 1266 2294 1280
+rect 2456 1268 2486 1280
+rect 2648 1268 2678 1280
+rect 2840 1270 2870 1280
+rect 3032 1268 3062 1280
+rect 248 818 278 832
+rect 440 818 470 832
+rect 632 818 662 832
+rect 824 818 854 832
+rect 1016 818 1046 832
+rect 1208 818 1238 832
+rect 1400 818 1430 832
+rect 1592 818 1622 824
+rect 1784 818 1814 824
+rect 1976 818 2006 824
+rect 2168 818 2198 824
+rect 2360 818 2390 824
+rect 2552 818 2582 824
+rect 2744 818 2774 824
+rect 2936 818 2966 824
+rect 230 752 3080 818
+rect 230 644 3080 710
+rect 248 630 278 644
+rect 440 630 470 644
+rect 632 630 662 644
+rect 824 630 854 644
+rect 1016 630 1046 644
+rect 1208 630 1238 644
+rect 1400 630 1430 644
+rect 1592 638 1622 644
+rect 1784 638 1814 644
+rect 1976 638 2006 644
+rect 2168 638 2198 644
+rect 2360 638 2390 644
+rect 2552 638 2582 644
+rect 2744 638 2774 644
+rect 2936 638 2966 644
+rect 344 182 374 194
+rect 536 182 566 194
+rect 728 182 758 194
+rect 920 182 950 192
+rect 1112 182 1142 194
+rect 1304 182 1334 192
+rect 1496 182 1526 192
+rect 1688 182 1718 194
+rect 1880 182 1910 194
+rect 2072 182 2102 196
+rect 2264 182 2294 196
+rect 2456 182 2486 194
+rect 2648 182 2678 194
+rect 2840 182 2870 192
+rect 3032 182 3062 194
+rect 230 116 3080 182
+<< poly >>
+rect 230 1966 3080 1982
+rect 230 1932 246 1966
+rect 280 1932 438 1966
+rect 472 1932 630 1966
+rect 664 1932 822 1966
+rect 856 1932 1014 1966
+rect 1048 1932 1206 1966
+rect 1240 1932 1398 1966
+rect 1432 1932 1590 1966
+rect 1624 1932 1782 1966
+rect 1816 1932 1974 1966
+rect 2008 1932 2166 1966
+rect 2200 1932 2358 1966
+rect 2392 1932 2550 1966
+rect 2584 1932 2742 1966
+rect 2776 1932 2934 1966
+rect 2968 1932 3080 1966
+rect 230 1916 3080 1932
+rect 248 1902 278 1916
+rect 440 1902 470 1916
+rect 632 1902 662 1916
+rect 824 1902 854 1916
+rect 1016 1902 1046 1916
+rect 1208 1902 1238 1916
+rect 1400 1902 1430 1916
+rect 1592 1910 1622 1916
+rect 1784 1910 1814 1916
+rect 1976 1910 2006 1916
+rect 2168 1910 2198 1916
+rect 2360 1910 2390 1916
+rect 2552 1910 2582 1916
+rect 2744 1910 2774 1916
+rect 2936 1910 2966 1916
+rect 344 1454 374 1466
+rect 536 1454 566 1466
+rect 728 1454 758 1466
+rect 920 1454 950 1464
+rect 1112 1454 1142 1466
+rect 1304 1454 1334 1464
+rect 1496 1454 1526 1464
+rect 1688 1454 1718 1466
+rect 1880 1454 1910 1466
+rect 2072 1454 2102 1468
+rect 2264 1454 2294 1468
+rect 2456 1454 2486 1466
+rect 2648 1454 2678 1466
+rect 2840 1454 2870 1464
+rect 3032 1454 3062 1466
+rect 230 1438 3080 1454
+rect 230 1404 342 1438
+rect 376 1404 534 1438
+rect 568 1404 726 1438
+rect 760 1404 918 1438
+rect 952 1404 1110 1438
+rect 1144 1404 1302 1438
+rect 1336 1404 1494 1438
+rect 1528 1404 1686 1438
+rect 1720 1404 1878 1438
+rect 1912 1404 2070 1438
+rect 2104 1404 2262 1438
+rect 2296 1404 2454 1438
+rect 2488 1404 2646 1438
+rect 2680 1404 2838 1438
+rect 2872 1404 3030 1438
+rect 3064 1404 3080 1438
+rect 230 1388 3080 1404
+rect 230 1330 3080 1346
+rect 230 1296 342 1330
+rect 376 1296 534 1330
+rect 568 1296 726 1330
+rect 760 1296 918 1330
+rect 952 1296 1110 1330
+rect 1144 1296 1302 1330
+rect 1336 1296 1494 1330
+rect 1528 1296 1686 1330
+rect 1720 1296 1878 1330
+rect 1912 1296 2070 1330
+rect 2104 1296 2262 1330
+rect 2296 1296 2454 1330
+rect 2488 1296 2646 1330
+rect 2680 1296 2838 1330
+rect 2872 1296 3030 1330
+rect 3064 1296 3080 1330
+rect 230 1280 3080 1296
+rect 344 1268 374 1280
+rect 536 1268 566 1280
+rect 728 1268 758 1280
+rect 920 1270 950 1280
+rect 1112 1268 1142 1280
+rect 1304 1270 1334 1280
+rect 1496 1270 1526 1280
+rect 1688 1268 1718 1280
+rect 1880 1268 1910 1280
+rect 2072 1266 2102 1280
+rect 2264 1266 2294 1280
+rect 2456 1268 2486 1280
+rect 2648 1268 2678 1280
+rect 2840 1270 2870 1280
+rect 3032 1268 3062 1280
+rect 248 818 278 832
+rect 440 818 470 832
+rect 632 818 662 832
+rect 824 818 854 832
+rect 1016 818 1046 832
+rect 1208 818 1238 832
+rect 1400 818 1430 832
+rect 1592 818 1622 824
+rect 1784 818 1814 824
+rect 1976 818 2006 824
+rect 2168 818 2198 824
+rect 2360 818 2390 824
+rect 2552 818 2582 824
+rect 2744 818 2774 824
+rect 2936 818 2966 824
+rect 230 802 3080 818
+rect 230 768 246 802
+rect 280 768 438 802
+rect 472 768 630 802
+rect 664 768 822 802
+rect 856 768 1014 802
+rect 1048 768 1206 802
+rect 1240 768 1398 802
+rect 1432 768 1590 802
+rect 1624 768 1782 802
+rect 1816 768 1974 802
+rect 2008 768 2166 802
+rect 2200 768 2358 802
+rect 2392 768 2550 802
+rect 2584 768 2742 802
+rect 2776 768 2934 802
+rect 2968 768 3080 802
+rect 230 752 3080 768
+rect 230 694 3080 710
+rect 230 660 246 694
+rect 280 660 438 694
+rect 472 660 630 694
+rect 664 660 822 694
+rect 856 660 1014 694
+rect 1048 660 1206 694
+rect 1240 660 1398 694
+rect 1432 660 1590 694
+rect 1624 660 1782 694
+rect 1816 660 1974 694
+rect 2008 660 2166 694
+rect 2200 660 2358 694
+rect 2392 660 2550 694
+rect 2584 660 2742 694
+rect 2776 660 2934 694
+rect 2968 660 3080 694
+rect 230 644 3080 660
+rect 248 630 278 644
+rect 440 630 470 644
+rect 632 630 662 644
+rect 824 630 854 644
+rect 1016 630 1046 644
+rect 1208 630 1238 644
+rect 1400 630 1430 644
+rect 1592 638 1622 644
+rect 1784 638 1814 644
+rect 1976 638 2006 644
+rect 2168 638 2198 644
+rect 2360 638 2390 644
+rect 2552 638 2582 644
+rect 2744 638 2774 644
+rect 2936 638 2966 644
+rect 344 182 374 194
+rect 536 182 566 194
+rect 728 182 758 194
+rect 920 182 950 192
+rect 1112 182 1142 194
+rect 1304 182 1334 192
+rect 1496 182 1526 192
+rect 1688 182 1718 194
+rect 1880 182 1910 194
+rect 2072 182 2102 196
+rect 2264 182 2294 196
+rect 2456 182 2486 194
+rect 2648 182 2678 194
+rect 2840 182 2870 192
+rect 3032 182 3062 194
+rect 230 166 3080 182
+rect 230 132 342 166
+rect 376 132 534 166
+rect 568 132 726 166
+rect 760 132 918 166
+rect 952 132 1110 166
+rect 1144 132 1302 166
+rect 1336 132 1494 166
+rect 1528 132 1686 166
+rect 1720 132 1878 166
+rect 1912 132 2070 166
+rect 2104 132 2262 166
+rect 2296 132 2454 166
+rect 2488 132 2646 166
+rect 2680 132 2838 166
+rect 2872 132 3030 166
+rect 3064 132 3080 166
+rect 230 116 3080 132
+<< polycont >>
+rect 246 1932 280 1966
+rect 438 1932 472 1966
+rect 630 1932 664 1966
+rect 822 1932 856 1966
+rect 1014 1932 1048 1966
+rect 1206 1932 1240 1966
+rect 1398 1932 1432 1966
+rect 1590 1932 1624 1966
+rect 1782 1932 1816 1966
+rect 1974 1932 2008 1966
+rect 2166 1932 2200 1966
+rect 2358 1932 2392 1966
+rect 2550 1932 2584 1966
+rect 2742 1932 2776 1966
+rect 2934 1932 2968 1966
+rect 342 1404 376 1438
+rect 534 1404 568 1438
+rect 726 1404 760 1438
+rect 918 1404 952 1438
+rect 1110 1404 1144 1438
+rect 1302 1404 1336 1438
+rect 1494 1404 1528 1438
+rect 1686 1404 1720 1438
+rect 1878 1404 1912 1438
+rect 2070 1404 2104 1438
+rect 2262 1404 2296 1438
+rect 2454 1404 2488 1438
+rect 2646 1404 2680 1438
+rect 2838 1404 2872 1438
+rect 3030 1404 3064 1438
+rect 342 1296 376 1330
+rect 534 1296 568 1330
+rect 726 1296 760 1330
+rect 918 1296 952 1330
+rect 1110 1296 1144 1330
+rect 1302 1296 1336 1330
+rect 1494 1296 1528 1330
+rect 1686 1296 1720 1330
+rect 1878 1296 1912 1330
+rect 2070 1296 2104 1330
+rect 2262 1296 2296 1330
+rect 2454 1296 2488 1330
+rect 2646 1296 2680 1330
+rect 2838 1296 2872 1330
+rect 3030 1296 3064 1330
+rect 246 768 280 802
+rect 438 768 472 802
+rect 630 768 664 802
+rect 822 768 856 802
+rect 1014 768 1048 802
+rect 1206 768 1240 802
+rect 1398 768 1432 802
+rect 1590 768 1624 802
+rect 1782 768 1816 802
+rect 1974 768 2008 802
+rect 2166 768 2200 802
+rect 2358 768 2392 802
+rect 2550 768 2584 802
+rect 2742 768 2776 802
+rect 2934 768 2968 802
+rect 246 660 280 694
+rect 438 660 472 694
+rect 630 660 664 694
+rect 822 660 856 694
+rect 1014 660 1048 694
+rect 1206 660 1240 694
+rect 1398 660 1432 694
+rect 1590 660 1624 694
+rect 1782 660 1816 694
+rect 1974 660 2008 694
+rect 2166 660 2200 694
+rect 2358 660 2392 694
+rect 2550 660 2584 694
+rect 2742 660 2776 694
+rect 2934 660 2968 694
+rect 342 132 376 166
+rect 534 132 568 166
+rect 726 132 760 166
+rect 918 132 952 166
+rect 1110 132 1144 166
+rect 1302 132 1336 166
+rect 1494 132 1528 166
+rect 1686 132 1720 166
+rect 1878 132 1912 166
+rect 2070 132 2104 166
+rect 2262 132 2296 166
+rect 2454 132 2488 166
+rect 2646 132 2680 166
+rect 2838 132 2872 166
+rect 3030 132 3064 166
+<< locali >>
+rect 230 1932 246 1966
+rect 280 1932 438 1966
+rect 472 1932 630 1966
+rect 664 1932 822 1966
+rect 856 1932 1014 1966
+rect 1048 1932 1206 1966
+rect 1240 1932 1398 1966
+rect 1432 1932 1590 1966
+rect 1624 1932 1782 1966
+rect 1816 1932 1974 1966
+rect 2008 1932 2166 1966
+rect 2200 1932 2358 1966
+rect 2392 1932 2550 1966
+rect 2584 1932 2742 1966
+rect 2776 1932 2934 1966
+rect 2968 1932 3080 1966
+rect 230 1404 342 1438
+rect 376 1404 534 1438
+rect 568 1404 726 1438
+rect 760 1404 918 1438
+rect 952 1404 1110 1438
+rect 1144 1404 1302 1438
+rect 1336 1404 1494 1438
+rect 1528 1404 1686 1438
+rect 1720 1404 1878 1438
+rect 1912 1404 2070 1438
+rect 2104 1404 2262 1438
+rect 2296 1404 2454 1438
+rect 2488 1404 2646 1438
+rect 2680 1404 2838 1438
+rect 2872 1404 3030 1438
+rect 3064 1404 3080 1438
+rect 230 1296 342 1330
+rect 376 1296 534 1330
+rect 568 1296 726 1330
+rect 760 1296 918 1330
+rect 952 1296 1110 1330
+rect 1144 1296 1302 1330
+rect 1336 1296 1494 1330
+rect 1528 1296 1686 1330
+rect 1720 1296 1878 1330
+rect 1912 1296 2070 1330
+rect 2104 1296 2262 1330
+rect 2296 1296 2454 1330
+rect 2488 1296 2646 1330
+rect 2680 1296 2838 1330
+rect 2872 1296 3030 1330
+rect 3064 1296 3080 1330
+rect 230 768 246 802
+rect 280 768 438 802
+rect 472 768 630 802
+rect 664 768 822 802
+rect 856 768 1014 802
+rect 1048 768 1206 802
+rect 1240 768 1398 802
+rect 1432 768 1590 802
+rect 1624 768 1782 802
+rect 1816 768 1974 802
+rect 2008 768 2166 802
+rect 2200 768 2358 802
+rect 2392 768 2550 802
+rect 2584 768 2742 802
+rect 2776 768 2934 802
+rect 2968 768 3080 802
+rect 230 660 246 694
+rect 280 660 438 694
+rect 472 660 630 694
+rect 664 660 822 694
+rect 856 660 1014 694
+rect 1048 660 1206 694
+rect 1240 660 1398 694
+rect 1432 660 1590 694
+rect 1624 660 1782 694
+rect 1816 660 1974 694
+rect 2008 660 2166 694
+rect 2200 660 2358 694
+rect 2392 660 2550 694
+rect 2584 660 2742 694
+rect 2776 660 2934 694
+rect 2968 660 3080 694
+rect 230 132 342 166
+rect 376 132 534 166
+rect 568 132 726 166
+rect 760 132 918 166
+rect 952 132 1110 166
+rect 1144 132 1302 166
+rect 1336 132 1494 166
+rect 1528 132 1686 166
+rect 1720 132 1878 166
+rect 1912 132 2070 166
+rect 2104 132 2262 166
+rect 2296 132 2454 166
+rect 2488 132 2646 166
+rect 2680 132 2838 166
+rect 2872 132 3030 166
+rect 3064 132 3080 166
+<< viali >>
+rect 246 1932 280 1966
+rect 438 1932 472 1966
+rect 630 1932 664 1966
+rect 822 1932 856 1966
+rect 1014 1932 1048 1966
+rect 1206 1932 1240 1966
+rect 1398 1932 1432 1966
+rect 1590 1932 1624 1966
+rect 1782 1932 1816 1966
+rect 1974 1932 2008 1966
+rect 2166 1932 2200 1966
+rect 2358 1932 2392 1966
+rect 2550 1932 2584 1966
+rect 2742 1932 2776 1966
+rect 2934 1932 2968 1966
+rect 342 1404 376 1438
+rect 534 1404 568 1438
+rect 726 1404 760 1438
+rect 918 1404 952 1438
+rect 1110 1404 1144 1438
+rect 1302 1404 1336 1438
+rect 1494 1404 1528 1438
+rect 1686 1404 1720 1438
+rect 1878 1404 1912 1438
+rect 2070 1404 2104 1438
+rect 2262 1404 2296 1438
+rect 2454 1404 2488 1438
+rect 2646 1404 2680 1438
+rect 2838 1404 2872 1438
+rect 3030 1404 3064 1438
+rect 342 1296 376 1330
+rect 534 1296 568 1330
+rect 726 1296 760 1330
+rect 918 1296 952 1330
+rect 1110 1296 1144 1330
+rect 1302 1296 1336 1330
+rect 1494 1296 1528 1330
+rect 1686 1296 1720 1330
+rect 1878 1296 1912 1330
+rect 2070 1296 2104 1330
+rect 2262 1296 2296 1330
+rect 2454 1296 2488 1330
+rect 2646 1296 2680 1330
+rect 2838 1296 2872 1330
+rect 3030 1296 3064 1330
+rect 246 768 280 802
+rect 438 768 472 802
+rect 630 768 664 802
+rect 822 768 856 802
+rect 1014 768 1048 802
+rect 1206 768 1240 802
+rect 1398 768 1432 802
+rect 1590 768 1624 802
+rect 1782 768 1816 802
+rect 1974 768 2008 802
+rect 2166 768 2200 802
+rect 2358 768 2392 802
+rect 2550 768 2584 802
+rect 2742 768 2776 802
+rect 2934 768 2968 802
+rect 246 660 280 694
+rect 438 660 472 694
+rect 630 660 664 694
+rect 822 660 856 694
+rect 1014 660 1048 694
+rect 1206 660 1240 694
+rect 1398 660 1432 694
+rect 1590 660 1624 694
+rect 1782 660 1816 694
+rect 1974 660 2008 694
+rect 2166 660 2200 694
+rect 2358 660 2392 694
+rect 2550 660 2584 694
+rect 2742 660 2776 694
+rect 2934 660 2968 694
+rect 342 132 376 166
+rect 534 132 568 166
+rect 726 132 760 166
+rect 918 132 952 166
+rect 1110 132 1144 166
+rect 1302 132 1336 166
+rect 1494 132 1528 166
+rect 1686 132 1720 166
+rect 1878 132 1912 166
+rect 2070 132 2104 166
+rect 2262 132 2296 166
+rect 2454 132 2488 166
+rect 2646 132 2680 166
+rect 2838 132 2872 166
+rect 3030 132 3064 166
+<< metal1 >>
+rect 110 1966 3200 2020
+rect 110 1932 246 1966
+rect 280 1932 438 1966
+rect 472 1932 630 1966
+rect 664 1932 822 1966
+rect 856 1932 1014 1966
+rect 1048 1932 1206 1966
+rect 1240 1932 1398 1966
+rect 1432 1932 1590 1966
+rect 1624 1932 1782 1966
+rect 1816 1932 1974 1966
+rect 2008 1932 2166 1966
+rect 2200 1932 2358 1966
+rect 2392 1932 2550 1966
+rect 2584 1932 2742 1966
+rect 2776 1932 2934 1966
+rect 2968 1932 3200 1966
+rect 110 1920 3200 1932
+rect 274 1710 284 1886
+rect 338 1710 348 1886
+rect 466 1710 476 1886
+rect 530 1710 540 1886
+rect 658 1710 668 1886
+rect 722 1710 732 1886
+rect 850 1710 860 1886
+rect 914 1710 924 1886
+rect 1042 1710 1052 1886
+rect 1106 1710 1116 1886
+rect 1234 1710 1244 1886
+rect 1298 1710 1308 1886
+rect 1426 1710 1436 1886
+rect 1490 1710 1500 1886
+rect 1618 1710 1628 1886
+rect 1682 1710 1692 1886
+rect 1810 1710 1820 1886
+rect 1874 1710 1884 1886
+rect 2002 1710 2012 1886
+rect 2066 1710 2076 1886
+rect 2194 1710 2204 1886
+rect 2258 1710 2268 1886
+rect 2386 1710 2396 1886
+rect 2450 1710 2460 1886
+rect 2578 1710 2588 1886
+rect 2642 1710 2652 1886
+rect 2770 1710 2780 1886
+rect 2834 1710 2844 1886
+rect 2962 1710 2972 1886
+rect 3026 1710 3036 1886
+rect 178 1484 188 1660
+rect 242 1484 252 1660
+rect 370 1484 380 1660
+rect 434 1484 444 1660
+rect 562 1484 572 1660
+rect 626 1484 636 1660
+rect 754 1484 764 1660
+rect 818 1484 828 1660
+rect 946 1484 956 1660
+rect 1010 1484 1020 1660
+rect 1138 1484 1148 1660
+rect 1202 1484 1212 1660
+rect 1330 1484 1340 1660
+rect 1394 1484 1404 1660
+rect 1522 1484 1532 1660
+rect 1586 1484 1596 1660
+rect 1714 1484 1724 1660
+rect 1778 1484 1788 1660
+rect 1906 1484 1916 1660
+rect 1970 1484 1980 1660
+rect 2098 1484 2108 1660
+rect 2162 1484 2172 1660
+rect 2290 1484 2300 1660
+rect 2354 1484 2364 1660
+rect 2482 1484 2492 1660
+rect 2546 1484 2556 1660
+rect 2674 1484 2684 1660
+rect 2738 1484 2748 1660
+rect 2866 1484 2876 1660
+rect 2930 1484 2940 1660
+rect 3058 1484 3068 1660
+rect 3122 1484 3132 1660
+rect 110 1438 3200 1450
+rect 110 1404 342 1438
+rect 376 1404 534 1438
+rect 568 1404 726 1438
+rect 760 1404 918 1438
+rect 952 1404 1110 1438
+rect 1144 1404 1302 1438
+rect 1336 1404 1494 1438
+rect 1528 1404 1686 1438
+rect 1720 1404 1878 1438
+rect 1912 1404 2070 1438
+rect 2104 1404 2262 1438
+rect 2296 1404 2454 1438
+rect 2488 1404 2646 1438
+rect 2680 1404 2838 1438
+rect 2872 1404 3030 1438
+rect 3064 1404 3200 1438
+rect 110 1330 3200 1404
+rect 110 1296 342 1330
+rect 376 1296 534 1330
+rect 568 1296 726 1330
+rect 760 1296 918 1330
+rect 952 1296 1110 1330
+rect 1144 1296 1302 1330
+rect 1336 1296 1494 1330
+rect 1528 1296 1686 1330
+rect 1720 1296 1878 1330
+rect 1912 1296 2070 1330
+rect 2104 1296 2262 1330
+rect 2296 1296 2454 1330
+rect 2488 1296 2646 1330
+rect 2680 1296 2838 1330
+rect 2872 1296 3030 1330
+rect 3064 1296 3200 1330
+rect 110 1290 3200 1296
+rect 178 1074 188 1250
+rect 242 1074 252 1250
+rect 370 1074 380 1250
+rect 434 1074 444 1250
+rect 562 1074 572 1250
+rect 626 1074 636 1250
+rect 754 1074 764 1250
+rect 818 1074 828 1250
+rect 946 1074 956 1250
+rect 1010 1074 1020 1250
+rect 1138 1074 1148 1250
+rect 1202 1074 1212 1250
+rect 1330 1074 1340 1250
+rect 1394 1074 1404 1250
+rect 1522 1074 1532 1250
+rect 1586 1074 1596 1250
+rect 1714 1074 1724 1250
+rect 1778 1074 1788 1250
+rect 1906 1074 1916 1250
+rect 1970 1074 1980 1250
+rect 2098 1074 2108 1250
+rect 2162 1074 2172 1250
+rect 2290 1074 2300 1250
+rect 2354 1074 2364 1250
+rect 2482 1074 2492 1250
+rect 2546 1074 2556 1250
+rect 2674 1074 2684 1250
+rect 2738 1074 2748 1250
+rect 2866 1074 2876 1250
+rect 2930 1074 2940 1250
+rect 3058 1074 3068 1250
+rect 3122 1074 3132 1250
+rect 274 848 284 1024
+rect 338 848 348 1024
+rect 466 848 476 1024
+rect 530 848 540 1024
+rect 658 848 668 1024
+rect 722 848 732 1024
+rect 850 848 860 1024
+rect 914 848 924 1024
+rect 1042 848 1052 1024
+rect 1106 848 1116 1024
+rect 1234 848 1244 1024
+rect 1298 848 1308 1024
+rect 1426 848 1436 1024
+rect 1490 848 1500 1024
+rect 1618 848 1628 1024
+rect 1682 848 1692 1024
+rect 1810 848 1820 1024
+rect 1874 848 1884 1024
+rect 2002 848 2012 1024
+rect 2066 848 2076 1024
+rect 2194 848 2204 1024
+rect 2258 848 2268 1024
+rect 2386 848 2396 1024
+rect 2450 848 2460 1024
+rect 2578 848 2588 1024
+rect 2642 848 2652 1024
+rect 2770 848 2780 1024
+rect 2834 848 2844 1024
+rect 2962 848 2972 1024
+rect 3026 848 3036 1024
+rect 110 802 3200 810
+rect 110 768 246 802
+rect 280 768 438 802
+rect 472 768 630 802
+rect 664 768 822 802
+rect 856 768 1014 802
+rect 1048 768 1206 802
+rect 1240 768 1398 802
+rect 1432 768 1590 802
+rect 1624 768 1782 802
+rect 1816 768 1974 802
+rect 2008 768 2166 802
+rect 2200 768 2358 802
+rect 2392 768 2550 802
+rect 2584 768 2742 802
+rect 2776 768 2934 802
+rect 2968 768 3200 802
+rect 110 694 3200 768
+rect 110 660 246 694
+rect 280 660 438 694
+rect 472 660 630 694
+rect 664 660 822 694
+rect 856 660 1014 694
+rect 1048 660 1206 694
+rect 1240 660 1398 694
+rect 1432 660 1590 694
+rect 1624 660 1782 694
+rect 1816 660 1974 694
+rect 2008 660 2166 694
+rect 2200 660 2358 694
+rect 2392 660 2550 694
+rect 2584 660 2742 694
+rect 2776 660 2934 694
+rect 2968 660 3200 694
+rect 110 650 3200 660
+rect 274 438 284 614
+rect 338 438 348 614
+rect 466 438 476 614
+rect 530 438 540 614
+rect 658 438 668 614
+rect 722 438 732 614
+rect 850 438 860 614
+rect 914 438 924 614
+rect 1042 438 1052 614
+rect 1106 438 1116 614
+rect 1234 438 1244 614
+rect 1298 438 1308 614
+rect 1426 438 1436 614
+rect 1490 438 1500 614
+rect 1618 438 1628 614
+rect 1682 438 1692 614
+rect 1810 438 1820 614
+rect 1874 438 1884 614
+rect 2002 438 2012 614
+rect 2066 438 2076 614
+rect 2194 438 2204 614
+rect 2258 438 2268 614
+rect 2386 438 2396 614
+rect 2450 438 2460 614
+rect 2578 438 2588 614
+rect 2642 438 2652 614
+rect 2770 438 2780 614
+rect 2834 438 2844 614
+rect 2962 438 2972 614
+rect 3026 438 3036 614
+rect 178 212 188 388
+rect 242 212 252 388
+rect 370 212 380 388
+rect 434 212 444 388
+rect 562 212 572 388
+rect 626 212 636 388
+rect 754 212 764 388
+rect 818 212 828 388
+rect 946 212 956 388
+rect 1010 212 1020 388
+rect 1138 212 1148 388
+rect 1202 212 1212 388
+rect 1330 212 1340 388
+rect 1394 212 1404 388
+rect 1522 212 1532 388
+rect 1586 212 1596 388
+rect 1714 212 1724 388
+rect 1778 212 1788 388
+rect 1906 212 1916 388
+rect 1970 212 1980 388
+rect 2098 212 2108 388
+rect 2162 212 2172 388
+rect 2290 212 2300 388
+rect 2354 212 2364 388
+rect 2482 212 2492 388
+rect 2546 212 2556 388
+rect 2674 212 2684 388
+rect 2738 212 2748 388
+rect 2866 212 2876 388
+rect 2930 212 2940 388
+rect 3058 212 3068 388
+rect 3122 212 3132 388
+rect 110 166 3200 180
+rect 110 132 342 166
+rect 376 132 534 166
+rect 568 132 726 166
+rect 760 132 918 166
+rect 952 132 1110 166
+rect 1144 132 1302 166
+rect 1336 132 1494 166
+rect 1528 132 1686 166
+rect 1720 132 1878 166
+rect 1912 132 2070 166
+rect 2104 132 2262 166
+rect 2296 132 2454 166
+rect 2488 132 2646 166
+rect 2680 132 2838 166
+rect 2872 132 3030 166
+rect 3064 132 3200 166
+rect 110 80 3200 132
+<< via1 >>
+rect 284 1710 338 1886
+rect 476 1710 530 1886
+rect 668 1710 722 1886
+rect 860 1710 914 1886
+rect 1052 1710 1106 1886
+rect 1244 1710 1298 1886
+rect 1436 1710 1490 1886
+rect 1628 1710 1682 1886
+rect 1820 1710 1874 1886
+rect 2012 1710 2066 1886
+rect 2204 1710 2258 1886
+rect 2396 1710 2450 1886
+rect 2588 1710 2642 1886
+rect 2780 1710 2834 1886
+rect 2972 1710 3026 1886
+rect 188 1484 242 1660
+rect 380 1484 434 1660
+rect 572 1484 626 1660
+rect 764 1484 818 1660
+rect 956 1484 1010 1660
+rect 1148 1484 1202 1660
+rect 1340 1484 1394 1660
+rect 1532 1484 1586 1660
+rect 1724 1484 1778 1660
+rect 1916 1484 1970 1660
+rect 2108 1484 2162 1660
+rect 2300 1484 2354 1660
+rect 2492 1484 2546 1660
+rect 2684 1484 2738 1660
+rect 2876 1484 2930 1660
+rect 3068 1484 3122 1660
+rect 188 1074 242 1250
+rect 380 1074 434 1250
+rect 572 1074 626 1250
+rect 764 1074 818 1250
+rect 956 1074 1010 1250
+rect 1148 1074 1202 1250
+rect 1340 1074 1394 1250
+rect 1532 1074 1586 1250
+rect 1724 1074 1778 1250
+rect 1916 1074 1970 1250
+rect 2108 1074 2162 1250
+rect 2300 1074 2354 1250
+rect 2492 1074 2546 1250
+rect 2684 1074 2738 1250
+rect 2876 1074 2930 1250
+rect 3068 1074 3122 1250
+rect 284 848 338 1024
+rect 476 848 530 1024
+rect 668 848 722 1024
+rect 860 848 914 1024
+rect 1052 848 1106 1024
+rect 1244 848 1298 1024
+rect 1436 848 1490 1024
+rect 1628 848 1682 1024
+rect 1820 848 1874 1024
+rect 2012 848 2066 1024
+rect 2204 848 2258 1024
+rect 2396 848 2450 1024
+rect 2588 848 2642 1024
+rect 2780 848 2834 1024
+rect 2972 848 3026 1024
+rect 284 438 338 614
+rect 476 438 530 614
+rect 668 438 722 614
+rect 860 438 914 614
+rect 1052 438 1106 614
+rect 1244 438 1298 614
+rect 1436 438 1490 614
+rect 1628 438 1682 614
+rect 1820 438 1874 614
+rect 2012 438 2066 614
+rect 2204 438 2258 614
+rect 2396 438 2450 614
+rect 2588 438 2642 614
+rect 2780 438 2834 614
+rect 2972 438 3026 614
+rect 188 212 242 388
+rect 380 212 434 388
+rect 572 212 626 388
+rect 764 212 818 388
+rect 956 212 1010 388
+rect 1148 212 1202 388
+rect 1340 212 1394 388
+rect 1532 212 1586 388
+rect 1724 212 1778 388
+rect 1916 212 1970 388
+rect 2108 212 2162 388
+rect 2300 212 2354 388
+rect 2492 212 2546 388
+rect 2684 212 2738 388
+rect 2876 212 2930 388
+rect 3068 212 3122 388
+<< metal2 >>
+rect 284 1886 3026 1896
+rect 338 1736 476 1886
+rect 284 1700 338 1710
+rect 530 1736 668 1886
+rect 476 1700 530 1710
+rect 722 1736 860 1886
+rect 668 1700 722 1710
+rect 914 1736 1052 1886
+rect 860 1700 914 1710
+rect 1106 1736 1244 1886
+rect 1052 1700 1106 1710
+rect 1298 1736 1436 1886
+rect 1244 1700 1298 1710
+rect 1490 1736 1628 1886
+rect 1436 1700 1490 1710
+rect 1682 1736 1820 1886
+rect 1628 1700 1682 1710
+rect 1874 1736 2012 1886
+rect 1820 1700 1874 1710
+rect 2066 1736 2204 1886
+rect 2012 1700 2066 1710
+rect 2258 1736 2396 1886
+rect 2204 1700 2258 1710
+rect 2450 1736 2588 1886
+rect 2396 1700 2450 1710
+rect 2642 1736 2780 1886
+rect 2588 1700 2642 1710
+rect 2834 1736 2972 1886
+rect 2780 1700 2834 1710
+rect 2972 1700 3026 1710
+rect 188 1660 242 1670
+rect 380 1660 434 1670
+rect 242 1484 380 1634
+rect 572 1660 626 1670
+rect 434 1484 572 1634
+rect 764 1660 818 1670
+rect 626 1484 764 1634
+rect 956 1660 1010 1670
+rect 818 1484 956 1634
+rect 1148 1660 1202 1670
+rect 1010 1484 1148 1634
+rect 1340 1660 1394 1670
+rect 1202 1484 1340 1634
+rect 1532 1660 1586 1670
+rect 1394 1484 1532 1634
+rect 1724 1660 1778 1670
+rect 1586 1484 1724 1634
+rect 1916 1660 1970 1670
+rect 1778 1484 1916 1634
+rect 2108 1660 2162 1670
+rect 1970 1484 2108 1634
+rect 2300 1660 2354 1670
+rect 2162 1484 2300 1634
+rect 2492 1660 2546 1670
+rect 2354 1484 2492 1634
+rect 2684 1660 2738 1670
+rect 2546 1484 2684 1634
+rect 2876 1660 2930 1670
+rect 2738 1484 2876 1634
+rect 3068 1660 3122 1670
+rect 2930 1484 3068 1634
+rect 188 1474 3122 1484
+rect 188 1250 3122 1260
+rect 242 1100 380 1250
+rect 188 1064 242 1074
+rect 434 1100 572 1250
+rect 380 1064 434 1074
+rect 626 1100 764 1250
+rect 572 1064 626 1074
+rect 818 1100 956 1250
+rect 764 1064 818 1074
+rect 1010 1100 1148 1250
+rect 956 1064 1010 1074
+rect 1202 1100 1340 1250
+rect 1148 1064 1202 1074
+rect 1394 1100 1532 1250
+rect 1340 1064 1394 1074
+rect 1586 1100 1724 1250
+rect 1532 1064 1586 1074
+rect 1778 1100 1916 1250
+rect 1724 1064 1778 1074
+rect 1970 1100 2108 1250
+rect 1916 1064 1970 1074
+rect 2162 1100 2300 1250
+rect 2108 1064 2162 1074
+rect 2354 1100 2492 1250
+rect 2300 1064 2354 1074
+rect 2546 1100 2684 1250
+rect 2492 1064 2546 1074
+rect 2738 1100 2876 1250
+rect 2684 1064 2738 1074
+rect 2930 1100 3068 1250
+rect 2876 1064 2930 1074
+rect 3068 1064 3122 1074
+rect 284 1024 338 1034
+rect 476 1024 530 1034
+rect 338 848 476 998
+rect 668 1024 722 1034
+rect 530 848 668 998
+rect 860 1024 914 1034
+rect 722 848 860 998
+rect 1052 1024 1106 1034
+rect 914 848 1052 998
+rect 1244 1024 1298 1034
+rect 1106 848 1244 998
+rect 1436 1024 1490 1034
+rect 1298 848 1436 998
+rect 1628 1024 1682 1034
+rect 1490 848 1628 998
+rect 1820 1024 1874 1034
+rect 1682 848 1820 998
+rect 2012 1024 2066 1034
+rect 1874 848 2012 998
+rect 2204 1024 2258 1034
+rect 2066 848 2204 998
+rect 2396 1024 2450 1034
+rect 2258 848 2396 998
+rect 2588 1024 2642 1034
+rect 2450 848 2588 998
+rect 2780 1024 2834 1034
+rect 2642 848 2780 998
+rect 2972 1024 3026 1034
+rect 2834 848 2972 998
+rect 284 838 3026 848
+rect 284 614 3026 624
+rect 338 464 476 614
+rect 284 428 338 438
+rect 530 464 668 614
+rect 476 428 530 438
+rect 722 464 860 614
+rect 668 428 722 438
+rect 914 464 1052 614
+rect 860 428 914 438
+rect 1106 464 1244 614
+rect 1052 428 1106 438
+rect 1298 464 1436 614
+rect 1244 428 1298 438
+rect 1490 464 1628 614
+rect 1436 428 1490 438
+rect 1682 464 1820 614
+rect 1628 428 1682 438
+rect 1874 464 2012 614
+rect 1820 428 1874 438
+rect 2066 464 2204 614
+rect 2012 428 2066 438
+rect 2258 464 2396 614
+rect 2204 428 2258 438
+rect 2450 464 2588 614
+rect 2396 428 2450 438
+rect 2642 464 2780 614
+rect 2588 428 2642 438
+rect 2834 464 2972 614
+rect 2780 428 2834 438
+rect 2972 428 3026 438
+rect 188 388 242 398
+rect 380 388 434 398
+rect 242 212 380 362
+rect 572 388 626 398
+rect 434 212 572 362
+rect 764 388 818 398
+rect 626 212 764 362
+rect 956 388 1010 398
+rect 818 212 956 362
+rect 1148 388 1202 398
+rect 1010 212 1148 362
+rect 1340 388 1394 398
+rect 1202 212 1340 362
+rect 1532 388 1586 398
+rect 1394 212 1532 362
+rect 1724 388 1778 398
+rect 1586 212 1724 362
+rect 1916 388 1970 398
+rect 1778 212 1916 362
+rect 2108 388 2162 398
+rect 1970 212 2108 362
+rect 2300 388 2354 398
+rect 2162 212 2300 362
+rect 2492 388 2546 398
+rect 2354 212 2492 362
+rect 2684 388 2738 398
+rect 2546 212 2684 362
+rect 2876 388 2930 398
+rect 2738 212 2876 362
+rect 3068 388 3122 398
+rect 2930 212 3068 362
+rect 188 202 3122 212
+use sky130_fd_pr__pfet_01v8_VCB4SW  sky130_fd_pr__pfet_01v8_VCB4SW_0
+timestamp 1654683408
+transform 1 0 1655 0 1 1049
+box -1607 -1055 1607 1055
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_1_2Z6F9E.mag b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_2Z6F9E.mag
new file mode 100644
index 0000000..57c4a6d
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_2Z6F9E.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654634586
+<< metal3 >>
+rect -650 1072 649 1100
+rect -650 -1072 565 1072
+rect 629 -1072 649 1072
+rect -650 -1100 649 -1072
+<< via3 >>
+rect 565 -1072 629 1072
+<< mimcap >>
+rect -550 960 450 1000
+rect -550 -960 -510 960
+rect 410 -960 450 960
+rect -550 -1000 450 -960
+<< mimcapcontact >>
+rect -510 -960 410 960
+<< metal4 >>
+rect 549 1072 645 1088
+rect -511 960 411 961
+rect -511 -960 -510 960
+rect 410 -960 411 960
+rect -511 -961 411 -960
+rect 549 -1072 565 1072
+rect 629 -1072 645 1072
+rect 549 -1088 645 -1072
+<< properties >>
+string FIXED_BBOX -650 -1100 550 1100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 5 l 10 val 105.7 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.ext b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.ext
new file mode 100644
index 0000000..debf8e4
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.ext
@@ -0,0 +1,12 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+node "c1_n3050_n1000#" 0 0 -3050 -1000 mim 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11382084 15688 0 0 0 0
+node "m3_n3150_n1100#" 1 7769.26 -3150 -1100 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13857800 16998 208896 4544 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m3_n3150_n1100#" "c1_n3050_n1000#" 29688.6
+device csubckt sky130_fd_pr__cap_mim_m3_1 -3050 -1000 -3049 -999 w=6000 l=2000 "None" "c1_n3050_n1000#" 15680 0 "m3_n3150_n1100#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.mag b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.mag
new file mode 100644
index 0000000..8f8e394
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_1_N3PKNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< metal3 >>
+rect -3150 1072 3149 1100
+rect -3150 -1072 3065 1072
+rect 3129 -1072 3149 1072
+rect -3150 -1100 3149 -1072
+<< via3 >>
+rect 3065 -1072 3129 1072
+<< mimcap >>
+rect -3050 960 2950 1000
+rect -3050 -960 -3010 960
+rect 2910 -960 2950 960
+rect -3050 -1000 2950 -960
+<< mimcapcontact >>
+rect -3010 -960 2910 960
+<< metal4 >>
+rect 3049 1072 3145 1088
+rect -3011 960 2911 961
+rect -3011 -960 -3010 960
+rect 2910 -960 2911 960
+rect -3011 -961 2911 -960
+rect 3049 -1072 3065 1072
+rect 3129 -1072 3145 1072
+rect 3049 -1088 3145 -1072
+<< properties >>
+string FIXED_BBOX -3150 -1100 3050 1100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 30 l 10 val 615.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_6ZNTNB.mag b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_6ZNTNB.mag
new file mode 100644
index 0000000..409d253
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_6ZNTNB.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654633577
+<< metal4 >>
+rect -1351 1059 1351 1100
+rect -1351 -1059 1095 1059
+rect 1331 -1059 1351 1059
+rect -1351 -1100 1351 -1059
+<< via4 >>
+rect 1095 -1059 1331 1059
+<< mimcap2 >>
+rect -1251 960 749 1000
+rect -1251 -960 -1211 960
+rect 709 -960 749 960
+rect -1251 -1000 749 -960
+<< mimcap2contact >>
+rect -1211 -960 709 960
+<< metal5 >>
+rect 1053 1059 1373 1101
+rect -1235 960 733 984
+rect -1235 -960 -1211 960
+rect 709 -960 733 960
+rect -1235 -984 733 -960
+rect 1053 -1059 1095 1059
+rect 1331 -1059 1373 1059
+rect 1053 -1101 1373 -1059
+<< properties >>
+string FIXED_BBOX -1351 -1100 849 1100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 10 l 10 val 207.6 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_D7CHNQ.mag b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_D7CHNQ.mag
new file mode 100644
index 0000000..1540ecc
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_D7CHNQ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654633577
+<< metal4 >>
+rect -1851 1559 1851 1600
+rect -1851 -1559 1595 1559
+rect 1831 -1559 1851 1559
+rect -1851 -1600 1851 -1559
+<< via4 >>
+rect 1595 -1559 1831 1559
+<< mimcap2 >>
+rect -1751 1460 1249 1500
+rect -1751 -1460 -1711 1460
+rect 1209 -1460 1249 1460
+rect -1751 -1500 1249 -1460
+<< mimcap2contact >>
+rect -1711 -1460 1209 1460
+<< metal5 >>
+rect 1553 1559 1873 1601
+rect -1735 1460 1233 1484
+rect -1735 -1460 -1711 1460
+rect 1209 -1460 1233 1460
+rect -1735 -1484 1233 -1460
+rect 1553 -1559 1595 1559
+rect 1831 -1559 1873 1559
+rect 1553 -1601 1873 -1559
+<< properties >>
+string FIXED_BBOX -1851 -1600 1349 1600
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 15 l 15 val 461.4 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.ext" "b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.ext"
new file mode 100644
index 0000000..abeeda2
--- /dev/null
+++ "b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.ext"
@@ -0,0 +1,12 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n3100#" "c2_n3251_n3000#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git "a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.mag" "b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.mag"
new file mode 100644
index 0000000..209f3c8
--- /dev/null
+++ "b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0433.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
new file mode 100644
index 0000000..d4318f4
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
@@ -0,0 +1,12 @@
+timestamp 1654683408
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 13833.7 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n3000#" "m4_n3351_n3100#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..209f3c8
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_F8VELN.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_F8VELN.mag
new file mode 100644
index 0000000..e03457a
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_F8VELN.mag
@@ -0,0 +1,415 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654601384
+<< error_p >>
+rect -461 272 -403 278
+rect -269 272 -211 278
+rect -77 272 -19 278
+rect 115 272 173 278
+rect 307 272 365 278
+rect 499 272 557 278
+rect -461 238 -449 272
+rect -269 238 -257 272
+rect -77 238 -65 272
+rect 115 238 127 272
+rect 307 238 319 272
+rect 499 238 511 272
+rect -461 232 -403 238
+rect -269 232 -211 238
+rect -77 232 -19 238
+rect 115 232 173 238
+rect 307 232 365 238
+rect 499 232 557 238
+rect -557 -238 -499 -232
+rect -365 -238 -307 -232
+rect -173 -238 -115 -232
+rect 19 -238 77 -232
+rect 211 -238 269 -232
+rect 403 -238 461 -232
+rect -557 -272 -545 -238
+rect -365 -272 -353 -238
+rect -173 -272 -161 -238
+rect 19 -272 31 -238
+rect 211 -272 223 -238
+rect 403 -272 415 -238
+rect -557 -278 -499 -272
+rect -365 -278 -307 -272
+rect -173 -278 -115 -272
+rect 19 -278 77 -272
+rect 211 -278 269 -272
+rect 403 -278 461 -272
+<< pwell >>
+rect -743 -410 743 410
+<< nmos >>
+rect -543 -200 -513 200
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect 513 -200 543 200
+<< ndiff >>
+rect -605 188 -543 200
+rect -605 -188 -593 188
+rect -559 -188 -543 188
+rect -605 -200 -543 -188
+rect -513 188 -447 200
+rect -513 -188 -497 188
+rect -463 -188 -447 188
+rect -513 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 513 200
+rect 447 -188 463 188
+rect 497 -188 513 188
+rect 447 -200 513 -188
+rect 543 188 605 200
+rect 543 -188 559 188
+rect 593 -188 605 188
+rect 543 -200 605 -188
+<< ndiffc >>
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+<< psubdiff >>
+rect -707 340 -611 374
+rect 611 340 707 374
+rect -707 278 -673 340
+rect 673 278 707 340
+rect -707 -340 -673 -278
+rect 673 -340 707 -278
+rect -707 -374 -611 -340
+rect 611 -374 707 -340
+<< psubdiffcont >>
+rect -611 340 611 374
+rect -707 -278 -673 278
+rect 673 -278 707 278
+rect -611 -374 611 -340
+<< poly >>
+rect -465 272 -399 288
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -543 200 -513 226
+rect -465 222 -399 238
+rect -273 272 -207 288
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -447 200 -417 222
+rect -351 200 -321 226
+rect -273 222 -207 238
+rect -81 272 -15 288
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect -255 200 -225 222
+rect -159 200 -129 226
+rect -81 222 -15 238
+rect 111 272 177 288
+rect 111 238 127 272
+rect 161 238 177 272
+rect -63 200 -33 222
+rect 33 200 63 226
+rect 111 222 177 238
+rect 303 272 369 288
+rect 303 238 319 272
+rect 353 238 369 272
+rect 129 200 159 222
+rect 225 200 255 226
+rect 303 222 369 238
+rect 495 272 561 288
+rect 495 238 511 272
+rect 545 238 561 272
+rect 321 200 351 222
+rect 417 200 447 226
+rect 495 222 561 238
+rect 513 200 543 222
+rect -543 -222 -513 -200
+rect -561 -238 -495 -222
+rect -447 -226 -417 -200
+rect -351 -222 -321 -200
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -561 -288 -495 -272
+rect -369 -238 -303 -222
+rect -255 -226 -225 -200
+rect -159 -222 -129 -200
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -369 -288 -303 -272
+rect -177 -238 -111 -222
+rect -63 -226 -33 -200
+rect 33 -222 63 -200
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect -177 -288 -111 -272
+rect 15 -238 81 -222
+rect 129 -226 159 -200
+rect 225 -222 255 -200
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 15 -288 81 -272
+rect 207 -238 273 -222
+rect 321 -226 351 -200
+rect 417 -222 447 -200
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 207 -288 273 -272
+rect 399 -238 465 -222
+rect 513 -226 543 -200
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect 399 -288 465 -272
+<< polycont >>
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+<< locali >>
+rect -707 340 -611 374
+rect 611 340 707 374
+rect -707 278 -673 340
+rect 673 278 707 340
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect 111 238 127 272
+rect 161 238 177 272
+rect 303 238 319 272
+rect 353 238 369 272
+rect 495 238 511 272
+rect 545 238 561 272
+rect -593 188 -559 204
+rect -593 -204 -559 -188
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect 559 188 593 204
+rect 559 -204 593 -188
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect -707 -340 -673 -278
+rect 673 -340 707 -278
+rect -707 -374 -611 -340
+rect 611 -374 707 -340
+<< viali >>
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+<< metal1 >>
+rect -461 272 -403 278
+rect -461 238 -449 272
+rect -415 238 -403 272
+rect -461 232 -403 238
+rect -269 272 -211 278
+rect -269 238 -257 272
+rect -223 238 -211 272
+rect -269 232 -211 238
+rect -77 272 -19 278
+rect -77 238 -65 272
+rect -31 238 -19 272
+rect -77 232 -19 238
+rect 115 272 173 278
+rect 115 238 127 272
+rect 161 238 173 272
+rect 115 232 173 238
+rect 307 272 365 278
+rect 307 238 319 272
+rect 353 238 365 272
+rect 307 232 365 238
+rect 499 272 557 278
+rect 499 238 511 272
+rect 545 238 557 272
+rect 499 232 557 238
+rect -599 188 -553 200
+rect -599 -188 -593 188
+rect -559 -188 -553 188
+rect -599 -200 -553 -188
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect 553 188 599 200
+rect 553 -188 559 188
+rect 593 -188 599 188
+rect 553 -200 599 -188
+rect -557 -238 -499 -232
+rect -557 -272 -545 -238
+rect -511 -272 -499 -238
+rect -557 -278 -499 -272
+rect -365 -238 -307 -232
+rect -365 -272 -353 -238
+rect -319 -272 -307 -238
+rect -365 -278 -307 -272
+rect -173 -238 -115 -232
+rect -173 -272 -161 -238
+rect -127 -272 -115 -238
+rect -173 -278 -115 -272
+rect 19 -238 77 -232
+rect 19 -272 31 -238
+rect 65 -272 77 -238
+rect 19 -278 77 -272
+rect 211 -238 269 -232
+rect 211 -272 223 -238
+rect 257 -272 269 -238
+rect 211 -278 269 -272
+rect 403 -238 461 -232
+rect 403 -272 415 -238
+rect 449 -272 461 -238
+rect 403 -278 461 -272
+<< properties >>
+string FIXED_BBOX -690 -357 690 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.ext b/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.ext
new file mode 100644
index 0000000..86c6514
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.ext
@@ -0,0 +1,68 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_679_n200#" 982 164.024 679 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n200#" 982 21.2305 561 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n200#" 982 21.2305 443 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n200#" 982 21.2305 325 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n200#" 982 21.2305 207 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n200#" 982 21.2305 89 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.2305 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n200#" 982 21.2305 -147 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n200#" 982 21.2305 -265 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n200#" 982 21.2305 -383 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n200#" 982 21.2305 -501 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n200#" 982 21.2305 -619 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n200#" 982 164.024 -737 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_n288#" 559 229.671 616 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n288#" 559 167.658 498 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n288#" 559 167.658 380 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n288#" 559 167.658 262 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n288#" 559 167.658 144 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n288#" 559 167.658 26 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n288#" 559 167.658 -92 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n288#" 559 167.658 -210 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n288#" 559 167.658 -328 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n288#" 559 167.658 -446 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n288#" 559 167.658 -564 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n288#" 559 230.182 -682 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n839_n374#" 0 0 -839 -374 ppd 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160344 9432 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_26_n288#" "a_n92_n288#" 149.246
+cap "a_n737_n200#" "a_n619_n200#" 341
+cap "a_n29_n200#" "a_89_n200#" 341
+cap "a_n210_n288#" "a_n92_n288#" 149.246
+cap "a_n147_n200#" "a_n29_n200#" 341
+cap "a_n328_n288#" "a_n210_n288#" 149.246
+cap "a_561_n200#" "a_679_n200#" 341
+cap "a_498_n288#" "a_616_n288#" 149.246
+cap "a_n265_n200#" "a_n147_n200#" 341
+cap "a_n446_n288#" "a_n328_n288#" 149.246
+cap "a_443_n200#" "a_561_n200#" 341
+cap "a_380_n288#" "a_498_n288#" 149.246
+cap "a_n383_n200#" "a_n265_n200#" 341
+cap "a_262_n288#" "a_380_n288#" 149.246
+cap "a_n564_n288#" "a_n446_n288#" 149.246
+cap "a_325_n200#" "a_443_n200#" 341
+cap "a_144_n288#" "a_262_n288#" 149.246
+cap "a_n501_n200#" "a_n383_n200#" 341
+cap "a_n682_n288#" "a_n564_n288#" 149.246
+cap "a_207_n200#" "a_325_n200#" 341
+cap "a_26_n288#" "a_144_n288#" 149.246
+cap "a_n619_n200#" "a_n501_n200#" 341
+cap "a_89_n200#" "a_207_n200#" 341
+device msubckt sky130_fd_pr__nfet_01v8 619 -200 620 -199 l=60 w=400 "a_n839_n374#" "a_616_n288#" 120 0 "a_561_n200#" 400 0 "a_679_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 501 -200 502 -199 l=60 w=400 "a_n839_n374#" "a_498_n288#" 120 0 "a_443_n200#" 400 0 "a_561_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 383 -200 384 -199 l=60 w=400 "a_n839_n374#" "a_380_n288#" 120 0 "a_325_n200#" 400 0 "a_443_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 265 -200 266 -199 l=60 w=400 "a_n839_n374#" "a_262_n288#" 120 0 "a_207_n200#" 400 0 "a_325_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 147 -200 148 -199 l=60 w=400 "a_n839_n374#" "a_144_n288#" 120 0 "a_89_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=60 w=400 "a_n839_n374#" "a_26_n288#" 120 0 "a_n29_n200#" 400 0 "a_89_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -89 -200 -88 -199 l=60 w=400 "a_n839_n374#" "a_n92_n288#" 120 0 "a_n147_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -200 -206 -199 l=60 w=400 "a_n839_n374#" "a_n210_n288#" 120 0 "a_n265_n200#" 400 0 "a_n147_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -325 -200 -324 -199 l=60 w=400 "a_n839_n374#" "a_n328_n288#" 120 0 "a_n383_n200#" 400 0 "a_n265_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -443 -200 -442 -199 l=60 w=400 "a_n839_n374#" "a_n446_n288#" 120 0 "a_n501_n200#" 400 0 "a_n383_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -561 -200 -560 -199 l=60 w=400 "a_n839_n374#" "a_n564_n288#" 120 0 "a_n619_n200#" 400 0 "a_n501_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -679 -200 -678 -199 l=60 w=400 "a_n839_n374#" "a_n682_n288#" 120 0 "a_n737_n200#" 400 0 "a_n619_n200#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.mag
new file mode 100644
index 0000000..108a231
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_HR8DH9.mag
@@ -0,0 +1,595 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -678 272 -620 278
+rect -560 272 -502 278
+rect -442 272 -384 278
+rect -324 272 -266 278
+rect -206 272 -148 278
+rect -88 272 -30 278
+rect 30 272 88 278
+rect 148 272 206 278
+rect 266 272 324 278
+rect 384 272 442 278
+rect 502 272 560 278
+rect 620 272 678 278
+rect -678 238 -666 272
+rect -560 238 -548 272
+rect -442 238 -430 272
+rect -324 238 -312 272
+rect -206 238 -194 272
+rect -88 238 -76 272
+rect 30 238 42 272
+rect 148 238 160 272
+rect 266 238 278 272
+rect 384 238 396 272
+rect 502 238 514 272
+rect 620 238 632 272
+rect -678 232 -620 238
+rect -560 232 -502 238
+rect -442 232 -384 238
+rect -324 232 -266 238
+rect -206 232 -148 238
+rect -88 232 -30 238
+rect 30 232 88 238
+rect 148 232 206 238
+rect 266 232 324 238
+rect 384 232 442 238
+rect 502 232 560 238
+rect 620 232 678 238
+rect -678 -238 -620 -232
+rect -560 -238 -502 -232
+rect -442 -238 -384 -232
+rect -324 -238 -266 -232
+rect -206 -238 -148 -232
+rect -88 -238 -30 -232
+rect 30 -238 88 -232
+rect 148 -238 206 -232
+rect 266 -238 324 -232
+rect 384 -238 442 -232
+rect 502 -238 560 -232
+rect 620 -238 678 -232
+rect -678 -272 -666 -238
+rect -560 -272 -548 -238
+rect -442 -272 -430 -238
+rect -324 -272 -312 -238
+rect -206 -272 -194 -238
+rect -88 -272 -76 -238
+rect 30 -272 42 -238
+rect 148 -272 160 -238
+rect 266 -272 278 -238
+rect 384 -272 396 -238
+rect 502 -272 514 -238
+rect 620 -272 632 -238
+rect -678 -278 -620 -272
+rect -560 -278 -502 -272
+rect -442 -278 -384 -272
+rect -324 -278 -266 -272
+rect -206 -278 -148 -272
+rect -88 -278 -30 -272
+rect 30 -278 88 -272
+rect 148 -278 206 -272
+rect 266 -278 324 -272
+rect 384 -278 442 -272
+rect 502 -278 560 -272
+rect 620 -278 678 -272
+<< pwell >>
+rect -875 -410 875 410
+<< nmos >>
+rect -679 -200 -619 200
+rect -561 -200 -501 200
+rect -443 -200 -383 200
+rect -325 -200 -265 200
+rect -207 -200 -147 200
+rect -89 -200 -29 200
+rect 29 -200 89 200
+rect 147 -200 207 200
+rect 265 -200 325 200
+rect 383 -200 443 200
+rect 501 -200 561 200
+rect 619 -200 679 200
+<< ndiff >>
+rect -737 188 -679 200
+rect -737 -188 -725 188
+rect -691 -188 -679 188
+rect -737 -200 -679 -188
+rect -619 188 -561 200
+rect -619 -188 -607 188
+rect -573 -188 -561 188
+rect -619 -200 -561 -188
+rect -501 188 -443 200
+rect -501 -188 -489 188
+rect -455 -188 -443 188
+rect -501 -200 -443 -188
+rect -383 188 -325 200
+rect -383 -188 -371 188
+rect -337 -188 -325 188
+rect -383 -200 -325 -188
+rect -265 188 -207 200
+rect -265 -188 -253 188
+rect -219 -188 -207 188
+rect -265 -200 -207 -188
+rect -147 188 -89 200
+rect -147 -188 -135 188
+rect -101 -188 -89 188
+rect -147 -200 -89 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 89 188 147 200
+rect 89 -188 101 188
+rect 135 -188 147 188
+rect 89 -200 147 -188
+rect 207 188 265 200
+rect 207 -188 219 188
+rect 253 -188 265 188
+rect 207 -200 265 -188
+rect 325 188 383 200
+rect 325 -188 337 188
+rect 371 -188 383 188
+rect 325 -200 383 -188
+rect 443 188 501 200
+rect 443 -188 455 188
+rect 489 -188 501 188
+rect 443 -200 501 -188
+rect 561 188 619 200
+rect 561 -188 573 188
+rect 607 -188 619 188
+rect 561 -200 619 -188
+rect 679 188 737 200
+rect 679 -188 691 188
+rect 725 -188 737 188
+rect 679 -200 737 -188
+<< ndiffc >>
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+<< psubdiff >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< psubdiffcont >>
+rect -743 340 743 374
+rect -839 -278 -805 278
+rect 805 -278 839 278
+rect -743 -374 743 -340
+<< poly >>
+rect -682 272 -616 288
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -682 222 -616 238
+rect -564 272 -498 288
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -564 222 -498 238
+rect -446 272 -380 288
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -446 222 -380 238
+rect -328 272 -262 288
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -328 222 -262 238
+rect -210 272 -144 288
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -210 222 -144 238
+rect -92 272 -26 288
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect -92 222 -26 238
+rect 26 272 92 288
+rect 26 238 42 272
+rect 76 238 92 272
+rect 26 222 92 238
+rect 144 272 210 288
+rect 144 238 160 272
+rect 194 238 210 272
+rect 144 222 210 238
+rect 262 272 328 288
+rect 262 238 278 272
+rect 312 238 328 272
+rect 262 222 328 238
+rect 380 272 446 288
+rect 380 238 396 272
+rect 430 238 446 272
+rect 380 222 446 238
+rect 498 272 564 288
+rect 498 238 514 272
+rect 548 238 564 272
+rect 498 222 564 238
+rect 616 272 682 288
+rect 616 238 632 272
+rect 666 238 682 272
+rect 616 222 682 238
+rect -679 200 -619 222
+rect -561 200 -501 222
+rect -443 200 -383 222
+rect -325 200 -265 222
+rect -207 200 -147 222
+rect -89 200 -29 222
+rect 29 200 89 222
+rect 147 200 207 222
+rect 265 200 325 222
+rect 383 200 443 222
+rect 501 200 561 222
+rect 619 200 679 222
+rect -679 -222 -619 -200
+rect -561 -222 -501 -200
+rect -443 -222 -383 -200
+rect -325 -222 -265 -200
+rect -207 -222 -147 -200
+rect -89 -222 -29 -200
+rect 29 -222 89 -200
+rect 147 -222 207 -200
+rect 265 -222 325 -200
+rect 383 -222 443 -200
+rect 501 -222 561 -200
+rect 619 -222 679 -200
+rect -682 -238 -616 -222
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -682 -288 -616 -272
+rect -564 -238 -498 -222
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -564 -288 -498 -272
+rect -446 -238 -380 -222
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -446 -288 -380 -272
+rect -328 -238 -262 -222
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -328 -288 -262 -272
+rect -210 -238 -144 -222
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -210 -288 -144 -272
+rect -92 -238 -26 -222
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect -92 -288 -26 -272
+rect 26 -238 92 -222
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 26 -288 92 -272
+rect 144 -238 210 -222
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 144 -288 210 -272
+rect 262 -238 328 -222
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 262 -288 328 -272
+rect 380 -238 446 -222
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 380 -288 446 -272
+rect 498 -238 564 -222
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 498 -288 564 -272
+rect 616 -238 682 -222
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect 616 -288 682 -272
+<< polycont >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< locali >>
+rect -839 340 -743 374
+rect 743 340 839 374
+rect -839 278 -805 340
+rect 805 278 839 340
+rect -682 238 -666 272
+rect -632 238 -616 272
+rect -564 238 -548 272
+rect -514 238 -498 272
+rect -446 238 -430 272
+rect -396 238 -380 272
+rect -328 238 -312 272
+rect -278 238 -262 272
+rect -210 238 -194 272
+rect -160 238 -144 272
+rect -92 238 -76 272
+rect -42 238 -26 272
+rect 26 238 42 272
+rect 76 238 92 272
+rect 144 238 160 272
+rect 194 238 210 272
+rect 262 238 278 272
+rect 312 238 328 272
+rect 380 238 396 272
+rect 430 238 446 272
+rect 498 238 514 272
+rect 548 238 564 272
+rect 616 238 632 272
+rect 666 238 682 272
+rect -725 188 -691 204
+rect -725 -204 -691 -188
+rect -607 188 -573 204
+rect -607 -204 -573 -188
+rect -489 188 -455 204
+rect -489 -204 -455 -188
+rect -371 188 -337 204
+rect -371 -204 -337 -188
+rect -253 188 -219 204
+rect -253 -204 -219 -188
+rect -135 188 -101 204
+rect -135 -204 -101 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 101 188 135 204
+rect 101 -204 135 -188
+rect 219 188 253 204
+rect 219 -204 253 -188
+rect 337 188 371 204
+rect 337 -204 371 -188
+rect 455 188 489 204
+rect 455 -204 489 -188
+rect 573 188 607 204
+rect 573 -204 607 -188
+rect 691 188 725 204
+rect 691 -204 725 -188
+rect -682 -272 -666 -238
+rect -632 -272 -616 -238
+rect -564 -272 -548 -238
+rect -514 -272 -498 -238
+rect -446 -272 -430 -238
+rect -396 -272 -380 -238
+rect -328 -272 -312 -238
+rect -278 -272 -262 -238
+rect -210 -272 -194 -238
+rect -160 -272 -144 -238
+rect -92 -272 -76 -238
+rect -42 -272 -26 -238
+rect 26 -272 42 -238
+rect 76 -272 92 -238
+rect 144 -272 160 -238
+rect 194 -272 210 -238
+rect 262 -272 278 -238
+rect 312 -272 328 -238
+rect 380 -272 396 -238
+rect 430 -272 446 -238
+rect 498 -272 514 -238
+rect 548 -272 564 -238
+rect 616 -272 632 -238
+rect 666 -272 682 -238
+rect -839 -340 -805 -278
+rect 805 -340 839 -278
+rect -839 -374 -743 -340
+rect 743 -374 839 -340
+<< viali >>
+rect -666 238 -632 272
+rect -548 238 -514 272
+rect -430 238 -396 272
+rect -312 238 -278 272
+rect -194 238 -160 272
+rect -76 238 -42 272
+rect 42 238 76 272
+rect 160 238 194 272
+rect 278 238 312 272
+rect 396 238 430 272
+rect 514 238 548 272
+rect 632 238 666 272
+rect -725 -188 -691 188
+rect -607 -188 -573 188
+rect -489 -188 -455 188
+rect -371 -188 -337 188
+rect -253 -188 -219 188
+rect -135 -188 -101 188
+rect -17 -188 17 188
+rect 101 -188 135 188
+rect 219 -188 253 188
+rect 337 -188 371 188
+rect 455 -188 489 188
+rect 573 -188 607 188
+rect 691 -188 725 188
+rect -666 -272 -632 -238
+rect -548 -272 -514 -238
+rect -430 -272 -396 -238
+rect -312 -272 -278 -238
+rect -194 -272 -160 -238
+rect -76 -272 -42 -238
+rect 42 -272 76 -238
+rect 160 -272 194 -238
+rect 278 -272 312 -238
+rect 396 -272 430 -238
+rect 514 -272 548 -238
+rect 632 -272 666 -238
+<< metal1 >>
+rect -678 272 -620 278
+rect -678 238 -666 272
+rect -632 238 -620 272
+rect -678 232 -620 238
+rect -560 272 -502 278
+rect -560 238 -548 272
+rect -514 238 -502 272
+rect -560 232 -502 238
+rect -442 272 -384 278
+rect -442 238 -430 272
+rect -396 238 -384 272
+rect -442 232 -384 238
+rect -324 272 -266 278
+rect -324 238 -312 272
+rect -278 238 -266 272
+rect -324 232 -266 238
+rect -206 272 -148 278
+rect -206 238 -194 272
+rect -160 238 -148 272
+rect -206 232 -148 238
+rect -88 272 -30 278
+rect -88 238 -76 272
+rect -42 238 -30 272
+rect -88 232 -30 238
+rect 30 272 88 278
+rect 30 238 42 272
+rect 76 238 88 272
+rect 30 232 88 238
+rect 148 272 206 278
+rect 148 238 160 272
+rect 194 238 206 272
+rect 148 232 206 238
+rect 266 272 324 278
+rect 266 238 278 272
+rect 312 238 324 272
+rect 266 232 324 238
+rect 384 272 442 278
+rect 384 238 396 272
+rect 430 238 442 272
+rect 384 232 442 238
+rect 502 272 560 278
+rect 502 238 514 272
+rect 548 238 560 272
+rect 502 232 560 238
+rect 620 272 678 278
+rect 620 238 632 272
+rect 666 238 678 272
+rect 620 232 678 238
+rect -731 188 -685 200
+rect -731 -188 -725 188
+rect -691 -188 -685 188
+rect -731 -200 -685 -188
+rect -613 188 -567 200
+rect -613 -188 -607 188
+rect -573 -188 -567 188
+rect -613 -200 -567 -188
+rect -495 188 -449 200
+rect -495 -188 -489 188
+rect -455 -188 -449 188
+rect -495 -200 -449 -188
+rect -377 188 -331 200
+rect -377 -188 -371 188
+rect -337 -188 -331 188
+rect -377 -200 -331 -188
+rect -259 188 -213 200
+rect -259 -188 -253 188
+rect -219 -188 -213 188
+rect -259 -200 -213 -188
+rect -141 188 -95 200
+rect -141 -188 -135 188
+rect -101 -188 -95 188
+rect -141 -200 -95 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 95 188 141 200
+rect 95 -188 101 188
+rect 135 -188 141 188
+rect 95 -200 141 -188
+rect 213 188 259 200
+rect 213 -188 219 188
+rect 253 -188 259 188
+rect 213 -200 259 -188
+rect 331 188 377 200
+rect 331 -188 337 188
+rect 371 -188 377 188
+rect 331 -200 377 -188
+rect 449 188 495 200
+rect 449 -188 455 188
+rect 489 -188 495 188
+rect 449 -200 495 -188
+rect 567 188 613 200
+rect 567 -188 573 188
+rect 607 -188 613 188
+rect 567 -200 613 -188
+rect 685 188 731 200
+rect 685 -188 691 188
+rect 725 -188 731 188
+rect 685 -200 731 -188
+rect -678 -238 -620 -232
+rect -678 -272 -666 -238
+rect -632 -272 -620 -238
+rect -678 -278 -620 -272
+rect -560 -238 -502 -232
+rect -560 -272 -548 -238
+rect -514 -272 -502 -238
+rect -560 -278 -502 -272
+rect -442 -238 -384 -232
+rect -442 -272 -430 -238
+rect -396 -272 -384 -238
+rect -442 -278 -384 -272
+rect -324 -238 -266 -232
+rect -324 -272 -312 -238
+rect -278 -272 -266 -238
+rect -324 -278 -266 -272
+rect -206 -238 -148 -232
+rect -206 -272 -194 -238
+rect -160 -272 -148 -238
+rect -206 -278 -148 -272
+rect -88 -238 -30 -232
+rect -88 -272 -76 -238
+rect -42 -272 -30 -238
+rect -88 -278 -30 -272
+rect 30 -238 88 -232
+rect 30 -272 42 -238
+rect 76 -272 88 -238
+rect 30 -278 88 -272
+rect 148 -238 206 -232
+rect 148 -272 160 -238
+rect 194 -272 206 -238
+rect 148 -278 206 -272
+rect 266 -238 324 -232
+rect 266 -272 278 -238
+rect 312 -272 324 -238
+rect 266 -278 324 -272
+rect 384 -238 442 -232
+rect 384 -272 396 -238
+rect 430 -272 442 -238
+rect 384 -278 442 -272
+rect 502 -238 560 -232
+rect 502 -272 514 -238
+rect 548 -272 560 -238
+rect 502 -278 560 -272
+rect 620 -238 678 -232
+rect 620 -272 632 -238
+rect 666 -272 678 -238
+rect 620 -278 678 -272
+<< properties >>
+string FIXED_BBOX -822 -357 822 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.3 m 1 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.ext b/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.ext
new file mode 100644
index 0000000..608809b
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.ext
@@ -0,0 +1,455 @@
+timestamp 1654605132
+version 8.3
+tech sky130B
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1167_n509#" 929 155.176 1167 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_n509#" 882 12.2058 1071 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_n509#" 882 12.2058 975 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_n509#" 882 12.2058 879 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_n509#" 882 12.2058 783 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_n509#" 882 12.2058 687 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_n509#" 882 12.2058 591 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n509#" 882 12.2058 495 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n509#" 882 12.2058 399 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n509#" 882 12.2058 303 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n509#" 882 12.2058 207 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n509#" 882 12.2058 111 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n509#" 882 12.2058 15 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n509#" 882 12.2058 -81 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n509#" 882 12.2058 -177 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n509#" 882 12.2058 -273 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n509#" 882 12.2058 -369 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n509#" 882 12.2058 -465 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n509#" 882 12.2058 -561 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n509#" 882 12.2058 -657 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n509#" 882 12.2058 -753 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n509#" 882 12.2058 -849 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n509#" 882 12.2058 -945 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n509#" 882 12.2058 -1041 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n509#" 882 12.2058 -1137 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n509#" 929 155.176 -1229 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n597#" 837 133.292 1119 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_n597#" 837 96.6422 927 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n87#" 837 82.0127 1023 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_n597#" 837 96.6422 735 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_n87#" 837 62.121 831 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n597#" 837 96.6422 543 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_n87#" 837 62.121 639 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_n597#" 837 96.6422 351 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_n87#" 837 62.121 447 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n597#" 837 96.6422 159 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_n87#" 837 62.121 255 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n597#" 837 96.6422 -33 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n87#" 837 62.121 63 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n597#" 837 96.6422 -225 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n87#" 837 62.121 -129 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n597#" 837 96.6422 -417 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n87#" 837 62.121 -321 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n597#" 837 96.6422 -609 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n87#" 837 62.121 -513 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n597#" 837 96.6422 -801 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n87#" 837 62.121 -705 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n597#" 837 96.6422 -993 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n87#" 837 62.121 -897 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n597#" 837 133.546 -1185 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n87#" 837 82.2668 -1089 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_109#" 929 155.264 1167 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_109#" 882 12.4348 1071 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_109#" 882 12.4348 975 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_109#" 882 12.4348 879 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_109#" 882 12.4348 783 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_109#" 882 12.4348 687 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_109#" 882 12.4348 591 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_109#" 882 12.4348 495 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_109#" 882 12.4348 399 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_109#" 882 12.4348 303 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 882 12.4348 207 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_109#" 882 12.4348 111 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_109#" 882 12.4348 15 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_109#" 882 12.4348 -81 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_109#" 882 12.4348 -177 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_109#" 882 12.4348 -273 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_109#" 882 12.4348 -369 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_109#" 882 12.4348 -465 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_109#" 882 12.4348 -561 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_109#" 882 12.4348 -657 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_109#" 882 12.4348 -753 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_109#" 882 12.4348 -849 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_109#" 882 12.4348 -945 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_109#" 882 12.4348 -1041 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_109#" 882 12.4348 -1137 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_109#" 929 155.264 -1229 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_21#" 837 82.2192 1023 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1119_531#" 837 133.292 1119 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_21#" 837 62.3276 831 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_531#" 837 96.6422 927 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_21#" 837 62.3276 639 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_531#" 837 96.6422 735 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_21#" 837 62.3276 447 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_531#" 837 96.6422 543 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_21#" 837 62.3276 255 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_531#" 837 96.6422 351 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_21#" 837 62.3276 63 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_531#" 837 96.6422 159 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_21#" 837 62.3276 -129 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_531#" 837 96.6422 -33 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_21#" 837 62.3276 -321 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_531#" 837 96.6422 -225 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_21#" 837 62.3276 -513 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_531#" 837 96.6422 -417 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_21#" 837 62.3276 -705 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_531#" 837 96.6422 -609 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_21#" 837 62.3276 -897 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_531#" 837 96.6422 -801 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_21#" 837 82.4733 -1089 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_531#" 837 96.6422 -993 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_531#" 837 133.546 -1185 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1331_n683#" 0 0 -1331 -683 ppd 0 0 0 0 0 0 0 0 0 0 269280 15840 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269280 15840 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n465_109#" "a_n465_n509#" 12.3196
+cap "a_927_n597#" "a_831_n87#" 14.1667
+cap "a_831_n87#" "a_783_n509#" 6.25956
+cap "a_351_n597#" "a_543_n597#" 28.5878
+cap "a_63_n87#" "a_159_n597#" 14.1667
+cap "a_n369_109#" "a_n417_531#" 6.25956
+cap "a_687_109#" "a_591_109#" 479.458
+cap "a_n993_531#" "a_n1041_109#" 6.25956
+cap "a_n993_531#" "a_n945_109#" 6.25956
+cap "a_n465_109#" "a_n513_21#" 6.25956
+cap "a_n993_531#" "a_n993_n597#" 6.73951
+cap "a_447_21#" "a_495_109#" 6.25956
+cap "a_447_21#" "a_399_109#" 6.25956
+cap "a_15_109#" "a_15_n509#" 12.3196
+cap "a_n321_21#" "a_n129_21#" 28.5878
+cap "a_111_n509#" "a_63_n87#" 6.25956
+cap "a_111_109#" "a_111_n509#" 12.3196
+cap "a_975_109#" "a_927_531#" 6.25956
+cap "a_n705_n87#" "a_n705_21#" 86.2066
+cap "a_399_n509#" "a_495_n509#" 479.458
+cap "a_159_531#" "a_63_21#" 14.1667
+cap "a_n849_n509#" "a_n945_n509#" 479.458
+cap "a_n657_109#" "a_n705_21#" 6.25956
+cap "a_n177_n509#" "a_n225_n597#" 6.25956
+cap "a_399_n509#" "a_303_n509#" 479.458
+cap "a_n1137_109#" "a_n1041_109#" 479.458
+cap "a_927_n597#" "a_1119_n597#" 28.5878
+cap "a_735_n597#" "a_639_n87#" 14.1667
+cap "a_591_109#" "a_495_109#" 479.458
+cap "a_303_109#" "a_351_531#" 6.25956
+cap "a_n417_n597#" "a_n513_n87#" 14.1667
+cap "a_n561_n509#" "a_n561_109#" 12.3196
+cap "a_n417_n597#" "a_n225_n597#" 28.5878
+cap "a_n321_n87#" "a_n369_n509#" 6.25956
+cap "a_975_n509#" "a_927_n597#" 6.25956
+cap "a_n945_n509#" "a_n1041_n509#" 479.458
+cap "a_n897_n87#" "a_n705_n87#" 28.5878
+cap "a_447_21#" "a_447_n87#" 86.2066
+cap "a_303_109#" "a_207_109#" 479.458
+cap "a_n321_21#" "a_n369_109#" 6.25956
+cap "a_1071_109#" "a_1119_531#" 6.25956
+cap "a_687_109#" "a_735_531#" 6.25956
+cap "a_351_n597#" "a_159_n597#" 28.5878
+cap "a_n993_531#" "a_n897_21#" 14.1667
+cap "a_303_n509#" "a_255_n87#" 6.25956
+cap "a_n897_n87#" "a_n849_n509#" 6.25956
+cap "a_n81_109#" "a_n33_531#" 6.25956
+cap "a_n129_n87#" "a_n225_n597#" 14.1667
+cap "a_n993_531#" "a_n1089_21#" 14.1667
+cap "a_1023_n87#" "a_1071_n509#" 6.25956
+cap "a_n513_n87#" "a_n465_n509#" 6.25956
+cap "a_n1185_531#" "a_n1185_n597#" 6.73951
+cap "a_1119_531#" "a_1023_21#" 14.1667
+cap "a_543_531#" "a_447_21#" 14.1667
+cap "a_1167_109#" "a_1119_531#" 6.25956
+cap "a_n225_531#" "a_n225_n597#" 6.73951
+cap "a_n513_21#" "a_n513_n87#" 86.2066
+cap "a_543_531#" "a_639_21#" 14.1667
+cap "a_303_109#" "a_255_21#" 6.25956
+cap "a_1023_n87#" "a_1023_21#" 86.2066
+cap "a_n417_n597#" "a_n321_n87#" 14.1667
+cap "a_687_109#" "a_783_109#" 479.458
+cap "a_n1089_n87#" "a_n1041_n509#" 6.25956
+cap "a_n177_109#" "a_n81_109#" 479.458
+cap "a_n129_n87#" "a_n33_n597#" 14.1667
+cap "a_15_n509#" "a_n33_n597#" 6.25956
+cap "a_n657_109#" "a_n609_531#" 6.25956
+cap "a_n1137_109#" "a_n1089_21#" 6.25956
+cap "a_n129_n87#" "a_n321_n87#" 28.5878
+cap "a_n801_531#" "a_n705_21#" 14.1667
+cap "a_351_n597#" "a_447_n87#" 14.1667
+cap "a_447_21#" "a_639_21#" 28.5878
+cap "a_n465_109#" "a_n561_109#" 479.458
+cap "a_591_109#" "a_543_531#" 6.25956
+cap "a_n417_n597#" "a_n609_n597#" 28.5878
+cap "a_1023_n87#" "a_831_n87#" 28.5878
+cap "a_n177_109#" "a_n177_n509#" 12.3196
+cap "a_111_109#" "a_15_109#" 479.458
+cap "a_n1229_109#" "a_n1229_n509#" 12.3196
+cap "a_n225_531#" "a_n273_109#" 6.25956
+cap "a_n945_109#" "a_n849_109#" 479.458
+cap "a_255_21#" "a_63_21#" 28.5878
+cap "a_n33_n597#" "a_n81_n509#" 6.25956
+cap "a_n1185_n597#" "a_n1137_n509#" 6.25956
+cap "a_n1041_109#" "a_n1041_n509#" 12.3196
+cap "a_n225_531#" "a_n33_531#" 28.5878
+cap "a_n33_n597#" "a_159_n597#" 28.5878
+cap "a_n609_n597#" "a_n609_531#" 6.73951
+cap "a_n993_n597#" "a_n1041_n509#" 6.25956
+cap "a_n321_21#" "a_n321_n87#" 86.2066
+cap "a_591_109#" "a_639_21#" 6.25956
+cap "a_303_109#" "a_399_109#" 479.458
+cap "a_303_n509#" "a_207_n509#" 479.458
+cap "a_n561_n509#" "a_n513_n87#" 6.25956
+cap "a_1023_21#" "a_927_531#" 14.1667
+cap "a_495_n509#" "a_591_n509#" 479.458
+cap "a_n321_21#" "a_n273_109#" 6.25956
+cap "a_735_n597#" "a_543_n597#" 28.5878
+cap "a_1119_531#" "a_1119_n597#" 6.73951
+cap "a_1023_21#" "a_831_21#" 28.5878
+cap "a_n225_531#" "a_n177_109#" 6.25956
+cap "a_495_n509#" "a_543_n597#" 6.25956
+cap "a_1023_n87#" "a_1119_n597#" 14.1667
+cap "a_159_531#" "a_351_531#" 28.5878
+cap "a_n465_109#" "a_n369_109#" 479.458
+cap "a_543_531#" "a_735_531#" 28.5878
+cap "a_n801_n597#" "a_n753_n509#" 6.25956
+cap "a_975_n509#" "a_1023_n87#" 6.25956
+cap "a_n1089_n87#" "a_n1137_n509#" 6.25956
+cap "a_207_109#" "a_159_531#" 6.25956
+cap "a_n801_531#" "a_n609_531#" 28.5878
+cap "a_n753_109#" "a_n753_n509#" 12.3196
+cap "a_207_n509#" "a_255_n87#" 6.25956
+cap "a_n273_n509#" "a_n369_n509#" 479.458
+cap "a_n897_21#" "a_n849_109#" 6.25956
+cap "a_831_n87#" "a_831_21#" 86.2066
+cap "a_687_n509#" "a_735_n597#" 6.25956
+cap "a_n561_n509#" "a_n657_n509#" 479.458
+cap "a_975_109#" "a_1071_109#" 479.458
+cap "a_591_n509#" "a_639_n87#" 6.25956
+cap "a_255_21#" "a_159_531#" 14.1667
+cap "a_n273_n509#" "a_n177_n509#" 479.458
+cap "a_831_n87#" "a_735_n597#" 14.1667
+cap "a_255_21#" "a_255_n87#" 86.2066
+cap "a_639_21#" "a_735_531#" 14.1667
+cap "a_975_109#" "a_1023_21#" 6.25956
+cap "a_543_n597#" "a_639_n87#" 14.1667
+cap "a_63_n87#" "a_n33_n597#" 14.1667
+cap "a_n609_n597#" "a_n561_n509#" 6.25956
+cap "a_n657_109#" "a_n561_109#" 479.458
+cap "a_n801_n597#" "a_n705_n87#" 14.1667
+cap "a_927_n597#" "a_1023_n87#" 14.1667
+cap "a_n1089_21#" "a_n1185_531#" 14.1667
+cap "a_n849_n509#" "a_n801_n597#" 6.25956
+cap "a_495_n509#" "a_495_109#" 12.3196
+cap "a_n1137_109#" "a_n1229_109#" 479.458
+cap "a_n753_109#" "a_n657_109#" 479.458
+cap "a_783_n509#" "a_783_109#" 12.3196
+cap "a_399_109#" "a_399_n509#" 12.3196
+cap "a_n801_531#" "a_n897_21#" 14.1667
+cap "a_687_n509#" "a_639_n87#" 6.25956
+cap "a_n33_531#" "a_n129_21#" 14.1667
+cap "a_n753_109#" "a_n849_109#" 479.458
+cap "a_831_n87#" "a_639_n87#" 28.5878
+cap "a_n609_n597#" "a_n801_n597#" 28.5878
+cap "a_207_109#" "a_207_n509#" 12.3196
+cap "a_n1089_n87#" "a_n1185_n597#" 14.1667
+cap "a_111_109#" "a_63_21#" 6.25956
+cap "a_159_531#" "a_159_n597#" 6.73951
+cap "a_495_n509#" "a_447_n87#" 6.25956
+cap "a_n897_n87#" "a_n945_n509#" 6.25956
+cap "a_879_109#" "a_783_109#" 479.458
+cap "a_63_n87#" "a_63_21#" 86.2066
+cap "a_255_n87#" "a_159_n597#" 14.1667
+cap "a_255_21#" "a_351_531#" 14.1667
+cap "a_n177_109#" "a_n129_21#" 6.25956
+cap "a_15_109#" "a_n33_531#" 6.25956
+cap "a_399_n509#" "a_447_n87#" 6.25956
+cap "a_n705_n87#" "a_n753_n509#" 6.25956
+cap "a_207_109#" "a_255_21#" 6.25956
+cap "a_n129_21#" "a_63_21#" 28.5878
+cap "a_n1229_n509#" "a_n1137_n509#" 479.458
+cap "a_927_n597#" "a_927_531#" 6.73951
+cap "a_n273_109#" "a_n369_109#" 479.458
+cap "a_n993_531#" "a_n1185_531#" 28.5878
+cap "a_n849_n509#" "a_n753_n509#" 479.458
+cap "a_n417_n597#" "a_n369_n509#" 6.25956
+cap "a_n801_531#" "a_n801_n597#" 6.73951
+cap "a_975_109#" "a_975_n509#" 12.3196
+cap "a_n753_109#" "a_n801_531#" 6.25956
+cap "a_927_n597#" "a_735_n597#" 28.5878
+cap "a_n705_n87#" "a_n513_n87#" 28.5878
+cap "a_639_21#" "a_831_21#" 28.5878
+cap "a_n609_531#" "a_n705_21#" 14.1667
+cap "a_783_n509#" "a_735_n597#" 6.25956
+cap "a_n657_n509#" "a_n753_n509#" 479.458
+cap "a_n993_n597#" "a_n1185_n597#" 28.5878
+cap "a_n945_n509#" "a_n945_109#" 12.3196
+cap "a_n897_n87#" "a_n1089_n87#" 28.5878
+cap "a_591_n509#" "a_543_n597#" 6.25956
+cap "a_n993_n597#" "a_n945_n509#" 6.25956
+cap "a_n513_21#" "a_n705_21#" 28.5878
+cap "a_447_n87#" "a_639_n87#" 28.5878
+cap "a_15_109#" "a_63_21#" 6.25956
+cap "a_n33_n597#" "a_n225_n597#" 28.5878
+cap "a_447_n87#" "a_255_n87#" 28.5878
+cap "a_n801_531#" "a_n993_531#" 28.5878
+cap "a_n369_n509#" "a_n465_n509#" 479.458
+cap "a_1071_109#" "a_1071_n509#" 12.3196
+cap "a_n1137_109#" "a_n1185_531#" 6.25956
+cap "a_n321_n87#" "a_n513_n87#" 28.5878
+cap "a_n321_n87#" "a_n225_n597#" 14.1667
+cap "a_879_109#" "a_927_531#" 6.25956
+cap "a_783_109#" "a_735_531#" 6.25956
+cap "a_n417_n597#" "a_n417_531#" 6.73951
+cap "a_n129_n87#" "a_n177_n509#" 6.25956
+cap "a_1071_109#" "a_1023_21#" 6.25956
+cap "a_1167_109#" "a_1071_109#" 479.458
+cap "a_879_109#" "a_831_21#" 6.25956
+cap "a_399_109#" "a_351_531#" 6.25956
+cap "a_n1229_109#" "a_n1185_531#" 6.25956
+cap "a_111_109#" "a_159_531#" 6.25956
+cap "a_879_n509#" "a_831_n87#" 6.25956
+cap "a_n81_109#" "a_n81_n509#" 12.3196
+cap "a_63_n87#" "a_255_n87#" 28.5878
+cap "a_n705_n87#" "a_n657_n509#" 6.25956
+cap "a_n609_n597#" "a_n513_n87#" 14.1667
+cap "a_687_n509#" "a_591_n509#" 479.458
+cap "a_n993_n597#" "a_n1089_n87#" 14.1667
+cap "a_n897_n87#" "a_n993_n597#" 14.1667
+cap "a_n609_531#" "a_n417_531#" 28.5878
+cap "a_207_n509#" "a_159_n597#" 6.25956
+cap "a_n417_n597#" "a_n465_n509#" 6.25956
+cap "a_n225_531#" "a_n417_531#" 28.5878
+cap "a_n657_109#" "a_n657_n509#" 12.3196
+cap "a_n513_21#" "a_n417_531#" 14.1667
+cap "a_n81_n509#" "a_n177_n509#" 479.458
+cap "a_n849_n509#" "a_n849_109#" 12.3196
+cap "a_639_21#" "a_639_n87#" 86.2066
+cap "a_n609_n597#" "a_n705_n87#" 14.1667
+cap "a_111_n509#" "a_207_n509#" 479.458
+cap "a_687_n509#" "a_687_109#" 12.3196
+cap "a_n897_21#" "a_n705_21#" 28.5878
+cap "a_n33_n597#" "a_n33_531#" 6.73951
+cap "a_399_n509#" "a_351_n597#" 6.25956
+cap "a_351_n597#" "a_303_n509#" 6.25956
+cap "a_n1185_n597#" "a_n1229_n509#" 6.25956
+cap "a_1071_n509#" "a_1167_n509#" 479.458
+cap "a_975_109#" "a_879_109#" 479.458
+cap "a_n1041_109#" "a_n945_109#" 479.458
+cap "a_n1137_109#" "a_n1137_n509#" 12.3196
+cap "a_n321_21#" "a_n417_531#" 14.1667
+cap "a_735_531#" "a_927_531#" 28.5878
+cap "a_n513_21#" "a_n609_531#" 14.1667
+cap "a_n609_n597#" "a_n657_n509#" 6.25956
+cap "a_1167_109#" "a_1167_n509#" 12.3196
+cap "a_831_21#" "a_735_531#" 14.1667
+cap "a_1119_531#" "a_927_531#" 28.5878
+cap "a_543_531#" "a_351_531#" 28.5878
+cap "a_n129_n87#" "a_n81_n509#" 6.25956
+cap "a_735_n597#" "a_735_531#" 6.73951
+cap "a_879_n509#" "a_975_n509#" 479.458
+cap "a_15_n509#" "a_n81_n509#" 479.458
+cap "a_n897_n87#" "a_n897_21#" 86.2066
+cap "a_351_n597#" "a_255_n87#" 14.1667
+cap "a_n1089_n87#" "a_n1089_21#" 86.2066
+cap "a_n225_531#" "a_n321_21#" 14.1667
+cap "a_1071_n509#" "a_1119_n597#" 6.25956
+cap "a_n321_21#" "a_n513_21#" 28.5878
+cap "a_111_n509#" "a_15_n509#" 479.458
+cap "a_n273_109#" "a_n177_109#" 479.458
+cap "a_111_109#" "a_207_109#" 479.458
+cap "a_447_n87#" "a_543_n597#" 14.1667
+cap "a_975_n509#" "a_1071_n509#" 479.458
+cap "a_783_109#" "a_831_21#" 6.25956
+cap "a_447_21#" "a_351_531#" 14.1667
+cap "a_n753_109#" "a_n705_21#" 6.25956
+cap "a_n33_531#" "a_63_21#" 14.1667
+cap "a_399_109#" "a_495_109#" 479.458
+cap "a_n81_109#" "a_n129_21#" 6.25956
+cap "a_543_531#" "a_543_n597#" 6.73951
+cap "a_n801_531#" "a_n849_109#" 6.25956
+cap "a_n897_21#" "a_n945_109#" 6.25956
+cap "a_879_n509#" "a_927_n597#" 6.25956
+cap "a_n1041_109#" "a_n1089_21#" 6.25956
+cap "a_879_n509#" "a_783_n509#" 479.458
+cap "a_n561_n509#" "a_n465_n509#" 479.458
+cap "a_n273_n509#" "a_n225_n597#" 6.25956
+cap "a_111_n509#" "a_159_n597#" 6.25956
+cap "a_303_109#" "a_303_n509#" 12.3196
+cap "a_n897_n87#" "a_n801_n597#" 14.1667
+cap "a_447_21#" "a_255_21#" 28.5878
+cap "a_15_109#" "a_n81_109#" 479.458
+cap "a_1167_n509#" "a_1119_n597#" 6.25956
+cap "a_n129_n87#" "a_63_n87#" 28.5878
+cap "a_351_n597#" "a_351_531#" 6.73951
+cap "a_15_n509#" "a_63_n87#" 6.25956
+cap "a_n1137_n509#" "a_n1041_n509#" 479.458
+cap "a_879_n509#" "a_879_109#" 12.3196
+cap "a_831_21#" "a_927_531#" 14.1667
+cap "a_n369_109#" "a_n369_n509#" 12.3196
+cap "a_n465_109#" "a_n417_531#" 6.25956
+cap "a_n609_531#" "a_n561_109#" 6.25956
+cap "a_687_109#" "a_639_21#" 6.25956
+cap "a_n321_n87#" "a_n273_n509#" 6.25956
+cap "a_n129_n87#" "a_n129_21#" 86.2066
+cap "a_591_109#" "a_591_n509#" 12.3196
+cap "a_n513_21#" "a_n561_109#" 6.25956
+cap "a_543_531#" "a_495_109#" 6.25956
+cap "a_n225_531#" "a_n129_21#" 14.1667
+cap "a_n993_n597#" "a_n801_n597#" 28.5878
+cap "a_159_531#" "a_n33_531#" 28.5878
+cap "a_n273_109#" "a_n273_n509#" 12.3196
+cap "a_687_n509#" "a_783_n509#" 479.458
+cap "a_n1089_21#" "a_n897_21#" 28.5878
+device msubckt sky130_fd_pr__nfet_01v8 1137 -509 1138 -508 l=30 w=400 "a_n1331_n683#" "a_1119_n597#" 60 0 "a_1071_n509#" 400 0 "a_1167_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 -509 1042 -508 l=30 w=400 "a_n1331_n683#" "a_1023_n87#" 60 0 "a_975_n509#" 400 0 "a_1071_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 -509 946 -508 l=30 w=400 "a_n1331_n683#" "a_927_n597#" 60 0 "a_879_n509#" 400 0 "a_975_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 -509 850 -508 l=30 w=400 "a_n1331_n683#" "a_831_n87#" 60 0 "a_783_n509#" 400 0 "a_879_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 -509 754 -508 l=30 w=400 "a_n1331_n683#" "a_735_n597#" 60 0 "a_687_n509#" 400 0 "a_783_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 -509 658 -508 l=30 w=400 "a_n1331_n683#" "a_639_n87#" 60 0 "a_591_n509#" 400 0 "a_687_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 -509 562 -508 l=30 w=400 "a_n1331_n683#" "a_543_n597#" 60 0 "a_495_n509#" 400 0 "a_591_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 -509 466 -508 l=30 w=400 "a_n1331_n683#" "a_447_n87#" 60 0 "a_399_n509#" 400 0 "a_495_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 -509 370 -508 l=30 w=400 "a_n1331_n683#" "a_351_n597#" 60 0 "a_303_n509#" 400 0 "a_399_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 -509 274 -508 l=30 w=400 "a_n1331_n683#" "a_255_n87#" 60 0 "a_207_n509#" 400 0 "a_303_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 -509 178 -508 l=30 w=400 "a_n1331_n683#" "a_159_n597#" 60 0 "a_111_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 -509 82 -508 l=30 w=400 "a_n1331_n683#" "a_63_n87#" 60 0 "a_15_n509#" 400 0 "a_111_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -509 -14 -508 l=30 w=400 "a_n1331_n683#" "a_n33_n597#" 60 0 "a_n81_n509#" 400 0 "a_15_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -509 -110 -508 l=30 w=400 "a_n1331_n683#" "a_n129_n87#" 60 0 "a_n177_n509#" 400 0 "a_n81_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -509 -206 -508 l=30 w=400 "a_n1331_n683#" "a_n225_n597#" 60 0 "a_n273_n509#" 400 0 "a_n177_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 -509 -302 -508 l=30 w=400 "a_n1331_n683#" "a_n321_n87#" 60 0 "a_n369_n509#" 400 0 "a_n273_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 -509 -398 -508 l=30 w=400 "a_n1331_n683#" "a_n417_n597#" 60 0 "a_n465_n509#" 400 0 "a_n369_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 -509 -494 -508 l=30 w=400 "a_n1331_n683#" "a_n513_n87#" 60 0 "a_n561_n509#" 400 0 "a_n465_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 -509 -590 -508 l=30 w=400 "a_n1331_n683#" "a_n609_n597#" 60 0 "a_n657_n509#" 400 0 "a_n561_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 -509 -686 -508 l=30 w=400 "a_n1331_n683#" "a_n705_n87#" 60 0 "a_n753_n509#" 400 0 "a_n657_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 -509 -782 -508 l=30 w=400 "a_n1331_n683#" "a_n801_n597#" 60 0 "a_n849_n509#" 400 0 "a_n753_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 -509 -878 -508 l=30 w=400 "a_n1331_n683#" "a_n897_n87#" 60 0 "a_n945_n509#" 400 0 "a_n849_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 -509 -974 -508 l=30 w=400 "a_n1331_n683#" "a_n993_n597#" 60 0 "a_n1041_n509#" 400 0 "a_n945_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 -509 -1070 -508 l=30 w=400 "a_n1331_n683#" "a_n1089_n87#" 60 0 "a_n1137_n509#" 400 0 "a_n1041_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 -509 -1166 -508 l=30 w=400 "a_n1331_n683#" "a_n1185_n597#" 60 0 "a_n1229_n509#" 400 0 "a_n1137_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1137 109 1138 110 l=30 w=400 "a_n1331_n683#" "a_1119_531#" 60 0 "a_1071_109#" 400 0 "a_1167_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 109 1042 110 l=30 w=400 "a_n1331_n683#" "a_1023_21#" 60 0 "a_975_109#" 400 0 "a_1071_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 109 946 110 l=30 w=400 "a_n1331_n683#" "a_927_531#" 60 0 "a_879_109#" 400 0 "a_975_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 109 850 110 l=30 w=400 "a_n1331_n683#" "a_831_21#" 60 0 "a_783_109#" 400 0 "a_879_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 109 754 110 l=30 w=400 "a_n1331_n683#" "a_735_531#" 60 0 "a_687_109#" 400 0 "a_783_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 109 658 110 l=30 w=400 "a_n1331_n683#" "a_639_21#" 60 0 "a_591_109#" 400 0 "a_687_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 109 562 110 l=30 w=400 "a_n1331_n683#" "a_543_531#" 60 0 "a_495_109#" 400 0 "a_591_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 109 466 110 l=30 w=400 "a_n1331_n683#" "a_447_21#" 60 0 "a_399_109#" 400 0 "a_495_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 109 370 110 l=30 w=400 "a_n1331_n683#" "a_351_531#" 60 0 "a_303_109#" 400 0 "a_399_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 109 274 110 l=30 w=400 "a_n1331_n683#" "a_255_21#" 60 0 "a_207_109#" 400 0 "a_303_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 109 178 110 l=30 w=400 "a_n1331_n683#" "a_159_531#" 60 0 "a_111_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 109 82 110 l=30 w=400 "a_n1331_n683#" "a_63_21#" 60 0 "a_15_109#" 400 0 "a_111_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 109 -14 110 l=30 w=400 "a_n1331_n683#" "a_n33_531#" 60 0 "a_n81_109#" 400 0 "a_15_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 109 -110 110 l=30 w=400 "a_n1331_n683#" "a_n129_21#" 60 0 "a_n177_109#" 400 0 "a_n81_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 109 -206 110 l=30 w=400 "a_n1331_n683#" "a_n225_531#" 60 0 "a_n273_109#" 400 0 "a_n177_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 109 -302 110 l=30 w=400 "a_n1331_n683#" "a_n321_21#" 60 0 "a_n369_109#" 400 0 "a_n273_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 109 -398 110 l=30 w=400 "a_n1331_n683#" "a_n417_531#" 60 0 "a_n465_109#" 400 0 "a_n369_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 109 -494 110 l=30 w=400 "a_n1331_n683#" "a_n513_21#" 60 0 "a_n561_109#" 400 0 "a_n465_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 109 -590 110 l=30 w=400 "a_n1331_n683#" "a_n609_531#" 60 0 "a_n657_109#" 400 0 "a_n561_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 109 -686 110 l=30 w=400 "a_n1331_n683#" "a_n705_21#" 60 0 "a_n753_109#" 400 0 "a_n657_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 109 -782 110 l=30 w=400 "a_n1331_n683#" "a_n801_531#" 60 0 "a_n849_109#" 400 0 "a_n753_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 109 -878 110 l=30 w=400 "a_n1331_n683#" "a_n897_21#" 60 0 "a_n945_109#" 400 0 "a_n849_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 109 -974 110 l=30 w=400 "a_n1331_n683#" "a_n993_531#" 60 0 "a_n1041_109#" 400 0 "a_n945_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 109 -1070 110 l=30 w=400 "a_n1331_n683#" "a_n1089_21#" 60 0 "a_n1137_109#" 400 0 "a_n1041_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 109 -1166 110 l=30 w=400 "a_n1331_n683#" "a_n1185_531#" 60 0 "a_n1229_109#" 400 0 "a_n1137_109#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.mag
new file mode 100644
index 0000000..b673f68
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_RE4MKQ.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+<< pwell >>
+rect -1367 -719 1367 719
+<< nmos >>
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+<< ndiff >>
+rect -1229 497 -1167 509
+rect -1229 121 -1217 497
+rect -1183 121 -1167 497
+rect -1229 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1229 509
+rect 1167 121 1183 497
+rect 1217 121 1229 497
+rect 1167 109 1229 121
+rect -1229 -121 -1167 -109
+rect -1229 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1229 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1229 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1229 -121
+rect 1167 -509 1229 -497
+<< ndiffc >>
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+<< psubdiff >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< psubdiffcont >>
+rect -1235 649 1235 683
+rect -1331 -587 -1297 587
+rect 1297 -587 1331 587
+rect -1235 -683 1235 -649
+<< poly >>
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1137 509 1167 531
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect -1167 -531 -1137 -509
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+<< polycont >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< locali >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< viali >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< metal1 >>
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+<< properties >>
+string FIXED_BBOX -1314 -666 1314 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.ext b/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.ext
new file mode 100644
index 0000000..3708bf2
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.ext
@@ -0,0 +1,459 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_543_n1127#" 929 155.425 543 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n1127#" 882 12.2058 447 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n1127#" 882 12.2058 351 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n1127#" 882 12.2058 255 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n1127#" 882 12.2058 159 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n1127#" 882 12.2058 63 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1127#" 882 12.2058 -33 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n1127#" 882 12.2058 -129 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n1127#" 882 12.2058 -225 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n1127#" 882 12.2058 -321 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n1127#" 882 12.2058 -417 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n1127#" 882 12.2058 -513 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_n1127#" 929 155.176 -605 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n1215#" 837 116.534 399 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n705#" 837 98.7705 495 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n1215#" 837 96.6422 207 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n705#" 837 62.121 303 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n1215#" 837 96.6422 15 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n705#" 837 62.121 111 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n1215#" 837 96.6422 -177 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n705#" 837 62.121 -81 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n1215#" 837 96.6422 -369 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n705#" 837 62.121 -273 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n1215#" 837 133.546 -561 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n705#" 837 82.2668 -465 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n509#" 929 147.273 543 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n509#" 882 4.30285 447 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n509#" 882 4.30285 351 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n509#" 882 4.30285 255 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n509#" 882 4.30285 159 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n509#" 882 4.30285 63 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n509#" 882 4.30285 -33 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n509#" 882 4.30285 -129 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n509#" 882 4.30285 -225 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n509#" 882 4.30285 -321 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n509#" 882 4.30285 -417 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n509#" 882 4.30285 -513 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_n509#" 929 147.132 -605 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n597#" 837 88.8346 495 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n597#" 837 52.1851 303 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n87#" 837 71.8703 399 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n597#" 837 52.1851 111 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n87#" 837 51.9786 207 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n597#" 837 52.1851 -81 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n87#" 837 51.9786 15 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n597#" 837 52.1851 -273 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n87#" 837 51.9786 -177 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n597#" 837 72.3309 -465 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n87#" 837 51.9786 -369 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n87#" 837 88.8821 -561 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_109#" 929 147.132 543 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_109#" 882 4.30285 447 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_109#" 882 4.30285 351 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_109#" 882 4.30285 255 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_109#" 882 4.30285 159 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_109#" 882 4.30285 63 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_109#" 882 4.30285 -33 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_109#" 882 4.30285 -129 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_109#" 882 4.30285 -225 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_109#" 882 4.30285 -321 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_109#" 882 4.30285 -417 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_109#" 882 4.30285 -513 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_109#" 929 147.273 -605 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_21#" 837 72.0768 399 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_531#" 837 88.628 495 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_21#" 837 52.1851 207 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_531#" 837 51.9786 303 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_21#" 837 52.1851 15 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_531#" 837 51.9786 111 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_21#" 837 52.1851 -177 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_531#" 837 51.9786 -81 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_21#" 837 52.1851 -369 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_531#" 837 51.9786 -273 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_21#" 837 89.0887 -561 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_531#" 837 72.1243 -465 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_727#" 929 155.695 543 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_727#" 882 12.4348 447 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_727#" 882 12.4348 351 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_727#" 882 12.4348 255 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_727#" 882 12.4348 159 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_727#" 882 12.4348 63 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_727#" 882 12.4348 -33 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_727#" 882 12.4348 -129 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_727#" 882 12.4348 -225 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_727#" 882 12.4348 -321 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_727#" 882 12.4348 -417 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_727#" 882 12.4348 -513 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_727#" 929 155.264 -605 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_639#" 837 98.977 495 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_639#" 837 62.3276 303 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_1149#" 837 116.534 399 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_639#" 837 62.3276 111 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_1149#" 837 96.6422 207 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_639#" 837 62.3276 -81 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_1149#" 837 96.6422 15 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_639#" 837 62.3276 -273 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_1149#" 837 96.6422 -177 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_639#" 837 82.4733 -465 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_1149#" 837 96.6422 -369 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_1149#" 837 133.546 -561 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n707_n1301#" 0 0 -707 -1301 ppd 0 0 0 0 0 0 0 0 0 0 268464 15792 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 268464 15792 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n561_n1215#" "a_n369_n1215#" 28.5878
+cap "a_399_21#" "a_351_109#" 6.25956
+cap "a_n225_109#" "a_n129_109#" 479.458
+cap "a_495_531#" "a_447_109#" 6.25956
+cap "a_n177_21#" "a_n177_n87#" 86.2066
+cap "a_n561_1149#" "a_n605_727#" 6.25956
+cap "a_15_1149#" "a_207_1149#" 28.5878
+cap "a_111_n597#" "a_159_n509#" 6.25956
+cap "a_207_n87#" "a_255_n509#" 6.25956
+cap "a_n225_727#" "a_n225_109#" 12.3196
+cap "a_n273_531#" "a_n177_21#" 14.1667
+cap "a_543_n509#" "a_543_n1127#" 12.3196
+cap "a_n561_n87#" "a_n465_n597#" 14.1667
+cap "a_447_n509#" "a_543_n509#" 479.458
+cap "a_303_639#" "a_255_727#" 6.25956
+cap "a_n321_727#" "a_n225_727#" 479.458
+cap "a_399_1149#" "a_351_727#" 6.25956
+cap "a_n273_639#" "a_n273_531#" 86.2066
+cap "a_15_21#" "a_63_109#" 6.25956
+cap "a_111_531#" "a_159_109#" 6.25956
+cap "a_n561_21#" "a_n561_n87#" 86.2066
+cap "a_n369_1149#" "a_n273_639#" 14.1667
+cap "a_447_109#" "a_447_n509#" 12.3196
+cap "a_303_n597#" "a_495_n597#" 28.5878
+cap "a_15_n1215#" "a_207_n1215#" 28.5878
+cap "a_351_109#" "a_447_109#" 479.458
+cap "a_399_21#" "a_399_n87#" 86.2066
+cap "a_n81_639#" "a_n33_727#" 6.25956
+cap "a_15_1149#" "a_63_727#" 6.25956
+cap "a_351_727#" "a_351_109#" 12.3196
+cap "a_303_531#" "a_399_21#" 14.1667
+cap "a_n129_n1127#" "a_n33_n1127#" 479.458
+cap "a_n81_n597#" "a_111_n597#" 28.5878
+cap "a_255_727#" "a_351_727#" 479.458
+cap "a_303_639#" "a_303_531#" 86.2066
+cap "a_n129_n509#" "a_n129_n1127#" 12.3196
+cap "a_n81_n705#" "a_n177_n1215#" 14.1667
+cap "a_207_1149#" "a_303_639#" 14.1667
+cap "a_n225_n509#" "a_n129_n509#" 479.458
+cap "a_n177_n87#" "a_n177_n1215#" 6.73951
+cap "a_n177_21#" "a_15_21#" 28.5878
+cap "a_n225_109#" "a_n225_n509#" 12.3196
+cap "a_n177_n87#" "a_n273_n597#" 14.1667
+cap "a_n465_n705#" "a_n273_n705#" 28.5878
+cap "a_447_n1127#" "a_543_n1127#" 479.458
+cap "a_n321_109#" "a_n225_109#" 479.458
+cap "a_n273_531#" "a_n273_n597#" 6.73951
+cap "a_n273_639#" "a_n81_639#" 28.5878
+cap "a_n561_n87#" "a_n561_n1215#" 6.73951
+cap "a_n321_727#" "a_n321_109#" 12.3196
+cap "a_n273_531#" "a_n369_21#" 14.1667
+cap "a_n177_n1215#" "a_n225_n1127#" 6.25956
+cap "a_n81_n705#" "a_n129_n1127#" 6.25956
+cap "a_447_n509#" "a_447_n1127#" 12.3196
+cap "a_495_n705#" "a_399_n1215#" 14.1667
+cap "a_n417_727#" "a_n321_727#" 479.458
+cap "a_n369_1149#" "a_n369_21#" 6.73951
+cap "a_351_n509#" "a_447_n509#" 479.458
+cap "a_399_n87#" "a_399_n1215#" 6.73951
+cap "a_n369_1149#" "a_n465_639#" 14.1667
+cap "a_n273_n597#" "a_n321_n509#" 6.25956
+cap "a_n177_n87#" "a_n225_n509#" 6.25956
+cap "a_351_109#" "a_351_n509#" 12.3196
+cap "a_399_n87#" "a_303_n597#" 14.1667
+cap "a_n561_n1215#" "a_n513_n1127#" 6.25956
+cap "a_n465_n705#" "a_n417_n1127#" 6.25956
+cap "a_111_n705#" "a_303_n705#" 28.5878
+cap "a_255_109#" "a_351_109#" 479.458
+cap "a_303_531#" "a_303_n597#" 6.73951
+cap "a_399_n1215#" "a_351_n1127#" 6.25956
+cap "a_n225_n1127#" "a_n129_n1127#" 479.458
+cap "a_495_n705#" "a_447_n1127#" 6.25956
+cap "a_n369_21#" "a_n417_109#" 6.25956
+cap "a_n273_531#" "a_n321_109#" 6.25956
+cap "a_255_727#" "a_255_109#" 12.3196
+cap "a_303_531#" "a_207_21#" 14.1667
+cap "a_n561_n87#" "a_n605_n509#" 6.25956
+cap "a_15_n87#" "a_207_n87#" 28.5878
+cap "a_159_727#" "a_255_727#" 479.458
+cap "a_207_1149#" "a_207_21#" 6.73951
+cap "a_n225_n509#" "a_n225_n1127#" 12.3196
+cap "a_n273_n705#" "a_n177_n1215#" 14.1667
+cap "a_n465_639#" "a_n513_727#" 6.25956
+cap "a_n369_1149#" "a_n417_727#" 6.25956
+cap "a_207_1149#" "a_111_639#" 14.1667
+cap "a_303_n597#" "a_255_n509#" 6.25956
+cap "a_n321_n509#" "a_n225_n509#" 479.458
+cap "a_399_n87#" "a_351_n509#" 6.25956
+cap "a_n273_n597#" "a_n273_n705#" 86.2066
+cap "a_15_n1215#" "a_63_n1127#" 6.25956
+cap "a_111_n705#" "a_159_n1127#" 6.25956
+cap "a_n81_531#" "a_111_531#" 28.5878
+cap "a_n321_109#" "a_n321_n509#" 12.3196
+cap "a_n369_n87#" "a_n273_n597#" 14.1667
+cap "a_495_639#" "a_447_727#" 6.25956
+cap "a_207_21#" "a_159_109#" 6.25956
+cap "a_n417_109#" "a_n321_109#" 479.458
+cap "a_303_531#" "a_255_109#" 6.25956
+cap "a_n369_21#" "a_n369_n87#" 86.2066
+cap "a_351_n1127#" "a_447_n1127#" 479.458
+cap "a_n177_1149#" "a_15_1149#" 28.5878
+cap "a_n81_n597#" "a_n33_n509#" 6.25956
+cap "a_15_n87#" "a_63_n509#" 6.25956
+cap "a_351_n509#" "a_351_n1127#" 12.3196
+cap "a_n417_727#" "a_n417_109#" 12.3196
+cap "a_303_n705#" "a_399_n1215#" 14.1667
+cap "a_n465_531#" "a_n369_21#" 14.1667
+cap "a_111_639#" "a_63_727#" 6.25956
+cap "a_n513_727#" "a_n417_727#" 479.458
+cap "a_207_1149#" "a_159_727#" 6.25956
+cap "a_n465_639#" "a_n465_531#" 86.2066
+cap "a_255_n509#" "a_351_n509#" 479.458
+cap "a_303_n597#" "a_303_n705#" 86.2066
+cap "a_n177_21#" "a_n129_109#" 6.25956
+cap "a_n81_531#" "a_n33_109#" 6.25956
+cap "a_n561_1149#" "a_n369_1149#" 28.5878
+cap "a_255_109#" "a_255_n509#" 12.3196
+cap "a_207_n87#" "a_303_n597#" 14.1667
+cap "a_n177_n1215#" "a_15_n1215#" 28.5878
+cap "a_495_639#" "a_495_531#" 86.2066
+cap "a_159_109#" "a_255_109#" 479.458
+cap "a_207_21#" "a_207_n87#" 86.2066
+cap "a_n273_639#" "a_n225_727#" 6.25956
+cap "a_n177_1149#" "a_n129_727#" 6.25956
+cap "a_399_1149#" "a_495_639#" 14.1667
+cap "a_159_727#" "a_159_109#" 12.3196
+cap "a_111_531#" "a_207_21#" 14.1667
+cap "a_n321_n1127#" "a_n225_n1127#" 479.458
+cap "a_n273_n597#" "a_n81_n597#" 28.5878
+cap "a_n321_n509#" "a_n321_n1127#" 12.3196
+cap "a_63_727#" "a_159_727#" 479.458
+cap "a_n273_n705#" "a_n369_n1215#" 14.1667
+cap "a_111_639#" "a_111_531#" 86.2066
+cap "a_399_21#" "a_447_109#" 6.25956
+cap "a_495_531#" "a_543_109#" 6.25956
+cap "a_n561_1149#" "a_n513_727#" 6.25956
+cap "a_15_1149#" "a_111_639#" 14.1667
+cap "a_n417_n509#" "a_n321_n509#" 479.458
+cap "a_n369_n87#" "a_n369_n1215#" 6.73951
+cap "a_n369_21#" "a_n177_21#" 28.5878
+cap "a_n417_109#" "a_n417_n509#" 12.3196
+cap "a_n369_n87#" "a_n465_n597#" 14.1667
+cap "a_303_639#" "a_351_727#" 6.25956
+cap "a_399_1149#" "a_447_727#" 6.25956
+cap "a_n513_109#" "a_n417_109#" 479.458
+cap "a_n465_531#" "a_n465_n597#" 6.73951
+cap "a_255_n1127#" "a_351_n1127#" 479.458
+cap "a_n465_639#" "a_n273_639#" 28.5878
+cap "a_n513_727#" "a_n513_109#" 12.3196
+cap "a_n465_531#" "a_n561_21#" 14.1667
+cap "a_n369_n1215#" "a_n417_n1127#" 6.25956
+cap "a_n273_n705#" "a_n321_n1127#" 6.25956
+cap "a_255_n509#" "a_255_n1127#" 12.3196
+cap "a_303_n705#" "a_207_n1215#" 14.1667
+cap "a_495_531#" "a_495_n597#" 6.73951
+cap "a_159_n509#" "a_255_n509#" 479.458
+cap "a_n605_727#" "a_n513_727#" 479.458
+cap "a_207_n87#" "a_207_n1215#" 6.73951
+cap "a_207_21#" "a_399_21#" 28.5878
+cap "a_n465_n597#" "a_n513_n509#" 6.25956
+cap "a_n369_n87#" "a_n417_n509#" 6.25956
+cap "a_159_109#" "a_159_n509#" 12.3196
+cap "a_207_n87#" "a_111_n597#" 14.1667
+cap "a_n81_n705#" "a_111_n705#" 28.5878
+cap "a_63_109#" "a_159_109#" 479.458
+cap "a_111_531#" "a_111_n597#" 6.73951
+cap "a_495_n597#" "a_447_n509#" 6.25956
+cap "a_111_639#" "a_303_639#" 28.5878
+cap "a_n561_21#" "a_n605_109#" 6.25956
+cap "a_n465_531#" "a_n513_109#" 6.25956
+cap "a_63_727#" "a_63_109#" 12.3196
+cap "a_111_531#" "a_15_21#" 14.1667
+cap "a_207_n1215#" "a_159_n1127#" 6.25956
+cap "a_n417_n1127#" "a_n321_n1127#" 479.458
+cap "a_303_n705#" "a_255_n1127#" 6.25956
+cap "a_n177_n87#" "a_15_n87#" 28.5878
+cap "a_n33_727#" "a_63_727#" 479.458
+cap "a_15_1149#" "a_15_21#" 6.73951
+cap "a_n417_n509#" "a_n417_n1127#" 12.3196
+cap "a_n465_n705#" "a_n369_n1215#" 14.1667
+cap "a_111_n597#" "a_63_n509#" 6.25956
+cap "a_n513_n509#" "a_n417_n509#" 479.458
+cap "a_207_n87#" "a_159_n509#" 6.25956
+cap "a_n465_n597#" "a_n465_n705#" 86.2066
+cap "a_15_1149#" "a_n81_639#" 14.1667
+cap "a_n273_531#" "a_n81_531#" 28.5878
+cap "a_n177_n1215#" "a_n129_n1127#" 6.25956
+cap "a_n81_n705#" "a_n33_n1127#" 6.25956
+cap "a_n513_109#" "a_n513_n509#" 12.3196
+cap "a_n561_n87#" "a_n369_n87#" 28.5878
+cap "a_495_n597#" "a_495_n705#" 86.2066
+cap "a_15_21#" "a_n33_109#" 6.25956
+cap "a_n605_109#" "a_n513_109#" 479.458
+cap "a_111_531#" "a_63_109#" 6.25956
+cap "a_159_n1127#" "a_255_n1127#" 479.458
+cap "a_n273_n597#" "a_n225_n509#" 6.25956
+cap "a_n177_n87#" "a_n129_n509#" 6.25956
+cap "a_399_n87#" "a_495_n597#" 14.1667
+cap "a_n369_1149#" "a_n177_1149#" 28.5878
+cap "a_n605_727#" "a_n605_109#" 12.3196
+cap "a_159_n509#" "a_159_n1127#" 12.3196
+cap "a_111_n705#" "a_207_n1215#" 14.1667
+cap "a_n81_639#" "a_n129_727#" 6.25956
+cap "a_15_1149#" "a_n33_727#" 6.25956
+cap "a_63_n509#" "a_159_n509#" 479.458
+cap "a_111_n597#" "a_111_n705#" 86.2066
+cap "a_n369_21#" "a_n321_109#" 6.25956
+cap "a_n273_531#" "a_n225_109#" 6.25956
+cap "a_303_531#" "a_495_531#" 28.5878
+cap "a_399_n1215#" "a_447_n1127#" 6.25956
+cap "a_495_n705#" "a_543_n1127#" 6.25956
+cap "a_n561_n87#" "a_n513_n509#" 6.25956
+cap "a_63_109#" "a_63_n509#" 12.3196
+cap "a_15_n87#" "a_111_n597#" 14.1667
+cap "a_n369_n1215#" "a_n177_n1215#" 28.5878
+cap "a_n33_109#" "a_63_109#" 479.458
+cap "a_15_21#" "a_15_n87#" 86.2066
+cap "a_n465_639#" "a_n417_727#" 6.25956
+cap "a_n369_1149#" "a_n321_727#" 6.25956
+cap "a_207_1149#" "a_399_1149#" 28.5878
+cap "a_303_n597#" "a_351_n509#" 6.25956
+cap "a_399_n87#" "a_447_n509#" 6.25956
+cap "a_n33_727#" "a_n33_109#" 12.3196
+cap "a_n81_531#" "a_15_21#" 14.1667
+cap "a_n513_n1127#" "a_n417_n1127#" 479.458
+cap "a_n465_n597#" "a_n273_n597#" 28.5878
+cap "a_495_639#" "a_543_727#" 6.25956
+cap "a_n129_727#" "a_n33_727#" 479.458
+cap "a_n81_639#" "a_n81_531#" 86.2066
+cap "a_n513_n509#" "a_n513_n1127#" 12.3196
+cap "a_n465_n705#" "a_n561_n1215#" 14.1667
+cap "a_207_21#" "a_255_109#" 6.25956
+cap "a_303_531#" "a_351_109#" 6.25956
+cap "a_n177_1149#" "a_n81_639#" 14.1667
+cap "a_n605_n509#" "a_n513_n509#" 479.458
+cap "a_n561_21#" "a_n369_21#" 28.5878
+cap "a_207_n1215#" "a_399_n1215#" 28.5878
+cap "a_n605_109#" "a_n605_n509#" 12.3196
+cap "a_111_639#" "a_159_727#" 6.25956
+cap "a_207_1149#" "a_255_727#" 6.25956
+cap "a_63_n1127#" "a_159_n1127#" 479.458
+cap "a_543_727#" "a_543_109#" 12.3196
+cap "a_n561_1149#" "a_n465_639#" 14.1667
+cap "a_111_n597#" "a_303_n597#" 28.5878
+cap "a_447_727#" "a_543_727#" 479.458
+cap "a_n561_n1215#" "a_n605_n1127#" 6.25956
+cap "a_n465_n705#" "a_n513_n1127#" 6.25956
+cap "a_63_n509#" "a_63_n1127#" 12.3196
+cap "a_111_n705#" "a_15_n1215#" 14.1667
+cap "a_303_639#" "a_495_639#" 28.5878
+cap "a_n33_n509#" "a_63_n509#" 479.458
+cap "a_15_n87#" "a_15_n1215#" 6.73951
+cap "a_15_21#" "a_207_21#" 28.5878
+cap "a_n33_109#" "a_n33_n509#" 12.3196
+cap "a_15_n87#" "a_n81_n597#" 14.1667
+cap "a_n273_n705#" "a_n81_n705#" 28.5878
+cap "a_n129_109#" "a_n33_109#" 479.458
+cap "a_n81_531#" "a_n81_n597#" 6.73951
+cap "a_n81_639#" "a_111_639#" 28.5878
+cap "a_15_n1215#" "a_n33_n1127#" 6.25956
+cap "a_n605_n1127#" "a_n513_n1127#" 479.458
+cap "a_111_n705#" "a_63_n1127#" 6.25956
+cap "a_n129_727#" "a_n129_109#" 12.3196
+cap "a_n81_531#" "a_n177_21#" 14.1667
+cap "a_n369_n87#" "a_n177_n87#" 28.5878
+cap "a_n225_727#" "a_n129_727#" 479.458
+cap "a_n177_1149#" "a_n177_21#" 6.73951
+cap "a_n605_n509#" "a_n605_n1127#" 12.3196
+cap "a_n177_1149#" "a_n273_639#" 14.1667
+cap "a_n81_n597#" "a_n129_n509#" 6.25956
+cap "a_15_n87#" "a_n33_n509#" 6.25956
+cap "a_543_109#" "a_543_n509#" 12.3196
+cap "a_n369_n1215#" "a_n321_n1127#" 6.25956
+cap "a_n273_n705#" "a_n225_n1127#" 6.25956
+cap "a_303_n705#" "a_495_n705#" 28.5878
+cap "a_n465_531#" "a_n273_531#" 28.5878
+cap "a_447_109#" "a_543_109#" 479.458
+cap "a_n561_1149#" "a_n561_21#" 6.73951
+cap "a_n177_21#" "a_n225_109#" 6.25956
+cap "a_n81_531#" "a_n129_109#" 6.25956
+cap "a_447_727#" "a_447_109#" 12.3196
+cap "a_495_531#" "a_399_21#" 14.1667
+cap "a_n33_n1127#" "a_63_n1127#" 479.458
+cap "a_n465_n597#" "a_n417_n509#" 6.25956
+cap "a_n369_n87#" "a_n321_n509#" 6.25956
+cap "a_207_n87#" "a_399_n87#" 28.5878
+cap "a_n33_n509#" "a_n33_n1127#" 12.3196
+cap "a_351_727#" "a_447_727#" 479.458
+cap "a_n81_n705#" "a_15_n1215#" 14.1667
+cap "a_399_1149#" "a_399_21#" 6.73951
+cap "a_n273_639#" "a_n321_727#" 6.25956
+cap "a_n177_1149#" "a_n225_727#" 6.25956
+cap "a_399_1149#" "a_303_639#" 14.1667
+cap "a_495_n597#" "a_543_n509#" 6.25956
+cap "a_n129_n509#" "a_n33_n509#" 479.458
+cap "a_n81_n597#" "a_n81_n705#" 86.2066
+cap "a_n561_21#" "a_n513_109#" 6.25956
+cap "a_n465_531#" "a_n417_109#" 6.25956
+cap "a_111_531#" "a_303_531#" 28.5878
+cap "a_207_n1215#" "a_255_n1127#" 6.25956
+cap "a_303_n705#" "a_351_n1127#" 6.25956
+cap "a_n129_109#" "a_n129_n509#" 12.3196
+cap "a_n177_n87#" "a_n81_n597#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8 513 -1127 514 -1126 l=30 w=400 "a_n707_n1301#" "a_495_n705#" 60 0 "a_447_n1127#" 400 0 "a_543_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 -1127 418 -1126 l=30 w=400 "a_n707_n1301#" "a_399_n1215#" 60 0 "a_351_n1127#" 400 0 "a_447_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 -1127 322 -1126 l=30 w=400 "a_n707_n1301#" "a_303_n705#" 60 0 "a_255_n1127#" 400 0 "a_351_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -1127 226 -1126 l=30 w=400 "a_n707_n1301#" "a_207_n1215#" 60 0 "a_159_n1127#" 400 0 "a_255_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -1127 130 -1126 l=30 w=400 "a_n707_n1301#" "a_111_n705#" 60 0 "a_63_n1127#" 400 0 "a_159_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -1127 34 -1126 l=30 w=400 "a_n707_n1301#" "a_15_n1215#" 60 0 "a_n33_n1127#" 400 0 "a_63_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -1127 -62 -1126 l=30 w=400 "a_n707_n1301#" "a_n81_n705#" 60 0 "a_n129_n1127#" 400 0 "a_n33_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -1127 -158 -1126 l=30 w=400 "a_n707_n1301#" "a_n177_n1215#" 60 0 "a_n225_n1127#" 400 0 "a_n129_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -1127 -254 -1126 l=30 w=400 "a_n707_n1301#" "a_n273_n705#" 60 0 "a_n321_n1127#" 400 0 "a_n225_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -1127 -350 -1126 l=30 w=400 "a_n707_n1301#" "a_n369_n1215#" 60 0 "a_n417_n1127#" 400 0 "a_n321_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 -1127 -446 -1126 l=30 w=400 "a_n707_n1301#" "a_n465_n705#" 60 0 "a_n513_n1127#" 400 0 "a_n417_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 -1127 -542 -1126 l=30 w=400 "a_n707_n1301#" "a_n561_n1215#" 60 0 "a_n605_n1127#" 400 0 "a_n513_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 -509 514 -508 l=30 w=400 "a_n707_n1301#" "a_495_n597#" 60 0 "a_447_n509#" 400 0 "a_543_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 -509 418 -508 l=30 w=400 "a_n707_n1301#" "a_399_n87#" 60 0 "a_351_n509#" 400 0 "a_447_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 -509 322 -508 l=30 w=400 "a_n707_n1301#" "a_303_n597#" 60 0 "a_255_n509#" 400 0 "a_351_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -509 226 -508 l=30 w=400 "a_n707_n1301#" "a_207_n87#" 60 0 "a_159_n509#" 400 0 "a_255_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -509 130 -508 l=30 w=400 "a_n707_n1301#" "a_111_n597#" 60 0 "a_63_n509#" 400 0 "a_159_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -509 34 -508 l=30 w=400 "a_n707_n1301#" "a_15_n87#" 60 0 "a_n33_n509#" 400 0 "a_63_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -509 -62 -508 l=30 w=400 "a_n707_n1301#" "a_n81_n597#" 60 0 "a_n129_n509#" 400 0 "a_n33_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -509 -158 -508 l=30 w=400 "a_n707_n1301#" "a_n177_n87#" 60 0 "a_n225_n509#" 400 0 "a_n129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -509 -254 -508 l=30 w=400 "a_n707_n1301#" "a_n273_n597#" 60 0 "a_n321_n509#" 400 0 "a_n225_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -509 -350 -508 l=30 w=400 "a_n707_n1301#" "a_n369_n87#" 60 0 "a_n417_n509#" 400 0 "a_n321_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 -509 -446 -508 l=30 w=400 "a_n707_n1301#" "a_n465_n597#" 60 0 "a_n513_n509#" 400 0 "a_n417_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 -509 -542 -508 l=30 w=400 "a_n707_n1301#" "a_n561_n87#" 60 0 "a_n605_n509#" 400 0 "a_n513_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 109 514 110 l=30 w=400 "a_n707_n1301#" "a_495_531#" 60 0 "a_447_109#" 400 0 "a_543_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 109 418 110 l=30 w=400 "a_n707_n1301#" "a_399_21#" 60 0 "a_351_109#" 400 0 "a_447_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 109 322 110 l=30 w=400 "a_n707_n1301#" "a_303_531#" 60 0 "a_255_109#" 400 0 "a_351_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 109 226 110 l=30 w=400 "a_n707_n1301#" "a_207_21#" 60 0 "a_159_109#" 400 0 "a_255_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 109 130 110 l=30 w=400 "a_n707_n1301#" "a_111_531#" 60 0 "a_63_109#" 400 0 "a_159_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 109 34 110 l=30 w=400 "a_n707_n1301#" "a_15_21#" 60 0 "a_n33_109#" 400 0 "a_63_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 109 -62 110 l=30 w=400 "a_n707_n1301#" "a_n81_531#" 60 0 "a_n129_109#" 400 0 "a_n33_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 109 -158 110 l=30 w=400 "a_n707_n1301#" "a_n177_21#" 60 0 "a_n225_109#" 400 0 "a_n129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 109 -254 110 l=30 w=400 "a_n707_n1301#" "a_n273_531#" 60 0 "a_n321_109#" 400 0 "a_n225_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 109 -350 110 l=30 w=400 "a_n707_n1301#" "a_n369_21#" 60 0 "a_n417_109#" 400 0 "a_n321_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 109 -446 110 l=30 w=400 "a_n707_n1301#" "a_n465_531#" 60 0 "a_n513_109#" 400 0 "a_n417_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 109 -542 110 l=30 w=400 "a_n707_n1301#" "a_n561_21#" 60 0 "a_n605_109#" 400 0 "a_n513_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 727 514 728 l=30 w=400 "a_n707_n1301#" "a_495_639#" 60 0 "a_447_727#" 400 0 "a_543_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 727 418 728 l=30 w=400 "a_n707_n1301#" "a_399_1149#" 60 0 "a_351_727#" 400 0 "a_447_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 727 322 728 l=30 w=400 "a_n707_n1301#" "a_303_639#" 60 0 "a_255_727#" 400 0 "a_351_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 727 226 728 l=30 w=400 "a_n707_n1301#" "a_207_1149#" 60 0 "a_159_727#" 400 0 "a_255_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 727 130 728 l=30 w=400 "a_n707_n1301#" "a_111_639#" 60 0 "a_63_727#" 400 0 "a_159_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 727 34 728 l=30 w=400 "a_n707_n1301#" "a_15_1149#" 60 0 "a_n33_727#" 400 0 "a_63_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 727 -62 728 l=30 w=400 "a_n707_n1301#" "a_n81_639#" 60 0 "a_n129_727#" 400 0 "a_n33_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 727 -158 728 l=30 w=400 "a_n707_n1301#" "a_n177_1149#" 60 0 "a_n225_727#" 400 0 "a_n129_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 727 -254 728 l=30 w=400 "a_n707_n1301#" "a_n273_639#" 60 0 "a_n321_727#" 400 0 "a_n225_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 727 -350 728 l=30 w=400 "a_n707_n1301#" "a_n369_1149#" 60 0 "a_n417_727#" 400 0 "a_n321_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 727 -446 728 l=30 w=400 "a_n707_n1301#" "a_n465_639#" 60 0 "a_n513_727#" 400 0 "a_n417_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 727 -542 728 l=30 w=400 "a_n707_n1301#" "a_n561_1149#" 60 0 "a_n605_727#" 400 0 "a_n513_727#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.mag
new file mode 100644
index 0000000..17de6ff
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_XZXALN.mag
@@ -0,0 +1,1531 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -557 1199 -499 1205
+rect -365 1199 -307 1205
+rect -173 1199 -115 1205
+rect 19 1199 77 1205
+rect 211 1199 269 1205
+rect 403 1199 461 1205
+rect -557 1165 -545 1199
+rect -365 1165 -353 1199
+rect -173 1165 -161 1199
+rect 19 1165 31 1199
+rect 211 1165 223 1199
+rect 403 1165 415 1199
+rect -557 1159 -499 1165
+rect -365 1159 -307 1165
+rect -173 1159 -115 1165
+rect 19 1159 77 1165
+rect 211 1159 269 1165
+rect 403 1159 461 1165
+rect -461 689 -403 695
+rect -269 689 -211 695
+rect -77 689 -19 695
+rect 115 689 173 695
+rect 307 689 365 695
+rect 499 689 557 695
+rect -461 655 -449 689
+rect -269 655 -257 689
+rect -77 655 -65 689
+rect 115 655 127 689
+rect 307 655 319 689
+rect 499 655 511 689
+rect -461 649 -403 655
+rect -269 649 -211 655
+rect -77 649 -19 655
+rect 115 649 173 655
+rect 307 649 365 655
+rect 499 649 557 655
+rect -461 581 -403 587
+rect -269 581 -211 587
+rect -77 581 -19 587
+rect 115 581 173 587
+rect 307 581 365 587
+rect 499 581 557 587
+rect -461 547 -449 581
+rect -269 547 -257 581
+rect -77 547 -65 581
+rect 115 547 127 581
+rect 307 547 319 581
+rect 499 547 511 581
+rect -461 541 -403 547
+rect -269 541 -211 547
+rect -77 541 -19 547
+rect 115 541 173 547
+rect 307 541 365 547
+rect 499 541 557 547
+rect -557 71 -499 77
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect -557 37 -545 71
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect -557 31 -499 37
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect -557 -37 -499 -31
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect -557 -71 -545 -37
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect -557 -77 -499 -71
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect -461 -547 -403 -541
+rect -269 -547 -211 -541
+rect -77 -547 -19 -541
+rect 115 -547 173 -541
+rect 307 -547 365 -541
+rect 499 -547 557 -541
+rect -461 -581 -449 -547
+rect -269 -581 -257 -547
+rect -77 -581 -65 -547
+rect 115 -581 127 -547
+rect 307 -581 319 -547
+rect 499 -581 511 -547
+rect -461 -587 -403 -581
+rect -269 -587 -211 -581
+rect -77 -587 -19 -581
+rect 115 -587 173 -581
+rect 307 -587 365 -581
+rect 499 -587 557 -581
+rect -461 -655 -403 -649
+rect -269 -655 -211 -649
+rect -77 -655 -19 -649
+rect 115 -655 173 -649
+rect 307 -655 365 -649
+rect 499 -655 557 -649
+rect -461 -689 -449 -655
+rect -269 -689 -257 -655
+rect -77 -689 -65 -655
+rect 115 -689 127 -655
+rect 307 -689 319 -655
+rect 499 -689 511 -655
+rect -461 -695 -403 -689
+rect -269 -695 -211 -689
+rect -77 -695 -19 -689
+rect 115 -695 173 -689
+rect 307 -695 365 -689
+rect 499 -695 557 -689
+rect -557 -1165 -499 -1159
+rect -365 -1165 -307 -1159
+rect -173 -1165 -115 -1159
+rect 19 -1165 77 -1159
+rect 211 -1165 269 -1159
+rect 403 -1165 461 -1159
+rect -557 -1199 -545 -1165
+rect -365 -1199 -353 -1165
+rect -173 -1199 -161 -1165
+rect 19 -1199 31 -1165
+rect 211 -1199 223 -1165
+rect 403 -1199 415 -1165
+rect -557 -1205 -499 -1199
+rect -365 -1205 -307 -1199
+rect -173 -1205 -115 -1199
+rect 19 -1205 77 -1199
+rect 211 -1205 269 -1199
+rect 403 -1205 461 -1199
+<< pwell >>
+rect -743 -1337 743 1337
+<< nmos >>
+rect -543 727 -513 1127
+rect -447 727 -417 1127
+rect -351 727 -321 1127
+rect -255 727 -225 1127
+rect -159 727 -129 1127
+rect -63 727 -33 1127
+rect 33 727 63 1127
+rect 129 727 159 1127
+rect 225 727 255 1127
+rect 321 727 351 1127
+rect 417 727 447 1127
+rect 513 727 543 1127
+rect -543 109 -513 509
+rect -447 109 -417 509
+rect -351 109 -321 509
+rect -255 109 -225 509
+rect -159 109 -129 509
+rect -63 109 -33 509
+rect 33 109 63 509
+rect 129 109 159 509
+rect 225 109 255 509
+rect 321 109 351 509
+rect 417 109 447 509
+rect 513 109 543 509
+rect -543 -509 -513 -109
+rect -447 -509 -417 -109
+rect -351 -509 -321 -109
+rect -255 -509 -225 -109
+rect -159 -509 -129 -109
+rect -63 -509 -33 -109
+rect 33 -509 63 -109
+rect 129 -509 159 -109
+rect 225 -509 255 -109
+rect 321 -509 351 -109
+rect 417 -509 447 -109
+rect 513 -509 543 -109
+rect -543 -1127 -513 -727
+rect -447 -1127 -417 -727
+rect -351 -1127 -321 -727
+rect -255 -1127 -225 -727
+rect -159 -1127 -129 -727
+rect -63 -1127 -33 -727
+rect 33 -1127 63 -727
+rect 129 -1127 159 -727
+rect 225 -1127 255 -727
+rect 321 -1127 351 -727
+rect 417 -1127 447 -727
+rect 513 -1127 543 -727
+<< ndiff >>
+rect -605 1115 -543 1127
+rect -605 739 -593 1115
+rect -559 739 -543 1115
+rect -605 727 -543 739
+rect -513 1115 -447 1127
+rect -513 739 -497 1115
+rect -463 739 -447 1115
+rect -513 727 -447 739
+rect -417 1115 -351 1127
+rect -417 739 -401 1115
+rect -367 739 -351 1115
+rect -417 727 -351 739
+rect -321 1115 -255 1127
+rect -321 739 -305 1115
+rect -271 739 -255 1115
+rect -321 727 -255 739
+rect -225 1115 -159 1127
+rect -225 739 -209 1115
+rect -175 739 -159 1115
+rect -225 727 -159 739
+rect -129 1115 -63 1127
+rect -129 739 -113 1115
+rect -79 739 -63 1115
+rect -129 727 -63 739
+rect -33 1115 33 1127
+rect -33 739 -17 1115
+rect 17 739 33 1115
+rect -33 727 33 739
+rect 63 1115 129 1127
+rect 63 739 79 1115
+rect 113 739 129 1115
+rect 63 727 129 739
+rect 159 1115 225 1127
+rect 159 739 175 1115
+rect 209 739 225 1115
+rect 159 727 225 739
+rect 255 1115 321 1127
+rect 255 739 271 1115
+rect 305 739 321 1115
+rect 255 727 321 739
+rect 351 1115 417 1127
+rect 351 739 367 1115
+rect 401 739 417 1115
+rect 351 727 417 739
+rect 447 1115 513 1127
+rect 447 739 463 1115
+rect 497 739 513 1115
+rect 447 727 513 739
+rect 543 1115 605 1127
+rect 543 739 559 1115
+rect 593 739 605 1115
+rect 543 727 605 739
+rect -605 497 -543 509
+rect -605 121 -593 497
+rect -559 121 -543 497
+rect -605 109 -543 121
+rect -513 497 -447 509
+rect -513 121 -497 497
+rect -463 121 -447 497
+rect -513 109 -447 121
+rect -417 497 -351 509
+rect -417 121 -401 497
+rect -367 121 -351 497
+rect -417 109 -351 121
+rect -321 497 -255 509
+rect -321 121 -305 497
+rect -271 121 -255 497
+rect -321 109 -255 121
+rect -225 497 -159 509
+rect -225 121 -209 497
+rect -175 121 -159 497
+rect -225 109 -159 121
+rect -129 497 -63 509
+rect -129 121 -113 497
+rect -79 121 -63 497
+rect -129 109 -63 121
+rect -33 497 33 509
+rect -33 121 -17 497
+rect 17 121 33 497
+rect -33 109 33 121
+rect 63 497 129 509
+rect 63 121 79 497
+rect 113 121 129 497
+rect 63 109 129 121
+rect 159 497 225 509
+rect 159 121 175 497
+rect 209 121 225 497
+rect 159 109 225 121
+rect 255 497 321 509
+rect 255 121 271 497
+rect 305 121 321 497
+rect 255 109 321 121
+rect 351 497 417 509
+rect 351 121 367 497
+rect 401 121 417 497
+rect 351 109 417 121
+rect 447 497 513 509
+rect 447 121 463 497
+rect 497 121 513 497
+rect 447 109 513 121
+rect 543 497 605 509
+rect 543 121 559 497
+rect 593 121 605 497
+rect 543 109 605 121
+rect -605 -121 -543 -109
+rect -605 -497 -593 -121
+rect -559 -497 -543 -121
+rect -605 -509 -543 -497
+rect -513 -121 -447 -109
+rect -513 -497 -497 -121
+rect -463 -497 -447 -121
+rect -513 -509 -447 -497
+rect -417 -121 -351 -109
+rect -417 -497 -401 -121
+rect -367 -497 -351 -121
+rect -417 -509 -351 -497
+rect -321 -121 -255 -109
+rect -321 -497 -305 -121
+rect -271 -497 -255 -121
+rect -321 -509 -255 -497
+rect -225 -121 -159 -109
+rect -225 -497 -209 -121
+rect -175 -497 -159 -121
+rect -225 -509 -159 -497
+rect -129 -121 -63 -109
+rect -129 -497 -113 -121
+rect -79 -497 -63 -121
+rect -129 -509 -63 -497
+rect -33 -121 33 -109
+rect -33 -497 -17 -121
+rect 17 -497 33 -121
+rect -33 -509 33 -497
+rect 63 -121 129 -109
+rect 63 -497 79 -121
+rect 113 -497 129 -121
+rect 63 -509 129 -497
+rect 159 -121 225 -109
+rect 159 -497 175 -121
+rect 209 -497 225 -121
+rect 159 -509 225 -497
+rect 255 -121 321 -109
+rect 255 -497 271 -121
+rect 305 -497 321 -121
+rect 255 -509 321 -497
+rect 351 -121 417 -109
+rect 351 -497 367 -121
+rect 401 -497 417 -121
+rect 351 -509 417 -497
+rect 447 -121 513 -109
+rect 447 -497 463 -121
+rect 497 -497 513 -121
+rect 447 -509 513 -497
+rect 543 -121 605 -109
+rect 543 -497 559 -121
+rect 593 -497 605 -121
+rect 543 -509 605 -497
+rect -605 -739 -543 -727
+rect -605 -1115 -593 -739
+rect -559 -1115 -543 -739
+rect -605 -1127 -543 -1115
+rect -513 -739 -447 -727
+rect -513 -1115 -497 -739
+rect -463 -1115 -447 -739
+rect -513 -1127 -447 -1115
+rect -417 -739 -351 -727
+rect -417 -1115 -401 -739
+rect -367 -1115 -351 -739
+rect -417 -1127 -351 -1115
+rect -321 -739 -255 -727
+rect -321 -1115 -305 -739
+rect -271 -1115 -255 -739
+rect -321 -1127 -255 -1115
+rect -225 -739 -159 -727
+rect -225 -1115 -209 -739
+rect -175 -1115 -159 -739
+rect -225 -1127 -159 -1115
+rect -129 -739 -63 -727
+rect -129 -1115 -113 -739
+rect -79 -1115 -63 -739
+rect -129 -1127 -63 -1115
+rect -33 -739 33 -727
+rect -33 -1115 -17 -739
+rect 17 -1115 33 -739
+rect -33 -1127 33 -1115
+rect 63 -739 129 -727
+rect 63 -1115 79 -739
+rect 113 -1115 129 -739
+rect 63 -1127 129 -1115
+rect 159 -739 225 -727
+rect 159 -1115 175 -739
+rect 209 -1115 225 -739
+rect 159 -1127 225 -1115
+rect 255 -739 321 -727
+rect 255 -1115 271 -739
+rect 305 -1115 321 -739
+rect 255 -1127 321 -1115
+rect 351 -739 417 -727
+rect 351 -1115 367 -739
+rect 401 -1115 417 -739
+rect 351 -1127 417 -1115
+rect 447 -739 513 -727
+rect 447 -1115 463 -739
+rect 497 -1115 513 -739
+rect 447 -1127 513 -1115
+rect 543 -739 605 -727
+rect 543 -1115 559 -739
+rect 593 -1115 605 -739
+rect 543 -1127 605 -1115
+<< ndiffc >>
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+<< psubdiff >>
+rect -707 1267 -611 1301
+rect 611 1267 707 1301
+rect -707 1205 -673 1267
+rect 673 1205 707 1267
+rect -707 -1267 -673 -1205
+rect 673 -1267 707 -1205
+rect -707 -1301 -611 -1267
+rect 611 -1301 707 -1267
+<< psubdiffcont >>
+rect -611 1267 611 1301
+rect -707 -1205 -673 1205
+rect 673 -1205 707 1205
+rect -611 -1301 611 -1267
+<< poly >>
+rect -561 1199 -495 1215
+rect -561 1165 -545 1199
+rect -511 1165 -495 1199
+rect -561 1149 -495 1165
+rect -369 1199 -303 1215
+rect -369 1165 -353 1199
+rect -319 1165 -303 1199
+rect -543 1127 -513 1149
+rect -447 1127 -417 1153
+rect -369 1149 -303 1165
+rect -177 1199 -111 1215
+rect -177 1165 -161 1199
+rect -127 1165 -111 1199
+rect -351 1127 -321 1149
+rect -255 1127 -225 1153
+rect -177 1149 -111 1165
+rect 15 1199 81 1215
+rect 15 1165 31 1199
+rect 65 1165 81 1199
+rect -159 1127 -129 1149
+rect -63 1127 -33 1153
+rect 15 1149 81 1165
+rect 207 1199 273 1215
+rect 207 1165 223 1199
+rect 257 1165 273 1199
+rect 33 1127 63 1149
+rect 129 1127 159 1153
+rect 207 1149 273 1165
+rect 399 1199 465 1215
+rect 399 1165 415 1199
+rect 449 1165 465 1199
+rect 225 1127 255 1149
+rect 321 1127 351 1153
+rect 399 1149 465 1165
+rect 417 1127 447 1149
+rect 513 1127 543 1153
+rect -543 701 -513 727
+rect -447 705 -417 727
+rect -465 689 -399 705
+rect -351 701 -321 727
+rect -255 705 -225 727
+rect -465 655 -449 689
+rect -415 655 -399 689
+rect -465 639 -399 655
+rect -273 689 -207 705
+rect -159 701 -129 727
+rect -63 705 -33 727
+rect -273 655 -257 689
+rect -223 655 -207 689
+rect -273 639 -207 655
+rect -81 689 -15 705
+rect 33 701 63 727
+rect 129 705 159 727
+rect -81 655 -65 689
+rect -31 655 -15 689
+rect -81 639 -15 655
+rect 111 689 177 705
+rect 225 701 255 727
+rect 321 705 351 727
+rect 111 655 127 689
+rect 161 655 177 689
+rect 111 639 177 655
+rect 303 689 369 705
+rect 417 701 447 727
+rect 513 705 543 727
+rect 303 655 319 689
+rect 353 655 369 689
+rect 303 639 369 655
+rect 495 689 561 705
+rect 495 655 511 689
+rect 545 655 561 689
+rect 495 639 561 655
+rect -465 581 -399 597
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -543 509 -513 535
+rect -465 531 -399 547
+rect -273 581 -207 597
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -447 509 -417 531
+rect -351 509 -321 535
+rect -273 531 -207 547
+rect -81 581 -15 597
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect -255 509 -225 531
+rect -159 509 -129 535
+rect -81 531 -15 547
+rect 111 581 177 597
+rect 111 547 127 581
+rect 161 547 177 581
+rect -63 509 -33 531
+rect 33 509 63 535
+rect 111 531 177 547
+rect 303 581 369 597
+rect 303 547 319 581
+rect 353 547 369 581
+rect 129 509 159 531
+rect 225 509 255 535
+rect 303 531 369 547
+rect 495 581 561 597
+rect 495 547 511 581
+rect 545 547 561 581
+rect 321 509 351 531
+rect 417 509 447 535
+rect 495 531 561 547
+rect 513 509 543 531
+rect -543 87 -513 109
+rect -561 71 -495 87
+rect -447 83 -417 109
+rect -351 87 -321 109
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -561 21 -495 37
+rect -369 71 -303 87
+rect -255 83 -225 109
+rect -159 87 -129 109
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -63 83 -33 109
+rect 33 87 63 109
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 129 83 159 109
+rect 225 87 255 109
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 321 83 351 109
+rect 417 87 447 109
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 513 83 543 109
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect -561 -37 -495 -21
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -561 -87 -495 -71
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -543 -109 -513 -87
+rect -447 -109 -417 -83
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -351 -109 -321 -87
+rect -255 -109 -225 -83
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -159 -109 -129 -87
+rect -63 -109 -33 -83
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 33 -109 63 -87
+rect 129 -109 159 -83
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 225 -109 255 -87
+rect 321 -109 351 -83
+rect 399 -87 465 -71
+rect 417 -109 447 -87
+rect 513 -109 543 -83
+rect -543 -535 -513 -509
+rect -447 -531 -417 -509
+rect -465 -547 -399 -531
+rect -351 -535 -321 -509
+rect -255 -531 -225 -509
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -465 -597 -399 -581
+rect -273 -547 -207 -531
+rect -159 -535 -129 -509
+rect -63 -531 -33 -509
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -273 -597 -207 -581
+rect -81 -547 -15 -531
+rect 33 -535 63 -509
+rect 129 -531 159 -509
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect -81 -597 -15 -581
+rect 111 -547 177 -531
+rect 225 -535 255 -509
+rect 321 -531 351 -509
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 111 -597 177 -581
+rect 303 -547 369 -531
+rect 417 -535 447 -509
+rect 513 -531 543 -509
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 303 -597 369 -581
+rect 495 -547 561 -531
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect 495 -597 561 -581
+rect -465 -655 -399 -639
+rect -465 -689 -449 -655
+rect -415 -689 -399 -655
+rect -543 -727 -513 -701
+rect -465 -705 -399 -689
+rect -273 -655 -207 -639
+rect -273 -689 -257 -655
+rect -223 -689 -207 -655
+rect -447 -727 -417 -705
+rect -351 -727 -321 -701
+rect -273 -705 -207 -689
+rect -81 -655 -15 -639
+rect -81 -689 -65 -655
+rect -31 -689 -15 -655
+rect -255 -727 -225 -705
+rect -159 -727 -129 -701
+rect -81 -705 -15 -689
+rect 111 -655 177 -639
+rect 111 -689 127 -655
+rect 161 -689 177 -655
+rect -63 -727 -33 -705
+rect 33 -727 63 -701
+rect 111 -705 177 -689
+rect 303 -655 369 -639
+rect 303 -689 319 -655
+rect 353 -689 369 -655
+rect 129 -727 159 -705
+rect 225 -727 255 -701
+rect 303 -705 369 -689
+rect 495 -655 561 -639
+rect 495 -689 511 -655
+rect 545 -689 561 -655
+rect 321 -727 351 -705
+rect 417 -727 447 -701
+rect 495 -705 561 -689
+rect 513 -727 543 -705
+rect -543 -1149 -513 -1127
+rect -561 -1165 -495 -1149
+rect -447 -1153 -417 -1127
+rect -351 -1149 -321 -1127
+rect -561 -1199 -545 -1165
+rect -511 -1199 -495 -1165
+rect -561 -1215 -495 -1199
+rect -369 -1165 -303 -1149
+rect -255 -1153 -225 -1127
+rect -159 -1149 -129 -1127
+rect -369 -1199 -353 -1165
+rect -319 -1199 -303 -1165
+rect -369 -1215 -303 -1199
+rect -177 -1165 -111 -1149
+rect -63 -1153 -33 -1127
+rect 33 -1149 63 -1127
+rect -177 -1199 -161 -1165
+rect -127 -1199 -111 -1165
+rect -177 -1215 -111 -1199
+rect 15 -1165 81 -1149
+rect 129 -1153 159 -1127
+rect 225 -1149 255 -1127
+rect 15 -1199 31 -1165
+rect 65 -1199 81 -1165
+rect 15 -1215 81 -1199
+rect 207 -1165 273 -1149
+rect 321 -1153 351 -1127
+rect 417 -1149 447 -1127
+rect 207 -1199 223 -1165
+rect 257 -1199 273 -1165
+rect 207 -1215 273 -1199
+rect 399 -1165 465 -1149
+rect 513 -1153 543 -1127
+rect 399 -1199 415 -1165
+rect 449 -1199 465 -1165
+rect 399 -1215 465 -1199
+<< polycont >>
+rect -545 1165 -511 1199
+rect -353 1165 -319 1199
+rect -161 1165 -127 1199
+rect 31 1165 65 1199
+rect 223 1165 257 1199
+rect 415 1165 449 1199
+rect -449 655 -415 689
+rect -257 655 -223 689
+rect -65 655 -31 689
+rect 127 655 161 689
+rect 319 655 353 689
+rect 511 655 545 689
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect -449 -689 -415 -655
+rect -257 -689 -223 -655
+rect -65 -689 -31 -655
+rect 127 -689 161 -655
+rect 319 -689 353 -655
+rect 511 -689 545 -655
+rect -545 -1199 -511 -1165
+rect -353 -1199 -319 -1165
+rect -161 -1199 -127 -1165
+rect 31 -1199 65 -1165
+rect 223 -1199 257 -1165
+rect 415 -1199 449 -1165
+<< locali >>
+rect -707 1267 -611 1301
+rect 611 1267 707 1301
+rect -707 1205 -673 1267
+rect 673 1205 707 1267
+rect -561 1165 -545 1199
+rect -511 1165 -495 1199
+rect -369 1165 -353 1199
+rect -319 1165 -303 1199
+rect -177 1165 -161 1199
+rect -127 1165 -111 1199
+rect 15 1165 31 1199
+rect 65 1165 81 1199
+rect 207 1165 223 1199
+rect 257 1165 273 1199
+rect 399 1165 415 1199
+rect 449 1165 465 1199
+rect -593 1115 -559 1131
+rect -593 723 -559 739
+rect -497 1115 -463 1131
+rect -497 723 -463 739
+rect -401 1115 -367 1131
+rect -401 723 -367 739
+rect -305 1115 -271 1131
+rect -305 723 -271 739
+rect -209 1115 -175 1131
+rect -209 723 -175 739
+rect -113 1115 -79 1131
+rect -113 723 -79 739
+rect -17 1115 17 1131
+rect -17 723 17 739
+rect 79 1115 113 1131
+rect 79 723 113 739
+rect 175 1115 209 1131
+rect 175 723 209 739
+rect 271 1115 305 1131
+rect 271 723 305 739
+rect 367 1115 401 1131
+rect 367 723 401 739
+rect 463 1115 497 1131
+rect 463 723 497 739
+rect 559 1115 593 1131
+rect 559 723 593 739
+rect -465 655 -449 689
+rect -415 655 -399 689
+rect -273 655 -257 689
+rect -223 655 -207 689
+rect -81 655 -65 689
+rect -31 655 -15 689
+rect 111 655 127 689
+rect 161 655 177 689
+rect 303 655 319 689
+rect 353 655 369 689
+rect 495 655 511 689
+rect 545 655 561 689
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect 111 547 127 581
+rect 161 547 177 581
+rect 303 547 319 581
+rect 353 547 369 581
+rect 495 547 511 581
+rect 545 547 561 581
+rect -593 497 -559 513
+rect -593 105 -559 121
+rect -497 497 -463 513
+rect -497 105 -463 121
+rect -401 497 -367 513
+rect -401 105 -367 121
+rect -305 497 -271 513
+rect -305 105 -271 121
+rect -209 497 -175 513
+rect -209 105 -175 121
+rect -113 497 -79 513
+rect -113 105 -79 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 79 497 113 513
+rect 79 105 113 121
+rect 175 497 209 513
+rect 175 105 209 121
+rect 271 497 305 513
+rect 271 105 305 121
+rect 367 497 401 513
+rect 367 105 401 121
+rect 463 497 497 513
+rect 463 105 497 121
+rect 559 497 593 513
+rect 559 105 593 121
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect -593 -121 -559 -105
+rect -593 -513 -559 -497
+rect -497 -121 -463 -105
+rect -497 -513 -463 -497
+rect -401 -121 -367 -105
+rect -401 -513 -367 -497
+rect -305 -121 -271 -105
+rect -305 -513 -271 -497
+rect -209 -121 -175 -105
+rect -209 -513 -175 -497
+rect -113 -121 -79 -105
+rect -113 -513 -79 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 79 -121 113 -105
+rect 79 -513 113 -497
+rect 175 -121 209 -105
+rect 175 -513 209 -497
+rect 271 -121 305 -105
+rect 271 -513 305 -497
+rect 367 -121 401 -105
+rect 367 -513 401 -497
+rect 463 -121 497 -105
+rect 463 -513 497 -497
+rect 559 -121 593 -105
+rect 559 -513 593 -497
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect -465 -689 -449 -655
+rect -415 -689 -399 -655
+rect -273 -689 -257 -655
+rect -223 -689 -207 -655
+rect -81 -689 -65 -655
+rect -31 -689 -15 -655
+rect 111 -689 127 -655
+rect 161 -689 177 -655
+rect 303 -689 319 -655
+rect 353 -689 369 -655
+rect 495 -689 511 -655
+rect 545 -689 561 -655
+rect -593 -739 -559 -723
+rect -593 -1131 -559 -1115
+rect -497 -739 -463 -723
+rect -497 -1131 -463 -1115
+rect -401 -739 -367 -723
+rect -401 -1131 -367 -1115
+rect -305 -739 -271 -723
+rect -305 -1131 -271 -1115
+rect -209 -739 -175 -723
+rect -209 -1131 -175 -1115
+rect -113 -739 -79 -723
+rect -113 -1131 -79 -1115
+rect -17 -739 17 -723
+rect -17 -1131 17 -1115
+rect 79 -739 113 -723
+rect 79 -1131 113 -1115
+rect 175 -739 209 -723
+rect 175 -1131 209 -1115
+rect 271 -739 305 -723
+rect 271 -1131 305 -1115
+rect 367 -739 401 -723
+rect 367 -1131 401 -1115
+rect 463 -739 497 -723
+rect 463 -1131 497 -1115
+rect 559 -739 593 -723
+rect 559 -1131 593 -1115
+rect -561 -1199 -545 -1165
+rect -511 -1199 -495 -1165
+rect -369 -1199 -353 -1165
+rect -319 -1199 -303 -1165
+rect -177 -1199 -161 -1165
+rect -127 -1199 -111 -1165
+rect 15 -1199 31 -1165
+rect 65 -1199 81 -1165
+rect 207 -1199 223 -1165
+rect 257 -1199 273 -1165
+rect 399 -1199 415 -1165
+rect 449 -1199 465 -1165
+rect -707 -1267 -673 -1205
+rect 673 -1267 707 -1205
+rect -707 -1301 -611 -1267
+rect 611 -1301 707 -1267
+<< viali >>
+rect -545 1165 -511 1199
+rect -353 1165 -319 1199
+rect -161 1165 -127 1199
+rect 31 1165 65 1199
+rect 223 1165 257 1199
+rect 415 1165 449 1199
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect -449 655 -415 689
+rect -257 655 -223 689
+rect -65 655 -31 689
+rect 127 655 161 689
+rect 319 655 353 689
+rect 511 655 545 689
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect -449 -689 -415 -655
+rect -257 -689 -223 -655
+rect -65 -689 -31 -655
+rect 127 -689 161 -655
+rect 319 -689 353 -655
+rect 511 -689 545 -655
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+rect -545 -1199 -511 -1165
+rect -353 -1199 -319 -1165
+rect -161 -1199 -127 -1165
+rect 31 -1199 65 -1165
+rect 223 -1199 257 -1165
+rect 415 -1199 449 -1165
+<< metal1 >>
+rect -557 1199 -499 1205
+rect -557 1165 -545 1199
+rect -511 1165 -499 1199
+rect -557 1159 -499 1165
+rect -365 1199 -307 1205
+rect -365 1165 -353 1199
+rect -319 1165 -307 1199
+rect -365 1159 -307 1165
+rect -173 1199 -115 1205
+rect -173 1165 -161 1199
+rect -127 1165 -115 1199
+rect -173 1159 -115 1165
+rect 19 1199 77 1205
+rect 19 1165 31 1199
+rect 65 1165 77 1199
+rect 19 1159 77 1165
+rect 211 1199 269 1205
+rect 211 1165 223 1199
+rect 257 1165 269 1199
+rect 211 1159 269 1165
+rect 403 1199 461 1205
+rect 403 1165 415 1199
+rect 449 1165 461 1199
+rect 403 1159 461 1165
+rect -599 1115 -553 1127
+rect -599 739 -593 1115
+rect -559 739 -553 1115
+rect -599 727 -553 739
+rect -503 1115 -457 1127
+rect -503 739 -497 1115
+rect -463 739 -457 1115
+rect -503 727 -457 739
+rect -407 1115 -361 1127
+rect -407 739 -401 1115
+rect -367 739 -361 1115
+rect -407 727 -361 739
+rect -311 1115 -265 1127
+rect -311 739 -305 1115
+rect -271 739 -265 1115
+rect -311 727 -265 739
+rect -215 1115 -169 1127
+rect -215 739 -209 1115
+rect -175 739 -169 1115
+rect -215 727 -169 739
+rect -119 1115 -73 1127
+rect -119 739 -113 1115
+rect -79 739 -73 1115
+rect -119 727 -73 739
+rect -23 1115 23 1127
+rect -23 739 -17 1115
+rect 17 739 23 1115
+rect -23 727 23 739
+rect 73 1115 119 1127
+rect 73 739 79 1115
+rect 113 739 119 1115
+rect 73 727 119 739
+rect 169 1115 215 1127
+rect 169 739 175 1115
+rect 209 739 215 1115
+rect 169 727 215 739
+rect 265 1115 311 1127
+rect 265 739 271 1115
+rect 305 739 311 1115
+rect 265 727 311 739
+rect 361 1115 407 1127
+rect 361 739 367 1115
+rect 401 739 407 1115
+rect 361 727 407 739
+rect 457 1115 503 1127
+rect 457 739 463 1115
+rect 497 739 503 1115
+rect 457 727 503 739
+rect 553 1115 599 1127
+rect 553 739 559 1115
+rect 593 739 599 1115
+rect 553 727 599 739
+rect -461 689 -403 695
+rect -461 655 -449 689
+rect -415 655 -403 689
+rect -461 649 -403 655
+rect -269 689 -211 695
+rect -269 655 -257 689
+rect -223 655 -211 689
+rect -269 649 -211 655
+rect -77 689 -19 695
+rect -77 655 -65 689
+rect -31 655 -19 689
+rect -77 649 -19 655
+rect 115 689 173 695
+rect 115 655 127 689
+rect 161 655 173 689
+rect 115 649 173 655
+rect 307 689 365 695
+rect 307 655 319 689
+rect 353 655 365 689
+rect 307 649 365 655
+rect 499 689 557 695
+rect 499 655 511 689
+rect 545 655 557 689
+rect 499 649 557 655
+rect -461 581 -403 587
+rect -461 547 -449 581
+rect -415 547 -403 581
+rect -461 541 -403 547
+rect -269 581 -211 587
+rect -269 547 -257 581
+rect -223 547 -211 581
+rect -269 541 -211 547
+rect -77 581 -19 587
+rect -77 547 -65 581
+rect -31 547 -19 581
+rect -77 541 -19 547
+rect 115 581 173 587
+rect 115 547 127 581
+rect 161 547 173 581
+rect 115 541 173 547
+rect 307 581 365 587
+rect 307 547 319 581
+rect 353 547 365 581
+rect 307 541 365 547
+rect 499 581 557 587
+rect 499 547 511 581
+rect 545 547 557 581
+rect 499 541 557 547
+rect -599 497 -553 509
+rect -599 121 -593 497
+rect -559 121 -553 497
+rect -599 109 -553 121
+rect -503 497 -457 509
+rect -503 121 -497 497
+rect -463 121 -457 497
+rect -503 109 -457 121
+rect -407 497 -361 509
+rect -407 121 -401 497
+rect -367 121 -361 497
+rect -407 109 -361 121
+rect -311 497 -265 509
+rect -311 121 -305 497
+rect -271 121 -265 497
+rect -311 109 -265 121
+rect -215 497 -169 509
+rect -215 121 -209 497
+rect -175 121 -169 497
+rect -215 109 -169 121
+rect -119 497 -73 509
+rect -119 121 -113 497
+rect -79 121 -73 497
+rect -119 109 -73 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 73 497 119 509
+rect 73 121 79 497
+rect 113 121 119 497
+rect 73 109 119 121
+rect 169 497 215 509
+rect 169 121 175 497
+rect 209 121 215 497
+rect 169 109 215 121
+rect 265 497 311 509
+rect 265 121 271 497
+rect 305 121 311 497
+rect 265 109 311 121
+rect 361 497 407 509
+rect 361 121 367 497
+rect 401 121 407 497
+rect 361 109 407 121
+rect 457 497 503 509
+rect 457 121 463 497
+rect 497 121 503 497
+rect 457 109 503 121
+rect 553 497 599 509
+rect 553 121 559 497
+rect 593 121 599 497
+rect 553 109 599 121
+rect -557 71 -499 77
+rect -557 37 -545 71
+rect -511 37 -499 71
+rect -557 31 -499 37
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect -557 -37 -499 -31
+rect -557 -71 -545 -37
+rect -511 -71 -499 -37
+rect -557 -77 -499 -71
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect -599 -121 -553 -109
+rect -599 -497 -593 -121
+rect -559 -497 -553 -121
+rect -599 -509 -553 -497
+rect -503 -121 -457 -109
+rect -503 -497 -497 -121
+rect -463 -497 -457 -121
+rect -503 -509 -457 -497
+rect -407 -121 -361 -109
+rect -407 -497 -401 -121
+rect -367 -497 -361 -121
+rect -407 -509 -361 -497
+rect -311 -121 -265 -109
+rect -311 -497 -305 -121
+rect -271 -497 -265 -121
+rect -311 -509 -265 -497
+rect -215 -121 -169 -109
+rect -215 -497 -209 -121
+rect -175 -497 -169 -121
+rect -215 -509 -169 -497
+rect -119 -121 -73 -109
+rect -119 -497 -113 -121
+rect -79 -497 -73 -121
+rect -119 -509 -73 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 73 -121 119 -109
+rect 73 -497 79 -121
+rect 113 -497 119 -121
+rect 73 -509 119 -497
+rect 169 -121 215 -109
+rect 169 -497 175 -121
+rect 209 -497 215 -121
+rect 169 -509 215 -497
+rect 265 -121 311 -109
+rect 265 -497 271 -121
+rect 305 -497 311 -121
+rect 265 -509 311 -497
+rect 361 -121 407 -109
+rect 361 -497 367 -121
+rect 401 -497 407 -121
+rect 361 -509 407 -497
+rect 457 -121 503 -109
+rect 457 -497 463 -121
+rect 497 -497 503 -121
+rect 457 -509 503 -497
+rect 553 -121 599 -109
+rect 553 -497 559 -121
+rect 593 -497 599 -121
+rect 553 -509 599 -497
+rect -461 -547 -403 -541
+rect -461 -581 -449 -547
+rect -415 -581 -403 -547
+rect -461 -587 -403 -581
+rect -269 -547 -211 -541
+rect -269 -581 -257 -547
+rect -223 -581 -211 -547
+rect -269 -587 -211 -581
+rect -77 -547 -19 -541
+rect -77 -581 -65 -547
+rect -31 -581 -19 -547
+rect -77 -587 -19 -581
+rect 115 -547 173 -541
+rect 115 -581 127 -547
+rect 161 -581 173 -547
+rect 115 -587 173 -581
+rect 307 -547 365 -541
+rect 307 -581 319 -547
+rect 353 -581 365 -547
+rect 307 -587 365 -581
+rect 499 -547 557 -541
+rect 499 -581 511 -547
+rect 545 -581 557 -547
+rect 499 -587 557 -581
+rect -461 -655 -403 -649
+rect -461 -689 -449 -655
+rect -415 -689 -403 -655
+rect -461 -695 -403 -689
+rect -269 -655 -211 -649
+rect -269 -689 -257 -655
+rect -223 -689 -211 -655
+rect -269 -695 -211 -689
+rect -77 -655 -19 -649
+rect -77 -689 -65 -655
+rect -31 -689 -19 -655
+rect -77 -695 -19 -689
+rect 115 -655 173 -649
+rect 115 -689 127 -655
+rect 161 -689 173 -655
+rect 115 -695 173 -689
+rect 307 -655 365 -649
+rect 307 -689 319 -655
+rect 353 -689 365 -655
+rect 307 -695 365 -689
+rect 499 -655 557 -649
+rect 499 -689 511 -655
+rect 545 -689 557 -655
+rect 499 -695 557 -689
+rect -599 -739 -553 -727
+rect -599 -1115 -593 -739
+rect -559 -1115 -553 -739
+rect -599 -1127 -553 -1115
+rect -503 -739 -457 -727
+rect -503 -1115 -497 -739
+rect -463 -1115 -457 -739
+rect -503 -1127 -457 -1115
+rect -407 -739 -361 -727
+rect -407 -1115 -401 -739
+rect -367 -1115 -361 -739
+rect -407 -1127 -361 -1115
+rect -311 -739 -265 -727
+rect -311 -1115 -305 -739
+rect -271 -1115 -265 -739
+rect -311 -1127 -265 -1115
+rect -215 -739 -169 -727
+rect -215 -1115 -209 -739
+rect -175 -1115 -169 -739
+rect -215 -1127 -169 -1115
+rect -119 -739 -73 -727
+rect -119 -1115 -113 -739
+rect -79 -1115 -73 -739
+rect -119 -1127 -73 -1115
+rect -23 -739 23 -727
+rect -23 -1115 -17 -739
+rect 17 -1115 23 -739
+rect -23 -1127 23 -1115
+rect 73 -739 119 -727
+rect 73 -1115 79 -739
+rect 113 -1115 119 -739
+rect 73 -1127 119 -1115
+rect 169 -739 215 -727
+rect 169 -1115 175 -739
+rect 209 -1115 215 -739
+rect 169 -1127 215 -1115
+rect 265 -739 311 -727
+rect 265 -1115 271 -739
+rect 305 -1115 311 -739
+rect 265 -1127 311 -1115
+rect 361 -739 407 -727
+rect 361 -1115 367 -739
+rect 401 -1115 407 -739
+rect 361 -1127 407 -1115
+rect 457 -739 503 -727
+rect 457 -1115 463 -739
+rect 497 -1115 503 -739
+rect 457 -1127 503 -1115
+rect 553 -739 599 -727
+rect 553 -1115 559 -739
+rect 593 -1115 599 -739
+rect 553 -1127 599 -1115
+rect -557 -1165 -499 -1159
+rect -557 -1199 -545 -1165
+rect -511 -1199 -499 -1165
+rect -557 -1205 -499 -1199
+rect -365 -1165 -307 -1159
+rect -365 -1199 -353 -1165
+rect -319 -1199 -307 -1165
+rect -365 -1205 -307 -1199
+rect -173 -1165 -115 -1159
+rect -173 -1199 -161 -1165
+rect -127 -1199 -115 -1165
+rect -173 -1205 -115 -1199
+rect 19 -1165 77 -1159
+rect 19 -1199 31 -1165
+rect 65 -1199 77 -1165
+rect 19 -1205 77 -1199
+rect 211 -1165 269 -1159
+rect 211 -1199 223 -1165
+rect 257 -1199 269 -1165
+rect 211 -1205 269 -1199
+rect 403 -1165 461 -1159
+rect 403 -1199 415 -1165
+rect 449 -1199 461 -1165
+rect 403 -1205 461 -1199
+<< properties >>
+string FIXED_BBOX -690 -1284 690 1284
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 4 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_8L65NU.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_8L65NU.mag
new file mode 100644
index 0000000..58393db
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_8L65NU.mag
@@ -0,0 +1,1147 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654611687
+<< error_p >>
+rect -678 265 -620 271
+rect -560 265 -502 271
+rect -442 265 -384 271
+rect -324 265 -266 271
+rect -206 265 -148 271
+rect -88 265 -30 271
+rect 30 265 88 271
+rect 148 265 206 271
+rect 266 265 324 271
+rect 384 265 442 271
+rect 502 265 560 271
+rect 620 265 678 271
+rect -678 231 -666 265
+rect -560 231 -548 265
+rect -442 231 -430 265
+rect -324 231 -312 265
+rect -206 231 -194 265
+rect -88 231 -76 265
+rect 30 231 42 265
+rect 148 231 160 265
+rect 266 231 278 265
+rect 384 231 396 265
+rect 502 231 514 265
+rect 620 231 632 265
+rect -678 225 -620 231
+rect -560 225 -502 231
+rect -442 225 -384 231
+rect -324 225 -266 231
+rect -206 225 -148 231
+rect -88 225 -30 231
+rect 30 225 88 231
+rect 148 225 206 231
+rect 266 225 324 231
+rect 384 225 442 231
+rect 502 225 560 231
+rect 620 225 678 231
+rect -678 71 -620 77
+rect -560 71 -502 77
+rect -442 71 -384 77
+rect -324 71 -266 77
+rect -206 71 -148 77
+rect -88 71 -30 77
+rect 30 71 88 77
+rect 148 71 206 77
+rect 266 71 324 77
+rect 384 71 442 77
+rect 502 71 560 77
+rect 620 71 678 77
+rect -678 37 -666 71
+rect -560 37 -548 71
+rect -442 37 -430 71
+rect -324 37 -312 71
+rect -206 37 -194 71
+rect -88 37 -76 71
+rect 30 37 42 71
+rect 148 37 160 71
+rect 266 37 278 71
+rect 384 37 396 71
+rect 502 37 514 71
+rect 620 37 632 71
+rect -678 31 -620 37
+rect -560 31 -502 37
+rect -442 31 -384 37
+rect -324 31 -266 37
+rect -206 31 -148 37
+rect -88 31 -30 37
+rect 30 31 88 37
+rect 148 31 206 37
+rect 266 31 324 37
+rect 384 31 442 37
+rect 502 31 560 37
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -560 -37 -502 -31
+rect -442 -37 -384 -31
+rect -324 -37 -266 -31
+rect -206 -37 -148 -31
+rect -88 -37 -30 -31
+rect 30 -37 88 -31
+rect 148 -37 206 -31
+rect 266 -37 324 -31
+rect 384 -37 442 -31
+rect 502 -37 560 -31
+rect 620 -37 678 -31
+rect -678 -71 -666 -37
+rect -560 -71 -548 -37
+rect -442 -71 -430 -37
+rect -324 -71 -312 -37
+rect -206 -71 -194 -37
+rect -88 -71 -76 -37
+rect 30 -71 42 -37
+rect 148 -71 160 -37
+rect 266 -71 278 -37
+rect 384 -71 396 -37
+rect 502 -71 514 -37
+rect 620 -71 632 -37
+rect -678 -77 -620 -71
+rect -560 -77 -502 -71
+rect -442 -77 -384 -71
+rect -324 -77 -266 -71
+rect -206 -77 -148 -71
+rect -88 -77 -30 -71
+rect 30 -77 88 -71
+rect 148 -77 206 -71
+rect 266 -77 324 -71
+rect 384 -77 442 -71
+rect 502 -77 560 -71
+rect 620 -77 678 -71
+rect -678 -231 -620 -225
+rect -560 -231 -502 -225
+rect -442 -231 -384 -225
+rect -324 -231 -266 -225
+rect -206 -231 -148 -225
+rect -88 -231 -30 -225
+rect 30 -231 88 -225
+rect 148 -231 206 -225
+rect 266 -231 324 -225
+rect 384 -231 442 -225
+rect 502 -231 560 -225
+rect 620 -231 678 -225
+rect -678 -265 -666 -231
+rect -560 -265 -548 -231
+rect -442 -265 -430 -231
+rect -324 -265 -312 -231
+rect -206 -265 -194 -231
+rect -88 -265 -76 -231
+rect 30 -265 42 -231
+rect 148 -265 160 -231
+rect 266 -265 278 -231
+rect 384 -265 396 -231
+rect 502 -265 514 -231
+rect 620 -265 632 -231
+rect -678 -271 -620 -265
+rect -560 -271 -502 -265
+rect -442 -271 -384 -265
+rect -324 -271 -266 -265
+rect -206 -271 -148 -265
+rect -88 -271 -30 -265
+rect 30 -271 88 -265
+rect 148 -271 206 -265
+rect 266 -271 324 -265
+rect 384 -271 442 -265
+rect 502 -271 560 -265
+rect 620 -271 678 -265
+<< pwell >>
+rect -875 -403 875 403
+<< nmoslvt >>
+rect -679 109 -619 193
+rect -561 109 -501 193
+rect -443 109 -383 193
+rect -325 109 -265 193
+rect -207 109 -147 193
+rect -89 109 -29 193
+rect 29 109 89 193
+rect 147 109 207 193
+rect 265 109 325 193
+rect 383 109 443 193
+rect 501 109 561 193
+rect 619 109 679 193
+rect -679 -193 -619 -109
+rect -561 -193 -501 -109
+rect -443 -193 -383 -109
+rect -325 -193 -265 -109
+rect -207 -193 -147 -109
+rect -89 -193 -29 -109
+rect 29 -193 89 -109
+rect 147 -193 207 -109
+rect 265 -193 325 -109
+rect 383 -193 443 -109
+rect 501 -193 561 -109
+rect 619 -193 679 -109
+<< ndiff >>
+rect -737 181 -679 193
+rect -737 121 -725 181
+rect -691 121 -679 181
+rect -737 109 -679 121
+rect -619 181 -561 193
+rect -619 121 -607 181
+rect -573 121 -561 181
+rect -619 109 -561 121
+rect -501 181 -443 193
+rect -501 121 -489 181
+rect -455 121 -443 181
+rect -501 109 -443 121
+rect -383 181 -325 193
+rect -383 121 -371 181
+rect -337 121 -325 181
+rect -383 109 -325 121
+rect -265 181 -207 193
+rect -265 121 -253 181
+rect -219 121 -207 181
+rect -265 109 -207 121
+rect -147 181 -89 193
+rect -147 121 -135 181
+rect -101 121 -89 181
+rect -147 109 -89 121
+rect -29 181 29 193
+rect -29 121 -17 181
+rect 17 121 29 181
+rect -29 109 29 121
+rect 89 181 147 193
+rect 89 121 101 181
+rect 135 121 147 181
+rect 89 109 147 121
+rect 207 181 265 193
+rect 207 121 219 181
+rect 253 121 265 181
+rect 207 109 265 121
+rect 325 181 383 193
+rect 325 121 337 181
+rect 371 121 383 181
+rect 325 109 383 121
+rect 443 181 501 193
+rect 443 121 455 181
+rect 489 121 501 181
+rect 443 109 501 121
+rect 561 181 619 193
+rect 561 121 573 181
+rect 607 121 619 181
+rect 561 109 619 121
+rect 679 181 737 193
+rect 679 121 691 181
+rect 725 121 737 181
+rect 679 109 737 121
+rect -737 -121 -679 -109
+rect -737 -181 -725 -121
+rect -691 -181 -679 -121
+rect -737 -193 -679 -181
+rect -619 -121 -561 -109
+rect -619 -181 -607 -121
+rect -573 -181 -561 -121
+rect -619 -193 -561 -181
+rect -501 -121 -443 -109
+rect -501 -181 -489 -121
+rect -455 -181 -443 -121
+rect -501 -193 -443 -181
+rect -383 -121 -325 -109
+rect -383 -181 -371 -121
+rect -337 -181 -325 -121
+rect -383 -193 -325 -181
+rect -265 -121 -207 -109
+rect -265 -181 -253 -121
+rect -219 -181 -207 -121
+rect -265 -193 -207 -181
+rect -147 -121 -89 -109
+rect -147 -181 -135 -121
+rect -101 -181 -89 -121
+rect -147 -193 -89 -181
+rect -29 -121 29 -109
+rect -29 -181 -17 -121
+rect 17 -181 29 -121
+rect -29 -193 29 -181
+rect 89 -121 147 -109
+rect 89 -181 101 -121
+rect 135 -181 147 -121
+rect 89 -193 147 -181
+rect 207 -121 265 -109
+rect 207 -181 219 -121
+rect 253 -181 265 -121
+rect 207 -193 265 -181
+rect 325 -121 383 -109
+rect 325 -181 337 -121
+rect 371 -181 383 -121
+rect 325 -193 383 -181
+rect 443 -121 501 -109
+rect 443 -181 455 -121
+rect 489 -181 501 -121
+rect 443 -193 501 -181
+rect 561 -121 619 -109
+rect 561 -181 573 -121
+rect 607 -181 619 -121
+rect 561 -193 619 -181
+rect 679 -121 737 -109
+rect 679 -181 691 -121
+rect 725 -181 737 -121
+rect 679 -193 737 -181
+<< ndiffc >>
+rect -725 121 -691 181
+rect -607 121 -573 181
+rect -489 121 -455 181
+rect -371 121 -337 181
+rect -253 121 -219 181
+rect -135 121 -101 181
+rect -17 121 17 181
+rect 101 121 135 181
+rect 219 121 253 181
+rect 337 121 371 181
+rect 455 121 489 181
+rect 573 121 607 181
+rect 691 121 725 181
+rect -725 -181 -691 -121
+rect -607 -181 -573 -121
+rect -489 -181 -455 -121
+rect -371 -181 -337 -121
+rect -253 -181 -219 -121
+rect -135 -181 -101 -121
+rect -17 -181 17 -121
+rect 101 -181 135 -121
+rect 219 -181 253 -121
+rect 337 -181 371 -121
+rect 455 -181 489 -121
+rect 573 -181 607 -121
+rect 691 -181 725 -121
+<< psubdiff >>
+rect -839 333 -743 367
+rect 743 333 839 367
+rect -839 271 -805 333
+rect 805 271 839 333
+rect -839 -333 -805 -271
+rect 805 -333 839 -271
+rect -839 -367 -743 -333
+rect 743 -367 839 -333
+<< psubdiffcont >>
+rect -743 333 743 367
+rect -839 -271 -805 271
+rect 805 -271 839 271
+rect -743 -367 743 -333
+<< poly >>
+rect -682 265 -616 281
+rect -682 231 -666 265
+rect -632 231 -616 265
+rect -682 215 -616 231
+rect -564 265 -498 281
+rect -564 231 -548 265
+rect -514 231 -498 265
+rect -564 215 -498 231
+rect -446 265 -380 281
+rect -446 231 -430 265
+rect -396 231 -380 265
+rect -446 215 -380 231
+rect -328 265 -262 281
+rect -328 231 -312 265
+rect -278 231 -262 265
+rect -328 215 -262 231
+rect -210 265 -144 281
+rect -210 231 -194 265
+rect -160 231 -144 265
+rect -210 215 -144 231
+rect -92 265 -26 281
+rect -92 231 -76 265
+rect -42 231 -26 265
+rect -92 215 -26 231
+rect 26 265 92 281
+rect 26 231 42 265
+rect 76 231 92 265
+rect 26 215 92 231
+rect 144 265 210 281
+rect 144 231 160 265
+rect 194 231 210 265
+rect 144 215 210 231
+rect 262 265 328 281
+rect 262 231 278 265
+rect 312 231 328 265
+rect 262 215 328 231
+rect 380 265 446 281
+rect 380 231 396 265
+rect 430 231 446 265
+rect 380 215 446 231
+rect 498 265 564 281
+rect 498 231 514 265
+rect 548 231 564 265
+rect 498 215 564 231
+rect 616 265 682 281
+rect 616 231 632 265
+rect 666 231 682 265
+rect 616 215 682 231
+rect -679 193 -619 215
+rect -561 193 -501 215
+rect -443 193 -383 215
+rect -325 193 -265 215
+rect -207 193 -147 215
+rect -89 193 -29 215
+rect 29 193 89 215
+rect 147 193 207 215
+rect 265 193 325 215
+rect 383 193 443 215
+rect 501 193 561 215
+rect 619 193 679 215
+rect -679 87 -619 109
+rect -561 87 -501 109
+rect -443 87 -383 109
+rect -325 87 -265 109
+rect -207 87 -147 109
+rect -89 87 -29 109
+rect 29 87 89 109
+rect 147 87 207 109
+rect 265 87 325 109
+rect 383 87 443 109
+rect 501 87 561 109
+rect 619 87 679 109
+rect -682 71 -616 87
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -682 21 -616 37
+rect -564 71 -498 87
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -564 21 -498 37
+rect -446 71 -380 87
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -446 21 -380 37
+rect -328 71 -262 87
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -328 21 -262 37
+rect -210 71 -144 87
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -210 21 -144 37
+rect -92 71 -26 87
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect -92 21 -26 37
+rect 26 71 92 87
+rect 26 37 42 71
+rect 76 37 92 71
+rect 26 21 92 37
+rect 144 71 210 87
+rect 144 37 160 71
+rect 194 37 210 71
+rect 144 21 210 37
+rect 262 71 328 87
+rect 262 37 278 71
+rect 312 37 328 71
+rect 262 21 328 37
+rect 380 71 446 87
+rect 380 37 396 71
+rect 430 37 446 71
+rect 380 21 446 37
+rect 498 71 564 87
+rect 498 37 514 71
+rect 548 37 564 71
+rect 498 21 564 37
+rect 616 71 682 87
+rect 616 37 632 71
+rect 666 37 682 71
+rect 616 21 682 37
+rect -682 -37 -616 -21
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -682 -87 -616 -71
+rect -564 -37 -498 -21
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -564 -87 -498 -71
+rect -446 -37 -380 -21
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -446 -87 -380 -71
+rect -328 -37 -262 -21
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -328 -87 -262 -71
+rect -210 -37 -144 -21
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -210 -87 -144 -71
+rect -92 -37 -26 -21
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect -92 -87 -26 -71
+rect 26 -37 92 -21
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 26 -87 92 -71
+rect 144 -37 210 -21
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 144 -87 210 -71
+rect 262 -37 328 -21
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 262 -87 328 -71
+rect 380 -37 446 -21
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 380 -87 446 -71
+rect 498 -37 564 -21
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 498 -87 564 -71
+rect 616 -37 682 -21
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect 616 -87 682 -71
+rect -679 -109 -619 -87
+rect -561 -109 -501 -87
+rect -443 -109 -383 -87
+rect -325 -109 -265 -87
+rect -207 -109 -147 -87
+rect -89 -109 -29 -87
+rect 29 -109 89 -87
+rect 147 -109 207 -87
+rect 265 -109 325 -87
+rect 383 -109 443 -87
+rect 501 -109 561 -87
+rect 619 -109 679 -87
+rect -679 -215 -619 -193
+rect -561 -215 -501 -193
+rect -443 -215 -383 -193
+rect -325 -215 -265 -193
+rect -207 -215 -147 -193
+rect -89 -215 -29 -193
+rect 29 -215 89 -193
+rect 147 -215 207 -193
+rect 265 -215 325 -193
+rect 383 -215 443 -193
+rect 501 -215 561 -193
+rect 619 -215 679 -193
+rect -682 -231 -616 -215
+rect -682 -265 -666 -231
+rect -632 -265 -616 -231
+rect -682 -281 -616 -265
+rect -564 -231 -498 -215
+rect -564 -265 -548 -231
+rect -514 -265 -498 -231
+rect -564 -281 -498 -265
+rect -446 -231 -380 -215
+rect -446 -265 -430 -231
+rect -396 -265 -380 -231
+rect -446 -281 -380 -265
+rect -328 -231 -262 -215
+rect -328 -265 -312 -231
+rect -278 -265 -262 -231
+rect -328 -281 -262 -265
+rect -210 -231 -144 -215
+rect -210 -265 -194 -231
+rect -160 -265 -144 -231
+rect -210 -281 -144 -265
+rect -92 -231 -26 -215
+rect -92 -265 -76 -231
+rect -42 -265 -26 -231
+rect -92 -281 -26 -265
+rect 26 -231 92 -215
+rect 26 -265 42 -231
+rect 76 -265 92 -231
+rect 26 -281 92 -265
+rect 144 -231 210 -215
+rect 144 -265 160 -231
+rect 194 -265 210 -231
+rect 144 -281 210 -265
+rect 262 -231 328 -215
+rect 262 -265 278 -231
+rect 312 -265 328 -231
+rect 262 -281 328 -265
+rect 380 -231 446 -215
+rect 380 -265 396 -231
+rect 430 -265 446 -231
+rect 380 -281 446 -265
+rect 498 -231 564 -215
+rect 498 -265 514 -231
+rect 548 -265 564 -231
+rect 498 -281 564 -265
+rect 616 -231 682 -215
+rect 616 -265 632 -231
+rect 666 -265 682 -231
+rect 616 -281 682 -265
+<< polycont >>
+rect -666 231 -632 265
+rect -548 231 -514 265
+rect -430 231 -396 265
+rect -312 231 -278 265
+rect -194 231 -160 265
+rect -76 231 -42 265
+rect 42 231 76 265
+rect 160 231 194 265
+rect 278 231 312 265
+rect 396 231 430 265
+rect 514 231 548 265
+rect 632 231 666 265
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -666 -265 -632 -231
+rect -548 -265 -514 -231
+rect -430 -265 -396 -231
+rect -312 -265 -278 -231
+rect -194 -265 -160 -231
+rect -76 -265 -42 -231
+rect 42 -265 76 -231
+rect 160 -265 194 -231
+rect 278 -265 312 -231
+rect 396 -265 430 -231
+rect 514 -265 548 -231
+rect 632 -265 666 -231
+<< locali >>
+rect -839 333 -743 367
+rect 743 333 839 367
+rect -839 271 -805 333
+rect 805 271 839 333
+rect -682 231 -666 265
+rect -632 231 -616 265
+rect -564 231 -548 265
+rect -514 231 -498 265
+rect -446 231 -430 265
+rect -396 231 -380 265
+rect -328 231 -312 265
+rect -278 231 -262 265
+rect -210 231 -194 265
+rect -160 231 -144 265
+rect -92 231 -76 265
+rect -42 231 -26 265
+rect 26 231 42 265
+rect 76 231 92 265
+rect 144 231 160 265
+rect 194 231 210 265
+rect 262 231 278 265
+rect 312 231 328 265
+rect 380 231 396 265
+rect 430 231 446 265
+rect 498 231 514 265
+rect 548 231 564 265
+rect 616 231 632 265
+rect 666 231 682 265
+rect -725 181 -691 197
+rect -725 105 -691 121
+rect -607 181 -573 197
+rect -607 105 -573 121
+rect -489 181 -455 197
+rect -489 105 -455 121
+rect -371 181 -337 197
+rect -371 105 -337 121
+rect -253 181 -219 197
+rect -253 105 -219 121
+rect -135 181 -101 197
+rect -135 105 -101 121
+rect -17 181 17 197
+rect -17 105 17 121
+rect 101 181 135 197
+rect 101 105 135 121
+rect 219 181 253 197
+rect 219 105 253 121
+rect 337 181 371 197
+rect 337 105 371 121
+rect 455 181 489 197
+rect 455 105 489 121
+rect 573 181 607 197
+rect 573 105 607 121
+rect 691 181 725 197
+rect 691 105 725 121
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect 26 37 42 71
+rect 76 37 92 71
+rect 144 37 160 71
+rect 194 37 210 71
+rect 262 37 278 71
+rect 312 37 328 71
+rect 380 37 396 71
+rect 430 37 446 71
+rect 498 37 514 71
+rect 548 37 564 71
+rect 616 37 632 71
+rect 666 37 682 71
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect -725 -121 -691 -105
+rect -725 -197 -691 -181
+rect -607 -121 -573 -105
+rect -607 -197 -573 -181
+rect -489 -121 -455 -105
+rect -489 -197 -455 -181
+rect -371 -121 -337 -105
+rect -371 -197 -337 -181
+rect -253 -121 -219 -105
+rect -253 -197 -219 -181
+rect -135 -121 -101 -105
+rect -135 -197 -101 -181
+rect -17 -121 17 -105
+rect -17 -197 17 -181
+rect 101 -121 135 -105
+rect 101 -197 135 -181
+rect 219 -121 253 -105
+rect 219 -197 253 -181
+rect 337 -121 371 -105
+rect 337 -197 371 -181
+rect 455 -121 489 -105
+rect 455 -197 489 -181
+rect 573 -121 607 -105
+rect 573 -197 607 -181
+rect 691 -121 725 -105
+rect 691 -197 725 -181
+rect -682 -265 -666 -231
+rect -632 -265 -616 -231
+rect -564 -265 -548 -231
+rect -514 -265 -498 -231
+rect -446 -265 -430 -231
+rect -396 -265 -380 -231
+rect -328 -265 -312 -231
+rect -278 -265 -262 -231
+rect -210 -265 -194 -231
+rect -160 -265 -144 -231
+rect -92 -265 -76 -231
+rect -42 -265 -26 -231
+rect 26 -265 42 -231
+rect 76 -265 92 -231
+rect 144 -265 160 -231
+rect 194 -265 210 -231
+rect 262 -265 278 -231
+rect 312 -265 328 -231
+rect 380 -265 396 -231
+rect 430 -265 446 -231
+rect 498 -265 514 -231
+rect 548 -265 564 -231
+rect 616 -265 632 -231
+rect 666 -265 682 -231
+rect -839 -333 -805 -271
+rect 805 -333 839 -271
+rect -839 -367 -743 -333
+rect 743 -367 839 -333
+<< viali >>
+rect -666 231 -632 265
+rect -548 231 -514 265
+rect -430 231 -396 265
+rect -312 231 -278 265
+rect -194 231 -160 265
+rect -76 231 -42 265
+rect 42 231 76 265
+rect 160 231 194 265
+rect 278 231 312 265
+rect 396 231 430 265
+rect 514 231 548 265
+rect 632 231 666 265
+rect -725 121 -691 181
+rect -607 121 -573 181
+rect -489 121 -455 181
+rect -371 121 -337 181
+rect -253 121 -219 181
+rect -135 121 -101 181
+rect -17 121 17 181
+rect 101 121 135 181
+rect 219 121 253 181
+rect 337 121 371 181
+rect 455 121 489 181
+rect 573 121 607 181
+rect 691 121 725 181
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -725 -181 -691 -121
+rect -607 -181 -573 -121
+rect -489 -181 -455 -121
+rect -371 -181 -337 -121
+rect -253 -181 -219 -121
+rect -135 -181 -101 -121
+rect -17 -181 17 -121
+rect 101 -181 135 -121
+rect 219 -181 253 -121
+rect 337 -181 371 -121
+rect 455 -181 489 -121
+rect 573 -181 607 -121
+rect 691 -181 725 -121
+rect -666 -265 -632 -231
+rect -548 -265 -514 -231
+rect -430 -265 -396 -231
+rect -312 -265 -278 -231
+rect -194 -265 -160 -231
+rect -76 -265 -42 -231
+rect 42 -265 76 -231
+rect 160 -265 194 -231
+rect 278 -265 312 -231
+rect 396 -265 430 -231
+rect 514 -265 548 -231
+rect 632 -265 666 -231
+<< metal1 >>
+rect -678 265 -620 271
+rect -678 231 -666 265
+rect -632 231 -620 265
+rect -678 225 -620 231
+rect -560 265 -502 271
+rect -560 231 -548 265
+rect -514 231 -502 265
+rect -560 225 -502 231
+rect -442 265 -384 271
+rect -442 231 -430 265
+rect -396 231 -384 265
+rect -442 225 -384 231
+rect -324 265 -266 271
+rect -324 231 -312 265
+rect -278 231 -266 265
+rect -324 225 -266 231
+rect -206 265 -148 271
+rect -206 231 -194 265
+rect -160 231 -148 265
+rect -206 225 -148 231
+rect -88 265 -30 271
+rect -88 231 -76 265
+rect -42 231 -30 265
+rect -88 225 -30 231
+rect 30 265 88 271
+rect 30 231 42 265
+rect 76 231 88 265
+rect 30 225 88 231
+rect 148 265 206 271
+rect 148 231 160 265
+rect 194 231 206 265
+rect 148 225 206 231
+rect 266 265 324 271
+rect 266 231 278 265
+rect 312 231 324 265
+rect 266 225 324 231
+rect 384 265 442 271
+rect 384 231 396 265
+rect 430 231 442 265
+rect 384 225 442 231
+rect 502 265 560 271
+rect 502 231 514 265
+rect 548 231 560 265
+rect 502 225 560 231
+rect 620 265 678 271
+rect 620 231 632 265
+rect 666 231 678 265
+rect 620 225 678 231
+rect -731 181 -685 193
+rect -731 121 -725 181
+rect -691 121 -685 181
+rect -731 109 -685 121
+rect -613 181 -567 193
+rect -613 121 -607 181
+rect -573 121 -567 181
+rect -613 109 -567 121
+rect -495 181 -449 193
+rect -495 121 -489 181
+rect -455 121 -449 181
+rect -495 109 -449 121
+rect -377 181 -331 193
+rect -377 121 -371 181
+rect -337 121 -331 181
+rect -377 109 -331 121
+rect -259 181 -213 193
+rect -259 121 -253 181
+rect -219 121 -213 181
+rect -259 109 -213 121
+rect -141 181 -95 193
+rect -141 121 -135 181
+rect -101 121 -95 181
+rect -141 109 -95 121
+rect -23 181 23 193
+rect -23 121 -17 181
+rect 17 121 23 181
+rect -23 109 23 121
+rect 95 181 141 193
+rect 95 121 101 181
+rect 135 121 141 181
+rect 95 109 141 121
+rect 213 181 259 193
+rect 213 121 219 181
+rect 253 121 259 181
+rect 213 109 259 121
+rect 331 181 377 193
+rect 331 121 337 181
+rect 371 121 377 181
+rect 331 109 377 121
+rect 449 181 495 193
+rect 449 121 455 181
+rect 489 121 495 181
+rect 449 109 495 121
+rect 567 181 613 193
+rect 567 121 573 181
+rect 607 121 613 181
+rect 567 109 613 121
+rect 685 181 731 193
+rect 685 121 691 181
+rect 725 121 731 181
+rect 685 109 731 121
+rect -678 71 -620 77
+rect -678 37 -666 71
+rect -632 37 -620 71
+rect -678 31 -620 37
+rect -560 71 -502 77
+rect -560 37 -548 71
+rect -514 37 -502 71
+rect -560 31 -502 37
+rect -442 71 -384 77
+rect -442 37 -430 71
+rect -396 37 -384 71
+rect -442 31 -384 37
+rect -324 71 -266 77
+rect -324 37 -312 71
+rect -278 37 -266 71
+rect -324 31 -266 37
+rect -206 71 -148 77
+rect -206 37 -194 71
+rect -160 37 -148 71
+rect -206 31 -148 37
+rect -88 71 -30 77
+rect -88 37 -76 71
+rect -42 37 -30 71
+rect -88 31 -30 37
+rect 30 71 88 77
+rect 30 37 42 71
+rect 76 37 88 71
+rect 30 31 88 37
+rect 148 71 206 77
+rect 148 37 160 71
+rect 194 37 206 71
+rect 148 31 206 37
+rect 266 71 324 77
+rect 266 37 278 71
+rect 312 37 324 71
+rect 266 31 324 37
+rect 384 71 442 77
+rect 384 37 396 71
+rect 430 37 442 71
+rect 384 31 442 37
+rect 502 71 560 77
+rect 502 37 514 71
+rect 548 37 560 71
+rect 502 31 560 37
+rect 620 71 678 77
+rect 620 37 632 71
+rect 666 37 678 71
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -678 -71 -666 -37
+rect -632 -71 -620 -37
+rect -678 -77 -620 -71
+rect -560 -37 -502 -31
+rect -560 -71 -548 -37
+rect -514 -71 -502 -37
+rect -560 -77 -502 -71
+rect -442 -37 -384 -31
+rect -442 -71 -430 -37
+rect -396 -71 -384 -37
+rect -442 -77 -384 -71
+rect -324 -37 -266 -31
+rect -324 -71 -312 -37
+rect -278 -71 -266 -37
+rect -324 -77 -266 -71
+rect -206 -37 -148 -31
+rect -206 -71 -194 -37
+rect -160 -71 -148 -37
+rect -206 -77 -148 -71
+rect -88 -37 -30 -31
+rect -88 -71 -76 -37
+rect -42 -71 -30 -37
+rect -88 -77 -30 -71
+rect 30 -37 88 -31
+rect 30 -71 42 -37
+rect 76 -71 88 -37
+rect 30 -77 88 -71
+rect 148 -37 206 -31
+rect 148 -71 160 -37
+rect 194 -71 206 -37
+rect 148 -77 206 -71
+rect 266 -37 324 -31
+rect 266 -71 278 -37
+rect 312 -71 324 -37
+rect 266 -77 324 -71
+rect 384 -37 442 -31
+rect 384 -71 396 -37
+rect 430 -71 442 -37
+rect 384 -77 442 -71
+rect 502 -37 560 -31
+rect 502 -71 514 -37
+rect 548 -71 560 -37
+rect 502 -77 560 -71
+rect 620 -37 678 -31
+rect 620 -71 632 -37
+rect 666 -71 678 -37
+rect 620 -77 678 -71
+rect -731 -121 -685 -109
+rect -731 -181 -725 -121
+rect -691 -181 -685 -121
+rect -731 -193 -685 -181
+rect -613 -121 -567 -109
+rect -613 -181 -607 -121
+rect -573 -181 -567 -121
+rect -613 -193 -567 -181
+rect -495 -121 -449 -109
+rect -495 -181 -489 -121
+rect -455 -181 -449 -121
+rect -495 -193 -449 -181
+rect -377 -121 -331 -109
+rect -377 -181 -371 -121
+rect -337 -181 -331 -121
+rect -377 -193 -331 -181
+rect -259 -121 -213 -109
+rect -259 -181 -253 -121
+rect -219 -181 -213 -121
+rect -259 -193 -213 -181
+rect -141 -121 -95 -109
+rect -141 -181 -135 -121
+rect -101 -181 -95 -121
+rect -141 -193 -95 -181
+rect -23 -121 23 -109
+rect -23 -181 -17 -121
+rect 17 -181 23 -121
+rect -23 -193 23 -181
+rect 95 -121 141 -109
+rect 95 -181 101 -121
+rect 135 -181 141 -121
+rect 95 -193 141 -181
+rect 213 -121 259 -109
+rect 213 -181 219 -121
+rect 253 -181 259 -121
+rect 213 -193 259 -181
+rect 331 -121 377 -109
+rect 331 -181 337 -121
+rect 371 -181 377 -121
+rect 331 -193 377 -181
+rect 449 -121 495 -109
+rect 449 -181 455 -121
+rect 489 -181 495 -121
+rect 449 -193 495 -181
+rect 567 -121 613 -109
+rect 567 -181 573 -121
+rect 607 -181 613 -121
+rect 567 -193 613 -181
+rect 685 -121 731 -109
+rect 685 -181 691 -121
+rect 725 -181 731 -121
+rect 685 -193 731 -181
+rect -678 -231 -620 -225
+rect -678 -265 -666 -231
+rect -632 -265 -620 -231
+rect -678 -271 -620 -265
+rect -560 -231 -502 -225
+rect -560 -265 -548 -231
+rect -514 -265 -502 -231
+rect -560 -271 -502 -265
+rect -442 -231 -384 -225
+rect -442 -265 -430 -231
+rect -396 -265 -384 -231
+rect -442 -271 -384 -265
+rect -324 -231 -266 -225
+rect -324 -265 -312 -231
+rect -278 -265 -266 -231
+rect -324 -271 -266 -265
+rect -206 -231 -148 -225
+rect -206 -265 -194 -231
+rect -160 -265 -148 -231
+rect -206 -271 -148 -265
+rect -88 -231 -30 -225
+rect -88 -265 -76 -231
+rect -42 -265 -30 -231
+rect -88 -271 -30 -265
+rect 30 -231 88 -225
+rect 30 -265 42 -231
+rect 76 -265 88 -231
+rect 30 -271 88 -265
+rect 148 -231 206 -225
+rect 148 -265 160 -231
+rect 194 -265 206 -231
+rect 148 -271 206 -265
+rect 266 -231 324 -225
+rect 266 -265 278 -231
+rect 312 -265 324 -231
+rect 266 -271 324 -265
+rect 384 -231 442 -225
+rect 384 -265 396 -231
+rect 430 -265 442 -231
+rect 384 -271 442 -265
+rect 502 -231 560 -225
+rect 502 -265 514 -231
+rect 548 -265 560 -231
+rect 502 -271 560 -265
+rect 620 -231 678 -225
+rect 620 -265 632 -231
+rect 666 -265 678 -231
+rect 620 -271 678 -265
+<< properties >>
+string FIXED_BBOX -822 -350 822 350
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 0.420 l 0.3 m 2 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.ext b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.ext
new file mode 100644
index 0000000..ed5ce2b
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.ext
@@ -0,0 +1,455 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1167_n509#" 929 155.176 1167 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_n509#" 882 12.2058 1071 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_n509#" 882 12.2058 975 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_n509#" 882 12.2058 879 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_n509#" 882 12.2058 783 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_n509#" 882 12.2058 687 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_n509#" 882 12.2058 591 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n509#" 882 12.2058 495 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n509#" 882 12.2058 399 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n509#" 882 12.2058 303 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n509#" 882 12.2058 207 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n509#" 882 12.2058 111 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n509#" 882 12.2058 15 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n509#" 882 12.2058 -81 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n509#" 882 12.2058 -177 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n509#" 882 12.2058 -273 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n509#" 882 12.2058 -369 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n509#" 882 12.2058 -465 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n509#" 882 12.2058 -561 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n509#" 882 12.2058 -657 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n509#" 882 12.2058 -753 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n509#" 882 12.2058 -849 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n509#" 882 12.2058 -945 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n509#" 882 12.2058 -1041 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n509#" 882 12.2058 -1137 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n509#" 929 155.176 -1229 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n597#" 837 133.292 1119 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_n597#" 837 96.6422 927 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n87#" 837 82.0127 1023 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_n597#" 837 96.6422 735 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_n87#" 837 62.121 831 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n597#" 837 96.6422 543 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_n87#" 837 62.121 639 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_n597#" 837 96.6422 351 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_n87#" 837 62.121 447 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n597#" 837 96.6422 159 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_n87#" 837 62.121 255 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n597#" 837 96.6422 -33 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n87#" 837 62.121 63 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n597#" 837 96.6422 -225 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n87#" 837 62.121 -129 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n597#" 837 96.6422 -417 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n87#" 837 62.121 -321 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n597#" 837 96.6422 -609 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n87#" 837 62.121 -513 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n597#" 837 96.6422 -801 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n87#" 837 62.121 -705 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n597#" 837 96.6422 -993 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n87#" 837 62.121 -897 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n597#" 837 133.546 -1185 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n87#" 837 82.2668 -1089 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_109#" 929 155.264 1167 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_109#" 882 12.4348 1071 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_109#" 882 12.4348 975 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_109#" 882 12.4348 879 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_109#" 882 12.4348 783 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_109#" 882 12.4348 687 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_109#" 882 12.4348 591 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_109#" 882 12.4348 495 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_109#" 882 12.4348 399 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_109#" 882 12.4348 303 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 882 12.4348 207 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_109#" 882 12.4348 111 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_109#" 882 12.4348 15 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_109#" 882 12.4348 -81 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_109#" 882 12.4348 -177 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_109#" 882 12.4348 -273 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_109#" 882 12.4348 -369 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_109#" 882 12.4348 -465 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_109#" 882 12.4348 -561 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_109#" 882 12.4348 -657 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_109#" 882 12.4348 -753 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_109#" 882 12.4348 -849 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_109#" 882 12.4348 -945 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_109#" 882 12.4348 -1041 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_109#" 882 12.4348 -1137 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_109#" 929 155.264 -1229 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_21#" 837 82.2192 1023 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1119_531#" 837 133.292 1119 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_21#" 837 62.3276 831 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_531#" 837 96.6422 927 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_21#" 837 62.3276 639 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_531#" 837 96.6422 735 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_21#" 837 62.3276 447 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_531#" 837 96.6422 543 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_21#" 837 62.3276 255 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_531#" 837 96.6422 351 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_21#" 837 62.3276 63 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_531#" 837 96.6422 159 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_21#" 837 62.3276 -129 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_531#" 837 96.6422 -33 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_21#" 837 62.3276 -321 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_531#" 837 96.6422 -225 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_21#" 837 62.3276 -513 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_531#" 837 96.6422 -417 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_21#" 837 62.3276 -705 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_531#" 837 96.6422 -609 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_21#" 837 62.3276 -897 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_531#" 837 96.6422 -801 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_21#" 837 82.4733 -1089 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_531#" 837 96.6422 -993 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_531#" 837 133.546 -1185 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1331_n683#" 0 0 -1331 -683 ppd 0 0 0 0 0 0 0 0 0 0 269280 15840 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269280 15840 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_63_21#" "a_n33_531#" 14.1667
+cap "a_n753_109#" "a_n801_531#" 6.25956
+cap "a_n849_n509#" "a_n753_n509#" 479.458
+cap "a_n81_n509#" "a_n81_109#" 12.3196
+cap "a_1071_109#" "a_1167_109#" 479.458
+cap "a_639_21#" "a_831_21#" 28.5878
+cap "a_n369_n509#" "a_n417_n597#" 6.25956
+cap "a_n273_n509#" "a_n321_n87#" 6.25956
+cap "a_255_n87#" "a_255_21#" 86.2066
+cap "a_n993_531#" "a_n897_21#" 14.1667
+cap "a_591_n509#" "a_687_n509#" 479.458
+cap "a_591_109#" "a_687_109#" 479.458
+cap "a_n513_n87#" "a_n513_21#" 86.2066
+cap "a_n849_n509#" "a_n801_n597#" 6.25956
+cap "a_n753_n509#" "a_n705_n87#" 6.25956
+cap "a_n273_109#" "a_n177_109#" 479.458
+cap "a_n33_n597#" "a_n81_n509#" 6.25956
+cap "a_63_n87#" "a_15_n509#" 6.25956
+cap "a_n609_n597#" "a_n417_n597#" 28.5878
+cap "a_639_n87#" "a_543_n597#" 14.1667
+cap "a_735_531#" "a_927_531#" 28.5878
+cap "a_n753_109#" "a_n705_21#" 6.25956
+cap "a_879_109#" "a_831_21#" 6.25956
+cap "a_543_531#" "a_447_21#" 14.1667
+cap "a_303_109#" "a_303_n509#" 12.3196
+cap "a_1023_n87#" "a_927_n597#" 14.1667
+cap "a_n1137_n509#" "a_n1185_n597#" 6.25956
+cap "a_n1041_n509#" "a_n1089_n87#" 6.25956
+cap "a_n849_109#" "a_n897_21#" 6.25956
+cap "a_255_n87#" "a_447_n87#" 28.5878
+cap "a_n705_n87#" "a_n801_n597#" 14.1667
+cap "a_543_n597#" "a_495_n509#" 6.25956
+cap "a_n81_n509#" "a_15_n509#" 479.458
+cap "a_639_n87#" "a_591_n509#" 6.25956
+cap "a_n705_21#" "a_n705_n87#" 86.2066
+cap "a_n225_531#" "a_n33_531#" 28.5878
+cap "a_n1137_109#" "a_n1185_531#" 6.25956
+cap "a_n129_n87#" "a_n33_n597#" 14.1667
+cap "a_n1089_n87#" "a_n897_n87#" 28.5878
+cap "a_n417_531#" "a_n513_21#" 14.1667
+cap "a_879_109#" "a_879_n509#" 12.3196
+cap "a_n945_n509#" "a_n849_n509#" 479.458
+cap "a_831_n87#" "a_831_21#" 86.2066
+cap "a_n561_n509#" "a_n609_n597#" 6.25956
+cap "a_n465_n509#" "a_n513_n87#" 6.25956
+cap "a_n177_n509#" "a_n177_109#" 12.3196
+cap "a_159_n597#" "a_207_n509#" 6.25956
+cap "a_255_n87#" "a_303_n509#" 6.25956
+cap "a_n177_109#" "a_n129_21#" 6.25956
+cap "a_n81_109#" "a_n33_531#" 6.25956
+cap "a_n369_109#" "a_n417_531#" 6.25956
+cap "a_1023_n87#" "a_1023_21#" 86.2066
+cap "a_n609_n597#" "a_n609_531#" 6.73951
+cap "a_495_n509#" "a_591_n509#" 479.458
+cap "a_735_n597#" "a_735_531#" 6.73951
+cap "a_n993_531#" "a_n1089_21#" 14.1667
+cap "a_495_109#" "a_591_109#" 479.458
+cap "a_n369_109#" "a_n273_109#" 479.458
+cap "a_927_n597#" "a_927_531#" 6.73951
+cap "a_1167_n509#" "a_1119_n597#" 6.25956
+cap "a_447_n87#" "a_543_n597#" 14.1667
+cap "a_n513_n87#" "a_n321_n87#" 28.5878
+cap "a_399_109#" "a_447_21#" 6.25956
+cap "a_n849_109#" "a_n753_109#" 479.458
+cap "a_495_109#" "a_543_531#" 6.25956
+cap "a_1071_109#" "a_1119_531#" 6.25956
+cap "a_n33_n597#" "a_n33_531#" 6.73951
+cap "a_543_531#" "a_351_531#" 28.5878
+cap "a_735_n597#" "a_783_n509#" 6.25956
+cap "a_831_n87#" "a_879_n509#" 6.25956
+cap "a_n849_109#" "a_n849_n509#" 12.3196
+cap "a_n33_n597#" "a_159_n597#" 28.5878
+cap "a_n897_n87#" "a_n801_n597#" 14.1667
+cap "a_1167_n509#" "a_1167_109#" 12.3196
+cap "a_975_n509#" "a_879_n509#" 479.458
+cap "a_687_109#" "a_639_21#" 6.25956
+cap "a_783_109#" "a_735_531#" 6.25956
+cap "a_1119_531#" "a_1023_21#" 14.1667
+cap "a_n657_109#" "a_n609_531#" 6.25956
+cap "a_n177_n509#" "a_n81_n509#" 479.458
+cap "a_639_21#" "a_447_21#" 28.5878
+cap "a_351_n597#" "a_351_531#" 6.73951
+cap "a_927_531#" "a_1023_21#" 14.1667
+cap "a_n129_n87#" "a_n225_n597#" 14.1667
+cap "a_975_109#" "a_1071_109#" 479.458
+cap "a_n801_531#" "a_n609_531#" 28.5878
+cap "a_783_109#" "a_783_n509#" 12.3196
+cap "a_n1041_n509#" "a_n945_n509#" 479.458
+cap "a_n273_n509#" "a_n273_109#" 12.3196
+cap "a_543_n597#" "a_735_n597#" 28.5878
+cap "a_735_n597#" "a_927_n597#" 28.5878
+cap "a_639_n87#" "a_639_21#" 86.2066
+cap "a_399_n509#" "a_495_n509#" 479.458
+cap "a_975_109#" "a_1023_21#" 6.25956
+cap "a_n1185_531#" "a_n993_531#" 28.5878
+cap "a_n1041_n509#" "a_n993_n597#" 6.25956
+cap "a_n945_n509#" "a_n897_n87#" 6.25956
+cap "a_399_109#" "a_495_109#" 479.458
+cap "a_n225_n597#" "a_n273_n509#" 6.25956
+cap "a_n129_n87#" "a_n177_n509#" 6.25956
+cap "a_n801_n597#" "a_n609_n597#" 28.5878
+cap "a_447_n87#" "a_351_n597#" 14.1667
+cap "a_n705_21#" "a_n609_531#" 14.1667
+cap "a_399_109#" "a_351_531#" 6.25956
+cap "a_n129_n87#" "a_n129_21#" 86.2066
+cap "a_255_21#" "a_63_21#" 28.5878
+cap "a_n225_n597#" "a_n321_n87#" 14.1667
+cap "a_n945_109#" "a_n945_n509#" 12.3196
+cap "a_n417_531#" "a_n225_531#" 28.5878
+cap "a_n321_21#" "a_n513_21#" 28.5878
+cap "a_n465_109#" "a_n513_21#" 6.25956
+cap "a_n1041_109#" "a_n1089_21#" 6.25956
+cap "a_n945_109#" "a_n993_531#" 6.25956
+cap "a_63_n87#" "a_255_n87#" 28.5878
+cap "a_n897_n87#" "a_n993_n597#" 14.1667
+cap "a_1071_n509#" "a_1071_109#" 12.3196
+cap "a_63_21#" "a_n129_21#" 28.5878
+cap "a_n369_109#" "a_n321_21#" 6.25956
+cap "a_n273_109#" "a_n225_531#" 6.25956
+cap "a_n465_n509#" "a_n417_n597#" 6.25956
+cap "a_111_109#" "a_207_109#" 479.458
+cap "a_n369_109#" "a_n465_109#" 479.458
+cap "a_351_n597#" "a_303_n509#" 6.25956
+cap "a_n273_n509#" "a_n177_n509#" 479.458
+cap "a_447_n87#" "a_399_n509#" 6.25956
+cap "a_735_531#" "a_543_531#" 28.5878
+cap "a_n513_21#" "a_n609_531#" 14.1667
+cap "a_927_531#" "a_831_21#" 14.1667
+cap "a_n1089_21#" "a_n897_21#" 28.5878
+cap "a_n33_531#" "a_n129_21#" 14.1667
+cap "a_687_109#" "a_687_n509#" 12.3196
+cap "a_n1137_n509#" "a_n1041_n509#" 479.458
+cap "a_n945_109#" "a_n849_109#" 479.458
+cap "a_n753_n509#" "a_n801_n597#" 6.25956
+cap "a_n657_n509#" "a_n705_n87#" 6.25956
+cap "a_n225_n597#" "a_n225_531#" 6.73951
+cap "a_n33_n597#" "a_15_n509#" 6.25956
+cap "a_63_n87#" "a_111_n509#" 6.25956
+cap "a_n369_n509#" "a_n369_109#" 12.3196
+cap "a_639_n87#" "a_831_n87#" 28.5878
+cap "a_n321_n87#" "a_n417_n597#" 14.1667
+cap "a_n657_109#" "a_n705_21#" 6.25956
+cap "a_n801_n597#" "a_n801_531#" 6.73951
+cap "a_831_n87#" "a_1023_n87#" 28.5878
+cap "a_303_n509#" "a_399_n509#" 479.458
+cap "a_1023_n87#" "a_1119_n597#" 14.1667
+cap "a_303_109#" "a_399_109#" 479.458
+cap "a_975_n509#" "a_1023_n87#" 6.25956
+cap "a_n465_109#" "a_n465_n509#" 12.3196
+cap "a_255_n87#" "a_351_n597#" 14.1667
+cap "a_n705_n87#" "a_n513_n87#" 28.5878
+cap "a_n705_21#" "a_n801_531#" 14.1667
+cap "a_879_109#" "a_927_531#" 6.25956
+cap "a_n1185_n597#" "a_n1185_531#" 6.73951
+cap "a_159_531#" "a_63_21#" 14.1667
+cap "a_n561_n509#" "a_n465_n509#" 479.458
+cap "a_207_n509#" "a_207_109#" 12.3196
+cap "a_543_n597#" "a_591_n509#" 6.25956
+cap "a_639_n87#" "a_687_n509#" 6.25956
+cap "a_n1041_109#" "a_n1041_n509#" 12.3196
+cap "a_n225_531#" "a_n129_21#" 14.1667
+cap "a_15_109#" "a_63_21#" 6.25956
+cap "a_111_109#" "a_159_531#" 6.25956
+cap "a_n369_n509#" "a_n465_n509#" 479.458
+cap "a_n225_n597#" "a_n33_n597#" 28.5878
+cap "a_n1089_n87#" "a_n993_n597#" 14.1667
+cap "a_n321_21#" "a_n321_n87#" 86.2066
+cap "a_543_n597#" "a_543_531#" 6.73951
+cap "a_159_531#" "a_n33_531#" 28.5878
+cap "a_879_109#" "a_975_109#" 479.458
+cap "a_15_109#" "a_111_109#" 479.458
+cap "a_n369_n509#" "a_n273_n509#" 479.458
+cap "a_n81_109#" "a_n129_21#" 6.25956
+cap "a_15_109#" "a_n33_531#" 6.25956
+cap "a_1119_n597#" "a_1119_531#" 6.73951
+cap "a_159_n597#" "a_159_531#" 6.73951
+cap "a_735_531#" "a_831_21#" 14.1667
+cap "a_n369_n509#" "a_n321_n87#" 6.25956
+cap "a_n993_531#" "a_n801_531#" 28.5878
+cap "a_591_109#" "a_591_n509#" 12.3196
+cap "a_n1229_n509#" "a_n1137_n509#" 479.458
+cap "a_n1041_109#" "a_n945_109#" 479.458
+cap "a_351_n597#" "a_543_n597#" 28.5878
+cap "a_n513_n87#" "a_n417_n597#" 14.1667
+cap "a_735_531#" "a_639_21#" 14.1667
+cap "a_1071_n509#" "a_1167_n509#" 479.458
+cap "a_495_109#" "a_447_21#" 6.25956
+cap "a_591_109#" "a_543_531#" 6.25956
+cap "a_n897_n87#" "a_n897_21#" 86.2066
+cap "a_1071_109#" "a_1023_21#" 6.25956
+cap "a_1167_109#" "a_1119_531#" 6.25956
+cap "a_n225_531#" "a_n321_21#" 14.1667
+cap "a_n561_109#" "a_n465_109#" 479.458
+cap "a_447_21#" "a_351_531#" 14.1667
+cap "a_207_n509#" "a_303_n509#" 479.458
+cap "a_783_109#" "a_831_21#" 6.25956
+cap "a_n705_21#" "a_n513_21#" 28.5878
+cap "a_255_21#" "a_447_21#" 28.5878
+cap "a_n1229_n509#" "a_n1185_n597#" 6.25956
+cap "a_n1137_n509#" "a_n1089_n87#" 6.25956
+cap "a_n561_109#" "a_n561_n509#" 12.3196
+cap "a_n945_109#" "a_n897_21#" 6.25956
+cap "a_n849_109#" "a_n801_531#" 6.25956
+cap "a_n993_n597#" "a_n801_n597#" 28.5878
+cap "a_255_n87#" "a_159_n597#" 14.1667
+cap "a_975_n509#" "a_975_109#" 12.3196
+cap "a_n561_109#" "a_n609_531#" 6.25956
+cap "a_n657_n509#" "a_n561_n509#" 479.458
+cap "a_111_n509#" "a_111_109#" 12.3196
+cap "a_n1137_109#" "a_n1137_n509#" 12.3196
+cap "a_n129_n87#" "a_63_n87#" 28.5878
+cap "a_n1089_n87#" "a_n1185_n597#" 14.1667
+cap "a_447_n87#" "a_447_21#" 86.2066
+cap "a_783_n509#" "a_879_n509#" 479.458
+cap "a_n1229_109#" "a_n1185_531#" 6.25956
+cap "a_n417_531#" "a_n417_n597#" 6.73951
+cap "a_783_109#" "a_879_109#" 479.458
+cap "a_n81_109#" "a_15_109#" 479.458
+cap "a_n657_n509#" "a_n609_n597#" 6.25956
+cap "a_n561_n509#" "a_n513_n87#" 6.25956
+cap "a_159_n597#" "a_111_n509#" 6.25956
+cap "a_255_n87#" "a_207_n509#" 6.25956
+cap "a_831_n87#" "a_735_n597#" 14.1667
+cap "a_63_n87#" "a_63_21#" 86.2066
+cap "a_n1185_531#" "a_n1089_21#" 14.1667
+cap "a_495_109#" "a_495_n509#" 12.3196
+cap "a_n1137_109#" "a_n1041_109#" 479.458
+cap "a_n945_n509#" "a_n993_n597#" 6.25956
+cap "a_n849_n509#" "a_n897_n87#" 6.25956
+cap "a_1071_n509#" "a_1119_n597#" 6.25956
+cap "a_n225_n597#" "a_n177_n509#" 6.25956
+cap "a_n129_n87#" "a_n81_n509#" 6.25956
+cap "a_447_n87#" "a_639_n87#" 28.5878
+cap "a_n513_n87#" "a_n609_n597#" 14.1667
+cap "a_975_n509#" "a_1071_n509#" 479.458
+cap "a_n993_n597#" "a_n993_531#" 6.73951
+cap "a_255_21#" "a_351_531#" 14.1667
+cap "a_n657_109#" "a_n561_109#" 479.458
+cap "a_n225_n597#" "a_n417_n597#" 28.5878
+cap "a_735_n597#" "a_687_n509#" 6.25956
+cap "a_111_n509#" "a_207_n509#" 479.458
+cap "a_831_n87#" "a_783_n509#" 6.25956
+cap "a_n465_109#" "a_n417_531#" 6.25956
+cap "a_n417_531#" "a_n321_21#" 14.1667
+cap "a_n657_109#" "a_n657_n509#" 12.3196
+cap "a_879_n509#" "a_927_n597#" 6.25956
+cap "a_207_109#" "a_255_21#" 6.25956
+cap "a_63_n87#" "a_159_n597#" 14.1667
+cap "a_n897_n87#" "a_n705_n87#" 28.5878
+cap "a_591_109#" "a_639_21#" 6.25956
+cap "a_687_109#" "a_735_531#" 6.25956
+cap "a_831_21#" "a_1023_21#" 28.5878
+cap "a_n753_n509#" "a_n657_n509#" 479.458
+cap "a_n273_109#" "a_n321_21#" 6.25956
+cap "a_n177_109#" "a_n225_531#" 6.25956
+cap "a_351_n597#" "a_399_n509#" 6.25956
+cap "a_447_n87#" "a_495_n509#" 6.25956
+cap "a_15_n509#" "a_15_109#" 12.3196
+cap "a_n417_531#" "a_n609_531#" 28.5878
+cap "a_639_21#" "a_543_531#" 14.1667
+cap "a_n1229_n509#" "a_n1229_109#" 12.3196
+cap "a_927_531#" "a_1119_531#" 28.5878
+cap "a_687_n509#" "a_783_n509#" 479.458
+cap "a_n801_531#" "a_n897_21#" 14.1667
+cap "a_687_109#" "a_783_109#" 479.458
+cap "a_n177_109#" "a_n81_109#" 479.458
+cap "a_639_n87#" "a_735_n597#" 14.1667
+cap "a_831_n87#" "a_927_n597#" 14.1667
+cap "a_399_109#" "a_399_n509#" 12.3196
+cap "a_927_n597#" "a_1119_n597#" 28.5878
+cap "a_975_n509#" "a_927_n597#" 6.25956
+cap "a_1071_n509#" "a_1023_n87#" 6.25956
+cap "a_159_n597#" "a_351_n597#" 28.5878
+cap "a_n705_n87#" "a_n609_n597#" 14.1667
+cap "a_n705_21#" "a_n897_21#" 28.5878
+cap "a_n1137_109#" "a_n1229_109#" 479.458
+cap "a_303_109#" "a_351_531#" 6.25956
+cap "a_303_109#" "a_255_21#" 6.25956
+cap "a_975_109#" "a_927_531#" 6.25956
+cap "a_n1089_n87#" "a_n1089_21#" 86.2066
+cap "a_159_531#" "a_351_531#" 28.5878
+cap "a_255_21#" "a_159_531#" 14.1667
+cap "a_n753_109#" "a_n657_109#" 479.458
+cap "a_n129_n87#" "a_n321_n87#" 28.5878
+cap "a_15_n509#" "a_111_n509#" 479.458
+cap "a_303_109#" "a_207_109#" 479.458
+cap "a_n321_21#" "a_n129_21#" 28.5878
+cap "a_111_109#" "a_63_21#" 6.25956
+cap "a_n561_109#" "a_n513_21#" 6.25956
+cap "a_207_109#" "a_159_531#" 6.25956
+cap "a_n753_109#" "a_n753_n509#" 12.3196
+cap "a_n1137_109#" "a_n1089_21#" 6.25956
+cap "a_n1041_109#" "a_n993_531#" 6.25956
+cap "a_n1185_n597#" "a_n993_n597#" 28.5878
+cap "a_63_n87#" "a_n33_n597#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1137 -509 1138 -508 l=30 w=400 "a_n1331_n683#" "a_1119_n597#" 60 0 "a_1071_n509#" 400 0 "a_1167_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1041 -509 1042 -508 l=30 w=400 "a_n1331_n683#" "a_1023_n87#" 60 0 "a_975_n509#" 400 0 "a_1071_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 945 -509 946 -508 l=30 w=400 "a_n1331_n683#" "a_927_n597#" 60 0 "a_879_n509#" 400 0 "a_975_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 849 -509 850 -508 l=30 w=400 "a_n1331_n683#" "a_831_n87#" 60 0 "a_783_n509#" 400 0 "a_879_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 753 -509 754 -508 l=30 w=400 "a_n1331_n683#" "a_735_n597#" 60 0 "a_687_n509#" 400 0 "a_783_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 657 -509 658 -508 l=30 w=400 "a_n1331_n683#" "a_639_n87#" 60 0 "a_591_n509#" 400 0 "a_687_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 561 -509 562 -508 l=30 w=400 "a_n1331_n683#" "a_543_n597#" 60 0 "a_495_n509#" 400 0 "a_591_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 465 -509 466 -508 l=30 w=400 "a_n1331_n683#" "a_447_n87#" 60 0 "a_399_n509#" 400 0 "a_495_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 369 -509 370 -508 l=30 w=400 "a_n1331_n683#" "a_351_n597#" 60 0 "a_303_n509#" 400 0 "a_399_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 273 -509 274 -508 l=30 w=400 "a_n1331_n683#" "a_255_n87#" 60 0 "a_207_n509#" 400 0 "a_303_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 177 -509 178 -508 l=30 w=400 "a_n1331_n683#" "a_159_n597#" 60 0 "a_111_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 81 -509 82 -508 l=30 w=400 "a_n1331_n683#" "a_63_n87#" 60 0 "a_15_n509#" 400 0 "a_111_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -15 -509 -14 -508 l=30 w=400 "a_n1331_n683#" "a_n33_n597#" 60 0 "a_n81_n509#" 400 0 "a_15_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -111 -509 -110 -508 l=30 w=400 "a_n1331_n683#" "a_n129_n87#" 60 0 "a_n177_n509#" 400 0 "a_n81_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -509 -206 -508 l=30 w=400 "a_n1331_n683#" "a_n225_n597#" 60 0 "a_n273_n509#" 400 0 "a_n177_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -303 -509 -302 -508 l=30 w=400 "a_n1331_n683#" "a_n321_n87#" 60 0 "a_n369_n509#" 400 0 "a_n273_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -399 -509 -398 -508 l=30 w=400 "a_n1331_n683#" "a_n417_n597#" 60 0 "a_n465_n509#" 400 0 "a_n369_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -495 -509 -494 -508 l=30 w=400 "a_n1331_n683#" "a_n513_n87#" 60 0 "a_n561_n509#" 400 0 "a_n465_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -591 -509 -590 -508 l=30 w=400 "a_n1331_n683#" "a_n609_n597#" 60 0 "a_n657_n509#" 400 0 "a_n561_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -687 -509 -686 -508 l=30 w=400 "a_n1331_n683#" "a_n705_n87#" 60 0 "a_n753_n509#" 400 0 "a_n657_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -783 -509 -782 -508 l=30 w=400 "a_n1331_n683#" "a_n801_n597#" 60 0 "a_n849_n509#" 400 0 "a_n753_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -879 -509 -878 -508 l=30 w=400 "a_n1331_n683#" "a_n897_n87#" 60 0 "a_n945_n509#" 400 0 "a_n849_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -975 -509 -974 -508 l=30 w=400 "a_n1331_n683#" "a_n993_n597#" 60 0 "a_n1041_n509#" 400 0 "a_n945_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1071 -509 -1070 -508 l=30 w=400 "a_n1331_n683#" "a_n1089_n87#" 60 0 "a_n1137_n509#" 400 0 "a_n1041_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1167 -509 -1166 -508 l=30 w=400 "a_n1331_n683#" "a_n1185_n597#" 60 0 "a_n1229_n509#" 400 0 "a_n1137_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1137 109 1138 110 l=30 w=400 "a_n1331_n683#" "a_1119_531#" 60 0 "a_1071_109#" 400 0 "a_1167_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1041 109 1042 110 l=30 w=400 "a_n1331_n683#" "a_1023_21#" 60 0 "a_975_109#" 400 0 "a_1071_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 945 109 946 110 l=30 w=400 "a_n1331_n683#" "a_927_531#" 60 0 "a_879_109#" 400 0 "a_975_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 849 109 850 110 l=30 w=400 "a_n1331_n683#" "a_831_21#" 60 0 "a_783_109#" 400 0 "a_879_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 753 109 754 110 l=30 w=400 "a_n1331_n683#" "a_735_531#" 60 0 "a_687_109#" 400 0 "a_783_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 657 109 658 110 l=30 w=400 "a_n1331_n683#" "a_639_21#" 60 0 "a_591_109#" 400 0 "a_687_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 561 109 562 110 l=30 w=400 "a_n1331_n683#" "a_543_531#" 60 0 "a_495_109#" 400 0 "a_591_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 465 109 466 110 l=30 w=400 "a_n1331_n683#" "a_447_21#" 60 0 "a_399_109#" 400 0 "a_495_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 369 109 370 110 l=30 w=400 "a_n1331_n683#" "a_351_531#" 60 0 "a_303_109#" 400 0 "a_399_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 273 109 274 110 l=30 w=400 "a_n1331_n683#" "a_255_21#" 60 0 "a_207_109#" 400 0 "a_303_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 177 109 178 110 l=30 w=400 "a_n1331_n683#" "a_159_531#" 60 0 "a_111_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 81 109 82 110 l=30 w=400 "a_n1331_n683#" "a_63_21#" 60 0 "a_15_109#" 400 0 "a_111_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -15 109 -14 110 l=30 w=400 "a_n1331_n683#" "a_n33_531#" 60 0 "a_n81_109#" 400 0 "a_15_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -111 109 -110 110 l=30 w=400 "a_n1331_n683#" "a_n129_21#" 60 0 "a_n177_109#" 400 0 "a_n81_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 109 -206 110 l=30 w=400 "a_n1331_n683#" "a_n225_531#" 60 0 "a_n273_109#" 400 0 "a_n177_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -303 109 -302 110 l=30 w=400 "a_n1331_n683#" "a_n321_21#" 60 0 "a_n369_109#" 400 0 "a_n273_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -399 109 -398 110 l=30 w=400 "a_n1331_n683#" "a_n417_531#" 60 0 "a_n465_109#" 400 0 "a_n369_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -495 109 -494 110 l=30 w=400 "a_n1331_n683#" "a_n513_21#" 60 0 "a_n561_109#" 400 0 "a_n465_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -591 109 -590 110 l=30 w=400 "a_n1331_n683#" "a_n609_531#" 60 0 "a_n657_109#" 400 0 "a_n561_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -687 109 -686 110 l=30 w=400 "a_n1331_n683#" "a_n705_21#" 60 0 "a_n753_109#" 400 0 "a_n657_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -783 109 -782 110 l=30 w=400 "a_n1331_n683#" "a_n801_531#" 60 0 "a_n849_109#" 400 0 "a_n753_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -879 109 -878 110 l=30 w=400 "a_n1331_n683#" "a_n897_21#" 60 0 "a_n945_109#" 400 0 "a_n849_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -975 109 -974 110 l=30 w=400 "a_n1331_n683#" "a_n993_531#" 60 0 "a_n1041_109#" 400 0 "a_n945_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1071 109 -1070 110 l=30 w=400 "a_n1331_n683#" "a_n1089_21#" 60 0 "a_n1137_109#" 400 0 "a_n1041_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1167 109 -1166 110 l=30 w=400 "a_n1331_n683#" "a_n1185_531#" 60 0 "a_n1229_109#" 400 0 "a_n1137_109#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag
new file mode 100644
index 0000000..3283963
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+<< pwell >>
+rect -1367 -719 1367 719
+<< nmoslvt >>
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+<< ndiff >>
+rect -1229 497 -1167 509
+rect -1229 121 -1217 497
+rect -1183 121 -1167 497
+rect -1229 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1229 509
+rect 1167 121 1183 497
+rect 1217 121 1229 497
+rect 1167 109 1229 121
+rect -1229 -121 -1167 -109
+rect -1229 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1229 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1229 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1229 -121
+rect 1167 -509 1229 -497
+<< ndiffc >>
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+<< psubdiff >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< psubdiffcont >>
+rect -1235 649 1235 683
+rect -1331 -587 -1297 587
+rect 1297 -587 1331 587
+rect -1235 -683 1235 -649
+<< poly >>
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1137 509 1167 531
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect -1167 -531 -1137 -509
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+<< polycont >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< locali >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< viali >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< metal1 >>
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+<< properties >>
+string FIXED_BBOX -1314 -666 1314 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RHXGEY.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RHXGEY.mag
new file mode 100644
index 0000000..ec0faad
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_RHXGEY.mag
@@ -0,0 +1,1603 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654605132
+<< error_p >>
+rect -365 1508 -307 1514
+rect -173 1508 -115 1514
+rect 19 1508 77 1514
+rect 211 1508 269 1514
+rect 403 1508 461 1514
+rect -365 1474 -353 1508
+rect -173 1474 -161 1508
+rect 19 1474 31 1508
+rect 211 1474 223 1508
+rect 403 1474 415 1508
+rect -365 1468 -307 1474
+rect -173 1468 -115 1474
+rect 19 1468 77 1474
+rect 211 1468 269 1474
+rect 403 1468 461 1474
+rect -461 998 -403 1004
+rect -269 998 -211 1004
+rect -77 998 -19 1004
+rect 115 998 173 1004
+rect 307 998 365 1004
+rect -461 964 -449 998
+rect -269 964 -257 998
+rect -77 964 -65 998
+rect 115 964 127 998
+rect 307 964 319 998
+rect -461 958 -403 964
+rect -269 958 -211 964
+rect -77 958 -19 964
+rect 115 958 173 964
+rect 307 958 365 964
+rect -461 890 -403 896
+rect -269 890 -211 896
+rect -77 890 -19 896
+rect 115 890 173 896
+rect 307 890 365 896
+rect -461 856 -449 890
+rect -269 856 -257 890
+rect -77 856 -65 890
+rect 115 856 127 890
+rect 307 856 319 890
+rect -461 850 -403 856
+rect -269 850 -211 856
+rect -77 850 -19 856
+rect 115 850 173 856
+rect 307 850 365 856
+rect -365 380 -307 386
+rect -173 380 -115 386
+rect 19 380 77 386
+rect 211 380 269 386
+rect 403 380 461 386
+rect -365 346 -353 380
+rect -173 346 -161 380
+rect 19 346 31 380
+rect 211 346 223 380
+rect 403 346 415 380
+rect -365 340 -307 346
+rect -173 340 -115 346
+rect 19 340 77 346
+rect 211 340 269 346
+rect 403 340 461 346
+rect -365 272 -307 278
+rect -173 272 -115 278
+rect 19 272 77 278
+rect 211 272 269 278
+rect 403 272 461 278
+rect -365 238 -353 272
+rect -173 238 -161 272
+rect 19 238 31 272
+rect 211 238 223 272
+rect 403 238 415 272
+rect -365 232 -307 238
+rect -173 232 -115 238
+rect 19 232 77 238
+rect 211 232 269 238
+rect 403 232 461 238
+rect -461 -238 -403 -232
+rect -269 -238 -211 -232
+rect -77 -238 -19 -232
+rect 115 -238 173 -232
+rect 307 -238 365 -232
+rect -461 -272 -449 -238
+rect -269 -272 -257 -238
+rect -77 -272 -65 -238
+rect 115 -272 127 -238
+rect 307 -272 319 -238
+rect -461 -278 -403 -272
+rect -269 -278 -211 -272
+rect -77 -278 -19 -272
+rect 115 -278 173 -272
+rect 307 -278 365 -272
+rect -461 -346 -403 -340
+rect -269 -346 -211 -340
+rect -77 -346 -19 -340
+rect 115 -346 173 -340
+rect 307 -346 365 -340
+rect -461 -380 -449 -346
+rect -269 -380 -257 -346
+rect -77 -380 -65 -346
+rect 115 -380 127 -346
+rect 307 -380 319 -346
+rect -461 -386 -403 -380
+rect -269 -386 -211 -380
+rect -77 -386 -19 -380
+rect 115 -386 173 -380
+rect 307 -386 365 -380
+rect -365 -856 -307 -850
+rect -173 -856 -115 -850
+rect 19 -856 77 -850
+rect 211 -856 269 -850
+rect 403 -856 461 -850
+rect -365 -890 -353 -856
+rect -173 -890 -161 -856
+rect 19 -890 31 -856
+rect 211 -890 223 -856
+rect 403 -890 415 -856
+rect -365 -896 -307 -890
+rect -173 -896 -115 -890
+rect 19 -896 77 -890
+rect 211 -896 269 -890
+rect 403 -896 461 -890
+rect -365 -964 -307 -958
+rect -173 -964 -115 -958
+rect 19 -964 77 -958
+rect 211 -964 269 -958
+rect 403 -964 461 -958
+rect -365 -998 -353 -964
+rect -173 -998 -161 -964
+rect 19 -998 31 -964
+rect 211 -998 223 -964
+rect 403 -998 415 -964
+rect -365 -1004 -307 -998
+rect -173 -1004 -115 -998
+rect 19 -1004 77 -998
+rect 211 -1004 269 -998
+rect 403 -1004 461 -998
+rect -461 -1474 -403 -1468
+rect -269 -1474 -211 -1468
+rect -77 -1474 -19 -1468
+rect 115 -1474 173 -1468
+rect 307 -1474 365 -1468
+rect -461 -1508 -449 -1474
+rect -269 -1508 -257 -1474
+rect -77 -1508 -65 -1474
+rect 115 -1508 127 -1474
+rect 307 -1508 319 -1474
+rect -461 -1514 -403 -1508
+rect -269 -1514 -211 -1508
+rect -77 -1514 -19 -1508
+rect 115 -1514 173 -1508
+rect 307 -1514 365 -1508
+<< pwell >>
+rect -647 -1646 647 1646
+<< nmoslvt >>
+rect -447 1036 -417 1436
+rect -351 1036 -321 1436
+rect -255 1036 -225 1436
+rect -159 1036 -129 1436
+rect -63 1036 -33 1436
+rect 33 1036 63 1436
+rect 129 1036 159 1436
+rect 225 1036 255 1436
+rect 321 1036 351 1436
+rect 417 1036 447 1436
+rect -447 418 -417 818
+rect -351 418 -321 818
+rect -255 418 -225 818
+rect -159 418 -129 818
+rect -63 418 -33 818
+rect 33 418 63 818
+rect 129 418 159 818
+rect 225 418 255 818
+rect 321 418 351 818
+rect 417 418 447 818
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect -447 -818 -417 -418
+rect -351 -818 -321 -418
+rect -255 -818 -225 -418
+rect -159 -818 -129 -418
+rect -63 -818 -33 -418
+rect 33 -818 63 -418
+rect 129 -818 159 -418
+rect 225 -818 255 -418
+rect 321 -818 351 -418
+rect 417 -818 447 -418
+rect -447 -1436 -417 -1036
+rect -351 -1436 -321 -1036
+rect -255 -1436 -225 -1036
+rect -159 -1436 -129 -1036
+rect -63 -1436 -33 -1036
+rect 33 -1436 63 -1036
+rect 129 -1436 159 -1036
+rect 225 -1436 255 -1036
+rect 321 -1436 351 -1036
+rect 417 -1436 447 -1036
+<< ndiff >>
+rect -509 1424 -447 1436
+rect -509 1048 -497 1424
+rect -463 1048 -447 1424
+rect -509 1036 -447 1048
+rect -417 1424 -351 1436
+rect -417 1048 -401 1424
+rect -367 1048 -351 1424
+rect -417 1036 -351 1048
+rect -321 1424 -255 1436
+rect -321 1048 -305 1424
+rect -271 1048 -255 1424
+rect -321 1036 -255 1048
+rect -225 1424 -159 1436
+rect -225 1048 -209 1424
+rect -175 1048 -159 1424
+rect -225 1036 -159 1048
+rect -129 1424 -63 1436
+rect -129 1048 -113 1424
+rect -79 1048 -63 1424
+rect -129 1036 -63 1048
+rect -33 1424 33 1436
+rect -33 1048 -17 1424
+rect 17 1048 33 1424
+rect -33 1036 33 1048
+rect 63 1424 129 1436
+rect 63 1048 79 1424
+rect 113 1048 129 1424
+rect 63 1036 129 1048
+rect 159 1424 225 1436
+rect 159 1048 175 1424
+rect 209 1048 225 1424
+rect 159 1036 225 1048
+rect 255 1424 321 1436
+rect 255 1048 271 1424
+rect 305 1048 321 1424
+rect 255 1036 321 1048
+rect 351 1424 417 1436
+rect 351 1048 367 1424
+rect 401 1048 417 1424
+rect 351 1036 417 1048
+rect 447 1424 509 1436
+rect 447 1048 463 1424
+rect 497 1048 509 1424
+rect 447 1036 509 1048
+rect -509 806 -447 818
+rect -509 430 -497 806
+rect -463 430 -447 806
+rect -509 418 -447 430
+rect -417 806 -351 818
+rect -417 430 -401 806
+rect -367 430 -351 806
+rect -417 418 -351 430
+rect -321 806 -255 818
+rect -321 430 -305 806
+rect -271 430 -255 806
+rect -321 418 -255 430
+rect -225 806 -159 818
+rect -225 430 -209 806
+rect -175 430 -159 806
+rect -225 418 -159 430
+rect -129 806 -63 818
+rect -129 430 -113 806
+rect -79 430 -63 806
+rect -129 418 -63 430
+rect -33 806 33 818
+rect -33 430 -17 806
+rect 17 430 33 806
+rect -33 418 33 430
+rect 63 806 129 818
+rect 63 430 79 806
+rect 113 430 129 806
+rect 63 418 129 430
+rect 159 806 225 818
+rect 159 430 175 806
+rect 209 430 225 806
+rect 159 418 225 430
+rect 255 806 321 818
+rect 255 430 271 806
+rect 305 430 321 806
+rect 255 418 321 430
+rect 351 806 417 818
+rect 351 430 367 806
+rect 401 430 417 806
+rect 351 418 417 430
+rect 447 806 509 818
+rect 447 430 463 806
+rect 497 430 509 806
+rect 447 418 509 430
+rect -509 188 -447 200
+rect -509 -188 -497 188
+rect -463 -188 -447 188
+rect -509 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 509 200
+rect 447 -188 463 188
+rect 497 -188 509 188
+rect 447 -200 509 -188
+rect -509 -430 -447 -418
+rect -509 -806 -497 -430
+rect -463 -806 -447 -430
+rect -509 -818 -447 -806
+rect -417 -430 -351 -418
+rect -417 -806 -401 -430
+rect -367 -806 -351 -430
+rect -417 -818 -351 -806
+rect -321 -430 -255 -418
+rect -321 -806 -305 -430
+rect -271 -806 -255 -430
+rect -321 -818 -255 -806
+rect -225 -430 -159 -418
+rect -225 -806 -209 -430
+rect -175 -806 -159 -430
+rect -225 -818 -159 -806
+rect -129 -430 -63 -418
+rect -129 -806 -113 -430
+rect -79 -806 -63 -430
+rect -129 -818 -63 -806
+rect -33 -430 33 -418
+rect -33 -806 -17 -430
+rect 17 -806 33 -430
+rect -33 -818 33 -806
+rect 63 -430 129 -418
+rect 63 -806 79 -430
+rect 113 -806 129 -430
+rect 63 -818 129 -806
+rect 159 -430 225 -418
+rect 159 -806 175 -430
+rect 209 -806 225 -430
+rect 159 -818 225 -806
+rect 255 -430 321 -418
+rect 255 -806 271 -430
+rect 305 -806 321 -430
+rect 255 -818 321 -806
+rect 351 -430 417 -418
+rect 351 -806 367 -430
+rect 401 -806 417 -430
+rect 351 -818 417 -806
+rect 447 -430 509 -418
+rect 447 -806 463 -430
+rect 497 -806 509 -430
+rect 447 -818 509 -806
+rect -509 -1048 -447 -1036
+rect -509 -1424 -497 -1048
+rect -463 -1424 -447 -1048
+rect -509 -1436 -447 -1424
+rect -417 -1048 -351 -1036
+rect -417 -1424 -401 -1048
+rect -367 -1424 -351 -1048
+rect -417 -1436 -351 -1424
+rect -321 -1048 -255 -1036
+rect -321 -1424 -305 -1048
+rect -271 -1424 -255 -1048
+rect -321 -1436 -255 -1424
+rect -225 -1048 -159 -1036
+rect -225 -1424 -209 -1048
+rect -175 -1424 -159 -1048
+rect -225 -1436 -159 -1424
+rect -129 -1048 -63 -1036
+rect -129 -1424 -113 -1048
+rect -79 -1424 -63 -1048
+rect -129 -1436 -63 -1424
+rect -33 -1048 33 -1036
+rect -33 -1424 -17 -1048
+rect 17 -1424 33 -1048
+rect -33 -1436 33 -1424
+rect 63 -1048 129 -1036
+rect 63 -1424 79 -1048
+rect 113 -1424 129 -1048
+rect 63 -1436 129 -1424
+rect 159 -1048 225 -1036
+rect 159 -1424 175 -1048
+rect 209 -1424 225 -1048
+rect 159 -1436 225 -1424
+rect 255 -1048 321 -1036
+rect 255 -1424 271 -1048
+rect 305 -1424 321 -1048
+rect 255 -1436 321 -1424
+rect 351 -1048 417 -1036
+rect 351 -1424 367 -1048
+rect 401 -1424 417 -1048
+rect 351 -1436 417 -1424
+rect 447 -1048 509 -1036
+rect 447 -1424 463 -1048
+rect 497 -1424 509 -1048
+rect 447 -1436 509 -1424
+<< ndiffc >>
+rect -497 1048 -463 1424
+rect -401 1048 -367 1424
+rect -305 1048 -271 1424
+rect -209 1048 -175 1424
+rect -113 1048 -79 1424
+rect -17 1048 17 1424
+rect 79 1048 113 1424
+rect 175 1048 209 1424
+rect 271 1048 305 1424
+rect 367 1048 401 1424
+rect 463 1048 497 1424
+rect -497 430 -463 806
+rect -401 430 -367 806
+rect -305 430 -271 806
+rect -209 430 -175 806
+rect -113 430 -79 806
+rect -17 430 17 806
+rect 79 430 113 806
+rect 175 430 209 806
+rect 271 430 305 806
+rect 367 430 401 806
+rect 463 430 497 806
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect -497 -806 -463 -430
+rect -401 -806 -367 -430
+rect -305 -806 -271 -430
+rect -209 -806 -175 -430
+rect -113 -806 -79 -430
+rect -17 -806 17 -430
+rect 79 -806 113 -430
+rect 175 -806 209 -430
+rect 271 -806 305 -430
+rect 367 -806 401 -430
+rect 463 -806 497 -430
+rect -497 -1424 -463 -1048
+rect -401 -1424 -367 -1048
+rect -305 -1424 -271 -1048
+rect -209 -1424 -175 -1048
+rect -113 -1424 -79 -1048
+rect -17 -1424 17 -1048
+rect 79 -1424 113 -1048
+rect 175 -1424 209 -1048
+rect 271 -1424 305 -1048
+rect 367 -1424 401 -1048
+rect 463 -1424 497 -1048
+<< psubdiff >>
+rect -611 1576 -515 1610
+rect 515 1576 611 1610
+rect -611 1514 -577 1576
+rect 577 1514 611 1576
+rect -611 -1576 -577 -1514
+rect 577 -1576 611 -1514
+rect -611 -1610 -515 -1576
+rect 515 -1610 611 -1576
+<< psubdiffcont >>
+rect -515 1576 515 1610
+rect -611 -1514 -577 1514
+rect 577 -1514 611 1514
+rect -515 -1610 515 -1576
+<< poly >>
+rect -369 1508 -303 1524
+rect -369 1474 -353 1508
+rect -319 1474 -303 1508
+rect -447 1436 -417 1462
+rect -369 1458 -303 1474
+rect -177 1508 -111 1524
+rect -177 1474 -161 1508
+rect -127 1474 -111 1508
+rect -351 1436 -321 1458
+rect -255 1436 -225 1462
+rect -177 1458 -111 1474
+rect 15 1508 81 1524
+rect 15 1474 31 1508
+rect 65 1474 81 1508
+rect -159 1436 -129 1458
+rect -63 1436 -33 1462
+rect 15 1458 81 1474
+rect 207 1508 273 1524
+rect 207 1474 223 1508
+rect 257 1474 273 1508
+rect 33 1436 63 1458
+rect 129 1436 159 1462
+rect 207 1458 273 1474
+rect 399 1508 465 1524
+rect 399 1474 415 1508
+rect 449 1474 465 1508
+rect 225 1436 255 1458
+rect 321 1436 351 1462
+rect 399 1458 465 1474
+rect 417 1436 447 1458
+rect -447 1014 -417 1036
+rect -465 998 -399 1014
+rect -351 1010 -321 1036
+rect -255 1014 -225 1036
+rect -465 964 -449 998
+rect -415 964 -399 998
+rect -465 948 -399 964
+rect -273 998 -207 1014
+rect -159 1010 -129 1036
+rect -63 1014 -33 1036
+rect -273 964 -257 998
+rect -223 964 -207 998
+rect -273 948 -207 964
+rect -81 998 -15 1014
+rect 33 1010 63 1036
+rect 129 1014 159 1036
+rect -81 964 -65 998
+rect -31 964 -15 998
+rect -81 948 -15 964
+rect 111 998 177 1014
+rect 225 1010 255 1036
+rect 321 1014 351 1036
+rect 111 964 127 998
+rect 161 964 177 998
+rect 111 948 177 964
+rect 303 998 369 1014
+rect 417 1010 447 1036
+rect 303 964 319 998
+rect 353 964 369 998
+rect 303 948 369 964
+rect -465 890 -399 906
+rect -465 856 -449 890
+rect -415 856 -399 890
+rect -465 840 -399 856
+rect -273 890 -207 906
+rect -273 856 -257 890
+rect -223 856 -207 890
+rect -447 818 -417 840
+rect -351 818 -321 844
+rect -273 840 -207 856
+rect -81 890 -15 906
+rect -81 856 -65 890
+rect -31 856 -15 890
+rect -255 818 -225 840
+rect -159 818 -129 844
+rect -81 840 -15 856
+rect 111 890 177 906
+rect 111 856 127 890
+rect 161 856 177 890
+rect -63 818 -33 840
+rect 33 818 63 844
+rect 111 840 177 856
+rect 303 890 369 906
+rect 303 856 319 890
+rect 353 856 369 890
+rect 129 818 159 840
+rect 225 818 255 844
+rect 303 840 369 856
+rect 321 818 351 840
+rect 417 818 447 844
+rect -447 392 -417 418
+rect -351 396 -321 418
+rect -369 380 -303 396
+rect -255 392 -225 418
+rect -159 396 -129 418
+rect -369 346 -353 380
+rect -319 346 -303 380
+rect -369 330 -303 346
+rect -177 380 -111 396
+rect -63 392 -33 418
+rect 33 396 63 418
+rect -177 346 -161 380
+rect -127 346 -111 380
+rect -177 330 -111 346
+rect 15 380 81 396
+rect 129 392 159 418
+rect 225 396 255 418
+rect 15 346 31 380
+rect 65 346 81 380
+rect 15 330 81 346
+rect 207 380 273 396
+rect 321 392 351 418
+rect 417 396 447 418
+rect 207 346 223 380
+rect 257 346 273 380
+rect 207 330 273 346
+rect 399 380 465 396
+rect 399 346 415 380
+rect 449 346 465 380
+rect 399 330 465 346
+rect -369 272 -303 288
+rect -369 238 -353 272
+rect -319 238 -303 272
+rect -447 200 -417 226
+rect -369 222 -303 238
+rect -177 272 -111 288
+rect -177 238 -161 272
+rect -127 238 -111 272
+rect -351 200 -321 222
+rect -255 200 -225 226
+rect -177 222 -111 238
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -159 200 -129 222
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 207 272 273 288
+rect 207 238 223 272
+rect 257 238 273 272
+rect 33 200 63 222
+rect 129 200 159 226
+rect 207 222 273 238
+rect 399 272 465 288
+rect 399 238 415 272
+rect 449 238 465 272
+rect 225 200 255 222
+rect 321 200 351 226
+rect 399 222 465 238
+rect 417 200 447 222
+rect -447 -222 -417 -200
+rect -465 -238 -399 -222
+rect -351 -226 -321 -200
+rect -255 -222 -225 -200
+rect -465 -272 -449 -238
+rect -415 -272 -399 -238
+rect -465 -288 -399 -272
+rect -273 -238 -207 -222
+rect -159 -226 -129 -200
+rect -63 -222 -33 -200
+rect -273 -272 -257 -238
+rect -223 -272 -207 -238
+rect -273 -288 -207 -272
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect 129 -222 159 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+rect 111 -238 177 -222
+rect 225 -226 255 -200
+rect 321 -222 351 -200
+rect 111 -272 127 -238
+rect 161 -272 177 -238
+rect 111 -288 177 -272
+rect 303 -238 369 -222
+rect 417 -226 447 -200
+rect 303 -272 319 -238
+rect 353 -272 369 -238
+rect 303 -288 369 -272
+rect -465 -346 -399 -330
+rect -465 -380 -449 -346
+rect -415 -380 -399 -346
+rect -465 -396 -399 -380
+rect -273 -346 -207 -330
+rect -273 -380 -257 -346
+rect -223 -380 -207 -346
+rect -447 -418 -417 -396
+rect -351 -418 -321 -392
+rect -273 -396 -207 -380
+rect -81 -346 -15 -330
+rect -81 -380 -65 -346
+rect -31 -380 -15 -346
+rect -255 -418 -225 -396
+rect -159 -418 -129 -392
+rect -81 -396 -15 -380
+rect 111 -346 177 -330
+rect 111 -380 127 -346
+rect 161 -380 177 -346
+rect -63 -418 -33 -396
+rect 33 -418 63 -392
+rect 111 -396 177 -380
+rect 303 -346 369 -330
+rect 303 -380 319 -346
+rect 353 -380 369 -346
+rect 129 -418 159 -396
+rect 225 -418 255 -392
+rect 303 -396 369 -380
+rect 321 -418 351 -396
+rect 417 -418 447 -392
+rect -447 -844 -417 -818
+rect -351 -840 -321 -818
+rect -369 -856 -303 -840
+rect -255 -844 -225 -818
+rect -159 -840 -129 -818
+rect -369 -890 -353 -856
+rect -319 -890 -303 -856
+rect -369 -906 -303 -890
+rect -177 -856 -111 -840
+rect -63 -844 -33 -818
+rect 33 -840 63 -818
+rect -177 -890 -161 -856
+rect -127 -890 -111 -856
+rect -177 -906 -111 -890
+rect 15 -856 81 -840
+rect 129 -844 159 -818
+rect 225 -840 255 -818
+rect 15 -890 31 -856
+rect 65 -890 81 -856
+rect 15 -906 81 -890
+rect 207 -856 273 -840
+rect 321 -844 351 -818
+rect 417 -840 447 -818
+rect 207 -890 223 -856
+rect 257 -890 273 -856
+rect 207 -906 273 -890
+rect 399 -856 465 -840
+rect 399 -890 415 -856
+rect 449 -890 465 -856
+rect 399 -906 465 -890
+rect -369 -964 -303 -948
+rect -369 -998 -353 -964
+rect -319 -998 -303 -964
+rect -447 -1036 -417 -1010
+rect -369 -1014 -303 -998
+rect -177 -964 -111 -948
+rect -177 -998 -161 -964
+rect -127 -998 -111 -964
+rect -351 -1036 -321 -1014
+rect -255 -1036 -225 -1010
+rect -177 -1014 -111 -998
+rect 15 -964 81 -948
+rect 15 -998 31 -964
+rect 65 -998 81 -964
+rect -159 -1036 -129 -1014
+rect -63 -1036 -33 -1010
+rect 15 -1014 81 -998
+rect 207 -964 273 -948
+rect 207 -998 223 -964
+rect 257 -998 273 -964
+rect 33 -1036 63 -1014
+rect 129 -1036 159 -1010
+rect 207 -1014 273 -998
+rect 399 -964 465 -948
+rect 399 -998 415 -964
+rect 449 -998 465 -964
+rect 225 -1036 255 -1014
+rect 321 -1036 351 -1010
+rect 399 -1014 465 -998
+rect 417 -1036 447 -1014
+rect -447 -1458 -417 -1436
+rect -465 -1474 -399 -1458
+rect -351 -1462 -321 -1436
+rect -255 -1458 -225 -1436
+rect -465 -1508 -449 -1474
+rect -415 -1508 -399 -1474
+rect -465 -1524 -399 -1508
+rect -273 -1474 -207 -1458
+rect -159 -1462 -129 -1436
+rect -63 -1458 -33 -1436
+rect -273 -1508 -257 -1474
+rect -223 -1508 -207 -1474
+rect -273 -1524 -207 -1508
+rect -81 -1474 -15 -1458
+rect 33 -1462 63 -1436
+rect 129 -1458 159 -1436
+rect -81 -1508 -65 -1474
+rect -31 -1508 -15 -1474
+rect -81 -1524 -15 -1508
+rect 111 -1474 177 -1458
+rect 225 -1462 255 -1436
+rect 321 -1458 351 -1436
+rect 111 -1508 127 -1474
+rect 161 -1508 177 -1474
+rect 111 -1524 177 -1508
+rect 303 -1474 369 -1458
+rect 417 -1462 447 -1436
+rect 303 -1508 319 -1474
+rect 353 -1508 369 -1474
+rect 303 -1524 369 -1508
+<< polycont >>
+rect -353 1474 -319 1508
+rect -161 1474 -127 1508
+rect 31 1474 65 1508
+rect 223 1474 257 1508
+rect 415 1474 449 1508
+rect -449 964 -415 998
+rect -257 964 -223 998
+rect -65 964 -31 998
+rect 127 964 161 998
+rect 319 964 353 998
+rect -449 856 -415 890
+rect -257 856 -223 890
+rect -65 856 -31 890
+rect 127 856 161 890
+rect 319 856 353 890
+rect -353 346 -319 380
+rect -161 346 -127 380
+rect 31 346 65 380
+rect 223 346 257 380
+rect 415 346 449 380
+rect -353 238 -319 272
+rect -161 238 -127 272
+rect 31 238 65 272
+rect 223 238 257 272
+rect 415 238 449 272
+rect -449 -272 -415 -238
+rect -257 -272 -223 -238
+rect -65 -272 -31 -238
+rect 127 -272 161 -238
+rect 319 -272 353 -238
+rect -449 -380 -415 -346
+rect -257 -380 -223 -346
+rect -65 -380 -31 -346
+rect 127 -380 161 -346
+rect 319 -380 353 -346
+rect -353 -890 -319 -856
+rect -161 -890 -127 -856
+rect 31 -890 65 -856
+rect 223 -890 257 -856
+rect 415 -890 449 -856
+rect -353 -998 -319 -964
+rect -161 -998 -127 -964
+rect 31 -998 65 -964
+rect 223 -998 257 -964
+rect 415 -998 449 -964
+rect -449 -1508 -415 -1474
+rect -257 -1508 -223 -1474
+rect -65 -1508 -31 -1474
+rect 127 -1508 161 -1474
+rect 319 -1508 353 -1474
+<< locali >>
+rect -611 1576 -515 1610
+rect 515 1576 611 1610
+rect -611 1514 -577 1576
+rect 577 1514 611 1576
+rect -369 1474 -353 1508
+rect -319 1474 -303 1508
+rect -177 1474 -161 1508
+rect -127 1474 -111 1508
+rect 15 1474 31 1508
+rect 65 1474 81 1508
+rect 207 1474 223 1508
+rect 257 1474 273 1508
+rect 399 1474 415 1508
+rect 449 1474 465 1508
+rect -497 1424 -463 1440
+rect -497 1032 -463 1048
+rect -401 1424 -367 1440
+rect -401 1032 -367 1048
+rect -305 1424 -271 1440
+rect -305 1032 -271 1048
+rect -209 1424 -175 1440
+rect -209 1032 -175 1048
+rect -113 1424 -79 1440
+rect -113 1032 -79 1048
+rect -17 1424 17 1440
+rect -17 1032 17 1048
+rect 79 1424 113 1440
+rect 79 1032 113 1048
+rect 175 1424 209 1440
+rect 175 1032 209 1048
+rect 271 1424 305 1440
+rect 271 1032 305 1048
+rect 367 1424 401 1440
+rect 367 1032 401 1048
+rect 463 1424 497 1440
+rect 463 1032 497 1048
+rect -465 964 -449 998
+rect -415 964 -399 998
+rect -273 964 -257 998
+rect -223 964 -207 998
+rect -81 964 -65 998
+rect -31 964 -15 998
+rect 111 964 127 998
+rect 161 964 177 998
+rect 303 964 319 998
+rect 353 964 369 998
+rect -465 856 -449 890
+rect -415 856 -399 890
+rect -273 856 -257 890
+rect -223 856 -207 890
+rect -81 856 -65 890
+rect -31 856 -15 890
+rect 111 856 127 890
+rect 161 856 177 890
+rect 303 856 319 890
+rect 353 856 369 890
+rect -497 806 -463 822
+rect -497 414 -463 430
+rect -401 806 -367 822
+rect -401 414 -367 430
+rect -305 806 -271 822
+rect -305 414 -271 430
+rect -209 806 -175 822
+rect -209 414 -175 430
+rect -113 806 -79 822
+rect -113 414 -79 430
+rect -17 806 17 822
+rect -17 414 17 430
+rect 79 806 113 822
+rect 79 414 113 430
+rect 175 806 209 822
+rect 175 414 209 430
+rect 271 806 305 822
+rect 271 414 305 430
+rect 367 806 401 822
+rect 367 414 401 430
+rect 463 806 497 822
+rect 463 414 497 430
+rect -369 346 -353 380
+rect -319 346 -303 380
+rect -177 346 -161 380
+rect -127 346 -111 380
+rect 15 346 31 380
+rect 65 346 81 380
+rect 207 346 223 380
+rect 257 346 273 380
+rect 399 346 415 380
+rect 449 346 465 380
+rect -369 238 -353 272
+rect -319 238 -303 272
+rect -177 238 -161 272
+rect -127 238 -111 272
+rect 15 238 31 272
+rect 65 238 81 272
+rect 207 238 223 272
+rect 257 238 273 272
+rect 399 238 415 272
+rect 449 238 465 272
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect -465 -272 -449 -238
+rect -415 -272 -399 -238
+rect -273 -272 -257 -238
+rect -223 -272 -207 -238
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect 111 -272 127 -238
+rect 161 -272 177 -238
+rect 303 -272 319 -238
+rect 353 -272 369 -238
+rect -465 -380 -449 -346
+rect -415 -380 -399 -346
+rect -273 -380 -257 -346
+rect -223 -380 -207 -346
+rect -81 -380 -65 -346
+rect -31 -380 -15 -346
+rect 111 -380 127 -346
+rect 161 -380 177 -346
+rect 303 -380 319 -346
+rect 353 -380 369 -346
+rect -497 -430 -463 -414
+rect -497 -822 -463 -806
+rect -401 -430 -367 -414
+rect -401 -822 -367 -806
+rect -305 -430 -271 -414
+rect -305 -822 -271 -806
+rect -209 -430 -175 -414
+rect -209 -822 -175 -806
+rect -113 -430 -79 -414
+rect -113 -822 -79 -806
+rect -17 -430 17 -414
+rect -17 -822 17 -806
+rect 79 -430 113 -414
+rect 79 -822 113 -806
+rect 175 -430 209 -414
+rect 175 -822 209 -806
+rect 271 -430 305 -414
+rect 271 -822 305 -806
+rect 367 -430 401 -414
+rect 367 -822 401 -806
+rect 463 -430 497 -414
+rect 463 -822 497 -806
+rect -369 -890 -353 -856
+rect -319 -890 -303 -856
+rect -177 -890 -161 -856
+rect -127 -890 -111 -856
+rect 15 -890 31 -856
+rect 65 -890 81 -856
+rect 207 -890 223 -856
+rect 257 -890 273 -856
+rect 399 -890 415 -856
+rect 449 -890 465 -856
+rect -369 -998 -353 -964
+rect -319 -998 -303 -964
+rect -177 -998 -161 -964
+rect -127 -998 -111 -964
+rect 15 -998 31 -964
+rect 65 -998 81 -964
+rect 207 -998 223 -964
+rect 257 -998 273 -964
+rect 399 -998 415 -964
+rect 449 -998 465 -964
+rect -497 -1048 -463 -1032
+rect -497 -1440 -463 -1424
+rect -401 -1048 -367 -1032
+rect -401 -1440 -367 -1424
+rect -305 -1048 -271 -1032
+rect -305 -1440 -271 -1424
+rect -209 -1048 -175 -1032
+rect -209 -1440 -175 -1424
+rect -113 -1048 -79 -1032
+rect -113 -1440 -79 -1424
+rect -17 -1048 17 -1032
+rect -17 -1440 17 -1424
+rect 79 -1048 113 -1032
+rect 79 -1440 113 -1424
+rect 175 -1048 209 -1032
+rect 175 -1440 209 -1424
+rect 271 -1048 305 -1032
+rect 271 -1440 305 -1424
+rect 367 -1048 401 -1032
+rect 367 -1440 401 -1424
+rect 463 -1048 497 -1032
+rect 463 -1440 497 -1424
+rect -465 -1508 -449 -1474
+rect -415 -1508 -399 -1474
+rect -273 -1508 -257 -1474
+rect -223 -1508 -207 -1474
+rect -81 -1508 -65 -1474
+rect -31 -1508 -15 -1474
+rect 111 -1508 127 -1474
+rect 161 -1508 177 -1474
+rect 303 -1508 319 -1474
+rect 353 -1508 369 -1474
+rect -611 -1576 -577 -1514
+rect 577 -1576 611 -1514
+rect -611 -1610 -515 -1576
+rect 515 -1610 611 -1576
+<< viali >>
+rect -353 1474 -319 1508
+rect -161 1474 -127 1508
+rect 31 1474 65 1508
+rect 223 1474 257 1508
+rect 415 1474 449 1508
+rect -497 1048 -463 1424
+rect -401 1048 -367 1424
+rect -305 1048 -271 1424
+rect -209 1048 -175 1424
+rect -113 1048 -79 1424
+rect -17 1048 17 1424
+rect 79 1048 113 1424
+rect 175 1048 209 1424
+rect 271 1048 305 1424
+rect 367 1048 401 1424
+rect 463 1048 497 1424
+rect -449 964 -415 998
+rect -257 964 -223 998
+rect -65 964 -31 998
+rect 127 964 161 998
+rect 319 964 353 998
+rect -449 856 -415 890
+rect -257 856 -223 890
+rect -65 856 -31 890
+rect 127 856 161 890
+rect 319 856 353 890
+rect -497 430 -463 806
+rect -401 430 -367 806
+rect -305 430 -271 806
+rect -209 430 -175 806
+rect -113 430 -79 806
+rect -17 430 17 806
+rect 79 430 113 806
+rect 175 430 209 806
+rect 271 430 305 806
+rect 367 430 401 806
+rect 463 430 497 806
+rect -353 346 -319 380
+rect -161 346 -127 380
+rect 31 346 65 380
+rect 223 346 257 380
+rect 415 346 449 380
+rect -353 238 -319 272
+rect -161 238 -127 272
+rect 31 238 65 272
+rect 223 238 257 272
+rect 415 238 449 272
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect -449 -272 -415 -238
+rect -257 -272 -223 -238
+rect -65 -272 -31 -238
+rect 127 -272 161 -238
+rect 319 -272 353 -238
+rect -449 -380 -415 -346
+rect -257 -380 -223 -346
+rect -65 -380 -31 -346
+rect 127 -380 161 -346
+rect 319 -380 353 -346
+rect -497 -806 -463 -430
+rect -401 -806 -367 -430
+rect -305 -806 -271 -430
+rect -209 -806 -175 -430
+rect -113 -806 -79 -430
+rect -17 -806 17 -430
+rect 79 -806 113 -430
+rect 175 -806 209 -430
+rect 271 -806 305 -430
+rect 367 -806 401 -430
+rect 463 -806 497 -430
+rect -353 -890 -319 -856
+rect -161 -890 -127 -856
+rect 31 -890 65 -856
+rect 223 -890 257 -856
+rect 415 -890 449 -856
+rect -353 -998 -319 -964
+rect -161 -998 -127 -964
+rect 31 -998 65 -964
+rect 223 -998 257 -964
+rect 415 -998 449 -964
+rect -497 -1424 -463 -1048
+rect -401 -1424 -367 -1048
+rect -305 -1424 -271 -1048
+rect -209 -1424 -175 -1048
+rect -113 -1424 -79 -1048
+rect -17 -1424 17 -1048
+rect 79 -1424 113 -1048
+rect 175 -1424 209 -1048
+rect 271 -1424 305 -1048
+rect 367 -1424 401 -1048
+rect 463 -1424 497 -1048
+rect -449 -1508 -415 -1474
+rect -257 -1508 -223 -1474
+rect -65 -1508 -31 -1474
+rect 127 -1508 161 -1474
+rect 319 -1508 353 -1474
+<< metal1 >>
+rect -365 1508 -307 1514
+rect -365 1474 -353 1508
+rect -319 1474 -307 1508
+rect -365 1468 -307 1474
+rect -173 1508 -115 1514
+rect -173 1474 -161 1508
+rect -127 1474 -115 1508
+rect -173 1468 -115 1474
+rect 19 1508 77 1514
+rect 19 1474 31 1508
+rect 65 1474 77 1508
+rect 19 1468 77 1474
+rect 211 1508 269 1514
+rect 211 1474 223 1508
+rect 257 1474 269 1508
+rect 211 1468 269 1474
+rect 403 1508 461 1514
+rect 403 1474 415 1508
+rect 449 1474 461 1508
+rect 403 1468 461 1474
+rect -503 1424 -457 1436
+rect -503 1048 -497 1424
+rect -463 1048 -457 1424
+rect -503 1036 -457 1048
+rect -407 1424 -361 1436
+rect -407 1048 -401 1424
+rect -367 1048 -361 1424
+rect -407 1036 -361 1048
+rect -311 1424 -265 1436
+rect -311 1048 -305 1424
+rect -271 1048 -265 1424
+rect -311 1036 -265 1048
+rect -215 1424 -169 1436
+rect -215 1048 -209 1424
+rect -175 1048 -169 1424
+rect -215 1036 -169 1048
+rect -119 1424 -73 1436
+rect -119 1048 -113 1424
+rect -79 1048 -73 1424
+rect -119 1036 -73 1048
+rect -23 1424 23 1436
+rect -23 1048 -17 1424
+rect 17 1048 23 1424
+rect -23 1036 23 1048
+rect 73 1424 119 1436
+rect 73 1048 79 1424
+rect 113 1048 119 1424
+rect 73 1036 119 1048
+rect 169 1424 215 1436
+rect 169 1048 175 1424
+rect 209 1048 215 1424
+rect 169 1036 215 1048
+rect 265 1424 311 1436
+rect 265 1048 271 1424
+rect 305 1048 311 1424
+rect 265 1036 311 1048
+rect 361 1424 407 1436
+rect 361 1048 367 1424
+rect 401 1048 407 1424
+rect 361 1036 407 1048
+rect 457 1424 503 1436
+rect 457 1048 463 1424
+rect 497 1048 503 1424
+rect 457 1036 503 1048
+rect -461 998 -403 1004
+rect -461 964 -449 998
+rect -415 964 -403 998
+rect -461 958 -403 964
+rect -269 998 -211 1004
+rect -269 964 -257 998
+rect -223 964 -211 998
+rect -269 958 -211 964
+rect -77 998 -19 1004
+rect -77 964 -65 998
+rect -31 964 -19 998
+rect -77 958 -19 964
+rect 115 998 173 1004
+rect 115 964 127 998
+rect 161 964 173 998
+rect 115 958 173 964
+rect 307 998 365 1004
+rect 307 964 319 998
+rect 353 964 365 998
+rect 307 958 365 964
+rect -461 890 -403 896
+rect -461 856 -449 890
+rect -415 856 -403 890
+rect -461 850 -403 856
+rect -269 890 -211 896
+rect -269 856 -257 890
+rect -223 856 -211 890
+rect -269 850 -211 856
+rect -77 890 -19 896
+rect -77 856 -65 890
+rect -31 856 -19 890
+rect -77 850 -19 856
+rect 115 890 173 896
+rect 115 856 127 890
+rect 161 856 173 890
+rect 115 850 173 856
+rect 307 890 365 896
+rect 307 856 319 890
+rect 353 856 365 890
+rect 307 850 365 856
+rect -503 806 -457 818
+rect -503 430 -497 806
+rect -463 430 -457 806
+rect -503 418 -457 430
+rect -407 806 -361 818
+rect -407 430 -401 806
+rect -367 430 -361 806
+rect -407 418 -361 430
+rect -311 806 -265 818
+rect -311 430 -305 806
+rect -271 430 -265 806
+rect -311 418 -265 430
+rect -215 806 -169 818
+rect -215 430 -209 806
+rect -175 430 -169 806
+rect -215 418 -169 430
+rect -119 806 -73 818
+rect -119 430 -113 806
+rect -79 430 -73 806
+rect -119 418 -73 430
+rect -23 806 23 818
+rect -23 430 -17 806
+rect 17 430 23 806
+rect -23 418 23 430
+rect 73 806 119 818
+rect 73 430 79 806
+rect 113 430 119 806
+rect 73 418 119 430
+rect 169 806 215 818
+rect 169 430 175 806
+rect 209 430 215 806
+rect 169 418 215 430
+rect 265 806 311 818
+rect 265 430 271 806
+rect 305 430 311 806
+rect 265 418 311 430
+rect 361 806 407 818
+rect 361 430 367 806
+rect 401 430 407 806
+rect 361 418 407 430
+rect 457 806 503 818
+rect 457 430 463 806
+rect 497 430 503 806
+rect 457 418 503 430
+rect -365 380 -307 386
+rect -365 346 -353 380
+rect -319 346 -307 380
+rect -365 340 -307 346
+rect -173 380 -115 386
+rect -173 346 -161 380
+rect -127 346 -115 380
+rect -173 340 -115 346
+rect 19 380 77 386
+rect 19 346 31 380
+rect 65 346 77 380
+rect 19 340 77 346
+rect 211 380 269 386
+rect 211 346 223 380
+rect 257 346 269 380
+rect 211 340 269 346
+rect 403 380 461 386
+rect 403 346 415 380
+rect 449 346 461 380
+rect 403 340 461 346
+rect -365 272 -307 278
+rect -365 238 -353 272
+rect -319 238 -307 272
+rect -365 232 -307 238
+rect -173 272 -115 278
+rect -173 238 -161 272
+rect -127 238 -115 272
+rect -173 232 -115 238
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect 211 272 269 278
+rect 211 238 223 272
+rect 257 238 269 272
+rect 211 232 269 238
+rect 403 272 461 278
+rect 403 238 415 272
+rect 449 238 461 272
+rect 403 232 461 238
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect -461 -238 -403 -232
+rect -461 -272 -449 -238
+rect -415 -272 -403 -238
+rect -461 -278 -403 -272
+rect -269 -238 -211 -232
+rect -269 -272 -257 -238
+rect -223 -272 -211 -238
+rect -269 -278 -211 -272
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+rect 115 -238 173 -232
+rect 115 -272 127 -238
+rect 161 -272 173 -238
+rect 115 -278 173 -272
+rect 307 -238 365 -232
+rect 307 -272 319 -238
+rect 353 -272 365 -238
+rect 307 -278 365 -272
+rect -461 -346 -403 -340
+rect -461 -380 -449 -346
+rect -415 -380 -403 -346
+rect -461 -386 -403 -380
+rect -269 -346 -211 -340
+rect -269 -380 -257 -346
+rect -223 -380 -211 -346
+rect -269 -386 -211 -380
+rect -77 -346 -19 -340
+rect -77 -380 -65 -346
+rect -31 -380 -19 -346
+rect -77 -386 -19 -380
+rect 115 -346 173 -340
+rect 115 -380 127 -346
+rect 161 -380 173 -346
+rect 115 -386 173 -380
+rect 307 -346 365 -340
+rect 307 -380 319 -346
+rect 353 -380 365 -346
+rect 307 -386 365 -380
+rect -503 -430 -457 -418
+rect -503 -806 -497 -430
+rect -463 -806 -457 -430
+rect -503 -818 -457 -806
+rect -407 -430 -361 -418
+rect -407 -806 -401 -430
+rect -367 -806 -361 -430
+rect -407 -818 -361 -806
+rect -311 -430 -265 -418
+rect -311 -806 -305 -430
+rect -271 -806 -265 -430
+rect -311 -818 -265 -806
+rect -215 -430 -169 -418
+rect -215 -806 -209 -430
+rect -175 -806 -169 -430
+rect -215 -818 -169 -806
+rect -119 -430 -73 -418
+rect -119 -806 -113 -430
+rect -79 -806 -73 -430
+rect -119 -818 -73 -806
+rect -23 -430 23 -418
+rect -23 -806 -17 -430
+rect 17 -806 23 -430
+rect -23 -818 23 -806
+rect 73 -430 119 -418
+rect 73 -806 79 -430
+rect 113 -806 119 -430
+rect 73 -818 119 -806
+rect 169 -430 215 -418
+rect 169 -806 175 -430
+rect 209 -806 215 -430
+rect 169 -818 215 -806
+rect 265 -430 311 -418
+rect 265 -806 271 -430
+rect 305 -806 311 -430
+rect 265 -818 311 -806
+rect 361 -430 407 -418
+rect 361 -806 367 -430
+rect 401 -806 407 -430
+rect 361 -818 407 -806
+rect 457 -430 503 -418
+rect 457 -806 463 -430
+rect 497 -806 503 -430
+rect 457 -818 503 -806
+rect -365 -856 -307 -850
+rect -365 -890 -353 -856
+rect -319 -890 -307 -856
+rect -365 -896 -307 -890
+rect -173 -856 -115 -850
+rect -173 -890 -161 -856
+rect -127 -890 -115 -856
+rect -173 -896 -115 -890
+rect 19 -856 77 -850
+rect 19 -890 31 -856
+rect 65 -890 77 -856
+rect 19 -896 77 -890
+rect 211 -856 269 -850
+rect 211 -890 223 -856
+rect 257 -890 269 -856
+rect 211 -896 269 -890
+rect 403 -856 461 -850
+rect 403 -890 415 -856
+rect 449 -890 461 -856
+rect 403 -896 461 -890
+rect -365 -964 -307 -958
+rect -365 -998 -353 -964
+rect -319 -998 -307 -964
+rect -365 -1004 -307 -998
+rect -173 -964 -115 -958
+rect -173 -998 -161 -964
+rect -127 -998 -115 -964
+rect -173 -1004 -115 -998
+rect 19 -964 77 -958
+rect 19 -998 31 -964
+rect 65 -998 77 -964
+rect 19 -1004 77 -998
+rect 211 -964 269 -958
+rect 211 -998 223 -964
+rect 257 -998 269 -964
+rect 211 -1004 269 -998
+rect 403 -964 461 -958
+rect 403 -998 415 -964
+rect 449 -998 461 -964
+rect 403 -1004 461 -998
+rect -503 -1048 -457 -1036
+rect -503 -1424 -497 -1048
+rect -463 -1424 -457 -1048
+rect -503 -1436 -457 -1424
+rect -407 -1048 -361 -1036
+rect -407 -1424 -401 -1048
+rect -367 -1424 -361 -1048
+rect -407 -1436 -361 -1424
+rect -311 -1048 -265 -1036
+rect -311 -1424 -305 -1048
+rect -271 -1424 -265 -1048
+rect -311 -1436 -265 -1424
+rect -215 -1048 -169 -1036
+rect -215 -1424 -209 -1048
+rect -175 -1424 -169 -1048
+rect -215 -1436 -169 -1424
+rect -119 -1048 -73 -1036
+rect -119 -1424 -113 -1048
+rect -79 -1424 -73 -1048
+rect -119 -1436 -73 -1424
+rect -23 -1048 23 -1036
+rect -23 -1424 -17 -1048
+rect 17 -1424 23 -1048
+rect -23 -1436 23 -1424
+rect 73 -1048 119 -1036
+rect 73 -1424 79 -1048
+rect 113 -1424 119 -1048
+rect 73 -1436 119 -1424
+rect 169 -1048 215 -1036
+rect 169 -1424 175 -1048
+rect 209 -1424 215 -1048
+rect 169 -1436 215 -1424
+rect 265 -1048 311 -1036
+rect 265 -1424 271 -1048
+rect 305 -1424 311 -1048
+rect 265 -1436 311 -1424
+rect 361 -1048 407 -1036
+rect 361 -1424 367 -1048
+rect 401 -1424 407 -1048
+rect 361 -1436 407 -1424
+rect 457 -1048 503 -1036
+rect 457 -1424 463 -1048
+rect 497 -1424 503 -1048
+rect 457 -1436 503 -1424
+rect -461 -1474 -403 -1468
+rect -461 -1508 -449 -1474
+rect -415 -1508 -403 -1474
+rect -461 -1514 -403 -1508
+rect -269 -1474 -211 -1468
+rect -269 -1508 -257 -1474
+rect -223 -1508 -211 -1474
+rect -269 -1514 -211 -1508
+rect -77 -1474 -19 -1468
+rect -77 -1508 -65 -1474
+rect -31 -1508 -19 -1474
+rect -77 -1514 -19 -1508
+rect 115 -1474 173 -1468
+rect 115 -1508 127 -1474
+rect 161 -1508 173 -1474
+rect 115 -1514 173 -1508
+rect 307 -1474 365 -1468
+rect 307 -1508 319 -1474
+rect 353 -1508 365 -1474
+rect 307 -1514 365 -1508
+<< properties >>
+string FIXED_BBOX -594 -1593 594 1593
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 5 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.ext b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.ext
new file mode 100644
index 0000000..761696a
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.ext
@@ -0,0 +1,153 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_679_n509#" 982 155.602 679 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n509#" 982 12.8088 561 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n509#" 982 12.8088 443 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n509#" 982 12.8088 325 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n509#" 982 12.8088 207 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n509#" 982 12.8088 89 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n509#" 982 12.8088 -29 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n509#" 982 12.8088 -147 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n509#" 982 12.8088 -265 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n509#" 982 12.8088 -383 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n509#" 982 12.8088 -501 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n509#" 982 12.8088 -619 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n509#" 982 155.602 -737 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_n597#" 559 183.408 616 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n597#" 559 121.396 498 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n597#" 559 121.396 380 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n597#" 559 121.396 262 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n597#" 559 121.396 144 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n597#" 559 121.396 26 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n597#" 559 121.396 -92 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n597#" 559 121.396 -210 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n597#" 559 121.396 -328 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n597#" 559 121.396 -446 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n597#" 559 121.396 -564 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n597#" 559 183.92 -682 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_679_109#" 982 155.731 679 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_109#" 982 12.9375 561 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_109#" 982 12.9375 443 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_109#" 982 12.9375 325 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 982 12.9375 207 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_109#" 982 12.9375 89 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_109#" 982 12.9375 -29 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_109#" 982 12.9375 -147 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_109#" 982 12.9375 -265 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_109#" 982 12.9375 -383 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_109#" 982 12.9375 -501 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_109#" 982 12.9375 -619 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_109#" 982 155.731 -737 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_21#" 559 183.615 616 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_21#" 559 121.602 498 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_21#" 559 121.602 380 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_21#" 559 121.602 262 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_21#" 559 121.602 144 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_21#" 559 121.602 26 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_21#" 559 121.602 -92 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_21#" 559 121.602 -210 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_21#" 559 121.602 -328 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_21#" 559 121.602 -446 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_21#" 559 121.602 -564 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_21#" 559 184.127 -682 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35352 1296 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+substrate "a_n839_n683#" 0 0 -839 -683 ppd 0 0 0 0 0 0 0 0 0 0 202368 11904 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 202368 11904 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n682_21#" "a_n564_21#" 149.246
+cap "a_n328_n597#" "a_n328_21#" 93.1126
+cap "a_n619_n509#" "a_n501_n509#" 341
+cap "a_n29_109#" "a_n29_n509#" 12.3196
+cap "a_443_109#" "a_561_109#" 341
+cap "a_325_109#" "a_325_n509#" 12.3196
+cap "a_89_n509#" "a_207_n509#" 341
+cap "a_144_n597#" "a_262_n597#" 149.246
+cap "a_n446_n597#" "a_n564_n597#" 149.246
+cap "a_n265_n509#" "a_n265_109#" 12.3196
+cap "a_26_21#" "a_144_21#" 149.246
+cap "a_n446_n597#" "a_n446_21#" 93.1126
+cap "a_262_21#" "a_144_21#" 149.246
+cap "a_n210_n597#" "a_n92_n597#" 149.246
+cap "a_n737_n509#" "a_n619_n509#" 341
+cap "a_n383_n509#" "a_n265_n509#" 341
+cap "a_380_n597#" "a_498_n597#" 149.246
+cap "a_325_109#" "a_443_109#" 341
+cap "a_n29_n509#" "a_89_n509#" 341
+cap "a_26_n597#" "a_144_n597#" 149.246
+cap "a_498_21#" "a_380_21#" 149.246
+cap "a_561_n509#" "a_443_n509#" 341
+cap "a_n619_109#" "a_n501_109#" 341
+cap "a_n328_n597#" "a_n210_n597#" 149.246
+cap "a_n210_21#" "a_n92_21#" 149.246
+cap "a_n147_n509#" "a_n29_n509#" 341
+cap "a_n619_109#" "a_n619_n509#" 12.3196
+cap "a_561_109#" "a_561_n509#" 12.3196
+cap "a_561_109#" "a_679_109#" 341
+cap "a_n446_n597#" "a_n328_n597#" 149.246
+cap "a_498_n597#" "a_498_21#" 93.1126
+cap "a_498_n597#" "a_616_n597#" 149.246
+cap "a_262_n597#" "a_262_21#" 93.1126
+cap "a_616_21#" "a_616_n597#" 93.1126
+cap "a_616_21#" "a_498_21#" 149.246
+cap "a_n328_21#" "a_n210_21#" 149.246
+cap "a_89_109#" "a_207_109#" 341
+cap "a_n265_n509#" "a_n147_n509#" 341
+cap "a_n737_109#" "a_n737_n509#" 12.3196
+cap "a_262_21#" "a_380_21#" 149.246
+cap "a_n265_109#" "a_n147_109#" 341
+cap "a_n29_109#" "a_n147_109#" 341
+cap "a_26_21#" "a_n92_21#" 149.246
+cap "a_26_n597#" "a_26_21#" 93.1126
+cap "a_n446_21#" "a_n328_21#" 149.246
+cap "a_n29_109#" "a_89_109#" 341
+cap "a_n383_109#" "a_n265_109#" 341
+cap "a_n92_n597#" "a_n92_21#" 93.1126
+cap "a_26_n597#" "a_n92_n597#" 149.246
+cap "a_n682_n597#" "a_n564_n597#" 149.246
+cap "a_207_109#" "a_207_n509#" 12.3196
+cap "a_144_n597#" "a_144_21#" 93.1126
+cap "a_n383_n509#" "a_n383_109#" 12.3196
+cap "a_n564_21#" "a_n564_n597#" 93.1126
+cap "a_325_n509#" "a_443_n509#" 341
+cap "a_n737_109#" "a_n619_109#" 341
+cap "a_561_n509#" "a_679_n509#" 341
+cap "a_n501_109#" "a_n383_109#" 341
+cap "a_679_109#" "a_679_n509#" 12.3196
+cap "a_n564_21#" "a_n446_21#" 149.246
+cap "a_n210_n597#" "a_n210_21#" 93.1126
+cap "a_n501_n509#" "a_n383_n509#" 341
+cap "a_325_109#" "a_207_109#" 341
+cap "a_89_109#" "a_89_n509#" 12.3196
+cap "a_443_109#" "a_443_n509#" 12.3196
+cap "a_n501_n509#" "a_n501_109#" 12.3196
+cap "a_n682_21#" "a_n682_n597#" 93.1126
+cap "a_207_n509#" "a_325_n509#" 341
+cap "a_262_n597#" "a_380_n597#" 149.246
+cap "a_380_n597#" "a_380_21#" 93.1126
+cap "a_n147_n509#" "a_n147_109#" 12.3196
+device msubckt sky130_fd_pr__nfet_01v8_lvt 619 -509 620 -508 l=60 w=400 "a_n839_n683#" "a_616_n597#" 120 0 "a_561_n509#" 400 0 "a_679_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 501 -509 502 -508 l=60 w=400 "a_n839_n683#" "a_498_n597#" 120 0 "a_443_n509#" 400 0 "a_561_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 383 -509 384 -508 l=60 w=400 "a_n839_n683#" "a_380_n597#" 120 0 "a_325_n509#" 400 0 "a_443_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 265 -509 266 -508 l=60 w=400 "a_n839_n683#" "a_262_n597#" 120 0 "a_207_n509#" 400 0 "a_325_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 147 -509 148 -508 l=60 w=400 "a_n839_n683#" "a_144_n597#" 120 0 "a_89_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 -509 30 -508 l=60 w=400 "a_n839_n683#" "a_26_n597#" 120 0 "a_n29_n509#" 400 0 "a_89_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -89 -509 -88 -508 l=60 w=400 "a_n839_n683#" "a_n92_n597#" 120 0 "a_n147_n509#" 400 0 "a_n29_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -509 -206 -508 l=60 w=400 "a_n839_n683#" "a_n210_n597#" 120 0 "a_n265_n509#" 400 0 "a_n147_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -325 -509 -324 -508 l=60 w=400 "a_n839_n683#" "a_n328_n597#" 120 0 "a_n383_n509#" 400 0 "a_n265_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -443 -509 -442 -508 l=60 w=400 "a_n839_n683#" "a_n446_n597#" 120 0 "a_n501_n509#" 400 0 "a_n383_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -561 -509 -560 -508 l=60 w=400 "a_n839_n683#" "a_n564_n597#" 120 0 "a_n619_n509#" 400 0 "a_n501_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -679 -509 -678 -508 l=60 w=400 "a_n839_n683#" "a_n682_n597#" 120 0 "a_n737_n509#" 400 0 "a_n619_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 619 109 620 110 l=60 w=400 "a_n839_n683#" "a_616_21#" 120 0 "a_561_109#" 400 0 "a_679_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 501 109 502 110 l=60 w=400 "a_n839_n683#" "a_498_21#" 120 0 "a_443_109#" 400 0 "a_561_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 383 109 384 110 l=60 w=400 "a_n839_n683#" "a_380_21#" 120 0 "a_325_109#" 400 0 "a_443_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 265 109 266 110 l=60 w=400 "a_n839_n683#" "a_262_21#" 120 0 "a_207_109#" 400 0 "a_325_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 147 109 148 110 l=60 w=400 "a_n839_n683#" "a_144_21#" 120 0 "a_89_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29 109 30 110 l=60 w=400 "a_n839_n683#" "a_26_21#" 120 0 "a_n29_109#" 400 0 "a_89_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -89 109 -88 110 l=60 w=400 "a_n839_n683#" "a_n92_21#" 120 0 "a_n147_109#" 400 0 "a_n29_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 109 -206 110 l=60 w=400 "a_n839_n683#" "a_n210_21#" 120 0 "a_n265_109#" 400 0 "a_n147_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -325 109 -324 110 l=60 w=400 "a_n839_n683#" "a_n328_21#" 120 0 "a_n383_109#" 400 0 "a_n265_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -443 109 -442 110 l=60 w=400 "a_n839_n683#" "a_n446_21#" 120 0 "a_n501_109#" 400 0 "a_n383_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -561 109 -560 110 l=60 w=400 "a_n839_n683#" "a_n564_21#" 120 0 "a_n619_109#" 400 0 "a_n501_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -679 109 -678 110 l=60 w=400 "a_n839_n683#" "a_n682_21#" 120 0 "a_n737_109#" 400 0 "a_n619_109#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.mag b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.mag
new file mode 100644
index 0000000..36dc2e4
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9.mag
@@ -0,0 +1,1147 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -678 581 -620 587
+rect -560 581 -502 587
+rect -442 581 -384 587
+rect -324 581 -266 587
+rect -206 581 -148 587
+rect -88 581 -30 587
+rect 30 581 88 587
+rect 148 581 206 587
+rect 266 581 324 587
+rect 384 581 442 587
+rect 502 581 560 587
+rect 620 581 678 587
+rect -678 547 -666 581
+rect -560 547 -548 581
+rect -442 547 -430 581
+rect -324 547 -312 581
+rect -206 547 -194 581
+rect -88 547 -76 581
+rect 30 547 42 581
+rect 148 547 160 581
+rect 266 547 278 581
+rect 384 547 396 581
+rect 502 547 514 581
+rect 620 547 632 581
+rect -678 541 -620 547
+rect -560 541 -502 547
+rect -442 541 -384 547
+rect -324 541 -266 547
+rect -206 541 -148 547
+rect -88 541 -30 547
+rect 30 541 88 547
+rect 148 541 206 547
+rect 266 541 324 547
+rect 384 541 442 547
+rect 502 541 560 547
+rect 620 541 678 547
+rect -678 71 -620 77
+rect -560 71 -502 77
+rect -442 71 -384 77
+rect -324 71 -266 77
+rect -206 71 -148 77
+rect -88 71 -30 77
+rect 30 71 88 77
+rect 148 71 206 77
+rect 266 71 324 77
+rect 384 71 442 77
+rect 502 71 560 77
+rect 620 71 678 77
+rect -678 37 -666 71
+rect -560 37 -548 71
+rect -442 37 -430 71
+rect -324 37 -312 71
+rect -206 37 -194 71
+rect -88 37 -76 71
+rect 30 37 42 71
+rect 148 37 160 71
+rect 266 37 278 71
+rect 384 37 396 71
+rect 502 37 514 71
+rect 620 37 632 71
+rect -678 31 -620 37
+rect -560 31 -502 37
+rect -442 31 -384 37
+rect -324 31 -266 37
+rect -206 31 -148 37
+rect -88 31 -30 37
+rect 30 31 88 37
+rect 148 31 206 37
+rect 266 31 324 37
+rect 384 31 442 37
+rect 502 31 560 37
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -560 -37 -502 -31
+rect -442 -37 -384 -31
+rect -324 -37 -266 -31
+rect -206 -37 -148 -31
+rect -88 -37 -30 -31
+rect 30 -37 88 -31
+rect 148 -37 206 -31
+rect 266 -37 324 -31
+rect 384 -37 442 -31
+rect 502 -37 560 -31
+rect 620 -37 678 -31
+rect -678 -71 -666 -37
+rect -560 -71 -548 -37
+rect -442 -71 -430 -37
+rect -324 -71 -312 -37
+rect -206 -71 -194 -37
+rect -88 -71 -76 -37
+rect 30 -71 42 -37
+rect 148 -71 160 -37
+rect 266 -71 278 -37
+rect 384 -71 396 -37
+rect 502 -71 514 -37
+rect 620 -71 632 -37
+rect -678 -77 -620 -71
+rect -560 -77 -502 -71
+rect -442 -77 -384 -71
+rect -324 -77 -266 -71
+rect -206 -77 -148 -71
+rect -88 -77 -30 -71
+rect 30 -77 88 -71
+rect 148 -77 206 -71
+rect 266 -77 324 -71
+rect 384 -77 442 -71
+rect 502 -77 560 -71
+rect 620 -77 678 -71
+rect -678 -547 -620 -541
+rect -560 -547 -502 -541
+rect -442 -547 -384 -541
+rect -324 -547 -266 -541
+rect -206 -547 -148 -541
+rect -88 -547 -30 -541
+rect 30 -547 88 -541
+rect 148 -547 206 -541
+rect 266 -547 324 -541
+rect 384 -547 442 -541
+rect 502 -547 560 -541
+rect 620 -547 678 -541
+rect -678 -581 -666 -547
+rect -560 -581 -548 -547
+rect -442 -581 -430 -547
+rect -324 -581 -312 -547
+rect -206 -581 -194 -547
+rect -88 -581 -76 -547
+rect 30 -581 42 -547
+rect 148 -581 160 -547
+rect 266 -581 278 -547
+rect 384 -581 396 -547
+rect 502 -581 514 -547
+rect 620 -581 632 -547
+rect -678 -587 -620 -581
+rect -560 -587 -502 -581
+rect -442 -587 -384 -581
+rect -324 -587 -266 -581
+rect -206 -587 -148 -581
+rect -88 -587 -30 -581
+rect 30 -587 88 -581
+rect 148 -587 206 -581
+rect 266 -587 324 -581
+rect 384 -587 442 -581
+rect 502 -587 560 -581
+rect 620 -587 678 -581
+<< pwell >>
+rect -875 -719 875 719
+<< nmoslvt >>
+rect -679 109 -619 509
+rect -561 109 -501 509
+rect -443 109 -383 509
+rect -325 109 -265 509
+rect -207 109 -147 509
+rect -89 109 -29 509
+rect 29 109 89 509
+rect 147 109 207 509
+rect 265 109 325 509
+rect 383 109 443 509
+rect 501 109 561 509
+rect 619 109 679 509
+rect -679 -509 -619 -109
+rect -561 -509 -501 -109
+rect -443 -509 -383 -109
+rect -325 -509 -265 -109
+rect -207 -509 -147 -109
+rect -89 -509 -29 -109
+rect 29 -509 89 -109
+rect 147 -509 207 -109
+rect 265 -509 325 -109
+rect 383 -509 443 -109
+rect 501 -509 561 -109
+rect 619 -509 679 -109
+<< ndiff >>
+rect -737 497 -679 509
+rect -737 121 -725 497
+rect -691 121 -679 497
+rect -737 109 -679 121
+rect -619 497 -561 509
+rect -619 121 -607 497
+rect -573 121 -561 497
+rect -619 109 -561 121
+rect -501 497 -443 509
+rect -501 121 -489 497
+rect -455 121 -443 497
+rect -501 109 -443 121
+rect -383 497 -325 509
+rect -383 121 -371 497
+rect -337 121 -325 497
+rect -383 109 -325 121
+rect -265 497 -207 509
+rect -265 121 -253 497
+rect -219 121 -207 497
+rect -265 109 -207 121
+rect -147 497 -89 509
+rect -147 121 -135 497
+rect -101 121 -89 497
+rect -147 109 -89 121
+rect -29 497 29 509
+rect -29 121 -17 497
+rect 17 121 29 497
+rect -29 109 29 121
+rect 89 497 147 509
+rect 89 121 101 497
+rect 135 121 147 497
+rect 89 109 147 121
+rect 207 497 265 509
+rect 207 121 219 497
+rect 253 121 265 497
+rect 207 109 265 121
+rect 325 497 383 509
+rect 325 121 337 497
+rect 371 121 383 497
+rect 325 109 383 121
+rect 443 497 501 509
+rect 443 121 455 497
+rect 489 121 501 497
+rect 443 109 501 121
+rect 561 497 619 509
+rect 561 121 573 497
+rect 607 121 619 497
+rect 561 109 619 121
+rect 679 497 737 509
+rect 679 121 691 497
+rect 725 121 737 497
+rect 679 109 737 121
+rect -737 -121 -679 -109
+rect -737 -497 -725 -121
+rect -691 -497 -679 -121
+rect -737 -509 -679 -497
+rect -619 -121 -561 -109
+rect -619 -497 -607 -121
+rect -573 -497 -561 -121
+rect -619 -509 -561 -497
+rect -501 -121 -443 -109
+rect -501 -497 -489 -121
+rect -455 -497 -443 -121
+rect -501 -509 -443 -497
+rect -383 -121 -325 -109
+rect -383 -497 -371 -121
+rect -337 -497 -325 -121
+rect -383 -509 -325 -497
+rect -265 -121 -207 -109
+rect -265 -497 -253 -121
+rect -219 -497 -207 -121
+rect -265 -509 -207 -497
+rect -147 -121 -89 -109
+rect -147 -497 -135 -121
+rect -101 -497 -89 -121
+rect -147 -509 -89 -497
+rect -29 -121 29 -109
+rect -29 -497 -17 -121
+rect 17 -497 29 -121
+rect -29 -509 29 -497
+rect 89 -121 147 -109
+rect 89 -497 101 -121
+rect 135 -497 147 -121
+rect 89 -509 147 -497
+rect 207 -121 265 -109
+rect 207 -497 219 -121
+rect 253 -497 265 -121
+rect 207 -509 265 -497
+rect 325 -121 383 -109
+rect 325 -497 337 -121
+rect 371 -497 383 -121
+rect 325 -509 383 -497
+rect 443 -121 501 -109
+rect 443 -497 455 -121
+rect 489 -497 501 -121
+rect 443 -509 501 -497
+rect 561 -121 619 -109
+rect 561 -497 573 -121
+rect 607 -497 619 -121
+rect 561 -509 619 -497
+rect 679 -121 737 -109
+rect 679 -497 691 -121
+rect 725 -497 737 -121
+rect 679 -509 737 -497
+<< ndiffc >>
+rect -725 121 -691 497
+rect -607 121 -573 497
+rect -489 121 -455 497
+rect -371 121 -337 497
+rect -253 121 -219 497
+rect -135 121 -101 497
+rect -17 121 17 497
+rect 101 121 135 497
+rect 219 121 253 497
+rect 337 121 371 497
+rect 455 121 489 497
+rect 573 121 607 497
+rect 691 121 725 497
+rect -725 -497 -691 -121
+rect -607 -497 -573 -121
+rect -489 -497 -455 -121
+rect -371 -497 -337 -121
+rect -253 -497 -219 -121
+rect -135 -497 -101 -121
+rect -17 -497 17 -121
+rect 101 -497 135 -121
+rect 219 -497 253 -121
+rect 337 -497 371 -121
+rect 455 -497 489 -121
+rect 573 -497 607 -121
+rect 691 -497 725 -121
+<< psubdiff >>
+rect -839 649 -743 683
+rect 743 649 839 683
+rect -839 587 -805 649
+rect 805 587 839 649
+rect -839 -649 -805 -587
+rect 805 -649 839 -587
+rect -839 -683 -743 -649
+rect 743 -683 839 -649
+<< psubdiffcont >>
+rect -743 649 743 683
+rect -839 -587 -805 587
+rect 805 -587 839 587
+rect -743 -683 743 -649
+<< poly >>
+rect -682 581 -616 597
+rect -682 547 -666 581
+rect -632 547 -616 581
+rect -682 531 -616 547
+rect -564 581 -498 597
+rect -564 547 -548 581
+rect -514 547 -498 581
+rect -564 531 -498 547
+rect -446 581 -380 597
+rect -446 547 -430 581
+rect -396 547 -380 581
+rect -446 531 -380 547
+rect -328 581 -262 597
+rect -328 547 -312 581
+rect -278 547 -262 581
+rect -328 531 -262 547
+rect -210 581 -144 597
+rect -210 547 -194 581
+rect -160 547 -144 581
+rect -210 531 -144 547
+rect -92 581 -26 597
+rect -92 547 -76 581
+rect -42 547 -26 581
+rect -92 531 -26 547
+rect 26 581 92 597
+rect 26 547 42 581
+rect 76 547 92 581
+rect 26 531 92 547
+rect 144 581 210 597
+rect 144 547 160 581
+rect 194 547 210 581
+rect 144 531 210 547
+rect 262 581 328 597
+rect 262 547 278 581
+rect 312 547 328 581
+rect 262 531 328 547
+rect 380 581 446 597
+rect 380 547 396 581
+rect 430 547 446 581
+rect 380 531 446 547
+rect 498 581 564 597
+rect 498 547 514 581
+rect 548 547 564 581
+rect 498 531 564 547
+rect 616 581 682 597
+rect 616 547 632 581
+rect 666 547 682 581
+rect 616 531 682 547
+rect -679 509 -619 531
+rect -561 509 -501 531
+rect -443 509 -383 531
+rect -325 509 -265 531
+rect -207 509 -147 531
+rect -89 509 -29 531
+rect 29 509 89 531
+rect 147 509 207 531
+rect 265 509 325 531
+rect 383 509 443 531
+rect 501 509 561 531
+rect 619 509 679 531
+rect -679 87 -619 109
+rect -561 87 -501 109
+rect -443 87 -383 109
+rect -325 87 -265 109
+rect -207 87 -147 109
+rect -89 87 -29 109
+rect 29 87 89 109
+rect 147 87 207 109
+rect 265 87 325 109
+rect 383 87 443 109
+rect 501 87 561 109
+rect 619 87 679 109
+rect -682 71 -616 87
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -682 21 -616 37
+rect -564 71 -498 87
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -564 21 -498 37
+rect -446 71 -380 87
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -446 21 -380 37
+rect -328 71 -262 87
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -328 21 -262 37
+rect -210 71 -144 87
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -210 21 -144 37
+rect -92 71 -26 87
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect -92 21 -26 37
+rect 26 71 92 87
+rect 26 37 42 71
+rect 76 37 92 71
+rect 26 21 92 37
+rect 144 71 210 87
+rect 144 37 160 71
+rect 194 37 210 71
+rect 144 21 210 37
+rect 262 71 328 87
+rect 262 37 278 71
+rect 312 37 328 71
+rect 262 21 328 37
+rect 380 71 446 87
+rect 380 37 396 71
+rect 430 37 446 71
+rect 380 21 446 37
+rect 498 71 564 87
+rect 498 37 514 71
+rect 548 37 564 71
+rect 498 21 564 37
+rect 616 71 682 87
+rect 616 37 632 71
+rect 666 37 682 71
+rect 616 21 682 37
+rect -682 -37 -616 -21
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -682 -87 -616 -71
+rect -564 -37 -498 -21
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -564 -87 -498 -71
+rect -446 -37 -380 -21
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -446 -87 -380 -71
+rect -328 -37 -262 -21
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -328 -87 -262 -71
+rect -210 -37 -144 -21
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -210 -87 -144 -71
+rect -92 -37 -26 -21
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect -92 -87 -26 -71
+rect 26 -37 92 -21
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 26 -87 92 -71
+rect 144 -37 210 -21
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 144 -87 210 -71
+rect 262 -37 328 -21
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 262 -87 328 -71
+rect 380 -37 446 -21
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 380 -87 446 -71
+rect 498 -37 564 -21
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 498 -87 564 -71
+rect 616 -37 682 -21
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect 616 -87 682 -71
+rect -679 -109 -619 -87
+rect -561 -109 -501 -87
+rect -443 -109 -383 -87
+rect -325 -109 -265 -87
+rect -207 -109 -147 -87
+rect -89 -109 -29 -87
+rect 29 -109 89 -87
+rect 147 -109 207 -87
+rect 265 -109 325 -87
+rect 383 -109 443 -87
+rect 501 -109 561 -87
+rect 619 -109 679 -87
+rect -679 -531 -619 -509
+rect -561 -531 -501 -509
+rect -443 -531 -383 -509
+rect -325 -531 -265 -509
+rect -207 -531 -147 -509
+rect -89 -531 -29 -509
+rect 29 -531 89 -509
+rect 147 -531 207 -509
+rect 265 -531 325 -509
+rect 383 -531 443 -509
+rect 501 -531 561 -509
+rect 619 -531 679 -509
+rect -682 -547 -616 -531
+rect -682 -581 -666 -547
+rect -632 -581 -616 -547
+rect -682 -597 -616 -581
+rect -564 -547 -498 -531
+rect -564 -581 -548 -547
+rect -514 -581 -498 -547
+rect -564 -597 -498 -581
+rect -446 -547 -380 -531
+rect -446 -581 -430 -547
+rect -396 -581 -380 -547
+rect -446 -597 -380 -581
+rect -328 -547 -262 -531
+rect -328 -581 -312 -547
+rect -278 -581 -262 -547
+rect -328 -597 -262 -581
+rect -210 -547 -144 -531
+rect -210 -581 -194 -547
+rect -160 -581 -144 -547
+rect -210 -597 -144 -581
+rect -92 -547 -26 -531
+rect -92 -581 -76 -547
+rect -42 -581 -26 -547
+rect -92 -597 -26 -581
+rect 26 -547 92 -531
+rect 26 -581 42 -547
+rect 76 -581 92 -547
+rect 26 -597 92 -581
+rect 144 -547 210 -531
+rect 144 -581 160 -547
+rect 194 -581 210 -547
+rect 144 -597 210 -581
+rect 262 -547 328 -531
+rect 262 -581 278 -547
+rect 312 -581 328 -547
+rect 262 -597 328 -581
+rect 380 -547 446 -531
+rect 380 -581 396 -547
+rect 430 -581 446 -547
+rect 380 -597 446 -581
+rect 498 -547 564 -531
+rect 498 -581 514 -547
+rect 548 -581 564 -547
+rect 498 -597 564 -581
+rect 616 -547 682 -531
+rect 616 -581 632 -547
+rect 666 -581 682 -547
+rect 616 -597 682 -581
+<< polycont >>
+rect -666 547 -632 581
+rect -548 547 -514 581
+rect -430 547 -396 581
+rect -312 547 -278 581
+rect -194 547 -160 581
+rect -76 547 -42 581
+rect 42 547 76 581
+rect 160 547 194 581
+rect 278 547 312 581
+rect 396 547 430 581
+rect 514 547 548 581
+rect 632 547 666 581
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -666 -581 -632 -547
+rect -548 -581 -514 -547
+rect -430 -581 -396 -547
+rect -312 -581 -278 -547
+rect -194 -581 -160 -547
+rect -76 -581 -42 -547
+rect 42 -581 76 -547
+rect 160 -581 194 -547
+rect 278 -581 312 -547
+rect 396 -581 430 -547
+rect 514 -581 548 -547
+rect 632 -581 666 -547
+<< locali >>
+rect -839 649 -743 683
+rect 743 649 839 683
+rect -839 587 -805 649
+rect 805 587 839 649
+rect -682 547 -666 581
+rect -632 547 -616 581
+rect -564 547 -548 581
+rect -514 547 -498 581
+rect -446 547 -430 581
+rect -396 547 -380 581
+rect -328 547 -312 581
+rect -278 547 -262 581
+rect -210 547 -194 581
+rect -160 547 -144 581
+rect -92 547 -76 581
+rect -42 547 -26 581
+rect 26 547 42 581
+rect 76 547 92 581
+rect 144 547 160 581
+rect 194 547 210 581
+rect 262 547 278 581
+rect 312 547 328 581
+rect 380 547 396 581
+rect 430 547 446 581
+rect 498 547 514 581
+rect 548 547 564 581
+rect 616 547 632 581
+rect 666 547 682 581
+rect -725 497 -691 513
+rect -725 105 -691 121
+rect -607 497 -573 513
+rect -607 105 -573 121
+rect -489 497 -455 513
+rect -489 105 -455 121
+rect -371 497 -337 513
+rect -371 105 -337 121
+rect -253 497 -219 513
+rect -253 105 -219 121
+rect -135 497 -101 513
+rect -135 105 -101 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 101 497 135 513
+rect 101 105 135 121
+rect 219 497 253 513
+rect 219 105 253 121
+rect 337 497 371 513
+rect 337 105 371 121
+rect 455 497 489 513
+rect 455 105 489 121
+rect 573 497 607 513
+rect 573 105 607 121
+rect 691 497 725 513
+rect 691 105 725 121
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect 26 37 42 71
+rect 76 37 92 71
+rect 144 37 160 71
+rect 194 37 210 71
+rect 262 37 278 71
+rect 312 37 328 71
+rect 380 37 396 71
+rect 430 37 446 71
+rect 498 37 514 71
+rect 548 37 564 71
+rect 616 37 632 71
+rect 666 37 682 71
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect -725 -121 -691 -105
+rect -725 -513 -691 -497
+rect -607 -121 -573 -105
+rect -607 -513 -573 -497
+rect -489 -121 -455 -105
+rect -489 -513 -455 -497
+rect -371 -121 -337 -105
+rect -371 -513 -337 -497
+rect -253 -121 -219 -105
+rect -253 -513 -219 -497
+rect -135 -121 -101 -105
+rect -135 -513 -101 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 101 -121 135 -105
+rect 101 -513 135 -497
+rect 219 -121 253 -105
+rect 219 -513 253 -497
+rect 337 -121 371 -105
+rect 337 -513 371 -497
+rect 455 -121 489 -105
+rect 455 -513 489 -497
+rect 573 -121 607 -105
+rect 573 -513 607 -497
+rect 691 -121 725 -105
+rect 691 -513 725 -497
+rect -682 -581 -666 -547
+rect -632 -581 -616 -547
+rect -564 -581 -548 -547
+rect -514 -581 -498 -547
+rect -446 -581 -430 -547
+rect -396 -581 -380 -547
+rect -328 -581 -312 -547
+rect -278 -581 -262 -547
+rect -210 -581 -194 -547
+rect -160 -581 -144 -547
+rect -92 -581 -76 -547
+rect -42 -581 -26 -547
+rect 26 -581 42 -547
+rect 76 -581 92 -547
+rect 144 -581 160 -547
+rect 194 -581 210 -547
+rect 262 -581 278 -547
+rect 312 -581 328 -547
+rect 380 -581 396 -547
+rect 430 -581 446 -547
+rect 498 -581 514 -547
+rect 548 -581 564 -547
+rect 616 -581 632 -547
+rect 666 -581 682 -547
+rect -839 -649 -805 -587
+rect 805 -649 839 -587
+rect -839 -683 -743 -649
+rect 743 -683 839 -649
+<< viali >>
+rect -666 547 -632 581
+rect -548 547 -514 581
+rect -430 547 -396 581
+rect -312 547 -278 581
+rect -194 547 -160 581
+rect -76 547 -42 581
+rect 42 547 76 581
+rect 160 547 194 581
+rect 278 547 312 581
+rect 396 547 430 581
+rect 514 547 548 581
+rect 632 547 666 581
+rect -725 121 -691 497
+rect -607 121 -573 497
+rect -489 121 -455 497
+rect -371 121 -337 497
+rect -253 121 -219 497
+rect -135 121 -101 497
+rect -17 121 17 497
+rect 101 121 135 497
+rect 219 121 253 497
+rect 337 121 371 497
+rect 455 121 489 497
+rect 573 121 607 497
+rect 691 121 725 497
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -725 -497 -691 -121
+rect -607 -497 -573 -121
+rect -489 -497 -455 -121
+rect -371 -497 -337 -121
+rect -253 -497 -219 -121
+rect -135 -497 -101 -121
+rect -17 -497 17 -121
+rect 101 -497 135 -121
+rect 219 -497 253 -121
+rect 337 -497 371 -121
+rect 455 -497 489 -121
+rect 573 -497 607 -121
+rect 691 -497 725 -121
+rect -666 -581 -632 -547
+rect -548 -581 -514 -547
+rect -430 -581 -396 -547
+rect -312 -581 -278 -547
+rect -194 -581 -160 -547
+rect -76 -581 -42 -547
+rect 42 -581 76 -547
+rect 160 -581 194 -547
+rect 278 -581 312 -547
+rect 396 -581 430 -547
+rect 514 -581 548 -547
+rect 632 -581 666 -547
+<< metal1 >>
+rect -678 581 -620 587
+rect -678 547 -666 581
+rect -632 547 -620 581
+rect -678 541 -620 547
+rect -560 581 -502 587
+rect -560 547 -548 581
+rect -514 547 -502 581
+rect -560 541 -502 547
+rect -442 581 -384 587
+rect -442 547 -430 581
+rect -396 547 -384 581
+rect -442 541 -384 547
+rect -324 581 -266 587
+rect -324 547 -312 581
+rect -278 547 -266 581
+rect -324 541 -266 547
+rect -206 581 -148 587
+rect -206 547 -194 581
+rect -160 547 -148 581
+rect -206 541 -148 547
+rect -88 581 -30 587
+rect -88 547 -76 581
+rect -42 547 -30 581
+rect -88 541 -30 547
+rect 30 581 88 587
+rect 30 547 42 581
+rect 76 547 88 581
+rect 30 541 88 547
+rect 148 581 206 587
+rect 148 547 160 581
+rect 194 547 206 581
+rect 148 541 206 547
+rect 266 581 324 587
+rect 266 547 278 581
+rect 312 547 324 581
+rect 266 541 324 547
+rect 384 581 442 587
+rect 384 547 396 581
+rect 430 547 442 581
+rect 384 541 442 547
+rect 502 581 560 587
+rect 502 547 514 581
+rect 548 547 560 581
+rect 502 541 560 547
+rect 620 581 678 587
+rect 620 547 632 581
+rect 666 547 678 581
+rect 620 541 678 547
+rect -731 497 -685 509
+rect -731 121 -725 497
+rect -691 121 -685 497
+rect -731 109 -685 121
+rect -613 497 -567 509
+rect -613 121 -607 497
+rect -573 121 -567 497
+rect -613 109 -567 121
+rect -495 497 -449 509
+rect -495 121 -489 497
+rect -455 121 -449 497
+rect -495 109 -449 121
+rect -377 497 -331 509
+rect -377 121 -371 497
+rect -337 121 -331 497
+rect -377 109 -331 121
+rect -259 497 -213 509
+rect -259 121 -253 497
+rect -219 121 -213 497
+rect -259 109 -213 121
+rect -141 497 -95 509
+rect -141 121 -135 497
+rect -101 121 -95 497
+rect -141 109 -95 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 95 497 141 509
+rect 95 121 101 497
+rect 135 121 141 497
+rect 95 109 141 121
+rect 213 497 259 509
+rect 213 121 219 497
+rect 253 121 259 497
+rect 213 109 259 121
+rect 331 497 377 509
+rect 331 121 337 497
+rect 371 121 377 497
+rect 331 109 377 121
+rect 449 497 495 509
+rect 449 121 455 497
+rect 489 121 495 497
+rect 449 109 495 121
+rect 567 497 613 509
+rect 567 121 573 497
+rect 607 121 613 497
+rect 567 109 613 121
+rect 685 497 731 509
+rect 685 121 691 497
+rect 725 121 731 497
+rect 685 109 731 121
+rect -678 71 -620 77
+rect -678 37 -666 71
+rect -632 37 -620 71
+rect -678 31 -620 37
+rect -560 71 -502 77
+rect -560 37 -548 71
+rect -514 37 -502 71
+rect -560 31 -502 37
+rect -442 71 -384 77
+rect -442 37 -430 71
+rect -396 37 -384 71
+rect -442 31 -384 37
+rect -324 71 -266 77
+rect -324 37 -312 71
+rect -278 37 -266 71
+rect -324 31 -266 37
+rect -206 71 -148 77
+rect -206 37 -194 71
+rect -160 37 -148 71
+rect -206 31 -148 37
+rect -88 71 -30 77
+rect -88 37 -76 71
+rect -42 37 -30 71
+rect -88 31 -30 37
+rect 30 71 88 77
+rect 30 37 42 71
+rect 76 37 88 71
+rect 30 31 88 37
+rect 148 71 206 77
+rect 148 37 160 71
+rect 194 37 206 71
+rect 148 31 206 37
+rect 266 71 324 77
+rect 266 37 278 71
+rect 312 37 324 71
+rect 266 31 324 37
+rect 384 71 442 77
+rect 384 37 396 71
+rect 430 37 442 71
+rect 384 31 442 37
+rect 502 71 560 77
+rect 502 37 514 71
+rect 548 37 560 71
+rect 502 31 560 37
+rect 620 71 678 77
+rect 620 37 632 71
+rect 666 37 678 71
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -678 -71 -666 -37
+rect -632 -71 -620 -37
+rect -678 -77 -620 -71
+rect -560 -37 -502 -31
+rect -560 -71 -548 -37
+rect -514 -71 -502 -37
+rect -560 -77 -502 -71
+rect -442 -37 -384 -31
+rect -442 -71 -430 -37
+rect -396 -71 -384 -37
+rect -442 -77 -384 -71
+rect -324 -37 -266 -31
+rect -324 -71 -312 -37
+rect -278 -71 -266 -37
+rect -324 -77 -266 -71
+rect -206 -37 -148 -31
+rect -206 -71 -194 -37
+rect -160 -71 -148 -37
+rect -206 -77 -148 -71
+rect -88 -37 -30 -31
+rect -88 -71 -76 -37
+rect -42 -71 -30 -37
+rect -88 -77 -30 -71
+rect 30 -37 88 -31
+rect 30 -71 42 -37
+rect 76 -71 88 -37
+rect 30 -77 88 -71
+rect 148 -37 206 -31
+rect 148 -71 160 -37
+rect 194 -71 206 -37
+rect 148 -77 206 -71
+rect 266 -37 324 -31
+rect 266 -71 278 -37
+rect 312 -71 324 -37
+rect 266 -77 324 -71
+rect 384 -37 442 -31
+rect 384 -71 396 -37
+rect 430 -71 442 -37
+rect 384 -77 442 -71
+rect 502 -37 560 -31
+rect 502 -71 514 -37
+rect 548 -71 560 -37
+rect 502 -77 560 -71
+rect 620 -37 678 -31
+rect 620 -71 632 -37
+rect 666 -71 678 -37
+rect 620 -77 678 -71
+rect -731 -121 -685 -109
+rect -731 -497 -725 -121
+rect -691 -497 -685 -121
+rect -731 -509 -685 -497
+rect -613 -121 -567 -109
+rect -613 -497 -607 -121
+rect -573 -497 -567 -121
+rect -613 -509 -567 -497
+rect -495 -121 -449 -109
+rect -495 -497 -489 -121
+rect -455 -497 -449 -121
+rect -495 -509 -449 -497
+rect -377 -121 -331 -109
+rect -377 -497 -371 -121
+rect -337 -497 -331 -121
+rect -377 -509 -331 -497
+rect -259 -121 -213 -109
+rect -259 -497 -253 -121
+rect -219 -497 -213 -121
+rect -259 -509 -213 -497
+rect -141 -121 -95 -109
+rect -141 -497 -135 -121
+rect -101 -497 -95 -121
+rect -141 -509 -95 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 95 -121 141 -109
+rect 95 -497 101 -121
+rect 135 -497 141 -121
+rect 95 -509 141 -497
+rect 213 -121 259 -109
+rect 213 -497 219 -121
+rect 253 -497 259 -121
+rect 213 -509 259 -497
+rect 331 -121 377 -109
+rect 331 -497 337 -121
+rect 371 -497 377 -121
+rect 331 -509 377 -497
+rect 449 -121 495 -109
+rect 449 -497 455 -121
+rect 489 -497 495 -121
+rect 449 -509 495 -497
+rect 567 -121 613 -109
+rect 567 -497 573 -121
+rect 607 -497 613 -121
+rect 567 -509 613 -497
+rect 685 -121 731 -109
+rect 685 -497 691 -121
+rect 725 -497 731 -121
+rect 685 -509 731 -497
+rect -678 -547 -620 -541
+rect -678 -581 -666 -547
+rect -632 -581 -620 -547
+rect -678 -587 -620 -581
+rect -560 -547 -502 -541
+rect -560 -581 -548 -547
+rect -514 -581 -502 -547
+rect -560 -587 -502 -581
+rect -442 -547 -384 -541
+rect -442 -581 -430 -547
+rect -396 -581 -384 -547
+rect -442 -587 -384 -581
+rect -324 -547 -266 -541
+rect -324 -581 -312 -547
+rect -278 -581 -266 -547
+rect -324 -587 -266 -581
+rect -206 -547 -148 -541
+rect -206 -581 -194 -547
+rect -160 -581 -148 -547
+rect -206 -587 -148 -581
+rect -88 -547 -30 -541
+rect -88 -581 -76 -547
+rect -42 -581 -30 -547
+rect -88 -587 -30 -581
+rect 30 -547 88 -541
+rect 30 -581 42 -547
+rect 76 -581 88 -547
+rect 30 -587 88 -581
+rect 148 -547 206 -541
+rect 148 -581 160 -547
+rect 194 -581 206 -547
+rect 148 -587 206 -581
+rect 266 -547 324 -541
+rect 266 -581 278 -547
+rect 312 -581 324 -547
+rect 266 -587 324 -581
+rect 384 -547 442 -541
+rect 384 -581 396 -547
+rect 430 -581 442 -547
+rect 384 -587 442 -581
+rect 502 -547 560 -541
+rect 502 -581 514 -547
+rect 548 -581 560 -547
+rect 502 -587 560 -581
+rect 620 -547 678 -541
+rect 620 -581 632 -547
+rect 666 -581 678 -547
+rect 620 -587 678 -581
+<< properties >>
+string FIXED_BBOX -822 -666 822 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.3 m 2 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_8D7BRH.mag b/mag/lvds/sky130_fd_pr__pfet_01v8_8D7BRH.mag
new file mode 100644
index 0000000..7d76708
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_8D7BRH.mag
@@ -0,0 +1,2767 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654606386
+<< error_p >>
+rect -2141 599 -2083 605
+rect -1949 599 -1891 605
+rect -1757 599 -1699 605
+rect -1565 599 -1507 605
+rect -1373 599 -1315 605
+rect -1181 599 -1123 605
+rect -989 599 -931 605
+rect -797 599 -739 605
+rect -605 599 -547 605
+rect -413 599 -355 605
+rect -221 599 -163 605
+rect -29 599 29 605
+rect 163 599 221 605
+rect 355 599 413 605
+rect 547 599 605 605
+rect 739 599 797 605
+rect 931 599 989 605
+rect 1123 599 1181 605
+rect 1315 599 1373 605
+rect 1507 599 1565 605
+rect 1699 599 1757 605
+rect 1891 599 1949 605
+rect 2083 599 2141 605
+rect -2141 565 -2129 599
+rect -1949 565 -1937 599
+rect -1757 565 -1745 599
+rect -1565 565 -1553 599
+rect -1373 565 -1361 599
+rect -1181 565 -1169 599
+rect -989 565 -977 599
+rect -797 565 -785 599
+rect -605 565 -593 599
+rect -413 565 -401 599
+rect -221 565 -209 599
+rect -29 565 -17 599
+rect 163 565 175 599
+rect 355 565 367 599
+rect 547 565 559 599
+rect 739 565 751 599
+rect 931 565 943 599
+rect 1123 565 1135 599
+rect 1315 565 1327 599
+rect 1507 565 1519 599
+rect 1699 565 1711 599
+rect 1891 565 1903 599
+rect 2083 565 2095 599
+rect -2141 559 -2083 565
+rect -1949 559 -1891 565
+rect -1757 559 -1699 565
+rect -1565 559 -1507 565
+rect -1373 559 -1315 565
+rect -1181 559 -1123 565
+rect -989 559 -931 565
+rect -797 559 -739 565
+rect -605 559 -547 565
+rect -413 559 -355 565
+rect -221 559 -163 565
+rect -29 559 29 565
+rect 163 559 221 565
+rect 355 559 413 565
+rect 547 559 605 565
+rect 739 559 797 565
+rect 931 559 989 565
+rect 1123 559 1181 565
+rect 1315 559 1373 565
+rect 1507 559 1565 565
+rect 1699 559 1757 565
+rect 1891 559 1949 565
+rect 2083 559 2141 565
+rect -2045 71 -1987 77
+rect -1853 71 -1795 77
+rect -1661 71 -1603 77
+rect -1469 71 -1411 77
+rect -1277 71 -1219 77
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect 1219 71 1277 77
+rect 1411 71 1469 77
+rect 1603 71 1661 77
+rect 1795 71 1853 77
+rect 1987 71 2045 77
+rect -2045 37 -2033 71
+rect -1853 37 -1841 71
+rect -1661 37 -1649 71
+rect -1469 37 -1457 71
+rect -1277 37 -1265 71
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect 1219 37 1231 71
+rect 1411 37 1423 71
+rect 1603 37 1615 71
+rect 1795 37 1807 71
+rect 1987 37 1999 71
+rect -2045 31 -1987 37
+rect -1853 31 -1795 37
+rect -1661 31 -1603 37
+rect -1469 31 -1411 37
+rect -1277 31 -1219 37
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect 1219 31 1277 37
+rect 1411 31 1469 37
+rect 1603 31 1661 37
+rect 1795 31 1853 37
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -1853 -37 -1795 -31
+rect -1661 -37 -1603 -31
+rect -1469 -37 -1411 -31
+rect -1277 -37 -1219 -31
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect 1219 -37 1277 -31
+rect 1411 -37 1469 -31
+rect 1603 -37 1661 -31
+rect 1795 -37 1853 -31
+rect 1987 -37 2045 -31
+rect -2045 -71 -2033 -37
+rect -1853 -71 -1841 -37
+rect -1661 -71 -1649 -37
+rect -1469 -71 -1457 -37
+rect -1277 -71 -1265 -37
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect 1219 -71 1231 -37
+rect 1411 -71 1423 -37
+rect 1603 -71 1615 -37
+rect 1795 -71 1807 -37
+rect 1987 -71 1999 -37
+rect -2045 -77 -1987 -71
+rect -1853 -77 -1795 -71
+rect -1661 -77 -1603 -71
+rect -1469 -77 -1411 -71
+rect -1277 -77 -1219 -71
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect 1219 -77 1277 -71
+rect 1411 -77 1469 -71
+rect 1603 -77 1661 -71
+rect 1795 -77 1853 -71
+rect 1987 -77 2045 -71
+rect -2141 -565 -2083 -559
+rect -1949 -565 -1891 -559
+rect -1757 -565 -1699 -559
+rect -1565 -565 -1507 -559
+rect -1373 -565 -1315 -559
+rect -1181 -565 -1123 -559
+rect -989 -565 -931 -559
+rect -797 -565 -739 -559
+rect -605 -565 -547 -559
+rect -413 -565 -355 -559
+rect -221 -565 -163 -559
+rect -29 -565 29 -559
+rect 163 -565 221 -559
+rect 355 -565 413 -559
+rect 547 -565 605 -559
+rect 739 -565 797 -559
+rect 931 -565 989 -559
+rect 1123 -565 1181 -559
+rect 1315 -565 1373 -559
+rect 1507 -565 1565 -559
+rect 1699 -565 1757 -559
+rect 1891 -565 1949 -559
+rect 2083 -565 2141 -559
+rect -2141 -599 -2129 -565
+rect -1949 -599 -1937 -565
+rect -1757 -599 -1745 -565
+rect -1565 -599 -1553 -565
+rect -1373 -599 -1361 -565
+rect -1181 -599 -1169 -565
+rect -989 -599 -977 -565
+rect -797 -599 -785 -565
+rect -605 -599 -593 -565
+rect -413 -599 -401 -565
+rect -221 -599 -209 -565
+rect -29 -599 -17 -565
+rect 163 -599 175 -565
+rect 355 -599 367 -565
+rect 547 -599 559 -565
+rect 739 -599 751 -565
+rect 931 -599 943 -565
+rect 1123 -599 1135 -565
+rect 1315 -599 1327 -565
+rect 1507 -599 1519 -565
+rect 1699 -599 1711 -565
+rect 1891 -599 1903 -565
+rect 2083 -599 2095 -565
+rect -2141 -605 -2083 -599
+rect -1949 -605 -1891 -599
+rect -1757 -605 -1699 -599
+rect -1565 -605 -1507 -599
+rect -1373 -605 -1315 -599
+rect -1181 -605 -1123 -599
+rect -989 -605 -931 -599
+rect -797 -605 -739 -599
+rect -605 -605 -547 -599
+rect -413 -605 -355 -599
+rect -221 -605 -163 -599
+rect -29 -605 29 -599
+rect 163 -605 221 -599
+rect 355 -605 413 -599
+rect 547 -605 605 -599
+rect 739 -605 797 -599
+rect 931 -605 989 -599
+rect 1123 -605 1181 -599
+rect 1315 -605 1373 -599
+rect 1507 -605 1565 -599
+rect 1699 -605 1757 -599
+rect 1891 -605 1949 -599
+rect 2083 -605 2141 -599
+<< nwell >>
+rect -2327 -737 2327 737
+<< pmos >>
+rect -2127 118 -2097 518
+rect -2031 118 -2001 518
+rect -1935 118 -1905 518
+rect -1839 118 -1809 518
+rect -1743 118 -1713 518
+rect -1647 118 -1617 518
+rect -1551 118 -1521 518
+rect -1455 118 -1425 518
+rect -1359 118 -1329 518
+rect -1263 118 -1233 518
+rect -1167 118 -1137 518
+rect -1071 118 -1041 518
+rect -975 118 -945 518
+rect -879 118 -849 518
+rect -783 118 -753 518
+rect -687 118 -657 518
+rect -591 118 -561 518
+rect -495 118 -465 518
+rect -399 118 -369 518
+rect -303 118 -273 518
+rect -207 118 -177 518
+rect -111 118 -81 518
+rect -15 118 15 518
+rect 81 118 111 518
+rect 177 118 207 518
+rect 273 118 303 518
+rect 369 118 399 518
+rect 465 118 495 518
+rect 561 118 591 518
+rect 657 118 687 518
+rect 753 118 783 518
+rect 849 118 879 518
+rect 945 118 975 518
+rect 1041 118 1071 518
+rect 1137 118 1167 518
+rect 1233 118 1263 518
+rect 1329 118 1359 518
+rect 1425 118 1455 518
+rect 1521 118 1551 518
+rect 1617 118 1647 518
+rect 1713 118 1743 518
+rect 1809 118 1839 518
+rect 1905 118 1935 518
+rect 2001 118 2031 518
+rect 2097 118 2127 518
+rect -2127 -518 -2097 -118
+rect -2031 -518 -2001 -118
+rect -1935 -518 -1905 -118
+rect -1839 -518 -1809 -118
+rect -1743 -518 -1713 -118
+rect -1647 -518 -1617 -118
+rect -1551 -518 -1521 -118
+rect -1455 -518 -1425 -118
+rect -1359 -518 -1329 -118
+rect -1263 -518 -1233 -118
+rect -1167 -518 -1137 -118
+rect -1071 -518 -1041 -118
+rect -975 -518 -945 -118
+rect -879 -518 -849 -118
+rect -783 -518 -753 -118
+rect -687 -518 -657 -118
+rect -591 -518 -561 -118
+rect -495 -518 -465 -118
+rect -399 -518 -369 -118
+rect -303 -518 -273 -118
+rect -207 -518 -177 -118
+rect -111 -518 -81 -118
+rect -15 -518 15 -118
+rect 81 -518 111 -118
+rect 177 -518 207 -118
+rect 273 -518 303 -118
+rect 369 -518 399 -118
+rect 465 -518 495 -118
+rect 561 -518 591 -118
+rect 657 -518 687 -118
+rect 753 -518 783 -118
+rect 849 -518 879 -118
+rect 945 -518 975 -118
+rect 1041 -518 1071 -118
+rect 1137 -518 1167 -118
+rect 1233 -518 1263 -118
+rect 1329 -518 1359 -118
+rect 1425 -518 1455 -118
+rect 1521 -518 1551 -118
+rect 1617 -518 1647 -118
+rect 1713 -518 1743 -118
+rect 1809 -518 1839 -118
+rect 1905 -518 1935 -118
+rect 2001 -518 2031 -118
+rect 2097 -518 2127 -118
+<< pdiff >>
+rect -2189 506 -2127 518
+rect -2189 130 -2177 506
+rect -2143 130 -2127 506
+rect -2189 118 -2127 130
+rect -2097 506 -2031 518
+rect -2097 130 -2081 506
+rect -2047 130 -2031 506
+rect -2097 118 -2031 130
+rect -2001 506 -1935 518
+rect -2001 130 -1985 506
+rect -1951 130 -1935 506
+rect -2001 118 -1935 130
+rect -1905 506 -1839 518
+rect -1905 130 -1889 506
+rect -1855 130 -1839 506
+rect -1905 118 -1839 130
+rect -1809 506 -1743 518
+rect -1809 130 -1793 506
+rect -1759 130 -1743 506
+rect -1809 118 -1743 130
+rect -1713 506 -1647 518
+rect -1713 130 -1697 506
+rect -1663 130 -1647 506
+rect -1713 118 -1647 130
+rect -1617 506 -1551 518
+rect -1617 130 -1601 506
+rect -1567 130 -1551 506
+rect -1617 118 -1551 130
+rect -1521 506 -1455 518
+rect -1521 130 -1505 506
+rect -1471 130 -1455 506
+rect -1521 118 -1455 130
+rect -1425 506 -1359 518
+rect -1425 130 -1409 506
+rect -1375 130 -1359 506
+rect -1425 118 -1359 130
+rect -1329 506 -1263 518
+rect -1329 130 -1313 506
+rect -1279 130 -1263 506
+rect -1329 118 -1263 130
+rect -1233 506 -1167 518
+rect -1233 130 -1217 506
+rect -1183 130 -1167 506
+rect -1233 118 -1167 130
+rect -1137 506 -1071 518
+rect -1137 130 -1121 506
+rect -1087 130 -1071 506
+rect -1137 118 -1071 130
+rect -1041 506 -975 518
+rect -1041 130 -1025 506
+rect -991 130 -975 506
+rect -1041 118 -975 130
+rect -945 506 -879 518
+rect -945 130 -929 506
+rect -895 130 -879 506
+rect -945 118 -879 130
+rect -849 506 -783 518
+rect -849 130 -833 506
+rect -799 130 -783 506
+rect -849 118 -783 130
+rect -753 506 -687 518
+rect -753 130 -737 506
+rect -703 130 -687 506
+rect -753 118 -687 130
+rect -657 506 -591 518
+rect -657 130 -641 506
+rect -607 130 -591 506
+rect -657 118 -591 130
+rect -561 506 -495 518
+rect -561 130 -545 506
+rect -511 130 -495 506
+rect -561 118 -495 130
+rect -465 506 -399 518
+rect -465 130 -449 506
+rect -415 130 -399 506
+rect -465 118 -399 130
+rect -369 506 -303 518
+rect -369 130 -353 506
+rect -319 130 -303 506
+rect -369 118 -303 130
+rect -273 506 -207 518
+rect -273 130 -257 506
+rect -223 130 -207 506
+rect -273 118 -207 130
+rect -177 506 -111 518
+rect -177 130 -161 506
+rect -127 130 -111 506
+rect -177 118 -111 130
+rect -81 506 -15 518
+rect -81 130 -65 506
+rect -31 130 -15 506
+rect -81 118 -15 130
+rect 15 506 81 518
+rect 15 130 31 506
+rect 65 130 81 506
+rect 15 118 81 130
+rect 111 506 177 518
+rect 111 130 127 506
+rect 161 130 177 506
+rect 111 118 177 130
+rect 207 506 273 518
+rect 207 130 223 506
+rect 257 130 273 506
+rect 207 118 273 130
+rect 303 506 369 518
+rect 303 130 319 506
+rect 353 130 369 506
+rect 303 118 369 130
+rect 399 506 465 518
+rect 399 130 415 506
+rect 449 130 465 506
+rect 399 118 465 130
+rect 495 506 561 518
+rect 495 130 511 506
+rect 545 130 561 506
+rect 495 118 561 130
+rect 591 506 657 518
+rect 591 130 607 506
+rect 641 130 657 506
+rect 591 118 657 130
+rect 687 506 753 518
+rect 687 130 703 506
+rect 737 130 753 506
+rect 687 118 753 130
+rect 783 506 849 518
+rect 783 130 799 506
+rect 833 130 849 506
+rect 783 118 849 130
+rect 879 506 945 518
+rect 879 130 895 506
+rect 929 130 945 506
+rect 879 118 945 130
+rect 975 506 1041 518
+rect 975 130 991 506
+rect 1025 130 1041 506
+rect 975 118 1041 130
+rect 1071 506 1137 518
+rect 1071 130 1087 506
+rect 1121 130 1137 506
+rect 1071 118 1137 130
+rect 1167 506 1233 518
+rect 1167 130 1183 506
+rect 1217 130 1233 506
+rect 1167 118 1233 130
+rect 1263 506 1329 518
+rect 1263 130 1279 506
+rect 1313 130 1329 506
+rect 1263 118 1329 130
+rect 1359 506 1425 518
+rect 1359 130 1375 506
+rect 1409 130 1425 506
+rect 1359 118 1425 130
+rect 1455 506 1521 518
+rect 1455 130 1471 506
+rect 1505 130 1521 506
+rect 1455 118 1521 130
+rect 1551 506 1617 518
+rect 1551 130 1567 506
+rect 1601 130 1617 506
+rect 1551 118 1617 130
+rect 1647 506 1713 518
+rect 1647 130 1663 506
+rect 1697 130 1713 506
+rect 1647 118 1713 130
+rect 1743 506 1809 518
+rect 1743 130 1759 506
+rect 1793 130 1809 506
+rect 1743 118 1809 130
+rect 1839 506 1905 518
+rect 1839 130 1855 506
+rect 1889 130 1905 506
+rect 1839 118 1905 130
+rect 1935 506 2001 518
+rect 1935 130 1951 506
+rect 1985 130 2001 506
+rect 1935 118 2001 130
+rect 2031 506 2097 518
+rect 2031 130 2047 506
+rect 2081 130 2097 506
+rect 2031 118 2097 130
+rect 2127 506 2189 518
+rect 2127 130 2143 506
+rect 2177 130 2189 506
+rect 2127 118 2189 130
+rect -2189 -130 -2127 -118
+rect -2189 -506 -2177 -130
+rect -2143 -506 -2127 -130
+rect -2189 -518 -2127 -506
+rect -2097 -130 -2031 -118
+rect -2097 -506 -2081 -130
+rect -2047 -506 -2031 -130
+rect -2097 -518 -2031 -506
+rect -2001 -130 -1935 -118
+rect -2001 -506 -1985 -130
+rect -1951 -506 -1935 -130
+rect -2001 -518 -1935 -506
+rect -1905 -130 -1839 -118
+rect -1905 -506 -1889 -130
+rect -1855 -506 -1839 -130
+rect -1905 -518 -1839 -506
+rect -1809 -130 -1743 -118
+rect -1809 -506 -1793 -130
+rect -1759 -506 -1743 -130
+rect -1809 -518 -1743 -506
+rect -1713 -130 -1647 -118
+rect -1713 -506 -1697 -130
+rect -1663 -506 -1647 -130
+rect -1713 -518 -1647 -506
+rect -1617 -130 -1551 -118
+rect -1617 -506 -1601 -130
+rect -1567 -506 -1551 -130
+rect -1617 -518 -1551 -506
+rect -1521 -130 -1455 -118
+rect -1521 -506 -1505 -130
+rect -1471 -506 -1455 -130
+rect -1521 -518 -1455 -506
+rect -1425 -130 -1359 -118
+rect -1425 -506 -1409 -130
+rect -1375 -506 -1359 -130
+rect -1425 -518 -1359 -506
+rect -1329 -130 -1263 -118
+rect -1329 -506 -1313 -130
+rect -1279 -506 -1263 -130
+rect -1329 -518 -1263 -506
+rect -1233 -130 -1167 -118
+rect -1233 -506 -1217 -130
+rect -1183 -506 -1167 -130
+rect -1233 -518 -1167 -506
+rect -1137 -130 -1071 -118
+rect -1137 -506 -1121 -130
+rect -1087 -506 -1071 -130
+rect -1137 -518 -1071 -506
+rect -1041 -130 -975 -118
+rect -1041 -506 -1025 -130
+rect -991 -506 -975 -130
+rect -1041 -518 -975 -506
+rect -945 -130 -879 -118
+rect -945 -506 -929 -130
+rect -895 -506 -879 -130
+rect -945 -518 -879 -506
+rect -849 -130 -783 -118
+rect -849 -506 -833 -130
+rect -799 -506 -783 -130
+rect -849 -518 -783 -506
+rect -753 -130 -687 -118
+rect -753 -506 -737 -130
+rect -703 -506 -687 -130
+rect -753 -518 -687 -506
+rect -657 -130 -591 -118
+rect -657 -506 -641 -130
+rect -607 -506 -591 -130
+rect -657 -518 -591 -506
+rect -561 -130 -495 -118
+rect -561 -506 -545 -130
+rect -511 -506 -495 -130
+rect -561 -518 -495 -506
+rect -465 -130 -399 -118
+rect -465 -506 -449 -130
+rect -415 -506 -399 -130
+rect -465 -518 -399 -506
+rect -369 -130 -303 -118
+rect -369 -506 -353 -130
+rect -319 -506 -303 -130
+rect -369 -518 -303 -506
+rect -273 -130 -207 -118
+rect -273 -506 -257 -130
+rect -223 -506 -207 -130
+rect -273 -518 -207 -506
+rect -177 -130 -111 -118
+rect -177 -506 -161 -130
+rect -127 -506 -111 -130
+rect -177 -518 -111 -506
+rect -81 -130 -15 -118
+rect -81 -506 -65 -130
+rect -31 -506 -15 -130
+rect -81 -518 -15 -506
+rect 15 -130 81 -118
+rect 15 -506 31 -130
+rect 65 -506 81 -130
+rect 15 -518 81 -506
+rect 111 -130 177 -118
+rect 111 -506 127 -130
+rect 161 -506 177 -130
+rect 111 -518 177 -506
+rect 207 -130 273 -118
+rect 207 -506 223 -130
+rect 257 -506 273 -130
+rect 207 -518 273 -506
+rect 303 -130 369 -118
+rect 303 -506 319 -130
+rect 353 -506 369 -130
+rect 303 -518 369 -506
+rect 399 -130 465 -118
+rect 399 -506 415 -130
+rect 449 -506 465 -130
+rect 399 -518 465 -506
+rect 495 -130 561 -118
+rect 495 -506 511 -130
+rect 545 -506 561 -130
+rect 495 -518 561 -506
+rect 591 -130 657 -118
+rect 591 -506 607 -130
+rect 641 -506 657 -130
+rect 591 -518 657 -506
+rect 687 -130 753 -118
+rect 687 -506 703 -130
+rect 737 -506 753 -130
+rect 687 -518 753 -506
+rect 783 -130 849 -118
+rect 783 -506 799 -130
+rect 833 -506 849 -130
+rect 783 -518 849 -506
+rect 879 -130 945 -118
+rect 879 -506 895 -130
+rect 929 -506 945 -130
+rect 879 -518 945 -506
+rect 975 -130 1041 -118
+rect 975 -506 991 -130
+rect 1025 -506 1041 -130
+rect 975 -518 1041 -506
+rect 1071 -130 1137 -118
+rect 1071 -506 1087 -130
+rect 1121 -506 1137 -130
+rect 1071 -518 1137 -506
+rect 1167 -130 1233 -118
+rect 1167 -506 1183 -130
+rect 1217 -506 1233 -130
+rect 1167 -518 1233 -506
+rect 1263 -130 1329 -118
+rect 1263 -506 1279 -130
+rect 1313 -506 1329 -130
+rect 1263 -518 1329 -506
+rect 1359 -130 1425 -118
+rect 1359 -506 1375 -130
+rect 1409 -506 1425 -130
+rect 1359 -518 1425 -506
+rect 1455 -130 1521 -118
+rect 1455 -506 1471 -130
+rect 1505 -506 1521 -130
+rect 1455 -518 1521 -506
+rect 1551 -130 1617 -118
+rect 1551 -506 1567 -130
+rect 1601 -506 1617 -130
+rect 1551 -518 1617 -506
+rect 1647 -130 1713 -118
+rect 1647 -506 1663 -130
+rect 1697 -506 1713 -130
+rect 1647 -518 1713 -506
+rect 1743 -130 1809 -118
+rect 1743 -506 1759 -130
+rect 1793 -506 1809 -130
+rect 1743 -518 1809 -506
+rect 1839 -130 1905 -118
+rect 1839 -506 1855 -130
+rect 1889 -506 1905 -130
+rect 1839 -518 1905 -506
+rect 1935 -130 2001 -118
+rect 1935 -506 1951 -130
+rect 1985 -506 2001 -130
+rect 1935 -518 2001 -506
+rect 2031 -130 2097 -118
+rect 2031 -506 2047 -130
+rect 2081 -506 2097 -130
+rect 2031 -518 2097 -506
+rect 2127 -130 2189 -118
+rect 2127 -506 2143 -130
+rect 2177 -506 2189 -130
+rect 2127 -518 2189 -506
+<< pdiffc >>
+rect -2177 130 -2143 506
+rect -2081 130 -2047 506
+rect -1985 130 -1951 506
+rect -1889 130 -1855 506
+rect -1793 130 -1759 506
+rect -1697 130 -1663 506
+rect -1601 130 -1567 506
+rect -1505 130 -1471 506
+rect -1409 130 -1375 506
+rect -1313 130 -1279 506
+rect -1217 130 -1183 506
+rect -1121 130 -1087 506
+rect -1025 130 -991 506
+rect -929 130 -895 506
+rect -833 130 -799 506
+rect -737 130 -703 506
+rect -641 130 -607 506
+rect -545 130 -511 506
+rect -449 130 -415 506
+rect -353 130 -319 506
+rect -257 130 -223 506
+rect -161 130 -127 506
+rect -65 130 -31 506
+rect 31 130 65 506
+rect 127 130 161 506
+rect 223 130 257 506
+rect 319 130 353 506
+rect 415 130 449 506
+rect 511 130 545 506
+rect 607 130 641 506
+rect 703 130 737 506
+rect 799 130 833 506
+rect 895 130 929 506
+rect 991 130 1025 506
+rect 1087 130 1121 506
+rect 1183 130 1217 506
+rect 1279 130 1313 506
+rect 1375 130 1409 506
+rect 1471 130 1505 506
+rect 1567 130 1601 506
+rect 1663 130 1697 506
+rect 1759 130 1793 506
+rect 1855 130 1889 506
+rect 1951 130 1985 506
+rect 2047 130 2081 506
+rect 2143 130 2177 506
+rect -2177 -506 -2143 -130
+rect -2081 -506 -2047 -130
+rect -1985 -506 -1951 -130
+rect -1889 -506 -1855 -130
+rect -1793 -506 -1759 -130
+rect -1697 -506 -1663 -130
+rect -1601 -506 -1567 -130
+rect -1505 -506 -1471 -130
+rect -1409 -506 -1375 -130
+rect -1313 -506 -1279 -130
+rect -1217 -506 -1183 -130
+rect -1121 -506 -1087 -130
+rect -1025 -506 -991 -130
+rect -929 -506 -895 -130
+rect -833 -506 -799 -130
+rect -737 -506 -703 -130
+rect -641 -506 -607 -130
+rect -545 -506 -511 -130
+rect -449 -506 -415 -130
+rect -353 -506 -319 -130
+rect -257 -506 -223 -130
+rect -161 -506 -127 -130
+rect -65 -506 -31 -130
+rect 31 -506 65 -130
+rect 127 -506 161 -130
+rect 223 -506 257 -130
+rect 319 -506 353 -130
+rect 415 -506 449 -130
+rect 511 -506 545 -130
+rect 607 -506 641 -130
+rect 703 -506 737 -130
+rect 799 -506 833 -130
+rect 895 -506 929 -130
+rect 991 -506 1025 -130
+rect 1087 -506 1121 -130
+rect 1183 -506 1217 -130
+rect 1279 -506 1313 -130
+rect 1375 -506 1409 -130
+rect 1471 -506 1505 -130
+rect 1567 -506 1601 -130
+rect 1663 -506 1697 -130
+rect 1759 -506 1793 -130
+rect 1855 -506 1889 -130
+rect 1951 -506 1985 -130
+rect 2047 -506 2081 -130
+rect 2143 -506 2177 -130
+<< nsubdiff >>
+rect -2291 667 -2195 701
+rect 2195 667 2291 701
+rect -2291 605 -2257 667
+rect 2257 605 2291 667
+rect -2291 -667 -2257 -605
+rect 2257 -667 2291 -605
+rect -2291 -701 -2195 -667
+rect 2195 -701 2291 -667
+<< nsubdiffcont >>
+rect -2195 667 2195 701
+rect -2291 -605 -2257 605
+rect 2257 -605 2291 605
+rect -2195 -701 2195 -667
+<< poly >>
+rect -2145 599 -2079 615
+rect -2145 565 -2129 599
+rect -2095 565 -2079 599
+rect -2145 549 -2079 565
+rect -1953 599 -1887 615
+rect -1953 565 -1937 599
+rect -1903 565 -1887 599
+rect -1953 549 -1887 565
+rect -1761 599 -1695 615
+rect -1761 565 -1745 599
+rect -1711 565 -1695 599
+rect -1761 549 -1695 565
+rect -1569 599 -1503 615
+rect -1569 565 -1553 599
+rect -1519 565 -1503 599
+rect -1569 549 -1503 565
+rect -1377 599 -1311 615
+rect -1377 565 -1361 599
+rect -1327 565 -1311 599
+rect -1377 549 -1311 565
+rect -1185 599 -1119 615
+rect -1185 565 -1169 599
+rect -1135 565 -1119 599
+rect -1185 549 -1119 565
+rect -993 599 -927 615
+rect -993 565 -977 599
+rect -943 565 -927 599
+rect -993 549 -927 565
+rect -801 599 -735 615
+rect -801 565 -785 599
+rect -751 565 -735 599
+rect -801 549 -735 565
+rect -609 599 -543 615
+rect -609 565 -593 599
+rect -559 565 -543 599
+rect -609 549 -543 565
+rect -417 599 -351 615
+rect -417 565 -401 599
+rect -367 565 -351 599
+rect -417 549 -351 565
+rect -225 599 -159 615
+rect -225 565 -209 599
+rect -175 565 -159 599
+rect -225 549 -159 565
+rect -33 599 33 615
+rect -33 565 -17 599
+rect 17 565 33 599
+rect -33 549 33 565
+rect 159 599 225 615
+rect 159 565 175 599
+rect 209 565 225 599
+rect 159 549 225 565
+rect 351 599 417 615
+rect 351 565 367 599
+rect 401 565 417 599
+rect 351 549 417 565
+rect 543 599 609 615
+rect 543 565 559 599
+rect 593 565 609 599
+rect 543 549 609 565
+rect 735 599 801 615
+rect 735 565 751 599
+rect 785 565 801 599
+rect 735 549 801 565
+rect 927 599 993 615
+rect 927 565 943 599
+rect 977 565 993 599
+rect 927 549 993 565
+rect 1119 599 1185 615
+rect 1119 565 1135 599
+rect 1169 565 1185 599
+rect 1119 549 1185 565
+rect 1311 599 1377 615
+rect 1311 565 1327 599
+rect 1361 565 1377 599
+rect 1311 549 1377 565
+rect 1503 599 1569 615
+rect 1503 565 1519 599
+rect 1553 565 1569 599
+rect 1503 549 1569 565
+rect 1695 599 1761 615
+rect 1695 565 1711 599
+rect 1745 565 1761 599
+rect 1695 549 1761 565
+rect 1887 599 1953 615
+rect 1887 565 1903 599
+rect 1937 565 1953 599
+rect 1887 549 1953 565
+rect 2079 599 2145 615
+rect 2079 565 2095 599
+rect 2129 565 2145 599
+rect 2079 549 2145 565
+rect -2127 518 -2097 549
+rect -2031 518 -2001 544
+rect -1935 518 -1905 549
+rect -1839 518 -1809 544
+rect -1743 518 -1713 549
+rect -1647 518 -1617 544
+rect -1551 518 -1521 549
+rect -1455 518 -1425 544
+rect -1359 518 -1329 549
+rect -1263 518 -1233 544
+rect -1167 518 -1137 549
+rect -1071 518 -1041 544
+rect -975 518 -945 549
+rect -879 518 -849 544
+rect -783 518 -753 549
+rect -687 518 -657 544
+rect -591 518 -561 549
+rect -495 518 -465 544
+rect -399 518 -369 549
+rect -303 518 -273 544
+rect -207 518 -177 549
+rect -111 518 -81 544
+rect -15 518 15 549
+rect 81 518 111 544
+rect 177 518 207 549
+rect 273 518 303 544
+rect 369 518 399 549
+rect 465 518 495 544
+rect 561 518 591 549
+rect 657 518 687 544
+rect 753 518 783 549
+rect 849 518 879 544
+rect 945 518 975 549
+rect 1041 518 1071 544
+rect 1137 518 1167 549
+rect 1233 518 1263 544
+rect 1329 518 1359 549
+rect 1425 518 1455 544
+rect 1521 518 1551 549
+rect 1617 518 1647 544
+rect 1713 518 1743 549
+rect 1809 518 1839 544
+rect 1905 518 1935 549
+rect 2001 518 2031 544
+rect 2097 518 2127 549
+rect -2127 92 -2097 118
+rect -2031 87 -2001 118
+rect -1935 92 -1905 118
+rect -1839 87 -1809 118
+rect -1743 92 -1713 118
+rect -1647 87 -1617 118
+rect -1551 92 -1521 118
+rect -1455 87 -1425 118
+rect -1359 92 -1329 118
+rect -1263 87 -1233 118
+rect -1167 92 -1137 118
+rect -1071 87 -1041 118
+rect -975 92 -945 118
+rect -879 87 -849 118
+rect -783 92 -753 118
+rect -687 87 -657 118
+rect -591 92 -561 118
+rect -495 87 -465 118
+rect -399 92 -369 118
+rect -303 87 -273 118
+rect -207 92 -177 118
+rect -111 87 -81 118
+rect -15 92 15 118
+rect 81 87 111 118
+rect 177 92 207 118
+rect 273 87 303 118
+rect 369 92 399 118
+rect 465 87 495 118
+rect 561 92 591 118
+rect 657 87 687 118
+rect 753 92 783 118
+rect 849 87 879 118
+rect 945 92 975 118
+rect 1041 87 1071 118
+rect 1137 92 1167 118
+rect 1233 87 1263 118
+rect 1329 92 1359 118
+rect 1425 87 1455 118
+rect 1521 92 1551 118
+rect 1617 87 1647 118
+rect 1713 92 1743 118
+rect 1809 87 1839 118
+rect 1905 92 1935 118
+rect 2001 87 2031 118
+rect 2097 92 2127 118
+rect -2049 71 -1983 87
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -2049 21 -1983 37
+rect -1857 71 -1791 87
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1857 21 -1791 37
+rect -1665 71 -1599 87
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1665 21 -1599 37
+rect -1473 71 -1407 87
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1473 21 -1407 37
+rect -1281 71 -1215 87
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1281 21 -1215 37
+rect -1089 71 -1023 87
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect 1215 71 1281 87
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1215 21 1281 37
+rect 1407 71 1473 87
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1407 21 1473 37
+rect 1599 71 1665 87
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1599 21 1665 37
+rect 1791 71 1857 87
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1791 21 1857 37
+rect 1983 71 2049 87
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect 1983 21 2049 37
+rect -2049 -37 -1983 -21
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -2049 -87 -1983 -71
+rect -1857 -37 -1791 -21
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -1857 -87 -1791 -71
+rect -1665 -37 -1599 -21
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1665 -87 -1599 -71
+rect -1473 -37 -1407 -21
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1473 -87 -1407 -71
+rect -1281 -37 -1215 -21
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1281 -87 -1215 -71
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 1023 -87 1089 -71
+rect 1215 -37 1281 -21
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1215 -87 1281 -71
+rect 1407 -37 1473 -21
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1407 -87 1473 -71
+rect 1599 -37 1665 -21
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1599 -87 1665 -71
+rect 1791 -37 1857 -21
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1791 -87 1857 -71
+rect 1983 -37 2049 -21
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect 1983 -87 2049 -71
+rect -2127 -118 -2097 -92
+rect -2031 -118 -2001 -87
+rect -1935 -118 -1905 -92
+rect -1839 -118 -1809 -87
+rect -1743 -118 -1713 -92
+rect -1647 -118 -1617 -87
+rect -1551 -118 -1521 -92
+rect -1455 -118 -1425 -87
+rect -1359 -118 -1329 -92
+rect -1263 -118 -1233 -87
+rect -1167 -118 -1137 -92
+rect -1071 -118 -1041 -87
+rect -975 -118 -945 -92
+rect -879 -118 -849 -87
+rect -783 -118 -753 -92
+rect -687 -118 -657 -87
+rect -591 -118 -561 -92
+rect -495 -118 -465 -87
+rect -399 -118 -369 -92
+rect -303 -118 -273 -87
+rect -207 -118 -177 -92
+rect -111 -118 -81 -87
+rect -15 -118 15 -92
+rect 81 -118 111 -87
+rect 177 -118 207 -92
+rect 273 -118 303 -87
+rect 369 -118 399 -92
+rect 465 -118 495 -87
+rect 561 -118 591 -92
+rect 657 -118 687 -87
+rect 753 -118 783 -92
+rect 849 -118 879 -87
+rect 945 -118 975 -92
+rect 1041 -118 1071 -87
+rect 1137 -118 1167 -92
+rect 1233 -118 1263 -87
+rect 1329 -118 1359 -92
+rect 1425 -118 1455 -87
+rect 1521 -118 1551 -92
+rect 1617 -118 1647 -87
+rect 1713 -118 1743 -92
+rect 1809 -118 1839 -87
+rect 1905 -118 1935 -92
+rect 2001 -118 2031 -87
+rect 2097 -118 2127 -92
+rect -2127 -549 -2097 -518
+rect -2031 -544 -2001 -518
+rect -1935 -549 -1905 -518
+rect -1839 -544 -1809 -518
+rect -1743 -549 -1713 -518
+rect -1647 -544 -1617 -518
+rect -1551 -549 -1521 -518
+rect -1455 -544 -1425 -518
+rect -1359 -549 -1329 -518
+rect -1263 -544 -1233 -518
+rect -1167 -549 -1137 -518
+rect -1071 -544 -1041 -518
+rect -975 -549 -945 -518
+rect -879 -544 -849 -518
+rect -783 -549 -753 -518
+rect -687 -544 -657 -518
+rect -591 -549 -561 -518
+rect -495 -544 -465 -518
+rect -399 -549 -369 -518
+rect -303 -544 -273 -518
+rect -207 -549 -177 -518
+rect -111 -544 -81 -518
+rect -15 -549 15 -518
+rect 81 -544 111 -518
+rect 177 -549 207 -518
+rect 273 -544 303 -518
+rect 369 -549 399 -518
+rect 465 -544 495 -518
+rect 561 -549 591 -518
+rect 657 -544 687 -518
+rect 753 -549 783 -518
+rect 849 -544 879 -518
+rect 945 -549 975 -518
+rect 1041 -544 1071 -518
+rect 1137 -549 1167 -518
+rect 1233 -544 1263 -518
+rect 1329 -549 1359 -518
+rect 1425 -544 1455 -518
+rect 1521 -549 1551 -518
+rect 1617 -544 1647 -518
+rect 1713 -549 1743 -518
+rect 1809 -544 1839 -518
+rect 1905 -549 1935 -518
+rect 2001 -544 2031 -518
+rect 2097 -549 2127 -518
+rect -2145 -565 -2079 -549
+rect -2145 -599 -2129 -565
+rect -2095 -599 -2079 -565
+rect -2145 -615 -2079 -599
+rect -1953 -565 -1887 -549
+rect -1953 -599 -1937 -565
+rect -1903 -599 -1887 -565
+rect -1953 -615 -1887 -599
+rect -1761 -565 -1695 -549
+rect -1761 -599 -1745 -565
+rect -1711 -599 -1695 -565
+rect -1761 -615 -1695 -599
+rect -1569 -565 -1503 -549
+rect -1569 -599 -1553 -565
+rect -1519 -599 -1503 -565
+rect -1569 -615 -1503 -599
+rect -1377 -565 -1311 -549
+rect -1377 -599 -1361 -565
+rect -1327 -599 -1311 -565
+rect -1377 -615 -1311 -599
+rect -1185 -565 -1119 -549
+rect -1185 -599 -1169 -565
+rect -1135 -599 -1119 -565
+rect -1185 -615 -1119 -599
+rect -993 -565 -927 -549
+rect -993 -599 -977 -565
+rect -943 -599 -927 -565
+rect -993 -615 -927 -599
+rect -801 -565 -735 -549
+rect -801 -599 -785 -565
+rect -751 -599 -735 -565
+rect -801 -615 -735 -599
+rect -609 -565 -543 -549
+rect -609 -599 -593 -565
+rect -559 -599 -543 -565
+rect -609 -615 -543 -599
+rect -417 -565 -351 -549
+rect -417 -599 -401 -565
+rect -367 -599 -351 -565
+rect -417 -615 -351 -599
+rect -225 -565 -159 -549
+rect -225 -599 -209 -565
+rect -175 -599 -159 -565
+rect -225 -615 -159 -599
+rect -33 -565 33 -549
+rect -33 -599 -17 -565
+rect 17 -599 33 -565
+rect -33 -615 33 -599
+rect 159 -565 225 -549
+rect 159 -599 175 -565
+rect 209 -599 225 -565
+rect 159 -615 225 -599
+rect 351 -565 417 -549
+rect 351 -599 367 -565
+rect 401 -599 417 -565
+rect 351 -615 417 -599
+rect 543 -565 609 -549
+rect 543 -599 559 -565
+rect 593 -599 609 -565
+rect 543 -615 609 -599
+rect 735 -565 801 -549
+rect 735 -599 751 -565
+rect 785 -599 801 -565
+rect 735 -615 801 -599
+rect 927 -565 993 -549
+rect 927 -599 943 -565
+rect 977 -599 993 -565
+rect 927 -615 993 -599
+rect 1119 -565 1185 -549
+rect 1119 -599 1135 -565
+rect 1169 -599 1185 -565
+rect 1119 -615 1185 -599
+rect 1311 -565 1377 -549
+rect 1311 -599 1327 -565
+rect 1361 -599 1377 -565
+rect 1311 -615 1377 -599
+rect 1503 -565 1569 -549
+rect 1503 -599 1519 -565
+rect 1553 -599 1569 -565
+rect 1503 -615 1569 -599
+rect 1695 -565 1761 -549
+rect 1695 -599 1711 -565
+rect 1745 -599 1761 -565
+rect 1695 -615 1761 -599
+rect 1887 -565 1953 -549
+rect 1887 -599 1903 -565
+rect 1937 -599 1953 -565
+rect 1887 -615 1953 -599
+rect 2079 -565 2145 -549
+rect 2079 -599 2095 -565
+rect 2129 -599 2145 -565
+rect 2079 -615 2145 -599
+<< polycont >>
+rect -2129 565 -2095 599
+rect -1937 565 -1903 599
+rect -1745 565 -1711 599
+rect -1553 565 -1519 599
+rect -1361 565 -1327 599
+rect -1169 565 -1135 599
+rect -977 565 -943 599
+rect -785 565 -751 599
+rect -593 565 -559 599
+rect -401 565 -367 599
+rect -209 565 -175 599
+rect -17 565 17 599
+rect 175 565 209 599
+rect 367 565 401 599
+rect 559 565 593 599
+rect 751 565 785 599
+rect 943 565 977 599
+rect 1135 565 1169 599
+rect 1327 565 1361 599
+rect 1519 565 1553 599
+rect 1711 565 1745 599
+rect 1903 565 1937 599
+rect 2095 565 2129 599
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2129 -599 -2095 -565
+rect -1937 -599 -1903 -565
+rect -1745 -599 -1711 -565
+rect -1553 -599 -1519 -565
+rect -1361 -599 -1327 -565
+rect -1169 -599 -1135 -565
+rect -977 -599 -943 -565
+rect -785 -599 -751 -565
+rect -593 -599 -559 -565
+rect -401 -599 -367 -565
+rect -209 -599 -175 -565
+rect -17 -599 17 -565
+rect 175 -599 209 -565
+rect 367 -599 401 -565
+rect 559 -599 593 -565
+rect 751 -599 785 -565
+rect 943 -599 977 -565
+rect 1135 -599 1169 -565
+rect 1327 -599 1361 -565
+rect 1519 -599 1553 -565
+rect 1711 -599 1745 -565
+rect 1903 -599 1937 -565
+rect 2095 -599 2129 -565
+<< locali >>
+rect -2291 667 -2195 701
+rect 2195 667 2291 701
+rect -2291 605 -2257 667
+rect 2257 605 2291 667
+rect -2145 565 -2129 599
+rect -2095 565 -2079 599
+rect -1953 565 -1937 599
+rect -1903 565 -1887 599
+rect -1761 565 -1745 599
+rect -1711 565 -1695 599
+rect -1569 565 -1553 599
+rect -1519 565 -1503 599
+rect -1377 565 -1361 599
+rect -1327 565 -1311 599
+rect -1185 565 -1169 599
+rect -1135 565 -1119 599
+rect -993 565 -977 599
+rect -943 565 -927 599
+rect -801 565 -785 599
+rect -751 565 -735 599
+rect -609 565 -593 599
+rect -559 565 -543 599
+rect -417 565 -401 599
+rect -367 565 -351 599
+rect -225 565 -209 599
+rect -175 565 -159 599
+rect -33 565 -17 599
+rect 17 565 33 599
+rect 159 565 175 599
+rect 209 565 225 599
+rect 351 565 367 599
+rect 401 565 417 599
+rect 543 565 559 599
+rect 593 565 609 599
+rect 735 565 751 599
+rect 785 565 801 599
+rect 927 565 943 599
+rect 977 565 993 599
+rect 1119 565 1135 599
+rect 1169 565 1185 599
+rect 1311 565 1327 599
+rect 1361 565 1377 599
+rect 1503 565 1519 599
+rect 1553 565 1569 599
+rect 1695 565 1711 599
+rect 1745 565 1761 599
+rect 1887 565 1903 599
+rect 1937 565 1953 599
+rect 2079 565 2095 599
+rect 2129 565 2145 599
+rect -2177 506 -2143 522
+rect -2177 114 -2143 130
+rect -2081 506 -2047 522
+rect -2081 114 -2047 130
+rect -1985 506 -1951 522
+rect -1985 114 -1951 130
+rect -1889 506 -1855 522
+rect -1889 114 -1855 130
+rect -1793 506 -1759 522
+rect -1793 114 -1759 130
+rect -1697 506 -1663 522
+rect -1697 114 -1663 130
+rect -1601 506 -1567 522
+rect -1601 114 -1567 130
+rect -1505 506 -1471 522
+rect -1505 114 -1471 130
+rect -1409 506 -1375 522
+rect -1409 114 -1375 130
+rect -1313 506 -1279 522
+rect -1313 114 -1279 130
+rect -1217 506 -1183 522
+rect -1217 114 -1183 130
+rect -1121 506 -1087 522
+rect -1121 114 -1087 130
+rect -1025 506 -991 522
+rect -1025 114 -991 130
+rect -929 506 -895 522
+rect -929 114 -895 130
+rect -833 506 -799 522
+rect -833 114 -799 130
+rect -737 506 -703 522
+rect -737 114 -703 130
+rect -641 506 -607 522
+rect -641 114 -607 130
+rect -545 506 -511 522
+rect -545 114 -511 130
+rect -449 506 -415 522
+rect -449 114 -415 130
+rect -353 506 -319 522
+rect -353 114 -319 130
+rect -257 506 -223 522
+rect -257 114 -223 130
+rect -161 506 -127 522
+rect -161 114 -127 130
+rect -65 506 -31 522
+rect -65 114 -31 130
+rect 31 506 65 522
+rect 31 114 65 130
+rect 127 506 161 522
+rect 127 114 161 130
+rect 223 506 257 522
+rect 223 114 257 130
+rect 319 506 353 522
+rect 319 114 353 130
+rect 415 506 449 522
+rect 415 114 449 130
+rect 511 506 545 522
+rect 511 114 545 130
+rect 607 506 641 522
+rect 607 114 641 130
+rect 703 506 737 522
+rect 703 114 737 130
+rect 799 506 833 522
+rect 799 114 833 130
+rect 895 506 929 522
+rect 895 114 929 130
+rect 991 506 1025 522
+rect 991 114 1025 130
+rect 1087 506 1121 522
+rect 1087 114 1121 130
+rect 1183 506 1217 522
+rect 1183 114 1217 130
+rect 1279 506 1313 522
+rect 1279 114 1313 130
+rect 1375 506 1409 522
+rect 1375 114 1409 130
+rect 1471 506 1505 522
+rect 1471 114 1505 130
+rect 1567 506 1601 522
+rect 1567 114 1601 130
+rect 1663 506 1697 522
+rect 1663 114 1697 130
+rect 1759 506 1793 522
+rect 1759 114 1793 130
+rect 1855 506 1889 522
+rect 1855 114 1889 130
+rect 1951 506 1985 522
+rect 1951 114 1985 130
+rect 2047 506 2081 522
+rect 2047 114 2081 130
+rect 2143 506 2177 522
+rect 2143 114 2177 130
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect -2177 -130 -2143 -114
+rect -2177 -522 -2143 -506
+rect -2081 -130 -2047 -114
+rect -2081 -522 -2047 -506
+rect -1985 -130 -1951 -114
+rect -1985 -522 -1951 -506
+rect -1889 -130 -1855 -114
+rect -1889 -522 -1855 -506
+rect -1793 -130 -1759 -114
+rect -1793 -522 -1759 -506
+rect -1697 -130 -1663 -114
+rect -1697 -522 -1663 -506
+rect -1601 -130 -1567 -114
+rect -1601 -522 -1567 -506
+rect -1505 -130 -1471 -114
+rect -1505 -522 -1471 -506
+rect -1409 -130 -1375 -114
+rect -1409 -522 -1375 -506
+rect -1313 -130 -1279 -114
+rect -1313 -522 -1279 -506
+rect -1217 -130 -1183 -114
+rect -1217 -522 -1183 -506
+rect -1121 -130 -1087 -114
+rect -1121 -522 -1087 -506
+rect -1025 -130 -991 -114
+rect -1025 -522 -991 -506
+rect -929 -130 -895 -114
+rect -929 -522 -895 -506
+rect -833 -130 -799 -114
+rect -833 -522 -799 -506
+rect -737 -130 -703 -114
+rect -737 -522 -703 -506
+rect -641 -130 -607 -114
+rect -641 -522 -607 -506
+rect -545 -130 -511 -114
+rect -545 -522 -511 -506
+rect -449 -130 -415 -114
+rect -449 -522 -415 -506
+rect -353 -130 -319 -114
+rect -353 -522 -319 -506
+rect -257 -130 -223 -114
+rect -257 -522 -223 -506
+rect -161 -130 -127 -114
+rect -161 -522 -127 -506
+rect -65 -130 -31 -114
+rect -65 -522 -31 -506
+rect 31 -130 65 -114
+rect 31 -522 65 -506
+rect 127 -130 161 -114
+rect 127 -522 161 -506
+rect 223 -130 257 -114
+rect 223 -522 257 -506
+rect 319 -130 353 -114
+rect 319 -522 353 -506
+rect 415 -130 449 -114
+rect 415 -522 449 -506
+rect 511 -130 545 -114
+rect 511 -522 545 -506
+rect 607 -130 641 -114
+rect 607 -522 641 -506
+rect 703 -130 737 -114
+rect 703 -522 737 -506
+rect 799 -130 833 -114
+rect 799 -522 833 -506
+rect 895 -130 929 -114
+rect 895 -522 929 -506
+rect 991 -130 1025 -114
+rect 991 -522 1025 -506
+rect 1087 -130 1121 -114
+rect 1087 -522 1121 -506
+rect 1183 -130 1217 -114
+rect 1183 -522 1217 -506
+rect 1279 -130 1313 -114
+rect 1279 -522 1313 -506
+rect 1375 -130 1409 -114
+rect 1375 -522 1409 -506
+rect 1471 -130 1505 -114
+rect 1471 -522 1505 -506
+rect 1567 -130 1601 -114
+rect 1567 -522 1601 -506
+rect 1663 -130 1697 -114
+rect 1663 -522 1697 -506
+rect 1759 -130 1793 -114
+rect 1759 -522 1793 -506
+rect 1855 -130 1889 -114
+rect 1855 -522 1889 -506
+rect 1951 -130 1985 -114
+rect 1951 -522 1985 -506
+rect 2047 -130 2081 -114
+rect 2047 -522 2081 -506
+rect 2143 -130 2177 -114
+rect 2143 -522 2177 -506
+rect -2145 -599 -2129 -565
+rect -2095 -599 -2079 -565
+rect -1953 -599 -1937 -565
+rect -1903 -599 -1887 -565
+rect -1761 -599 -1745 -565
+rect -1711 -599 -1695 -565
+rect -1569 -599 -1553 -565
+rect -1519 -599 -1503 -565
+rect -1377 -599 -1361 -565
+rect -1327 -599 -1311 -565
+rect -1185 -599 -1169 -565
+rect -1135 -599 -1119 -565
+rect -993 -599 -977 -565
+rect -943 -599 -927 -565
+rect -801 -599 -785 -565
+rect -751 -599 -735 -565
+rect -609 -599 -593 -565
+rect -559 -599 -543 -565
+rect -417 -599 -401 -565
+rect -367 -599 -351 -565
+rect -225 -599 -209 -565
+rect -175 -599 -159 -565
+rect -33 -599 -17 -565
+rect 17 -599 33 -565
+rect 159 -599 175 -565
+rect 209 -599 225 -565
+rect 351 -599 367 -565
+rect 401 -599 417 -565
+rect 543 -599 559 -565
+rect 593 -599 609 -565
+rect 735 -599 751 -565
+rect 785 -599 801 -565
+rect 927 -599 943 -565
+rect 977 -599 993 -565
+rect 1119 -599 1135 -565
+rect 1169 -599 1185 -565
+rect 1311 -599 1327 -565
+rect 1361 -599 1377 -565
+rect 1503 -599 1519 -565
+rect 1553 -599 1569 -565
+rect 1695 -599 1711 -565
+rect 1745 -599 1761 -565
+rect 1887 -599 1903 -565
+rect 1937 -599 1953 -565
+rect 2079 -599 2095 -565
+rect 2129 -599 2145 -565
+rect -2291 -667 -2257 -605
+rect 2257 -667 2291 -605
+rect -2291 -701 -2195 -667
+rect 2195 -701 2291 -667
+<< viali >>
+rect -2129 565 -2095 599
+rect -1937 565 -1903 599
+rect -1745 565 -1711 599
+rect -1553 565 -1519 599
+rect -1361 565 -1327 599
+rect -1169 565 -1135 599
+rect -977 565 -943 599
+rect -785 565 -751 599
+rect -593 565 -559 599
+rect -401 565 -367 599
+rect -209 565 -175 599
+rect -17 565 17 599
+rect 175 565 209 599
+rect 367 565 401 599
+rect 559 565 593 599
+rect 751 565 785 599
+rect 943 565 977 599
+rect 1135 565 1169 599
+rect 1327 565 1361 599
+rect 1519 565 1553 599
+rect 1711 565 1745 599
+rect 1903 565 1937 599
+rect 2095 565 2129 599
+rect -2177 130 -2143 506
+rect -2081 130 -2047 506
+rect -1985 130 -1951 506
+rect -1889 130 -1855 506
+rect -1793 130 -1759 506
+rect -1697 130 -1663 506
+rect -1601 130 -1567 506
+rect -1505 130 -1471 506
+rect -1409 130 -1375 506
+rect -1313 130 -1279 506
+rect -1217 130 -1183 506
+rect -1121 130 -1087 506
+rect -1025 130 -991 506
+rect -929 130 -895 506
+rect -833 130 -799 506
+rect -737 130 -703 506
+rect -641 130 -607 506
+rect -545 130 -511 506
+rect -449 130 -415 506
+rect -353 130 -319 506
+rect -257 130 -223 506
+rect -161 130 -127 506
+rect -65 130 -31 506
+rect 31 130 65 506
+rect 127 130 161 506
+rect 223 130 257 506
+rect 319 130 353 506
+rect 415 130 449 506
+rect 511 130 545 506
+rect 607 130 641 506
+rect 703 130 737 506
+rect 799 130 833 506
+rect 895 130 929 506
+rect 991 130 1025 506
+rect 1087 130 1121 506
+rect 1183 130 1217 506
+rect 1279 130 1313 506
+rect 1375 130 1409 506
+rect 1471 130 1505 506
+rect 1567 130 1601 506
+rect 1663 130 1697 506
+rect 1759 130 1793 506
+rect 1855 130 1889 506
+rect 1951 130 1985 506
+rect 2047 130 2081 506
+rect 2143 130 2177 506
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2177 -506 -2143 -130
+rect -2081 -506 -2047 -130
+rect -1985 -506 -1951 -130
+rect -1889 -506 -1855 -130
+rect -1793 -506 -1759 -130
+rect -1697 -506 -1663 -130
+rect -1601 -506 -1567 -130
+rect -1505 -506 -1471 -130
+rect -1409 -506 -1375 -130
+rect -1313 -506 -1279 -130
+rect -1217 -506 -1183 -130
+rect -1121 -506 -1087 -130
+rect -1025 -506 -991 -130
+rect -929 -506 -895 -130
+rect -833 -506 -799 -130
+rect -737 -506 -703 -130
+rect -641 -506 -607 -130
+rect -545 -506 -511 -130
+rect -449 -506 -415 -130
+rect -353 -506 -319 -130
+rect -257 -506 -223 -130
+rect -161 -506 -127 -130
+rect -65 -506 -31 -130
+rect 31 -506 65 -130
+rect 127 -506 161 -130
+rect 223 -506 257 -130
+rect 319 -506 353 -130
+rect 415 -506 449 -130
+rect 511 -506 545 -130
+rect 607 -506 641 -130
+rect 703 -506 737 -130
+rect 799 -506 833 -130
+rect 895 -506 929 -130
+rect 991 -506 1025 -130
+rect 1087 -506 1121 -130
+rect 1183 -506 1217 -130
+rect 1279 -506 1313 -130
+rect 1375 -506 1409 -130
+rect 1471 -506 1505 -130
+rect 1567 -506 1601 -130
+rect 1663 -506 1697 -130
+rect 1759 -506 1793 -130
+rect 1855 -506 1889 -130
+rect 1951 -506 1985 -130
+rect 2047 -506 2081 -130
+rect 2143 -506 2177 -130
+rect -2129 -599 -2095 -565
+rect -1937 -599 -1903 -565
+rect -1745 -599 -1711 -565
+rect -1553 -599 -1519 -565
+rect -1361 -599 -1327 -565
+rect -1169 -599 -1135 -565
+rect -977 -599 -943 -565
+rect -785 -599 -751 -565
+rect -593 -599 -559 -565
+rect -401 -599 -367 -565
+rect -209 -599 -175 -565
+rect -17 -599 17 -565
+rect 175 -599 209 -565
+rect 367 -599 401 -565
+rect 559 -599 593 -565
+rect 751 -599 785 -565
+rect 943 -599 977 -565
+rect 1135 -599 1169 -565
+rect 1327 -599 1361 -565
+rect 1519 -599 1553 -565
+rect 1711 -599 1745 -565
+rect 1903 -599 1937 -565
+rect 2095 -599 2129 -565
+<< metal1 >>
+rect -2141 599 -2083 605
+rect -2141 565 -2129 599
+rect -2095 565 -2083 599
+rect -2141 559 -2083 565
+rect -1949 599 -1891 605
+rect -1949 565 -1937 599
+rect -1903 565 -1891 599
+rect -1949 559 -1891 565
+rect -1757 599 -1699 605
+rect -1757 565 -1745 599
+rect -1711 565 -1699 599
+rect -1757 559 -1699 565
+rect -1565 599 -1507 605
+rect -1565 565 -1553 599
+rect -1519 565 -1507 599
+rect -1565 559 -1507 565
+rect -1373 599 -1315 605
+rect -1373 565 -1361 599
+rect -1327 565 -1315 599
+rect -1373 559 -1315 565
+rect -1181 599 -1123 605
+rect -1181 565 -1169 599
+rect -1135 565 -1123 599
+rect -1181 559 -1123 565
+rect -989 599 -931 605
+rect -989 565 -977 599
+rect -943 565 -931 599
+rect -989 559 -931 565
+rect -797 599 -739 605
+rect -797 565 -785 599
+rect -751 565 -739 599
+rect -797 559 -739 565
+rect -605 599 -547 605
+rect -605 565 -593 599
+rect -559 565 -547 599
+rect -605 559 -547 565
+rect -413 599 -355 605
+rect -413 565 -401 599
+rect -367 565 -355 599
+rect -413 559 -355 565
+rect -221 599 -163 605
+rect -221 565 -209 599
+rect -175 565 -163 599
+rect -221 559 -163 565
+rect -29 599 29 605
+rect -29 565 -17 599
+rect 17 565 29 599
+rect -29 559 29 565
+rect 163 599 221 605
+rect 163 565 175 599
+rect 209 565 221 599
+rect 163 559 221 565
+rect 355 599 413 605
+rect 355 565 367 599
+rect 401 565 413 599
+rect 355 559 413 565
+rect 547 599 605 605
+rect 547 565 559 599
+rect 593 565 605 599
+rect 547 559 605 565
+rect 739 599 797 605
+rect 739 565 751 599
+rect 785 565 797 599
+rect 739 559 797 565
+rect 931 599 989 605
+rect 931 565 943 599
+rect 977 565 989 599
+rect 931 559 989 565
+rect 1123 599 1181 605
+rect 1123 565 1135 599
+rect 1169 565 1181 599
+rect 1123 559 1181 565
+rect 1315 599 1373 605
+rect 1315 565 1327 599
+rect 1361 565 1373 599
+rect 1315 559 1373 565
+rect 1507 599 1565 605
+rect 1507 565 1519 599
+rect 1553 565 1565 599
+rect 1507 559 1565 565
+rect 1699 599 1757 605
+rect 1699 565 1711 599
+rect 1745 565 1757 599
+rect 1699 559 1757 565
+rect 1891 599 1949 605
+rect 1891 565 1903 599
+rect 1937 565 1949 599
+rect 1891 559 1949 565
+rect 2083 599 2141 605
+rect 2083 565 2095 599
+rect 2129 565 2141 599
+rect 2083 559 2141 565
+rect -2183 506 -2137 518
+rect -2183 130 -2177 506
+rect -2143 130 -2137 506
+rect -2183 118 -2137 130
+rect -2087 506 -2041 518
+rect -2087 130 -2081 506
+rect -2047 130 -2041 506
+rect -2087 118 -2041 130
+rect -1991 506 -1945 518
+rect -1991 130 -1985 506
+rect -1951 130 -1945 506
+rect -1991 118 -1945 130
+rect -1895 506 -1849 518
+rect -1895 130 -1889 506
+rect -1855 130 -1849 506
+rect -1895 118 -1849 130
+rect -1799 506 -1753 518
+rect -1799 130 -1793 506
+rect -1759 130 -1753 506
+rect -1799 118 -1753 130
+rect -1703 506 -1657 518
+rect -1703 130 -1697 506
+rect -1663 130 -1657 506
+rect -1703 118 -1657 130
+rect -1607 506 -1561 518
+rect -1607 130 -1601 506
+rect -1567 130 -1561 506
+rect -1607 118 -1561 130
+rect -1511 506 -1465 518
+rect -1511 130 -1505 506
+rect -1471 130 -1465 506
+rect -1511 118 -1465 130
+rect -1415 506 -1369 518
+rect -1415 130 -1409 506
+rect -1375 130 -1369 506
+rect -1415 118 -1369 130
+rect -1319 506 -1273 518
+rect -1319 130 -1313 506
+rect -1279 130 -1273 506
+rect -1319 118 -1273 130
+rect -1223 506 -1177 518
+rect -1223 130 -1217 506
+rect -1183 130 -1177 506
+rect -1223 118 -1177 130
+rect -1127 506 -1081 518
+rect -1127 130 -1121 506
+rect -1087 130 -1081 506
+rect -1127 118 -1081 130
+rect -1031 506 -985 518
+rect -1031 130 -1025 506
+rect -991 130 -985 506
+rect -1031 118 -985 130
+rect -935 506 -889 518
+rect -935 130 -929 506
+rect -895 130 -889 506
+rect -935 118 -889 130
+rect -839 506 -793 518
+rect -839 130 -833 506
+rect -799 130 -793 506
+rect -839 118 -793 130
+rect -743 506 -697 518
+rect -743 130 -737 506
+rect -703 130 -697 506
+rect -743 118 -697 130
+rect -647 506 -601 518
+rect -647 130 -641 506
+rect -607 130 -601 506
+rect -647 118 -601 130
+rect -551 506 -505 518
+rect -551 130 -545 506
+rect -511 130 -505 506
+rect -551 118 -505 130
+rect -455 506 -409 518
+rect -455 130 -449 506
+rect -415 130 -409 506
+rect -455 118 -409 130
+rect -359 506 -313 518
+rect -359 130 -353 506
+rect -319 130 -313 506
+rect -359 118 -313 130
+rect -263 506 -217 518
+rect -263 130 -257 506
+rect -223 130 -217 506
+rect -263 118 -217 130
+rect -167 506 -121 518
+rect -167 130 -161 506
+rect -127 130 -121 506
+rect -167 118 -121 130
+rect -71 506 -25 518
+rect -71 130 -65 506
+rect -31 130 -25 506
+rect -71 118 -25 130
+rect 25 506 71 518
+rect 25 130 31 506
+rect 65 130 71 506
+rect 25 118 71 130
+rect 121 506 167 518
+rect 121 130 127 506
+rect 161 130 167 506
+rect 121 118 167 130
+rect 217 506 263 518
+rect 217 130 223 506
+rect 257 130 263 506
+rect 217 118 263 130
+rect 313 506 359 518
+rect 313 130 319 506
+rect 353 130 359 506
+rect 313 118 359 130
+rect 409 506 455 518
+rect 409 130 415 506
+rect 449 130 455 506
+rect 409 118 455 130
+rect 505 506 551 518
+rect 505 130 511 506
+rect 545 130 551 506
+rect 505 118 551 130
+rect 601 506 647 518
+rect 601 130 607 506
+rect 641 130 647 506
+rect 601 118 647 130
+rect 697 506 743 518
+rect 697 130 703 506
+rect 737 130 743 506
+rect 697 118 743 130
+rect 793 506 839 518
+rect 793 130 799 506
+rect 833 130 839 506
+rect 793 118 839 130
+rect 889 506 935 518
+rect 889 130 895 506
+rect 929 130 935 506
+rect 889 118 935 130
+rect 985 506 1031 518
+rect 985 130 991 506
+rect 1025 130 1031 506
+rect 985 118 1031 130
+rect 1081 506 1127 518
+rect 1081 130 1087 506
+rect 1121 130 1127 506
+rect 1081 118 1127 130
+rect 1177 506 1223 518
+rect 1177 130 1183 506
+rect 1217 130 1223 506
+rect 1177 118 1223 130
+rect 1273 506 1319 518
+rect 1273 130 1279 506
+rect 1313 130 1319 506
+rect 1273 118 1319 130
+rect 1369 506 1415 518
+rect 1369 130 1375 506
+rect 1409 130 1415 506
+rect 1369 118 1415 130
+rect 1465 506 1511 518
+rect 1465 130 1471 506
+rect 1505 130 1511 506
+rect 1465 118 1511 130
+rect 1561 506 1607 518
+rect 1561 130 1567 506
+rect 1601 130 1607 506
+rect 1561 118 1607 130
+rect 1657 506 1703 518
+rect 1657 130 1663 506
+rect 1697 130 1703 506
+rect 1657 118 1703 130
+rect 1753 506 1799 518
+rect 1753 130 1759 506
+rect 1793 130 1799 506
+rect 1753 118 1799 130
+rect 1849 506 1895 518
+rect 1849 130 1855 506
+rect 1889 130 1895 506
+rect 1849 118 1895 130
+rect 1945 506 1991 518
+rect 1945 130 1951 506
+rect 1985 130 1991 506
+rect 1945 118 1991 130
+rect 2041 506 2087 518
+rect 2041 130 2047 506
+rect 2081 130 2087 506
+rect 2041 118 2087 130
+rect 2137 506 2183 518
+rect 2137 130 2143 506
+rect 2177 130 2183 506
+rect 2137 118 2183 130
+rect -2045 71 -1987 77
+rect -2045 37 -2033 71
+rect -1999 37 -1987 71
+rect -2045 31 -1987 37
+rect -1853 71 -1795 77
+rect -1853 37 -1841 71
+rect -1807 37 -1795 71
+rect -1853 31 -1795 37
+rect -1661 71 -1603 77
+rect -1661 37 -1649 71
+rect -1615 37 -1603 71
+rect -1661 31 -1603 37
+rect -1469 71 -1411 77
+rect -1469 37 -1457 71
+rect -1423 37 -1411 71
+rect -1469 31 -1411 37
+rect -1277 71 -1219 77
+rect -1277 37 -1265 71
+rect -1231 37 -1219 71
+rect -1277 31 -1219 37
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect 1219 71 1277 77
+rect 1219 37 1231 71
+rect 1265 37 1277 71
+rect 1219 31 1277 37
+rect 1411 71 1469 77
+rect 1411 37 1423 71
+rect 1457 37 1469 71
+rect 1411 31 1469 37
+rect 1603 71 1661 77
+rect 1603 37 1615 71
+rect 1649 37 1661 71
+rect 1603 31 1661 37
+rect 1795 71 1853 77
+rect 1795 37 1807 71
+rect 1841 37 1853 71
+rect 1795 31 1853 37
+rect 1987 71 2045 77
+rect 1987 37 1999 71
+rect 2033 37 2045 71
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -2045 -71 -2033 -37
+rect -1999 -71 -1987 -37
+rect -2045 -77 -1987 -71
+rect -1853 -37 -1795 -31
+rect -1853 -71 -1841 -37
+rect -1807 -71 -1795 -37
+rect -1853 -77 -1795 -71
+rect -1661 -37 -1603 -31
+rect -1661 -71 -1649 -37
+rect -1615 -71 -1603 -37
+rect -1661 -77 -1603 -71
+rect -1469 -37 -1411 -31
+rect -1469 -71 -1457 -37
+rect -1423 -71 -1411 -37
+rect -1469 -77 -1411 -71
+rect -1277 -37 -1219 -31
+rect -1277 -71 -1265 -37
+rect -1231 -71 -1219 -37
+rect -1277 -77 -1219 -71
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect 1219 -37 1277 -31
+rect 1219 -71 1231 -37
+rect 1265 -71 1277 -37
+rect 1219 -77 1277 -71
+rect 1411 -37 1469 -31
+rect 1411 -71 1423 -37
+rect 1457 -71 1469 -37
+rect 1411 -77 1469 -71
+rect 1603 -37 1661 -31
+rect 1603 -71 1615 -37
+rect 1649 -71 1661 -37
+rect 1603 -77 1661 -71
+rect 1795 -37 1853 -31
+rect 1795 -71 1807 -37
+rect 1841 -71 1853 -37
+rect 1795 -77 1853 -71
+rect 1987 -37 2045 -31
+rect 1987 -71 1999 -37
+rect 2033 -71 2045 -37
+rect 1987 -77 2045 -71
+rect -2183 -130 -2137 -118
+rect -2183 -506 -2177 -130
+rect -2143 -506 -2137 -130
+rect -2183 -518 -2137 -506
+rect -2087 -130 -2041 -118
+rect -2087 -506 -2081 -130
+rect -2047 -506 -2041 -130
+rect -2087 -518 -2041 -506
+rect -1991 -130 -1945 -118
+rect -1991 -506 -1985 -130
+rect -1951 -506 -1945 -130
+rect -1991 -518 -1945 -506
+rect -1895 -130 -1849 -118
+rect -1895 -506 -1889 -130
+rect -1855 -506 -1849 -130
+rect -1895 -518 -1849 -506
+rect -1799 -130 -1753 -118
+rect -1799 -506 -1793 -130
+rect -1759 -506 -1753 -130
+rect -1799 -518 -1753 -506
+rect -1703 -130 -1657 -118
+rect -1703 -506 -1697 -130
+rect -1663 -506 -1657 -130
+rect -1703 -518 -1657 -506
+rect -1607 -130 -1561 -118
+rect -1607 -506 -1601 -130
+rect -1567 -506 -1561 -130
+rect -1607 -518 -1561 -506
+rect -1511 -130 -1465 -118
+rect -1511 -506 -1505 -130
+rect -1471 -506 -1465 -130
+rect -1511 -518 -1465 -506
+rect -1415 -130 -1369 -118
+rect -1415 -506 -1409 -130
+rect -1375 -506 -1369 -130
+rect -1415 -518 -1369 -506
+rect -1319 -130 -1273 -118
+rect -1319 -506 -1313 -130
+rect -1279 -506 -1273 -130
+rect -1319 -518 -1273 -506
+rect -1223 -130 -1177 -118
+rect -1223 -506 -1217 -130
+rect -1183 -506 -1177 -130
+rect -1223 -518 -1177 -506
+rect -1127 -130 -1081 -118
+rect -1127 -506 -1121 -130
+rect -1087 -506 -1081 -130
+rect -1127 -518 -1081 -506
+rect -1031 -130 -985 -118
+rect -1031 -506 -1025 -130
+rect -991 -506 -985 -130
+rect -1031 -518 -985 -506
+rect -935 -130 -889 -118
+rect -935 -506 -929 -130
+rect -895 -506 -889 -130
+rect -935 -518 -889 -506
+rect -839 -130 -793 -118
+rect -839 -506 -833 -130
+rect -799 -506 -793 -130
+rect -839 -518 -793 -506
+rect -743 -130 -697 -118
+rect -743 -506 -737 -130
+rect -703 -506 -697 -130
+rect -743 -518 -697 -506
+rect -647 -130 -601 -118
+rect -647 -506 -641 -130
+rect -607 -506 -601 -130
+rect -647 -518 -601 -506
+rect -551 -130 -505 -118
+rect -551 -506 -545 -130
+rect -511 -506 -505 -130
+rect -551 -518 -505 -506
+rect -455 -130 -409 -118
+rect -455 -506 -449 -130
+rect -415 -506 -409 -130
+rect -455 -518 -409 -506
+rect -359 -130 -313 -118
+rect -359 -506 -353 -130
+rect -319 -506 -313 -130
+rect -359 -518 -313 -506
+rect -263 -130 -217 -118
+rect -263 -506 -257 -130
+rect -223 -506 -217 -130
+rect -263 -518 -217 -506
+rect -167 -130 -121 -118
+rect -167 -506 -161 -130
+rect -127 -506 -121 -130
+rect -167 -518 -121 -506
+rect -71 -130 -25 -118
+rect -71 -506 -65 -130
+rect -31 -506 -25 -130
+rect -71 -518 -25 -506
+rect 25 -130 71 -118
+rect 25 -506 31 -130
+rect 65 -506 71 -130
+rect 25 -518 71 -506
+rect 121 -130 167 -118
+rect 121 -506 127 -130
+rect 161 -506 167 -130
+rect 121 -518 167 -506
+rect 217 -130 263 -118
+rect 217 -506 223 -130
+rect 257 -506 263 -130
+rect 217 -518 263 -506
+rect 313 -130 359 -118
+rect 313 -506 319 -130
+rect 353 -506 359 -130
+rect 313 -518 359 -506
+rect 409 -130 455 -118
+rect 409 -506 415 -130
+rect 449 -506 455 -130
+rect 409 -518 455 -506
+rect 505 -130 551 -118
+rect 505 -506 511 -130
+rect 545 -506 551 -130
+rect 505 -518 551 -506
+rect 601 -130 647 -118
+rect 601 -506 607 -130
+rect 641 -506 647 -130
+rect 601 -518 647 -506
+rect 697 -130 743 -118
+rect 697 -506 703 -130
+rect 737 -506 743 -130
+rect 697 -518 743 -506
+rect 793 -130 839 -118
+rect 793 -506 799 -130
+rect 833 -506 839 -130
+rect 793 -518 839 -506
+rect 889 -130 935 -118
+rect 889 -506 895 -130
+rect 929 -506 935 -130
+rect 889 -518 935 -506
+rect 985 -130 1031 -118
+rect 985 -506 991 -130
+rect 1025 -506 1031 -130
+rect 985 -518 1031 -506
+rect 1081 -130 1127 -118
+rect 1081 -506 1087 -130
+rect 1121 -506 1127 -130
+rect 1081 -518 1127 -506
+rect 1177 -130 1223 -118
+rect 1177 -506 1183 -130
+rect 1217 -506 1223 -130
+rect 1177 -518 1223 -506
+rect 1273 -130 1319 -118
+rect 1273 -506 1279 -130
+rect 1313 -506 1319 -130
+rect 1273 -518 1319 -506
+rect 1369 -130 1415 -118
+rect 1369 -506 1375 -130
+rect 1409 -506 1415 -130
+rect 1369 -518 1415 -506
+rect 1465 -130 1511 -118
+rect 1465 -506 1471 -130
+rect 1505 -506 1511 -130
+rect 1465 -518 1511 -506
+rect 1561 -130 1607 -118
+rect 1561 -506 1567 -130
+rect 1601 -506 1607 -130
+rect 1561 -518 1607 -506
+rect 1657 -130 1703 -118
+rect 1657 -506 1663 -130
+rect 1697 -506 1703 -130
+rect 1657 -518 1703 -506
+rect 1753 -130 1799 -118
+rect 1753 -506 1759 -130
+rect 1793 -506 1799 -130
+rect 1753 -518 1799 -506
+rect 1849 -130 1895 -118
+rect 1849 -506 1855 -130
+rect 1889 -506 1895 -130
+rect 1849 -518 1895 -506
+rect 1945 -130 1991 -118
+rect 1945 -506 1951 -130
+rect 1985 -506 1991 -130
+rect 1945 -518 1991 -506
+rect 2041 -130 2087 -118
+rect 2041 -506 2047 -130
+rect 2081 -506 2087 -130
+rect 2041 -518 2087 -506
+rect 2137 -130 2183 -118
+rect 2137 -506 2143 -130
+rect 2177 -506 2183 -130
+rect 2137 -518 2183 -506
+rect -2141 -565 -2083 -559
+rect -2141 -599 -2129 -565
+rect -2095 -599 -2083 -565
+rect -2141 -605 -2083 -599
+rect -1949 -565 -1891 -559
+rect -1949 -599 -1937 -565
+rect -1903 -599 -1891 -565
+rect -1949 -605 -1891 -599
+rect -1757 -565 -1699 -559
+rect -1757 -599 -1745 -565
+rect -1711 -599 -1699 -565
+rect -1757 -605 -1699 -599
+rect -1565 -565 -1507 -559
+rect -1565 -599 -1553 -565
+rect -1519 -599 -1507 -565
+rect -1565 -605 -1507 -599
+rect -1373 -565 -1315 -559
+rect -1373 -599 -1361 -565
+rect -1327 -599 -1315 -565
+rect -1373 -605 -1315 -599
+rect -1181 -565 -1123 -559
+rect -1181 -599 -1169 -565
+rect -1135 -599 -1123 -565
+rect -1181 -605 -1123 -599
+rect -989 -565 -931 -559
+rect -989 -599 -977 -565
+rect -943 -599 -931 -565
+rect -989 -605 -931 -599
+rect -797 -565 -739 -559
+rect -797 -599 -785 -565
+rect -751 -599 -739 -565
+rect -797 -605 -739 -599
+rect -605 -565 -547 -559
+rect -605 -599 -593 -565
+rect -559 -599 -547 -565
+rect -605 -605 -547 -599
+rect -413 -565 -355 -559
+rect -413 -599 -401 -565
+rect -367 -599 -355 -565
+rect -413 -605 -355 -599
+rect -221 -565 -163 -559
+rect -221 -599 -209 -565
+rect -175 -599 -163 -565
+rect -221 -605 -163 -599
+rect -29 -565 29 -559
+rect -29 -599 -17 -565
+rect 17 -599 29 -565
+rect -29 -605 29 -599
+rect 163 -565 221 -559
+rect 163 -599 175 -565
+rect 209 -599 221 -565
+rect 163 -605 221 -599
+rect 355 -565 413 -559
+rect 355 -599 367 -565
+rect 401 -599 413 -565
+rect 355 -605 413 -599
+rect 547 -565 605 -559
+rect 547 -599 559 -565
+rect 593 -599 605 -565
+rect 547 -605 605 -599
+rect 739 -565 797 -559
+rect 739 -599 751 -565
+rect 785 -599 797 -565
+rect 739 -605 797 -599
+rect 931 -565 989 -559
+rect 931 -599 943 -565
+rect 977 -599 989 -565
+rect 931 -605 989 -599
+rect 1123 -565 1181 -559
+rect 1123 -599 1135 -565
+rect 1169 -599 1181 -565
+rect 1123 -605 1181 -599
+rect 1315 -565 1373 -559
+rect 1315 -599 1327 -565
+rect 1361 -599 1373 -565
+rect 1315 -605 1373 -599
+rect 1507 -565 1565 -559
+rect 1507 -599 1519 -565
+rect 1553 -599 1565 -565
+rect 1507 -605 1565 -599
+rect 1699 -565 1757 -559
+rect 1699 -599 1711 -565
+rect 1745 -599 1757 -565
+rect 1699 -605 1757 -599
+rect 1891 -565 1949 -559
+rect 1891 -599 1903 -565
+rect 1937 -599 1949 -565
+rect 1891 -605 1949 -599
+rect 2083 -565 2141 -559
+rect 2083 -599 2095 -565
+rect 2129 -599 2141 -565
+rect 2083 -605 2141 -599
+<< properties >>
+string FIXED_BBOX -2274 -684 2274 684
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 2 nf 45 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.ext b/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.ext
new file mode 100644
index 0000000..bcabfb5
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.ext
@@ -0,0 +1,560 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_543_n1154#" 1426 0 543 -1154 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n1154#" 1349 0 447 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n1154#" 1349 0 351 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n1154#" 1349 0 255 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n1154#" 1349 0 159 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n1154#" 1349 0 63 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1154#" 1349 0 -33 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n1154#" 1349 0 -129 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n1154#" 1349 0 -225 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n1154#" 1349 0 -321 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n1154#" 1349 0 -417 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n1154#" 1349 0 -513 -1154 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_n1154#" 1426 0 -605 -1154 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n1251#" 851 0 399 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n1251#" 851 0 207 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n1251#" 851 0 15 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n1251#" 851 0 -177 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n1251#" 851 0 -369 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n1251#" 851 0 -561 -1251 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n723#" 851 0 495 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n723#" 851 0 303 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n723#" 851 0 111 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n723#" 851 0 -81 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n723#" 851 0 -273 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n723#" 851 0 -465 -723 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n518#" 1426 0 543 -518 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n518#" 1349 0 447 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n518#" 1349 0 351 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n518#" 1349 0 255 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n518#" 1349 0 159 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n518#" 1349 0 63 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n518#" 1349 0 -33 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n518#" 1349 0 -129 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n518#" 1349 0 -225 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n518#" 1349 0 -321 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n518#" 1349 0 -417 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n518#" 1349 0 -513 -518 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_n518#" 1426 0 -605 -518 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n615#" 851 0 495 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n615#" 851 0 303 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n615#" 851 0 111 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n615#" 851 0 -81 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n615#" 851 0 -273 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n615#" 851 0 -465 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n87#" 851 0 399 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n87#" 851 0 207 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n87#" 851 0 15 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n87#" 851 0 -177 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n87#" 851 0 -369 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n87#" 851 0 -561 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_118#" 1426 0 543 118 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_118#" 1349 0 447 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_118#" 1349 0 351 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_118#" 1349 0 255 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_118#" 1349 0 159 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_118#" 1349 0 63 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_118#" 1349 0 -33 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_118#" 1349 0 -129 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_118#" 1349 0 -225 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_118#" 1349 0 -321 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_118#" 1349 0 -417 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_118#" 1349 0 -513 118 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_118#" 1426 0 -605 118 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_21#" 851 0 399 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_21#" 851 0 207 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_21#" 851 0 15 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_21#" 851 0 -177 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_21#" 851 0 -369 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_21#" 851 0 -561 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_549#" 851 0 495 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_549#" 851 0 303 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_549#" 851 0 111 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_549#" 851 0 -81 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_549#" 851 0 -273 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_549#" 851 0 -465 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_754#" 1426 0 543 754 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_754#" 1349 0 447 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_754#" 1349 0 351 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_754#" 1349 0 255 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_754#" 1349 0 159 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_754#" 1349 0 63 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_754#" 1349 0 -33 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_754#" 1349 0 -129 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_754#" 1349 0 -225 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_754#" 1349 0 -321 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_754#" 1349 0 -417 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_754#" 1349 0 -513 754 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_754#" 1426 0 -605 754 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_657#" 851 0 495 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_657#" 851 0 303 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_657#" 851 0 111 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_657#" 851 0 -81 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_657#" 851 0 -273 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_657#" 851 0 -465 657 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_1185#" 851 0 399 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_1185#" 851 0 207 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_1185#" 851 0 15 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_1185#" 851 0 -177 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_1185#" 851 0 -369 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_1185#" 851 0 -561 1185 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n743_n1373#" 32893 12241.7 -743 -1373 nw 0 0 0 0 4080556 8464 0 0 273360 16080 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 273360 16080 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n273_n615#" "a_n273_549#" 6.32145
+cap "a_n321_118#" "a_n321_n518#" 11.3678
+cap "a_351_n518#" "a_303_n615#" 4.90233
+cap "a_255_n518#" "a_255_118#" 11.3678
+cap "a_n33_n518#" "a_n33_n1154#" 11.3678
+cap "a_207_n87#" "w_n743_n1373#" 37.5333
+cap "a_n369_n1251#" "a_n177_n1251#" 29.6522
+cap "a_303_657#" "a_207_1185#" 13.3939
+cap "a_351_n518#" "a_447_n518#" 479.458
+cap "a_n513_754#" "w_n743_n1373#" 12.2254
+cap "a_n129_118#" "a_n81_549#" 4.90233
+cap "a_n321_n518#" "a_n225_n518#" 479.458
+cap "a_n321_n518#" "a_n369_n87#" 4.90233
+cap "a_n417_754#" "a_n369_1185#" 4.90233
+cap "a_n129_n1154#" "w_n743_n1373#" 11.99
+cap "a_495_n615#" "a_399_n87#" 13.3939
+cap "a_n465_657#" "a_n561_1185#" 13.3939
+cap "a_n561_n87#" "a_n369_n87#" 29.6522
+cap "a_399_21#" "w_n743_n1373#" 59.7634
+cap "a_n605_n518#" "w_n743_n1373#" 147.448
+cap "a_351_754#" "a_447_754#" 479.458
+cap "a_15_21#" "a_207_21#" 29.6522
+cap "a_351_118#" "w_n743_n1373#" 4.61835
+cap "a_207_n1251#" "a_207_n87#" 6.32145
+cap "a_n561_21#" "w_n743_n1373#" 76.7362
+cap "a_399_21#" "a_351_118#" 4.90233
+cap "a_n273_n615#" "a_n177_n87#" 13.3939
+cap "a_303_657#" "a_495_657#" 29.6522
+cap "a_207_n1251#" "w_n743_n1373#" 82.1969
+cap "a_n273_549#" "w_n743_n1373#" 37.5333
+cap "a_n465_n723#" "w_n743_n1373#" 69.7124
+cap "a_15_n1251#" "a_n33_n1154#" 4.90233
+cap "a_n513_n1154#" "a_n417_n1154#" 479.458
+cap "a_n273_n723#" "a_n225_n1154#" 4.90233
+cap "a_495_549#" "a_447_118#" 4.90233
+cap "a_111_n723#" "a_303_n723#" 29.6522
+cap "a_15_1185#" "w_n743_n1373#" 82.1969
+cap "a_63_n518#" "a_n33_n518#" 479.458
+cap "a_543_118#" "a_543_754#" 11.3678
+cap "a_111_n723#" "a_111_n615#" 86.2066
+cap "a_63_n518#" "a_15_n87#" 4.90233
+cap "a_n369_21#" "a_n465_549#" 13.3939
+cap "a_351_n1154#" "a_447_n1154#" 479.458
+cap "a_n129_754#" "w_n743_n1373#" 12.2254
+cap "a_n81_n615#" "a_111_n615#" 29.6522
+cap "a_159_118#" "a_111_549#" 4.90233
+cap "a_n225_118#" "w_n743_n1373#" 4.61835
+cap "a_63_754#" "w_n743_n1373#" 12.2254
+cap "a_n81_n723#" "a_n177_n1251#" 13.3939
+cap "a_n369_1185#" "a_n177_1185#" 29.6522
+cap "a_447_754#" "a_399_1185#" 4.90233
+cap "a_n33_n518#" "a_15_n87#" 4.90233
+cap "a_n81_657#" "a_n273_657#" 29.6522
+cap "a_159_n518#" "a_159_118#" 11.3678
+cap "a_n321_118#" "a_n369_21#" 4.90233
+cap "a_n561_n87#" "a_n465_n615#" 13.3939
+cap "a_63_n1154#" "a_159_n1154#" 479.458
+cap "a_n129_n518#" "w_n743_n1373#" 4.61835
+cap "a_207_21#" "a_111_549#" 13.3939
+cap "a_n513_118#" "a_n417_118#" 479.458
+cap "a_n225_118#" "a_n273_549#" 4.90233
+cap "a_n177_n87#" "w_n743_n1373#" 37.5333
+cap "a_n129_n518#" "a_n129_n1154#" 11.3678
+cap "a_n417_n518#" "a_n417_118#" 11.3678
+cap "a_303_n723#" "a_255_n1154#" 4.90233
+cap "a_255_n518#" "a_351_n518#" 479.458
+cap "a_n417_n518#" "a_n321_n518#" 479.458
+cap "a_n417_754#" "a_n513_754#" 479.458
+cap "a_63_118#" "a_15_21#" 4.90233
+cap "a_495_549#" "a_495_657#" 86.2066
+cap "a_n273_657#" "a_n177_1185#" 13.3939
+cap "a_n321_n1154#" "w_n743_n1373#" 11.99
+cap "a_n417_754#" "w_n743_n1373#" 12.2254
+cap "a_303_n615#" "a_207_n87#" 13.3939
+cap "a_495_n723#" "w_n743_n1373#" 86.1771
+cap "a_15_1185#" "a_63_754#" 4.90233
+cap "a_111_n723#" "a_63_n1154#" 4.90233
+cap "a_447_754#" "a_447_118#" 11.3678
+cap "a_351_754#" "a_255_754#" 479.458
+cap "a_n369_21#" "a_n369_n87#" 86.2066
+cap "a_303_n615#" "w_n743_n1373#" 37.7398
+cap "a_159_118#" "w_n743_n1373#" 4.61835
+cap "a_n177_21#" "a_15_21#" 29.6522
+cap "a_15_n1251#" "a_15_n87#" 6.32145
+cap "a_351_n518#" "a_399_n87#" 4.90233
+cap "a_111_549#" "a_111_657#" 86.2066
+cap "a_n273_n615#" "a_n321_n518#" 4.90233
+cap "a_543_754#" "w_n743_n1373#" 155.482
+cap "a_n177_n1251#" "w_n743_n1373#" 82.1969
+cap "a_447_n518#" "w_n743_n1373#" 4.61835
+cap "a_207_21#" "a_207_n87#" 86.2066
+cap "a_495_549#" "a_495_n615#" 6.32145
+cap "a_n465_657#" "a_n465_549#" 86.2066
+cap "a_n177_n1251#" "a_n129_n1154#" 4.90233
+cap "a_n605_n1154#" "a_n513_n1154#" 479.458
+cap "a_159_n518#" "a_159_n1154#" 11.3678
+cap "a_303_n723#" "a_399_n1251#" 13.3939
+cap "a_n81_n723#" "a_111_n723#" 29.6522
+cap "a_207_21#" "w_n743_n1373#" 37.7398
+cap "a_543_n518#" "a_495_n615#" 4.90233
+cap "a_n81_n723#" "a_n81_n615#" 86.2066
+cap "a_n81_657#" "w_n743_n1373#" 47.6413
+cap "a_207_21#" "a_399_21#" 29.6522
+cap "a_255_n1154#" "a_351_n1154#" 479.458
+cap "a_n273_n615#" "a_n81_n615#" 29.6522
+cap "a_111_549#" "a_303_549#" 29.6522
+cap "a_n225_754#" "a_n321_754#" 479.458
+cap "a_n321_118#" "a_n321_754#" 11.3678
+cap "a_447_n1154#" "w_n743_n1373#" 11.99
+cap "a_n273_n723#" "a_n369_n1251#" 13.3939
+cap "a_63_118#" "a_111_549#" 4.90233
+cap "a_n561_1185#" "a_n369_1185#" 29.6522
+cap "w_n743_n1373#" "a_n177_1185#" 82.1969
+cap "a_63_n518#" "a_111_n615#" 4.90233
+cap "a_n513_n518#" "a_n465_n615#" 4.90233
+cap "a_n129_n518#" "a_n177_n87#" 4.90233
+cap "a_447_754#" "a_495_657#" 4.90233
+cap "a_159_n1154#" "w_n743_n1373#" 11.99
+cap "a_n33_n1154#" "a_63_n1154#" 479.458
+cap "a_n417_118#" "w_n743_n1373#" 4.61835
+cap "w_n743_n1373#" "a_111_657#" 47.6413
+cap "a_15_21#" "a_n81_549#" 13.3939
+cap "a_n321_n518#" "w_n743_n1373#" 4.61835
+cap "a_n225_n518#" "a_n225_n1154#" 11.3678
+cap "a_n33_118#" "a_63_118#" 479.458
+cap "a_n605_118#" "a_n513_118#" 479.458
+cap "a_15_1185#" "a_n81_657#" 13.3939
+cap "a_n561_n87#" "w_n743_n1373#" 76.5297
+cap "a_399_n1251#" "a_351_n1154#" 4.90233
+cap "a_159_n518#" "a_255_n518#" 479.458
+cap "a_n513_n518#" "a_n513_118#" 11.3678
+cap "a_351_754#" "w_n743_n1373#" 12.2254
+cap "a_n369_21#" "a_n369_1185#" 6.32145
+cap "a_543_n518#" "a_543_n1154#" 11.3678
+cap "a_n513_n518#" "a_n417_n518#" 479.458
+cap "a_n605_n518#" "a_n561_n87#" 4.90233
+cap "a_n129_754#" "a_n81_657#" 4.90233
+cap "a_111_n615#" "a_15_n87#" 13.3939
+cap "a_n513_n1154#" "w_n743_n1373#" 11.99
+cap "a_447_118#" "a_543_118#" 479.458
+cap "a_159_754#" "a_255_754#" 479.458
+cap "a_111_n723#" "w_n743_n1373#" 47.4348
+cap "a_207_n1251#" "a_159_n1154#" 4.90233
+cap "a_n81_n723#" "a_n33_n1154#" 4.90233
+cap "a_351_754#" "a_351_118#" 11.3678
+cap "a_n561_21#" "a_n561_n87#" 86.2066
+cap "a_15_1185#" "a_n177_1185#" 29.6522
+cap "a_n81_n615#" "w_n743_n1373#" 37.7398
+cap "a_303_549#" "w_n743_n1373#" 37.5333
+cap "a_255_n518#" "a_207_n87#" 4.90233
+cap "a_n177_n1251#" "a_n177_n87#" 6.32145
+cap "a_399_21#" "a_303_549#" 13.3939
+cap "a_n129_754#" "a_n177_1185#" 4.90233
+cap "a_15_1185#" "a_111_657#" 13.3939
+cap "a_351_118#" "a_303_549#" 4.90233
+cap "a_63_118#" "w_n743_n1373#" 4.61835
+cap "a_207_1185#" "a_255_754#" 4.90233
+cap "a_n605_754#" "a_n561_1185#" 4.90233
+cap "a_15_21#" "a_15_n87#" 86.2066
+cap "a_255_n518#" "w_n743_n1373#" 4.61835
+cap "a_n465_n723#" "a_n513_n1154#" 4.90233
+cap "a_63_n518#" "a_63_n1154#" 11.3678
+cap "a_n561_n1251#" "a_n369_n1251#" 29.6522
+cap "a_111_n723#" "a_207_n1251#" 13.3939
+cap "a_n605_118#" "a_n605_754#" 11.3678
+cap "a_n273_n723#" "a_n81_n723#" 29.6522
+cap "a_303_657#" "a_255_754#" 4.90233
+cap "a_n177_21#" "w_n743_n1373#" 37.7398
+cap "a_n273_n723#" "a_n273_n615#" 86.2066
+cap "a_63_754#" "a_111_657#" 4.90233
+cap "a_207_n87#" "a_399_n87#" 29.6522
+cap "a_399_1185#" "w_n743_n1373#" 104.22
+cap "a_n81_549#" "a_111_549#" 29.6522
+cap "a_207_21#" "a_159_118#" 4.90233
+cap "a_399_1185#" "a_399_21#" 6.32145
+cap "a_255_n1154#" "w_n743_n1373#" 11.99
+cap "a_399_n87#" "w_n743_n1373#" 59.5568
+cap "a_n513_754#" "a_n561_1185#" 4.90233
+cap "a_495_n723#" "a_447_n1154#" 4.90233
+cap "a_399_21#" "a_399_n87#" 86.2066
+cap "a_n33_118#" "a_n81_549#" 4.90233
+cap "w_n743_n1373#" "a_n561_1185#" 121.193
+cap "a_n321_754#" "a_n369_1185#" 4.90233
+cap "a_n177_21#" "a_n273_549#" 13.3939
+cap "a_n465_657#" "a_n369_1185#" 13.3939
+cap "a_n33_n1154#" "w_n743_n1373#" 11.99
+cap "a_n129_n1154#" "a_n33_n1154#" 479.458
+cap "a_n605_118#" "w_n743_n1373#" 147.596
+cap "a_n417_754#" "a_n417_118#" 11.3678
+cap "a_n513_n518#" "w_n743_n1373#" 4.61835
+cap "a_n129_118#" "a_n33_118#" 479.458
+cap "a_n321_n518#" "a_n321_n1154#" 11.3678
+cap "a_447_118#" "w_n743_n1373#" 4.61835
+cap "w_n743_n1373#" "a_159_754#" 12.2254
+cap "a_n465_n615#" "a_n465_549#" 6.32145
+cap "a_n561_21#" "a_n561_1185#" 6.32145
+cap "a_n369_21#" "w_n743_n1373#" 37.7398
+cap "a_207_n1251#" "a_255_n1154#" 4.90233
+cap "a_63_n518#" "a_159_n518#" 479.458
+cap "a_n605_n518#" "a_n605_118#" 11.3678
+cap "a_447_n518#" "a_447_n1154#" 11.3678
+cap "a_399_21#" "a_447_118#" 4.90233
+cap "a_63_118#" "a_63_754#" 11.3678
+cap "a_n81_n615#" "a_n129_n518#" 4.90233
+cap "a_n605_n518#" "a_n513_n518#" 479.458
+cap "a_n225_118#" "a_n177_21#" 4.90233
+cap "a_n561_21#" "a_n605_118#" 4.90233
+cap "a_n321_754#" "a_n273_657#" 4.90233
+cap "a_n81_n615#" "a_n177_n87#" 13.3939
+cap "a_n273_657#" "a_n465_657#" 29.6522
+cap "a_399_n1251#" "w_n743_n1373#" 104.22
+cap "a_n273_n723#" "w_n743_n1373#" 47.4348
+cap "a_15_n1251#" "a_63_n1154#" 4.90233
+cap "a_351_118#" "a_447_118#" 479.458
+cap "a_255_118#" "a_255_754#" 11.3678
+cap "a_n561_n1251#" "a_n605_n1154#" 4.90233
+cap "a_495_549#" "a_543_118#" 4.90233
+cap "a_n513_118#" "a_n465_549#" 4.90233
+cap "a_n81_549#" "w_n743_n1373#" 37.5333
+cap "a_207_1185#" "w_n743_n1373#" 82.1969
+cap "a_n33_118#" "a_n33_n518#" 11.3678
+cap "a_n561_21#" "a_n369_21#" 29.6522
+cap "a_n369_n1251#" "a_n369_n87#" 6.32145
+cap "a_n81_657#" "a_n177_1185#" 13.3939
+cap "a_543_n518#" "a_543_118#" 11.3678
+cap "a_n369_21#" "a_n273_549#" 13.3939
+cap "a_303_657#" "w_n743_n1373#" 47.6413
+cap "a_303_n615#" "a_303_549#" 6.32145
+cap "a_n129_118#" "w_n743_n1373#" 4.61835
+cap "a_n81_657#" "a_111_657#" 29.6522
+cap "a_63_n518#" "w_n743_n1373#" 4.61835
+cap "a_n177_21#" "a_n177_n87#" 86.2066
+cap "a_n369_n1251#" "a_n417_n1154#" 4.90233
+cap "a_207_n1251#" "a_399_n1251#" 29.6522
+cap "a_n81_n723#" "a_15_n1251#" 13.3939
+cap "a_n465_n723#" "a_n273_n723#" 29.6522
+cap "a_n273_549#" "a_n81_549#" 29.6522
+cap "a_255_n518#" "a_303_n615#" 4.90233
+cap "a_63_118#" "a_159_118#" 479.458
+cap "a_n369_n87#" "a_n465_n615#" 13.3939
+cap "a_15_n87#" "a_207_n87#" 29.6522
+cap "a_n225_754#" "a_n273_657#" 4.90233
+cap "a_495_657#" "w_n743_n1373#" 86.3837
+cap "a_63_754#" "a_159_754#" 479.458
+cap "a_15_1185#" "a_207_1185#" 29.6522
+cap "a_n33_n518#" "w_n743_n1373#" 4.61835
+cap "a_207_21#" "a_303_549#" 13.3939
+cap "a_15_n87#" "w_n743_n1373#" 37.5333
+cap "a_303_n723#" "a_351_n1154#" 4.90233
+cap "a_n465_657#" "a_n513_754#" 4.90233
+cap "a_n417_n518#" "a_n369_n87#" 4.90233
+cap "a_n225_n1154#" "w_n743_n1373#" 11.99
+cap "a_n321_754#" "w_n743_n1373#" 12.2254
+cap "a_303_n615#" "a_399_n87#" 13.3939
+cap "a_n465_657#" "w_n743_n1373#" 69.919
+cap "a_n561_n1251#" "w_n743_n1373#" 121.193
+cap "a_n225_n1154#" "a_n129_n1154#" 479.458
+cap "a_111_n723#" "a_159_n1154#" 4.90233
+cap "a_n129_118#" "a_n129_754#" 11.3678
+cap "a_495_n615#" "w_n743_n1373#" 76.4821
+cap "a_n225_118#" "a_n129_118#" 479.458
+cap "a_255_118#" "w_n743_n1373#" 4.61835
+cap "a_n417_n518#" "a_n417_n1154#" 11.3678
+cap "a_495_549#" "w_n743_n1373#" 76.2756
+cap "a_351_n518#" "a_351_n1154#" 11.3678
+cap "a_447_n518#" "a_399_n87#" 4.90233
+cap "a_n33_118#" "a_n33_754#" 11.3678
+cap "a_n273_n615#" "a_n225_n518#" 4.90233
+cap "a_495_549#" "a_399_21#" 13.3939
+cap "a_n273_n615#" "a_n369_n87#" 13.3939
+cap "a_15_n1251#" "w_n743_n1373#" 82.1969
+cap "a_n465_549#" "w_n743_n1373#" 59.8109
+cap "a_255_118#" "a_351_118#" 479.458
+cap "a_543_n518#" "w_n743_n1373#" 147.596
+cap "a_159_118#" "a_159_754#" 11.3678
+cap "a_n273_n723#" "a_n321_n1154#" 4.90233
+cap "a_495_n723#" "a_399_n1251#" 13.3939
+cap "a_n465_n723#" "a_n561_n1251#" 13.3939
+cap "a_n129_118#" "a_n129_n518#" 11.3678
+cap "a_n177_21#" "a_n177_1185#" 6.32145
+cap "a_447_n518#" "a_447_118#" 11.3678
+cap "a_n561_21#" "a_n465_549#" 13.3939
+cap "a_n225_754#" "w_n743_n1373#" 12.2254
+cap "a_111_n615#" "a_111_549#" 6.32145
+cap "a_n321_118#" "w_n743_n1373#" 4.61835
+cap "a_n465_549#" "a_n273_549#" 29.6522
+cap "a_543_n1154#" "w_n743_n1373#" 155.206
+cap "a_15_n1251#" "a_207_n1251#" 29.6522
+cap "a_159_n1154#" "a_255_n1154#" 479.458
+cap "a_n33_754#" "w_n743_n1373#" 12.2254
+cap "a_n273_n723#" "a_n177_n1251#" 13.3939
+cap "a_n129_n518#" "a_n33_n518#" 479.458
+cap "a_351_754#" "a_399_1185#" 4.90233
+cap "a_159_n518#" "a_111_n615#" 4.90233
+cap "a_n417_n518#" "a_n465_n615#" 4.90233
+cap "a_n177_n87#" "a_15_n87#" 29.6522
+cap "a_15_21#" "a_111_549#" 13.3939
+cap "a_207_21#" "a_207_1185#" 6.32145
+cap "a_n225_n518#" "w_n743_n1373#" 4.61835
+cap "a_n321_118#" "a_n273_549#" 4.90233
+cap "a_n81_657#" "a_n81_549#" 86.2066
+cap "a_n369_n87#" "w_n743_n1373#" 37.5333
+cap "a_399_n1251#" "a_447_n1154#" 4.90233
+cap "a_447_754#" "w_n743_n1373#" 12.2254
+cap "a_n273_657#" "a_n369_1185#" 13.3939
+cap "a_n33_118#" "a_15_21#" 4.90233
+cap "a_n369_21#" "a_n417_118#" 4.90233
+cap "a_159_754#" "a_111_657#" 4.90233
+cap "a_n513_n518#" "a_n561_n87#" 4.90233
+cap "a_n417_n1154#" "w_n743_n1373#" 11.99
+cap "a_n273_n615#" "a_n465_n615#" 29.6522
+cap "a_111_n615#" "a_207_n87#" 13.3939
+cap "a_n225_754#" "a_n129_754#" 479.458
+cap "a_n417_754#" "a_n465_657#" 4.90233
+cap "a_n417_754#" "a_n321_754#" 479.458
+cap "a_15_1185#" "a_n33_754#" 4.90233
+cap "a_303_n723#" "w_n743_n1373#" 47.4348
+cap "a_n321_n1154#" "a_n225_n1154#" 479.458
+cap "a_495_657#" "a_543_754#" 4.90233
+cap "a_n225_118#" "a_n225_754#" 11.3678
+cap "a_111_n615#" "w_n743_n1373#" 37.7398
+cap "a_n321_118#" "a_n225_118#" 479.458
+cap "a_n513_n518#" "a_n513_n1154#" 11.3678
+cap "a_n129_754#" "a_n33_754#" 479.458
+cap "a_495_n723#" "a_495_n615#" 86.2066
+cap "a_255_n518#" "a_255_n1154#" 11.3678
+cap "a_207_1185#" "a_111_657#" 13.3939
+cap "a_303_n615#" "a_495_n615#" 29.6522
+cap "a_n33_754#" "a_63_754#" 479.458
+cap "a_n369_n1251#" "w_n743_n1373#" 82.1969
+cap "a_159_118#" "a_255_118#" 479.458
+cap "a_351_n518#" "w_n743_n1373#" 4.61835
+cap "a_303_657#" "a_111_657#" 29.6522
+cap "a_n177_n1251#" "a_n225_n1154#" 4.90233
+cap "a_n465_n723#" "a_n417_n1154#" 4.90233
+cap "a_303_n723#" "a_207_n1251#" 13.3939
+cap "a_n225_118#" "a_n225_n518#" 11.3678
+cap "a_351_754#" "a_303_657#" 4.90233
+cap "a_15_21#" "w_n743_n1373#" 37.7398
+cap "a_447_n518#" "a_495_n615#" 4.90233
+cap "a_351_n518#" "a_351_118#" 11.3678
+cap "a_n81_n615#" "a_n81_549#" 6.32145
+cap "a_207_21#" "a_255_118#" 4.90233
+cap "a_351_n1154#" "w_n743_n1373#" 11.99
+cap "a_n465_n615#" "w_n743_n1373#" 60.0175
+cap "a_n177_n1251#" "a_15_n1251#" 29.6522
+cap "a_n369_21#" "a_n177_21#" 29.6522
+cap "a_303_657#" "a_303_549#" 86.2066
+cap "a_447_n518#" "a_543_n518#" 479.458
+cap "a_n465_n723#" "a_n369_n1251#" 13.3939
+cap "a_495_n723#" "a_543_n1154#" 4.90233
+cap "a_n225_n518#" "a_n129_n518#" 479.458
+cap "w_n743_n1373#" "a_n369_1185#" 82.1969
+cap "a_n225_n518#" "a_n177_n87#" 4.90233
+cap "a_n513_118#" "a_n513_754#" 11.3678
+cap "a_63_n1154#" "w_n743_n1373#" 11.99
+cap "a_n513_118#" "w_n743_n1373#" 4.61835
+cap "a_n369_n87#" "a_n177_n87#" 29.6522
+cap "a_n417_n518#" "w_n743_n1373#" 4.61835
+cap "a_n177_21#" "a_n81_549#" 13.3939
+cap "a_15_21#" "a_15_1185#" 6.32145
+cap "a_543_118#" "w_n743_n1373#" 147.448
+cap "w_n743_n1373#" "a_255_754#" 12.2254
+cap "a_63_118#" "a_63_n518#" 11.3678
+cap "a_n465_n723#" "a_n465_n615#" 86.2066
+cap "a_399_n1251#" "a_399_n87#" 6.32145
+cap "a_n561_n1251#" "a_n561_n87#" 6.32145
+cap "a_399_1185#" "a_207_1185#" 29.6522
+cap "a_n81_n615#" "a_n33_n518#" 4.90233
+cap "a_n273_657#" "w_n743_n1373#" 47.6413
+cap "a_n129_118#" "a_n177_21#" 4.90233
+cap "a_n561_21#" "a_n513_118#" 4.90233
+cap "a_n81_n615#" "a_15_n87#" 13.3939
+cap "a_n605_n1154#" "w_n743_n1373#" 154.967
+cap "a_303_657#" "a_399_1185#" 13.3939
+cap "a_n81_n723#" "w_n743_n1373#" 47.4348
+cap "a_n417_n1154#" "a_n321_n1154#" 479.458
+cap "a_n561_n1251#" "a_n513_n1154#" 4.90233
+cap "a_n81_n723#" "a_n129_n1154#" 4.90233
+cap "a_n417_118#" "a_n465_549#" 4.90233
+cap "a_303_n723#" "a_495_n723#" 29.6522
+cap "a_n273_n615#" "w_n743_n1373#" 37.7398
+cap "a_111_549#" "w_n743_n1373#" 37.5333
+cap "a_n33_754#" "a_n81_657#" 4.90233
+cap "a_n605_n518#" "a_n605_n1154#" 11.3678
+cap "a_303_n723#" "a_303_n615#" 86.2066
+cap "a_159_n518#" "a_207_n87#" 4.90233
+cap "a_447_754#" "a_543_754#" 479.458
+cap "a_n225_754#" "a_n177_1185#" 4.90233
+cap "a_447_n1154#" "a_543_n1154#" 479.458
+cap "a_n605_754#" "a_n513_754#" 479.458
+cap "a_111_n615#" "a_303_n615#" 29.6522
+cap "a_255_118#" "a_303_549#" 4.90233
+cap "a_n33_118#" "w_n743_n1373#" 4.61835
+cap "a_n273_657#" "a_n273_549#" 86.2066
+cap "a_207_1185#" "a_159_754#" 4.90233
+cap "a_159_n518#" "w_n743_n1373#" 4.61835
+cap "a_n605_754#" "w_n743_n1373#" 155.055
+cap "a_495_657#" "a_399_1185#" 13.3939
+cap "a_495_549#" "a_303_549#" 29.6522
+cap "a_n369_n1251#" "a_n321_n1154#" 4.90233
+cap "a_n321_118#" "a_n417_118#" 479.458
+cap "a_111_n723#" "a_15_n1251#" 13.3939
+device msubckt sky130_fd_pr__pfet_01v8 513 -1154 514 -1153 l=30 w=400 "w_n743_n1373#" "a_495_n723#" 60 0 "a_447_n1154#" 400 0 "a_543_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 -1154 418 -1153 l=30 w=400 "w_n743_n1373#" "a_399_n1251#" 60 0 "a_351_n1154#" 400 0 "a_447_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 -1154 322 -1153 l=30 w=400 "w_n743_n1373#" "a_303_n723#" 60 0 "a_255_n1154#" 400 0 "a_351_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -1154 226 -1153 l=30 w=400 "w_n743_n1373#" "a_207_n1251#" 60 0 "a_159_n1154#" 400 0 "a_255_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -1154 130 -1153 l=30 w=400 "w_n743_n1373#" "a_111_n723#" 60 0 "a_63_n1154#" 400 0 "a_159_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -1154 34 -1153 l=30 w=400 "w_n743_n1373#" "a_15_n1251#" 60 0 "a_n33_n1154#" 400 0 "a_63_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -1154 -62 -1153 l=30 w=400 "w_n743_n1373#" "a_n81_n723#" 60 0 "a_n129_n1154#" 400 0 "a_n33_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -1154 -158 -1153 l=30 w=400 "w_n743_n1373#" "a_n177_n1251#" 60 0 "a_n225_n1154#" 400 0 "a_n129_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -1154 -254 -1153 l=30 w=400 "w_n743_n1373#" "a_n273_n723#" 60 0 "a_n321_n1154#" 400 0 "a_n225_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -1154 -350 -1153 l=30 w=400 "w_n743_n1373#" "a_n369_n1251#" 60 0 "a_n417_n1154#" 400 0 "a_n321_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 -1154 -446 -1153 l=30 w=400 "w_n743_n1373#" "a_n465_n723#" 60 0 "a_n513_n1154#" 400 0 "a_n417_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 -1154 -542 -1153 l=30 w=400 "w_n743_n1373#" "a_n561_n1251#" 60 0 "a_n605_n1154#" 400 0 "a_n513_n1154#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 -518 514 -517 l=30 w=400 "w_n743_n1373#" "a_495_n615#" 60 0 "a_447_n518#" 400 0 "a_543_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 -518 418 -517 l=30 w=400 "w_n743_n1373#" "a_399_n87#" 60 0 "a_351_n518#" 400 0 "a_447_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 -518 322 -517 l=30 w=400 "w_n743_n1373#" "a_303_n615#" 60 0 "a_255_n518#" 400 0 "a_351_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -518 226 -517 l=30 w=400 "w_n743_n1373#" "a_207_n87#" 60 0 "a_159_n518#" 400 0 "a_255_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -518 130 -517 l=30 w=400 "w_n743_n1373#" "a_111_n615#" 60 0 "a_63_n518#" 400 0 "a_159_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -518 34 -517 l=30 w=400 "w_n743_n1373#" "a_15_n87#" 60 0 "a_n33_n518#" 400 0 "a_63_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -518 -62 -517 l=30 w=400 "w_n743_n1373#" "a_n81_n615#" 60 0 "a_n129_n518#" 400 0 "a_n33_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -518 -158 -517 l=30 w=400 "w_n743_n1373#" "a_n177_n87#" 60 0 "a_n225_n518#" 400 0 "a_n129_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -518 -254 -517 l=30 w=400 "w_n743_n1373#" "a_n273_n615#" 60 0 "a_n321_n518#" 400 0 "a_n225_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -518 -350 -517 l=30 w=400 "w_n743_n1373#" "a_n369_n87#" 60 0 "a_n417_n518#" 400 0 "a_n321_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 -518 -446 -517 l=30 w=400 "w_n743_n1373#" "a_n465_n615#" 60 0 "a_n513_n518#" 400 0 "a_n417_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 -518 -542 -517 l=30 w=400 "w_n743_n1373#" "a_n561_n87#" 60 0 "a_n605_n518#" 400 0 "a_n513_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 118 514 119 l=30 w=400 "w_n743_n1373#" "a_495_549#" 60 0 "a_447_118#" 400 0 "a_543_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 118 418 119 l=30 w=400 "w_n743_n1373#" "a_399_21#" 60 0 "a_351_118#" 400 0 "a_447_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 118 322 119 l=30 w=400 "w_n743_n1373#" "a_303_549#" 60 0 "a_255_118#" 400 0 "a_351_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 118 226 119 l=30 w=400 "w_n743_n1373#" "a_207_21#" 60 0 "a_159_118#" 400 0 "a_255_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 118 130 119 l=30 w=400 "w_n743_n1373#" "a_111_549#" 60 0 "a_63_118#" 400 0 "a_159_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 118 34 119 l=30 w=400 "w_n743_n1373#" "a_15_21#" 60 0 "a_n33_118#" 400 0 "a_63_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 118 -62 119 l=30 w=400 "w_n743_n1373#" "a_n81_549#" 60 0 "a_n129_118#" 400 0 "a_n33_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 118 -158 119 l=30 w=400 "w_n743_n1373#" "a_n177_21#" 60 0 "a_n225_118#" 400 0 "a_n129_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 118 -254 119 l=30 w=400 "w_n743_n1373#" "a_n273_549#" 60 0 "a_n321_118#" 400 0 "a_n225_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 118 -350 119 l=30 w=400 "w_n743_n1373#" "a_n369_21#" 60 0 "a_n417_118#" 400 0 "a_n321_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 118 -446 119 l=30 w=400 "w_n743_n1373#" "a_n465_549#" 60 0 "a_n513_118#" 400 0 "a_n417_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 118 -542 119 l=30 w=400 "w_n743_n1373#" "a_n561_21#" 60 0 "a_n605_118#" 400 0 "a_n513_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 754 514 755 l=30 w=400 "w_n743_n1373#" "a_495_657#" 60 0 "a_447_754#" 400 0 "a_543_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 754 418 755 l=30 w=400 "w_n743_n1373#" "a_399_1185#" 60 0 "a_351_754#" 400 0 "a_447_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 754 322 755 l=30 w=400 "w_n743_n1373#" "a_303_657#" 60 0 "a_255_754#" 400 0 "a_351_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 754 226 755 l=30 w=400 "w_n743_n1373#" "a_207_1185#" 60 0 "a_159_754#" 400 0 "a_255_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 754 130 755 l=30 w=400 "w_n743_n1373#" "a_111_657#" 60 0 "a_63_754#" 400 0 "a_159_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 754 34 755 l=30 w=400 "w_n743_n1373#" "a_15_1185#" 60 0 "a_n33_754#" 400 0 "a_63_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 754 -62 755 l=30 w=400 "w_n743_n1373#" "a_n81_657#" 60 0 "a_n129_754#" 400 0 "a_n33_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 754 -158 755 l=30 w=400 "w_n743_n1373#" "a_n177_1185#" 60 0 "a_n225_754#" 400 0 "a_n129_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 754 -254 755 l=30 w=400 "w_n743_n1373#" "a_n273_657#" 60 0 "a_n321_754#" 400 0 "a_n225_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 754 -350 755 l=30 w=400 "w_n743_n1373#" "a_n369_1185#" 60 0 "a_n417_754#" 400 0 "a_n321_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 754 -446 755 l=30 w=400 "w_n743_n1373#" "a_n465_657#" 60 0 "a_n513_754#" 400 0 "a_n417_754#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 754 -542 755 l=30 w=400 "w_n743_n1373#" "a_n561_1185#" 60 0 "a_n605_754#" 400 0 "a_n513_754#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.mag b/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.mag
new file mode 100644
index 0000000..aa8785e
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_8DK6RJ.mag
@@ -0,0 +1,1531 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -557 1235 -499 1241
+rect -365 1235 -307 1241
+rect -173 1235 -115 1241
+rect 19 1235 77 1241
+rect 211 1235 269 1241
+rect 403 1235 461 1241
+rect -557 1201 -545 1235
+rect -365 1201 -353 1235
+rect -173 1201 -161 1235
+rect 19 1201 31 1235
+rect 211 1201 223 1235
+rect 403 1201 415 1235
+rect -557 1195 -499 1201
+rect -365 1195 -307 1201
+rect -173 1195 -115 1201
+rect 19 1195 77 1201
+rect 211 1195 269 1201
+rect 403 1195 461 1201
+rect -461 707 -403 713
+rect -269 707 -211 713
+rect -77 707 -19 713
+rect 115 707 173 713
+rect 307 707 365 713
+rect 499 707 557 713
+rect -461 673 -449 707
+rect -269 673 -257 707
+rect -77 673 -65 707
+rect 115 673 127 707
+rect 307 673 319 707
+rect 499 673 511 707
+rect -461 667 -403 673
+rect -269 667 -211 673
+rect -77 667 -19 673
+rect 115 667 173 673
+rect 307 667 365 673
+rect 499 667 557 673
+rect -461 599 -403 605
+rect -269 599 -211 605
+rect -77 599 -19 605
+rect 115 599 173 605
+rect 307 599 365 605
+rect 499 599 557 605
+rect -461 565 -449 599
+rect -269 565 -257 599
+rect -77 565 -65 599
+rect 115 565 127 599
+rect 307 565 319 599
+rect 499 565 511 599
+rect -461 559 -403 565
+rect -269 559 -211 565
+rect -77 559 -19 565
+rect 115 559 173 565
+rect 307 559 365 565
+rect 499 559 557 565
+rect -557 71 -499 77
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect -557 37 -545 71
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect -557 31 -499 37
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect -557 -37 -499 -31
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect -557 -71 -545 -37
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect -557 -77 -499 -71
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect -461 -565 -403 -559
+rect -269 -565 -211 -559
+rect -77 -565 -19 -559
+rect 115 -565 173 -559
+rect 307 -565 365 -559
+rect 499 -565 557 -559
+rect -461 -599 -449 -565
+rect -269 -599 -257 -565
+rect -77 -599 -65 -565
+rect 115 -599 127 -565
+rect 307 -599 319 -565
+rect 499 -599 511 -565
+rect -461 -605 -403 -599
+rect -269 -605 -211 -599
+rect -77 -605 -19 -599
+rect 115 -605 173 -599
+rect 307 -605 365 -599
+rect 499 -605 557 -599
+rect -461 -673 -403 -667
+rect -269 -673 -211 -667
+rect -77 -673 -19 -667
+rect 115 -673 173 -667
+rect 307 -673 365 -667
+rect 499 -673 557 -667
+rect -461 -707 -449 -673
+rect -269 -707 -257 -673
+rect -77 -707 -65 -673
+rect 115 -707 127 -673
+rect 307 -707 319 -673
+rect 499 -707 511 -673
+rect -461 -713 -403 -707
+rect -269 -713 -211 -707
+rect -77 -713 -19 -707
+rect 115 -713 173 -707
+rect 307 -713 365 -707
+rect 499 -713 557 -707
+rect -557 -1201 -499 -1195
+rect -365 -1201 -307 -1195
+rect -173 -1201 -115 -1195
+rect 19 -1201 77 -1195
+rect 211 -1201 269 -1195
+rect 403 -1201 461 -1195
+rect -557 -1235 -545 -1201
+rect -365 -1235 -353 -1201
+rect -173 -1235 -161 -1201
+rect 19 -1235 31 -1201
+rect 211 -1235 223 -1201
+rect 403 -1235 415 -1201
+rect -557 -1241 -499 -1235
+rect -365 -1241 -307 -1235
+rect -173 -1241 -115 -1235
+rect 19 -1241 77 -1235
+rect 211 -1241 269 -1235
+rect 403 -1241 461 -1235
+<< nwell >>
+rect -743 -1373 743 1373
+<< pmos >>
+rect -543 754 -513 1154
+rect -447 754 -417 1154
+rect -351 754 -321 1154
+rect -255 754 -225 1154
+rect -159 754 -129 1154
+rect -63 754 -33 1154
+rect 33 754 63 1154
+rect 129 754 159 1154
+rect 225 754 255 1154
+rect 321 754 351 1154
+rect 417 754 447 1154
+rect 513 754 543 1154
+rect -543 118 -513 518
+rect -447 118 -417 518
+rect -351 118 -321 518
+rect -255 118 -225 518
+rect -159 118 -129 518
+rect -63 118 -33 518
+rect 33 118 63 518
+rect 129 118 159 518
+rect 225 118 255 518
+rect 321 118 351 518
+rect 417 118 447 518
+rect 513 118 543 518
+rect -543 -518 -513 -118
+rect -447 -518 -417 -118
+rect -351 -518 -321 -118
+rect -255 -518 -225 -118
+rect -159 -518 -129 -118
+rect -63 -518 -33 -118
+rect 33 -518 63 -118
+rect 129 -518 159 -118
+rect 225 -518 255 -118
+rect 321 -518 351 -118
+rect 417 -518 447 -118
+rect 513 -518 543 -118
+rect -543 -1154 -513 -754
+rect -447 -1154 -417 -754
+rect -351 -1154 -321 -754
+rect -255 -1154 -225 -754
+rect -159 -1154 -129 -754
+rect -63 -1154 -33 -754
+rect 33 -1154 63 -754
+rect 129 -1154 159 -754
+rect 225 -1154 255 -754
+rect 321 -1154 351 -754
+rect 417 -1154 447 -754
+rect 513 -1154 543 -754
+<< pdiff >>
+rect -605 1142 -543 1154
+rect -605 766 -593 1142
+rect -559 766 -543 1142
+rect -605 754 -543 766
+rect -513 1142 -447 1154
+rect -513 766 -497 1142
+rect -463 766 -447 1142
+rect -513 754 -447 766
+rect -417 1142 -351 1154
+rect -417 766 -401 1142
+rect -367 766 -351 1142
+rect -417 754 -351 766
+rect -321 1142 -255 1154
+rect -321 766 -305 1142
+rect -271 766 -255 1142
+rect -321 754 -255 766
+rect -225 1142 -159 1154
+rect -225 766 -209 1142
+rect -175 766 -159 1142
+rect -225 754 -159 766
+rect -129 1142 -63 1154
+rect -129 766 -113 1142
+rect -79 766 -63 1142
+rect -129 754 -63 766
+rect -33 1142 33 1154
+rect -33 766 -17 1142
+rect 17 766 33 1142
+rect -33 754 33 766
+rect 63 1142 129 1154
+rect 63 766 79 1142
+rect 113 766 129 1142
+rect 63 754 129 766
+rect 159 1142 225 1154
+rect 159 766 175 1142
+rect 209 766 225 1142
+rect 159 754 225 766
+rect 255 1142 321 1154
+rect 255 766 271 1142
+rect 305 766 321 1142
+rect 255 754 321 766
+rect 351 1142 417 1154
+rect 351 766 367 1142
+rect 401 766 417 1142
+rect 351 754 417 766
+rect 447 1142 513 1154
+rect 447 766 463 1142
+rect 497 766 513 1142
+rect 447 754 513 766
+rect 543 1142 605 1154
+rect 543 766 559 1142
+rect 593 766 605 1142
+rect 543 754 605 766
+rect -605 506 -543 518
+rect -605 130 -593 506
+rect -559 130 -543 506
+rect -605 118 -543 130
+rect -513 506 -447 518
+rect -513 130 -497 506
+rect -463 130 -447 506
+rect -513 118 -447 130
+rect -417 506 -351 518
+rect -417 130 -401 506
+rect -367 130 -351 506
+rect -417 118 -351 130
+rect -321 506 -255 518
+rect -321 130 -305 506
+rect -271 130 -255 506
+rect -321 118 -255 130
+rect -225 506 -159 518
+rect -225 130 -209 506
+rect -175 130 -159 506
+rect -225 118 -159 130
+rect -129 506 -63 518
+rect -129 130 -113 506
+rect -79 130 -63 506
+rect -129 118 -63 130
+rect -33 506 33 518
+rect -33 130 -17 506
+rect 17 130 33 506
+rect -33 118 33 130
+rect 63 506 129 518
+rect 63 130 79 506
+rect 113 130 129 506
+rect 63 118 129 130
+rect 159 506 225 518
+rect 159 130 175 506
+rect 209 130 225 506
+rect 159 118 225 130
+rect 255 506 321 518
+rect 255 130 271 506
+rect 305 130 321 506
+rect 255 118 321 130
+rect 351 506 417 518
+rect 351 130 367 506
+rect 401 130 417 506
+rect 351 118 417 130
+rect 447 506 513 518
+rect 447 130 463 506
+rect 497 130 513 506
+rect 447 118 513 130
+rect 543 506 605 518
+rect 543 130 559 506
+rect 593 130 605 506
+rect 543 118 605 130
+rect -605 -130 -543 -118
+rect -605 -506 -593 -130
+rect -559 -506 -543 -130
+rect -605 -518 -543 -506
+rect -513 -130 -447 -118
+rect -513 -506 -497 -130
+rect -463 -506 -447 -130
+rect -513 -518 -447 -506
+rect -417 -130 -351 -118
+rect -417 -506 -401 -130
+rect -367 -506 -351 -130
+rect -417 -518 -351 -506
+rect -321 -130 -255 -118
+rect -321 -506 -305 -130
+rect -271 -506 -255 -130
+rect -321 -518 -255 -506
+rect -225 -130 -159 -118
+rect -225 -506 -209 -130
+rect -175 -506 -159 -130
+rect -225 -518 -159 -506
+rect -129 -130 -63 -118
+rect -129 -506 -113 -130
+rect -79 -506 -63 -130
+rect -129 -518 -63 -506
+rect -33 -130 33 -118
+rect -33 -506 -17 -130
+rect 17 -506 33 -130
+rect -33 -518 33 -506
+rect 63 -130 129 -118
+rect 63 -506 79 -130
+rect 113 -506 129 -130
+rect 63 -518 129 -506
+rect 159 -130 225 -118
+rect 159 -506 175 -130
+rect 209 -506 225 -130
+rect 159 -518 225 -506
+rect 255 -130 321 -118
+rect 255 -506 271 -130
+rect 305 -506 321 -130
+rect 255 -518 321 -506
+rect 351 -130 417 -118
+rect 351 -506 367 -130
+rect 401 -506 417 -130
+rect 351 -518 417 -506
+rect 447 -130 513 -118
+rect 447 -506 463 -130
+rect 497 -506 513 -130
+rect 447 -518 513 -506
+rect 543 -130 605 -118
+rect 543 -506 559 -130
+rect 593 -506 605 -130
+rect 543 -518 605 -506
+rect -605 -766 -543 -754
+rect -605 -1142 -593 -766
+rect -559 -1142 -543 -766
+rect -605 -1154 -543 -1142
+rect -513 -766 -447 -754
+rect -513 -1142 -497 -766
+rect -463 -1142 -447 -766
+rect -513 -1154 -447 -1142
+rect -417 -766 -351 -754
+rect -417 -1142 -401 -766
+rect -367 -1142 -351 -766
+rect -417 -1154 -351 -1142
+rect -321 -766 -255 -754
+rect -321 -1142 -305 -766
+rect -271 -1142 -255 -766
+rect -321 -1154 -255 -1142
+rect -225 -766 -159 -754
+rect -225 -1142 -209 -766
+rect -175 -1142 -159 -766
+rect -225 -1154 -159 -1142
+rect -129 -766 -63 -754
+rect -129 -1142 -113 -766
+rect -79 -1142 -63 -766
+rect -129 -1154 -63 -1142
+rect -33 -766 33 -754
+rect -33 -1142 -17 -766
+rect 17 -1142 33 -766
+rect -33 -1154 33 -1142
+rect 63 -766 129 -754
+rect 63 -1142 79 -766
+rect 113 -1142 129 -766
+rect 63 -1154 129 -1142
+rect 159 -766 225 -754
+rect 159 -1142 175 -766
+rect 209 -1142 225 -766
+rect 159 -1154 225 -1142
+rect 255 -766 321 -754
+rect 255 -1142 271 -766
+rect 305 -1142 321 -766
+rect 255 -1154 321 -1142
+rect 351 -766 417 -754
+rect 351 -1142 367 -766
+rect 401 -1142 417 -766
+rect 351 -1154 417 -1142
+rect 447 -766 513 -754
+rect 447 -1142 463 -766
+rect 497 -1142 513 -766
+rect 447 -1154 513 -1142
+rect 543 -766 605 -754
+rect 543 -1142 559 -766
+rect 593 -1142 605 -766
+rect 543 -1154 605 -1142
+<< pdiffc >>
+rect -593 766 -559 1142
+rect -497 766 -463 1142
+rect -401 766 -367 1142
+rect -305 766 -271 1142
+rect -209 766 -175 1142
+rect -113 766 -79 1142
+rect -17 766 17 1142
+rect 79 766 113 1142
+rect 175 766 209 1142
+rect 271 766 305 1142
+rect 367 766 401 1142
+rect 463 766 497 1142
+rect 559 766 593 1142
+rect -593 130 -559 506
+rect -497 130 -463 506
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect 463 130 497 506
+rect 559 130 593 506
+rect -593 -506 -559 -130
+rect -497 -506 -463 -130
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+rect 463 -506 497 -130
+rect 559 -506 593 -130
+rect -593 -1142 -559 -766
+rect -497 -1142 -463 -766
+rect -401 -1142 -367 -766
+rect -305 -1142 -271 -766
+rect -209 -1142 -175 -766
+rect -113 -1142 -79 -766
+rect -17 -1142 17 -766
+rect 79 -1142 113 -766
+rect 175 -1142 209 -766
+rect 271 -1142 305 -766
+rect 367 -1142 401 -766
+rect 463 -1142 497 -766
+rect 559 -1142 593 -766
+<< nsubdiff >>
+rect -707 1303 -611 1337
+rect 611 1303 707 1337
+rect -707 1241 -673 1303
+rect 673 1241 707 1303
+rect -707 -1303 -673 -1241
+rect 673 -1303 707 -1241
+rect -707 -1337 -611 -1303
+rect 611 -1337 707 -1303
+<< nsubdiffcont >>
+rect -611 1303 611 1337
+rect -707 -1241 -673 1241
+rect 673 -1241 707 1241
+rect -611 -1337 611 -1303
+<< poly >>
+rect -561 1235 -495 1251
+rect -561 1201 -545 1235
+rect -511 1201 -495 1235
+rect -561 1185 -495 1201
+rect -369 1235 -303 1251
+rect -369 1201 -353 1235
+rect -319 1201 -303 1235
+rect -369 1185 -303 1201
+rect -177 1235 -111 1251
+rect -177 1201 -161 1235
+rect -127 1201 -111 1235
+rect -177 1185 -111 1201
+rect 15 1235 81 1251
+rect 15 1201 31 1235
+rect 65 1201 81 1235
+rect 15 1185 81 1201
+rect 207 1235 273 1251
+rect 207 1201 223 1235
+rect 257 1201 273 1235
+rect 207 1185 273 1201
+rect 399 1235 465 1251
+rect 399 1201 415 1235
+rect 449 1201 465 1235
+rect 399 1185 465 1201
+rect -543 1154 -513 1185
+rect -447 1154 -417 1180
+rect -351 1154 -321 1185
+rect -255 1154 -225 1180
+rect -159 1154 -129 1185
+rect -63 1154 -33 1180
+rect 33 1154 63 1185
+rect 129 1154 159 1180
+rect 225 1154 255 1185
+rect 321 1154 351 1180
+rect 417 1154 447 1185
+rect 513 1154 543 1180
+rect -543 728 -513 754
+rect -447 723 -417 754
+rect -351 728 -321 754
+rect -255 723 -225 754
+rect -159 728 -129 754
+rect -63 723 -33 754
+rect 33 728 63 754
+rect 129 723 159 754
+rect 225 728 255 754
+rect 321 723 351 754
+rect 417 728 447 754
+rect 513 723 543 754
+rect -465 707 -399 723
+rect -465 673 -449 707
+rect -415 673 -399 707
+rect -465 657 -399 673
+rect -273 707 -207 723
+rect -273 673 -257 707
+rect -223 673 -207 707
+rect -273 657 -207 673
+rect -81 707 -15 723
+rect -81 673 -65 707
+rect -31 673 -15 707
+rect -81 657 -15 673
+rect 111 707 177 723
+rect 111 673 127 707
+rect 161 673 177 707
+rect 111 657 177 673
+rect 303 707 369 723
+rect 303 673 319 707
+rect 353 673 369 707
+rect 303 657 369 673
+rect 495 707 561 723
+rect 495 673 511 707
+rect 545 673 561 707
+rect 495 657 561 673
+rect -465 599 -399 615
+rect -465 565 -449 599
+rect -415 565 -399 599
+rect -465 549 -399 565
+rect -273 599 -207 615
+rect -273 565 -257 599
+rect -223 565 -207 599
+rect -273 549 -207 565
+rect -81 599 -15 615
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect -81 549 -15 565
+rect 111 599 177 615
+rect 111 565 127 599
+rect 161 565 177 599
+rect 111 549 177 565
+rect 303 599 369 615
+rect 303 565 319 599
+rect 353 565 369 599
+rect 303 549 369 565
+rect 495 599 561 615
+rect 495 565 511 599
+rect 545 565 561 599
+rect 495 549 561 565
+rect -543 518 -513 544
+rect -447 518 -417 549
+rect -351 518 -321 544
+rect -255 518 -225 549
+rect -159 518 -129 544
+rect -63 518 -33 549
+rect 33 518 63 544
+rect 129 518 159 549
+rect 225 518 255 544
+rect 321 518 351 549
+rect 417 518 447 544
+rect 513 518 543 549
+rect -543 87 -513 118
+rect -447 92 -417 118
+rect -351 87 -321 118
+rect -255 92 -225 118
+rect -159 87 -129 118
+rect -63 92 -33 118
+rect 33 87 63 118
+rect 129 92 159 118
+rect 225 87 255 118
+rect 321 92 351 118
+rect 417 87 447 118
+rect 513 92 543 118
+rect -561 71 -495 87
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -561 21 -495 37
+rect -369 71 -303 87
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect -561 -37 -495 -21
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -561 -87 -495 -71
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 399 -87 465 -71
+rect -543 -118 -513 -87
+rect -447 -118 -417 -92
+rect -351 -118 -321 -87
+rect -255 -118 -225 -92
+rect -159 -118 -129 -87
+rect -63 -118 -33 -92
+rect 33 -118 63 -87
+rect 129 -118 159 -92
+rect 225 -118 255 -87
+rect 321 -118 351 -92
+rect 417 -118 447 -87
+rect 513 -118 543 -92
+rect -543 -544 -513 -518
+rect -447 -549 -417 -518
+rect -351 -544 -321 -518
+rect -255 -549 -225 -518
+rect -159 -544 -129 -518
+rect -63 -549 -33 -518
+rect 33 -544 63 -518
+rect 129 -549 159 -518
+rect 225 -544 255 -518
+rect 321 -549 351 -518
+rect 417 -544 447 -518
+rect 513 -549 543 -518
+rect -465 -565 -399 -549
+rect -465 -599 -449 -565
+rect -415 -599 -399 -565
+rect -465 -615 -399 -599
+rect -273 -565 -207 -549
+rect -273 -599 -257 -565
+rect -223 -599 -207 -565
+rect -273 -615 -207 -599
+rect -81 -565 -15 -549
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect -81 -615 -15 -599
+rect 111 -565 177 -549
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect 111 -615 177 -599
+rect 303 -565 369 -549
+rect 303 -599 319 -565
+rect 353 -599 369 -565
+rect 303 -615 369 -599
+rect 495 -565 561 -549
+rect 495 -599 511 -565
+rect 545 -599 561 -565
+rect 495 -615 561 -599
+rect -465 -673 -399 -657
+rect -465 -707 -449 -673
+rect -415 -707 -399 -673
+rect -465 -723 -399 -707
+rect -273 -673 -207 -657
+rect -273 -707 -257 -673
+rect -223 -707 -207 -673
+rect -273 -723 -207 -707
+rect -81 -673 -15 -657
+rect -81 -707 -65 -673
+rect -31 -707 -15 -673
+rect -81 -723 -15 -707
+rect 111 -673 177 -657
+rect 111 -707 127 -673
+rect 161 -707 177 -673
+rect 111 -723 177 -707
+rect 303 -673 369 -657
+rect 303 -707 319 -673
+rect 353 -707 369 -673
+rect 303 -723 369 -707
+rect 495 -673 561 -657
+rect 495 -707 511 -673
+rect 545 -707 561 -673
+rect 495 -723 561 -707
+rect -543 -754 -513 -728
+rect -447 -754 -417 -723
+rect -351 -754 -321 -728
+rect -255 -754 -225 -723
+rect -159 -754 -129 -728
+rect -63 -754 -33 -723
+rect 33 -754 63 -728
+rect 129 -754 159 -723
+rect 225 -754 255 -728
+rect 321 -754 351 -723
+rect 417 -754 447 -728
+rect 513 -754 543 -723
+rect -543 -1185 -513 -1154
+rect -447 -1180 -417 -1154
+rect -351 -1185 -321 -1154
+rect -255 -1180 -225 -1154
+rect -159 -1185 -129 -1154
+rect -63 -1180 -33 -1154
+rect 33 -1185 63 -1154
+rect 129 -1180 159 -1154
+rect 225 -1185 255 -1154
+rect 321 -1180 351 -1154
+rect 417 -1185 447 -1154
+rect 513 -1180 543 -1154
+rect -561 -1201 -495 -1185
+rect -561 -1235 -545 -1201
+rect -511 -1235 -495 -1201
+rect -561 -1251 -495 -1235
+rect -369 -1201 -303 -1185
+rect -369 -1235 -353 -1201
+rect -319 -1235 -303 -1201
+rect -369 -1251 -303 -1235
+rect -177 -1201 -111 -1185
+rect -177 -1235 -161 -1201
+rect -127 -1235 -111 -1201
+rect -177 -1251 -111 -1235
+rect 15 -1201 81 -1185
+rect 15 -1235 31 -1201
+rect 65 -1235 81 -1201
+rect 15 -1251 81 -1235
+rect 207 -1201 273 -1185
+rect 207 -1235 223 -1201
+rect 257 -1235 273 -1201
+rect 207 -1251 273 -1235
+rect 399 -1201 465 -1185
+rect 399 -1235 415 -1201
+rect 449 -1235 465 -1201
+rect 399 -1251 465 -1235
+<< polycont >>
+rect -545 1201 -511 1235
+rect -353 1201 -319 1235
+rect -161 1201 -127 1235
+rect 31 1201 65 1235
+rect 223 1201 257 1235
+rect 415 1201 449 1235
+rect -449 673 -415 707
+rect -257 673 -223 707
+rect -65 673 -31 707
+rect 127 673 161 707
+rect 319 673 353 707
+rect 511 673 545 707
+rect -449 565 -415 599
+rect -257 565 -223 599
+rect -65 565 -31 599
+rect 127 565 161 599
+rect 319 565 353 599
+rect 511 565 545 599
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -449 -599 -415 -565
+rect -257 -599 -223 -565
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect 319 -599 353 -565
+rect 511 -599 545 -565
+rect -449 -707 -415 -673
+rect -257 -707 -223 -673
+rect -65 -707 -31 -673
+rect 127 -707 161 -673
+rect 319 -707 353 -673
+rect 511 -707 545 -673
+rect -545 -1235 -511 -1201
+rect -353 -1235 -319 -1201
+rect -161 -1235 -127 -1201
+rect 31 -1235 65 -1201
+rect 223 -1235 257 -1201
+rect 415 -1235 449 -1201
+<< locali >>
+rect -707 1303 -611 1337
+rect 611 1303 707 1337
+rect -707 1241 -673 1303
+rect 673 1241 707 1303
+rect -561 1201 -545 1235
+rect -511 1201 -495 1235
+rect -369 1201 -353 1235
+rect -319 1201 -303 1235
+rect -177 1201 -161 1235
+rect -127 1201 -111 1235
+rect 15 1201 31 1235
+rect 65 1201 81 1235
+rect 207 1201 223 1235
+rect 257 1201 273 1235
+rect 399 1201 415 1235
+rect 449 1201 465 1235
+rect -593 1142 -559 1158
+rect -593 750 -559 766
+rect -497 1142 -463 1158
+rect -497 750 -463 766
+rect -401 1142 -367 1158
+rect -401 750 -367 766
+rect -305 1142 -271 1158
+rect -305 750 -271 766
+rect -209 1142 -175 1158
+rect -209 750 -175 766
+rect -113 1142 -79 1158
+rect -113 750 -79 766
+rect -17 1142 17 1158
+rect -17 750 17 766
+rect 79 1142 113 1158
+rect 79 750 113 766
+rect 175 1142 209 1158
+rect 175 750 209 766
+rect 271 1142 305 1158
+rect 271 750 305 766
+rect 367 1142 401 1158
+rect 367 750 401 766
+rect 463 1142 497 1158
+rect 463 750 497 766
+rect 559 1142 593 1158
+rect 559 750 593 766
+rect -465 673 -449 707
+rect -415 673 -399 707
+rect -273 673 -257 707
+rect -223 673 -207 707
+rect -81 673 -65 707
+rect -31 673 -15 707
+rect 111 673 127 707
+rect 161 673 177 707
+rect 303 673 319 707
+rect 353 673 369 707
+rect 495 673 511 707
+rect 545 673 561 707
+rect -465 565 -449 599
+rect -415 565 -399 599
+rect -273 565 -257 599
+rect -223 565 -207 599
+rect -81 565 -65 599
+rect -31 565 -15 599
+rect 111 565 127 599
+rect 161 565 177 599
+rect 303 565 319 599
+rect 353 565 369 599
+rect 495 565 511 599
+rect 545 565 561 599
+rect -593 506 -559 522
+rect -593 114 -559 130
+rect -497 506 -463 522
+rect -497 114 -463 130
+rect -401 506 -367 522
+rect -401 114 -367 130
+rect -305 506 -271 522
+rect -305 114 -271 130
+rect -209 506 -175 522
+rect -209 114 -175 130
+rect -113 506 -79 522
+rect -113 114 -79 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 79 506 113 522
+rect 79 114 113 130
+rect 175 506 209 522
+rect 175 114 209 130
+rect 271 506 305 522
+rect 271 114 305 130
+rect 367 506 401 522
+rect 367 114 401 130
+rect 463 506 497 522
+rect 463 114 497 130
+rect 559 506 593 522
+rect 559 114 593 130
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect -593 -130 -559 -114
+rect -593 -522 -559 -506
+rect -497 -130 -463 -114
+rect -497 -522 -463 -506
+rect -401 -130 -367 -114
+rect -401 -522 -367 -506
+rect -305 -130 -271 -114
+rect -305 -522 -271 -506
+rect -209 -130 -175 -114
+rect -209 -522 -175 -506
+rect -113 -130 -79 -114
+rect -113 -522 -79 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 79 -130 113 -114
+rect 79 -522 113 -506
+rect 175 -130 209 -114
+rect 175 -522 209 -506
+rect 271 -130 305 -114
+rect 271 -522 305 -506
+rect 367 -130 401 -114
+rect 367 -522 401 -506
+rect 463 -130 497 -114
+rect 463 -522 497 -506
+rect 559 -130 593 -114
+rect 559 -522 593 -506
+rect -465 -599 -449 -565
+rect -415 -599 -399 -565
+rect -273 -599 -257 -565
+rect -223 -599 -207 -565
+rect -81 -599 -65 -565
+rect -31 -599 -15 -565
+rect 111 -599 127 -565
+rect 161 -599 177 -565
+rect 303 -599 319 -565
+rect 353 -599 369 -565
+rect 495 -599 511 -565
+rect 545 -599 561 -565
+rect -465 -707 -449 -673
+rect -415 -707 -399 -673
+rect -273 -707 -257 -673
+rect -223 -707 -207 -673
+rect -81 -707 -65 -673
+rect -31 -707 -15 -673
+rect 111 -707 127 -673
+rect 161 -707 177 -673
+rect 303 -707 319 -673
+rect 353 -707 369 -673
+rect 495 -707 511 -673
+rect 545 -707 561 -673
+rect -593 -766 -559 -750
+rect -593 -1158 -559 -1142
+rect -497 -766 -463 -750
+rect -497 -1158 -463 -1142
+rect -401 -766 -367 -750
+rect -401 -1158 -367 -1142
+rect -305 -766 -271 -750
+rect -305 -1158 -271 -1142
+rect -209 -766 -175 -750
+rect -209 -1158 -175 -1142
+rect -113 -766 -79 -750
+rect -113 -1158 -79 -1142
+rect -17 -766 17 -750
+rect -17 -1158 17 -1142
+rect 79 -766 113 -750
+rect 79 -1158 113 -1142
+rect 175 -766 209 -750
+rect 175 -1158 209 -1142
+rect 271 -766 305 -750
+rect 271 -1158 305 -1142
+rect 367 -766 401 -750
+rect 367 -1158 401 -1142
+rect 463 -766 497 -750
+rect 463 -1158 497 -1142
+rect 559 -766 593 -750
+rect 559 -1158 593 -1142
+rect -561 -1235 -545 -1201
+rect -511 -1235 -495 -1201
+rect -369 -1235 -353 -1201
+rect -319 -1235 -303 -1201
+rect -177 -1235 -161 -1201
+rect -127 -1235 -111 -1201
+rect 15 -1235 31 -1201
+rect 65 -1235 81 -1201
+rect 207 -1235 223 -1201
+rect 257 -1235 273 -1201
+rect 399 -1235 415 -1201
+rect 449 -1235 465 -1201
+rect -707 -1303 -673 -1241
+rect 673 -1303 707 -1241
+rect -707 -1337 -611 -1303
+rect 611 -1337 707 -1303
+<< viali >>
+rect -545 1201 -511 1235
+rect -353 1201 -319 1235
+rect -161 1201 -127 1235
+rect 31 1201 65 1235
+rect 223 1201 257 1235
+rect 415 1201 449 1235
+rect -593 766 -559 1142
+rect -497 766 -463 1142
+rect -401 766 -367 1142
+rect -305 766 -271 1142
+rect -209 766 -175 1142
+rect -113 766 -79 1142
+rect -17 766 17 1142
+rect 79 766 113 1142
+rect 175 766 209 1142
+rect 271 766 305 1142
+rect 367 766 401 1142
+rect 463 766 497 1142
+rect 559 766 593 1142
+rect -449 673 -415 707
+rect -257 673 -223 707
+rect -65 673 -31 707
+rect 127 673 161 707
+rect 319 673 353 707
+rect 511 673 545 707
+rect -449 565 -415 599
+rect -257 565 -223 599
+rect -65 565 -31 599
+rect 127 565 161 599
+rect 319 565 353 599
+rect 511 565 545 599
+rect -593 130 -559 506
+rect -497 130 -463 506
+rect -401 130 -367 506
+rect -305 130 -271 506
+rect -209 130 -175 506
+rect -113 130 -79 506
+rect -17 130 17 506
+rect 79 130 113 506
+rect 175 130 209 506
+rect 271 130 305 506
+rect 367 130 401 506
+rect 463 130 497 506
+rect 559 130 593 506
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect -593 -506 -559 -130
+rect -497 -506 -463 -130
+rect -401 -506 -367 -130
+rect -305 -506 -271 -130
+rect -209 -506 -175 -130
+rect -113 -506 -79 -130
+rect -17 -506 17 -130
+rect 79 -506 113 -130
+rect 175 -506 209 -130
+rect 271 -506 305 -130
+rect 367 -506 401 -130
+rect 463 -506 497 -130
+rect 559 -506 593 -130
+rect -449 -599 -415 -565
+rect -257 -599 -223 -565
+rect -65 -599 -31 -565
+rect 127 -599 161 -565
+rect 319 -599 353 -565
+rect 511 -599 545 -565
+rect -449 -707 -415 -673
+rect -257 -707 -223 -673
+rect -65 -707 -31 -673
+rect 127 -707 161 -673
+rect 319 -707 353 -673
+rect 511 -707 545 -673
+rect -593 -1142 -559 -766
+rect -497 -1142 -463 -766
+rect -401 -1142 -367 -766
+rect -305 -1142 -271 -766
+rect -209 -1142 -175 -766
+rect -113 -1142 -79 -766
+rect -17 -1142 17 -766
+rect 79 -1142 113 -766
+rect 175 -1142 209 -766
+rect 271 -1142 305 -766
+rect 367 -1142 401 -766
+rect 463 -1142 497 -766
+rect 559 -1142 593 -766
+rect -545 -1235 -511 -1201
+rect -353 -1235 -319 -1201
+rect -161 -1235 -127 -1201
+rect 31 -1235 65 -1201
+rect 223 -1235 257 -1201
+rect 415 -1235 449 -1201
+<< metal1 >>
+rect -557 1235 -499 1241
+rect -557 1201 -545 1235
+rect -511 1201 -499 1235
+rect -557 1195 -499 1201
+rect -365 1235 -307 1241
+rect -365 1201 -353 1235
+rect -319 1201 -307 1235
+rect -365 1195 -307 1201
+rect -173 1235 -115 1241
+rect -173 1201 -161 1235
+rect -127 1201 -115 1235
+rect -173 1195 -115 1201
+rect 19 1235 77 1241
+rect 19 1201 31 1235
+rect 65 1201 77 1235
+rect 19 1195 77 1201
+rect 211 1235 269 1241
+rect 211 1201 223 1235
+rect 257 1201 269 1235
+rect 211 1195 269 1201
+rect 403 1235 461 1241
+rect 403 1201 415 1235
+rect 449 1201 461 1235
+rect 403 1195 461 1201
+rect -599 1142 -553 1154
+rect -599 766 -593 1142
+rect -559 766 -553 1142
+rect -599 754 -553 766
+rect -503 1142 -457 1154
+rect -503 766 -497 1142
+rect -463 766 -457 1142
+rect -503 754 -457 766
+rect -407 1142 -361 1154
+rect -407 766 -401 1142
+rect -367 766 -361 1142
+rect -407 754 -361 766
+rect -311 1142 -265 1154
+rect -311 766 -305 1142
+rect -271 766 -265 1142
+rect -311 754 -265 766
+rect -215 1142 -169 1154
+rect -215 766 -209 1142
+rect -175 766 -169 1142
+rect -215 754 -169 766
+rect -119 1142 -73 1154
+rect -119 766 -113 1142
+rect -79 766 -73 1142
+rect -119 754 -73 766
+rect -23 1142 23 1154
+rect -23 766 -17 1142
+rect 17 766 23 1142
+rect -23 754 23 766
+rect 73 1142 119 1154
+rect 73 766 79 1142
+rect 113 766 119 1142
+rect 73 754 119 766
+rect 169 1142 215 1154
+rect 169 766 175 1142
+rect 209 766 215 1142
+rect 169 754 215 766
+rect 265 1142 311 1154
+rect 265 766 271 1142
+rect 305 766 311 1142
+rect 265 754 311 766
+rect 361 1142 407 1154
+rect 361 766 367 1142
+rect 401 766 407 1142
+rect 361 754 407 766
+rect 457 1142 503 1154
+rect 457 766 463 1142
+rect 497 766 503 1142
+rect 457 754 503 766
+rect 553 1142 599 1154
+rect 553 766 559 1142
+rect 593 766 599 1142
+rect 553 754 599 766
+rect -461 707 -403 713
+rect -461 673 -449 707
+rect -415 673 -403 707
+rect -461 667 -403 673
+rect -269 707 -211 713
+rect -269 673 -257 707
+rect -223 673 -211 707
+rect -269 667 -211 673
+rect -77 707 -19 713
+rect -77 673 -65 707
+rect -31 673 -19 707
+rect -77 667 -19 673
+rect 115 707 173 713
+rect 115 673 127 707
+rect 161 673 173 707
+rect 115 667 173 673
+rect 307 707 365 713
+rect 307 673 319 707
+rect 353 673 365 707
+rect 307 667 365 673
+rect 499 707 557 713
+rect 499 673 511 707
+rect 545 673 557 707
+rect 499 667 557 673
+rect -461 599 -403 605
+rect -461 565 -449 599
+rect -415 565 -403 599
+rect -461 559 -403 565
+rect -269 599 -211 605
+rect -269 565 -257 599
+rect -223 565 -211 599
+rect -269 559 -211 565
+rect -77 599 -19 605
+rect -77 565 -65 599
+rect -31 565 -19 599
+rect -77 559 -19 565
+rect 115 599 173 605
+rect 115 565 127 599
+rect 161 565 173 599
+rect 115 559 173 565
+rect 307 599 365 605
+rect 307 565 319 599
+rect 353 565 365 599
+rect 307 559 365 565
+rect 499 599 557 605
+rect 499 565 511 599
+rect 545 565 557 599
+rect 499 559 557 565
+rect -599 506 -553 518
+rect -599 130 -593 506
+rect -559 130 -553 506
+rect -599 118 -553 130
+rect -503 506 -457 518
+rect -503 130 -497 506
+rect -463 130 -457 506
+rect -503 118 -457 130
+rect -407 506 -361 518
+rect -407 130 -401 506
+rect -367 130 -361 506
+rect -407 118 -361 130
+rect -311 506 -265 518
+rect -311 130 -305 506
+rect -271 130 -265 506
+rect -311 118 -265 130
+rect -215 506 -169 518
+rect -215 130 -209 506
+rect -175 130 -169 506
+rect -215 118 -169 130
+rect -119 506 -73 518
+rect -119 130 -113 506
+rect -79 130 -73 506
+rect -119 118 -73 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 73 506 119 518
+rect 73 130 79 506
+rect 113 130 119 506
+rect 73 118 119 130
+rect 169 506 215 518
+rect 169 130 175 506
+rect 209 130 215 506
+rect 169 118 215 130
+rect 265 506 311 518
+rect 265 130 271 506
+rect 305 130 311 506
+rect 265 118 311 130
+rect 361 506 407 518
+rect 361 130 367 506
+rect 401 130 407 506
+rect 361 118 407 130
+rect 457 506 503 518
+rect 457 130 463 506
+rect 497 130 503 506
+rect 457 118 503 130
+rect 553 506 599 518
+rect 553 130 559 506
+rect 593 130 599 506
+rect 553 118 599 130
+rect -557 71 -499 77
+rect -557 37 -545 71
+rect -511 37 -499 71
+rect -557 31 -499 37
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect -557 -37 -499 -31
+rect -557 -71 -545 -37
+rect -511 -71 -499 -37
+rect -557 -77 -499 -71
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect -599 -130 -553 -118
+rect -599 -506 -593 -130
+rect -559 -506 -553 -130
+rect -599 -518 -553 -506
+rect -503 -130 -457 -118
+rect -503 -506 -497 -130
+rect -463 -506 -457 -130
+rect -503 -518 -457 -506
+rect -407 -130 -361 -118
+rect -407 -506 -401 -130
+rect -367 -506 -361 -130
+rect -407 -518 -361 -506
+rect -311 -130 -265 -118
+rect -311 -506 -305 -130
+rect -271 -506 -265 -130
+rect -311 -518 -265 -506
+rect -215 -130 -169 -118
+rect -215 -506 -209 -130
+rect -175 -506 -169 -130
+rect -215 -518 -169 -506
+rect -119 -130 -73 -118
+rect -119 -506 -113 -130
+rect -79 -506 -73 -130
+rect -119 -518 -73 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 73 -130 119 -118
+rect 73 -506 79 -130
+rect 113 -506 119 -130
+rect 73 -518 119 -506
+rect 169 -130 215 -118
+rect 169 -506 175 -130
+rect 209 -506 215 -130
+rect 169 -518 215 -506
+rect 265 -130 311 -118
+rect 265 -506 271 -130
+rect 305 -506 311 -130
+rect 265 -518 311 -506
+rect 361 -130 407 -118
+rect 361 -506 367 -130
+rect 401 -506 407 -130
+rect 361 -518 407 -506
+rect 457 -130 503 -118
+rect 457 -506 463 -130
+rect 497 -506 503 -130
+rect 457 -518 503 -506
+rect 553 -130 599 -118
+rect 553 -506 559 -130
+rect 593 -506 599 -130
+rect 553 -518 599 -506
+rect -461 -565 -403 -559
+rect -461 -599 -449 -565
+rect -415 -599 -403 -565
+rect -461 -605 -403 -599
+rect -269 -565 -211 -559
+rect -269 -599 -257 -565
+rect -223 -599 -211 -565
+rect -269 -605 -211 -599
+rect -77 -565 -19 -559
+rect -77 -599 -65 -565
+rect -31 -599 -19 -565
+rect -77 -605 -19 -599
+rect 115 -565 173 -559
+rect 115 -599 127 -565
+rect 161 -599 173 -565
+rect 115 -605 173 -599
+rect 307 -565 365 -559
+rect 307 -599 319 -565
+rect 353 -599 365 -565
+rect 307 -605 365 -599
+rect 499 -565 557 -559
+rect 499 -599 511 -565
+rect 545 -599 557 -565
+rect 499 -605 557 -599
+rect -461 -673 -403 -667
+rect -461 -707 -449 -673
+rect -415 -707 -403 -673
+rect -461 -713 -403 -707
+rect -269 -673 -211 -667
+rect -269 -707 -257 -673
+rect -223 -707 -211 -673
+rect -269 -713 -211 -707
+rect -77 -673 -19 -667
+rect -77 -707 -65 -673
+rect -31 -707 -19 -673
+rect -77 -713 -19 -707
+rect 115 -673 173 -667
+rect 115 -707 127 -673
+rect 161 -707 173 -673
+rect 115 -713 173 -707
+rect 307 -673 365 -667
+rect 307 -707 319 -673
+rect 353 -707 365 -673
+rect 307 -713 365 -707
+rect 499 -673 557 -667
+rect 499 -707 511 -673
+rect 545 -707 557 -673
+rect 499 -713 557 -707
+rect -599 -766 -553 -754
+rect -599 -1142 -593 -766
+rect -559 -1142 -553 -766
+rect -599 -1154 -553 -1142
+rect -503 -766 -457 -754
+rect -503 -1142 -497 -766
+rect -463 -1142 -457 -766
+rect -503 -1154 -457 -1142
+rect -407 -766 -361 -754
+rect -407 -1142 -401 -766
+rect -367 -1142 -361 -766
+rect -407 -1154 -361 -1142
+rect -311 -766 -265 -754
+rect -311 -1142 -305 -766
+rect -271 -1142 -265 -766
+rect -311 -1154 -265 -1142
+rect -215 -766 -169 -754
+rect -215 -1142 -209 -766
+rect -175 -1142 -169 -766
+rect -215 -1154 -169 -1142
+rect -119 -766 -73 -754
+rect -119 -1142 -113 -766
+rect -79 -1142 -73 -766
+rect -119 -1154 -73 -1142
+rect -23 -766 23 -754
+rect -23 -1142 -17 -766
+rect 17 -1142 23 -766
+rect -23 -1154 23 -1142
+rect 73 -766 119 -754
+rect 73 -1142 79 -766
+rect 113 -1142 119 -766
+rect 73 -1154 119 -1142
+rect 169 -766 215 -754
+rect 169 -1142 175 -766
+rect 209 -1142 215 -766
+rect 169 -1154 215 -1142
+rect 265 -766 311 -754
+rect 265 -1142 271 -766
+rect 305 -1142 311 -766
+rect 265 -1154 311 -1142
+rect 361 -766 407 -754
+rect 361 -1142 367 -766
+rect 401 -1142 407 -766
+rect 361 -1154 407 -1142
+rect 457 -766 503 -754
+rect 457 -1142 463 -766
+rect 497 -1142 503 -766
+rect 457 -1154 503 -1142
+rect 553 -766 599 -754
+rect 553 -1142 559 -766
+rect 593 -1142 599 -766
+rect 553 -1154 599 -1142
+rect -557 -1201 -499 -1195
+rect -557 -1235 -545 -1201
+rect -511 -1235 -499 -1201
+rect -557 -1241 -499 -1235
+rect -365 -1201 -307 -1195
+rect -365 -1235 -353 -1201
+rect -319 -1235 -307 -1201
+rect -365 -1241 -307 -1235
+rect -173 -1201 -115 -1195
+rect -173 -1235 -161 -1201
+rect -127 -1235 -115 -1201
+rect -173 -1241 -115 -1235
+rect 19 -1201 77 -1195
+rect 19 -1235 31 -1201
+rect 65 -1235 77 -1201
+rect 19 -1241 77 -1235
+rect 211 -1201 269 -1195
+rect 211 -1235 223 -1201
+rect 257 -1235 269 -1201
+rect 211 -1241 269 -1235
+rect 403 -1201 461 -1195
+rect 403 -1235 415 -1201
+rect 449 -1235 461 -1201
+rect 403 -1241 461 -1235
+<< properties >>
+string FIXED_BBOX -690 -1320 690 1320
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 4 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.ext b/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.ext
new file mode 100644
index 0000000..8329fd1
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.ext
@@ -0,0 +1,204 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_679_n518#" 1513 0 679 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_n518#" 1513 0 561 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_n518#" 1513 0 443 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_n518#" 1513 0 325 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n518#" 1513 0 207 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_n518#" 1513 0 89 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n518#" 1513 0 -29 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_n518#" 1513 0 -147 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_n518#" 1513 0 -265 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_n518#" 1513 0 -383 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_n518#" 1513 0 -501 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_n518#" 1513 0 -619 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_n518#" 1513 0 -737 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_n615#" 573 0 616 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_n615#" 573 0 498 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_n615#" 573 0 380 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_n615#" 573 0 262 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_n615#" 573 0 144 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_n615#" 573 0 26 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_n615#" 573 0 -92 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_n615#" 573 0 -210 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_n615#" 573 0 -328 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_n615#" 573 0 -446 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_n615#" 573 0 -564 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_n615#" 573 0 -682 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_679_118#" 1513 0 679 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_561_118#" 1513 0 561 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_443_118#" 1513 0 443 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_325_118#" 1513 0 325 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_118#" 1513 0 207 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_89_118#" 1513 0 89 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_118#" 1513 0 -29 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n147_118#" 1513 0 -147 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n265_118#" 1513 0 -265 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n383_118#" 1513 0 -383 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n501_118#" 1513 0 -501 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n619_118#" 1513 0 -619 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n737_118#" 1513 0 -737 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_616_21#" 573 0 616 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_498_21#" 573 0 498 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_380_21#" 573 0 380 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_262_21#" 573 0 262 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_144_21#" 573 0 144 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_26_21#" 573 0 26 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n92_21#" 573 0 -92 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n210_21#" 573 0 -210 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n328_21#" 573 0 -328 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n446_21#" 573 0 -446 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n564_21#" 573 0 -564 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "a_n682_21#" 573 0 -682 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36432 1332 0 0 4488 400 5336 416 0 0 0 0 0 0 0 0 0 0
+node "w_n875_n737#" 24391 7738.5 -875 -737 nw 0 0 0 0 2579500 6448 0 0 204816 12048 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 204816 12048 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n564_n615#" "w_n875_n737#" 91.794
+cap "a_n328_21#" "w_n875_n737#" 92.0006
+cap "w_n875_n737#" "a_207_n518#" 12.5963
+cap "w_n875_n737#" "a_n92_n615#" 91.794
+cap "a_n328_21#" "a_n210_21#" 154.522
+cap "w_n875_n737#" "a_n265_118#" 12.7245
+cap "a_n29_118#" "a_89_118#" 341
+cap "a_n446_n615#" "a_n328_n615#" 154.522
+cap "a_n682_n615#" "w_n875_n737#" 159.01
+cap "a_n147_n518#" "a_n147_118#" 11.3678
+cap "a_n446_n615#" "a_n446_21#" 92.9038
+cap "a_262_21#" "a_262_n615#" 92.9038
+cap "a_n383_n518#" "a_n383_118#" 11.3678
+cap "a_n682_n615#" "a_n682_21#" 92.9038
+cap "a_679_n518#" "w_n875_n737#" 155.39
+cap "w_n875_n737#" "a_262_n615#" 91.794
+cap "a_26_21#" "w_n875_n737#" 92.0006
+cap "a_n501_n518#" "w_n875_n737#" 12.5963
+cap "a_498_n615#" "a_616_n615#" 154.522
+cap "a_325_n518#" "a_443_n518#" 341
+cap "a_n446_21#" "a_n564_21#" 154.522
+cap "a_262_21#" "w_n875_n737#" 92.0006
+cap "a_26_n615#" "a_144_n615#" 154.522
+cap "w_n875_n737#" "a_n29_n518#" 12.5963
+cap "a_498_21#" "a_380_21#" 154.522
+cap "a_616_21#" "w_n875_n737#" 158.704
+cap "w_n875_n737#" "a_n682_21#" 159.216
+cap "a_n29_118#" "a_n147_118#" 341
+cap "a_n619_n518#" "a_n619_118#" 11.3678
+cap "a_561_118#" "w_n875_n737#" 12.7245
+cap "a_n564_n615#" "a_n446_n615#" 154.522
+cap "w_n875_n737#" "a_n210_21#" 92.0006
+cap "a_n501_n518#" "a_n501_118#" 11.3678
+cap "w_n875_n737#" "a_325_118#" 12.7245
+cap "a_144_n615#" "a_144_21#" 92.9038
+cap "a_n737_118#" "w_n875_n737#" 155.518
+cap "a_n328_n615#" "a_n210_n615#" 154.522
+cap "a_n737_n518#" "w_n875_n737#" 155.39
+cap "a_380_n615#" "a_498_n615#" 154.522
+cap "w_n875_n737#" "a_n501_118#" 12.7245
+cap "a_207_n518#" "a_325_n518#" 341
+cap "a_n564_n615#" "a_n564_21#" 92.9038
+cap "a_n383_n518#" "a_n265_n518#" 341
+cap "a_89_118#" "w_n875_n737#" 12.7245
+cap "a_n92_n615#" "a_26_n615#" 154.522
+cap "a_443_118#" "a_443_n518#" 11.3678
+cap "a_n265_118#" "a_n147_118#" 341
+cap "w_n875_n737#" "a_616_n615#" 158.498
+cap "a_n737_n518#" "a_n737_118#" 11.3678
+cap "a_561_n518#" "a_443_n518#" 341
+cap "a_616_21#" "a_616_n615#" 92.9038
+cap "a_26_21#" "a_26_n615#" 92.9038
+cap "a_n446_n615#" "w_n875_n737#" 91.794
+cap "a_262_n615#" "a_380_n615#" 154.522
+cap "w_n875_n737#" "a_325_n518#" 12.5963
+cap "a_89_n518#" "a_207_n518#" 341
+cap "w_n875_n737#" "a_26_n615#" 91.794
+cap "a_26_21#" "a_144_21#" 154.522
+cap "w_n875_n737#" "a_n147_118#" 12.7245
+cap "a_n501_n518#" "a_n383_n518#" 341
+cap "a_n210_n615#" "a_n92_n615#" 154.522
+cap "w_n875_n737#" "a_n564_21#" 92.0006
+cap "a_325_118#" "a_325_n518#" 11.3678
+cap "a_n564_21#" "a_n682_21#" 154.522
+cap "w_n875_n737#" "a_380_n615#" 91.794
+cap "a_262_21#" "a_144_21#" 154.522
+cap "a_498_21#" "a_498_n615#" 92.9038
+cap "a_n383_n518#" "w_n875_n737#" 12.5963
+cap "w_n875_n737#" "a_144_21#" 92.0006
+cap "a_n265_n518#" "a_n147_n518#" 341
+cap "a_679_118#" "a_679_n518#" 11.3678
+cap "a_262_21#" "a_380_21#" 154.522
+cap "a_561_n518#" "a_679_n518#" 341
+cap "a_n383_118#" "a_n265_118#" 341
+cap "w_n875_n737#" "a_380_21#" 92.0006
+cap "w_n875_n737#" "a_89_n518#" 12.5963
+cap "a_n29_n518#" "a_89_n518#" 341
+cap "w_n875_n737#" "a_n210_n615#" 91.794
+cap "a_n619_n518#" "a_n501_n518#" 341
+cap "a_679_118#" "w_n875_n737#" 155.518
+cap "a_n328_n615#" "a_n328_21#" 92.9038
+cap "w_n875_n737#" "a_443_118#" 12.7245
+cap "a_n328_21#" "a_n446_21#" 154.522
+cap "a_207_118#" "a_207_n518#" 11.3678
+cap "a_n210_n615#" "a_n210_21#" 92.9038
+cap "a_561_n518#" "w_n875_n737#" 12.5963
+cap "a_561_118#" "a_679_118#" 341
+cap "a_n619_118#" "w_n875_n737#" 12.7245
+cap "a_561_118#" "a_443_118#" 341
+cap "a_n619_n518#" "w_n875_n737#" 12.5963
+cap "a_561_118#" "a_561_n518#" 11.3678
+cap "a_325_118#" "a_443_118#" 341
+cap "w_n875_n737#" "a_n383_118#" 12.7245
+cap "a_n92_n615#" "a_n92_21#" 92.9038
+cap "a_89_118#" "a_89_n518#" 11.3678
+cap "w_n875_n737#" "a_n147_n518#" 12.5963
+cap "a_n147_n518#" "a_n29_n518#" 341
+cap "a_498_21#" "w_n875_n737#" 92.0006
+cap "a_n737_118#" "a_n619_118#" 341
+cap "a_498_21#" "a_616_21#" 154.522
+cap "a_n737_n518#" "a_n619_n518#" 341
+cap "a_n619_118#" "a_n501_118#" 341
+cap "a_144_n615#" "a_262_n615#" 154.522
+cap "w_n875_n737#" "a_207_118#" 12.7245
+cap "a_n501_118#" "a_n383_118#" 341
+cap "a_26_21#" "a_n92_21#" 154.522
+cap "a_n328_n615#" "w_n875_n737#" 91.794
+cap "w_n875_n737#" "a_n446_21#" 92.0006
+cap "a_n265_n518#" "a_n265_118#" 11.3678
+cap "a_207_118#" "a_325_118#" 341
+cap "a_n682_n615#" "a_n564_n615#" 154.522
+cap "w_n875_n737#" "a_443_n518#" 12.5963
+cap "w_n875_n737#" "a_144_n615#" 91.794
+cap "w_n875_n737#" "a_n92_21#" 92.0006
+cap "a_n29_118#" "w_n875_n737#" 12.7245
+cap "a_n29_118#" "a_n29_n518#" 11.3678
+cap "w_n875_n737#" "a_498_n615#" 91.794
+cap "a_380_21#" "a_380_n615#" 92.9038
+cap "a_n210_21#" "a_n92_21#" 154.522
+cap "a_89_118#" "a_207_118#" 341
+cap "a_n265_n518#" "w_n875_n737#" 12.5963
+device msubckt sky130_fd_pr__pfet_01v8 619 -518 620 -517 l=60 w=400 "w_n875_n737#" "a_616_n615#" 120 0 "a_561_n518#" 400 0 "a_679_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 501 -518 502 -517 l=60 w=400 "w_n875_n737#" "a_498_n615#" 120 0 "a_443_n518#" 400 0 "a_561_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 383 -518 384 -517 l=60 w=400 "w_n875_n737#" "a_380_n615#" 120 0 "a_325_n518#" 400 0 "a_443_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 265 -518 266 -517 l=60 w=400 "w_n875_n737#" "a_262_n615#" 120 0 "a_207_n518#" 400 0 "a_325_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 147 -518 148 -517 l=60 w=400 "w_n875_n737#" "a_144_n615#" 120 0 "a_89_n518#" 400 0 "a_207_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -518 30 -517 l=60 w=400 "w_n875_n737#" "a_26_n615#" 120 0 "a_n29_n518#" 400 0 "a_89_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -89 -518 -88 -517 l=60 w=400 "w_n875_n737#" "a_n92_n615#" 120 0 "a_n147_n518#" 400 0 "a_n29_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -207 -518 -206 -517 l=60 w=400 "w_n875_n737#" "a_n210_n615#" 120 0 "a_n265_n518#" 400 0 "a_n147_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -325 -518 -324 -517 l=60 w=400 "w_n875_n737#" "a_n328_n615#" 120 0 "a_n383_n518#" 400 0 "a_n265_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -443 -518 -442 -517 l=60 w=400 "w_n875_n737#" "a_n446_n615#" 120 0 "a_n501_n518#" 400 0 "a_n383_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -561 -518 -560 -517 l=60 w=400 "w_n875_n737#" "a_n564_n615#" 120 0 "a_n619_n518#" 400 0 "a_n501_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -679 -518 -678 -517 l=60 w=400 "w_n875_n737#" "a_n682_n615#" 120 0 "a_n737_n518#" 400 0 "a_n619_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 619 118 620 119 l=60 w=400 "w_n875_n737#" "a_616_21#" 120 0 "a_561_118#" 400 0 "a_679_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 501 118 502 119 l=60 w=400 "w_n875_n737#" "a_498_21#" 120 0 "a_443_118#" 400 0 "a_561_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 383 118 384 119 l=60 w=400 "w_n875_n737#" "a_380_21#" 120 0 "a_325_118#" 400 0 "a_443_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 265 118 266 119 l=60 w=400 "w_n875_n737#" "a_262_21#" 120 0 "a_207_118#" 400 0 "a_325_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 147 118 148 119 l=60 w=400 "w_n875_n737#" "a_144_21#" 120 0 "a_89_118#" 400 0 "a_207_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 118 30 119 l=60 w=400 "w_n875_n737#" "a_26_21#" 120 0 "a_n29_118#" 400 0 "a_89_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -89 118 -88 119 l=60 w=400 "w_n875_n737#" "a_n92_21#" 120 0 "a_n147_118#" 400 0 "a_n29_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -207 118 -206 119 l=60 w=400 "w_n875_n737#" "a_n210_21#" 120 0 "a_n265_118#" 400 0 "a_n147_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -325 118 -324 119 l=60 w=400 "w_n875_n737#" "a_n328_21#" 120 0 "a_n383_118#" 400 0 "a_n265_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -443 118 -442 119 l=60 w=400 "w_n875_n737#" "a_n446_21#" 120 0 "a_n501_118#" 400 0 "a_n383_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -561 118 -560 119 l=60 w=400 "w_n875_n737#" "a_n564_21#" 120 0 "a_n619_118#" 400 0 "a_n501_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -679 118 -678 119 l=60 w=400 "w_n875_n737#" "a_n682_21#" 120 0 "a_n737_118#" 400 0 "a_n619_118#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.mag b/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.mag
new file mode 100644
index 0000000..7b718c0
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_9Z5L4S.mag
@@ -0,0 +1,1147 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -678 599 -620 605
+rect -560 599 -502 605
+rect -442 599 -384 605
+rect -324 599 -266 605
+rect -206 599 -148 605
+rect -88 599 -30 605
+rect 30 599 88 605
+rect 148 599 206 605
+rect 266 599 324 605
+rect 384 599 442 605
+rect 502 599 560 605
+rect 620 599 678 605
+rect -678 565 -666 599
+rect -560 565 -548 599
+rect -442 565 -430 599
+rect -324 565 -312 599
+rect -206 565 -194 599
+rect -88 565 -76 599
+rect 30 565 42 599
+rect 148 565 160 599
+rect 266 565 278 599
+rect 384 565 396 599
+rect 502 565 514 599
+rect 620 565 632 599
+rect -678 559 -620 565
+rect -560 559 -502 565
+rect -442 559 -384 565
+rect -324 559 -266 565
+rect -206 559 -148 565
+rect -88 559 -30 565
+rect 30 559 88 565
+rect 148 559 206 565
+rect 266 559 324 565
+rect 384 559 442 565
+rect 502 559 560 565
+rect 620 559 678 565
+rect -678 71 -620 77
+rect -560 71 -502 77
+rect -442 71 -384 77
+rect -324 71 -266 77
+rect -206 71 -148 77
+rect -88 71 -30 77
+rect 30 71 88 77
+rect 148 71 206 77
+rect 266 71 324 77
+rect 384 71 442 77
+rect 502 71 560 77
+rect 620 71 678 77
+rect -678 37 -666 71
+rect -560 37 -548 71
+rect -442 37 -430 71
+rect -324 37 -312 71
+rect -206 37 -194 71
+rect -88 37 -76 71
+rect 30 37 42 71
+rect 148 37 160 71
+rect 266 37 278 71
+rect 384 37 396 71
+rect 502 37 514 71
+rect 620 37 632 71
+rect -678 31 -620 37
+rect -560 31 -502 37
+rect -442 31 -384 37
+rect -324 31 -266 37
+rect -206 31 -148 37
+rect -88 31 -30 37
+rect 30 31 88 37
+rect 148 31 206 37
+rect 266 31 324 37
+rect 384 31 442 37
+rect 502 31 560 37
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -560 -37 -502 -31
+rect -442 -37 -384 -31
+rect -324 -37 -266 -31
+rect -206 -37 -148 -31
+rect -88 -37 -30 -31
+rect 30 -37 88 -31
+rect 148 -37 206 -31
+rect 266 -37 324 -31
+rect 384 -37 442 -31
+rect 502 -37 560 -31
+rect 620 -37 678 -31
+rect -678 -71 -666 -37
+rect -560 -71 -548 -37
+rect -442 -71 -430 -37
+rect -324 -71 -312 -37
+rect -206 -71 -194 -37
+rect -88 -71 -76 -37
+rect 30 -71 42 -37
+rect 148 -71 160 -37
+rect 266 -71 278 -37
+rect 384 -71 396 -37
+rect 502 -71 514 -37
+rect 620 -71 632 -37
+rect -678 -77 -620 -71
+rect -560 -77 -502 -71
+rect -442 -77 -384 -71
+rect -324 -77 -266 -71
+rect -206 -77 -148 -71
+rect -88 -77 -30 -71
+rect 30 -77 88 -71
+rect 148 -77 206 -71
+rect 266 -77 324 -71
+rect 384 -77 442 -71
+rect 502 -77 560 -71
+rect 620 -77 678 -71
+rect -678 -565 -620 -559
+rect -560 -565 -502 -559
+rect -442 -565 -384 -559
+rect -324 -565 -266 -559
+rect -206 -565 -148 -559
+rect -88 -565 -30 -559
+rect 30 -565 88 -559
+rect 148 -565 206 -559
+rect 266 -565 324 -559
+rect 384 -565 442 -559
+rect 502 -565 560 -559
+rect 620 -565 678 -559
+rect -678 -599 -666 -565
+rect -560 -599 -548 -565
+rect -442 -599 -430 -565
+rect -324 -599 -312 -565
+rect -206 -599 -194 -565
+rect -88 -599 -76 -565
+rect 30 -599 42 -565
+rect 148 -599 160 -565
+rect 266 -599 278 -565
+rect 384 -599 396 -565
+rect 502 -599 514 -565
+rect 620 -599 632 -565
+rect -678 -605 -620 -599
+rect -560 -605 -502 -599
+rect -442 -605 -384 -599
+rect -324 -605 -266 -599
+rect -206 -605 -148 -599
+rect -88 -605 -30 -599
+rect 30 -605 88 -599
+rect 148 -605 206 -599
+rect 266 -605 324 -599
+rect 384 -605 442 -599
+rect 502 -605 560 -599
+rect 620 -605 678 -599
+<< nwell >>
+rect -875 -737 875 737
+<< pmos >>
+rect -679 118 -619 518
+rect -561 118 -501 518
+rect -443 118 -383 518
+rect -325 118 -265 518
+rect -207 118 -147 518
+rect -89 118 -29 518
+rect 29 118 89 518
+rect 147 118 207 518
+rect 265 118 325 518
+rect 383 118 443 518
+rect 501 118 561 518
+rect 619 118 679 518
+rect -679 -518 -619 -118
+rect -561 -518 -501 -118
+rect -443 -518 -383 -118
+rect -325 -518 -265 -118
+rect -207 -518 -147 -118
+rect -89 -518 -29 -118
+rect 29 -518 89 -118
+rect 147 -518 207 -118
+rect 265 -518 325 -118
+rect 383 -518 443 -118
+rect 501 -518 561 -118
+rect 619 -518 679 -118
+<< pdiff >>
+rect -737 506 -679 518
+rect -737 130 -725 506
+rect -691 130 -679 506
+rect -737 118 -679 130
+rect -619 506 -561 518
+rect -619 130 -607 506
+rect -573 130 -561 506
+rect -619 118 -561 130
+rect -501 506 -443 518
+rect -501 130 -489 506
+rect -455 130 -443 506
+rect -501 118 -443 130
+rect -383 506 -325 518
+rect -383 130 -371 506
+rect -337 130 -325 506
+rect -383 118 -325 130
+rect -265 506 -207 518
+rect -265 130 -253 506
+rect -219 130 -207 506
+rect -265 118 -207 130
+rect -147 506 -89 518
+rect -147 130 -135 506
+rect -101 130 -89 506
+rect -147 118 -89 130
+rect -29 506 29 518
+rect -29 130 -17 506
+rect 17 130 29 506
+rect -29 118 29 130
+rect 89 506 147 518
+rect 89 130 101 506
+rect 135 130 147 506
+rect 89 118 147 130
+rect 207 506 265 518
+rect 207 130 219 506
+rect 253 130 265 506
+rect 207 118 265 130
+rect 325 506 383 518
+rect 325 130 337 506
+rect 371 130 383 506
+rect 325 118 383 130
+rect 443 506 501 518
+rect 443 130 455 506
+rect 489 130 501 506
+rect 443 118 501 130
+rect 561 506 619 518
+rect 561 130 573 506
+rect 607 130 619 506
+rect 561 118 619 130
+rect 679 506 737 518
+rect 679 130 691 506
+rect 725 130 737 506
+rect 679 118 737 130
+rect -737 -130 -679 -118
+rect -737 -506 -725 -130
+rect -691 -506 -679 -130
+rect -737 -518 -679 -506
+rect -619 -130 -561 -118
+rect -619 -506 -607 -130
+rect -573 -506 -561 -130
+rect -619 -518 -561 -506
+rect -501 -130 -443 -118
+rect -501 -506 -489 -130
+rect -455 -506 -443 -130
+rect -501 -518 -443 -506
+rect -383 -130 -325 -118
+rect -383 -506 -371 -130
+rect -337 -506 -325 -130
+rect -383 -518 -325 -506
+rect -265 -130 -207 -118
+rect -265 -506 -253 -130
+rect -219 -506 -207 -130
+rect -265 -518 -207 -506
+rect -147 -130 -89 -118
+rect -147 -506 -135 -130
+rect -101 -506 -89 -130
+rect -147 -518 -89 -506
+rect -29 -130 29 -118
+rect -29 -506 -17 -130
+rect 17 -506 29 -130
+rect -29 -518 29 -506
+rect 89 -130 147 -118
+rect 89 -506 101 -130
+rect 135 -506 147 -130
+rect 89 -518 147 -506
+rect 207 -130 265 -118
+rect 207 -506 219 -130
+rect 253 -506 265 -130
+rect 207 -518 265 -506
+rect 325 -130 383 -118
+rect 325 -506 337 -130
+rect 371 -506 383 -130
+rect 325 -518 383 -506
+rect 443 -130 501 -118
+rect 443 -506 455 -130
+rect 489 -506 501 -130
+rect 443 -518 501 -506
+rect 561 -130 619 -118
+rect 561 -506 573 -130
+rect 607 -506 619 -130
+rect 561 -518 619 -506
+rect 679 -130 737 -118
+rect 679 -506 691 -130
+rect 725 -506 737 -130
+rect 679 -518 737 -506
+<< pdiffc >>
+rect -725 130 -691 506
+rect -607 130 -573 506
+rect -489 130 -455 506
+rect -371 130 -337 506
+rect -253 130 -219 506
+rect -135 130 -101 506
+rect -17 130 17 506
+rect 101 130 135 506
+rect 219 130 253 506
+rect 337 130 371 506
+rect 455 130 489 506
+rect 573 130 607 506
+rect 691 130 725 506
+rect -725 -506 -691 -130
+rect -607 -506 -573 -130
+rect -489 -506 -455 -130
+rect -371 -506 -337 -130
+rect -253 -506 -219 -130
+rect -135 -506 -101 -130
+rect -17 -506 17 -130
+rect 101 -506 135 -130
+rect 219 -506 253 -130
+rect 337 -506 371 -130
+rect 455 -506 489 -130
+rect 573 -506 607 -130
+rect 691 -506 725 -130
+<< nsubdiff >>
+rect -839 667 -743 701
+rect 743 667 839 701
+rect -839 605 -805 667
+rect 805 605 839 667
+rect -839 -667 -805 -605
+rect 805 -667 839 -605
+rect -839 -701 -743 -667
+rect 743 -701 839 -667
+<< nsubdiffcont >>
+rect -743 667 743 701
+rect -839 -605 -805 605
+rect 805 -605 839 605
+rect -743 -701 743 -667
+<< poly >>
+rect -682 599 -616 615
+rect -682 565 -666 599
+rect -632 565 -616 599
+rect -682 549 -616 565
+rect -564 599 -498 615
+rect -564 565 -548 599
+rect -514 565 -498 599
+rect -564 549 -498 565
+rect -446 599 -380 615
+rect -446 565 -430 599
+rect -396 565 -380 599
+rect -446 549 -380 565
+rect -328 599 -262 615
+rect -328 565 -312 599
+rect -278 565 -262 599
+rect -328 549 -262 565
+rect -210 599 -144 615
+rect -210 565 -194 599
+rect -160 565 -144 599
+rect -210 549 -144 565
+rect -92 599 -26 615
+rect -92 565 -76 599
+rect -42 565 -26 599
+rect -92 549 -26 565
+rect 26 599 92 615
+rect 26 565 42 599
+rect 76 565 92 599
+rect 26 549 92 565
+rect 144 599 210 615
+rect 144 565 160 599
+rect 194 565 210 599
+rect 144 549 210 565
+rect 262 599 328 615
+rect 262 565 278 599
+rect 312 565 328 599
+rect 262 549 328 565
+rect 380 599 446 615
+rect 380 565 396 599
+rect 430 565 446 599
+rect 380 549 446 565
+rect 498 599 564 615
+rect 498 565 514 599
+rect 548 565 564 599
+rect 498 549 564 565
+rect 616 599 682 615
+rect 616 565 632 599
+rect 666 565 682 599
+rect 616 549 682 565
+rect -679 518 -619 549
+rect -561 518 -501 549
+rect -443 518 -383 549
+rect -325 518 -265 549
+rect -207 518 -147 549
+rect -89 518 -29 549
+rect 29 518 89 549
+rect 147 518 207 549
+rect 265 518 325 549
+rect 383 518 443 549
+rect 501 518 561 549
+rect 619 518 679 549
+rect -679 87 -619 118
+rect -561 87 -501 118
+rect -443 87 -383 118
+rect -325 87 -265 118
+rect -207 87 -147 118
+rect -89 87 -29 118
+rect 29 87 89 118
+rect 147 87 207 118
+rect 265 87 325 118
+rect 383 87 443 118
+rect 501 87 561 118
+rect 619 87 679 118
+rect -682 71 -616 87
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -682 21 -616 37
+rect -564 71 -498 87
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -564 21 -498 37
+rect -446 71 -380 87
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -446 21 -380 37
+rect -328 71 -262 87
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -328 21 -262 37
+rect -210 71 -144 87
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -210 21 -144 37
+rect -92 71 -26 87
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect -92 21 -26 37
+rect 26 71 92 87
+rect 26 37 42 71
+rect 76 37 92 71
+rect 26 21 92 37
+rect 144 71 210 87
+rect 144 37 160 71
+rect 194 37 210 71
+rect 144 21 210 37
+rect 262 71 328 87
+rect 262 37 278 71
+rect 312 37 328 71
+rect 262 21 328 37
+rect 380 71 446 87
+rect 380 37 396 71
+rect 430 37 446 71
+rect 380 21 446 37
+rect 498 71 564 87
+rect 498 37 514 71
+rect 548 37 564 71
+rect 498 21 564 37
+rect 616 71 682 87
+rect 616 37 632 71
+rect 666 37 682 71
+rect 616 21 682 37
+rect -682 -37 -616 -21
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -682 -87 -616 -71
+rect -564 -37 -498 -21
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -564 -87 -498 -71
+rect -446 -37 -380 -21
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -446 -87 -380 -71
+rect -328 -37 -262 -21
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -328 -87 -262 -71
+rect -210 -37 -144 -21
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -210 -87 -144 -71
+rect -92 -37 -26 -21
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect -92 -87 -26 -71
+rect 26 -37 92 -21
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 26 -87 92 -71
+rect 144 -37 210 -21
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 144 -87 210 -71
+rect 262 -37 328 -21
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 262 -87 328 -71
+rect 380 -37 446 -21
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 380 -87 446 -71
+rect 498 -37 564 -21
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 498 -87 564 -71
+rect 616 -37 682 -21
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect 616 -87 682 -71
+rect -679 -118 -619 -87
+rect -561 -118 -501 -87
+rect -443 -118 -383 -87
+rect -325 -118 -265 -87
+rect -207 -118 -147 -87
+rect -89 -118 -29 -87
+rect 29 -118 89 -87
+rect 147 -118 207 -87
+rect 265 -118 325 -87
+rect 383 -118 443 -87
+rect 501 -118 561 -87
+rect 619 -118 679 -87
+rect -679 -549 -619 -518
+rect -561 -549 -501 -518
+rect -443 -549 -383 -518
+rect -325 -549 -265 -518
+rect -207 -549 -147 -518
+rect -89 -549 -29 -518
+rect 29 -549 89 -518
+rect 147 -549 207 -518
+rect 265 -549 325 -518
+rect 383 -549 443 -518
+rect 501 -549 561 -518
+rect 619 -549 679 -518
+rect -682 -565 -616 -549
+rect -682 -599 -666 -565
+rect -632 -599 -616 -565
+rect -682 -615 -616 -599
+rect -564 -565 -498 -549
+rect -564 -599 -548 -565
+rect -514 -599 -498 -565
+rect -564 -615 -498 -599
+rect -446 -565 -380 -549
+rect -446 -599 -430 -565
+rect -396 -599 -380 -565
+rect -446 -615 -380 -599
+rect -328 -565 -262 -549
+rect -328 -599 -312 -565
+rect -278 -599 -262 -565
+rect -328 -615 -262 -599
+rect -210 -565 -144 -549
+rect -210 -599 -194 -565
+rect -160 -599 -144 -565
+rect -210 -615 -144 -599
+rect -92 -565 -26 -549
+rect -92 -599 -76 -565
+rect -42 -599 -26 -565
+rect -92 -615 -26 -599
+rect 26 -565 92 -549
+rect 26 -599 42 -565
+rect 76 -599 92 -565
+rect 26 -615 92 -599
+rect 144 -565 210 -549
+rect 144 -599 160 -565
+rect 194 -599 210 -565
+rect 144 -615 210 -599
+rect 262 -565 328 -549
+rect 262 -599 278 -565
+rect 312 -599 328 -565
+rect 262 -615 328 -599
+rect 380 -565 446 -549
+rect 380 -599 396 -565
+rect 430 -599 446 -565
+rect 380 -615 446 -599
+rect 498 -565 564 -549
+rect 498 -599 514 -565
+rect 548 -599 564 -565
+rect 498 -615 564 -599
+rect 616 -565 682 -549
+rect 616 -599 632 -565
+rect 666 -599 682 -565
+rect 616 -615 682 -599
+<< polycont >>
+rect -666 565 -632 599
+rect -548 565 -514 599
+rect -430 565 -396 599
+rect -312 565 -278 599
+rect -194 565 -160 599
+rect -76 565 -42 599
+rect 42 565 76 599
+rect 160 565 194 599
+rect 278 565 312 599
+rect 396 565 430 599
+rect 514 565 548 599
+rect 632 565 666 599
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -666 -599 -632 -565
+rect -548 -599 -514 -565
+rect -430 -599 -396 -565
+rect -312 -599 -278 -565
+rect -194 -599 -160 -565
+rect -76 -599 -42 -565
+rect 42 -599 76 -565
+rect 160 -599 194 -565
+rect 278 -599 312 -565
+rect 396 -599 430 -565
+rect 514 -599 548 -565
+rect 632 -599 666 -565
+<< locali >>
+rect -839 667 -743 701
+rect 743 667 839 701
+rect -839 605 -805 667
+rect 805 605 839 667
+rect -682 565 -666 599
+rect -632 565 -616 599
+rect -564 565 -548 599
+rect -514 565 -498 599
+rect -446 565 -430 599
+rect -396 565 -380 599
+rect -328 565 -312 599
+rect -278 565 -262 599
+rect -210 565 -194 599
+rect -160 565 -144 599
+rect -92 565 -76 599
+rect -42 565 -26 599
+rect 26 565 42 599
+rect 76 565 92 599
+rect 144 565 160 599
+rect 194 565 210 599
+rect 262 565 278 599
+rect 312 565 328 599
+rect 380 565 396 599
+rect 430 565 446 599
+rect 498 565 514 599
+rect 548 565 564 599
+rect 616 565 632 599
+rect 666 565 682 599
+rect -725 506 -691 522
+rect -725 114 -691 130
+rect -607 506 -573 522
+rect -607 114 -573 130
+rect -489 506 -455 522
+rect -489 114 -455 130
+rect -371 506 -337 522
+rect -371 114 -337 130
+rect -253 506 -219 522
+rect -253 114 -219 130
+rect -135 506 -101 522
+rect -135 114 -101 130
+rect -17 506 17 522
+rect -17 114 17 130
+rect 101 506 135 522
+rect 101 114 135 130
+rect 219 506 253 522
+rect 219 114 253 130
+rect 337 506 371 522
+rect 337 114 371 130
+rect 455 506 489 522
+rect 455 114 489 130
+rect 573 506 607 522
+rect 573 114 607 130
+rect 691 506 725 522
+rect 691 114 725 130
+rect -682 37 -666 71
+rect -632 37 -616 71
+rect -564 37 -548 71
+rect -514 37 -498 71
+rect -446 37 -430 71
+rect -396 37 -380 71
+rect -328 37 -312 71
+rect -278 37 -262 71
+rect -210 37 -194 71
+rect -160 37 -144 71
+rect -92 37 -76 71
+rect -42 37 -26 71
+rect 26 37 42 71
+rect 76 37 92 71
+rect 144 37 160 71
+rect 194 37 210 71
+rect 262 37 278 71
+rect 312 37 328 71
+rect 380 37 396 71
+rect 430 37 446 71
+rect 498 37 514 71
+rect 548 37 564 71
+rect 616 37 632 71
+rect 666 37 682 71
+rect -682 -71 -666 -37
+rect -632 -71 -616 -37
+rect -564 -71 -548 -37
+rect -514 -71 -498 -37
+rect -446 -71 -430 -37
+rect -396 -71 -380 -37
+rect -328 -71 -312 -37
+rect -278 -71 -262 -37
+rect -210 -71 -194 -37
+rect -160 -71 -144 -37
+rect -92 -71 -76 -37
+rect -42 -71 -26 -37
+rect 26 -71 42 -37
+rect 76 -71 92 -37
+rect 144 -71 160 -37
+rect 194 -71 210 -37
+rect 262 -71 278 -37
+rect 312 -71 328 -37
+rect 380 -71 396 -37
+rect 430 -71 446 -37
+rect 498 -71 514 -37
+rect 548 -71 564 -37
+rect 616 -71 632 -37
+rect 666 -71 682 -37
+rect -725 -130 -691 -114
+rect -725 -522 -691 -506
+rect -607 -130 -573 -114
+rect -607 -522 -573 -506
+rect -489 -130 -455 -114
+rect -489 -522 -455 -506
+rect -371 -130 -337 -114
+rect -371 -522 -337 -506
+rect -253 -130 -219 -114
+rect -253 -522 -219 -506
+rect -135 -130 -101 -114
+rect -135 -522 -101 -506
+rect -17 -130 17 -114
+rect -17 -522 17 -506
+rect 101 -130 135 -114
+rect 101 -522 135 -506
+rect 219 -130 253 -114
+rect 219 -522 253 -506
+rect 337 -130 371 -114
+rect 337 -522 371 -506
+rect 455 -130 489 -114
+rect 455 -522 489 -506
+rect 573 -130 607 -114
+rect 573 -522 607 -506
+rect 691 -130 725 -114
+rect 691 -522 725 -506
+rect -682 -599 -666 -565
+rect -632 -599 -616 -565
+rect -564 -599 -548 -565
+rect -514 -599 -498 -565
+rect -446 -599 -430 -565
+rect -396 -599 -380 -565
+rect -328 -599 -312 -565
+rect -278 -599 -262 -565
+rect -210 -599 -194 -565
+rect -160 -599 -144 -565
+rect -92 -599 -76 -565
+rect -42 -599 -26 -565
+rect 26 -599 42 -565
+rect 76 -599 92 -565
+rect 144 -599 160 -565
+rect 194 -599 210 -565
+rect 262 -599 278 -565
+rect 312 -599 328 -565
+rect 380 -599 396 -565
+rect 430 -599 446 -565
+rect 498 -599 514 -565
+rect 548 -599 564 -565
+rect 616 -599 632 -565
+rect 666 -599 682 -565
+rect -839 -667 -805 -605
+rect 805 -667 839 -605
+rect -839 -701 -743 -667
+rect 743 -701 839 -667
+<< viali >>
+rect -666 565 -632 599
+rect -548 565 -514 599
+rect -430 565 -396 599
+rect -312 565 -278 599
+rect -194 565 -160 599
+rect -76 565 -42 599
+rect 42 565 76 599
+rect 160 565 194 599
+rect 278 565 312 599
+rect 396 565 430 599
+rect 514 565 548 599
+rect 632 565 666 599
+rect -725 130 -691 506
+rect -607 130 -573 506
+rect -489 130 -455 506
+rect -371 130 -337 506
+rect -253 130 -219 506
+rect -135 130 -101 506
+rect -17 130 17 506
+rect 101 130 135 506
+rect 219 130 253 506
+rect 337 130 371 506
+rect 455 130 489 506
+rect 573 130 607 506
+rect 691 130 725 506
+rect -666 37 -632 71
+rect -548 37 -514 71
+rect -430 37 -396 71
+rect -312 37 -278 71
+rect -194 37 -160 71
+rect -76 37 -42 71
+rect 42 37 76 71
+rect 160 37 194 71
+rect 278 37 312 71
+rect 396 37 430 71
+rect 514 37 548 71
+rect 632 37 666 71
+rect -666 -71 -632 -37
+rect -548 -71 -514 -37
+rect -430 -71 -396 -37
+rect -312 -71 -278 -37
+rect -194 -71 -160 -37
+rect -76 -71 -42 -37
+rect 42 -71 76 -37
+rect 160 -71 194 -37
+rect 278 -71 312 -37
+rect 396 -71 430 -37
+rect 514 -71 548 -37
+rect 632 -71 666 -37
+rect -725 -506 -691 -130
+rect -607 -506 -573 -130
+rect -489 -506 -455 -130
+rect -371 -506 -337 -130
+rect -253 -506 -219 -130
+rect -135 -506 -101 -130
+rect -17 -506 17 -130
+rect 101 -506 135 -130
+rect 219 -506 253 -130
+rect 337 -506 371 -130
+rect 455 -506 489 -130
+rect 573 -506 607 -130
+rect 691 -506 725 -130
+rect -666 -599 -632 -565
+rect -548 -599 -514 -565
+rect -430 -599 -396 -565
+rect -312 -599 -278 -565
+rect -194 -599 -160 -565
+rect -76 -599 -42 -565
+rect 42 -599 76 -565
+rect 160 -599 194 -565
+rect 278 -599 312 -565
+rect 396 -599 430 -565
+rect 514 -599 548 -565
+rect 632 -599 666 -565
+<< metal1 >>
+rect -678 599 -620 605
+rect -678 565 -666 599
+rect -632 565 -620 599
+rect -678 559 -620 565
+rect -560 599 -502 605
+rect -560 565 -548 599
+rect -514 565 -502 599
+rect -560 559 -502 565
+rect -442 599 -384 605
+rect -442 565 -430 599
+rect -396 565 -384 599
+rect -442 559 -384 565
+rect -324 599 -266 605
+rect -324 565 -312 599
+rect -278 565 -266 599
+rect -324 559 -266 565
+rect -206 599 -148 605
+rect -206 565 -194 599
+rect -160 565 -148 599
+rect -206 559 -148 565
+rect -88 599 -30 605
+rect -88 565 -76 599
+rect -42 565 -30 599
+rect -88 559 -30 565
+rect 30 599 88 605
+rect 30 565 42 599
+rect 76 565 88 599
+rect 30 559 88 565
+rect 148 599 206 605
+rect 148 565 160 599
+rect 194 565 206 599
+rect 148 559 206 565
+rect 266 599 324 605
+rect 266 565 278 599
+rect 312 565 324 599
+rect 266 559 324 565
+rect 384 599 442 605
+rect 384 565 396 599
+rect 430 565 442 599
+rect 384 559 442 565
+rect 502 599 560 605
+rect 502 565 514 599
+rect 548 565 560 599
+rect 502 559 560 565
+rect 620 599 678 605
+rect 620 565 632 599
+rect 666 565 678 599
+rect 620 559 678 565
+rect -731 506 -685 518
+rect -731 130 -725 506
+rect -691 130 -685 506
+rect -731 118 -685 130
+rect -613 506 -567 518
+rect -613 130 -607 506
+rect -573 130 -567 506
+rect -613 118 -567 130
+rect -495 506 -449 518
+rect -495 130 -489 506
+rect -455 130 -449 506
+rect -495 118 -449 130
+rect -377 506 -331 518
+rect -377 130 -371 506
+rect -337 130 -331 506
+rect -377 118 -331 130
+rect -259 506 -213 518
+rect -259 130 -253 506
+rect -219 130 -213 506
+rect -259 118 -213 130
+rect -141 506 -95 518
+rect -141 130 -135 506
+rect -101 130 -95 506
+rect -141 118 -95 130
+rect -23 506 23 518
+rect -23 130 -17 506
+rect 17 130 23 506
+rect -23 118 23 130
+rect 95 506 141 518
+rect 95 130 101 506
+rect 135 130 141 506
+rect 95 118 141 130
+rect 213 506 259 518
+rect 213 130 219 506
+rect 253 130 259 506
+rect 213 118 259 130
+rect 331 506 377 518
+rect 331 130 337 506
+rect 371 130 377 506
+rect 331 118 377 130
+rect 449 506 495 518
+rect 449 130 455 506
+rect 489 130 495 506
+rect 449 118 495 130
+rect 567 506 613 518
+rect 567 130 573 506
+rect 607 130 613 506
+rect 567 118 613 130
+rect 685 506 731 518
+rect 685 130 691 506
+rect 725 130 731 506
+rect 685 118 731 130
+rect -678 71 -620 77
+rect -678 37 -666 71
+rect -632 37 -620 71
+rect -678 31 -620 37
+rect -560 71 -502 77
+rect -560 37 -548 71
+rect -514 37 -502 71
+rect -560 31 -502 37
+rect -442 71 -384 77
+rect -442 37 -430 71
+rect -396 37 -384 71
+rect -442 31 -384 37
+rect -324 71 -266 77
+rect -324 37 -312 71
+rect -278 37 -266 71
+rect -324 31 -266 37
+rect -206 71 -148 77
+rect -206 37 -194 71
+rect -160 37 -148 71
+rect -206 31 -148 37
+rect -88 71 -30 77
+rect -88 37 -76 71
+rect -42 37 -30 71
+rect -88 31 -30 37
+rect 30 71 88 77
+rect 30 37 42 71
+rect 76 37 88 71
+rect 30 31 88 37
+rect 148 71 206 77
+rect 148 37 160 71
+rect 194 37 206 71
+rect 148 31 206 37
+rect 266 71 324 77
+rect 266 37 278 71
+rect 312 37 324 71
+rect 266 31 324 37
+rect 384 71 442 77
+rect 384 37 396 71
+rect 430 37 442 71
+rect 384 31 442 37
+rect 502 71 560 77
+rect 502 37 514 71
+rect 548 37 560 71
+rect 502 31 560 37
+rect 620 71 678 77
+rect 620 37 632 71
+rect 666 37 678 71
+rect 620 31 678 37
+rect -678 -37 -620 -31
+rect -678 -71 -666 -37
+rect -632 -71 -620 -37
+rect -678 -77 -620 -71
+rect -560 -37 -502 -31
+rect -560 -71 -548 -37
+rect -514 -71 -502 -37
+rect -560 -77 -502 -71
+rect -442 -37 -384 -31
+rect -442 -71 -430 -37
+rect -396 -71 -384 -37
+rect -442 -77 -384 -71
+rect -324 -37 -266 -31
+rect -324 -71 -312 -37
+rect -278 -71 -266 -37
+rect -324 -77 -266 -71
+rect -206 -37 -148 -31
+rect -206 -71 -194 -37
+rect -160 -71 -148 -37
+rect -206 -77 -148 -71
+rect -88 -37 -30 -31
+rect -88 -71 -76 -37
+rect -42 -71 -30 -37
+rect -88 -77 -30 -71
+rect 30 -37 88 -31
+rect 30 -71 42 -37
+rect 76 -71 88 -37
+rect 30 -77 88 -71
+rect 148 -37 206 -31
+rect 148 -71 160 -37
+rect 194 -71 206 -37
+rect 148 -77 206 -71
+rect 266 -37 324 -31
+rect 266 -71 278 -37
+rect 312 -71 324 -37
+rect 266 -77 324 -71
+rect 384 -37 442 -31
+rect 384 -71 396 -37
+rect 430 -71 442 -37
+rect 384 -77 442 -71
+rect 502 -37 560 -31
+rect 502 -71 514 -37
+rect 548 -71 560 -37
+rect 502 -77 560 -71
+rect 620 -37 678 -31
+rect 620 -71 632 -37
+rect 666 -71 678 -37
+rect 620 -77 678 -71
+rect -731 -130 -685 -118
+rect -731 -506 -725 -130
+rect -691 -506 -685 -130
+rect -731 -518 -685 -506
+rect -613 -130 -567 -118
+rect -613 -506 -607 -130
+rect -573 -506 -567 -130
+rect -613 -518 -567 -506
+rect -495 -130 -449 -118
+rect -495 -506 -489 -130
+rect -455 -506 -449 -130
+rect -495 -518 -449 -506
+rect -377 -130 -331 -118
+rect -377 -506 -371 -130
+rect -337 -506 -331 -130
+rect -377 -518 -331 -506
+rect -259 -130 -213 -118
+rect -259 -506 -253 -130
+rect -219 -506 -213 -130
+rect -259 -518 -213 -506
+rect -141 -130 -95 -118
+rect -141 -506 -135 -130
+rect -101 -506 -95 -130
+rect -141 -518 -95 -506
+rect -23 -130 23 -118
+rect -23 -506 -17 -130
+rect 17 -506 23 -130
+rect -23 -518 23 -506
+rect 95 -130 141 -118
+rect 95 -506 101 -130
+rect 135 -506 141 -130
+rect 95 -518 141 -506
+rect 213 -130 259 -118
+rect 213 -506 219 -130
+rect 253 -506 259 -130
+rect 213 -518 259 -506
+rect 331 -130 377 -118
+rect 331 -506 337 -130
+rect 371 -506 377 -130
+rect 331 -518 377 -506
+rect 449 -130 495 -118
+rect 449 -506 455 -130
+rect 489 -506 495 -130
+rect 449 -518 495 -506
+rect 567 -130 613 -118
+rect 567 -506 573 -130
+rect 607 -506 613 -130
+rect 567 -518 613 -506
+rect 685 -130 731 -118
+rect 685 -506 691 -130
+rect 725 -506 731 -130
+rect 685 -518 731 -506
+rect -678 -565 -620 -559
+rect -678 -599 -666 -565
+rect -632 -599 -620 -565
+rect -678 -605 -620 -599
+rect -560 -565 -502 -559
+rect -560 -599 -548 -565
+rect -514 -599 -502 -565
+rect -560 -605 -502 -599
+rect -442 -565 -384 -559
+rect -442 -599 -430 -565
+rect -396 -599 -384 -565
+rect -442 -605 -384 -599
+rect -324 -565 -266 -559
+rect -324 -599 -312 -565
+rect -278 -599 -266 -565
+rect -324 -605 -266 -599
+rect -206 -565 -148 -559
+rect -206 -599 -194 -565
+rect -160 -599 -148 -565
+rect -206 -605 -148 -599
+rect -88 -565 -30 -559
+rect -88 -599 -76 -565
+rect -42 -599 -30 -565
+rect -88 -605 -30 -599
+rect 30 -565 88 -559
+rect 30 -599 42 -565
+rect 76 -599 88 -565
+rect 30 -605 88 -599
+rect 148 -565 206 -559
+rect 148 -599 160 -565
+rect 194 -599 206 -565
+rect 148 -605 206 -599
+rect 266 -565 324 -559
+rect 266 -599 278 -565
+rect 312 -599 324 -565
+rect 266 -605 324 -599
+rect 384 -565 442 -559
+rect 384 -599 396 -565
+rect 430 -599 442 -565
+rect 384 -605 442 -599
+rect 502 -565 560 -559
+rect 502 -599 514 -565
+rect 548 -599 560 -565
+rect 502 -605 560 -599
+rect 620 -565 678 -559
+rect 620 -599 632 -565
+rect 666 -599 678 -565
+rect 620 -605 678 -599
+<< properties >>
+string FIXED_BBOX -822 -684 822 684
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.3 m 2 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.ext b/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.ext
new file mode 100644
index 0000000..fed7a87
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.ext
@@ -0,0 +1,1028 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1407_n836#" 1426 0 1407 -836 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1311_n836#" 1349 0 1311 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1215_n836#" 1349 0 1215 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n836#" 1349 0 1119 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n836#" 1349 0 1023 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_927_n836#" 1349 0 927 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_n836#" 1349 0 831 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_n836#" 1349 0 735 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n836#" 1349 0 639 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n836#" 1349 0 543 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n836#" 1349 0 447 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n836#" 1349 0 351 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n836#" 1349 0 255 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n836#" 1349 0 159 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n836#" 1349 0 63 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n836#" 1349 0 -33 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n836#" 1349 0 -129 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n836#" 1349 0 -225 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n836#" 1349 0 -321 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n836#" 1349 0 -417 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n836#" 1349 0 -513 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n836#" 1349 0 -609 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n836#" 1349 0 -705 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n836#" 1349 0 -801 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n836#" 1349 0 -897 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n836#" 1349 0 -993 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n836#" 1349 0 -1089 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n836#" 1349 0 -1185 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1281_n836#" 1349 0 -1281 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1377_n836#" 1349 0 -1377 -836 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1469_n836#" 1426 0 -1469 -836 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1263_n933#" 851 0 1263 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1071_n933#" 851 0 1071 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_879_n933#" 851 0 879 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_n933#" 851 0 687 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n933#" 851 0 495 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n933#" 851 0 303 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n933#" 851 0 111 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n933#" 851 0 -81 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n933#" 851 0 -273 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n933#" 851 0 -465 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n933#" 851 0 -657 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n933#" 851 0 -849 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n933#" 851 0 -1041 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1233_n933#" 851 0 -1233 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1425_n933#" 851 0 -1425 -933 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1359_n405#" 851 0 1359 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_n405#" 851 0 1167 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_975_n405#" 851 0 975 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_783_n405#" 851 0 783 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_n405#" 851 0 591 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n405#" 851 0 399 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n405#" 851 0 207 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n405#" 851 0 15 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n405#" 851 0 -177 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n405#" 851 0 -369 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n405#" 851 0 -561 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n405#" 851 0 -753 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n405#" 851 0 -945 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n405#" 851 0 -1137 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1329_n405#" 851 0 -1329 -405 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1407_n200#" 1426 0 1407 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1311_n200#" 1349 0 1311 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1215_n200#" 1349 0 1215 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n200#" 1349 0 1119 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n200#" 1349 0 1023 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_927_n200#" 1349 0 927 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_n200#" 1349 0 831 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_n200#" 1349 0 735 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n200#" 1349 0 639 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n200#" 1349 0 543 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n200#" 1349 0 447 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n200#" 1349 0 351 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n200#" 1349 0 255 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n200#" 1349 0 159 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 1349 0 63 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 1349 0 -33 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 1349 0 -129 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 1349 0 -225 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n200#" 1349 0 -321 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n200#" 1349 0 -417 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n200#" 1349 0 -513 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n200#" 1349 0 -609 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n200#" 1349 0 -705 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n200#" 1349 0 -801 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n200#" 1349 0 -897 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n200#" 1349 0 -993 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n200#" 1349 0 -1089 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n200#" 1349 0 -1185 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1281_n200#" 1349 0 -1281 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1377_n200#" 1349 0 -1377 -200 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1469_n200#" 1426 0 -1469 -200 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1359_n297#" 851 0 1359 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_n297#" 851 0 1167 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_975_n297#" 851 0 975 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_783_n297#" 851 0 783 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_n297#" 851 0 591 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n297#" 851 0 399 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n297#" 851 0 207 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n297#" 851 0 15 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n297#" 851 0 -177 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n297#" 851 0 -369 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n297#" 851 0 -561 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n297#" 851 0 -753 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n297#" 851 0 -945 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n297#" 851 0 -1137 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1329_n297#" 851 0 -1329 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1263_231#" 851 0 1263 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1071_231#" 851 0 1071 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_879_231#" 851 0 879 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_231#" 851 0 687 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_231#" 851 0 495 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_231#" 851 0 303 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_231#" 851 0 111 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_231#" 851 0 -81 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_231#" 851 0 -273 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_231#" 851 0 -465 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_231#" 851 0 -657 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_231#" 851 0 -849 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_231#" 851 0 -1041 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1233_231#" 851 0 -1233 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1425_231#" 851 0 -1425 231 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1407_436#" 1426 0 1407 436 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1311_436#" 1349 0 1311 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1215_436#" 1349 0 1215 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_436#" 1349 0 1119 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_436#" 1349 0 1023 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_927_436#" 1349 0 927 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_436#" 1349 0 831 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_436#" 1349 0 735 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_436#" 1349 0 639 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_436#" 1349 0 543 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_436#" 1349 0 447 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_436#" 1349 0 351 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_436#" 1349 0 255 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_436#" 1349 0 159 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_436#" 1349 0 63 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_436#" 1349 0 -33 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_436#" 1349 0 -129 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_436#" 1349 0 -225 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_436#" 1349 0 -321 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_436#" 1349 0 -417 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_436#" 1349 0 -513 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_436#" 1349 0 -609 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_436#" 1349 0 -705 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_436#" 1349 0 -801 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_436#" 1349 0 -897 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n993_436#" 1349 0 -993 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_436#" 1349 0 -1089 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_436#" 1349 0 -1185 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1281_436#" 1349 0 -1281 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1377_436#" 1349 0 -1377 436 pdif 0 0 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1469_436#" 1426 0 -1469 436 pdif 0 0 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1263_339#" 851 0 1263 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1071_339#" 851 0 1071 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_879_339#" 851 0 879 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_339#" 851 0 687 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_339#" 851 0 495 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_339#" 851 0 303 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_339#" 851 0 111 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_339#" 851 0 -81 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_339#" 851 0 -273 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_339#" 851 0 -465 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_339#" 851 0 -657 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_339#" 851 0 -849 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_339#" 851 0 -1041 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1233_339#" 851 0 -1233 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1425_339#" 851 0 -1425 339 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1359_867#" 851 0 1359 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_867#" 851 0 1167 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_975_867#" 851 0 975 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_783_867#" 851 0 783 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_867#" 851 0 591 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_867#" 851 0 399 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_867#" 851 0 207 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_867#" 851 0 15 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_867#" 851 0 -177 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_867#" 851 0 -369 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_867#" 851 0 -561 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_867#" 851 0 -753 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_867#" 851 0 -945 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_867#" 851 0 -1137 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1329_867#" 851 0 -1329 867 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18066 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n1607_n1055#" 41115 20344.6 -1607 -1055 nw 0 0 0 0 6781540 10648 0 0 347616 20448 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 347616 20448 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_351_n200#" "a_447_n200#" 479.458
+cap "a_255_n836#" "a_255_n200#" 11.3678
+cap "a_n705_436#" "a_n705_n200#" 11.3678
+cap "w_n1607_n1055#" "a_927_n200#" 4.61835
+cap "a_687_339#" "a_591_867#" 13.3939
+cap "a_63_n836#" "a_159_n836#" 479.458
+cap "a_n849_231#" "a_n801_n200#" 4.90233
+cap "a_639_n836#" "w_n1607_n1055#" 11.99
+cap "a_783_n405#" "a_879_n933#" 13.3939
+cap "a_1359_867#" "a_1359_n297#" 6.32145
+cap "a_n273_231#" "a_n177_n297#" 13.3939
+cap "a_1407_n836#" "a_1407_n200#" 11.3678
+cap "a_447_436#" "a_495_339#" 4.90233
+cap "a_n1233_231#" "a_n1233_339#" 86.2066
+cap "a_447_n836#" "a_495_n933#" 4.90233
+cap "a_n81_231#" "a_n129_n200#" 4.90233
+cap "a_n465_339#" "a_n273_339#" 29.6522
+cap "a_n81_231#" "w_n1607_n1055#" 37.5333
+cap "a_255_436#" "a_255_n200#" 11.3678
+cap "a_n1469_436#" "a_n1469_n200#" 11.3678
+cap "a_1167_n405#" "a_1167_n297#" 86.2066
+cap "a_n1185_n836#" "a_n1089_n836#" 479.458
+cap "a_639_436#" "w_n1607_n1055#" 12.2254
+cap "a_n801_436#" "a_n705_436#" 479.458
+cap "a_15_n297#" "a_63_n200#" 4.90233
+cap "w_n1607_n1055#" "a_n801_n200#" 4.61835
+cap "a_n1233_231#" "a_n1041_231#" 29.6522
+cap "a_207_n405#" "w_n1607_n1055#" 47.4348
+cap "a_879_339#" "w_n1607_n1055#" 47.6413
+cap "a_n1185_n836#" "a_n1233_n933#" 4.90233
+cap "a_n225_n836#" "a_n177_n405#" 4.90233
+cap "a_n609_n836#" "a_n609_n200#" 11.3678
+cap "a_n561_n297#" "a_n561_867#" 6.32145
+cap "a_n81_339#" "a_n177_867#" 13.3939
+cap "a_1119_n836#" "a_1215_n836#" 479.458
+cap "a_1359_n405#" "a_1311_n836#" 4.90233
+cap "a_63_436#" "a_159_436#" 479.458
+cap "w_n1607_n1055#" "a_255_n200#" 4.61835
+cap "w_n1607_n1055#" "a_n753_867#" 82.1969
+cap "a_n1233_231#" "a_n1281_n200#" 4.90233
+cap "a_n33_n836#" "w_n1607_n1055#" 11.99
+cap "a_n1425_n933#" "a_n1233_n933#" 29.6522
+cap "a_207_n405#" "a_111_n933#" 13.3939
+cap "a_303_231#" "a_399_n297#" 13.3939
+cap "a_n849_231#" "a_n945_n297#" 13.3939
+cap "a_n1089_436#" "a_n1137_867#" 4.90233
+cap "a_n897_436#" "w_n1607_n1055#" 12.2254
+cap "a_n369_867#" "a_n561_867#" 29.6522
+cap "a_15_867#" "a_207_867#" 29.6522
+cap "a_879_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n1425_231#" "w_n1607_n1055#" 76.5297
+cap "a_n1137_n297#" "a_n1089_n200#" 4.90233
+cap "a_n1377_n200#" "a_n1281_n200#" 479.458
+cap "a_n945_n405#" "a_n753_n405#" 29.6522
+cap "a_n753_n297#" "a_n753_n405#" 86.2066
+cap "a_927_n200#" "a_1023_n200#" 479.458
+cap "a_n33_436#" "w_n1607_n1055#" 12.2254
+cap "a_n753_n297#" "a_n561_n297#" 29.6522
+cap "a_831_n836#" "a_831_n200#" 11.3678
+cap "a_1071_n933#" "a_1023_n836#" 4.90233
+cap "a_639_n836#" "a_735_n836#" 479.458
+cap "a_447_n200#" "a_399_n297#" 4.90233
+cap "a_495_231#" "a_543_n200#" 4.90233
+cap "a_n1425_339#" "a_n1469_436#" 4.90233
+cap "w_n1607_n1055#" "a_n1469_n200#" 147.448
+cap "a_n657_231#" "a_n657_n933#" 6.32145
+cap "a_n1137_n405#" "w_n1607_n1055#" 47.4348
+cap "a_1263_n933#" "a_1167_n405#" 13.3939
+cap "a_n945_n297#" "w_n1607_n1055#" 37.7398
+cap "a_n465_339#" "a_n561_867#" 13.3939
+cap "a_n609_n836#" "a_n513_n836#" 479.458
+cap "a_831_436#" "a_831_n200#" 11.3678
+cap "a_n705_n836#" "w_n1607_n1055#" 11.99
+cap "a_n561_n405#" "a_n465_n933#" 13.3939
+cap "a_n417_n836#" "a_n465_n933#" 4.90233
+cap "a_543_n836#" "a_591_n405#" 4.90233
+cap "a_n81_231#" "a_111_231#" 29.6522
+cap "a_n465_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n129_436#" "a_n81_339#" 4.90233
+cap "a_1263_231#" "a_1359_n297#" 13.3939
+cap "a_639_436#" "a_735_436#" 479.458
+cap "w_n1607_n1055#" "a_1407_n200#" 147.596
+cap "a_n273_n933#" "a_n81_n933#" 29.6522
+cap "a_n465_231#" "a_n513_n200#" 4.90233
+cap "a_303_231#" "a_207_n297#" 13.3939
+cap "a_n1089_n836#" "a_n1137_n405#" 4.90233
+cap "a_n1281_n836#" "a_n1281_n200#" 11.3678
+cap "a_n657_339#" "a_n609_436#" 4.90233
+cap "a_495_231#" "w_n1607_n1055#" 37.5333
+cap "a_63_436#" "a_15_867#" 4.90233
+cap "a_n1425_339#" "w_n1607_n1055#" 86.6377
+cap "a_n369_n297#" "a_n321_n200#" 4.90233
+cap "a_n801_n200#" "a_n705_n200#" 479.458
+cap "a_n1377_n836#" "w_n1607_n1055#" 11.99
+cap "a_n1137_n405#" "a_n1233_n933#" 13.3939
+cap "a_207_n405#" "a_399_n405#" 29.6522
+cap "a_879_339#" "a_1071_339#" 29.6522
+cap "a_1215_n200#" "a_1167_n297#" 4.90233
+cap "a_n897_n836#" "a_n849_n933#" 4.90233
+cap "a_1263_231#" "a_1311_n200#" 4.90233
+cap "a_447_436#" "a_399_867#" 4.90233
+cap "a_n1377_436#" "a_n1329_867#" 4.90233
+cap "w_n1607_n1055#" "a_n321_n200#" 4.61835
+cap "a_n1281_436#" "w_n1607_n1055#" 12.2254
+cap "a_1167_n405#" "w_n1607_n1055#" 47.4348
+cap "a_399_n297#" "a_591_n297#" 29.6522
+cap "a_687_231#" "a_591_n297#" 13.3939
+cap "a_255_n200#" "a_351_n200#" 479.458
+cap "a_687_231#" "a_879_231#" 29.6522
+cap "a_495_339#" "a_399_867#" 13.3939
+cap "a_n1041_339#" "a_n1137_867#" 13.3939
+cap "a_n657_339#" "w_n1607_n1055#" 47.6413
+cap "a_159_n836#" "a_159_n200#" 11.3678
+cap "a_n801_436#" "a_n801_n200#" 11.3678
+cap "a_447_n836#" "w_n1607_n1055#" 11.99
+cap "w_n1607_n1055#" "a_735_n200#" 4.61835
+cap "a_591_n405#" "a_687_n933#" 13.3939
+cap "a_n753_867#" "a_n561_867#" 29.6522
+cap "a_n33_n836#" "a_63_n836#" 479.458
+cap "a_n465_231#" "a_n369_n297#" 13.3939
+cap "a_1167_867#" "a_1167_n297#" 6.32145
+cap "a_1311_n836#" "a_1311_n200#" 11.3678
+cap "a_n1041_339#" "a_n1089_436#" 4.90233
+cap "a_n369_867#" "a_n177_867#" 29.6522
+cap "w_n1607_n1055#" "a_783_867#" 82.1969
+cap "a_351_436#" "a_303_339#" 4.90233
+cap "a_n801_436#" "a_n753_867#" 4.90233
+cap "a_n417_436#" "w_n1607_n1055#" 12.2254
+cap "a_n1425_n933#" "a_n1329_n405#" 13.3939
+cap "a_351_n836#" "a_303_n933#" 4.90233
+cap "a_n273_231#" "a_n225_n200#" 4.90233
+cap "a_n465_231#" "w_n1607_n1055#" 37.5333
+cap "a_n1281_n836#" "a_n1185_n836#" 479.458
+cap "a_n753_n297#" "a_n801_n200#" 4.90233
+cap "a_159_436#" "a_159_n200#" 11.3678
+cap "a_447_436#" "w_n1607_n1055#" 12.2254
+cap "a_975_n405#" "a_975_n297#" 86.2066
+cap "a_n897_436#" "a_n801_436#" 479.458
+cap "a_n369_867#" "a_n321_436#" 4.90233
+cap "a_735_n200#" "a_783_n297#" 4.90233
+cap "a_n321_n836#" "a_n369_n405#" 4.90233
+cap "a_n705_n836#" "a_n705_n200#" 11.3678
+cap "a_879_231#" "a_831_n200#" 4.90233
+cap "w_n1607_n1055#" "a_n993_n200#" 4.61835
+cap "a_n1425_231#" "a_n1233_231#" 29.6522
+cap "a_n753_n297#" "a_n753_867#" 6.32145
+cap "a_n177_n405#" "w_n1607_n1055#" 47.4348
+cap "a_15_n297#" "w_n1607_n1055#" 37.7398
+cap "a_495_339#" "w_n1607_n1055#" 47.6413
+cap "a_1023_n836#" "a_1119_n836#" 479.458
+cap "a_1167_n405#" "a_1215_n836#" 4.90233
+cap "w_n1607_n1055#" "a_63_n200#" 4.61835
+cap "a_783_n297#" "a_783_867#" 6.32145
+cap "a_n33_436#" "a_63_436#" 479.458
+cap "a_n225_n836#" "w_n1607_n1055#" 11.99
+cap "a_15_n405#" "a_n81_n933#" 13.3939
+cap "w_n1607_n1055#" "a_n1137_867#" 82.1969
+cap "a_n1425_231#" "a_n1377_n200#" 4.90233
+cap "a_n1041_231#" "a_n1137_n297#" 13.3939
+cap "a_n1089_436#" "w_n1607_n1055#" 12.2254
+cap "a_495_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n129_n836#" "a_n81_n933#" 4.90233
+cap "a_1311_436#" "w_n1607_n1055#" 12.2254
+cap "a_n177_867#" "a_15_867#" 29.6522
+cap "a_n1469_n200#" "a_n1377_n200#" 479.458
+cap "a_1023_436#" "a_975_867#" 4.90233
+cap "a_n225_436#" "w_n1607_n1055#" 12.2254
+cap "a_n1137_n405#" "a_n945_n405#" 29.6522
+cap "a_n945_n297#" "a_n945_n405#" 86.2066
+cap "a_831_n200#" "a_927_n200#" 479.458
+cap "a_n945_n297#" "a_n753_n297#" 29.6522
+cap "a_735_n836#" "a_735_n200#" 11.3678
+cap "a_n849_231#" "a_n849_n933#" 6.32145
+cap "a_543_n836#" "a_639_n836#" 479.458
+cap "a_n801_n836#" "a_n753_n405#" 4.90233
+cap "a_1071_n933#" "a_975_n405#" 13.3939
+cap "a_1359_867#" "a_1263_339#" 13.3939
+cap "w_n1607_n1055#" "a_1167_n297#" 37.7398
+cap "a_n1329_n297#" "w_n1607_n1055#" 60.0175
+cap "a_111_339#" "w_n1607_n1055#" 47.6413
+cap "a_n897_n836#" "w_n1607_n1055#" 11.99
+cap "a_n753_n405#" "a_n657_n933#" 13.3939
+cap "a_n705_n836#" "a_n609_n836#" 479.458
+cap "a_735_436#" "a_735_n200#" 11.3678
+cap "a_735_436#" "a_783_867#" 4.90233
+cap "a_1407_n836#" "w_n1607_n1055#" 155.206
+cap "a_n1137_n405#" "a_n1329_n405#" 29.6522
+cap "a_n849_n933#" "w_n1607_n1055#" 82.1969
+cap "a_447_n836#" "a_399_n405#" 4.90233
+cap "a_n273_231#" "a_n81_231#" 29.6522
+cap "a_n225_436#" "a_n273_339#" 4.90233
+cap "a_1071_231#" "a_1167_n297#" 13.3939
+cap "a_543_436#" "a_639_436#" 479.458
+cap "w_n1607_n1055#" "a_1215_n200#" 4.61835
+cap "a_n657_339#" "a_n561_867#" 13.3939
+cap "a_n657_231#" "a_n609_n200#" 4.90233
+cap "a_927_n836#" "w_n1607_n1055#" 11.99
+cap "a_n465_n933#" "a_n273_n933#" 29.6522
+cap "a_n1377_n836#" "a_n1377_n200#" 11.3678
+cap "a_111_231#" "a_15_n297#" 13.3939
+cap "a_303_231#" "a_303_339#" 86.2066
+cap "a_639_436#" "a_687_339#" 4.90233
+cap "a_111_231#" "a_63_n200#" 4.90233
+cap "a_639_n836#" "a_687_n933#" 4.90233
+cap "a_n897_n200#" "a_n801_n200#" 479.458
+cap "a_15_n405#" "a_207_n405#" 29.6522
+cap "a_1263_n933#" "w_n1607_n1055#" 104.22
+cap "a_1167_867#" "w_n1607_n1055#" 82.1969
+cap "a_927_436#" "w_n1607_n1055#" 12.2254
+cap "a_207_n297#" "a_207_n405#" 86.2066
+cap "a_687_339#" "a_879_339#" 29.6522
+cap "w_n1607_n1055#" "a_n513_n200#" 4.61835
+cap "a_303_231#" "a_303_n933#" 6.32145
+cap "a_783_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n993_n836#" "a_n1041_n933#" 4.90233
+cap "a_n33_n836#" "a_15_n405#" 4.90233
+cap "a_207_n297#" "a_255_n200#" 4.90233
+cap "a_1119_436#" "a_1167_867#" 4.90233
+cap "a_n1469_436#" "w_n1607_n1055#" 155.482
+cap "a_495_231#" "a_399_n297#" 13.3939
+cap "a_111_339#" "a_207_867#" 13.3939
+cap "a_159_n200#" "a_255_n200#" 479.458
+cap "w_n1607_n1055#" "a_543_n200#" 4.61835
+cap "a_495_231#" "a_687_231#" 29.6522
+cap "a_n1233_339#" "a_n1329_867#" 13.3939
+cap "a_n945_867#" "a_n753_867#" 29.6522
+cap "a_n1041_339#" "w_n1607_n1055#" 47.6413
+cap "a_n1377_n836#" "a_n1329_n405#" 4.90233
+cap "a_63_n836#" "a_63_n200#" 11.3678
+cap "a_n1041_231#" "a_n1089_n200#" 4.90233
+cap "a_n897_436#" "a_n897_n200#" 11.3678
+cap "a_255_n836#" "w_n1607_n1055#" 11.99
+cap "a_399_n405#" "a_495_n933#" 13.3939
+cap "a_n129_n836#" "a_n33_n836#" 479.458
+cap "a_1215_436#" "a_1263_339#" 4.90233
+cap "a_n657_231#" "a_n561_n297#" 13.3939
+cap "a_975_867#" "a_975_n297#" 6.32145
+cap "a_1215_n836#" "a_1215_n200#" 11.3678
+cap "a_n1233_339#" "a_n1185_436#" 4.90233
+cap "w_n1607_n1055#" "a_399_867#" 82.1969
+cap "a_n897_436#" "a_n945_867#" 4.90233
+cap "a_n609_436#" "w_n1607_n1055#" 12.2254
+cap "a_111_231#" "a_111_339#" 86.2066
+cap "a_783_n405#" "a_783_n297#" 86.2066
+cap "a_n849_231#" "w_n1607_n1055#" 37.5333
+cap "a_n1377_n836#" "a_n1281_n836#" 479.458
+cap "a_n945_n297#" "a_n897_n200#" 4.90233
+cap "a_63_436#" "a_63_n200#" 11.3678
+cap "a_255_436#" "w_n1607_n1055#" 12.2254
+cap "a_1263_231#" "a_1263_339#" 86.2066
+cap "a_n993_436#" "a_n897_436#" 479.458
+cap "a_1263_n933#" "a_1215_n836#" 4.90233
+cap "a_639_n200#" "a_591_n297#" 4.90233
+cap "w_n1607_n1055#" "a_n1185_n200#" 4.61835
+cap "a_687_n933#" "a_879_n933#" 29.6522
+cap "a_n561_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n1469_n836#" "a_n1425_n933#" 4.90233
+cap "a_n177_n297#" "a_n225_n200#" 4.90233
+cap "a_n801_n836#" "a_n801_n200#" 11.3678
+cap "a_687_231#" "a_735_n200#" 4.90233
+cap "a_n945_n297#" "a_n945_867#" 6.32145
+cap "a_n369_n297#" "w_n1607_n1055#" 37.7398
+cap "a_n129_436#" "a_n33_436#" 479.458
+cap "w_n1607_n1055#" "a_n129_n200#" 4.61835
+cap "a_591_n297#" "a_591_867#" 6.32145
+cap "a_n417_n836#" "w_n1607_n1055#" 11.99
+cap "a_n177_n405#" "a_n273_n933#" 13.3939
+cap "a_1167_n405#" "a_1359_n405#" 29.6522
+cap "a_n1233_231#" "a_n1329_n297#" 13.3939
+cap "a_n465_339#" "a_n513_436#" 4.90233
+cap "a_111_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n225_n836#" "a_n273_n933#" 4.90233
+cap "a_735_n836#" "a_783_n405#" 4.90233
+cap "a_1119_436#" "w_n1607_n1055#" 12.2254
+cap "a_n1329_n297#" "a_n1377_n200#" 4.90233
+cap "a_63_436#" "a_111_339#" 4.90233
+cap "a_n1137_n297#" "a_n1137_n405#" 86.2066
+cap "a_n1137_n297#" "a_n945_n297#" 29.6522
+cap "a_735_n200#" "a_831_n200#" 479.458
+cap "a_n321_436#" "a_n321_n200#" 11.3678
+cap "a_447_n836#" "a_543_n836#" 479.458
+cap "a_639_n836#" "a_639_n200#" 11.3678
+cap "a_n273_231#" "a_n321_n200#" 4.90233
+cap "a_n1041_231#" "a_n1041_n933#" 6.32145
+cap "a_207_867#" "a_399_867#" 29.6522
+cap "w_n1607_n1055#" "a_783_n297#" 37.7398
+cap "a_n897_n836#" "a_n945_n405#" 4.90233
+cap "a_1167_867#" "a_1071_339#" 13.3939
+cap "a_1071_231#" "w_n1607_n1055#" 37.5333
+cap "a_1407_436#" "a_1407_n200#" 11.3678
+cap "a_255_436#" "a_207_867#" 4.90233
+cap "a_n273_339#" "w_n1607_n1055#" 47.6413
+cap "a_639_436#" "a_639_n200#" 11.3678
+cap "a_n1089_n836#" "w_n1607_n1055#" 11.99
+cap "a_n945_n405#" "a_n849_n933#" 13.3939
+cap "a_n801_n836#" "a_n705_n836#" 479.458
+cap "a_n417_436#" "a_n321_436#" 479.458
+cap "a_1215_n836#" "w_n1607_n1055#" 11.99
+cap "a_1407_n200#" "a_1359_n297#" 4.90233
+cap "a_639_436#" "a_591_867#" 4.90233
+cap "a_n1329_n297#" "a_n1329_n405#" 86.2066
+cap "a_n465_231#" "a_n273_231#" 29.6522
+cap "a_n1233_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n705_n836#" "a_n657_n933#" 4.90233
+cap "a_879_231#" "a_975_n297#" 13.3939
+cap "a_n849_339#" "a_n753_867#" 13.3939
+cap "a_207_867#" "w_n1607_n1055#" 82.1969
+cap "a_447_436#" "a_543_436#" 479.458
+cap "w_n1607_n1055#" "a_1023_n200#" 4.61835
+cap "a_687_339#" "a_783_867#" 13.3939
+cap "a_735_n836#" "w_n1607_n1055#" 11.99
+cap "a_n657_n933#" "a_n465_n933#" 29.6522
+cap "a_975_n405#" "a_879_n933#" 13.3939
+cap "a_n1469_n836#" "a_n1469_n200#" 11.3678
+cap "a_n81_231#" "a_n177_n297#" 13.3939
+cap "a_543_436#" "a_495_339#" 4.90233
+cap "a_n849_339#" "a_n897_436#" 4.90233
+cap "a_n609_436#" "a_n561_867#" 4.90233
+cap "a_543_n836#" "a_495_n933#" 4.90233
+cap "a_n81_231#" "a_n33_n200#" 4.90233
+cap "a_n225_436#" "a_n177_867#" 4.90233
+cap "a_111_231#" "w_n1607_n1055#" 37.5333
+cap "a_n993_n200#" "a_n897_n200#" 479.458
+cap "a_n177_n405#" "a_15_n405#" 29.6522
+cap "a_1311_n200#" "a_1407_n200#" 479.458
+cap "a_n561_n297#" "a_n609_n200#" 4.90233
+cap "a_735_436#" "w_n1607_n1055#" 12.2254
+cap "a_15_n297#" "a_15_n405#" 86.2066
+cap "a_15_n297#" "a_207_n297#" 29.6522
+cap "a_495_339#" "a_687_339#" 29.6522
+cap "a_927_n200#" "a_975_n297#" 4.90233
+cap "a_1071_231#" "a_1023_n200#" 4.90233
+cap "w_n1607_n1055#" "a_n705_n200#" 4.61835
+cap "a_111_231#" "a_111_n933#" 6.32145
+cap "a_399_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n129_n836#" "a_n177_n405#" 4.90233
+cap "a_n225_436#" "a_n321_436#" 479.458
+cap "a_1071_339#" "w_n1607_n1055#" 47.6413
+cap "a_n81_339#" "a_15_867#" 13.3939
+cap "a_1359_n405#" "a_1407_n836#" 4.90233
+cap "a_63_n200#" "a_159_n200#" 479.458
+cap "a_n993_436#" "a_n993_n200#" 11.3678
+cap "w_n1607_n1055#" "a_351_n200#" 4.61835
+cap "a_n1137_867#" "a_n945_867#" 29.6522
+cap "w_n1607_n1055#" "a_n561_867#" 82.1969
+cap "a_n225_n836#" "a_n129_n836#" 479.458
+cap "a_n33_n836#" "a_n33_n200#" 11.3678
+cap "a_n1233_231#" "a_n1185_n200#" 4.90233
+cap "a_63_n836#" "w_n1607_n1055#" 11.99
+cap "a_207_n405#" "a_303_n933#" 13.3939
+cap "a_1119_436#" "a_1071_339#" 4.90233
+cap "a_n849_231#" "a_n753_n297#" 13.3939
+cap "a_1119_n836#" "a_1119_n200#" 11.3678
+cap "a_n801_436#" "w_n1607_n1055#" 12.2254
+cap "a_927_n836#" "a_1023_n836#" 479.458
+cap "a_63_n836#" "a_111_n933#" 4.90233
+cap "a_n81_231#" "a_n81_339#" 86.2066
+cap "a_n1233_231#" "w_n1607_n1055#" 37.5333
+cap "a_n33_436#" "a_n33_n200#" 11.3678
+cap "a_591_n405#" "a_591_n297#" 86.2066
+cap "a_n1469_n836#" "a_n1377_n836#" 479.458
+cap "a_63_436#" "w_n1607_n1055#" 12.2254
+cap "a_1071_231#" "a_1071_339#" 86.2066
+cap "a_n1089_436#" "a_n993_436#" 479.458
+cap "a_1071_n933#" "a_1119_n836#" 4.90233
+cap "a_1311_436#" "a_1407_436#" 479.458
+cap "a_n1425_339#" "a_n1377_436#" 4.90233
+cap "w_n1607_n1055#" "a_n1377_n200#" 4.61835
+cap "a_495_n933#" "a_687_n933#" 29.6522
+cap "a_n945_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n609_n836#" "a_n561_n405#" 4.90233
+cap "a_n897_n836#" "a_n897_n200#" 11.3678
+cap "a_1263_n933#" "a_1359_n405#" 13.3939
+cap "a_n1137_n297#" "a_n1137_867#" 6.32145
+cap "a_n753_n297#" "w_n1607_n1055#" 37.7398
+cap "a_399_n297#" "a_399_867#" 6.32145
+cap "a_n225_436#" "a_n129_436#" 479.458
+cap "a_n417_n200#" "a_n321_n200#" 479.458
+cap "a_n609_n836#" "w_n1607_n1055#" 11.99
+cap "a_n369_n405#" "a_n465_n933#" 13.3939
+cap "a_975_n405#" "a_1167_n405#" 29.6522
+cap "a_n1377_436#" "a_n1281_436#" 479.458
+cap "a_639_n836#" "a_591_n405#" 4.90233
+cap "a_n273_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n33_436#" "a_n81_339#" 4.90233
+cap "a_1167_n297#" "a_1359_n297#" 29.6522
+cap "a_n849_339#" "a_n657_339#" 29.6522
+cap "a_639_n200#" "a_735_n200#" 479.458
+cap "a_n1329_n297#" "a_n1137_n297#" 29.6522
+cap "a_543_n836#" "a_543_n200#" 11.3678
+cap "a_n417_436#" "a_n417_n200#" 11.3678
+cap "w_n1607_n1055#" "a_n1329_n405#" 69.7124
+cap "a_351_n836#" "a_447_n836#" 479.458
+cap "a_n465_231#" "a_n417_n200#" 4.90233
+cap "a_n1233_231#" "a_n1233_n933#" 6.32145
+cap "a_975_867#" "a_879_339#" 13.3939
+cap "w_n1607_n1055#" "a_399_n297#" 37.7398
+cap "a_687_231#" "w_n1607_n1055#" 37.5333
+cap "a_831_436#" "a_879_339#" 4.90233
+cap "a_n657_231#" "a_n657_339#" 86.2066
+cap "a_831_n836#" "a_879_n933#" 4.90233
+cap "a_303_231#" "a_255_n200#" 4.90233
+cap "a_1311_436#" "a_1311_n200#" 11.3678
+cap "a_n1425_339#" "a_n1329_867#" 13.3939
+cap "a_591_867#" "a_783_867#" 29.6522
+cap "a_n897_n836#" "a_n801_n836#" 479.458
+cap "a_543_436#" "a_543_n200#" 11.3678
+cap "a_n1281_n836#" "w_n1607_n1055#" 11.99
+cap "a_n1137_n405#" "a_n1041_n933#" 13.3939
+cap "a_n513_436#" "a_n417_436#" 479.458
+cap "a_1023_n836#" "w_n1607_n1055#" 11.99
+cap "a_n465_339#" "a_n369_867#" 13.3939
+cap "a_n801_n836#" "a_n849_n933#" 4.90233
+cap "a_159_n836#" "a_207_n405#" 4.90233
+cap "a_n321_n836#" "a_n321_n200#" 11.3678
+cap "a_1311_436#" "a_1359_867#" 4.90233
+cap "a_n1281_436#" "a_n1329_867#" 4.90233
+cap "a_1071_n933#" "a_879_n933#" 29.6522
+cap "a_n657_231#" "a_n465_231#" 29.6522
+cap "a_1359_n405#" "w_n1607_n1055#" 86.1771
+cap "a_687_231#" "a_783_n297#" 13.3939
+cap "a_n1041_339#" "a_n945_867#" 13.3939
+cap "a_n177_867#" "w_n1607_n1055#" 82.1969
+cap "a_351_436#" "a_447_436#" 479.458
+cap "w_n1607_n1055#" "a_831_n200#" 4.61835
+cap "a_495_339#" "a_591_867#" 13.3939
+cap "a_n849_231#" "a_n897_n200#" 4.90233
+cap "a_n1281_436#" "a_n1185_436#" 479.458
+cap "a_543_n836#" "w_n1607_n1055#" 11.99
+cap "a_n849_n933#" "a_n657_n933#" 29.6522
+cap "a_783_n405#" "a_687_n933#" 13.3939
+cap "a_n273_231#" "a_n369_n297#" 13.3939
+cap "a_n1041_339#" "a_n993_436#" 4.90233
+cap "a_n705_436#" "a_n753_867#" 4.90233
+cap "a_n321_436#" "w_n1607_n1055#" 12.2254
+cap "a_n1233_n933#" "a_n1329_n405#" 13.3939
+cap "a_n273_231#" "w_n1607_n1055#" 37.5333
+cap "a_n753_n297#" "a_n705_n200#" 4.90233
+cap "a_n1089_n200#" "a_n993_n200#" 479.458
+cap "a_543_436#" "w_n1607_n1055#" 12.2254
+cap "a_n369_n405#" "a_n177_n405#" 29.6522
+cap "a_n177_n297#" "a_n177_n405#" 86.2066
+cap "a_1215_n200#" "a_1311_n200#" 479.458
+cap "a_n177_n297#" "a_15_n297#" 29.6522
+cap "a_303_339#" "a_495_339#" 29.6522
+cap "a_n1281_n836#" "a_n1233_n933#" 4.90233
+cap "a_831_n200#" "a_783_n297#" 4.90233
+cap "a_15_n297#" "a_n33_n200#" 4.90233
+cap "a_879_231#" "a_927_n200#" 4.90233
+cap "w_n1607_n1055#" "a_n897_n200#" 4.61835
+cap "a_n81_231#" "a_n81_n933#" 6.32145
+cap "a_15_n405#" "w_n1607_n1055#" 47.4348
+cap "a_207_n297#" "w_n1607_n1055#" 37.7398
+cap "a_687_339#" "w_n1607_n1055#" 47.6413
+cap "a_n273_339#" "a_n177_867#" 13.3939
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n129_n836#" "a_n129_n200#" 11.3678
+cap "a_n1089_436#" "a_n1089_n200#" 11.3678
+cap "w_n1607_n1055#" "a_159_n200#" 4.61835
+cap "a_n1329_867#" "a_n1137_867#" 29.6522
+cap "w_n1607_n1055#" "a_n945_867#" 82.1969
+cap "a_n321_n836#" "a_n225_n836#" 479.458
+cap "a_n129_n836#" "w_n1607_n1055#" 11.99
+cap "a_15_n405#" "a_111_n933#" 13.3939
+cap "a_n1041_231#" "a_n945_n297#" 13.3939
+cap "a_303_231#" "a_495_231#" 29.6522
+cap "a_1023_n836#" "a_1023_n200#" 11.3678
+cap "a_n273_339#" "a_n321_436#" 4.90233
+cap "a_n1185_436#" "a_n1137_867#" 4.90233
+cap "a_n993_436#" "w_n1607_n1055#" 12.2254
+cap "a_n33_n836#" "a_n81_n933#" 4.90233
+cap "a_927_n836#" "a_975_n405#" 4.90233
+cap "a_1407_436#" "w_n1607_n1055#" 155.055
+cap "a_n273_231#" "a_n273_339#" 86.2066
+cap "a_1167_867#" "a_1359_867#" 29.6522
+cap "a_687_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n1137_n297#" "a_n1185_n200#" 4.90233
+cap "a_n129_436#" "a_n129_n200#" 11.3678
+cap "a_n129_436#" "w_n1607_n1055#" 12.2254
+cap "a_399_n405#" "a_399_n297#" 86.2066
+cap "a_879_231#" "a_879_339#" 86.2066
+cap "a_927_436#" "a_1023_436#" 479.458
+cap "a_n1185_436#" "a_n1089_436#" 479.458
+cap "a_303_n933#" "a_495_n933#" 29.6522
+cap "a_n705_n836#" "a_n753_n405#" 4.90233
+cap "a_351_n200#" "a_399_n297#" 4.90233
+cap "a_n993_n836#" "a_n993_n200#" 11.3678
+cap "a_495_231#" "a_447_n200#" 4.90233
+cap "a_1215_436#" "a_1311_436#" 479.458
+cap "a_1071_n933#" "a_1167_n405#" 13.3939
+cap "a_303_339#" "a_111_339#" 29.6522
+cap "a_n1329_n297#" "a_n1329_867#" 6.32145
+cap "w_n1607_n1055#" "a_1359_n297#" 76.4821
+cap "a_n1137_n297#" "w_n1607_n1055#" 37.7398
+cap "a_n1425_339#" "a_n1233_339#" 29.6522
+cap "a_n801_n836#" "w_n1607_n1055#" 11.99
+cap "a_n561_n405#" "a_n657_n933#" 13.3939
+cap "a_783_n405#" "a_975_n405#" 29.6522
+cap "a_n513_n200#" "a_n417_n200#" 479.458
+cap "a_n1469_436#" "a_n1377_436#" 479.458
+cap "a_879_231#" "a_879_n933#" 6.32145
+cap "a_975_867#" "a_783_867#" 29.6522
+cap "a_n1281_436#" "a_n1233_339#" 4.90233
+cap "a_831_436#" "a_783_867#" 4.90233
+cap "a_207_n297#" "a_207_867#" 6.32145
+cap "a_n513_n836#" "a_n465_n933#" 4.90233
+cap "a_n657_n933#" "w_n1607_n1055#" 82.1969
+cap "a_975_n297#" "a_1167_n297#" 29.6522
+cap "a_1263_231#" "a_1167_n297#" 13.3939
+cap "a_n1041_339#" "a_n849_339#" 29.6522
+cap "a_543_n200#" "a_639_n200#" 479.458
+cap "w_n1607_n1055#" "a_1311_n200#" 4.61835
+cap "a_447_n836#" "a_447_n200#" 11.3678
+cap "a_n513_436#" "a_n513_n200#" 11.3678
+cap "a_255_n836#" "a_351_n836#" 479.458
+cap "a_n1185_n836#" "a_n1137_n405#" 4.90233
+cap "a_n1425_231#" "a_n1425_n933#" 6.32145
+cap "a_111_231#" "a_207_n297#" 13.3939
+cap "a_n657_339#" "a_n705_436#" 4.90233
+cap "a_111_231#" "a_159_n200#" 4.90233
+cap "a_1215_436#" "a_1215_n200#" 11.3678
+cap "a_735_436#" "a_687_339#" 4.90233
+cap "a_n849_231#" "a_n849_339#" 86.2066
+cap "a_n81_339#" "a_111_339#" 29.6522
+cap "a_735_n836#" "a_687_n933#" 4.90233
+cap "a_n33_436#" "a_15_867#" 4.90233
+cap "a_n1469_n836#" "w_n1607_n1055#" 154.967
+cap "a_399_867#" "a_591_867#" 29.6522
+cap "a_1359_867#" "w_n1607_n1055#" 120.939
+cap "a_n993_n836#" "a_n897_n836#" 479.458
+cap "a_n369_n297#" "a_n417_n200#" 4.90233
+cap "a_447_436#" "a_447_n200#" 11.3678
+cap "a_n1281_436#" "a_n1281_n200#" 11.3678
+cap "a_1023_436#" "w_n1607_n1055#" 12.2254
+cap "a_n609_436#" "a_n513_436#" 479.458
+cap "a_1119_n200#" "a_1167_n297#" 4.90233
+cap "a_n225_n200#" "a_n321_n200#" 479.458
+cap "a_351_436#" "a_399_867#" 4.90233
+cap "a_63_n836#" "a_15_n405#" 4.90233
+cap "a_n417_n836#" "a_n417_n200#" 11.3678
+cap "a_1263_231#" "a_1215_n200#" 4.90233
+cap "a_1215_436#" "a_1167_867#" 4.90233
+cap "w_n1607_n1055#" "a_n417_n200#" 4.61835
+cap "a_n1377_436#" "w_n1607_n1055#" 12.2254
+cap "a_n849_231#" "a_n657_231#" 29.6522
+cap "a_975_n405#" "w_n1607_n1055#" 47.4348
+cap "a_1311_n836#" "a_1407_n836#" 479.458
+cap "a_1119_436#" "a_1023_436#" 479.458
+cap "a_495_231#" "a_591_n297#" 13.3939
+cap "w_n1607_n1055#" "a_639_n200#" 4.61835
+cap "a_303_339#" "a_399_867#" 13.3939
+cap "a_n1233_339#" "a_n1137_867#" 13.3939
+cap "a_n849_339#" "w_n1607_n1055#" 47.6413
+cap "a_n1281_n836#" "a_n1329_n405#" 4.90233
+cap "a_255_436#" "a_351_436#" 479.458
+cap "a_351_n836#" "w_n1607_n1055#" 11.99
+cap "a_n1041_n933#" "a_n849_n933#" 29.6522
+cap "a_591_n405#" "a_495_n933#" 13.3939
+cap "a_n1041_231#" "a_n993_n200#" 4.90233
+cap "a_1311_436#" "a_1263_339#" 4.90233
+cap "a_n465_231#" "a_n561_n297#" 13.3939
+cap "a_1263_231#" "a_1263_n933#" 6.32145
+cap "w_n1607_n1055#" "a_591_867#" 82.1969
+cap "a_255_436#" "a_303_339#" 4.90233
+cap "a_n513_436#" "w_n1607_n1055#" 12.2254
+cap "a_255_n836#" "a_303_n933#" 4.90233
+cap "a_n1185_n200#" "a_n1089_n200#" 479.458
+cap "a_n561_n405#" "a_n369_n405#" 29.6522
+cap "a_n657_231#" "w_n1607_n1055#" 37.5333
+cap "a_351_436#" "w_n1607_n1055#" 12.2254
+cap "a_n369_n297#" "a_n369_n405#" 86.2066
+cap "a_1119_n200#" "a_1215_n200#" 479.458
+cap "a_n369_867#" "a_n417_436#" 4.90233
+cap "a_n369_n297#" "a_n177_n297#" 29.6522
+cap "a_1263_n933#" "a_1311_n836#" 4.90233
+cap "a_n273_231#" "a_n273_n933#" 6.32145
+cap "a_831_n836#" "a_927_n836#" 479.458
+cap "a_n1377_n836#" "a_n1425_n933#" 4.90233
+cap "a_n417_n836#" "a_n369_n405#" 4.90233
+cap "a_n177_n297#" "a_n129_n200#" 4.90233
+cap "w_n1607_n1055#" "a_n1089_n200#" 4.61835
+cap "a_n369_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n177_n297#" "w_n1607_n1055#" 37.7398
+cap "a_303_339#" "w_n1607_n1055#" 47.6413
+cap "a_n657_339#" "a_n465_339#" 29.6522
+cap "a_1167_n405#" "a_1119_n836#" 4.90233
+cap "a_n129_n200#" "a_n33_n200#" 479.458
+cap "w_n1607_n1055#" "a_n33_n200#" 4.61835
+cap "a_n225_n836#" "a_n225_n200#" 11.3678
+cap "a_n1185_436#" "a_n1185_n200#" 11.3678
+cap "a_n321_n836#" "w_n1607_n1055#" 11.99
+cap "a_n177_n405#" "a_n81_n933#" 13.3939
+cap "w_n1607_n1055#" "a_n1329_867#" 104.475
+cap "a_n417_n836#" "a_n321_n836#" 479.458
+cap "a_n1425_231#" "a_n1469_n200#" 4.90233
+cap "a_1023_436#" "a_1023_n200#" 11.3678
+cap "a_n1233_231#" "a_n1137_n297#" 13.3939
+cap "a_n465_339#" "a_n417_436#" 4.90233
+cap "a_n1185_436#" "w_n1607_n1055#" 12.2254
+cap "a_n465_231#" "a_n465_339#" 86.2066
+cap "a_303_n933#" "w_n1607_n1055#" 82.1969
+cap "a_831_n836#" "a_783_n405#" 4.90233
+cap "a_1215_436#" "w_n1607_n1055#" 12.2254
+cap "a_975_867#" "a_1167_867#" 29.6522
+cap "a_n1329_n297#" "a_n1281_n200#" 4.90233
+cap "a_159_436#" "a_111_339#" 4.90233
+cap "a_n225_436#" "a_n225_n200#" 11.3678
+cap "a_927_436#" "a_975_867#" 4.90233
+cap "a_1071_n933#" "a_1263_n933#" 29.6522
+cap "a_207_n297#" "a_399_n297#" 29.6522
+cap "a_831_436#" "a_927_436#" 479.458
+cap "a_687_231#" "a_687_339#" 86.2066
+cap "a_111_n933#" "a_303_n933#" 29.6522
+cap "a_n1089_n836#" "a_n1089_n200#" 11.3678
+cap "a_1119_436#" "a_1215_436#" 479.458
+cap "a_1167_867#" "a_1263_339#" 13.3939
+cap "w_n1607_n1055#" "a_975_n297#" 37.7398
+cap "a_1263_231#" "w_n1607_n1055#" 59.5568
+cap "a_1023_436#" "a_1071_339#" 4.90233
+cap "a_n81_339#" "w_n1607_n1055#" 47.6413
+cap "a_n609_n200#" "a_n513_n200#" 479.458
+cap "a_n993_n836#" "w_n1607_n1055#" 11.99
+cap "a_n753_n405#" "a_n849_n933#" 13.3939
+cap "a_591_n405#" "a_783_n405#" 29.6522
+cap "a_687_231#" "a_687_n933#" 6.32145
+cap "a_1311_n836#" "w_n1607_n1055#" 11.99
+cap "a_303_339#" "a_207_867#" 13.3939
+cap "a_15_n297#" "a_15_867#" 6.32145
+cap "a_n1041_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n609_n836#" "a_n657_n933#" 4.90233
+cap "a_351_n836#" "a_399_n405#" 4.90233
+cap "a_783_n297#" "a_975_n297#" 29.6522
+cap "a_n1425_231#" "a_n1425_339#" 86.2066
+cap "a_1071_231#" "a_975_n297#" 13.3939
+cap "a_n1233_339#" "a_n1041_339#" 29.6522
+cap "a_n657_339#" "a_n753_867#" 13.3939
+cap "a_447_n200#" "a_543_n200#" 479.458
+cap "w_n1607_n1055#" "a_1119_n200#" 4.61835
+cap "a_1071_231#" "a_1263_231#" 29.6522
+cap "a_879_339#" "a_783_867#" 13.3939
+cap "a_351_n836#" "a_351_n200#" 11.3678
+cap "a_n657_231#" "a_n705_n200#" 4.90233
+cap "a_n609_436#" "a_n609_n200#" 11.3678
+cap "a_831_n836#" "w_n1607_n1055#" 11.99
+cap "a_159_n836#" "a_255_n836#" 479.458
+cap "a_n81_231#" "a_15_n297#" 13.3939
+cap "a_n849_339#" "a_n801_436#" 4.90233
+cap "a_n1041_231#" "a_n1041_339#" 86.2066
+cap "a_1119_436#" "a_1119_n200#" 11.3678
+cap "a_n513_436#" "a_n561_867#" 4.90233
+cap "a_n273_339#" "a_n81_339#" 29.6522
+cap "a_303_231#" "w_n1607_n1055#" 37.5333
+cap "a_975_867#" "w_n1607_n1055#" 82.1969
+cap "a_n129_436#" "a_n177_867#" 4.90233
+cap "a_1359_n405#" "a_1359_n297#" 86.2066
+cap "a_1071_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n1089_n836#" "a_n993_n836#" 479.458
+cap "a_n561_n297#" "a_n513_n200#" 4.90233
+cap "a_351_436#" "a_351_n200#" 11.3678
+cap "a_n1377_436#" "a_n1377_n200#" 11.3678
+cap "a_831_436#" "w_n1607_n1055#" 12.2254
+cap "a_n705_436#" "a_n609_436#" 479.458
+cap "a_1023_n200#" "a_975_n297#" 4.90233
+cap "w_n1607_n1055#" "a_n609_n200#" 4.61835
+cap "a_n1041_231#" "a_n849_231#" 29.6522
+cap "a_591_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n1089_n836#" "a_n1041_n933#" 4.90233
+cap "a_207_n297#" "a_159_n200#" 4.90233
+cap "a_n513_n836#" "a_n513_n200#" 11.3678
+cap "a_1071_231#" "a_1119_n200#" 4.90233
+cap "a_1263_339#" "w_n1607_n1055#" 69.6649
+cap "a_1215_n836#" "a_1311_n836#" 479.458
+cap "a_111_339#" "a_15_867#" 13.3939
+cap "a_n1233_339#" "w_n1607_n1055#" 47.6413
+cap "a_159_436#" "a_255_436#" 479.458
+cap "w_n1607_n1055#" "a_447_n200#" 4.61835
+cap "a_159_n836#" "w_n1607_n1055#" 11.99
+cap "a_n1233_n933#" "a_n1041_n933#" 29.6522
+cap "a_399_n405#" "a_303_n933#" 13.3939
+cap "a_n657_231#" "a_n753_n297#" 13.3939
+cap "a_1071_231#" "a_1071_n933#" 6.32145
+cap "a_n993_436#" "a_n945_867#" 4.90233
+cap "a_n705_436#" "w_n1607_n1055#" 12.2254
+cap "a_n1041_231#" "w_n1607_n1055#" 37.5333
+cap "a_159_n836#" "a_111_n933#" 4.90233
+cap "a_n1281_n200#" "a_n1185_n200#" 479.458
+cap "a_n753_n405#" "a_n561_n405#" 29.6522
+cap "a_n945_n297#" "a_n993_n200#" 4.90233
+cap "a_159_436#" "w_n1607_n1055#" 12.2254
+cap "a_n561_n297#" "a_n561_n405#" 86.2066
+cap "a_n561_n297#" "a_n369_n297#" 29.6522
+cap "a_1023_n200#" "a_1119_n200#" 479.458
+cap "a_927_n836#" "a_927_n200#" 11.3678
+cap "a_735_n836#" "a_831_n836#" 479.458
+cap "a_543_n200#" "a_591_n297#" 4.90233
+cap "w_n1607_n1055#" "a_n1281_n200#" 4.61835
+cap "a_n465_231#" "a_n465_n933#" 6.32145
+cap "a_n753_n405#" "w_n1607_n1055#" 47.4348
+cap "a_n513_n836#" "a_n561_n405#" 4.90233
+cap "a_687_231#" "a_639_n200#" 4.90233
+cap "a_n561_n297#" "w_n1607_n1055#" 37.7398
+cap "a_975_n405#" "a_1023_n836#" 4.90233
+cap "a_n225_n200#" "a_n129_n200#" 479.458
+cap "w_n1607_n1055#" "a_n225_n200#" 4.61835
+cap "a_927_436#" "a_927_n200#" 11.3678
+cap "a_n513_n836#" "w_n1607_n1055#" 11.99
+cap "a_n369_n405#" "a_n273_n933#" 13.3939
+cap "a_n369_n297#" "a_n369_867#" 6.32145
+cap "a_n513_n836#" "a_n417_n836#" 479.458
+cap "a_n1425_231#" "a_n1329_n297#" 13.3939
+cap "a_111_231#" "a_303_231#" 29.6522
+cap "a_n81_n933#" "w_n1607_n1055#" 82.1969
+cap "a_n369_867#" "w_n1607_n1055#" 82.1969
+cap "a_n321_n836#" "a_n273_n933#" 4.90233
+cap "a_495_231#" "a_495_339#" 86.2066
+cap "a_735_436#" "a_831_436#" 479.458
+cap "a_n81_n933#" "a_111_n933#" 29.6522
+cap "w_n1607_n1055#" "a_591_n297#" 37.7398
+cap "a_n993_n836#" "a_n945_n405#" 4.90233
+cap "a_n1185_n836#" "a_n1185_n200#" 11.3678
+cap "a_975_867#" "a_1071_339#" 13.3939
+cap "a_879_231#" "w_n1607_n1055#" 37.5333
+cap "a_927_436#" "a_879_339#" 4.90233
+cap "a_927_n836#" "a_879_n933#" 4.90233
+cap "a_303_231#" "a_351_n200#" 4.90233
+cap "a_159_436#" "a_207_867#" 4.90233
+cap "a_n465_339#" "w_n1607_n1055#" 47.6413
+cap "a_n705_n200#" "a_n609_n200#" 479.458
+cap "a_n1185_n836#" "w_n1607_n1055#" 11.99
+cap "a_n945_n405#" "a_n1041_n933#" 13.3939
+cap "a_399_n405#" "a_591_n405#" 29.6522
+cap "a_495_231#" "a_495_n933#" 6.32145
+cap "a_1071_339#" "a_1263_339#" 29.6522
+cap "a_1119_n836#" "w_n1607_n1055#" 11.99
+cap "a_n177_n297#" "a_n177_867#" 6.32145
+cap "a_n273_339#" "a_n369_867#" 13.3939
+cap "a_1311_n200#" "a_1359_n297#" 4.90233
+cap "a_1407_436#" "a_1359_867#" 4.90233
+cap "a_543_436#" "a_591_867#" 4.90233
+cap "a_n1425_n933#" "w_n1607_n1055#" 121.193
+cap "a_255_n836#" "a_207_n405#" 4.90233
+cap "a_591_n297#" "a_783_n297#" 29.6522
+cap "a_879_231#" "a_783_n297#" 13.3939
+cap "a_879_231#" "a_1071_231#" 29.6522
+cap "a_n849_339#" "a_n945_867#" 13.3939
+cap "a_15_867#" "w_n1607_n1055#" 82.1969
+device msubckt sky130_fd_pr__pfet_01v8 1377 -836 1378 -835 l=30 w=400 "w_n1607_n1055#" "a_1359_n405#" 60 0 "a_1311_n836#" 400 0 "a_1407_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1281 -836 1282 -835 l=30 w=400 "w_n1607_n1055#" "a_1263_n933#" 60 0 "a_1215_n836#" 400 0 "a_1311_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1185 -836 1186 -835 l=30 w=400 "w_n1607_n1055#" "a_1167_n405#" 60 0 "a_1119_n836#" 400 0 "a_1215_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1089 -836 1090 -835 l=30 w=400 "w_n1607_n1055#" "a_1071_n933#" 60 0 "a_1023_n836#" 400 0 "a_1119_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 993 -836 994 -835 l=30 w=400 "w_n1607_n1055#" "a_975_n405#" 60 0 "a_927_n836#" 400 0 "a_1023_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 897 -836 898 -835 l=30 w=400 "w_n1607_n1055#" "a_879_n933#" 60 0 "a_831_n836#" 400 0 "a_927_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 801 -836 802 -835 l=30 w=400 "w_n1607_n1055#" "a_783_n405#" 60 0 "a_735_n836#" 400 0 "a_831_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 705 -836 706 -835 l=30 w=400 "w_n1607_n1055#" "a_687_n933#" 60 0 "a_639_n836#" 400 0 "a_735_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 609 -836 610 -835 l=30 w=400 "w_n1607_n1055#" "a_591_n405#" 60 0 "a_543_n836#" 400 0 "a_639_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 -836 514 -835 l=30 w=400 "w_n1607_n1055#" "a_495_n933#" 60 0 "a_447_n836#" 400 0 "a_543_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 -836 418 -835 l=30 w=400 "w_n1607_n1055#" "a_399_n405#" 60 0 "a_351_n836#" 400 0 "a_447_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 -836 322 -835 l=30 w=400 "w_n1607_n1055#" "a_303_n933#" 60 0 "a_255_n836#" 400 0 "a_351_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -836 226 -835 l=30 w=400 "w_n1607_n1055#" "a_207_n405#" 60 0 "a_159_n836#" 400 0 "a_255_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -836 130 -835 l=30 w=400 "w_n1607_n1055#" "a_111_n933#" 60 0 "a_63_n836#" 400 0 "a_159_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -836 34 -835 l=30 w=400 "w_n1607_n1055#" "a_15_n405#" 60 0 "a_n33_n836#" 400 0 "a_63_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -836 -62 -835 l=30 w=400 "w_n1607_n1055#" "a_n81_n933#" 60 0 "a_n129_n836#" 400 0 "a_n33_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -836 -158 -835 l=30 w=400 "w_n1607_n1055#" "a_n177_n405#" 60 0 "a_n225_n836#" 400 0 "a_n129_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -836 -254 -835 l=30 w=400 "w_n1607_n1055#" "a_n273_n933#" 60 0 "a_n321_n836#" 400 0 "a_n225_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -836 -350 -835 l=30 w=400 "w_n1607_n1055#" "a_n369_n405#" 60 0 "a_n417_n836#" 400 0 "a_n321_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 -836 -446 -835 l=30 w=400 "w_n1607_n1055#" "a_n465_n933#" 60 0 "a_n513_n836#" 400 0 "a_n417_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 -836 -542 -835 l=30 w=400 "w_n1607_n1055#" "a_n561_n405#" 60 0 "a_n609_n836#" 400 0 "a_n513_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -639 -836 -638 -835 l=30 w=400 "w_n1607_n1055#" "a_n657_n933#" 60 0 "a_n705_n836#" 400 0 "a_n609_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -735 -836 -734 -835 l=30 w=400 "w_n1607_n1055#" "a_n753_n405#" 60 0 "a_n801_n836#" 400 0 "a_n705_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -831 -836 -830 -835 l=30 w=400 "w_n1607_n1055#" "a_n849_n933#" 60 0 "a_n897_n836#" 400 0 "a_n801_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -927 -836 -926 -835 l=30 w=400 "w_n1607_n1055#" "a_n945_n405#" 60 0 "a_n993_n836#" 400 0 "a_n897_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1023 -836 -1022 -835 l=30 w=400 "w_n1607_n1055#" "a_n1041_n933#" 60 0 "a_n1089_n836#" 400 0 "a_n993_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1119 -836 -1118 -835 l=30 w=400 "w_n1607_n1055#" "a_n1137_n405#" 60 0 "a_n1185_n836#" 400 0 "a_n1089_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1215 -836 -1214 -835 l=30 w=400 "w_n1607_n1055#" "a_n1233_n933#" 60 0 "a_n1281_n836#" 400 0 "a_n1185_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1311 -836 -1310 -835 l=30 w=400 "w_n1607_n1055#" "a_n1329_n405#" 60 0 "a_n1377_n836#" 400 0 "a_n1281_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1407 -836 -1406 -835 l=30 w=400 "w_n1607_n1055#" "a_n1425_n933#" 60 0 "a_n1469_n836#" 400 0 "a_n1377_n836#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1377 -200 1378 -199 l=30 w=400 "w_n1607_n1055#" "a_1359_n297#" 60 0 "a_1311_n200#" 400 0 "a_1407_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1281 -200 1282 -199 l=30 w=400 "w_n1607_n1055#" "a_1263_231#" 60 0 "a_1215_n200#" 400 0 "a_1311_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1185 -200 1186 -199 l=30 w=400 "w_n1607_n1055#" "a_1167_n297#" 60 0 "a_1119_n200#" 400 0 "a_1215_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1089 -200 1090 -199 l=30 w=400 "w_n1607_n1055#" "a_1071_231#" 60 0 "a_1023_n200#" 400 0 "a_1119_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 993 -200 994 -199 l=30 w=400 "w_n1607_n1055#" "a_975_n297#" 60 0 "a_927_n200#" 400 0 "a_1023_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 897 -200 898 -199 l=30 w=400 "w_n1607_n1055#" "a_879_231#" 60 0 "a_831_n200#" 400 0 "a_927_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 801 -200 802 -199 l=30 w=400 "w_n1607_n1055#" "a_783_n297#" 60 0 "a_735_n200#" 400 0 "a_831_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 705 -200 706 -199 l=30 w=400 "w_n1607_n1055#" "a_687_231#" 60 0 "a_639_n200#" 400 0 "a_735_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 609 -200 610 -199 l=30 w=400 "w_n1607_n1055#" "a_591_n297#" 60 0 "a_543_n200#" 400 0 "a_639_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 -200 514 -199 l=30 w=400 "w_n1607_n1055#" "a_495_231#" 60 0 "a_447_n200#" 400 0 "a_543_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 -200 418 -199 l=30 w=400 "w_n1607_n1055#" "a_399_n297#" 60 0 "a_351_n200#" 400 0 "a_447_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 -200 322 -199 l=30 w=400 "w_n1607_n1055#" "a_303_231#" 60 0 "a_255_n200#" 400 0 "a_351_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 -200 226 -199 l=30 w=400 "w_n1607_n1055#" "a_207_n297#" 60 0 "a_159_n200#" 400 0 "a_255_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 -200 130 -199 l=30 w=400 "w_n1607_n1055#" "a_111_231#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 -200 34 -199 l=30 w=400 "w_n1607_n1055#" "a_15_n297#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 -200 -62 -199 l=30 w=400 "w_n1607_n1055#" "a_n81_231#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 -200 -158 -199 l=30 w=400 "w_n1607_n1055#" "a_n177_n297#" 60 0 "a_n225_n200#" 400 0 "a_n129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 -200 -254 -199 l=30 w=400 "w_n1607_n1055#" "a_n273_231#" 60 0 "a_n321_n200#" 400 0 "a_n225_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 -200 -350 -199 l=30 w=400 "w_n1607_n1055#" "a_n369_n297#" 60 0 "a_n417_n200#" 400 0 "a_n321_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 -200 -446 -199 l=30 w=400 "w_n1607_n1055#" "a_n465_231#" 60 0 "a_n513_n200#" 400 0 "a_n417_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 -200 -542 -199 l=30 w=400 "w_n1607_n1055#" "a_n561_n297#" 60 0 "a_n609_n200#" 400 0 "a_n513_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -639 -200 -638 -199 l=30 w=400 "w_n1607_n1055#" "a_n657_231#" 60 0 "a_n705_n200#" 400 0 "a_n609_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -735 -200 -734 -199 l=30 w=400 "w_n1607_n1055#" "a_n753_n297#" 60 0 "a_n801_n200#" 400 0 "a_n705_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -831 -200 -830 -199 l=30 w=400 "w_n1607_n1055#" "a_n849_231#" 60 0 "a_n897_n200#" 400 0 "a_n801_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -927 -200 -926 -199 l=30 w=400 "w_n1607_n1055#" "a_n945_n297#" 60 0 "a_n993_n200#" 400 0 "a_n897_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1023 -200 -1022 -199 l=30 w=400 "w_n1607_n1055#" "a_n1041_231#" 60 0 "a_n1089_n200#" 400 0 "a_n993_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1119 -200 -1118 -199 l=30 w=400 "w_n1607_n1055#" "a_n1137_n297#" 60 0 "a_n1185_n200#" 400 0 "a_n1089_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1215 -200 -1214 -199 l=30 w=400 "w_n1607_n1055#" "a_n1233_231#" 60 0 "a_n1281_n200#" 400 0 "a_n1185_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1311 -200 -1310 -199 l=30 w=400 "w_n1607_n1055#" "a_n1329_n297#" 60 0 "a_n1377_n200#" 400 0 "a_n1281_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1407 -200 -1406 -199 l=30 w=400 "w_n1607_n1055#" "a_n1425_231#" 60 0 "a_n1469_n200#" 400 0 "a_n1377_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1377 436 1378 437 l=30 w=400 "w_n1607_n1055#" "a_1359_867#" 60 0 "a_1311_436#" 400 0 "a_1407_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1281 436 1282 437 l=30 w=400 "w_n1607_n1055#" "a_1263_339#" 60 0 "a_1215_436#" 400 0 "a_1311_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1185 436 1186 437 l=30 w=400 "w_n1607_n1055#" "a_1167_867#" 60 0 "a_1119_436#" 400 0 "a_1215_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1089 436 1090 437 l=30 w=400 "w_n1607_n1055#" "a_1071_339#" 60 0 "a_1023_436#" 400 0 "a_1119_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 993 436 994 437 l=30 w=400 "w_n1607_n1055#" "a_975_867#" 60 0 "a_927_436#" 400 0 "a_1023_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 897 436 898 437 l=30 w=400 "w_n1607_n1055#" "a_879_339#" 60 0 "a_831_436#" 400 0 "a_927_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 801 436 802 437 l=30 w=400 "w_n1607_n1055#" "a_783_867#" 60 0 "a_735_436#" 400 0 "a_831_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 705 436 706 437 l=30 w=400 "w_n1607_n1055#" "a_687_339#" 60 0 "a_639_436#" 400 0 "a_735_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 609 436 610 437 l=30 w=400 "w_n1607_n1055#" "a_591_867#" 60 0 "a_543_436#" 400 0 "a_639_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 513 436 514 437 l=30 w=400 "w_n1607_n1055#" "a_495_339#" 60 0 "a_447_436#" 400 0 "a_543_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 417 436 418 437 l=30 w=400 "w_n1607_n1055#" "a_399_867#" 60 0 "a_351_436#" 400 0 "a_447_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 321 436 322 437 l=30 w=400 "w_n1607_n1055#" "a_303_339#" 60 0 "a_255_436#" 400 0 "a_351_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 225 436 226 437 l=30 w=400 "w_n1607_n1055#" "a_207_867#" 60 0 "a_159_436#" 400 0 "a_255_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 129 436 130 437 l=30 w=400 "w_n1607_n1055#" "a_111_339#" 60 0 "a_63_436#" 400 0 "a_159_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 33 436 34 437 l=30 w=400 "w_n1607_n1055#" "a_15_867#" 60 0 "a_n33_436#" 400 0 "a_63_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -63 436 -62 437 l=30 w=400 "w_n1607_n1055#" "a_n81_339#" 60 0 "a_n129_436#" 400 0 "a_n33_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -159 436 -158 437 l=30 w=400 "w_n1607_n1055#" "a_n177_867#" 60 0 "a_n225_436#" 400 0 "a_n129_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -255 436 -254 437 l=30 w=400 "w_n1607_n1055#" "a_n273_339#" 60 0 "a_n321_436#" 400 0 "a_n225_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -351 436 -350 437 l=30 w=400 "w_n1607_n1055#" "a_n369_867#" 60 0 "a_n417_436#" 400 0 "a_n321_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -447 436 -446 437 l=30 w=400 "w_n1607_n1055#" "a_n465_339#" 60 0 "a_n513_436#" 400 0 "a_n417_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -543 436 -542 437 l=30 w=400 "w_n1607_n1055#" "a_n561_867#" 60 0 "a_n609_436#" 400 0 "a_n513_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -639 436 -638 437 l=30 w=400 "w_n1607_n1055#" "a_n657_339#" 60 0 "a_n705_436#" 400 0 "a_n609_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -735 436 -734 437 l=30 w=400 "w_n1607_n1055#" "a_n753_867#" 60 0 "a_n801_436#" 400 0 "a_n705_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -831 436 -830 437 l=30 w=400 "w_n1607_n1055#" "a_n849_339#" 60 0 "a_n897_436#" 400 0 "a_n801_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -927 436 -926 437 l=30 w=400 "w_n1607_n1055#" "a_n945_867#" 60 0 "a_n993_436#" 400 0 "a_n897_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1023 436 -1022 437 l=30 w=400 "w_n1607_n1055#" "a_n1041_339#" 60 0 "a_n1089_436#" 400 0 "a_n993_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1119 436 -1118 437 l=30 w=400 "w_n1607_n1055#" "a_n1137_867#" 60 0 "a_n1185_436#" 400 0 "a_n1089_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1215 436 -1214 437 l=30 w=400 "w_n1607_n1055#" "a_n1233_339#" 60 0 "a_n1281_436#" 400 0 "a_n1185_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1311 436 -1310 437 l=30 w=400 "w_n1607_n1055#" "a_n1329_867#" 60 0 "a_n1377_436#" 400 0 "a_n1281_436#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1407 436 -1406 437 l=30 w=400 "w_n1607_n1055#" "a_n1425_339#" 60 0 "a_n1469_436#" 400 0 "a_n1377_436#" 400 0
diff --git a/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.mag b/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.mag
new file mode 100644
index 0000000..320154e
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__pfet_01v8_VCB4SW.mag
@@ -0,0 +1,2779 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< error_p >>
+rect -1325 917 -1267 923
+rect -1133 917 -1075 923
+rect -941 917 -883 923
+rect -749 917 -691 923
+rect -557 917 -499 923
+rect -365 917 -307 923
+rect -173 917 -115 923
+rect 19 917 77 923
+rect 211 917 269 923
+rect 403 917 461 923
+rect 595 917 653 923
+rect 787 917 845 923
+rect 979 917 1037 923
+rect 1171 917 1229 923
+rect 1363 917 1421 923
+rect -1325 883 -1313 917
+rect -1133 883 -1121 917
+rect -941 883 -929 917
+rect -749 883 -737 917
+rect -557 883 -545 917
+rect -365 883 -353 917
+rect -173 883 -161 917
+rect 19 883 31 917
+rect 211 883 223 917
+rect 403 883 415 917
+rect 595 883 607 917
+rect 787 883 799 917
+rect 979 883 991 917
+rect 1171 883 1183 917
+rect 1363 883 1375 917
+rect -1325 877 -1267 883
+rect -1133 877 -1075 883
+rect -941 877 -883 883
+rect -749 877 -691 883
+rect -557 877 -499 883
+rect -365 877 -307 883
+rect -173 877 -115 883
+rect 19 877 77 883
+rect 211 877 269 883
+rect 403 877 461 883
+rect 595 877 653 883
+rect 787 877 845 883
+rect 979 877 1037 883
+rect 1171 877 1229 883
+rect 1363 877 1421 883
+rect -1421 389 -1363 395
+rect -1229 389 -1171 395
+rect -1037 389 -979 395
+rect -845 389 -787 395
+rect -653 389 -595 395
+rect -461 389 -403 395
+rect -269 389 -211 395
+rect -77 389 -19 395
+rect 115 389 173 395
+rect 307 389 365 395
+rect 499 389 557 395
+rect 691 389 749 395
+rect 883 389 941 395
+rect 1075 389 1133 395
+rect 1267 389 1325 395
+rect -1421 355 -1409 389
+rect -1229 355 -1217 389
+rect -1037 355 -1025 389
+rect -845 355 -833 389
+rect -653 355 -641 389
+rect -461 355 -449 389
+rect -269 355 -257 389
+rect -77 355 -65 389
+rect 115 355 127 389
+rect 307 355 319 389
+rect 499 355 511 389
+rect 691 355 703 389
+rect 883 355 895 389
+rect 1075 355 1087 389
+rect 1267 355 1279 389
+rect -1421 349 -1363 355
+rect -1229 349 -1171 355
+rect -1037 349 -979 355
+rect -845 349 -787 355
+rect -653 349 -595 355
+rect -461 349 -403 355
+rect -269 349 -211 355
+rect -77 349 -19 355
+rect 115 349 173 355
+rect 307 349 365 355
+rect 499 349 557 355
+rect 691 349 749 355
+rect 883 349 941 355
+rect 1075 349 1133 355
+rect 1267 349 1325 355
+rect -1421 281 -1363 287
+rect -1229 281 -1171 287
+rect -1037 281 -979 287
+rect -845 281 -787 287
+rect -653 281 -595 287
+rect -461 281 -403 287
+rect -269 281 -211 287
+rect -77 281 -19 287
+rect 115 281 173 287
+rect 307 281 365 287
+rect 499 281 557 287
+rect 691 281 749 287
+rect 883 281 941 287
+rect 1075 281 1133 287
+rect 1267 281 1325 287
+rect -1421 247 -1409 281
+rect -1229 247 -1217 281
+rect -1037 247 -1025 281
+rect -845 247 -833 281
+rect -653 247 -641 281
+rect -461 247 -449 281
+rect -269 247 -257 281
+rect -77 247 -65 281
+rect 115 247 127 281
+rect 307 247 319 281
+rect 499 247 511 281
+rect 691 247 703 281
+rect 883 247 895 281
+rect 1075 247 1087 281
+rect 1267 247 1279 281
+rect -1421 241 -1363 247
+rect -1229 241 -1171 247
+rect -1037 241 -979 247
+rect -845 241 -787 247
+rect -653 241 -595 247
+rect -461 241 -403 247
+rect -269 241 -211 247
+rect -77 241 -19 247
+rect 115 241 173 247
+rect 307 241 365 247
+rect 499 241 557 247
+rect 691 241 749 247
+rect 883 241 941 247
+rect 1075 241 1133 247
+rect 1267 241 1325 247
+rect -1325 -247 -1267 -241
+rect -1133 -247 -1075 -241
+rect -941 -247 -883 -241
+rect -749 -247 -691 -241
+rect -557 -247 -499 -241
+rect -365 -247 -307 -241
+rect -173 -247 -115 -241
+rect 19 -247 77 -241
+rect 211 -247 269 -241
+rect 403 -247 461 -241
+rect 595 -247 653 -241
+rect 787 -247 845 -241
+rect 979 -247 1037 -241
+rect 1171 -247 1229 -241
+rect 1363 -247 1421 -241
+rect -1325 -281 -1313 -247
+rect -1133 -281 -1121 -247
+rect -941 -281 -929 -247
+rect -749 -281 -737 -247
+rect -557 -281 -545 -247
+rect -365 -281 -353 -247
+rect -173 -281 -161 -247
+rect 19 -281 31 -247
+rect 211 -281 223 -247
+rect 403 -281 415 -247
+rect 595 -281 607 -247
+rect 787 -281 799 -247
+rect 979 -281 991 -247
+rect 1171 -281 1183 -247
+rect 1363 -281 1375 -247
+rect -1325 -287 -1267 -281
+rect -1133 -287 -1075 -281
+rect -941 -287 -883 -281
+rect -749 -287 -691 -281
+rect -557 -287 -499 -281
+rect -365 -287 -307 -281
+rect -173 -287 -115 -281
+rect 19 -287 77 -281
+rect 211 -287 269 -281
+rect 403 -287 461 -281
+rect 595 -287 653 -281
+rect 787 -287 845 -281
+rect 979 -287 1037 -281
+rect 1171 -287 1229 -281
+rect 1363 -287 1421 -281
+rect -1325 -355 -1267 -349
+rect -1133 -355 -1075 -349
+rect -941 -355 -883 -349
+rect -749 -355 -691 -349
+rect -557 -355 -499 -349
+rect -365 -355 -307 -349
+rect -173 -355 -115 -349
+rect 19 -355 77 -349
+rect 211 -355 269 -349
+rect 403 -355 461 -349
+rect 595 -355 653 -349
+rect 787 -355 845 -349
+rect 979 -355 1037 -349
+rect 1171 -355 1229 -349
+rect 1363 -355 1421 -349
+rect -1325 -389 -1313 -355
+rect -1133 -389 -1121 -355
+rect -941 -389 -929 -355
+rect -749 -389 -737 -355
+rect -557 -389 -545 -355
+rect -365 -389 -353 -355
+rect -173 -389 -161 -355
+rect 19 -389 31 -355
+rect 211 -389 223 -355
+rect 403 -389 415 -355
+rect 595 -389 607 -355
+rect 787 -389 799 -355
+rect 979 -389 991 -355
+rect 1171 -389 1183 -355
+rect 1363 -389 1375 -355
+rect -1325 -395 -1267 -389
+rect -1133 -395 -1075 -389
+rect -941 -395 -883 -389
+rect -749 -395 -691 -389
+rect -557 -395 -499 -389
+rect -365 -395 -307 -389
+rect -173 -395 -115 -389
+rect 19 -395 77 -389
+rect 211 -395 269 -389
+rect 403 -395 461 -389
+rect 595 -395 653 -389
+rect 787 -395 845 -389
+rect 979 -395 1037 -389
+rect 1171 -395 1229 -389
+rect 1363 -395 1421 -389
+rect -1421 -883 -1363 -877
+rect -1229 -883 -1171 -877
+rect -1037 -883 -979 -877
+rect -845 -883 -787 -877
+rect -653 -883 -595 -877
+rect -461 -883 -403 -877
+rect -269 -883 -211 -877
+rect -77 -883 -19 -877
+rect 115 -883 173 -877
+rect 307 -883 365 -877
+rect 499 -883 557 -877
+rect 691 -883 749 -877
+rect 883 -883 941 -877
+rect 1075 -883 1133 -877
+rect 1267 -883 1325 -877
+rect -1421 -917 -1409 -883
+rect -1229 -917 -1217 -883
+rect -1037 -917 -1025 -883
+rect -845 -917 -833 -883
+rect -653 -917 -641 -883
+rect -461 -917 -449 -883
+rect -269 -917 -257 -883
+rect -77 -917 -65 -883
+rect 115 -917 127 -883
+rect 307 -917 319 -883
+rect 499 -917 511 -883
+rect 691 -917 703 -883
+rect 883 -917 895 -883
+rect 1075 -917 1087 -883
+rect 1267 -917 1279 -883
+rect -1421 -923 -1363 -917
+rect -1229 -923 -1171 -917
+rect -1037 -923 -979 -917
+rect -845 -923 -787 -917
+rect -653 -923 -595 -917
+rect -461 -923 -403 -917
+rect -269 -923 -211 -917
+rect -77 -923 -19 -917
+rect 115 -923 173 -917
+rect 307 -923 365 -917
+rect 499 -923 557 -917
+rect 691 -923 749 -917
+rect 883 -923 941 -917
+rect 1075 -923 1133 -917
+rect 1267 -923 1325 -917
+<< nwell >>
+rect -1607 -1055 1607 1055
+<< pmos >>
+rect -1407 436 -1377 836
+rect -1311 436 -1281 836
+rect -1215 436 -1185 836
+rect -1119 436 -1089 836
+rect -1023 436 -993 836
+rect -927 436 -897 836
+rect -831 436 -801 836
+rect -735 436 -705 836
+rect -639 436 -609 836
+rect -543 436 -513 836
+rect -447 436 -417 836
+rect -351 436 -321 836
+rect -255 436 -225 836
+rect -159 436 -129 836
+rect -63 436 -33 836
+rect 33 436 63 836
+rect 129 436 159 836
+rect 225 436 255 836
+rect 321 436 351 836
+rect 417 436 447 836
+rect 513 436 543 836
+rect 609 436 639 836
+rect 705 436 735 836
+rect 801 436 831 836
+rect 897 436 927 836
+rect 993 436 1023 836
+rect 1089 436 1119 836
+rect 1185 436 1215 836
+rect 1281 436 1311 836
+rect 1377 436 1407 836
+rect -1407 -200 -1377 200
+rect -1311 -200 -1281 200
+rect -1215 -200 -1185 200
+rect -1119 -200 -1089 200
+rect -1023 -200 -993 200
+rect -927 -200 -897 200
+rect -831 -200 -801 200
+rect -735 -200 -705 200
+rect -639 -200 -609 200
+rect -543 -200 -513 200
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect 513 -200 543 200
+rect 609 -200 639 200
+rect 705 -200 735 200
+rect 801 -200 831 200
+rect 897 -200 927 200
+rect 993 -200 1023 200
+rect 1089 -200 1119 200
+rect 1185 -200 1215 200
+rect 1281 -200 1311 200
+rect 1377 -200 1407 200
+rect -1407 -836 -1377 -436
+rect -1311 -836 -1281 -436
+rect -1215 -836 -1185 -436
+rect -1119 -836 -1089 -436
+rect -1023 -836 -993 -436
+rect -927 -836 -897 -436
+rect -831 -836 -801 -436
+rect -735 -836 -705 -436
+rect -639 -836 -609 -436
+rect -543 -836 -513 -436
+rect -447 -836 -417 -436
+rect -351 -836 -321 -436
+rect -255 -836 -225 -436
+rect -159 -836 -129 -436
+rect -63 -836 -33 -436
+rect 33 -836 63 -436
+rect 129 -836 159 -436
+rect 225 -836 255 -436
+rect 321 -836 351 -436
+rect 417 -836 447 -436
+rect 513 -836 543 -436
+rect 609 -836 639 -436
+rect 705 -836 735 -436
+rect 801 -836 831 -436
+rect 897 -836 927 -436
+rect 993 -836 1023 -436
+rect 1089 -836 1119 -436
+rect 1185 -836 1215 -436
+rect 1281 -836 1311 -436
+rect 1377 -836 1407 -436
+<< pdiff >>
+rect -1469 824 -1407 836
+rect -1469 448 -1457 824
+rect -1423 448 -1407 824
+rect -1469 436 -1407 448
+rect -1377 824 -1311 836
+rect -1377 448 -1361 824
+rect -1327 448 -1311 824
+rect -1377 436 -1311 448
+rect -1281 824 -1215 836
+rect -1281 448 -1265 824
+rect -1231 448 -1215 824
+rect -1281 436 -1215 448
+rect -1185 824 -1119 836
+rect -1185 448 -1169 824
+rect -1135 448 -1119 824
+rect -1185 436 -1119 448
+rect -1089 824 -1023 836
+rect -1089 448 -1073 824
+rect -1039 448 -1023 824
+rect -1089 436 -1023 448
+rect -993 824 -927 836
+rect -993 448 -977 824
+rect -943 448 -927 824
+rect -993 436 -927 448
+rect -897 824 -831 836
+rect -897 448 -881 824
+rect -847 448 -831 824
+rect -897 436 -831 448
+rect -801 824 -735 836
+rect -801 448 -785 824
+rect -751 448 -735 824
+rect -801 436 -735 448
+rect -705 824 -639 836
+rect -705 448 -689 824
+rect -655 448 -639 824
+rect -705 436 -639 448
+rect -609 824 -543 836
+rect -609 448 -593 824
+rect -559 448 -543 824
+rect -609 436 -543 448
+rect -513 824 -447 836
+rect -513 448 -497 824
+rect -463 448 -447 824
+rect -513 436 -447 448
+rect -417 824 -351 836
+rect -417 448 -401 824
+rect -367 448 -351 824
+rect -417 436 -351 448
+rect -321 824 -255 836
+rect -321 448 -305 824
+rect -271 448 -255 824
+rect -321 436 -255 448
+rect -225 824 -159 836
+rect -225 448 -209 824
+rect -175 448 -159 824
+rect -225 436 -159 448
+rect -129 824 -63 836
+rect -129 448 -113 824
+rect -79 448 -63 824
+rect -129 436 -63 448
+rect -33 824 33 836
+rect -33 448 -17 824
+rect 17 448 33 824
+rect -33 436 33 448
+rect 63 824 129 836
+rect 63 448 79 824
+rect 113 448 129 824
+rect 63 436 129 448
+rect 159 824 225 836
+rect 159 448 175 824
+rect 209 448 225 824
+rect 159 436 225 448
+rect 255 824 321 836
+rect 255 448 271 824
+rect 305 448 321 824
+rect 255 436 321 448
+rect 351 824 417 836
+rect 351 448 367 824
+rect 401 448 417 824
+rect 351 436 417 448
+rect 447 824 513 836
+rect 447 448 463 824
+rect 497 448 513 824
+rect 447 436 513 448
+rect 543 824 609 836
+rect 543 448 559 824
+rect 593 448 609 824
+rect 543 436 609 448
+rect 639 824 705 836
+rect 639 448 655 824
+rect 689 448 705 824
+rect 639 436 705 448
+rect 735 824 801 836
+rect 735 448 751 824
+rect 785 448 801 824
+rect 735 436 801 448
+rect 831 824 897 836
+rect 831 448 847 824
+rect 881 448 897 824
+rect 831 436 897 448
+rect 927 824 993 836
+rect 927 448 943 824
+rect 977 448 993 824
+rect 927 436 993 448
+rect 1023 824 1089 836
+rect 1023 448 1039 824
+rect 1073 448 1089 824
+rect 1023 436 1089 448
+rect 1119 824 1185 836
+rect 1119 448 1135 824
+rect 1169 448 1185 824
+rect 1119 436 1185 448
+rect 1215 824 1281 836
+rect 1215 448 1231 824
+rect 1265 448 1281 824
+rect 1215 436 1281 448
+rect 1311 824 1377 836
+rect 1311 448 1327 824
+rect 1361 448 1377 824
+rect 1311 436 1377 448
+rect 1407 824 1469 836
+rect 1407 448 1423 824
+rect 1457 448 1469 824
+rect 1407 436 1469 448
+rect -1469 188 -1407 200
+rect -1469 -188 -1457 188
+rect -1423 -188 -1407 188
+rect -1469 -200 -1407 -188
+rect -1377 188 -1311 200
+rect -1377 -188 -1361 188
+rect -1327 -188 -1311 188
+rect -1377 -200 -1311 -188
+rect -1281 188 -1215 200
+rect -1281 -188 -1265 188
+rect -1231 -188 -1215 188
+rect -1281 -200 -1215 -188
+rect -1185 188 -1119 200
+rect -1185 -188 -1169 188
+rect -1135 -188 -1119 188
+rect -1185 -200 -1119 -188
+rect -1089 188 -1023 200
+rect -1089 -188 -1073 188
+rect -1039 -188 -1023 188
+rect -1089 -200 -1023 -188
+rect -993 188 -927 200
+rect -993 -188 -977 188
+rect -943 -188 -927 188
+rect -993 -200 -927 -188
+rect -897 188 -831 200
+rect -897 -188 -881 188
+rect -847 -188 -831 188
+rect -897 -200 -831 -188
+rect -801 188 -735 200
+rect -801 -188 -785 188
+rect -751 -188 -735 188
+rect -801 -200 -735 -188
+rect -705 188 -639 200
+rect -705 -188 -689 188
+rect -655 -188 -639 188
+rect -705 -200 -639 -188
+rect -609 188 -543 200
+rect -609 -188 -593 188
+rect -559 -188 -543 188
+rect -609 -200 -543 -188
+rect -513 188 -447 200
+rect -513 -188 -497 188
+rect -463 -188 -447 188
+rect -513 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 513 200
+rect 447 -188 463 188
+rect 497 -188 513 188
+rect 447 -200 513 -188
+rect 543 188 609 200
+rect 543 -188 559 188
+rect 593 -188 609 188
+rect 543 -200 609 -188
+rect 639 188 705 200
+rect 639 -188 655 188
+rect 689 -188 705 188
+rect 639 -200 705 -188
+rect 735 188 801 200
+rect 735 -188 751 188
+rect 785 -188 801 188
+rect 735 -200 801 -188
+rect 831 188 897 200
+rect 831 -188 847 188
+rect 881 -188 897 188
+rect 831 -200 897 -188
+rect 927 188 993 200
+rect 927 -188 943 188
+rect 977 -188 993 188
+rect 927 -200 993 -188
+rect 1023 188 1089 200
+rect 1023 -188 1039 188
+rect 1073 -188 1089 188
+rect 1023 -200 1089 -188
+rect 1119 188 1185 200
+rect 1119 -188 1135 188
+rect 1169 -188 1185 188
+rect 1119 -200 1185 -188
+rect 1215 188 1281 200
+rect 1215 -188 1231 188
+rect 1265 -188 1281 188
+rect 1215 -200 1281 -188
+rect 1311 188 1377 200
+rect 1311 -188 1327 188
+rect 1361 -188 1377 188
+rect 1311 -200 1377 -188
+rect 1407 188 1469 200
+rect 1407 -188 1423 188
+rect 1457 -188 1469 188
+rect 1407 -200 1469 -188
+rect -1469 -448 -1407 -436
+rect -1469 -824 -1457 -448
+rect -1423 -824 -1407 -448
+rect -1469 -836 -1407 -824
+rect -1377 -448 -1311 -436
+rect -1377 -824 -1361 -448
+rect -1327 -824 -1311 -448
+rect -1377 -836 -1311 -824
+rect -1281 -448 -1215 -436
+rect -1281 -824 -1265 -448
+rect -1231 -824 -1215 -448
+rect -1281 -836 -1215 -824
+rect -1185 -448 -1119 -436
+rect -1185 -824 -1169 -448
+rect -1135 -824 -1119 -448
+rect -1185 -836 -1119 -824
+rect -1089 -448 -1023 -436
+rect -1089 -824 -1073 -448
+rect -1039 -824 -1023 -448
+rect -1089 -836 -1023 -824
+rect -993 -448 -927 -436
+rect -993 -824 -977 -448
+rect -943 -824 -927 -448
+rect -993 -836 -927 -824
+rect -897 -448 -831 -436
+rect -897 -824 -881 -448
+rect -847 -824 -831 -448
+rect -897 -836 -831 -824
+rect -801 -448 -735 -436
+rect -801 -824 -785 -448
+rect -751 -824 -735 -448
+rect -801 -836 -735 -824
+rect -705 -448 -639 -436
+rect -705 -824 -689 -448
+rect -655 -824 -639 -448
+rect -705 -836 -639 -824
+rect -609 -448 -543 -436
+rect -609 -824 -593 -448
+rect -559 -824 -543 -448
+rect -609 -836 -543 -824
+rect -513 -448 -447 -436
+rect -513 -824 -497 -448
+rect -463 -824 -447 -448
+rect -513 -836 -447 -824
+rect -417 -448 -351 -436
+rect -417 -824 -401 -448
+rect -367 -824 -351 -448
+rect -417 -836 -351 -824
+rect -321 -448 -255 -436
+rect -321 -824 -305 -448
+rect -271 -824 -255 -448
+rect -321 -836 -255 -824
+rect -225 -448 -159 -436
+rect -225 -824 -209 -448
+rect -175 -824 -159 -448
+rect -225 -836 -159 -824
+rect -129 -448 -63 -436
+rect -129 -824 -113 -448
+rect -79 -824 -63 -448
+rect -129 -836 -63 -824
+rect -33 -448 33 -436
+rect -33 -824 -17 -448
+rect 17 -824 33 -448
+rect -33 -836 33 -824
+rect 63 -448 129 -436
+rect 63 -824 79 -448
+rect 113 -824 129 -448
+rect 63 -836 129 -824
+rect 159 -448 225 -436
+rect 159 -824 175 -448
+rect 209 -824 225 -448
+rect 159 -836 225 -824
+rect 255 -448 321 -436
+rect 255 -824 271 -448
+rect 305 -824 321 -448
+rect 255 -836 321 -824
+rect 351 -448 417 -436
+rect 351 -824 367 -448
+rect 401 -824 417 -448
+rect 351 -836 417 -824
+rect 447 -448 513 -436
+rect 447 -824 463 -448
+rect 497 -824 513 -448
+rect 447 -836 513 -824
+rect 543 -448 609 -436
+rect 543 -824 559 -448
+rect 593 -824 609 -448
+rect 543 -836 609 -824
+rect 639 -448 705 -436
+rect 639 -824 655 -448
+rect 689 -824 705 -448
+rect 639 -836 705 -824
+rect 735 -448 801 -436
+rect 735 -824 751 -448
+rect 785 -824 801 -448
+rect 735 -836 801 -824
+rect 831 -448 897 -436
+rect 831 -824 847 -448
+rect 881 -824 897 -448
+rect 831 -836 897 -824
+rect 927 -448 993 -436
+rect 927 -824 943 -448
+rect 977 -824 993 -448
+rect 927 -836 993 -824
+rect 1023 -448 1089 -436
+rect 1023 -824 1039 -448
+rect 1073 -824 1089 -448
+rect 1023 -836 1089 -824
+rect 1119 -448 1185 -436
+rect 1119 -824 1135 -448
+rect 1169 -824 1185 -448
+rect 1119 -836 1185 -824
+rect 1215 -448 1281 -436
+rect 1215 -824 1231 -448
+rect 1265 -824 1281 -448
+rect 1215 -836 1281 -824
+rect 1311 -448 1377 -436
+rect 1311 -824 1327 -448
+rect 1361 -824 1377 -448
+rect 1311 -836 1377 -824
+rect 1407 -448 1469 -436
+rect 1407 -824 1423 -448
+rect 1457 -824 1469 -448
+rect 1407 -836 1469 -824
+<< pdiffc >>
+rect -1457 448 -1423 824
+rect -1361 448 -1327 824
+rect -1265 448 -1231 824
+rect -1169 448 -1135 824
+rect -1073 448 -1039 824
+rect -977 448 -943 824
+rect -881 448 -847 824
+rect -785 448 -751 824
+rect -689 448 -655 824
+rect -593 448 -559 824
+rect -497 448 -463 824
+rect -401 448 -367 824
+rect -305 448 -271 824
+rect -209 448 -175 824
+rect -113 448 -79 824
+rect -17 448 17 824
+rect 79 448 113 824
+rect 175 448 209 824
+rect 271 448 305 824
+rect 367 448 401 824
+rect 463 448 497 824
+rect 559 448 593 824
+rect 655 448 689 824
+rect 751 448 785 824
+rect 847 448 881 824
+rect 943 448 977 824
+rect 1039 448 1073 824
+rect 1135 448 1169 824
+rect 1231 448 1265 824
+rect 1327 448 1361 824
+rect 1423 448 1457 824
+rect -1457 -188 -1423 188
+rect -1361 -188 -1327 188
+rect -1265 -188 -1231 188
+rect -1169 -188 -1135 188
+rect -1073 -188 -1039 188
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+rect 1039 -188 1073 188
+rect 1135 -188 1169 188
+rect 1231 -188 1265 188
+rect 1327 -188 1361 188
+rect 1423 -188 1457 188
+rect -1457 -824 -1423 -448
+rect -1361 -824 -1327 -448
+rect -1265 -824 -1231 -448
+rect -1169 -824 -1135 -448
+rect -1073 -824 -1039 -448
+rect -977 -824 -943 -448
+rect -881 -824 -847 -448
+rect -785 -824 -751 -448
+rect -689 -824 -655 -448
+rect -593 -824 -559 -448
+rect -497 -824 -463 -448
+rect -401 -824 -367 -448
+rect -305 -824 -271 -448
+rect -209 -824 -175 -448
+rect -113 -824 -79 -448
+rect -17 -824 17 -448
+rect 79 -824 113 -448
+rect 175 -824 209 -448
+rect 271 -824 305 -448
+rect 367 -824 401 -448
+rect 463 -824 497 -448
+rect 559 -824 593 -448
+rect 655 -824 689 -448
+rect 751 -824 785 -448
+rect 847 -824 881 -448
+rect 943 -824 977 -448
+rect 1039 -824 1073 -448
+rect 1135 -824 1169 -448
+rect 1231 -824 1265 -448
+rect 1327 -824 1361 -448
+rect 1423 -824 1457 -448
+<< nsubdiff >>
+rect -1571 985 -1475 1019
+rect 1475 985 1571 1019
+rect -1571 923 -1537 985
+rect 1537 923 1571 985
+rect -1571 -985 -1537 -923
+rect 1537 -985 1571 -923
+rect -1571 -1019 -1475 -985
+rect 1475 -1019 1571 -985
+<< nsubdiffcont >>
+rect -1475 985 1475 1019
+rect -1571 -923 -1537 923
+rect 1537 -923 1571 923
+rect -1475 -1019 1475 -985
+<< poly >>
+rect -1329 917 -1263 933
+rect -1329 883 -1313 917
+rect -1279 883 -1263 917
+rect -1329 867 -1263 883
+rect -1137 917 -1071 933
+rect -1137 883 -1121 917
+rect -1087 883 -1071 917
+rect -1137 867 -1071 883
+rect -945 917 -879 933
+rect -945 883 -929 917
+rect -895 883 -879 917
+rect -945 867 -879 883
+rect -753 917 -687 933
+rect -753 883 -737 917
+rect -703 883 -687 917
+rect -753 867 -687 883
+rect -561 917 -495 933
+rect -561 883 -545 917
+rect -511 883 -495 917
+rect -561 867 -495 883
+rect -369 917 -303 933
+rect -369 883 -353 917
+rect -319 883 -303 917
+rect -369 867 -303 883
+rect -177 917 -111 933
+rect -177 883 -161 917
+rect -127 883 -111 917
+rect -177 867 -111 883
+rect 15 917 81 933
+rect 15 883 31 917
+rect 65 883 81 917
+rect 15 867 81 883
+rect 207 917 273 933
+rect 207 883 223 917
+rect 257 883 273 917
+rect 207 867 273 883
+rect 399 917 465 933
+rect 399 883 415 917
+rect 449 883 465 917
+rect 399 867 465 883
+rect 591 917 657 933
+rect 591 883 607 917
+rect 641 883 657 917
+rect 591 867 657 883
+rect 783 917 849 933
+rect 783 883 799 917
+rect 833 883 849 917
+rect 783 867 849 883
+rect 975 917 1041 933
+rect 975 883 991 917
+rect 1025 883 1041 917
+rect 975 867 1041 883
+rect 1167 917 1233 933
+rect 1167 883 1183 917
+rect 1217 883 1233 917
+rect 1167 867 1233 883
+rect 1359 917 1425 933
+rect 1359 883 1375 917
+rect 1409 883 1425 917
+rect 1359 867 1425 883
+rect -1407 836 -1377 862
+rect -1311 836 -1281 867
+rect -1215 836 -1185 862
+rect -1119 836 -1089 867
+rect -1023 836 -993 862
+rect -927 836 -897 867
+rect -831 836 -801 862
+rect -735 836 -705 867
+rect -639 836 -609 862
+rect -543 836 -513 867
+rect -447 836 -417 862
+rect -351 836 -321 867
+rect -255 836 -225 862
+rect -159 836 -129 867
+rect -63 836 -33 862
+rect 33 836 63 867
+rect 129 836 159 862
+rect 225 836 255 867
+rect 321 836 351 862
+rect 417 836 447 867
+rect 513 836 543 862
+rect 609 836 639 867
+rect 705 836 735 862
+rect 801 836 831 867
+rect 897 836 927 862
+rect 993 836 1023 867
+rect 1089 836 1119 862
+rect 1185 836 1215 867
+rect 1281 836 1311 862
+rect 1377 836 1407 867
+rect -1407 405 -1377 436
+rect -1311 410 -1281 436
+rect -1215 405 -1185 436
+rect -1119 410 -1089 436
+rect -1023 405 -993 436
+rect -927 410 -897 436
+rect -831 405 -801 436
+rect -735 410 -705 436
+rect -639 405 -609 436
+rect -543 410 -513 436
+rect -447 405 -417 436
+rect -351 410 -321 436
+rect -255 405 -225 436
+rect -159 410 -129 436
+rect -63 405 -33 436
+rect 33 410 63 436
+rect 129 405 159 436
+rect 225 410 255 436
+rect 321 405 351 436
+rect 417 410 447 436
+rect 513 405 543 436
+rect 609 410 639 436
+rect 705 405 735 436
+rect 801 410 831 436
+rect 897 405 927 436
+rect 993 410 1023 436
+rect 1089 405 1119 436
+rect 1185 410 1215 436
+rect 1281 405 1311 436
+rect 1377 410 1407 436
+rect -1425 389 -1359 405
+rect -1425 355 -1409 389
+rect -1375 355 -1359 389
+rect -1425 339 -1359 355
+rect -1233 389 -1167 405
+rect -1233 355 -1217 389
+rect -1183 355 -1167 389
+rect -1233 339 -1167 355
+rect -1041 389 -975 405
+rect -1041 355 -1025 389
+rect -991 355 -975 389
+rect -1041 339 -975 355
+rect -849 389 -783 405
+rect -849 355 -833 389
+rect -799 355 -783 389
+rect -849 339 -783 355
+rect -657 389 -591 405
+rect -657 355 -641 389
+rect -607 355 -591 389
+rect -657 339 -591 355
+rect -465 389 -399 405
+rect -465 355 -449 389
+rect -415 355 -399 389
+rect -465 339 -399 355
+rect -273 389 -207 405
+rect -273 355 -257 389
+rect -223 355 -207 389
+rect -273 339 -207 355
+rect -81 389 -15 405
+rect -81 355 -65 389
+rect -31 355 -15 389
+rect -81 339 -15 355
+rect 111 389 177 405
+rect 111 355 127 389
+rect 161 355 177 389
+rect 111 339 177 355
+rect 303 389 369 405
+rect 303 355 319 389
+rect 353 355 369 389
+rect 303 339 369 355
+rect 495 389 561 405
+rect 495 355 511 389
+rect 545 355 561 389
+rect 495 339 561 355
+rect 687 389 753 405
+rect 687 355 703 389
+rect 737 355 753 389
+rect 687 339 753 355
+rect 879 389 945 405
+rect 879 355 895 389
+rect 929 355 945 389
+rect 879 339 945 355
+rect 1071 389 1137 405
+rect 1071 355 1087 389
+rect 1121 355 1137 389
+rect 1071 339 1137 355
+rect 1263 389 1329 405
+rect 1263 355 1279 389
+rect 1313 355 1329 389
+rect 1263 339 1329 355
+rect -1425 281 -1359 297
+rect -1425 247 -1409 281
+rect -1375 247 -1359 281
+rect -1425 231 -1359 247
+rect -1233 281 -1167 297
+rect -1233 247 -1217 281
+rect -1183 247 -1167 281
+rect -1233 231 -1167 247
+rect -1041 281 -975 297
+rect -1041 247 -1025 281
+rect -991 247 -975 281
+rect -1041 231 -975 247
+rect -849 281 -783 297
+rect -849 247 -833 281
+rect -799 247 -783 281
+rect -849 231 -783 247
+rect -657 281 -591 297
+rect -657 247 -641 281
+rect -607 247 -591 281
+rect -657 231 -591 247
+rect -465 281 -399 297
+rect -465 247 -449 281
+rect -415 247 -399 281
+rect -465 231 -399 247
+rect -273 281 -207 297
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -273 231 -207 247
+rect -81 281 -15 297
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect -81 231 -15 247
+rect 111 281 177 297
+rect 111 247 127 281
+rect 161 247 177 281
+rect 111 231 177 247
+rect 303 281 369 297
+rect 303 247 319 281
+rect 353 247 369 281
+rect 303 231 369 247
+rect 495 281 561 297
+rect 495 247 511 281
+rect 545 247 561 281
+rect 495 231 561 247
+rect 687 281 753 297
+rect 687 247 703 281
+rect 737 247 753 281
+rect 687 231 753 247
+rect 879 281 945 297
+rect 879 247 895 281
+rect 929 247 945 281
+rect 879 231 945 247
+rect 1071 281 1137 297
+rect 1071 247 1087 281
+rect 1121 247 1137 281
+rect 1071 231 1137 247
+rect 1263 281 1329 297
+rect 1263 247 1279 281
+rect 1313 247 1329 281
+rect 1263 231 1329 247
+rect -1407 200 -1377 231
+rect -1311 200 -1281 226
+rect -1215 200 -1185 231
+rect -1119 200 -1089 226
+rect -1023 200 -993 231
+rect -927 200 -897 226
+rect -831 200 -801 231
+rect -735 200 -705 226
+rect -639 200 -609 231
+rect -543 200 -513 226
+rect -447 200 -417 231
+rect -351 200 -321 226
+rect -255 200 -225 231
+rect -159 200 -129 226
+rect -63 200 -33 231
+rect 33 200 63 226
+rect 129 200 159 231
+rect 225 200 255 226
+rect 321 200 351 231
+rect 417 200 447 226
+rect 513 200 543 231
+rect 609 200 639 226
+rect 705 200 735 231
+rect 801 200 831 226
+rect 897 200 927 231
+rect 993 200 1023 226
+rect 1089 200 1119 231
+rect 1185 200 1215 226
+rect 1281 200 1311 231
+rect 1377 200 1407 226
+rect -1407 -226 -1377 -200
+rect -1311 -231 -1281 -200
+rect -1215 -226 -1185 -200
+rect -1119 -231 -1089 -200
+rect -1023 -226 -993 -200
+rect -927 -231 -897 -200
+rect -831 -226 -801 -200
+rect -735 -231 -705 -200
+rect -639 -226 -609 -200
+rect -543 -231 -513 -200
+rect -447 -226 -417 -200
+rect -351 -231 -321 -200
+rect -255 -226 -225 -200
+rect -159 -231 -129 -200
+rect -63 -226 -33 -200
+rect 33 -231 63 -200
+rect 129 -226 159 -200
+rect 225 -231 255 -200
+rect 321 -226 351 -200
+rect 417 -231 447 -200
+rect 513 -226 543 -200
+rect 609 -231 639 -200
+rect 705 -226 735 -200
+rect 801 -231 831 -200
+rect 897 -226 927 -200
+rect 993 -231 1023 -200
+rect 1089 -226 1119 -200
+rect 1185 -231 1215 -200
+rect 1281 -226 1311 -200
+rect 1377 -231 1407 -200
+rect -1329 -247 -1263 -231
+rect -1329 -281 -1313 -247
+rect -1279 -281 -1263 -247
+rect -1329 -297 -1263 -281
+rect -1137 -247 -1071 -231
+rect -1137 -281 -1121 -247
+rect -1087 -281 -1071 -247
+rect -1137 -297 -1071 -281
+rect -945 -247 -879 -231
+rect -945 -281 -929 -247
+rect -895 -281 -879 -247
+rect -945 -297 -879 -281
+rect -753 -247 -687 -231
+rect -753 -281 -737 -247
+rect -703 -281 -687 -247
+rect -753 -297 -687 -281
+rect -561 -247 -495 -231
+rect -561 -281 -545 -247
+rect -511 -281 -495 -247
+rect -561 -297 -495 -281
+rect -369 -247 -303 -231
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -369 -297 -303 -281
+rect -177 -247 -111 -231
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect -177 -297 -111 -281
+rect 15 -247 81 -231
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 15 -297 81 -281
+rect 207 -247 273 -231
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect 207 -297 273 -281
+rect 399 -247 465 -231
+rect 399 -281 415 -247
+rect 449 -281 465 -247
+rect 399 -297 465 -281
+rect 591 -247 657 -231
+rect 591 -281 607 -247
+rect 641 -281 657 -247
+rect 591 -297 657 -281
+rect 783 -247 849 -231
+rect 783 -281 799 -247
+rect 833 -281 849 -247
+rect 783 -297 849 -281
+rect 975 -247 1041 -231
+rect 975 -281 991 -247
+rect 1025 -281 1041 -247
+rect 975 -297 1041 -281
+rect 1167 -247 1233 -231
+rect 1167 -281 1183 -247
+rect 1217 -281 1233 -247
+rect 1167 -297 1233 -281
+rect 1359 -247 1425 -231
+rect 1359 -281 1375 -247
+rect 1409 -281 1425 -247
+rect 1359 -297 1425 -281
+rect -1329 -355 -1263 -339
+rect -1329 -389 -1313 -355
+rect -1279 -389 -1263 -355
+rect -1329 -405 -1263 -389
+rect -1137 -355 -1071 -339
+rect -1137 -389 -1121 -355
+rect -1087 -389 -1071 -355
+rect -1137 -405 -1071 -389
+rect -945 -355 -879 -339
+rect -945 -389 -929 -355
+rect -895 -389 -879 -355
+rect -945 -405 -879 -389
+rect -753 -355 -687 -339
+rect -753 -389 -737 -355
+rect -703 -389 -687 -355
+rect -753 -405 -687 -389
+rect -561 -355 -495 -339
+rect -561 -389 -545 -355
+rect -511 -389 -495 -355
+rect -561 -405 -495 -389
+rect -369 -355 -303 -339
+rect -369 -389 -353 -355
+rect -319 -389 -303 -355
+rect -369 -405 -303 -389
+rect -177 -355 -111 -339
+rect -177 -389 -161 -355
+rect -127 -389 -111 -355
+rect -177 -405 -111 -389
+rect 15 -355 81 -339
+rect 15 -389 31 -355
+rect 65 -389 81 -355
+rect 15 -405 81 -389
+rect 207 -355 273 -339
+rect 207 -389 223 -355
+rect 257 -389 273 -355
+rect 207 -405 273 -389
+rect 399 -355 465 -339
+rect 399 -389 415 -355
+rect 449 -389 465 -355
+rect 399 -405 465 -389
+rect 591 -355 657 -339
+rect 591 -389 607 -355
+rect 641 -389 657 -355
+rect 591 -405 657 -389
+rect 783 -355 849 -339
+rect 783 -389 799 -355
+rect 833 -389 849 -355
+rect 783 -405 849 -389
+rect 975 -355 1041 -339
+rect 975 -389 991 -355
+rect 1025 -389 1041 -355
+rect 975 -405 1041 -389
+rect 1167 -355 1233 -339
+rect 1167 -389 1183 -355
+rect 1217 -389 1233 -355
+rect 1167 -405 1233 -389
+rect 1359 -355 1425 -339
+rect 1359 -389 1375 -355
+rect 1409 -389 1425 -355
+rect 1359 -405 1425 -389
+rect -1407 -436 -1377 -410
+rect -1311 -436 -1281 -405
+rect -1215 -436 -1185 -410
+rect -1119 -436 -1089 -405
+rect -1023 -436 -993 -410
+rect -927 -436 -897 -405
+rect -831 -436 -801 -410
+rect -735 -436 -705 -405
+rect -639 -436 -609 -410
+rect -543 -436 -513 -405
+rect -447 -436 -417 -410
+rect -351 -436 -321 -405
+rect -255 -436 -225 -410
+rect -159 -436 -129 -405
+rect -63 -436 -33 -410
+rect 33 -436 63 -405
+rect 129 -436 159 -410
+rect 225 -436 255 -405
+rect 321 -436 351 -410
+rect 417 -436 447 -405
+rect 513 -436 543 -410
+rect 609 -436 639 -405
+rect 705 -436 735 -410
+rect 801 -436 831 -405
+rect 897 -436 927 -410
+rect 993 -436 1023 -405
+rect 1089 -436 1119 -410
+rect 1185 -436 1215 -405
+rect 1281 -436 1311 -410
+rect 1377 -436 1407 -405
+rect -1407 -867 -1377 -836
+rect -1311 -862 -1281 -836
+rect -1215 -867 -1185 -836
+rect -1119 -862 -1089 -836
+rect -1023 -867 -993 -836
+rect -927 -862 -897 -836
+rect -831 -867 -801 -836
+rect -735 -862 -705 -836
+rect -639 -867 -609 -836
+rect -543 -862 -513 -836
+rect -447 -867 -417 -836
+rect -351 -862 -321 -836
+rect -255 -867 -225 -836
+rect -159 -862 -129 -836
+rect -63 -867 -33 -836
+rect 33 -862 63 -836
+rect 129 -867 159 -836
+rect 225 -862 255 -836
+rect 321 -867 351 -836
+rect 417 -862 447 -836
+rect 513 -867 543 -836
+rect 609 -862 639 -836
+rect 705 -867 735 -836
+rect 801 -862 831 -836
+rect 897 -867 927 -836
+rect 993 -862 1023 -836
+rect 1089 -867 1119 -836
+rect 1185 -862 1215 -836
+rect 1281 -867 1311 -836
+rect 1377 -862 1407 -836
+rect -1425 -883 -1359 -867
+rect -1425 -917 -1409 -883
+rect -1375 -917 -1359 -883
+rect -1425 -933 -1359 -917
+rect -1233 -883 -1167 -867
+rect -1233 -917 -1217 -883
+rect -1183 -917 -1167 -883
+rect -1233 -933 -1167 -917
+rect -1041 -883 -975 -867
+rect -1041 -917 -1025 -883
+rect -991 -917 -975 -883
+rect -1041 -933 -975 -917
+rect -849 -883 -783 -867
+rect -849 -917 -833 -883
+rect -799 -917 -783 -883
+rect -849 -933 -783 -917
+rect -657 -883 -591 -867
+rect -657 -917 -641 -883
+rect -607 -917 -591 -883
+rect -657 -933 -591 -917
+rect -465 -883 -399 -867
+rect -465 -917 -449 -883
+rect -415 -917 -399 -883
+rect -465 -933 -399 -917
+rect -273 -883 -207 -867
+rect -273 -917 -257 -883
+rect -223 -917 -207 -883
+rect -273 -933 -207 -917
+rect -81 -883 -15 -867
+rect -81 -917 -65 -883
+rect -31 -917 -15 -883
+rect -81 -933 -15 -917
+rect 111 -883 177 -867
+rect 111 -917 127 -883
+rect 161 -917 177 -883
+rect 111 -933 177 -917
+rect 303 -883 369 -867
+rect 303 -917 319 -883
+rect 353 -917 369 -883
+rect 303 -933 369 -917
+rect 495 -883 561 -867
+rect 495 -917 511 -883
+rect 545 -917 561 -883
+rect 495 -933 561 -917
+rect 687 -883 753 -867
+rect 687 -917 703 -883
+rect 737 -917 753 -883
+rect 687 -933 753 -917
+rect 879 -883 945 -867
+rect 879 -917 895 -883
+rect 929 -917 945 -883
+rect 879 -933 945 -917
+rect 1071 -883 1137 -867
+rect 1071 -917 1087 -883
+rect 1121 -917 1137 -883
+rect 1071 -933 1137 -917
+rect 1263 -883 1329 -867
+rect 1263 -917 1279 -883
+rect 1313 -917 1329 -883
+rect 1263 -933 1329 -917
+<< polycont >>
+rect -1313 883 -1279 917
+rect -1121 883 -1087 917
+rect -929 883 -895 917
+rect -737 883 -703 917
+rect -545 883 -511 917
+rect -353 883 -319 917
+rect -161 883 -127 917
+rect 31 883 65 917
+rect 223 883 257 917
+rect 415 883 449 917
+rect 607 883 641 917
+rect 799 883 833 917
+rect 991 883 1025 917
+rect 1183 883 1217 917
+rect 1375 883 1409 917
+rect -1409 355 -1375 389
+rect -1217 355 -1183 389
+rect -1025 355 -991 389
+rect -833 355 -799 389
+rect -641 355 -607 389
+rect -449 355 -415 389
+rect -257 355 -223 389
+rect -65 355 -31 389
+rect 127 355 161 389
+rect 319 355 353 389
+rect 511 355 545 389
+rect 703 355 737 389
+rect 895 355 929 389
+rect 1087 355 1121 389
+rect 1279 355 1313 389
+rect -1409 247 -1375 281
+rect -1217 247 -1183 281
+rect -1025 247 -991 281
+rect -833 247 -799 281
+rect -641 247 -607 281
+rect -449 247 -415 281
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect 511 247 545 281
+rect 703 247 737 281
+rect 895 247 929 281
+rect 1087 247 1121 281
+rect 1279 247 1313 281
+rect -1313 -281 -1279 -247
+rect -1121 -281 -1087 -247
+rect -929 -281 -895 -247
+rect -737 -281 -703 -247
+rect -545 -281 -511 -247
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+rect 415 -281 449 -247
+rect 607 -281 641 -247
+rect 799 -281 833 -247
+rect 991 -281 1025 -247
+rect 1183 -281 1217 -247
+rect 1375 -281 1409 -247
+rect -1313 -389 -1279 -355
+rect -1121 -389 -1087 -355
+rect -929 -389 -895 -355
+rect -737 -389 -703 -355
+rect -545 -389 -511 -355
+rect -353 -389 -319 -355
+rect -161 -389 -127 -355
+rect 31 -389 65 -355
+rect 223 -389 257 -355
+rect 415 -389 449 -355
+rect 607 -389 641 -355
+rect 799 -389 833 -355
+rect 991 -389 1025 -355
+rect 1183 -389 1217 -355
+rect 1375 -389 1409 -355
+rect -1409 -917 -1375 -883
+rect -1217 -917 -1183 -883
+rect -1025 -917 -991 -883
+rect -833 -917 -799 -883
+rect -641 -917 -607 -883
+rect -449 -917 -415 -883
+rect -257 -917 -223 -883
+rect -65 -917 -31 -883
+rect 127 -917 161 -883
+rect 319 -917 353 -883
+rect 511 -917 545 -883
+rect 703 -917 737 -883
+rect 895 -917 929 -883
+rect 1087 -917 1121 -883
+rect 1279 -917 1313 -883
+<< locali >>
+rect -1571 985 -1475 1019
+rect 1475 985 1571 1019
+rect -1571 923 -1537 985
+rect 1537 923 1571 985
+rect -1329 883 -1313 917
+rect -1279 883 -1263 917
+rect -1137 883 -1121 917
+rect -1087 883 -1071 917
+rect -945 883 -929 917
+rect -895 883 -879 917
+rect -753 883 -737 917
+rect -703 883 -687 917
+rect -561 883 -545 917
+rect -511 883 -495 917
+rect -369 883 -353 917
+rect -319 883 -303 917
+rect -177 883 -161 917
+rect -127 883 -111 917
+rect 15 883 31 917
+rect 65 883 81 917
+rect 207 883 223 917
+rect 257 883 273 917
+rect 399 883 415 917
+rect 449 883 465 917
+rect 591 883 607 917
+rect 641 883 657 917
+rect 783 883 799 917
+rect 833 883 849 917
+rect 975 883 991 917
+rect 1025 883 1041 917
+rect 1167 883 1183 917
+rect 1217 883 1233 917
+rect 1359 883 1375 917
+rect 1409 883 1425 917
+rect -1457 824 -1423 840
+rect -1457 432 -1423 448
+rect -1361 824 -1327 840
+rect -1361 432 -1327 448
+rect -1265 824 -1231 840
+rect -1265 432 -1231 448
+rect -1169 824 -1135 840
+rect -1169 432 -1135 448
+rect -1073 824 -1039 840
+rect -1073 432 -1039 448
+rect -977 824 -943 840
+rect -977 432 -943 448
+rect -881 824 -847 840
+rect -881 432 -847 448
+rect -785 824 -751 840
+rect -785 432 -751 448
+rect -689 824 -655 840
+rect -689 432 -655 448
+rect -593 824 -559 840
+rect -593 432 -559 448
+rect -497 824 -463 840
+rect -497 432 -463 448
+rect -401 824 -367 840
+rect -401 432 -367 448
+rect -305 824 -271 840
+rect -305 432 -271 448
+rect -209 824 -175 840
+rect -209 432 -175 448
+rect -113 824 -79 840
+rect -113 432 -79 448
+rect -17 824 17 840
+rect -17 432 17 448
+rect 79 824 113 840
+rect 79 432 113 448
+rect 175 824 209 840
+rect 175 432 209 448
+rect 271 824 305 840
+rect 271 432 305 448
+rect 367 824 401 840
+rect 367 432 401 448
+rect 463 824 497 840
+rect 463 432 497 448
+rect 559 824 593 840
+rect 559 432 593 448
+rect 655 824 689 840
+rect 655 432 689 448
+rect 751 824 785 840
+rect 751 432 785 448
+rect 847 824 881 840
+rect 847 432 881 448
+rect 943 824 977 840
+rect 943 432 977 448
+rect 1039 824 1073 840
+rect 1039 432 1073 448
+rect 1135 824 1169 840
+rect 1135 432 1169 448
+rect 1231 824 1265 840
+rect 1231 432 1265 448
+rect 1327 824 1361 840
+rect 1327 432 1361 448
+rect 1423 824 1457 840
+rect 1423 432 1457 448
+rect -1425 355 -1409 389
+rect -1375 355 -1359 389
+rect -1233 355 -1217 389
+rect -1183 355 -1167 389
+rect -1041 355 -1025 389
+rect -991 355 -975 389
+rect -849 355 -833 389
+rect -799 355 -783 389
+rect -657 355 -641 389
+rect -607 355 -591 389
+rect -465 355 -449 389
+rect -415 355 -399 389
+rect -273 355 -257 389
+rect -223 355 -207 389
+rect -81 355 -65 389
+rect -31 355 -15 389
+rect 111 355 127 389
+rect 161 355 177 389
+rect 303 355 319 389
+rect 353 355 369 389
+rect 495 355 511 389
+rect 545 355 561 389
+rect 687 355 703 389
+rect 737 355 753 389
+rect 879 355 895 389
+rect 929 355 945 389
+rect 1071 355 1087 389
+rect 1121 355 1137 389
+rect 1263 355 1279 389
+rect 1313 355 1329 389
+rect -1425 247 -1409 281
+rect -1375 247 -1359 281
+rect -1233 247 -1217 281
+rect -1183 247 -1167 281
+rect -1041 247 -1025 281
+rect -991 247 -975 281
+rect -849 247 -833 281
+rect -799 247 -783 281
+rect -657 247 -641 281
+rect -607 247 -591 281
+rect -465 247 -449 281
+rect -415 247 -399 281
+rect -273 247 -257 281
+rect -223 247 -207 281
+rect -81 247 -65 281
+rect -31 247 -15 281
+rect 111 247 127 281
+rect 161 247 177 281
+rect 303 247 319 281
+rect 353 247 369 281
+rect 495 247 511 281
+rect 545 247 561 281
+rect 687 247 703 281
+rect 737 247 753 281
+rect 879 247 895 281
+rect 929 247 945 281
+rect 1071 247 1087 281
+rect 1121 247 1137 281
+rect 1263 247 1279 281
+rect 1313 247 1329 281
+rect -1457 188 -1423 204
+rect -1457 -204 -1423 -188
+rect -1361 188 -1327 204
+rect -1361 -204 -1327 -188
+rect -1265 188 -1231 204
+rect -1265 -204 -1231 -188
+rect -1169 188 -1135 204
+rect -1169 -204 -1135 -188
+rect -1073 188 -1039 204
+rect -1073 -204 -1039 -188
+rect -977 188 -943 204
+rect -977 -204 -943 -188
+rect -881 188 -847 204
+rect -881 -204 -847 -188
+rect -785 188 -751 204
+rect -785 -204 -751 -188
+rect -689 188 -655 204
+rect -689 -204 -655 -188
+rect -593 188 -559 204
+rect -593 -204 -559 -188
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect 559 188 593 204
+rect 559 -204 593 -188
+rect 655 188 689 204
+rect 655 -204 689 -188
+rect 751 188 785 204
+rect 751 -204 785 -188
+rect 847 188 881 204
+rect 847 -204 881 -188
+rect 943 188 977 204
+rect 943 -204 977 -188
+rect 1039 188 1073 204
+rect 1039 -204 1073 -188
+rect 1135 188 1169 204
+rect 1135 -204 1169 -188
+rect 1231 188 1265 204
+rect 1231 -204 1265 -188
+rect 1327 188 1361 204
+rect 1327 -204 1361 -188
+rect 1423 188 1457 204
+rect 1423 -204 1457 -188
+rect -1329 -281 -1313 -247
+rect -1279 -281 -1263 -247
+rect -1137 -281 -1121 -247
+rect -1087 -281 -1071 -247
+rect -945 -281 -929 -247
+rect -895 -281 -879 -247
+rect -753 -281 -737 -247
+rect -703 -281 -687 -247
+rect -561 -281 -545 -247
+rect -511 -281 -495 -247
+rect -369 -281 -353 -247
+rect -319 -281 -303 -247
+rect -177 -281 -161 -247
+rect -127 -281 -111 -247
+rect 15 -281 31 -247
+rect 65 -281 81 -247
+rect 207 -281 223 -247
+rect 257 -281 273 -247
+rect 399 -281 415 -247
+rect 449 -281 465 -247
+rect 591 -281 607 -247
+rect 641 -281 657 -247
+rect 783 -281 799 -247
+rect 833 -281 849 -247
+rect 975 -281 991 -247
+rect 1025 -281 1041 -247
+rect 1167 -281 1183 -247
+rect 1217 -281 1233 -247
+rect 1359 -281 1375 -247
+rect 1409 -281 1425 -247
+rect -1329 -389 -1313 -355
+rect -1279 -389 -1263 -355
+rect -1137 -389 -1121 -355
+rect -1087 -389 -1071 -355
+rect -945 -389 -929 -355
+rect -895 -389 -879 -355
+rect -753 -389 -737 -355
+rect -703 -389 -687 -355
+rect -561 -389 -545 -355
+rect -511 -389 -495 -355
+rect -369 -389 -353 -355
+rect -319 -389 -303 -355
+rect -177 -389 -161 -355
+rect -127 -389 -111 -355
+rect 15 -389 31 -355
+rect 65 -389 81 -355
+rect 207 -389 223 -355
+rect 257 -389 273 -355
+rect 399 -389 415 -355
+rect 449 -389 465 -355
+rect 591 -389 607 -355
+rect 641 -389 657 -355
+rect 783 -389 799 -355
+rect 833 -389 849 -355
+rect 975 -389 991 -355
+rect 1025 -389 1041 -355
+rect 1167 -389 1183 -355
+rect 1217 -389 1233 -355
+rect 1359 -389 1375 -355
+rect 1409 -389 1425 -355
+rect -1457 -448 -1423 -432
+rect -1457 -840 -1423 -824
+rect -1361 -448 -1327 -432
+rect -1361 -840 -1327 -824
+rect -1265 -448 -1231 -432
+rect -1265 -840 -1231 -824
+rect -1169 -448 -1135 -432
+rect -1169 -840 -1135 -824
+rect -1073 -448 -1039 -432
+rect -1073 -840 -1039 -824
+rect -977 -448 -943 -432
+rect -977 -840 -943 -824
+rect -881 -448 -847 -432
+rect -881 -840 -847 -824
+rect -785 -448 -751 -432
+rect -785 -840 -751 -824
+rect -689 -448 -655 -432
+rect -689 -840 -655 -824
+rect -593 -448 -559 -432
+rect -593 -840 -559 -824
+rect -497 -448 -463 -432
+rect -497 -840 -463 -824
+rect -401 -448 -367 -432
+rect -401 -840 -367 -824
+rect -305 -448 -271 -432
+rect -305 -840 -271 -824
+rect -209 -448 -175 -432
+rect -209 -840 -175 -824
+rect -113 -448 -79 -432
+rect -113 -840 -79 -824
+rect -17 -448 17 -432
+rect -17 -840 17 -824
+rect 79 -448 113 -432
+rect 79 -840 113 -824
+rect 175 -448 209 -432
+rect 175 -840 209 -824
+rect 271 -448 305 -432
+rect 271 -840 305 -824
+rect 367 -448 401 -432
+rect 367 -840 401 -824
+rect 463 -448 497 -432
+rect 463 -840 497 -824
+rect 559 -448 593 -432
+rect 559 -840 593 -824
+rect 655 -448 689 -432
+rect 655 -840 689 -824
+rect 751 -448 785 -432
+rect 751 -840 785 -824
+rect 847 -448 881 -432
+rect 847 -840 881 -824
+rect 943 -448 977 -432
+rect 943 -840 977 -824
+rect 1039 -448 1073 -432
+rect 1039 -840 1073 -824
+rect 1135 -448 1169 -432
+rect 1135 -840 1169 -824
+rect 1231 -448 1265 -432
+rect 1231 -840 1265 -824
+rect 1327 -448 1361 -432
+rect 1327 -840 1361 -824
+rect 1423 -448 1457 -432
+rect 1423 -840 1457 -824
+rect -1425 -917 -1409 -883
+rect -1375 -917 -1359 -883
+rect -1233 -917 -1217 -883
+rect -1183 -917 -1167 -883
+rect -1041 -917 -1025 -883
+rect -991 -917 -975 -883
+rect -849 -917 -833 -883
+rect -799 -917 -783 -883
+rect -657 -917 -641 -883
+rect -607 -917 -591 -883
+rect -465 -917 -449 -883
+rect -415 -917 -399 -883
+rect -273 -917 -257 -883
+rect -223 -917 -207 -883
+rect -81 -917 -65 -883
+rect -31 -917 -15 -883
+rect 111 -917 127 -883
+rect 161 -917 177 -883
+rect 303 -917 319 -883
+rect 353 -917 369 -883
+rect 495 -917 511 -883
+rect 545 -917 561 -883
+rect 687 -917 703 -883
+rect 737 -917 753 -883
+rect 879 -917 895 -883
+rect 929 -917 945 -883
+rect 1071 -917 1087 -883
+rect 1121 -917 1137 -883
+rect 1263 -917 1279 -883
+rect 1313 -917 1329 -883
+rect -1571 -985 -1537 -923
+rect 1537 -985 1571 -923
+rect -1571 -1019 -1475 -985
+rect 1475 -1019 1571 -985
+<< viali >>
+rect -1313 883 -1279 917
+rect -1121 883 -1087 917
+rect -929 883 -895 917
+rect -737 883 -703 917
+rect -545 883 -511 917
+rect -353 883 -319 917
+rect -161 883 -127 917
+rect 31 883 65 917
+rect 223 883 257 917
+rect 415 883 449 917
+rect 607 883 641 917
+rect 799 883 833 917
+rect 991 883 1025 917
+rect 1183 883 1217 917
+rect 1375 883 1409 917
+rect -1457 448 -1423 824
+rect -1361 448 -1327 824
+rect -1265 448 -1231 824
+rect -1169 448 -1135 824
+rect -1073 448 -1039 824
+rect -977 448 -943 824
+rect -881 448 -847 824
+rect -785 448 -751 824
+rect -689 448 -655 824
+rect -593 448 -559 824
+rect -497 448 -463 824
+rect -401 448 -367 824
+rect -305 448 -271 824
+rect -209 448 -175 824
+rect -113 448 -79 824
+rect -17 448 17 824
+rect 79 448 113 824
+rect 175 448 209 824
+rect 271 448 305 824
+rect 367 448 401 824
+rect 463 448 497 824
+rect 559 448 593 824
+rect 655 448 689 824
+rect 751 448 785 824
+rect 847 448 881 824
+rect 943 448 977 824
+rect 1039 448 1073 824
+rect 1135 448 1169 824
+rect 1231 448 1265 824
+rect 1327 448 1361 824
+rect 1423 448 1457 824
+rect -1409 355 -1375 389
+rect -1217 355 -1183 389
+rect -1025 355 -991 389
+rect -833 355 -799 389
+rect -641 355 -607 389
+rect -449 355 -415 389
+rect -257 355 -223 389
+rect -65 355 -31 389
+rect 127 355 161 389
+rect 319 355 353 389
+rect 511 355 545 389
+rect 703 355 737 389
+rect 895 355 929 389
+rect 1087 355 1121 389
+rect 1279 355 1313 389
+rect -1409 247 -1375 281
+rect -1217 247 -1183 281
+rect -1025 247 -991 281
+rect -833 247 -799 281
+rect -641 247 -607 281
+rect -449 247 -415 281
+rect -257 247 -223 281
+rect -65 247 -31 281
+rect 127 247 161 281
+rect 319 247 353 281
+rect 511 247 545 281
+rect 703 247 737 281
+rect 895 247 929 281
+rect 1087 247 1121 281
+rect 1279 247 1313 281
+rect -1457 -188 -1423 188
+rect -1361 -188 -1327 188
+rect -1265 -188 -1231 188
+rect -1169 -188 -1135 188
+rect -1073 -188 -1039 188
+rect -977 -188 -943 188
+rect -881 -188 -847 188
+rect -785 -188 -751 188
+rect -689 -188 -655 188
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect 655 -188 689 188
+rect 751 -188 785 188
+rect 847 -188 881 188
+rect 943 -188 977 188
+rect 1039 -188 1073 188
+rect 1135 -188 1169 188
+rect 1231 -188 1265 188
+rect 1327 -188 1361 188
+rect 1423 -188 1457 188
+rect -1313 -281 -1279 -247
+rect -1121 -281 -1087 -247
+rect -929 -281 -895 -247
+rect -737 -281 -703 -247
+rect -545 -281 -511 -247
+rect -353 -281 -319 -247
+rect -161 -281 -127 -247
+rect 31 -281 65 -247
+rect 223 -281 257 -247
+rect 415 -281 449 -247
+rect 607 -281 641 -247
+rect 799 -281 833 -247
+rect 991 -281 1025 -247
+rect 1183 -281 1217 -247
+rect 1375 -281 1409 -247
+rect -1313 -389 -1279 -355
+rect -1121 -389 -1087 -355
+rect -929 -389 -895 -355
+rect -737 -389 -703 -355
+rect -545 -389 -511 -355
+rect -353 -389 -319 -355
+rect -161 -389 -127 -355
+rect 31 -389 65 -355
+rect 223 -389 257 -355
+rect 415 -389 449 -355
+rect 607 -389 641 -355
+rect 799 -389 833 -355
+rect 991 -389 1025 -355
+rect 1183 -389 1217 -355
+rect 1375 -389 1409 -355
+rect -1457 -824 -1423 -448
+rect -1361 -824 -1327 -448
+rect -1265 -824 -1231 -448
+rect -1169 -824 -1135 -448
+rect -1073 -824 -1039 -448
+rect -977 -824 -943 -448
+rect -881 -824 -847 -448
+rect -785 -824 -751 -448
+rect -689 -824 -655 -448
+rect -593 -824 -559 -448
+rect -497 -824 -463 -448
+rect -401 -824 -367 -448
+rect -305 -824 -271 -448
+rect -209 -824 -175 -448
+rect -113 -824 -79 -448
+rect -17 -824 17 -448
+rect 79 -824 113 -448
+rect 175 -824 209 -448
+rect 271 -824 305 -448
+rect 367 -824 401 -448
+rect 463 -824 497 -448
+rect 559 -824 593 -448
+rect 655 -824 689 -448
+rect 751 -824 785 -448
+rect 847 -824 881 -448
+rect 943 -824 977 -448
+rect 1039 -824 1073 -448
+rect 1135 -824 1169 -448
+rect 1231 -824 1265 -448
+rect 1327 -824 1361 -448
+rect 1423 -824 1457 -448
+rect -1409 -917 -1375 -883
+rect -1217 -917 -1183 -883
+rect -1025 -917 -991 -883
+rect -833 -917 -799 -883
+rect -641 -917 -607 -883
+rect -449 -917 -415 -883
+rect -257 -917 -223 -883
+rect -65 -917 -31 -883
+rect 127 -917 161 -883
+rect 319 -917 353 -883
+rect 511 -917 545 -883
+rect 703 -917 737 -883
+rect 895 -917 929 -883
+rect 1087 -917 1121 -883
+rect 1279 -917 1313 -883
+<< metal1 >>
+rect -1325 917 -1267 923
+rect -1325 883 -1313 917
+rect -1279 883 -1267 917
+rect -1325 877 -1267 883
+rect -1133 917 -1075 923
+rect -1133 883 -1121 917
+rect -1087 883 -1075 917
+rect -1133 877 -1075 883
+rect -941 917 -883 923
+rect -941 883 -929 917
+rect -895 883 -883 917
+rect -941 877 -883 883
+rect -749 917 -691 923
+rect -749 883 -737 917
+rect -703 883 -691 917
+rect -749 877 -691 883
+rect -557 917 -499 923
+rect -557 883 -545 917
+rect -511 883 -499 917
+rect -557 877 -499 883
+rect -365 917 -307 923
+rect -365 883 -353 917
+rect -319 883 -307 917
+rect -365 877 -307 883
+rect -173 917 -115 923
+rect -173 883 -161 917
+rect -127 883 -115 917
+rect -173 877 -115 883
+rect 19 917 77 923
+rect 19 883 31 917
+rect 65 883 77 917
+rect 19 877 77 883
+rect 211 917 269 923
+rect 211 883 223 917
+rect 257 883 269 917
+rect 211 877 269 883
+rect 403 917 461 923
+rect 403 883 415 917
+rect 449 883 461 917
+rect 403 877 461 883
+rect 595 917 653 923
+rect 595 883 607 917
+rect 641 883 653 917
+rect 595 877 653 883
+rect 787 917 845 923
+rect 787 883 799 917
+rect 833 883 845 917
+rect 787 877 845 883
+rect 979 917 1037 923
+rect 979 883 991 917
+rect 1025 883 1037 917
+rect 979 877 1037 883
+rect 1171 917 1229 923
+rect 1171 883 1183 917
+rect 1217 883 1229 917
+rect 1171 877 1229 883
+rect 1363 917 1421 923
+rect 1363 883 1375 917
+rect 1409 883 1421 917
+rect 1363 877 1421 883
+rect -1463 824 -1417 836
+rect -1463 448 -1457 824
+rect -1423 448 -1417 824
+rect -1463 436 -1417 448
+rect -1367 824 -1321 836
+rect -1367 448 -1361 824
+rect -1327 448 -1321 824
+rect -1367 436 -1321 448
+rect -1271 824 -1225 836
+rect -1271 448 -1265 824
+rect -1231 448 -1225 824
+rect -1271 436 -1225 448
+rect -1175 824 -1129 836
+rect -1175 448 -1169 824
+rect -1135 448 -1129 824
+rect -1175 436 -1129 448
+rect -1079 824 -1033 836
+rect -1079 448 -1073 824
+rect -1039 448 -1033 824
+rect -1079 436 -1033 448
+rect -983 824 -937 836
+rect -983 448 -977 824
+rect -943 448 -937 824
+rect -983 436 -937 448
+rect -887 824 -841 836
+rect -887 448 -881 824
+rect -847 448 -841 824
+rect -887 436 -841 448
+rect -791 824 -745 836
+rect -791 448 -785 824
+rect -751 448 -745 824
+rect -791 436 -745 448
+rect -695 824 -649 836
+rect -695 448 -689 824
+rect -655 448 -649 824
+rect -695 436 -649 448
+rect -599 824 -553 836
+rect -599 448 -593 824
+rect -559 448 -553 824
+rect -599 436 -553 448
+rect -503 824 -457 836
+rect -503 448 -497 824
+rect -463 448 -457 824
+rect -503 436 -457 448
+rect -407 824 -361 836
+rect -407 448 -401 824
+rect -367 448 -361 824
+rect -407 436 -361 448
+rect -311 824 -265 836
+rect -311 448 -305 824
+rect -271 448 -265 824
+rect -311 436 -265 448
+rect -215 824 -169 836
+rect -215 448 -209 824
+rect -175 448 -169 824
+rect -215 436 -169 448
+rect -119 824 -73 836
+rect -119 448 -113 824
+rect -79 448 -73 824
+rect -119 436 -73 448
+rect -23 824 23 836
+rect -23 448 -17 824
+rect 17 448 23 824
+rect -23 436 23 448
+rect 73 824 119 836
+rect 73 448 79 824
+rect 113 448 119 824
+rect 73 436 119 448
+rect 169 824 215 836
+rect 169 448 175 824
+rect 209 448 215 824
+rect 169 436 215 448
+rect 265 824 311 836
+rect 265 448 271 824
+rect 305 448 311 824
+rect 265 436 311 448
+rect 361 824 407 836
+rect 361 448 367 824
+rect 401 448 407 824
+rect 361 436 407 448
+rect 457 824 503 836
+rect 457 448 463 824
+rect 497 448 503 824
+rect 457 436 503 448
+rect 553 824 599 836
+rect 553 448 559 824
+rect 593 448 599 824
+rect 553 436 599 448
+rect 649 824 695 836
+rect 649 448 655 824
+rect 689 448 695 824
+rect 649 436 695 448
+rect 745 824 791 836
+rect 745 448 751 824
+rect 785 448 791 824
+rect 745 436 791 448
+rect 841 824 887 836
+rect 841 448 847 824
+rect 881 448 887 824
+rect 841 436 887 448
+rect 937 824 983 836
+rect 937 448 943 824
+rect 977 448 983 824
+rect 937 436 983 448
+rect 1033 824 1079 836
+rect 1033 448 1039 824
+rect 1073 448 1079 824
+rect 1033 436 1079 448
+rect 1129 824 1175 836
+rect 1129 448 1135 824
+rect 1169 448 1175 824
+rect 1129 436 1175 448
+rect 1225 824 1271 836
+rect 1225 448 1231 824
+rect 1265 448 1271 824
+rect 1225 436 1271 448
+rect 1321 824 1367 836
+rect 1321 448 1327 824
+rect 1361 448 1367 824
+rect 1321 436 1367 448
+rect 1417 824 1463 836
+rect 1417 448 1423 824
+rect 1457 448 1463 824
+rect 1417 436 1463 448
+rect -1421 389 -1363 395
+rect -1421 355 -1409 389
+rect -1375 355 -1363 389
+rect -1421 349 -1363 355
+rect -1229 389 -1171 395
+rect -1229 355 -1217 389
+rect -1183 355 -1171 389
+rect -1229 349 -1171 355
+rect -1037 389 -979 395
+rect -1037 355 -1025 389
+rect -991 355 -979 389
+rect -1037 349 -979 355
+rect -845 389 -787 395
+rect -845 355 -833 389
+rect -799 355 -787 389
+rect -845 349 -787 355
+rect -653 389 -595 395
+rect -653 355 -641 389
+rect -607 355 -595 389
+rect -653 349 -595 355
+rect -461 389 -403 395
+rect -461 355 -449 389
+rect -415 355 -403 389
+rect -461 349 -403 355
+rect -269 389 -211 395
+rect -269 355 -257 389
+rect -223 355 -211 389
+rect -269 349 -211 355
+rect -77 389 -19 395
+rect -77 355 -65 389
+rect -31 355 -19 389
+rect -77 349 -19 355
+rect 115 389 173 395
+rect 115 355 127 389
+rect 161 355 173 389
+rect 115 349 173 355
+rect 307 389 365 395
+rect 307 355 319 389
+rect 353 355 365 389
+rect 307 349 365 355
+rect 499 389 557 395
+rect 499 355 511 389
+rect 545 355 557 389
+rect 499 349 557 355
+rect 691 389 749 395
+rect 691 355 703 389
+rect 737 355 749 389
+rect 691 349 749 355
+rect 883 389 941 395
+rect 883 355 895 389
+rect 929 355 941 389
+rect 883 349 941 355
+rect 1075 389 1133 395
+rect 1075 355 1087 389
+rect 1121 355 1133 389
+rect 1075 349 1133 355
+rect 1267 389 1325 395
+rect 1267 355 1279 389
+rect 1313 355 1325 389
+rect 1267 349 1325 355
+rect -1421 281 -1363 287
+rect -1421 247 -1409 281
+rect -1375 247 -1363 281
+rect -1421 241 -1363 247
+rect -1229 281 -1171 287
+rect -1229 247 -1217 281
+rect -1183 247 -1171 281
+rect -1229 241 -1171 247
+rect -1037 281 -979 287
+rect -1037 247 -1025 281
+rect -991 247 -979 281
+rect -1037 241 -979 247
+rect -845 281 -787 287
+rect -845 247 -833 281
+rect -799 247 -787 281
+rect -845 241 -787 247
+rect -653 281 -595 287
+rect -653 247 -641 281
+rect -607 247 -595 281
+rect -653 241 -595 247
+rect -461 281 -403 287
+rect -461 247 -449 281
+rect -415 247 -403 281
+rect -461 241 -403 247
+rect -269 281 -211 287
+rect -269 247 -257 281
+rect -223 247 -211 281
+rect -269 241 -211 247
+rect -77 281 -19 287
+rect -77 247 -65 281
+rect -31 247 -19 281
+rect -77 241 -19 247
+rect 115 281 173 287
+rect 115 247 127 281
+rect 161 247 173 281
+rect 115 241 173 247
+rect 307 281 365 287
+rect 307 247 319 281
+rect 353 247 365 281
+rect 307 241 365 247
+rect 499 281 557 287
+rect 499 247 511 281
+rect 545 247 557 281
+rect 499 241 557 247
+rect 691 281 749 287
+rect 691 247 703 281
+rect 737 247 749 281
+rect 691 241 749 247
+rect 883 281 941 287
+rect 883 247 895 281
+rect 929 247 941 281
+rect 883 241 941 247
+rect 1075 281 1133 287
+rect 1075 247 1087 281
+rect 1121 247 1133 281
+rect 1075 241 1133 247
+rect 1267 281 1325 287
+rect 1267 247 1279 281
+rect 1313 247 1325 281
+rect 1267 241 1325 247
+rect -1463 188 -1417 200
+rect -1463 -188 -1457 188
+rect -1423 -188 -1417 188
+rect -1463 -200 -1417 -188
+rect -1367 188 -1321 200
+rect -1367 -188 -1361 188
+rect -1327 -188 -1321 188
+rect -1367 -200 -1321 -188
+rect -1271 188 -1225 200
+rect -1271 -188 -1265 188
+rect -1231 -188 -1225 188
+rect -1271 -200 -1225 -188
+rect -1175 188 -1129 200
+rect -1175 -188 -1169 188
+rect -1135 -188 -1129 188
+rect -1175 -200 -1129 -188
+rect -1079 188 -1033 200
+rect -1079 -188 -1073 188
+rect -1039 -188 -1033 188
+rect -1079 -200 -1033 -188
+rect -983 188 -937 200
+rect -983 -188 -977 188
+rect -943 -188 -937 188
+rect -983 -200 -937 -188
+rect -887 188 -841 200
+rect -887 -188 -881 188
+rect -847 -188 -841 188
+rect -887 -200 -841 -188
+rect -791 188 -745 200
+rect -791 -188 -785 188
+rect -751 -188 -745 188
+rect -791 -200 -745 -188
+rect -695 188 -649 200
+rect -695 -188 -689 188
+rect -655 -188 -649 188
+rect -695 -200 -649 -188
+rect -599 188 -553 200
+rect -599 -188 -593 188
+rect -559 -188 -553 188
+rect -599 -200 -553 -188
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect 553 188 599 200
+rect 553 -188 559 188
+rect 593 -188 599 188
+rect 553 -200 599 -188
+rect 649 188 695 200
+rect 649 -188 655 188
+rect 689 -188 695 188
+rect 649 -200 695 -188
+rect 745 188 791 200
+rect 745 -188 751 188
+rect 785 -188 791 188
+rect 745 -200 791 -188
+rect 841 188 887 200
+rect 841 -188 847 188
+rect 881 -188 887 188
+rect 841 -200 887 -188
+rect 937 188 983 200
+rect 937 -188 943 188
+rect 977 -188 983 188
+rect 937 -200 983 -188
+rect 1033 188 1079 200
+rect 1033 -188 1039 188
+rect 1073 -188 1079 188
+rect 1033 -200 1079 -188
+rect 1129 188 1175 200
+rect 1129 -188 1135 188
+rect 1169 -188 1175 188
+rect 1129 -200 1175 -188
+rect 1225 188 1271 200
+rect 1225 -188 1231 188
+rect 1265 -188 1271 188
+rect 1225 -200 1271 -188
+rect 1321 188 1367 200
+rect 1321 -188 1327 188
+rect 1361 -188 1367 188
+rect 1321 -200 1367 -188
+rect 1417 188 1463 200
+rect 1417 -188 1423 188
+rect 1457 -188 1463 188
+rect 1417 -200 1463 -188
+rect -1325 -247 -1267 -241
+rect -1325 -281 -1313 -247
+rect -1279 -281 -1267 -247
+rect -1325 -287 -1267 -281
+rect -1133 -247 -1075 -241
+rect -1133 -281 -1121 -247
+rect -1087 -281 -1075 -247
+rect -1133 -287 -1075 -281
+rect -941 -247 -883 -241
+rect -941 -281 -929 -247
+rect -895 -281 -883 -247
+rect -941 -287 -883 -281
+rect -749 -247 -691 -241
+rect -749 -281 -737 -247
+rect -703 -281 -691 -247
+rect -749 -287 -691 -281
+rect -557 -247 -499 -241
+rect -557 -281 -545 -247
+rect -511 -281 -499 -247
+rect -557 -287 -499 -281
+rect -365 -247 -307 -241
+rect -365 -281 -353 -247
+rect -319 -281 -307 -247
+rect -365 -287 -307 -281
+rect -173 -247 -115 -241
+rect -173 -281 -161 -247
+rect -127 -281 -115 -247
+rect -173 -287 -115 -281
+rect 19 -247 77 -241
+rect 19 -281 31 -247
+rect 65 -281 77 -247
+rect 19 -287 77 -281
+rect 211 -247 269 -241
+rect 211 -281 223 -247
+rect 257 -281 269 -247
+rect 211 -287 269 -281
+rect 403 -247 461 -241
+rect 403 -281 415 -247
+rect 449 -281 461 -247
+rect 403 -287 461 -281
+rect 595 -247 653 -241
+rect 595 -281 607 -247
+rect 641 -281 653 -247
+rect 595 -287 653 -281
+rect 787 -247 845 -241
+rect 787 -281 799 -247
+rect 833 -281 845 -247
+rect 787 -287 845 -281
+rect 979 -247 1037 -241
+rect 979 -281 991 -247
+rect 1025 -281 1037 -247
+rect 979 -287 1037 -281
+rect 1171 -247 1229 -241
+rect 1171 -281 1183 -247
+rect 1217 -281 1229 -247
+rect 1171 -287 1229 -281
+rect 1363 -247 1421 -241
+rect 1363 -281 1375 -247
+rect 1409 -281 1421 -247
+rect 1363 -287 1421 -281
+rect -1325 -355 -1267 -349
+rect -1325 -389 -1313 -355
+rect -1279 -389 -1267 -355
+rect -1325 -395 -1267 -389
+rect -1133 -355 -1075 -349
+rect -1133 -389 -1121 -355
+rect -1087 -389 -1075 -355
+rect -1133 -395 -1075 -389
+rect -941 -355 -883 -349
+rect -941 -389 -929 -355
+rect -895 -389 -883 -355
+rect -941 -395 -883 -389
+rect -749 -355 -691 -349
+rect -749 -389 -737 -355
+rect -703 -389 -691 -355
+rect -749 -395 -691 -389
+rect -557 -355 -499 -349
+rect -557 -389 -545 -355
+rect -511 -389 -499 -355
+rect -557 -395 -499 -389
+rect -365 -355 -307 -349
+rect -365 -389 -353 -355
+rect -319 -389 -307 -355
+rect -365 -395 -307 -389
+rect -173 -355 -115 -349
+rect -173 -389 -161 -355
+rect -127 -389 -115 -355
+rect -173 -395 -115 -389
+rect 19 -355 77 -349
+rect 19 -389 31 -355
+rect 65 -389 77 -355
+rect 19 -395 77 -389
+rect 211 -355 269 -349
+rect 211 -389 223 -355
+rect 257 -389 269 -355
+rect 211 -395 269 -389
+rect 403 -355 461 -349
+rect 403 -389 415 -355
+rect 449 -389 461 -355
+rect 403 -395 461 -389
+rect 595 -355 653 -349
+rect 595 -389 607 -355
+rect 641 -389 653 -355
+rect 595 -395 653 -389
+rect 787 -355 845 -349
+rect 787 -389 799 -355
+rect 833 -389 845 -355
+rect 787 -395 845 -389
+rect 979 -355 1037 -349
+rect 979 -389 991 -355
+rect 1025 -389 1037 -355
+rect 979 -395 1037 -389
+rect 1171 -355 1229 -349
+rect 1171 -389 1183 -355
+rect 1217 -389 1229 -355
+rect 1171 -395 1229 -389
+rect 1363 -355 1421 -349
+rect 1363 -389 1375 -355
+rect 1409 -389 1421 -355
+rect 1363 -395 1421 -389
+rect -1463 -448 -1417 -436
+rect -1463 -824 -1457 -448
+rect -1423 -824 -1417 -448
+rect -1463 -836 -1417 -824
+rect -1367 -448 -1321 -436
+rect -1367 -824 -1361 -448
+rect -1327 -824 -1321 -448
+rect -1367 -836 -1321 -824
+rect -1271 -448 -1225 -436
+rect -1271 -824 -1265 -448
+rect -1231 -824 -1225 -448
+rect -1271 -836 -1225 -824
+rect -1175 -448 -1129 -436
+rect -1175 -824 -1169 -448
+rect -1135 -824 -1129 -448
+rect -1175 -836 -1129 -824
+rect -1079 -448 -1033 -436
+rect -1079 -824 -1073 -448
+rect -1039 -824 -1033 -448
+rect -1079 -836 -1033 -824
+rect -983 -448 -937 -436
+rect -983 -824 -977 -448
+rect -943 -824 -937 -448
+rect -983 -836 -937 -824
+rect -887 -448 -841 -436
+rect -887 -824 -881 -448
+rect -847 -824 -841 -448
+rect -887 -836 -841 -824
+rect -791 -448 -745 -436
+rect -791 -824 -785 -448
+rect -751 -824 -745 -448
+rect -791 -836 -745 -824
+rect -695 -448 -649 -436
+rect -695 -824 -689 -448
+rect -655 -824 -649 -448
+rect -695 -836 -649 -824
+rect -599 -448 -553 -436
+rect -599 -824 -593 -448
+rect -559 -824 -553 -448
+rect -599 -836 -553 -824
+rect -503 -448 -457 -436
+rect -503 -824 -497 -448
+rect -463 -824 -457 -448
+rect -503 -836 -457 -824
+rect -407 -448 -361 -436
+rect -407 -824 -401 -448
+rect -367 -824 -361 -448
+rect -407 -836 -361 -824
+rect -311 -448 -265 -436
+rect -311 -824 -305 -448
+rect -271 -824 -265 -448
+rect -311 -836 -265 -824
+rect -215 -448 -169 -436
+rect -215 -824 -209 -448
+rect -175 -824 -169 -448
+rect -215 -836 -169 -824
+rect -119 -448 -73 -436
+rect -119 -824 -113 -448
+rect -79 -824 -73 -448
+rect -119 -836 -73 -824
+rect -23 -448 23 -436
+rect -23 -824 -17 -448
+rect 17 -824 23 -448
+rect -23 -836 23 -824
+rect 73 -448 119 -436
+rect 73 -824 79 -448
+rect 113 -824 119 -448
+rect 73 -836 119 -824
+rect 169 -448 215 -436
+rect 169 -824 175 -448
+rect 209 -824 215 -448
+rect 169 -836 215 -824
+rect 265 -448 311 -436
+rect 265 -824 271 -448
+rect 305 -824 311 -448
+rect 265 -836 311 -824
+rect 361 -448 407 -436
+rect 361 -824 367 -448
+rect 401 -824 407 -448
+rect 361 -836 407 -824
+rect 457 -448 503 -436
+rect 457 -824 463 -448
+rect 497 -824 503 -448
+rect 457 -836 503 -824
+rect 553 -448 599 -436
+rect 553 -824 559 -448
+rect 593 -824 599 -448
+rect 553 -836 599 -824
+rect 649 -448 695 -436
+rect 649 -824 655 -448
+rect 689 -824 695 -448
+rect 649 -836 695 -824
+rect 745 -448 791 -436
+rect 745 -824 751 -448
+rect 785 -824 791 -448
+rect 745 -836 791 -824
+rect 841 -448 887 -436
+rect 841 -824 847 -448
+rect 881 -824 887 -448
+rect 841 -836 887 -824
+rect 937 -448 983 -436
+rect 937 -824 943 -448
+rect 977 -824 983 -448
+rect 937 -836 983 -824
+rect 1033 -448 1079 -436
+rect 1033 -824 1039 -448
+rect 1073 -824 1079 -448
+rect 1033 -836 1079 -824
+rect 1129 -448 1175 -436
+rect 1129 -824 1135 -448
+rect 1169 -824 1175 -448
+rect 1129 -836 1175 -824
+rect 1225 -448 1271 -436
+rect 1225 -824 1231 -448
+rect 1265 -824 1271 -448
+rect 1225 -836 1271 -824
+rect 1321 -448 1367 -436
+rect 1321 -824 1327 -448
+rect 1361 -824 1367 -448
+rect 1321 -836 1367 -824
+rect 1417 -448 1463 -436
+rect 1417 -824 1423 -448
+rect 1457 -824 1463 -448
+rect 1417 -836 1463 -824
+rect -1421 -883 -1363 -877
+rect -1421 -917 -1409 -883
+rect -1375 -917 -1363 -883
+rect -1421 -923 -1363 -917
+rect -1229 -883 -1171 -877
+rect -1229 -917 -1217 -883
+rect -1183 -917 -1171 -883
+rect -1229 -923 -1171 -917
+rect -1037 -883 -979 -877
+rect -1037 -917 -1025 -883
+rect -991 -917 -979 -883
+rect -1037 -923 -979 -917
+rect -845 -883 -787 -877
+rect -845 -917 -833 -883
+rect -799 -917 -787 -883
+rect -845 -923 -787 -917
+rect -653 -883 -595 -877
+rect -653 -917 -641 -883
+rect -607 -917 -595 -883
+rect -653 -923 -595 -917
+rect -461 -883 -403 -877
+rect -461 -917 -449 -883
+rect -415 -917 -403 -883
+rect -461 -923 -403 -917
+rect -269 -883 -211 -877
+rect -269 -917 -257 -883
+rect -223 -917 -211 -883
+rect -269 -923 -211 -917
+rect -77 -883 -19 -877
+rect -77 -917 -65 -883
+rect -31 -917 -19 -883
+rect -77 -923 -19 -917
+rect 115 -883 173 -877
+rect 115 -917 127 -883
+rect 161 -917 173 -883
+rect 115 -923 173 -917
+rect 307 -883 365 -877
+rect 307 -917 319 -883
+rect 353 -917 365 -883
+rect 307 -923 365 -917
+rect 499 -883 557 -877
+rect 499 -917 511 -883
+rect 545 -917 557 -883
+rect 499 -923 557 -917
+rect 691 -883 749 -877
+rect 691 -917 703 -883
+rect 737 -917 749 -883
+rect 691 -923 749 -917
+rect 883 -883 941 -877
+rect 883 -917 895 -883
+rect 929 -917 941 -883
+rect 883 -923 941 -917
+rect 1075 -883 1133 -877
+rect 1075 -917 1087 -883
+rect 1121 -917 1133 -883
+rect 1075 -923 1133 -917
+rect 1267 -883 1325 -877
+rect 1267 -917 1279 -883
+rect 1313 -917 1325 -883
+rect 1267 -923 1325 -917
+<< properties >>
+string FIXED_BBOX -1554 -1002 1554 1002
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.15 m 3 nf 30 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_M67GXE.mag b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_M67GXE.mag
new file mode 100644
index 0000000..0fad7f9
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_M67GXE.mag
@@ -0,0 +1,110 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654606317
+<< pwell >>
+rect -837 -1498 837 1498
+<< psubdiff >>
+rect -801 1428 -705 1462
+rect 705 1428 801 1462
+rect -801 1366 -767 1428
+rect 767 1366 801 1428
+rect -801 -1428 -767 -1366
+rect 767 -1428 801 -1366
+rect -801 -1462 -705 -1428
+rect 705 -1462 801 -1428
+<< psubdiffcont >>
+rect -705 1428 705 1462
+rect -801 -1366 -767 1366
+rect 767 -1366 801 1366
+rect -705 -1462 705 -1428
+<< xpolycontact >>
+rect -671 900 -601 1332
+rect -671 -1332 -601 -900
+rect -353 900 -283 1332
+rect -353 -1332 -283 -900
+rect -35 900 35 1332
+rect -35 -1332 35 -900
+rect 283 900 353 1332
+rect 283 -1332 353 -900
+rect 601 900 671 1332
+rect 601 -1332 671 -900
+<< xpolyres >>
+rect -671 -900 -601 900
+rect -353 -900 -283 900
+rect -35 -900 35 900
+rect 283 -900 353 900
+rect 601 -900 671 900
+<< locali >>
+rect -801 1428 -705 1462
+rect 705 1428 801 1462
+rect -801 1366 -767 1428
+rect 767 1366 801 1428
+rect -801 -1428 -767 -1366
+rect 767 -1428 801 -1366
+rect -801 -1462 -705 -1428
+rect 705 -1462 801 -1428
+<< viali >>
+rect -655 917 -617 1314
+rect -337 917 -299 1314
+rect -19 917 19 1314
+rect 299 917 337 1314
+rect 617 917 655 1314
+rect -655 -1314 -617 -917
+rect -337 -1314 -299 -917
+rect -19 -1314 19 -917
+rect 299 -1314 337 -917
+rect 617 -1314 655 -917
+<< metal1 >>
+rect -661 1314 -611 1326
+rect -661 917 -655 1314
+rect -617 917 -611 1314
+rect -661 905 -611 917
+rect -343 1314 -293 1326
+rect -343 917 -337 1314
+rect -299 917 -293 1314
+rect -343 905 -293 917
+rect -25 1314 25 1326
+rect -25 917 -19 1314
+rect 19 917 25 1314
+rect -25 905 25 917
+rect 293 1314 343 1326
+rect 293 917 299 1314
+rect 337 917 343 1314
+rect 293 905 343 917
+rect 611 1314 661 1326
+rect 611 917 617 1314
+rect 655 917 661 1314
+rect 611 905 661 917
+rect -661 -917 -611 -905
+rect -661 -1314 -655 -917
+rect -617 -1314 -611 -917
+rect -661 -1326 -611 -1314
+rect -343 -917 -293 -905
+rect -343 -1314 -337 -917
+rect -299 -1314 -293 -917
+rect -343 -1326 -293 -1314
+rect -25 -917 25 -905
+rect -25 -1314 -19 -917
+rect 19 -1314 25 -917
+rect -25 -1326 25 -1314
+rect 293 -917 343 -905
+rect 293 -1314 299 -917
+rect 337 -1314 343 -917
+rect 293 -1326 343 -1314
+rect 611 -917 661 -905
+rect 611 -1314 617 -917
+rect 655 -1314 661 -917
+rect 611 -1326 661 -1314
+<< res0p35 >>
+rect -673 -902 -599 902
+rect -355 -902 -281 902
+rect -37 -902 37 902
+rect 281 -902 355 902
+rect 599 -902 673 902
+<< properties >>
+string FIXED_BBOX -784 -1445 784 1445
+string gencell sky130_fd_pr__res_xhigh_po_0p35
+string library sky130
+string parameters w 0.350 l 9 m 1 nx 5 wmin 0.350 lmin 0.50 rho 2000 val 52.504k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 0.350 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.ext b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.ext
new file mode 100644
index 0000000..511067f
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.ext
@@ -0,0 +1,29 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_283_n1432#" 188 469.148 283 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_283_n1000#" 57143 0 283 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_283_1000#" 188 469.148 283 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n35_n1432#" 188 294.299 -35 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n35_n1000#" 57143 0 -35 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n35_1000#" 188 294.299 -35 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n353_n1432#" 188 470.377 -353 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n353_n1000#" 57143 0 -353 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n353_1000#" 188 470.377 -353 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n483_n1562#" 0 0 -483 -1562 ppd 0 0 0 0 0 0 0 0 0 0 273496 16088 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 273496 16088 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n353_1000#" "a_n35_1000#" 155.514
+cap "a_n35_1000#" "a_283_1000#" 155.514
+cap "a_n35_n1432#" "a_283_n1432#" 155.514
+cap "a_n353_n1432#" "a_n35_n1432#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 283 -1000 284 -999 l=2000 "a_n483_n1562#" "a_283_n1000#" 0 0 "a_283_n1432#" 70 0 "a_283_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 -35 -1000 -34 -999 l=2000 "a_n483_n1562#" "a_n35_n1000#" 0 0 "a_n35_n1432#" 70 0 "a_n35_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 -353 -1000 -352 -999 l=2000 "a_n483_n1562#" "a_n353_n1000#" 0 0 "a_n353_n1432#" 70 0 "a_n353_1000#" 70 0
diff --git a/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.mag b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.mag
new file mode 100644
index 0000000..3ebb1d8
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_RS2YEK.mag
@@ -0,0 +1,82 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< pwell >>
+rect -519 -1598 519 1598
+<< psubdiff >>
+rect -483 1528 -387 1562
+rect 387 1528 483 1562
+rect -483 1466 -449 1528
+rect 449 1466 483 1528
+rect -483 -1528 -449 -1466
+rect 449 -1528 483 -1466
+rect -483 -1562 -387 -1528
+rect 387 -1562 483 -1528
+<< psubdiffcont >>
+rect -387 1528 387 1562
+rect -483 -1466 -449 1466
+rect 449 -1466 483 1466
+rect -387 -1562 387 -1528
+<< xpolycontact >>
+rect -353 1000 -283 1432
+rect -353 -1432 -283 -1000
+rect -35 1000 35 1432
+rect -35 -1432 35 -1000
+rect 283 1000 353 1432
+rect 283 -1432 353 -1000
+<< xpolyres >>
+rect -353 -1000 -283 1000
+rect -35 -1000 35 1000
+rect 283 -1000 353 1000
+<< locali >>
+rect -483 1528 -387 1562
+rect 387 1528 483 1562
+rect -483 1466 -449 1528
+rect 449 1466 483 1528
+rect -483 -1528 -449 -1466
+rect 449 -1528 483 -1466
+rect -483 -1562 -387 -1528
+rect 387 -1562 483 -1528
+<< viali >>
+rect -337 1017 -299 1414
+rect -19 1017 19 1414
+rect 299 1017 337 1414
+rect -337 -1414 -299 -1017
+rect -19 -1414 19 -1017
+rect 299 -1414 337 -1017
+<< metal1 >>
+rect -343 1414 -293 1426
+rect -343 1017 -337 1414
+rect -299 1017 -293 1414
+rect -343 1005 -293 1017
+rect -25 1414 25 1426
+rect -25 1017 -19 1414
+rect 19 1017 25 1414
+rect -25 1005 25 1017
+rect 293 1414 343 1426
+rect 293 1017 299 1414
+rect 337 1017 343 1414
+rect 293 1005 343 1017
+rect -343 -1017 -293 -1005
+rect -343 -1414 -337 -1017
+rect -299 -1414 -293 -1017
+rect -343 -1426 -293 -1414
+rect -25 -1017 25 -1005
+rect -25 -1414 -19 -1017
+rect 19 -1414 25 -1017
+rect -25 -1426 25 -1414
+rect 293 -1017 343 -1005
+rect 293 -1414 299 -1017
+rect 337 -1414 343 -1017
+rect 293 -1426 343 -1414
+<< res0p35 >>
+rect -355 -1002 -281 1002
+rect -37 -1002 37 1002
+rect 281 -1002 355 1002
+<< properties >>
+string FIXED_BBOX -466 -1545 466 1545
+string gencell sky130_fd_pr__res_xhigh_po_0p35
+string library sky130
+string parameters w 0.350 l 10 m 1 nx 3 wmin 0.350 lmin 0.50 rho 2000 val 58.218k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 0.350 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.ext b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.ext
new file mode 100644
index 0000000..a90ef8f
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.ext
@@ -0,0 +1,23 @@
+timestamp 1654683408
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_xhigh_po l=l w=w
+parameters sky130_fd_pr__res_xhigh_po_5p73 l=l
+parameters sky130_fd_pr__res_xhigh_po_2p85 l=l
+parameters sky130_fd_pr__res_xhigh_po_1p41 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p69 l=l
+parameters sky130_fd_pr__res_xhigh_po_0p35 l=l
+node "a_124_n1432#" 188 469.148 124 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1000#" 57143 0 124 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_124_1000#" 188 469.148 124 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n194_n1432#" 188 470.377 -194 -1432 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+node "a_n194_n1000#" 57143 0 -194 -1000 xres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 140000 4140 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n194_1000#" 188 470.377 -194 1000 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60480 2008 21050 942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n324_n1562#" 0 0 -324 -1562 ppd 0 0 0 0 0 0 0 0 0 0 251872 14816 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 251872 14816 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n194_n1432#" "a_124_n1432#" 155.514
+cap "a_n194_1000#" "a_124_1000#" 155.514
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 124 -1000 125 -999 l=2000 "a_n324_n1562#" "a_124_n1000#" 0 0 "a_124_n1432#" 70 0 "a_124_1000#" 70 0
+device rsubckt sky130_fd_pr__res_xhigh_po_0p35 -194 -1000 -193 -999 l=2000 "a_n324_n1562#" "a_n194_n1000#" 0 0 "a_n194_n1432#" 70 0 "a_n194_1000#" 70 0
diff --git a/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag
new file mode 100644
index 0000000..2601017
--- /dev/null
+++ b/mag/lvds/sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL.mag
@@ -0,0 +1,68 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1654683408
+<< pwell >>
+rect -360 -1598 360 1598
+<< psubdiff >>
+rect -324 1528 -228 1562
+rect 228 1528 324 1562
+rect -324 1466 -290 1528
+rect 290 1466 324 1528
+rect -324 -1528 -290 -1466
+rect 290 -1528 324 -1466
+rect -324 -1562 -228 -1528
+rect 228 -1562 324 -1528
+<< psubdiffcont >>
+rect -228 1528 228 1562
+rect -324 -1466 -290 1466
+rect 290 -1466 324 1466
+rect -228 -1562 228 -1528
+<< xpolycontact >>
+rect -194 1000 -124 1432
+rect -194 -1432 -124 -1000
+rect 124 1000 194 1432
+rect 124 -1432 194 -1000
+<< xpolyres >>
+rect -194 -1000 -124 1000
+rect 124 -1000 194 1000
+<< locali >>
+rect -324 1528 -228 1562
+rect 228 1528 324 1562
+rect -324 1466 -290 1528
+rect 290 1466 324 1528
+rect -324 -1528 -290 -1466
+rect 290 -1528 324 -1466
+rect -324 -1562 -228 -1528
+rect 228 -1562 324 -1528
+<< viali >>
+rect -178 1017 -140 1414
+rect 140 1017 178 1414
+rect -178 -1414 -140 -1017
+rect 140 -1414 178 -1017
+<< metal1 >>
+rect -184 1414 -134 1426
+rect -184 1017 -178 1414
+rect -140 1017 -134 1414
+rect -184 1005 -134 1017
+rect 134 1414 184 1426
+rect 134 1017 140 1414
+rect 178 1017 184 1414
+rect 134 1005 184 1017
+rect -184 -1017 -134 -1005
+rect -184 -1414 -178 -1017
+rect -140 -1414 -134 -1017
+rect -184 -1426 -134 -1414
+rect 134 -1017 184 -1005
+rect 134 -1414 140 -1017
+rect 178 -1414 184 -1017
+rect 134 -1426 184 -1414
+<< res0p35 >>
+rect -196 -1002 -122 1002
+rect 122 -1002 196 1002
+<< properties >>
+string FIXED_BBOX -307 -1545 307 1545
+string gencell sky130_fd_pr__res_xhigh_po_0p35
+string library sky130
+string parameters w 0.350 l 10 m 1 nx 2 wmin 0.350 lmin 0.50 rho 2000 val 58.218k dummy 0 dw 0.0 term 188.2 sterm 0.0 caplen 0 wmax 0.350 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_xhigh_po_0p35  sky130_fd_pr__res_xhigh_po_0p69 sky130_fd_pr__res_xhigh_po_1p41  sky130_fd_pr__res_xhigh_po_2p85 sky130_fd_pr__res_xhigh_po_5p73} full_metal 1 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/lvds/sky130_fd_sc_hs__inv_16.ext b/mag/lvds/sky130_fd_sc_hs__inv_16.ext
new file mode 100644
index 0000000..40abfa3
--- /dev/null
+++ b/mag/lvds/sky130_fd_sc_hs__inv_16.ext
@@ -0,0 +1,62 @@
+timestamp 1649384327
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+port "VGND" 2 0 0 1632 49 m1
+port "Y" 6 117 384 1515 430 m1
+port "VPWR" 5 0 617 1632 666 m1
+port "A" 1 217 310 1414 356 m1
+port "VPB" 4 0 617 1632 666 nw
+port "VNB" 3 0 0 1632 49 pw
+node "inv_16" 0 0 0 0 comment 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "VGND" 5720 1120.43 0 0 m1 0 0 0 0 0 0 0 0 90872 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163332 7094 159936 3460 0 0 0 0 0 0 0 0 0 0
+node "Y" 14674 69.3227 117 384 m1 0 0 0 0 0 0 0 0 66304 3264 108864 4556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 256879 9510 64308 2888 0 0 0 0 0 0 0 0 0 0
+node "VPWR" 10614 347.084 0 617 m1 0 0 0 0 0 0 0 0 0 0 137088 5256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 190242 8126 159936 3460 0 0 0 0 0 0 0 0 0 0
+node "A" 13291 1294.89 217 310 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 340308 19192 0 0 35700 2026 55062 2486 0 0 0 0 0 0 0 0 0 0
+node "VPB" 4362 1906.13 0 617 nw 0 0 0 0 635376 4160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VNB" 0 0 0 0 pw 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "VPWR" "Y" 3270.68
+cap "A" "VGND" 496.928
+cap "VPB" "Y" 55.9054
+cap "A" "VPWR" 392.844
+cap "VPB" "A" 884.467
+cap "VPWR" "VGND" 49.7771
+cap "A" "Y" 3211.85
+cap "VPB" "VPWR" 828.083
+cap "Y" "VGND" 2241.3
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1504 74 1505 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1418 74 1419 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1300 74 1301 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1214 74 1215 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1100 74 1101 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1014 74 1015 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 914 74 915 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 828 74 829 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 742 74 743 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 656 74 657 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 556 74 557 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 470 74 471 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 370 74 371 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 284 74 285 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 184 74 185 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 98 74 99 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__pfet_01v8 1516 368 1517 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 1426 368 1427 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 1316 368 1317 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 1226 368 1227 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 1116 368 1117 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 1020 368 1021 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 926 368 927 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 836 368 837 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 746 368 747 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 656 368 657 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 556 368 557 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 466 368 467 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 366 368 367 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 276 368 277 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 176 368 177 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 86 368 87 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
diff --git a/mag/lvds/sky130_fd_sc_hs__inv_16.mag b/mag/lvds/sky130_fd_sc_hs__inv_16.mag
new file mode 100644
index 0000000..adebedd
--- /dev/null
+++ b/mag/lvds/sky130_fd_sc_hs__inv_16.mag
@@ -0,0 +1,1016 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1649384327
+<< nwell >>
+rect -38 332 1670 704
+<< pwell >>
+rect 19 49 1613 248
+rect 0 0 1632 49
+<< scpmos >>
+rect 86 368 116 592
+rect 176 368 206 592
+rect 276 368 306 592
+rect 366 368 396 592
+rect 466 368 496 592
+rect 556 368 586 592
+rect 656 368 686 592
+rect 746 368 776 592
+rect 836 368 866 592
+rect 926 368 956 592
+rect 1020 368 1050 592
+rect 1116 368 1146 592
+rect 1226 368 1256 592
+rect 1316 368 1346 592
+rect 1426 368 1456 592
+rect 1516 368 1546 592
+<< nmoslvt >>
+rect 98 74 128 222
+rect 184 74 214 222
+rect 284 74 314 222
+rect 370 74 400 222
+rect 470 74 500 222
+rect 556 74 586 222
+rect 656 74 686 222
+rect 742 74 772 222
+rect 828 74 858 222
+rect 914 74 944 222
+rect 1014 74 1044 222
+rect 1100 74 1130 222
+rect 1214 74 1244 222
+rect 1300 74 1330 222
+rect 1418 74 1448 222
+rect 1504 74 1534 222
+<< ndiff >>
+rect 45 210 98 222
+rect 45 176 53 210
+rect 87 176 98 210
+rect 45 120 98 176
+rect 45 86 53 120
+rect 87 86 98 120
+rect 45 74 98 86
+rect 128 210 184 222
+rect 128 176 139 210
+rect 173 176 184 210
+rect 128 120 184 176
+rect 128 86 139 120
+rect 173 86 184 120
+rect 128 74 184 86
+rect 214 210 284 222
+rect 214 176 239 210
+rect 273 176 284 210
+rect 214 120 284 176
+rect 214 86 239 120
+rect 273 86 284 120
+rect 214 74 284 86
+rect 314 210 370 222
+rect 314 176 325 210
+rect 359 176 370 210
+rect 314 120 370 176
+rect 314 86 325 120
+rect 359 86 370 120
+rect 314 74 370 86
+rect 400 210 470 222
+rect 400 176 411 210
+rect 445 176 470 210
+rect 400 120 470 176
+rect 400 86 411 120
+rect 445 86 470 120
+rect 400 74 470 86
+rect 500 210 556 222
+rect 500 176 511 210
+rect 545 176 556 210
+rect 500 120 556 176
+rect 500 86 511 120
+rect 545 86 556 120
+rect 500 74 556 86
+rect 586 210 656 222
+rect 586 176 607 210
+rect 641 176 656 210
+rect 586 120 656 176
+rect 586 86 607 120
+rect 641 86 656 120
+rect 586 74 656 86
+rect 686 210 742 222
+rect 686 176 697 210
+rect 731 176 742 210
+rect 686 120 742 176
+rect 686 86 697 120
+rect 731 86 742 120
+rect 686 74 742 86
+rect 772 210 828 222
+rect 772 176 783 210
+rect 817 176 828 210
+rect 772 120 828 176
+rect 772 86 783 120
+rect 817 86 828 120
+rect 772 74 828 86
+rect 858 210 914 222
+rect 858 176 869 210
+rect 903 176 914 210
+rect 858 120 914 176
+rect 858 86 869 120
+rect 903 86 914 120
+rect 858 74 914 86
+rect 944 210 1014 222
+rect 944 176 962 210
+rect 996 176 1014 210
+rect 944 123 1014 176
+rect 944 89 962 123
+rect 996 89 1014 123
+rect 944 74 1014 89
+rect 1044 210 1100 222
+rect 1044 176 1055 210
+rect 1089 176 1100 210
+rect 1044 120 1100 176
+rect 1044 86 1055 120
+rect 1089 86 1100 120
+rect 1044 74 1100 86
+rect 1130 210 1214 222
+rect 1130 176 1155 210
+rect 1189 176 1214 210
+rect 1130 123 1214 176
+rect 1130 89 1155 123
+rect 1189 89 1214 123
+rect 1130 74 1214 89
+rect 1244 210 1300 222
+rect 1244 176 1255 210
+rect 1289 176 1300 210
+rect 1244 120 1300 176
+rect 1244 86 1255 120
+rect 1289 86 1300 120
+rect 1244 74 1300 86
+rect 1330 210 1418 222
+rect 1330 176 1357 210
+rect 1391 176 1418 210
+rect 1330 123 1418 176
+rect 1330 89 1357 123
+rect 1391 89 1418 123
+rect 1330 74 1418 89
+rect 1448 210 1504 222
+rect 1448 176 1459 210
+rect 1493 176 1504 210
+rect 1448 120 1504 176
+rect 1448 86 1459 120
+rect 1493 86 1504 120
+rect 1448 74 1504 86
+rect 1534 210 1587 222
+rect 1534 176 1545 210
+rect 1579 176 1587 210
+rect 1534 120 1587 176
+rect 1534 86 1545 120
+rect 1579 86 1587 120
+rect 1534 74 1587 86
+<< pdiff >>
+rect 27 580 86 592
+rect 27 546 39 580
+rect 73 546 86 580
+rect 27 497 86 546
+rect 27 463 39 497
+rect 73 463 86 497
+rect 27 414 86 463
+rect 27 380 39 414
+rect 73 380 86 414
+rect 27 368 86 380
+rect 116 580 176 592
+rect 116 546 129 580
+rect 163 546 176 580
+rect 116 497 176 546
+rect 116 463 129 497
+rect 163 463 176 497
+rect 116 414 176 463
+rect 116 380 129 414
+rect 163 380 176 414
+rect 116 368 176 380
+rect 206 580 276 592
+rect 206 546 219 580
+rect 253 546 276 580
+rect 206 506 276 546
+rect 206 472 219 506
+rect 253 472 276 506
+rect 206 438 276 472
+rect 206 404 219 438
+rect 253 404 276 438
+rect 206 368 276 404
+rect 306 580 366 592
+rect 306 546 319 580
+rect 353 546 366 580
+rect 306 501 366 546
+rect 306 467 319 501
+rect 353 467 366 501
+rect 306 422 366 467
+rect 306 388 319 422
+rect 353 388 366 422
+rect 306 368 366 388
+rect 396 580 466 592
+rect 396 546 409 580
+rect 443 546 466 580
+rect 396 506 466 546
+rect 396 472 409 506
+rect 443 472 466 506
+rect 396 438 466 472
+rect 396 404 409 438
+rect 443 404 466 438
+rect 396 368 466 404
+rect 496 580 556 592
+rect 496 546 509 580
+rect 543 546 556 580
+rect 496 497 556 546
+rect 496 463 509 497
+rect 543 463 556 497
+rect 496 414 556 463
+rect 496 380 509 414
+rect 543 380 556 414
+rect 496 368 556 380
+rect 586 580 656 592
+rect 586 546 599 580
+rect 633 546 656 580
+rect 586 506 656 546
+rect 586 472 599 506
+rect 633 472 656 506
+rect 586 438 656 472
+rect 586 404 599 438
+rect 633 404 656 438
+rect 586 368 656 404
+rect 686 580 746 592
+rect 686 546 699 580
+rect 733 546 746 580
+rect 686 497 746 546
+rect 686 463 699 497
+rect 733 463 746 497
+rect 686 414 746 463
+rect 686 380 699 414
+rect 733 380 746 414
+rect 686 368 746 380
+rect 776 580 836 592
+rect 776 546 789 580
+rect 823 546 836 580
+rect 776 506 836 546
+rect 776 472 789 506
+rect 823 472 836 506
+rect 776 438 836 472
+rect 776 404 789 438
+rect 823 404 836 438
+rect 776 368 836 404
+rect 866 580 926 592
+rect 866 546 879 580
+rect 913 546 926 580
+rect 866 497 926 546
+rect 866 463 879 497
+rect 913 463 926 497
+rect 866 414 926 463
+rect 866 380 879 414
+rect 913 380 926 414
+rect 866 368 926 380
+rect 956 580 1020 592
+rect 956 546 969 580
+rect 1003 546 1020 580
+rect 956 506 1020 546
+rect 956 472 969 506
+rect 1003 472 1020 506
+rect 956 438 1020 472
+rect 956 404 969 438
+rect 1003 404 1020 438
+rect 956 368 1020 404
+rect 1050 580 1116 592
+rect 1050 546 1069 580
+rect 1103 546 1116 580
+rect 1050 497 1116 546
+rect 1050 463 1069 497
+rect 1103 463 1116 497
+rect 1050 414 1116 463
+rect 1050 380 1069 414
+rect 1103 380 1116 414
+rect 1050 368 1116 380
+rect 1146 580 1226 592
+rect 1146 546 1169 580
+rect 1203 546 1226 580
+rect 1146 506 1226 546
+rect 1146 472 1169 506
+rect 1203 472 1226 506
+rect 1146 438 1226 472
+rect 1146 404 1169 438
+rect 1203 404 1226 438
+rect 1146 368 1226 404
+rect 1256 580 1316 592
+rect 1256 546 1269 580
+rect 1303 546 1316 580
+rect 1256 497 1316 546
+rect 1256 463 1269 497
+rect 1303 463 1316 497
+rect 1256 414 1316 463
+rect 1256 380 1269 414
+rect 1303 380 1316 414
+rect 1256 368 1316 380
+rect 1346 580 1426 592
+rect 1346 546 1369 580
+rect 1403 546 1426 580
+rect 1346 506 1426 546
+rect 1346 472 1369 506
+rect 1403 472 1426 506
+rect 1346 438 1426 472
+rect 1346 404 1369 438
+rect 1403 404 1426 438
+rect 1346 368 1426 404
+rect 1456 580 1516 592
+rect 1456 546 1469 580
+rect 1503 546 1516 580
+rect 1456 497 1516 546
+rect 1456 463 1469 497
+rect 1503 463 1516 497
+rect 1456 414 1516 463
+rect 1456 380 1469 414
+rect 1503 380 1516 414
+rect 1456 368 1516 380
+rect 1546 580 1605 592
+rect 1546 546 1559 580
+rect 1593 546 1605 580
+rect 1546 497 1605 546
+rect 1546 463 1559 497
+rect 1593 463 1605 497
+rect 1546 414 1605 463
+rect 1546 380 1559 414
+rect 1593 380 1605 414
+rect 1546 368 1605 380
+<< ndiffc >>
+rect 53 176 87 210
+rect 53 86 87 120
+rect 139 176 173 210
+rect 139 86 173 120
+rect 239 176 273 210
+rect 239 86 273 120
+rect 325 176 359 210
+rect 325 86 359 120
+rect 411 176 445 210
+rect 411 86 445 120
+rect 511 176 545 210
+rect 511 86 545 120
+rect 607 176 641 210
+rect 607 86 641 120
+rect 697 176 731 210
+rect 697 86 731 120
+rect 783 176 817 210
+rect 783 86 817 120
+rect 869 176 903 210
+rect 869 86 903 120
+rect 962 176 996 210
+rect 962 89 996 123
+rect 1055 176 1089 210
+rect 1055 86 1089 120
+rect 1155 176 1189 210
+rect 1155 89 1189 123
+rect 1255 176 1289 210
+rect 1255 86 1289 120
+rect 1357 176 1391 210
+rect 1357 89 1391 123
+rect 1459 176 1493 210
+rect 1459 86 1493 120
+rect 1545 176 1579 210
+rect 1545 86 1579 120
+<< pdiffc >>
+rect 39 546 73 580
+rect 39 463 73 497
+rect 39 380 73 414
+rect 129 546 163 580
+rect 129 463 163 497
+rect 129 380 163 414
+rect 219 546 253 580
+rect 219 472 253 506
+rect 219 404 253 438
+rect 319 546 353 580
+rect 319 467 353 501
+rect 319 388 353 422
+rect 409 546 443 580
+rect 409 472 443 506
+rect 409 404 443 438
+rect 509 546 543 580
+rect 509 463 543 497
+rect 509 380 543 414
+rect 599 546 633 580
+rect 599 472 633 506
+rect 599 404 633 438
+rect 699 546 733 580
+rect 699 463 733 497
+rect 699 380 733 414
+rect 789 546 823 580
+rect 789 472 823 506
+rect 789 404 823 438
+rect 879 546 913 580
+rect 879 463 913 497
+rect 879 380 913 414
+rect 969 546 1003 580
+rect 969 472 1003 506
+rect 969 404 1003 438
+rect 1069 546 1103 580
+rect 1069 463 1103 497
+rect 1069 380 1103 414
+rect 1169 546 1203 580
+rect 1169 472 1203 506
+rect 1169 404 1203 438
+rect 1269 546 1303 580
+rect 1269 463 1303 497
+rect 1269 380 1303 414
+rect 1369 546 1403 580
+rect 1369 472 1403 506
+rect 1369 404 1403 438
+rect 1469 546 1503 580
+rect 1469 463 1503 497
+rect 1469 380 1503 414
+rect 1559 546 1593 580
+rect 1559 463 1593 497
+rect 1559 380 1593 414
+<< poly >>
+rect 86 592 116 618
+rect 176 592 206 618
+rect 276 592 306 618
+rect 366 592 396 618
+rect 466 592 496 618
+rect 556 592 586 618
+rect 656 592 686 618
+rect 746 592 776 618
+rect 836 592 866 618
+rect 926 592 956 618
+rect 1020 592 1050 618
+rect 1116 592 1146 618
+rect 1226 592 1256 618
+rect 1316 592 1346 618
+rect 1426 592 1456 618
+rect 1516 592 1546 618
+rect 86 353 116 368
+rect 176 353 206 368
+rect 276 353 306 368
+rect 366 353 396 368
+rect 466 353 496 368
+rect 556 353 586 368
+rect 656 353 686 368
+rect 746 353 776 368
+rect 836 353 866 368
+rect 926 353 956 368
+rect 1020 353 1050 368
+rect 1116 353 1146 368
+rect 1226 353 1256 368
+rect 1316 353 1346 368
+rect 1426 353 1456 368
+rect 1516 353 1546 368
+rect 83 336 119 353
+rect 173 336 209 353
+rect 273 336 309 353
+rect 363 336 399 353
+rect 463 336 499 353
+rect 553 336 589 353
+rect 653 336 689 353
+rect 743 336 779 353
+rect 833 336 869 353
+rect 923 336 959 353
+rect 1017 336 1053 353
+rect 1113 336 1149 353
+rect 1223 336 1259 353
+rect 1313 336 1349 353
+rect 1423 336 1459 353
+rect 1513 336 1549 353
+rect 83 320 1549 336
+rect 83 286 229 320
+rect 263 286 417 320
+rect 451 286 605 320
+rect 639 286 788 320
+rect 822 286 970 320
+rect 1004 286 1169 320
+rect 1203 286 1368 320
+rect 1402 286 1549 320
+rect 83 270 1549 286
+rect 98 222 128 270
+rect 184 222 214 270
+rect 284 222 314 270
+rect 370 222 400 270
+rect 470 222 500 270
+rect 556 222 586 270
+rect 656 222 686 270
+rect 742 222 772 270
+rect 828 222 858 270
+rect 914 222 944 270
+rect 1014 222 1044 270
+rect 1100 222 1130 270
+rect 1214 222 1244 270
+rect 1300 222 1330 270
+rect 1418 222 1448 270
+rect 1504 222 1534 270
+rect 98 48 128 74
+rect 184 48 214 74
+rect 284 48 314 74
+rect 370 48 400 74
+rect 470 48 500 74
+rect 556 48 586 74
+rect 656 48 686 74
+rect 742 48 772 74
+rect 828 48 858 74
+rect 914 48 944 74
+rect 1014 48 1044 74
+rect 1100 48 1130 74
+rect 1214 48 1244 74
+rect 1300 48 1330 74
+rect 1418 48 1448 74
+rect 1504 48 1534 74
+<< polycont >>
+rect 229 286 263 320
+rect 417 286 451 320
+rect 605 286 639 320
+rect 788 286 822 320
+rect 970 286 1004 320
+rect 1169 286 1203 320
+rect 1368 286 1402 320
+<< locali >>
+rect 0 649 31 683
+rect 65 649 127 683
+rect 161 649 223 683
+rect 257 649 319 683
+rect 353 649 415 683
+rect 449 649 511 683
+rect 545 649 607 683
+rect 641 649 703 683
+rect 737 649 799 683
+rect 833 649 895 683
+rect 929 649 991 683
+rect 1025 649 1087 683
+rect 1121 649 1183 683
+rect 1217 649 1279 683
+rect 1313 649 1375 683
+rect 1409 649 1471 683
+rect 1505 649 1567 683
+rect 1601 649 1632 683
+rect 23 580 73 649
+rect 23 546 39 580
+rect 23 497 73 546
+rect 23 463 39 497
+rect 23 414 73 463
+rect 23 380 39 414
+rect 23 364 73 380
+rect 113 580 177 599
+rect 113 546 129 580
+rect 163 546 177 580
+rect 113 497 177 546
+rect 113 463 129 497
+rect 163 463 177 497
+rect 113 424 177 463
+rect 113 380 129 424
+rect 163 380 177 424
+rect 211 580 269 649
+rect 211 546 219 580
+rect 253 546 269 580
+rect 211 506 269 546
+rect 211 472 219 506
+rect 253 472 269 506
+rect 211 438 269 472
+rect 211 404 219 438
+rect 253 404 269 438
+rect 211 388 269 404
+rect 303 580 369 596
+rect 303 546 319 580
+rect 353 546 369 580
+rect 303 501 369 546
+rect 303 467 319 501
+rect 353 467 369 501
+rect 303 424 369 467
+rect 303 388 319 424
+rect 353 388 369 424
+rect 409 580 459 649
+rect 443 546 459 580
+rect 409 506 459 546
+rect 443 472 459 506
+rect 409 438 459 472
+rect 443 404 459 438
+rect 409 388 459 404
+rect 493 580 559 596
+rect 493 546 509 580
+rect 543 546 559 580
+rect 493 497 559 546
+rect 493 463 509 497
+rect 543 463 559 497
+rect 493 424 559 463
+rect 493 388 509 424
+rect 113 266 177 380
+rect 214 350 276 354
+rect 214 286 229 350
+rect 263 286 276 350
+rect 214 270 276 286
+rect 123 226 177 266
+rect 37 210 89 226
+rect 37 176 53 210
+rect 87 176 89 210
+rect 37 120 89 176
+rect 37 86 53 120
+rect 87 86 89 120
+rect 37 17 89 86
+rect 123 210 189 226
+rect 123 176 139 210
+rect 173 176 189 210
+rect 123 120 189 176
+rect 123 86 139 120
+rect 173 86 189 120
+rect 123 70 189 86
+rect 223 210 275 226
+rect 223 176 239 210
+rect 273 176 275 210
+rect 223 120 275 176
+rect 223 86 239 120
+rect 273 86 275 120
+rect 223 17 275 86
+rect 311 210 369 388
+rect 497 380 509 388
+rect 543 380 559 424
+rect 599 580 649 649
+rect 633 546 649 580
+rect 599 506 649 546
+rect 633 472 649 506
+rect 599 438 649 472
+rect 633 404 649 438
+rect 599 388 649 404
+rect 683 580 742 596
+rect 683 546 699 580
+rect 733 546 742 580
+rect 683 497 742 546
+rect 683 463 699 497
+rect 733 463 742 497
+rect 683 424 742 463
+rect 404 350 462 354
+rect 404 286 417 350
+rect 451 286 462 350
+rect 404 270 462 286
+rect 311 176 325 210
+rect 359 176 369 210
+rect 311 120 369 176
+rect 311 86 325 120
+rect 359 86 369 120
+rect 311 70 369 86
+rect 405 210 461 226
+rect 405 176 411 210
+rect 445 176 461 210
+rect 405 120 461 176
+rect 405 86 411 120
+rect 445 86 461 120
+rect 405 17 461 86
+rect 497 210 559 380
+rect 683 380 699 424
+rect 733 380 742 424
+rect 783 580 830 649
+rect 783 546 789 580
+rect 823 546 830 580
+rect 783 506 830 546
+rect 783 472 789 506
+rect 823 472 830 506
+rect 783 438 830 472
+rect 783 404 789 438
+rect 823 404 830 438
+rect 783 388 830 404
+rect 868 580 926 596
+rect 868 546 879 580
+rect 913 546 926 580
+rect 868 497 926 546
+rect 868 463 879 497
+rect 913 463 926 497
+rect 868 424 926 463
+rect 594 350 649 354
+rect 594 286 605 350
+rect 639 286 649 350
+rect 594 270 649 286
+rect 497 176 511 210
+rect 545 176 559 210
+rect 497 120 559 176
+rect 497 86 511 120
+rect 545 86 559 120
+rect 497 70 559 86
+rect 595 210 649 226
+rect 595 176 607 210
+rect 641 176 649 210
+rect 595 120 649 176
+rect 595 86 607 120
+rect 641 86 649 120
+rect 595 17 649 86
+rect 683 210 742 380
+rect 868 380 879 424
+rect 913 388 926 424
+rect 962 580 1019 649
+rect 962 546 969 580
+rect 1003 546 1019 580
+rect 962 506 1019 546
+rect 962 472 969 506
+rect 1003 472 1019 506
+rect 962 438 1019 472
+rect 962 404 969 438
+rect 1003 404 1019 438
+rect 962 388 1019 404
+rect 1053 580 1116 596
+rect 1053 546 1069 580
+rect 1103 546 1116 580
+rect 1053 497 1116 546
+rect 1053 463 1069 497
+rect 1103 463 1116 497
+rect 1053 424 1116 463
+rect 913 380 919 388
+rect 777 350 833 354
+rect 777 286 788 350
+rect 822 286 833 350
+rect 777 270 833 286
+rect 683 176 697 210
+rect 731 176 742 210
+rect 683 120 742 176
+rect 683 86 697 120
+rect 731 86 742 120
+rect 683 70 742 86
+rect 778 210 830 226
+rect 778 176 783 210
+rect 817 176 830 210
+rect 778 120 830 176
+rect 778 86 783 120
+rect 817 86 830 120
+rect 778 17 830 86
+rect 868 210 919 380
+rect 1053 380 1069 424
+rect 1103 380 1116 424
+rect 1153 580 1219 649
+rect 1153 546 1169 580
+rect 1203 546 1219 580
+rect 1153 506 1219 546
+rect 1153 472 1169 506
+rect 1203 472 1219 506
+rect 1153 438 1219 472
+rect 1153 404 1169 438
+rect 1203 404 1219 438
+rect 1153 388 1219 404
+rect 1253 580 1319 596
+rect 1253 546 1269 580
+rect 1303 546 1319 580
+rect 1253 497 1319 546
+rect 1253 463 1269 497
+rect 1303 463 1319 497
+rect 1253 424 1319 463
+rect 954 350 1017 354
+rect 954 286 970 350
+rect 1004 286 1017 350
+rect 954 270 1017 286
+rect 1053 257 1116 380
+rect 1253 380 1269 424
+rect 1303 380 1319 424
+rect 1353 580 1419 649
+rect 1353 546 1369 580
+rect 1403 546 1419 580
+rect 1353 506 1419 546
+rect 1353 472 1369 506
+rect 1403 472 1419 506
+rect 1353 438 1419 472
+rect 1353 404 1369 438
+rect 1403 404 1419 438
+rect 1353 388 1419 404
+rect 1453 580 1509 596
+rect 1453 546 1469 580
+rect 1503 546 1509 580
+rect 1453 497 1509 546
+rect 1453 463 1469 497
+rect 1503 463 1509 497
+rect 1453 424 1509 463
+rect 1151 350 1218 354
+rect 1151 286 1169 350
+rect 1203 286 1218 350
+rect 1151 270 1218 286
+rect 1253 257 1319 380
+rect 1453 380 1469 424
+rect 1503 380 1509 424
+rect 1354 350 1418 354
+rect 1354 286 1368 350
+rect 1402 286 1418 350
+rect 1354 270 1418 286
+rect 1053 236 1105 257
+rect 1253 236 1305 257
+rect 868 176 869 210
+rect 903 176 919 210
+rect 868 120 919 176
+rect 868 86 869 120
+rect 903 86 919 120
+rect 868 70 919 86
+rect 953 210 1005 226
+rect 953 176 962 210
+rect 996 176 1005 210
+rect 953 123 1005 176
+rect 953 89 962 123
+rect 996 89 1005 123
+rect 953 17 1005 89
+rect 1043 210 1105 236
+rect 1043 176 1055 210
+rect 1089 176 1105 210
+rect 1043 120 1105 176
+rect 1043 86 1055 120
+rect 1089 86 1105 120
+rect 1043 70 1105 86
+rect 1141 210 1205 226
+rect 1141 176 1155 210
+rect 1189 176 1205 210
+rect 1141 123 1205 176
+rect 1141 89 1155 123
+rect 1189 89 1205 123
+rect 1141 17 1205 89
+rect 1239 210 1305 236
+rect 1453 226 1509 380
+rect 1547 580 1609 649
+rect 1547 546 1559 580
+rect 1593 546 1609 580
+rect 1547 497 1609 546
+rect 1547 463 1559 497
+rect 1593 463 1609 497
+rect 1547 414 1609 463
+rect 1547 380 1559 414
+rect 1593 380 1609 414
+rect 1547 364 1609 380
+rect 1239 176 1255 210
+rect 1289 176 1305 210
+rect 1239 120 1305 176
+rect 1239 86 1255 120
+rect 1289 86 1305 120
+rect 1239 70 1305 86
+rect 1341 210 1409 226
+rect 1341 176 1357 210
+rect 1391 176 1409 210
+rect 1341 123 1409 176
+rect 1341 89 1357 123
+rect 1391 89 1409 123
+rect 1341 17 1409 89
+rect 1443 210 1509 226
+rect 1443 176 1459 210
+rect 1493 176 1509 210
+rect 1443 120 1509 176
+rect 1443 86 1459 120
+rect 1493 86 1509 120
+rect 1443 70 1509 86
+rect 1543 210 1609 226
+rect 1543 176 1545 210
+rect 1579 176 1609 210
+rect 1543 120 1609 176
+rect 1543 86 1545 120
+rect 1579 86 1609 120
+rect 1543 17 1609 86
+rect 0 -17 31 17
+rect 65 -17 127 17
+rect 161 -17 223 17
+rect 257 -17 319 17
+rect 353 -17 415 17
+rect 449 -17 511 17
+rect 545 -17 607 17
+rect 641 -17 703 17
+rect 737 -17 799 17
+rect 833 -17 895 17
+rect 929 -17 991 17
+rect 1025 -17 1087 17
+rect 1121 -17 1183 17
+rect 1217 -17 1279 17
+rect 1313 -17 1375 17
+rect 1409 -17 1471 17
+rect 1505 -17 1567 17
+rect 1601 -17 1632 17
+<< viali >>
+rect 31 649 65 683
+rect 127 649 161 683
+rect 223 649 257 683
+rect 319 649 353 683
+rect 415 649 449 683
+rect 511 649 545 683
+rect 607 649 641 683
+rect 703 649 737 683
+rect 799 649 833 683
+rect 895 649 929 683
+rect 991 649 1025 683
+rect 1087 649 1121 683
+rect 1183 649 1217 683
+rect 1279 649 1313 683
+rect 1375 649 1409 683
+rect 1471 649 1505 683
+rect 1567 649 1601 683
+rect 129 414 163 424
+rect 129 390 163 414
+rect 319 422 353 424
+rect 319 390 353 422
+rect 509 414 543 424
+rect 509 390 543 414
+rect 229 320 263 350
+rect 229 316 263 320
+rect 417 320 451 350
+rect 417 316 451 320
+rect 699 414 733 424
+rect 699 390 733 414
+rect 605 320 639 350
+rect 605 316 639 320
+rect 879 414 913 424
+rect 879 390 913 414
+rect 788 320 822 350
+rect 788 316 822 320
+rect 1069 414 1103 424
+rect 1069 390 1103 414
+rect 970 320 1004 350
+rect 970 316 1004 320
+rect 1269 414 1303 424
+rect 1269 390 1303 414
+rect 1169 320 1203 350
+rect 1169 316 1203 320
+rect 1469 414 1503 424
+rect 1469 390 1503 414
+rect 1368 320 1402 350
+rect 1368 316 1402 320
+rect 31 -17 65 17
+rect 127 -17 161 17
+rect 223 -17 257 17
+rect 319 -17 353 17
+rect 415 -17 449 17
+rect 511 -17 545 17
+rect 607 -17 641 17
+rect 703 -17 737 17
+rect 799 -17 833 17
+rect 895 -17 929 17
+rect 991 -17 1025 17
+rect 1087 -17 1121 17
+rect 1183 -17 1217 17
+rect 1279 -17 1313 17
+rect 1375 -17 1409 17
+rect 1471 -17 1505 17
+rect 1567 -17 1601 17
+<< metal1 >>
+rect 0 683 1632 715
+rect 0 649 31 683
+rect 65 649 127 683
+rect 161 649 223 683
+rect 257 649 319 683
+rect 353 649 415 683
+rect 449 649 511 683
+rect 545 649 607 683
+rect 641 649 703 683
+rect 737 649 799 683
+rect 833 649 895 683
+rect 929 649 991 683
+rect 1025 649 1087 683
+rect 1121 649 1183 683
+rect 1217 649 1279 683
+rect 1313 649 1375 683
+rect 1409 649 1471 683
+rect 1505 649 1567 683
+rect 1601 649 1632 683
+rect 0 617 1632 649
+rect 117 424 1515 430
+rect 117 390 129 424
+rect 163 390 319 424
+rect 353 390 509 424
+rect 543 390 699 424
+rect 733 390 879 424
+rect 913 390 1069 424
+rect 1103 390 1269 424
+rect 1303 390 1469 424
+rect 1503 390 1515 424
+rect 117 384 1515 390
+rect 217 350 1414 356
+rect 217 316 229 350
+rect 263 316 417 350
+rect 451 316 605 350
+rect 639 316 788 350
+rect 822 316 970 350
+rect 1004 316 1169 350
+rect 1203 316 1368 350
+rect 1402 316 1414 350
+rect 217 310 1414 316
+rect 0 17 1632 49
+rect 0 -17 31 17
+rect 65 -17 127 17
+rect 161 -17 223 17
+rect 257 -17 319 17
+rect 353 -17 415 17
+rect 449 -17 511 17
+rect 545 -17 607 17
+rect 641 -17 703 17
+rect 737 -17 799 17
+rect 833 -17 895 17
+rect 929 -17 991 17
+rect 1025 -17 1087 17
+rect 1121 -17 1183 17
+rect 1217 -17 1279 17
+rect 1313 -17 1375 17
+rect 1409 -17 1471 17
+rect 1505 -17 1567 17
+rect 1601 -17 1632 17
+rect 0 -49 1632 -17
+<< labels >>
+rlabel comment s 0 0 0 0 4 inv_16
+flabel pwell s 0 0 1632 49 0 FreeSans 200 0 0 0 VNB
+port 3 nsew ground bidirectional
+flabel nwell s 0 617 1632 666 0 FreeSans 200 0 0 0 VPB
+port 4 nsew power bidirectional
+flabel metal1 s 0 617 1632 666 0 FreeSans 340 0 0 0 VPWR
+port 5 nsew power bidirectional
+flabel metal1 s 0 0 1632 49 0 FreeSans 340 0 0 0 VGND
+port 2 nsew ground bidirectional
+flabel metal1 s 117 384 1515 430 0 FreeSans 400 0 0 0 Y
+port 6 nsew signal output
+flabel metal1 s 217 310 1414 356 0 FreeSans 400 0 0 0 A
+port 1 nsew signal input
+<< properties >>
+string FIXED_BBOX 0 0 1632 666
+string GDS_END 1868908
+string GDS_FILE $PDKPATH/libs.ref/sky130_fd_sc_hs/gds/sky130_fd_sc_hs.gds
+string GDS_START 1854788
+string LEFclass CORE
+string LEFsite unit
+string LEFsymmetry X Y
+<< end >>
diff --git a/mag/lvds/sky130_fd_sc_hs__inv_4.ext b/mag/lvds/sky130_fd_sc_hs__inv_4.ext
new file mode 100644
index 0000000..a15cbae
--- /dev/null
+++ b/mag/lvds/sky130_fd_sc_hs__inv_4.ext
@@ -0,0 +1,41 @@
+timestamp 1649384327
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+port "VGND" 2 0 0 480 49 m1
+port "Y" 6 415 242 449 276 li
+port "VPWR" 5 0 617 480 666 m1
+port "A" 1 319 316 353 350 li
+port "A" 1 223 316 257 350 li
+port "A" 1 127 316 161 350 li
+port "A" 1 31 316 65 350 li
+port "VPB" 4 0 617 480 666 nw
+port "VNB" 3 0 0 480 49 pw
+node "inv_4" 0 0 0 0 comment 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "VGND" 1723 401.169 0 0 m1 0 0 0 0 0 0 0 0 27528 1260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50046 2050 47040 1156 0 0 0 0 0 0 0 0 0 0
+node "Y" 3262 52.4733 415 242 li 0 0 0 0 0 0 0 0 17760 832 26880 1136 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 63554 2902 0 0 0 0 0 0 0 0 0 0 0 0
+node "VPWR" 3515 105.234 0 617 m1 0 0 0 0 0 0 0 0 0 0 39872 1700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45314 2310 47040 1156 0 0 0 0 0 0 0 0 0 0
+node "A" 3343 337.445 31 316 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81084 4776 0 0 28810 842 0 0 0 0 0 0 0 0 0 0 0 0
+node "VPB" 1420 620.496 0 617 nw 0 0 0 0 206832 1856 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VNB" 0 0 0 0 pw 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "VPWR" "Y" 610.997
+cap "A" "VGND" 86.4776
+cap "VPB" "Y" 32.0157
+cap "A" "VPWR" 71.8301
+cap "VPB" "A" 209.136
+cap "VPWR" "VGND" 33.2502
+cap "A" "Y" 513.852
+cap "VPB" "VPWR" 327.401
+cap "Y" "VGND" 523.278
+device msubckt sky130_fd_pr__nfet_01v8_lvt 366 74 367 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 280 74 281 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 184 74 185 75 l=30 w=148 "VNB" "A" 60 0 "Y" 148 0 "VGND" 148 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 90 74 91 75 l=30 w=148 "VNB" "A" 60 0 "VGND" 148 0 "Y" 148 0
+device msubckt sky130_fd_pr__pfet_01v8 363 368 364 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 273 368 274 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 183 368 184 369 l=30 w=224 "VPB" "A" 60 0 "Y" 224 0 "VPWR" 224 0
+device msubckt sky130_fd_pr__pfet_01v8 93 368 94 369 l=30 w=224 "VPB" "A" 60 0 "VPWR" 224 0 "Y" 224 0
diff --git a/mag/lvds/sky130_fd_sc_hs__inv_4.mag b/mag/lvds/sky130_fd_sc_hs__inv_4.mag
new file mode 100644
index 0000000..08a230e
--- /dev/null
+++ b/mag/lvds/sky130_fd_sc_hs__inv_4.mag
@@ -0,0 +1,288 @@
+magic
+tech sky130B
+magscale 1 2
+timestamp 1649384327
+<< nwell >>
+rect -38 332 518 704
+<< pwell >>
+rect 1 49 479 248
+rect 0 0 480 49
+<< scpmos >>
+rect 93 368 123 592
+rect 183 368 213 592
+rect 273 368 303 592
+rect 363 368 393 592
+<< nmoslvt >>
+rect 90 74 120 222
+rect 184 74 214 222
+rect 280 74 310 222
+rect 366 74 396 222
+<< ndiff >>
+rect 27 210 90 222
+rect 27 176 39 210
+rect 73 176 90 210
+rect 27 120 90 176
+rect 27 86 39 120
+rect 73 86 90 120
+rect 27 74 90 86
+rect 120 210 184 222
+rect 120 176 139 210
+rect 173 176 184 210
+rect 120 120 184 176
+rect 120 86 139 120
+rect 173 86 184 120
+rect 120 74 184 86
+rect 214 136 280 222
+rect 214 102 225 136
+rect 259 102 280 136
+rect 214 74 280 102
+rect 310 210 366 222
+rect 310 176 321 210
+rect 355 176 366 210
+rect 310 120 366 176
+rect 310 86 321 120
+rect 355 86 366 120
+rect 310 74 366 86
+rect 396 136 453 222
+rect 396 102 407 136
+rect 441 102 453 136
+rect 396 74 453 102
+<< pdiff >>
+rect 34 580 93 592
+rect 34 546 46 580
+rect 80 546 93 580
+rect 34 510 93 546
+rect 34 476 46 510
+rect 80 476 93 510
+rect 34 440 93 476
+rect 34 406 46 440
+rect 80 406 93 440
+rect 34 368 93 406
+rect 123 580 183 592
+rect 123 546 136 580
+rect 170 546 183 580
+rect 123 510 183 546
+rect 123 476 136 510
+rect 170 476 183 510
+rect 123 440 183 476
+rect 123 406 136 440
+rect 170 406 183 440
+rect 123 368 183 406
+rect 213 580 273 592
+rect 213 546 226 580
+rect 260 546 273 580
+rect 213 508 273 546
+rect 213 474 226 508
+rect 260 474 273 508
+rect 213 368 273 474
+rect 303 580 363 592
+rect 303 546 316 580
+rect 350 546 363 580
+rect 303 510 363 546
+rect 303 476 316 510
+rect 350 476 363 510
+rect 303 440 363 476
+rect 303 406 316 440
+rect 350 406 363 440
+rect 303 368 363 406
+rect 393 580 452 592
+rect 393 546 406 580
+rect 440 546 452 580
+rect 393 508 452 546
+rect 393 474 406 508
+rect 440 474 452 508
+rect 393 368 452 474
+<< ndiffc >>
+rect 39 176 73 210
+rect 39 86 73 120
+rect 139 176 173 210
+rect 139 86 173 120
+rect 225 102 259 136
+rect 321 176 355 210
+rect 321 86 355 120
+rect 407 102 441 136
+<< pdiffc >>
+rect 46 546 80 580
+rect 46 476 80 510
+rect 46 406 80 440
+rect 136 546 170 580
+rect 136 476 170 510
+rect 136 406 170 440
+rect 226 546 260 580
+rect 226 474 260 508
+rect 316 546 350 580
+rect 316 476 350 510
+rect 316 406 350 440
+rect 406 546 440 580
+rect 406 474 440 508
+<< poly >>
+rect 93 592 123 618
+rect 183 592 213 618
+rect 273 592 303 618
+rect 363 592 393 618
+rect 93 353 123 368
+rect 183 353 213 368
+rect 273 353 303 368
+rect 363 353 393 368
+rect 90 336 126 353
+rect 180 336 216 353
+rect 270 336 306 353
+rect 360 336 396 353
+rect 90 320 396 336
+rect 90 286 106 320
+rect 140 286 174 320
+rect 208 286 242 320
+rect 276 286 310 320
+rect 344 286 396 320
+rect 90 270 396 286
+rect 90 222 120 270
+rect 184 222 214 270
+rect 280 222 310 270
+rect 366 222 396 270
+rect 90 48 120 74
+rect 184 48 214 74
+rect 280 48 310 74
+rect 366 48 396 74
+<< polycont >>
+rect 106 286 140 320
+rect 174 286 208 320
+rect 242 286 276 320
+rect 310 286 344 320
+<< locali >>
+rect 0 649 31 683
+rect 65 649 127 683
+rect 161 649 223 683
+rect 257 649 319 683
+rect 353 649 415 683
+rect 449 649 480 683
+rect 30 580 80 649
+rect 30 546 46 580
+rect 30 510 80 546
+rect 30 476 46 510
+rect 30 440 80 476
+rect 30 406 46 440
+rect 30 390 80 406
+rect 120 580 186 596
+rect 120 546 136 580
+rect 170 546 186 580
+rect 120 510 186 546
+rect 120 476 136 510
+rect 170 476 186 510
+rect 120 440 186 476
+rect 226 580 260 649
+rect 226 508 260 546
+rect 226 458 260 474
+rect 300 580 366 596
+rect 300 546 316 580
+rect 350 546 366 580
+rect 300 510 366 546
+rect 300 476 316 510
+rect 350 476 366 510
+rect 120 406 136 440
+rect 170 424 186 440
+rect 300 440 366 476
+rect 406 580 456 649
+rect 440 546 456 580
+rect 406 508 456 546
+rect 440 474 456 508
+rect 406 458 456 474
+rect 300 424 316 440
+rect 170 406 316 424
+rect 350 424 366 440
+rect 350 406 455 424
+rect 120 390 455 406
+rect 25 320 360 356
+rect 25 286 106 320
+rect 140 286 174 320
+rect 208 286 242 320
+rect 276 286 310 320
+rect 344 286 360 320
+rect 25 270 360 286
+rect 409 236 455 390
+rect 23 210 89 226
+rect 23 176 39 210
+rect 73 176 89 210
+rect 23 120 89 176
+rect 23 86 39 120
+rect 73 86 89 120
+rect 23 17 89 86
+rect 123 210 455 236
+rect 123 176 139 210
+rect 173 202 321 210
+rect 123 120 173 176
+rect 355 202 455 210
+rect 123 86 139 120
+rect 123 70 173 86
+rect 209 136 275 168
+rect 209 102 225 136
+rect 259 102 275 136
+rect 209 17 275 102
+rect 321 120 355 176
+rect 321 70 355 86
+rect 391 136 457 168
+rect 391 102 407 136
+rect 441 102 457 136
+rect 391 17 457 102
+rect 0 -17 31 17
+rect 65 -17 127 17
+rect 161 -17 223 17
+rect 257 -17 319 17
+rect 353 -17 415 17
+rect 449 -17 480 17
+<< viali >>
+rect 31 649 65 683
+rect 127 649 161 683
+rect 223 649 257 683
+rect 319 649 353 683
+rect 415 649 449 683
+rect 31 -17 65 17
+rect 127 -17 161 17
+rect 223 -17 257 17
+rect 319 -17 353 17
+rect 415 -17 449 17
+<< metal1 >>
+rect 0 683 480 715
+rect 0 649 31 683
+rect 65 649 127 683
+rect 161 649 223 683
+rect 257 649 319 683
+rect 353 649 415 683
+rect 449 649 480 683
+rect 0 617 480 649
+rect 0 17 480 49
+rect 0 -17 31 17
+rect 65 -17 127 17
+rect 161 -17 223 17
+rect 257 -17 319 17
+rect 353 -17 415 17
+rect 449 -17 480 17
+rect 0 -49 480 -17
+<< labels >>
+rlabel comment s 0 0 0 0 4 inv_4
+flabel pwell s 0 0 480 49 0 FreeSans 200 0 0 0 VNB
+port 3 nsew ground bidirectional
+flabel nwell s 0 617 480 666 0 FreeSans 200 0 0 0 VPB
+port 4 nsew power bidirectional
+flabel metal1 s 0 617 480 666 0 FreeSans 340 0 0 0 VPWR
+port 5 nsew power bidirectional
+flabel metal1 s 0 0 480 49 0 FreeSans 340 0 0 0 VGND
+port 2 nsew ground bidirectional
+flabel locali s 415 242 449 276 0 FreeSans 340 0 0 0 Y
+port 6 nsew signal output
+flabel locali s 31 316 65 350 0 FreeSans 340 0 0 0 A
+port 1 nsew signal input
+flabel locali s 127 316 161 350 0 FreeSans 340 0 0 0 A
+port 1 nsew signal input
+flabel locali s 223 316 257 350 0 FreeSans 340 0 0 0 A
+port 1 nsew signal input
+flabel locali s 319 316 353 350 0 FreeSans 340 0 0 0 A
+port 1 nsew signal input
+<< properties >>
+string FIXED_BBOX 0 0 480 666
+string GDS_END 1847106
+string GDS_FILE $PDKPATH/libs.ref/sky130_fd_sc_hs/gds/sky130_fd_sc_hs.gds
+string GDS_START 1841952
+string LEFclass CORE
+string LEFsite unit
+string LEFsymmetry X Y
+<< end >>
diff --git a/mag/lvds/transmitter.ext b/mag/lvds/transmitter.ext
new file mode 100644
index 0000000..a8e90c6
--- /dev/null
+++ b/mag/lvds/transmitter.ext
@@ -0,0 +1,5392 @@
+timestamp 1654695234
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use lvds_currm_n lvds_currm_n_12 1 0 3620 0 1 -2870
+use lvds_currm_n lvds_currm_n_13 1 0 1880 0 1 -2870
+use lvds_currm_n lvds_currm_n_14 1 0 5360 0 1 -2870
+use lvds_currm_n lvds_currm_n_22 1 0 3620 0 1 -6340
+use lvds_currm_n lvds_currm_n_23 1 0 1880 0 1 -6340
+use lvds_currm_n lvds_currm_n_24 1 0 5360 0 1 -6340
+use lvds_currm_n lvds_currm_n_15 1 0 7100 0 1 -2870
+use lvds_currm_n lvds_currm_n_16 1 0 8840 0 1 -2870
+use lvds_currm_n lvds_currm_n_17 1 0 10580 0 1 -2870
+use lvds_currm_n lvds_currm_n_18 1 0 12320 0 1 -2870
+use lvds_currm_n lvds_currm_n_25 1 0 7100 0 1 -6340
+use lvds_currm_n lvds_currm_n_26 1 0 8840 0 1 -6340
+use lvds_currm_n lvds_currm_n_27 1 0 10580 0 1 -6340
+use lvds_currm_n lvds_currm_n_28 1 0 12320 0 1 -6340
+use lvds_currm_n lvds_currm_n_19 1 0 14060 0 1 -2870
+use lvds_currm_n lvds_currm_n_20 1 0 15800 0 1 -2870
+use lvds_currm_n lvds_currm_n_21 1 0 17540 0 1 -2870
+use lvds_currm_n lvds_currm_n_29 1 0 14060 0 1 -6340
+use lvds_currm_n lvds_currm_n_30 1 0 15800 0 1 -6340
+use lvds_currm_n lvds_currm_n_31 1 0 17540 0 1 -6340
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_8 1 0 1268 0 1 5489
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_0 1 0 1248 0 1 3659
+use sky130_fd_sc_hs__inv_4 sky130_fd_sc_hs__inv_4_1 1 0 698 0 1 5489
+use sky130_fd_sc_hs__inv_4 sky130_fd_sc_hs__inv_4_0 1 0 688 0 1 3659
+use lvds_currm_n lvds_currm_n_1 1 0 1880 0 1 600
+use lvds_currm_n lvds_currm_n_0 1 0 140 0 1 600
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_9 1 0 2968 0 1 5489
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_7 1 0 2978 0 1 6359
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_3 1 0 2958 0 1 4529
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_1 1 0 2948 0 1 3659
+use lvds_currm_n lvds_currm_n_2 1 0 3620 0 1 600
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_6 1 0 4668 0 1 5489
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_5 1 0 4678 0 1 6359
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_4 1 0 4658 0 1 4529
+use sky130_fd_sc_hs__inv_16 sky130_fd_sc_hs__inv_16_2 1 0 4648 0 1 3659
+use lvds_currm_n lvds_currm_n_3 1 0 5360 0 1 600
+use lvds_currm_n lvds_currm_n_4 1 0 7100 0 1 600
+use lvds_currm_n lvds_currm_n_6 1 0 12320 0 1 600
+use lvds_currm_n lvds_currm_n_7 1 0 10580 0 1 600
+use lvds_currm_n lvds_currm_n_8 1 0 8840 0 1 600
+use lvds_nswitch lvds_nswitch_0 1 0 6720 0 1 3690
+use lvds_nswitch lvds_nswitch_1 1 0 10500 0 1 3690
+use lvds_switch_p lvds_switch_p_0 1 0 6572 0 1 5076
+use lvds_switch_p lvds_switch_p_1 1 0 10352 0 1 5076
+use sky130_fd_pr__cap_mim_m3_1_N3PKNJ sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0 -1 0 15679 0 -1 6300
+use lvds_currm_n lvds_currm_n_5 1 0 14060 0 1 600
+use lvds_currm_n lvds_currm_n_10 1 0 17540 0 1 600
+use lvds_currm_n lvds_currm_n_11 1 0 15800 0 1 600
+use lvds_diffamp lvds_diffamp_0 1 0 17450 0 1 3750
+use sky130_fd_pr__res_xhigh_po_0p35_RS2YEK sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0 1 0 16469 0 1 5188
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0 1 0 13990 0 1 5188
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1 1 0 14700 0 1 5188
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2 1 0 15600 0 1 5188
+use lvds_currm_n lvds_currm_n_9 1 0 19280 0 1 600
+use lvds_diffamp lvds_diffamp_1 1 0 19190 0 1 3750
+use lvds_currm_p lvds_currm_p_0 1 0 3540 0 1 7500
+use lvds_currm_p lvds_currm_p_1 1 0 1800 0 1 7500
+use lvds_currm_p lvds_currm_p_2 1 0 5280 0 1 7500
+use lvds_currm_p lvds_currm_p_10 1 0 3540 0 1 11690
+use lvds_currm_p lvds_currm_p_11 1 0 1800 0 1 11690
+use lvds_currm_p lvds_currm_p_12 1 0 5280 0 1 11690
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 0 -1 5991 1 0 16351
+use lvds_currm_p lvds_currm_p_3 1 0 7020 0 1 7500
+use lvds_currm_p lvds_currm_p_4 1 0 8760 0 1 7500
+use lvds_currm_p lvds_currm_p_8 1 0 12240 0 1 7500
+use lvds_currm_p lvds_currm_p_9 1 0 10500 0 1 7500
+use lvds_currm_p lvds_currm_p_13 1 0 7020 0 1 11690
+use lvds_currm_p lvds_currm_p_14 1 0 8760 0 1 11690
+use lvds_currm_p lvds_currm_p_15 1 0 10500 0 1 11690
+use lvds_currm_p lvds_currm_p_16 1 0 12240 0 1 11690
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 0 -1 15641 1 0 16351
+use lvds_currm_p lvds_currm_p_5 1 0 17460 0 1 7500
+use lvds_currm_p lvds_currm_p_6 1 0 15720 0 1 7500
+use lvds_currm_p lvds_currm_p_7 1 0 13980 0 1 7500
+use lvds_currm_p lvds_currm_p_17 1 0 13980 0 1 11690
+use lvds_currm_p lvds_currm_p_18 1 0 15720 0 1 11690
+use lvds_currm_p lvds_currm_p_19 1 0 17460 0 1 11690
+use lvds_currm_p lvds_currm_p_30 1 0 19200 0 1 7500
+use lvds_currm_p lvds_currm_p_20 1 0 3540 0 1 15880
+use lvds_currm_p lvds_currm_p_21 1 0 1800 0 1 15880
+use lvds_currm_p lvds_currm_p_22 1 0 5280 0 1 15880
+use lvds_currm_p lvds_currm_p_23 1 0 7020 0 1 15880
+use lvds_currm_p lvds_currm_p_24 1 0 8760 0 1 15880
+use lvds_currm_p lvds_currm_p_25 1 0 10500 0 1 15880
+use lvds_currm_p lvds_currm_p_26 1 0 12240 0 1 15880
+use lvds_currm_p lvds_currm_p_27 1 0 13980 0 1 15880
+use lvds_currm_p lvds_currm_p_28 1 0 15720 0 1 15880
+use lvds_currm_p lvds_currm_p_29 1 0 17460 0 1 15880
+node "m3_9390_10220#" 0 967.215 9390 10220 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990000 6220 0 0 0 0 0 0
+node "m3_9390_14410#" 0 939.762 9390 14410 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990000 6220 0 0 0 0 0 0
+node "m3_9390_18600#" 0 939.762 9390 18600 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990000 6220 0 0 0 0 0 0
+node "m2_1810_n5670#" 10 4564.86 1810 -5670 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_2920_n5300#" 13 1757.4 2920 -5300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2374500 31960 0 0 0 0 0 0 0 0
+node "m2_1810_n5050#" 10 3195.81 1810 -5050 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_1810_n4430#" 10 3856.02 1810 -4430 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_1810_n3820#" 10 2967.86 1810 -3820 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_1810_n2200#" 10 4430.02 1810 -2200 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_2170_n1830#" 14 1839.66 2170 -1830 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2487000 33460 0 0 0 0 0 0 0 0
+node "m2_1810_n1580#" 10 3073.02 1810 -1580 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_1810_n960#" 10 3856.02 1810 -960 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3702600 34100 0 0 0 0 0 0 0 0
+node "m2_1810_n350#" 9 2996.81 1810 -350 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3870900 34120 0 0 0 0 0 0 0 0
+node "m2_18900_460#" 0 138.637 18900 460 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61600 1160 0 0 0 0 0 0 0 0
+node "m2_1870_1020#" 16 4474.6 1870 1020 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2375500 32660 106200 2240 1215817 14628 0 0 0 0
+node "m2_17470_1270#" 2 1061.48 17470 1270 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640200 6260 0 0 0 0 0 0 0 0
+node "m2_1810_1270#" 9 2882.07 1810 1270 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3319800 30620 0 0 0 0 0 0 0 0
+node "m2_17470_1890#" 2 754.623 17470 1890 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640200 6260 0 0 0 0 0 0 0 0
+node "m2_1810_1890#" 9 3601.88 1810 1890 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3319800 30620 0 0 0 0 0 0 0 0
+node "m2_17470_2510#" 2 749.629 17470 2510 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 640200 6260 0 0 0 0 0 0 0 0
+node "m2_1810_2510#" 9 3576.31 1810 2510 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3319800 30620 0 0 0 0 0 0 0 0
+node "m2_1810_3120#" 6 3517.76 1810 3120 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5130600 30860 0 0 0 0 0 0 0 0
+node "m2_19260_4160#" 1 2588.93 19260 4160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 759900 4000 3920350 10490 0 0 0 0 0 0
+node "vm1d" 2 20015.8 6760 4040 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2537600 11840 23841900 134860 33212158 30248 0 0 0 0
+node "m2_17470_3120#" 2 3002.37 17470 3120 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4044900 15080 1347200 4780 0 0 0 0 0 0
+node "vm6d" 6 11324.5 6850 5540 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6360800 28120 11128750 45330 33710279 31468 0 0 0 0
+node "m2_1800_7490#" 5 4275.62 1800 7490 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5576400 31700 0 0 0 0 0 0 0 0
+node "m2_1800_8230#" 7 4738.33 1800 8230 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4027400 31500 0 0 0 0 0 0 0 0
+node "m2_1800_9240#" 4 7194.53 1800 9240 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8054800 32020 0 0 0 0 0 0 0 0
+node "m2_17720_10420#" 1 399.51 17720 10420 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 202400 2880 0 0 0 0 0 0 0 0
+node "m2_1730_11760#" 8 3627.74 1730 11760 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4844000 35160 0 0 0 0 0 0 0 0
+node "m2_1730_12420#" 8 5120.65 1730 12420 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4498000 35120 0 0 0 0 0 0 0 0
+node "m2_1790_13430#" 4 7741.53 1790 13430 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8970000 35540 0 0 0 0 0 0 0 0
+node "m2_1730_15950#" 8 3450.97 1730 15950 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4844000 35160 0 0 0 0 0 0 0 0
+node "m2_1730_16610#" 8 5117.12 1730 16610 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4498000 35120 0 0 0 0 0 0 0 0
+node "m2_1730_17620#" 4 7763.26 1730 17620 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8996000 35640 0 0 0 0 0 0 0 0
+node "m1_20_130#" 0 58411.3 20 130 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9147800 307420 0 0 0 0 0 0 0 0 0 0
+node "m1_20_640#" 50 6537.27 20 640 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1006500 40360 0 0 0 0 0 0 0 0 0 0
+node "m1_20_3330#" 3 849.61 20 3330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 102600 3140 142100 1560 0 0 0 0 0 0 0 0
+node "m1_16110_3750#" 0 295.71 16110 3750 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188600 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_15390_3750#" 0 338.717 15390 3750 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 193500 1760 0 0 0 0 0 0 0 0 0 0
+node "OutP" 3 5416.36 14810 3750 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19500 560 8280100 26960 1380200 4740 1347984 4688 4342308 17536 0 0
+node "OutN" 10 5515.59 9850 3500 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 425100 9520 5982600 22500 3276300 9960 1456344 7348 7151568 29636 0 0
+node "vm20g" 6 2658.76 14110 3750 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 704500 11740 79900 1280 78400 1300 395574 2626 0 0 0 0
+node "m1_16410_6170#" 0 331.44 16410 6170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188600 1740 0 0 0 0 0 0 0 0 0 0
+node "m1_15690_6180#" 9 3531.89 15690 6180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 868500 16460 0 0 0 0 0 0 0 0 0 0
+node "m1_14510_6190#" 0 323.229 14510 6190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163400 1620 0 0 0 0 0 0 0 0 0 0
+node "m1_13800_6190#" 0 374.474 13800 6190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163400 1620 0 0 0 0 0 0 0 0 0 0
+node "vx6y" 8 985.733 1370 4060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1081900 16300 95800 1840 0 0 0 0 0 0 0 0
+node "vm5g" 8 2931.77 3070 4050 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2059000 20540 384300 3760 1077900 9820 0 0 0 0 0 0
+node "VN" 0 81983.2 650 3570 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3424500 54140 31447900 159400 45140600 143750 32522887 48672 54069612 125600 0 0
+node "vx1y" 6 1190.8 1390 5880 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1594200 17200 157700 2040 0 0 0 0 0 0 0 0
+node "vm2g" 0 9201.11 3080 5880 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4861700 60360 0 0 0 0 0 0 0 0 0 0
+node "VP" 17 60953.3 650 4280 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2632000 37220 41441200 264600 24755650 141230 28581942 51554 13855628 41328 0 0
+node "m1_20510_7590#" 3 866.993 20510 7590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 351100 5900 0 0 0 0 0 0 0 0 0 0
+node "m1_15360_6190#" 12 3446.74 15360 6190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1103400 20040 38000 960 0 0 0 0 0 0 0 0
+node "m1_19120_7610#" 4 1313.83 19120 7610 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 304000 6280 0 0 0 0 0 0 0 0 0 0
+node "m1_17940_7520#" 1 3130.21 17940 7520 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28000 760 791100 4760 3930000 10580 0 0 0 0 0 0
+node "m1_17720_10340#" 2 451.734 17720 10340 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 63000 2220 0 0 0 0 0 0 0 0 0 0
+node "m1_17640_11510#" 2 494.475 17640 11510 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67800 2380 0 0 0 0 0 0 0 0 0 0
+node "m1_1770_11730#" 0 49.7126 1770 11730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5500 320 0 0 0 0 0 0 0 0 0 0
+node "m1_1430_10420#" 7 14075.3 1430 10420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1290600 17500 8159400 102960 0 0 0 0 0 0 0 0
+node "m1_1770_10130#" 0 50096.8 1770 10130 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9136600 248520 70200 1060 0 0 0 0 0 0 0 0
+node "li_6620_3430#" 165 1705.12 6620 3430 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 569100 5840 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_10120_3420#" 13 14055.3 10120 3420 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5170600 50040 0 0 0 0 0 0 0 0 0 0 0 0
+node "In" 69 139.003 720 3940 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 760 43344 1244 0 0 0 0 0 0 0 0 0 0
+node "vx9y" 321 778.165 730 5770 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65200 2640 363224 6428 352600 5080 0 0 0 0 0 0 0 0
+node "vx14y" 245 332.511 830 5600 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34000 1680 164868 5476 0 0 0 0 0 0 0 0 0 0
+node "li_6650_7120#" 211 5651.76 6650 7120 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2902200 14660 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_19090_10260#" 173 714.991 19090 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_17350_10260#" 32 46.808 17350 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4000 280 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_17350_10630#" 125 500.521 17350 10630 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98000 2160 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_15610_10260#" 173 699.198 15610 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_13870_10260#" 173 699.198 13870 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_12130_10260#" 173 699.198 12130 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_10390_10260#" 173 699.198 10390 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_6910_10260#" 173 699.198 6910 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_5170_10260#" 173 699.198 5170 10260 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 135000 2900 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_3340_7530#" 372 2246.52 3340 7530 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 586800 8540 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_17350_11840#" 1050 4120.6 17350 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_15610_11840#" 1050 4120.6 15610 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_13870_11840#" 1050 4120.6 13870 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_12130_11840#" 1050 4120.6 12130 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_10390_11840#" 1050 4120.6 10390 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_6910_11840#" 1050 4120.6 6910 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_5170_11840#" 1050 4120.6 5170 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 820000 16600 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_3440_11840#" 1166 4056.49 3440 11840 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 738000 16580 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_650_3990#" 21720 8857.74 650 3990 nw 0 0 0 0 2494800 12220 0 0 435000 11300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 435000 11300 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2920_5090#" 18999 3486.74 2920 5090 nw 0 0 0 0 892800 7920 0 0 369600 6940 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 233100 6800 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_660_5820#" 23164 8841.15 660 5820 nw 0 0 0 0 2493800 12820 0 0 435000 11300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 435000 11300 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2940_6920#" 19079 2835.5 2940 6920 nw 0 0 0 0 897600 7960 0 0 369600 6940 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 233100 6800 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "a_650_3580#" 0 0 650 3580 ppd 0 0 0 0 0 0 0 0 0 0 1411200 36320 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1546800 36520 0 0 0 0 0 0 0 0 0 0 0 0
+cap "li_6620_3430#" "vm1d" 118.256
+cap "m2_1730_17620#" "li_13870_11840#" 191.396
+cap "m2_1810_2510#" "m2_1810_1890#" 1475.05
+cap "vx1y" "vx6y" 4.6
+cap "m1_15690_6180#" "m1_17940_7520#" 350.382
+cap "vx9y" "w_660_5820#" 143.617
+cap "m1_15360_6190#" "m1_15690_6180#" 136.336
+cap "m2_2920_n5300#" "vm1d" 975.971
+cap "m1_1770_10130#" "m3_9390_18600#" 867.452
+cap "li_3340_7530#" "m2_1800_9240#" 246.272
+cap "m1_1430_10420#" "li_12130_10260#" 66.6191
+cap "m1_1430_10420#" "li_6910_10260#" 66.6191
+cap "li_3440_11840#" "m2_1730_11760#" 77.7522
+cap "VP" "li_13870_10260#" 183.923
+cap "li_12130_10260#" "li_12130_11840#" 12.1739
+cap "li_5170_11840#" "m2_1730_15950#" 97.6411
+cap "li_10120_3420#" "m2_1810_1890#" 120.732
+cap "m1_1770_10130#" "li_15610_10260#" 663.842
+cap "m2_1810_1890#" "m2_1810_1270#" 1475.05
+cap "li_6910_11840#" "m2_1730_12420#" 104.941
+cap "m2_1810_n1580#" "m2_2170_n1830#" 6439.77
+cap "m1_16110_3750#" "OutP" 114.292
+cap "vm20g" "OutN" 962.055
+cap "m1_20_130#" "m2_1810_n960#" 1724.3
+cap "li_12130_11840#" "m2_1730_15950#" 97.6411
+cap "VP" "li_5170_11840#" 477.414
+cap "m1_17940_7520#" "OutN" 706.88
+cap "li_15610_10260#" "li_15610_11840#" 12.1739
+cap "vm5g" "vm1d" 2959.17
+cap "vm2g" "w_2940_6920#" 134.261
+cap "VN" "li_6910_11840#" 29.2577
+cap "vx6y" "vx9y" 844.813
+cap "m1_13800_6190#" "m1_14510_6190#" 48.0818
+cap "m1_17940_7520#" "m1_19120_7610#" 0.41
+cap "VP" "m1_1430_10420#" 21954
+cap "VP" "w_2940_6920#" 2693.45
+cap "m1_15360_6190#" "m1_19120_7610#" 6.28954
+cap "m1_15360_6190#" "m1_20510_7590#" 1489.79
+cap "VP" "li_12130_11840#" 477.414
+cap "li_19090_10260#" "m1_19120_7610#" 282.766
+cap "li_6620_3430#" "OutN" 580.128
+cap "li_10120_3420#" "OutP" 2304.62
+cap "m2_1810_n1580#" "m2_1870_1020#" 89.4722
+cap "vm1d" "m2_1810_n350#" 8564.98
+cap "vm1d" "m2_1810_3120#" 11426.4
+cap "m1_1430_10420#" "vm6d" 66.162
+cap "m1_1770_10130#" "m1_1770_11730#" 18.45
+cap "m1_17940_7520#" "m2_1800_7490#" 7.10909
+cap "m1_1770_10130#" "m1_17940_7520#" 475.81
+cap "VN" "In" 155.224
+cap "m2_1810_n4430#" "m2_1810_n3820#" 1687.32
+cap "VN" "m2_1810_1890#" 133.515
+cap "VP" "m2_1800_9240#" 471.553
+cap "m2_1810_n5050#" "m1_20_130#" 1677.2
+cap "m1_1770_10130#" "m1_15360_6190#" 1013.26
+cap "m3_9390_18600#" "m1_1430_10420#" 1430.56
+cap "li_12130_11840#" "vm6d" 513.455
+cap "li_13870_11840#" "m2_1730_16610#" 104.914
+cap "m3_9390_18600#" "li_12130_11840#" 47.4199
+cap "m2_1800_8230#" "m2_1800_7490#" 1593.84
+cap "m2_1800_9240#" "vm6d" 3061.98
+cap "m1_1770_10130#" "m2_1800_8230#" 283.563
+cap "li_10120_3420#" "m2_17470_3120#" 1830.28
+cap "m1_1430_10420#" "li_15610_10260#" 17.392
+cap "li_3440_11840#" "m2_1790_13430#" 183.57
+cap "m2_1810_n4430#" "vm1d" 1634.59
+cap "VN" "m2_1730_15950#" 3605.68
+cap "li_6910_11840#" "li_6910_10260#" 12.1739
+cap "VP" "m2_1730_12420#" 285.21
+cap "li_10390_11840#" "m2_1730_11760#" 73.1289
+cap "m3_9390_10220#" "li_12130_10260#" 33.7543
+cap "m2_2920_n5300#" "m2_1810_n5670#" 4097.68
+cap "m2_1730_17620#" "li_3440_11840#" 183.561
+cap "VN" "m2_1810_n2200#" 849.064
+cap "VN" "m1_20_130#" 37870
+cap "VN" "OutP" 38.9342
+cap "vm5g" "OutN" 4383.7
+cap "VN" "w_650_3990#" 349.806
+cap "vm2g" "VN" 668.673
+cap "VP" "VN" 46008.5
+cap "m1_1770_10130#" "li_13870_11840#" 376.302
+cap "m2_1730_12420#" "vm6d" 1420.06
+cap "m1_1770_10130#" "m2_1730_11760#" 578.703
+cap "li_17350_11840#" "VP" 108.425
+cap "li_6910_11840#" "m2_1730_15950#" 97.6411
+cap "m2_1810_n960#" "m2_1810_n1580#" 1645.13
+cap "m1_16110_3750#" "vm20g" 29.2106
+cap "vm1d" "m2_1810_n3820#" 8215.12
+cap "m2_19260_4160#" "OutP" 578.804
+cap "m2_1810_3120#" "OutN" 1598.76
+cap "m2_1810_2510#" "m2_17470_2510#" 15.0912
+cap "VN" "vm6d" 5258.97
+cap "m1_15360_6190#" "m1_16410_6170#" 37.8225
+cap "m2_1730_11760#" "li_15610_11840#" 21.74
+cap "VN" "m2_17470_3120#" 3691.74
+cap "m1_1430_10420#" "m1_1770_11730#" 22.55
+cap "VN" "m2_18900_460#" 494.827
+cap "li_17350_11840#" "li_17350_10630#" 12.1739
+cap "VP" "li_6910_11840#" 477.414
+cap "m3_9390_10220#" "VP" 203.355
+cap "m1_1770_10130#" "li_5170_10260#" 188.342
+cap "VP" "li_3340_7530#" 176.183
+cap "li_13870_11840#" "li_13870_10260#" 12.1739
+cap "li_10120_3420#" "vm20g" 637.522
+cap "m2_1810_n350#" "m2_1870_1020#" 8.58128
+cap "m2_17470_3120#" "m2_19260_4160#" 3158.63
+cap "In" "w_650_3990#" 61.6119
+cap "VN" "vx14y" 458.799
+cap "m3_9390_10220#" "vm6d" 3074
+cap "VP" "li_12130_10260#" 183.923
+cap "VP" "li_6910_10260#" 183.923
+cap "m2_1800_9240#" "m2_1800_8230#" 807.545
+cap "li_5170_11840#" "m2_1730_11760#" 73.1289
+cap "li_10120_3420#" "li_6620_3430#" 6.12662
+cap "m2_1730_17620#" "m2_1730_16610#" 901.907
+cap "m2_1810_1270#" "m2_17470_1270#" 15.0912
+cap "li_12130_10260#" "vm6d" 94.715
+cap "m1_1430_10420#" "li_13870_11840#" 133.173
+cap "li_3440_11840#" "m2_1730_16610#" 100.075
+cap "m2_1810_n4430#" "m2_1870_1020#" 100.741
+cap "li_10390_11840#" "m2_1790_13430#" 191.406
+cap "VP" "m2_1730_15950#" 10349.8
+cap "m1_20_130#" "m2_1810_n2200#" 1765.24
+cap "li_12130_11840#" "m2_1730_11760#" 73.1289
+cap "m2_1810_n5050#" "m2_2920_n5300#" 6146.52
+cap "VN" "vm20g" 92.1939
+cap "VN" "m2_1810_n1580#" 105
+cap "VN" "m1_20_3330#" 509.146
+cap "m2_1730_17620#" "li_10390_11840#" 191.396
+cap "VN" "m2_17470_2510#" 299.322
+cap "VN" "w_660_5820#" 93.9299
+cap "VP" "vm2g" 6839.49
+cap "VP" "w_650_3990#" 2967.2
+cap "li_5170_10260#" "li_5170_11840#" 12.1739
+cap "m2_1730_15950#" "vm6d" 2000.29
+cap "m1_1770_10130#" "m2_1790_13430#" 1108.22
+cap "m1_1430_10420#" "li_5170_10260#" 66.6191
+cap "m2_1810_n350#" "m2_1810_n960#" 1687.32
+cap "vm6d" "OutP" 5717.29
+cap "m2_17470_3120#" "OutP" 615.953
+cap "vm1d" "m2_2170_n1830#" 974.023
+cap "m1_20_640#" "vm1d" 404.442
+cap "vm1d" "OutN" 4108.46
+cap "m1_1770_10130#" "m2_1730_17620#" 1108.18
+cap "m2_1810_n3820#" "m2_1870_1020#" 8.95255
+cap "m2_1810_3120#" "m2_1810_2510#" 1512.87
+cap "m2_1790_13430#" "li_15610_11840#" 56.524
+cap "vx1y" "m2_1800_7490#" 9.52436
+cap "vm2g" "vm6d" 5152.7
+cap "VP" "li_17350_10630#" 202.601
+cap "m1_1770_10130#" "li_3440_11840#" 347
+cap "m2_19260_4160#" "m1_17940_7520#" 400.212
+cap "VP" "vm6d" 10994.6
+cap "VN" "m2_17470_1270#" 371.567
+cap "m1_15360_6190#" "m2_19260_4160#" 588.855
+cap "m2_1730_17620#" "li_15610_11840#" 56.524
+cap "m3_9390_14410#" "li_10390_11840#" 62.7808
+cap "m3_9390_18600#" "VP" 203.355
+cap "li_13870_11840#" "m2_1730_12420#" 104.941
+cap "m2_1730_12420#" "m2_1730_11760#" 1780.08
+cap "m1_15690_6180#" "OutN" 491.932
+cap "m1_1430_10420#" "m2_17720_10420#" 13.0333
+cap "li_10120_3420#" "m2_1810_3120#" 1515.1
+cap "vm1d" "m2_1870_1020#" 942.503
+cap "VN" "vx6y" 3003.12
+cap "m3_9390_18600#" "vm6d" 123.162
+cap "m2_1810_n5670#" "vm1d" 1633.93
+cap "VP" "vx14y" 336.812
+cap "m1_1770_10130#" "m3_9390_14410#" 867.452
+cap "li_3340_7530#" "m2_1800_8230#" 138.788
+cap "VN" "li_13870_11840#" 29.2577
+cap "VP" "li_15610_10260#" 93.4039
+cap "li_10390_10260#" "li_10390_11840#" 12.1739
+cap "VN" "vm5g" 1206.08
+cap "li_5170_11840#" "m2_1790_13430#" 191.406
+cap "m1_1770_10130#" "li_10390_10260#" 188.342
+cap "m1_1430_10420#" "m2_1790_13430#" 1020.15
+cap "li_6910_11840#" "m2_1730_11760#" 73.1289
+cap "m2_1730_17620#" "li_5170_11840#" 191.396
+cap "m1_16110_3750#" "m1_15390_3750#" 57.2586
+cap "vm20g" "OutP" 1085.53
+cap "li_10390_11840#" "m2_1730_16610#" 104.914
+cap "m1_20_130#" "m2_1810_n1580#" 1668.44
+cap "m2_1810_n4430#" "m2_1810_n5050#" 1645.13
+cap "li_12130_11840#" "m2_1790_13430#" 191.406
+cap "VN" "m2_1810_n350#" 8256.83
+cap "m1_17940_7520#" "OutP" 540.247
+cap "m1_1430_10420#" "m2_1730_17620#" 1023.71
+cap "m1_1430_10420#" "li_3440_11840#" 126.813
+cap "VN" "m2_1810_3120#" 372.252
+cap "vm2g" "w_660_5820#" 488.563
+cap "VP" "m1_1770_11730#" 7.42148
+cap "VP" "w_660_5820#" 3039.56
+cap "li_12130_11840#" "m2_1730_17620#" 191.396
+cap "m1_20510_7590#" "m1_19120_7610#" 77.292
+cap "m1_15360_6190#" "VP" 146.625
+cap "m1_1770_10130#" "m2_1730_16610#" 591.476
+cap "VP" "li_19090_10260#" 208.453
+cap "m2_17470_3120#" "vm20g" 156.996
+cap "vm1d" "m2_1810_n960#" 1631.75
+cap "vm1d" "m2_1810_2510#" 1631.75
+cap "m2_17470_3120#" "m2_17470_2510#" 291.746
+cap "m1_20_640#" "m2_1870_1020#" 35.9794
+cap "m1_1770_10130#" "m1_17640_11510#" 5.98378
+cap "m2_1730_16610#" "li_15610_11840#" 28.262
+cap "m1_1770_10130#" "m1_19120_7610#" 20.2847
+cap "VN" "m2_17470_1890#" 300.479
+cap "m2_17470_3120#" "m1_17940_7520#" 3039.81
+cap "VP" "m2_1800_8230#" 267.761
+cap "m2_2920_n5300#" "m1_20_130#" 1021.08
+cap "m1_1770_10130#" "m1_20510_7590#" 7.38
+cap "m1_1770_10130#" "li_10390_11840#" 376.302
+cap "m3_9390_14410#" "m1_1430_10420#" 1431.39
+cap "m2_1810_n4430#" "VN" 112.44
+cap "li_6650_7120#" "m2_1800_7490#" 2023.25
+cap "li_13870_11840#" "m2_1730_15950#" 97.6411
+cap "m3_9390_14410#" "li_12130_11840#" 47.4199
+cap "m2_1790_13430#" "m2_1730_12420#" 898.779
+cap "m2_1800_8230#" "vm6d" 1419.71
+cap "m1_15690_6180#" "m1_16410_6170#" 105.605
+cap "m1_14510_6190#" "vm20g" 10.7862
+cap "m1_1770_10130#" "m2_1800_7490#" 371.522
+cap "li_10120_3420#" "vm1d" 841.72
+cap "vx6y" "w_650_3990#" 312.22
+cap "vm1d" "m2_1810_1270#" 1479.86
+cap "vm2g" "vx6y" 24.101
+cap "vx14y" "w_660_5820#" 302.888
+cap "m2_17470_1270#" "m2_18900_460#" 25.6776
+cap "m1_15360_6190#" "m1_14510_6190#" 33.7596
+cap "VP" "vx6y" 1386.35
+cap "m1_1430_10420#" "li_10390_10260#" 66.6191
+cap "m2_1810_n5050#" "vm1d" 1518.88
+cap "VP" "li_13870_11840#" 477.414
+cap "li_3440_11840#" "m2_1730_12420#" 100.099
+cap "m2_1810_n5670#" "m2_1870_1020#" 162.018
+cap "VP" "m2_1730_11760#" 5248.99
+cap "m1_1770_10130#" "li_15610_11840#" 3901.55
+cap "VN" "m2_1810_n3820#" 6676.92
+cap "vm5g" "OutP" 143.367
+cap "vm5g" "w_650_3990#" 513.724
+cap "VN" "li_3440_11840#" 27.0196
+cap "vx1y" "VN" 4304.36
+cap "vm2g" "vm5g" 254.907
+cap "li_10120_3420#" "m1_15690_6180#" 300.671
+cap "li_5170_11840#" "m2_1730_16610#" 104.914
+cap "VP" "vm5g" 4539.52
+cap "m2_1730_11760#" "vm6d" 2590.84
+cap "m1_1770_10130#" "li_13870_10260#" 188.342
+cap "m2_1810_1890#" "m2_17470_1890#" 15.0912
+cap "li_6910_11840#" "m2_1790_13430#" 191.406
+cap "m1_20_130#" "m2_1810_n350#" 1728.88
+cap "m2_1810_3120#" "OutP" 1904.96
+cap "VP" "li_5170_10260#" 183.923
+cap "li_12130_11840#" "m2_1730_16610#" 104.914
+cap "m1_17940_7520#" "vm20g" 124.274
+cap "m2_1730_17620#" "li_6910_11840#" 191.396
+cap "VN" "vm1d" 36103.2
+cap "m1_15360_6190#" "vm20g" 3.55333
+cap "vm5g" "vm6d" 1906.85
+cap "VP" "m2_1810_3120#" 43.8683
+cap "m1_17640_11510#" "m1_17720_10340#" 34.9054
+cap "m1_1430_10420#" "li_10390_11840#" 133.173
+cap "m1_17720_10340#" "m1_19120_7610#" 6.32571
+cap "m1_15360_6190#" "m1_17940_7520#" 300.441
+cap "li_3340_7530#" "li_3440_11840#" 10.9565
+cap "w_2940_6920#" "li_6650_7120#" 15.3547
+cap "m1_1770_10130#" "li_5170_11840#" 376.302
+cap "li_10120_3420#" "OutN" 3224.03
+cap "m2_1810_n960#" "m2_1870_1020#" 94.3372
+cap "m2_17470_3120#" "m2_1810_3120#" 23.3228
+cap "m1_1770_10130#" "m1_1430_10420#" 1294
+cap "VP" "m2_17720_10420#" 450.432
+cap "VN" "m1_15690_6180#" 120.994
+cap "m1_1770_10130#" "m1_17720_10340#" 4.92
+cap "VN" "vx9y" 2128.53
+cap "m2_1810_n4430#" "m1_20_130#" 1724.3
+cap "m1_1770_10130#" "li_12130_11840#" 376.302
+cap "m1_1430_10420#" "li_15610_11840#" 34.784
+cap "m1_1770_10130#" "m2_1800_9240#" 532.446
+cap "m1_15690_6180#" "m2_19260_4160#" 424.146
+cap "vm1d" "m2_1810_1890#" 1636.6
+cap "li_10120_3420#" "m2_1870_1020#" 90.5633
+cap "m2_1810_1270#" "m2_1870_1020#" 6015.81
+cap "m1_1770_11730#" "m2_1730_11760#" 50.5585
+cap "m1_1430_10420#" "li_13870_10260#" 66.6191
+cap "li_3440_11840#" "m2_1730_15950#" 93.9642
+cap "OutP" "m1_15390_3750#" 132.831
+cap "m2_1810_n5050#" "m2_1870_1020#" 96.6391
+cap "VP" "m2_1790_13430#" 475.588
+cap "m1_20_130#" "m2_1810_n3820#" 1597.89
+cap "li_10390_11840#" "m2_1730_12420#" 104.941
+cap "m3_9390_10220#" "li_10390_10260#" 43.6725
+cap "VN" "OutN" 9.89873
+cap "VN" "m2_2170_n1830#" 57.2355
+cap "VN" "m1_20_640#" 426.194
+cap "VP" "m2_1730_17620#" 499.957
+cap "VN" "w_2920_5090#" 51.6198
+cap "vm2g" "vx1y" 5172.01
+cap "VP" "vx1y" 3531.75
+cap "VP" "li_3440_11840#" 457.03
+cap "vx9y" "In" 738.923
+cap "m2_1790_13430#" "vm6d" 3062.53
+cap "m1_1770_10130#" "m2_1730_12420#" 591.583
+cap "li_6910_11840#" "m2_1730_16610#" 104.914
+cap "m1_1430_10420#" "li_5170_11840#" 133.173
+cap "m2_19260_4160#" "OutN" 705.947
+cap "vm1d" "m2_1810_n2200#" 1609.08
+cap "m1_20_3330#" "m2_1810_3120#" 4.3792
+cap "vm1d" "OutP" 3143.11
+cap "m2_1730_17620#" "vm6d" 2802.97
+cap "m1_20_130#" "vm1d" 2964.16
+cap "VN" "m2_1800_7490#" 21.2257
+cap "m2_1730_12420#" "li_15610_11840#" 28.262
+cap "vm2g" "vm1d" 1894.59
+cap "m2_19260_4160#" "m1_19120_7610#" 49.371
+cap "m1_1770_10130#" "VN" 90.0588
+cap "VN" "m2_1870_1020#" 8722.81
+cap "m1_20510_7590#" "m2_19260_4160#" 95.3067
+cap "li_17350_11840#" "m1_1770_10130#" 5167.95
+cap "m2_1810_n5670#" "VN" 842.31
+cap "m1_1430_10420#" "li_12130_11840#" 133.173
+cap "m3_9390_14410#" "VP" 203.355
+cap "VN" "li_15610_11840#" 0.382
+cap "li_13870_11840#" "m2_1730_11760#" 73.1289
+cap "li_17350_10630#" "li_17350_10260#" 8.48485
+cap "m1_15690_6180#" "OutP" 96.0407
+cap "vm1d" "vm6d" 165.256
+cap "m1_1430_10420#" "m2_1800_9240#" 914.703
+cap "m1_1770_10130#" "m2_19260_4160#" 651.403
+cap "li_10120_3420#" "m2_1810_2510#" 120.333
+cap "li_6620_3430#" "m2_1810_3120#" 572.256
+cap "m2_17470_2510#" "m2_17470_1890#" 284.452
+cap "vm5g" "vx6y" 3777.33
+cap "m1_1770_10130#" "li_6910_11840#" 376.302
+cap "vx9y" "w_650_3990#" 394.483
+cap "vx1y" "vx14y" 1231.27
+cap "m3_9390_14410#" "vm6d" 3074
+cap "VP" "vx9y" 624.046
+cap "m1_1770_10130#" "m3_9390_10220#" 869.811
+cap "li_3340_7530#" "m2_1800_7490#" 142.891
+cap "m1_1770_10130#" "li_3340_7530#" 173.672
+cap "VP" "li_10390_10260#" 183.923
+cap "m2_1730_16610#" "m2_1730_15950#" 1780.08
+cap "li_5170_11840#" "m2_1730_12420#" 104.941
+cap "vx6y" "m2_1810_3120#" 7.79863
+cap "m1_15690_6180#" "m2_17470_3120#" 32.2642
+cap "li_10120_3420#" "m2_1810_1270#" 109.483
+cap "m2_17470_1890#" "m2_17470_1270#" 284.452
+cap "m1_1770_10130#" "li_12130_10260#" 188.342
+cap "li_10390_10260#" "vm6d" 62.676
+cap "m1_1770_10130#" "li_6910_10260#" 188.342
+cap "OutN" "OutP" 5943.37
+cap "vm20g" "m1_15390_3750#" 43.05
+cap "li_10390_11840#" "m2_1730_15950#" 97.6411
+cap "m2_2170_n1830#" "m2_1810_n2200#" 4293.18
+cap "VP" "m2_1730_16610#" 285.109
+cap "m1_20_130#" "m2_2170_n1830#" 1020.97
+cap "m1_20_640#" "m1_20_130#" 1614.78
+cap "li_12130_11840#" "m2_1730_12420#" 104.941
+cap "VN" "li_5170_11840#" 29.2577
+cap "VN" "m2_1810_n960#" 112.44
+cap "vm2g" "OutN" 8416.03
+cap "VP" "OutN" 35.3641
+cap "VN" "m1_16110_3750#" 72.1957
+cap "VN" "m2_1810_2510#" 133.13
+cap "vm5g" "m2_1810_3120#" 29.8106
+cap "vm2g" "w_2920_5090#" 57.891
+cap "vx1y" "w_660_5820#" 353.032
+cap "VP" "m1_17640_11510#" 762.337
+cap "VP" "w_2920_5090#" 1542.66
+cap "VP" "m1_19120_7610#" 114.084
+cap "vx14y" "vx9y" 851.715
+cap "m2_1730_16610#" "vm6d" 1365.19
+cap "m1_20510_7590#" "VP" 80.7733
+cap "VP" "li_10390_11840#" 477.414
+cap "m1_1770_10130#" "m2_1730_15950#" 601.918
+cap "li_12130_11840#" "VN" 25.8197
+cap "vm1d" "vm20g" 21.5984
+cap "m2_17470_3120#" "OutN" 439.245
+cap "vm6d" "OutN" 9029.76
+cap "vm1d" "m2_1810_n1580#" 1494.8
+cap "m2_1810_n2200#" "m2_1870_1020#" 180.014
+cap "m1_20_130#" "m2_1870_1020#" 35.9586
+cap "m2_1730_15950#" "li_15610_11840#" 9.783
+cap "li_10120_3420#" "VN" 3482.78
+cap "li_10390_11840#" "vm6d" 525.04
+cap "m1_1430_10420#" "li_6910_11840#" 133.173
+cap "VN" "m2_1810_1270#" 122.675
+cap "VP" "m2_1800_7490#" 488.218
+cap "m2_1810_n5670#" "m1_20_130#" 1774.86
+cap "m1_1770_10130#" "VP" 35299.4
+cap "m3_9390_10220#" "m1_1430_10420#" 1431.86
+cap "m2_1810_n5050#" "VN" 106.166
+cap "li_6650_7120#" "vm6d" 2821.87
+cap "li_3340_7530#" "w_2940_6920#" 11.0698
+cap "m1_1430_10420#" "li_3340_7530#" 63.4356
+cap "m3_9390_18600#" "li_10390_11840#" 62.7808
+cap "li_13870_11840#" "m2_1790_13430#" 191.406
+cap "VP" "li_15610_11840#" 204.47
+cap "m1_15690_6180#" "vm20g" 198.085
+cap "m1_13800_6190#" "OutP" 866.535
+cap "m2_1800_7490#" "vm6d" 3818.27
+cap "lvds_currm_n_23/li_n10_n580#" "lvds_currm_n_23/m1_n20_420#" 21.9904
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/li_n10_n580#" 66.8602
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/li_42_48#" 248.961
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" 661.649
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" -307.697
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/li_42_48#" -468.9
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/li_42_48#" -71.3164
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" 1222.83
+cap "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_22/m1_n20_420#" 4.12615
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/li_n10_n580#" 57.565
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" 199.993
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/li_42_48#" -1207.44
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/li_42_48#" 301.152
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/li_42_48#" -70.8395
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 34.4178
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" 1153.09
+cap "lvds_currm_n_22/li_42_48#" "VN" 1035.54
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/li_42_48#" -59.7079
+cap "lvds_currm_n_22/li_42_48#" "lvds_currm_n_22/m1_n20_420#" 1087.3
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/li_42_48#" 869.423
+cap "lvds_currm_n_22/m1_n20_420#" "VN" 1039.12
+cap "lvds_currm_n_22/li_n10_n580#" "VN" 470.949
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" 270.877
+cap "lvds_currm_n_25/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_22/m1_n20_420#" 2.0332
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" 1202.24
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 28.69
+cap "lvds_currm_n_22/m1_n20_420#" "VN" 1208.68
+cap "lvds_currm_n_22/li_n10_n580#" "VN" 913.113
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_24/li_42_48#" 748.087
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_24/li_42_48#" 32.8958
+cap "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_24/li_42_48#" 486.476
+cap "lvds_currm_n_24/li_42_48#" "VN" 873.425
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" 335.312
+cap "lvds_currm_n_25/li_n10_n580#" "VN" 1060.04
+cap "VN" "lvds_currm_n_25/m1_n20_420#" 581.925
+cap "VN" "lvds_currm_n_24/li_42_48#" 417.818
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_24/m1_76_644#" 2.71646
+cap "lvds_currm_n_24/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" 0.720276
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 856.31
+cap "lvds_currm_n_24/li_42_48#" "lvds_currm_n_24/m1_76_644#" -184.977
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_24/li_42_48#" 1287.47
+cap "lvds_currm_n_24/li_42_48#" "lvds_currm_n_25/m1_n20_420#" 110.812
+cap "lvds_currm_n_25/li_42_48#" "lvds_currm_n_25/m1_n20_420#" 976.826
+cap "VN" "lvds_currm_n_25/m1_n20_420#" 949.469
+cap "lvds_currm_n_25/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" -421.313
+cap "lvds_currm_n_25/li_42_48#" "lvds_currm_n_25/li_n10_n580#" 995.026
+cap "lvds_currm_n_25/m1_76_644#" "lvds_currm_n_25/li_n10_n580#" 7.49726
+cap "lvds_currm_n_25/li_n10_n580#" "VN" 1115.07
+cap "lvds_currm_n_25/li_42_48#" "lvds_currm_n_25/m1_76_644#" -122.224
+cap "lvds_currm_n_25/li_42_48#" "VN" 563.272
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 1208.87
+cap "VN" "lvds_currm_n_26/li_42_48#" 617.582
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_26/li_42_48#" 148.085
+cap "VN" "lvds_currm_n_25/li_n10_n580#" 1227.1
+cap "lvds_currm_n_26/li_42_48#" "lvds_currm_n_26/m1_76_644#" -1104.83
+cap "lvds_currm_n_26/li_42_48#" "lvds_currm_n_25/m1_n20_420#" 860.423
+cap "VN" "lvds_currm_n_25/m1_n20_420#" 650.474
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_26/m1_76_644#" 38.1237
+cap "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 910.855
+cap "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_25/m1_n20_420#" 4.78855
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_26/m1_76_644#" -529.746
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_26/m1_76_644#" 4987.66
+cap "lvds_currm_n_27/li_n10_n580#" "lvds_currm_n_26/m1_76_644#" 67.8646
+cap "lvds_currm_n_27/li_n10_n580#" "lvds_currm_n_26/m1_n20_420#" 2212.99
+cap "lvds_currm_n_27/li_42_48#" "lvds_currm_n_26/m1_76_644#" 1611.39
+cap "lvds_currm_n_27/li_42_48#" "lvds_currm_n_26/m1_n20_420#" 1000.56
+cap "lvds_currm_n_27/li_42_48#" "lvds_currm_n_27/li_n10_n580#" 114.016
+cap "VN" "lvds_currm_n_26/m1_n20_420#" 1515.4
+cap "lvds_currm_n_27/li_n10_n580#" "VN" 457.254
+cap "lvds_currm_n_27/li_42_48#" "VN" 602.981
+cap "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_26/m1_n20_420#" 2.07793
+cap "lvds_currm_n_27/li_n10_n580#" "lvds_currm_n_27/m1_76_644#" 31.0165
+cap "lvds_currm_n_28/li_42_48#" "lvds_currm_n_27/li_n10_n580#" 435.246
+cap "lvds_currm_n_28/li_42_48#" "lvds_currm_n_27/m1_76_644#" 141.507
+cap "lvds_currm_n_27/li_n10_n580#" "VN" 1183.57
+cap "lvds_currm_n_27/li_n10_n580#" "lvds_currm_n_28/m1_n20_420#" 1232.52
+cap "lvds_currm_n_28/li_42_48#" "VN" 999.429
+cap "lvds_currm_n_27/m1_76_644#" "lvds_currm_n_28/m1_n20_420#" 196.211
+cap "lvds_currm_n_28/li_42_48#" "lvds_currm_n_28/m1_n20_420#" 838.63
+cap "lvds_currm_n_28/m1_n20_420#" "VN" 932.594
+cap "lvds_currm_n_29/li_42_48#" "lvds_currm_n_28/m1_n20_420#" -34.7026
+cap "lvds_currm_n_28/li_n10_n580#" "lvds_currm_n_28/m1_n20_420#" 880.436
+cap "lvds_currm_n_29/li_42_48#" "lvds_currm_n_28/m1_76_644#" -127.459
+cap "lvds_currm_n_28/li_n10_n580#" "lvds_currm_n_28/m1_76_644#" -13.1846
+cap "lvds_currm_n_29/li_42_48#" "VN" 422.183
+cap "lvds_currm_n_28/li_n10_n580#" "VN" 818.578
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_28/m1_76_644#" 12.1011
+cap "lvds_currm_n_28/m1_n20_420#" "VN" 623.307
+cap "lvds_currm_n_29/li_42_48#" "lvds_currm_n_28/li_n10_n580#" 539.329
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_29/m1_76_644#" -677.514
+cap "lvds_currm_n_29/li_n10_n580#" "VN" 885.828
+cap "lvds_currm_n_29/li_42_48#" "VN" 407.385
+cap "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_29/m1_76_644#" 63.3119
+cap "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_29/m1_n20_420#" 1980.01
+cap "lvds_currm_n_29/li_42_48#" "lvds_currm_n_29/m1_76_644#" -110.359
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_29/li_42_48#" 1070.66
+cap "lvds_currm_n_29/m1_n20_420#" "VN" 1449.78
+cap "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_29/li_42_48#" 1219.32
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_29/li_n10_n580#" 62.5178
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_30/li_42_48#" -69.2807
+cap "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_29/m1_n20_420#" 4409.42
+cap "lvds_currm_n_30/li_42_48#" "lvds_currm_n_29/m1_n20_420#" 1249.42
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_29/m1_n20_420#" 188.461
+cap "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_30/li_42_48#" 5789.05
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_31/li_42_48#" 1622.52
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_30/li_n10_n580#" 3063.29
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_30/li_n10_n580#" -19.3352
+cap "lvds_currm_n_31/li_42_48#" "lvds_currm_n_30/li_n10_n580#" 14612.1
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_30/m1_76_644#" -29.9235
+cap "lvds_currm_n_31/li_n10_n580#" "lvds_currm_n_31/m1_n20_420#" 19.4681
+cap "lvds_currm_n_13/li_n10_n580#" "lvds_currm_n_23/m1_n20_420#" -218.832
+cap "lvds_currm_n_13/li_n10_n580#" "lvds_currm_n_23/m1_76_644#" -449.616
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 275.549
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 499.83
+cap "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_12/li_42_48#" 2.18831
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/m1_76_644#" -910.091
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_42_48#" 207.054
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" -72.9311
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" 381.41
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/m1_76_644#" 1630.88
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 267.54
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" -333.492
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.78682
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" 0.158505
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_76_644#" 1204.85
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_n20_420#" -192.942
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" -107.563
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" 2.34682
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" 1688.42
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_n20_420#" 365.459
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 209.626
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" -355.52
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_25/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 1.45973
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" -353.779
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_42_48#" 8740.91
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_22/m1_n20_420#" 371.751
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" -351.404
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_22/m1_76_644#" 3792.71
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" 2.34682
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 160.857
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_12/li_n10_n580#" -428.234
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_22/m1_n20_420#" 1686.28
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_15/li_n10_n580#" 166.864
+cap "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_14/li_42_48#" 2.34682
+cap "lvds_currm_n_24/m1_76_644#" "lvds_currm_n_14/li_42_48#" 155.544
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_25/m1_n20_420#" -128.912
+cap "lvds_currm_n_24/m1_76_644#" "lvds_currm_n_15/li_n10_n580#" 372.621
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_15/li_n10_n580#" 300.863
+cap "lvds_currm_n_24/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" -174.313
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 9.14162
+cap "lvds_currm_n_15/li_42_48#" "lvds_currm_n_25/m1_n20_420#" 74.3243
+cap "lvds_currm_n_25/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" -2550.24
+cap "lvds_currm_n_15/li_42_48#" "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" 2.18831
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/li_42_48#" -4.89612
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/m1_76_644#" 528.522
+cap "lvds_currm_n_15/li_42_48#" "lvds_currm_n_25/m1_76_644#" -1195.06
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_26/m1_76_644#" 3057.27
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.85423
+cap "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_16/li_42_48#" 0.158505
+cap "lvds_currm_n_26/m1_76_644#" "lvds_currm_n_16/li_42_48#" 5205.68
+cap "lvds_currm_n_26/m1_76_644#" "lvds_currm_n_15/li_n10_n580#" 260.903
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_16/li_42_48#" 206.416
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_15/li_n10_n580#" -331.953
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_16/li_42_48#" -81.5205
+cap "lvds_currm_n_17/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_17/li_42_48#" 2.34682
+cap "lvds_currm_n_26/m1_76_644#" "lvds_currm_n_17/li_42_48#" 13272
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_26/m1_76_644#" 9433.26
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" -352.072
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_17/li_n10_n580#" -328.911
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 1.48997
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_17/li_42_48#" 337.298
+cap "lvds_currm_n_26/m1_76_644#" "lvds_currm_n_17/li_n10_n580#" 254.51
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_18/li_42_48#" 536.757
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" -350.956
+cap "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_18/li_42_48#" 2.34682
+cap "lvds_currm_n_27/m1_76_644#" "lvds_currm_n_18/li_42_48#" 4492.21
+cap "lvds_currm_n_27/m1_76_644#" "lvds_currm_n_17/li_n10_n580#" 193.886
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_27/m1_76_644#" 1252.58
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_18/li_42_48#" -430.44
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_28/m1_76_644#" -104.531
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_28/m1_76_644#" 458.408
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_28/m1_n20_420#" 174.255
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_19/li_42_48#" -212.06
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_28/m1_76_644#" -94.9852
+cap "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_19/li_42_48#" 2.34682
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_19/li_42_48#" -401.223
+cap "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_19/li_42_48#" 2.18831
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_19/li_42_48#" 207.477
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_29/m1_76_644#" 405.853
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_19/li_42_48#" 225.498
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_29/m1_76_644#" -3134.7
+cap "lvds_currm_n_29/m1_76_644#" "lvds_currm_n_19/li_42_48#" -515.939
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_29/m1_n20_420#" -325.231
+cap "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_20/li_42_48#" 0.158505
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" 0.158505
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_20/li_42_48#" -421.064
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_19/li_n10_n580#" 267.983
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_19/li_n10_n580#" -375.319
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_20/li_42_48#" 12183.4
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_20/li_42_48#" -104.491
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_30/m1_76_644#" 2921.33
+cap "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n619_n200#" "lvds_currm_n_21/li_42_48#" 2.18831
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_20/li_n10_n580#" -8.92241
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_31/m1_n20_420#" -292.647
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_21/li_42_48#" 7152.68
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_20/li_n10_n580#" 9.07175
+cap "lvds_currm_n_20/li_n10_n580#" "lvds_currm_n_21/li_42_48#" 0.882179
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_21/li_42_48#" 766.139
+cap "lvds_currm_n_13/li_n10_n580#" "lvds_currm_n_23/m1_76_644#" 1.42063
+cap "lvds_currm_n_13/m1_n20_420#" "lvds_currm_n_13/li_n10_n580#" 8.91546
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 10.2379
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/m1_n20_420#" 348.665
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/li_n10_n580#" 178.724
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 209.151
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_42_48#" -352.618
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" 898.03
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_42_48#" 1.8019
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 225.141
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_22/m1_76_644#" 785.856
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" 316.183
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 3.13517
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_42_48#" 1.1326
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" 3.12493
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 1.59771
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 124.403
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_76_644#" -1652.99
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_n20_420#" 852.169
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 52.2855
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 131.598
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_n20_420#" 529.757
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_42_48#" 3555.28
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/m1_76_644#" 403.008
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/li_n10_n580#" 1327.64
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_25/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.6422
+cap "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_12/m1_n20_420#" 0.8602
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" -108.925
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" -8.79948
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 243.644
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" 1000.07
+cap "lvds_currm_n_23/a_32_332#" "lvds_currm_n_12/li_42_48#" 0.7011
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_76_644#" 1.15985
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 250.409
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_12/m1_76_644#" 2.04718
+cap "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_22/m1_76_644#" 1105.2
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" 1059.86
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_n20_420#" -110.72
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" -9.69123
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_14/li_42_48#" 1500.58
+cap "lvds_currm_n_22/a_32_332#" "lvds_currm_n_14/li_42_48#" 1.06227
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_14/li_42_48#" 680.834
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/m1_76_644#" 97.7521
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 468.468
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_14/li_42_48#" 1519.76
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_n10_n580#" 872.267
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 140.058
+cap "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" 523.199
+cap "lvds_currm_n_24/a_32_332#" "lvds_currm_n_14/li_42_48#" 35.6405
+cap "lvds_currm_n_24/a_32_332#" "lvds_currm_n_15/li_n10_n580#" 2
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_14/m1_76_644#" 1536.82
+cap "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_14/li_42_48#" 1021.8
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_25/m1_n20_420#" -28.9895
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 148.45
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" 91.7479
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_15/m1_76_644#" 270.709
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/m1_n20_420#" 1521.63
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/m1_n20_420#" -9.06908
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_15/li_42_48#" 21.9593
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_24/li_n110_170#" 1.78013
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/m1_76_644#" 711.963
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_42_48#" 622.346
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/li_42_48#" 1557.64
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/li_42_48#" -232.384
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/m1_n20_420#" -99.3601
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 2.20593
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_16/li_42_48#" -2242.34
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_25/a_32_332#" 0.508043
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" -359.587
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_16/li_42_48#" 570.317
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_16/m1_76_644#" -3407.15
+cap "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 3.21101
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_16/li_42_48#" 703.331
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_n10_n580#" 963.138
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_25/m1_n20_420#" 815.606
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_25/m1_n20_420#" 98.5531
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" 2285.59
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_26/m1_n20_420#" 4144.12
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.67622
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 0.883767
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_17/li_42_48#" 7561.16
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" -108.072
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_17/li_n10_n580#" 594.253
+cap "lvds_currm_n_26/sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n705#" "lvds_currm_n_17/li_42_48#" 0.674135
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_17/li_n10_n580#" 1936.03
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_17/li_42_48#" 494.167
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_16/m1_n20_420#" 3455.67
+cap "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_17/li_42_48#" 227.529
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_28/m1_n20_420#" -111.049
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_18/m1_n20_420#" 1075.56
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_18/li_42_48#" 725.799
+cap "lvds_currm_n_27/a_32_332#" "lvds_currm_n_18/li_42_48#" 1.00157
+cap "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_28/m1_n20_420#" 1015.82
+cap "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_18/li_42_48#" 1634.63
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_28/m1_n20_420#" 333.632
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_17/m1_76_644#" 100.644
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_18/li_42_48#" 472.665
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n1215#" 31.7071
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_18/li_n10_n580#" 115.839
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/m1_76_644#" 2.04718
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/m1_n20_420#" 120.901
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_28/m1_76_644#" -39.6258
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_19/li_42_48#" -113.097
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_28/m1_76_644#" 97.4563
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/li_n10_n580#" 800.2
+cap "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_28/m1_76_644#" 576.089
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_18/m1_76_644#" 0.692051
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_18/m1_n20_420#" 905.132
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_19/li_n10_n580#" 2415.44
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_29/m1_n20_420#" 97.5785
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_29/m1_76_644#" 422.05
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_19/li_42_48#" 565.595
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_29/m1_n20_420#" 60.5277
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_19/m1_76_644#" 5.67627
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_29/m1_76_644#" 346.322
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_28/li_n110_170#" 0.56
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_19/li_42_48#" 1701.29
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_19/m1_76_644#" 1.91091
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_29/m1_76_644#" -507.556
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_20/li_42_48#" 1.02359
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_30/m1_76_644#" 1845.93
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_20/li_42_48#" 5392.9
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_29/m1_n20_420#" -117.874
+cap "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n705#" "lvds_currm_n_20/li_42_48#" 0.493732
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_19/m1_n20_420#" 1342.45
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_20/li_42_48#" 2084.35
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_20/m1_76_644#" 5.67627
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_30/m1_76_644#" 132.589
+cap "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_20/li_42_48#" 45.5717
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_20/li_42_48#" 713.003
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_31/m1_n20_420#" 347.435
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_20/li_n10_n580#" -3.26411
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_21/m1_n20_420#" 777.237
+cap "lvds_currm_n_21/m1_n20_420#" "lvds_currm_n_20/li_n10_n580#" 1763.45
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_30/m1_76_644#" 3351.77
+cap "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_20/li_n10_n580#" 5.87456
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_20/li_n10_n580#" 7380.09
+cap "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_30/m1_76_644#" 216.778
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_20/m1_76_644#" 1.15985
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_20/li_n10_n580#" -9.775
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_30/a_32_332#" 0.649167
+cap "lvds_currm_n_21/li_n10_n580#" "lvds_currm_n_31/m1_n20_420#" 3.57986
+cap "lvds_currm_n_21/li_n10_n580#" "lvds_currm_n_21/m1_n20_420#" 3.65212
+cap "lvds_currm_n_31/m1_76_644#" "lvds_currm_n_21/li_n10_n580#" 0.658526
+cap "lvds_currm_n_23/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_12/li_42_48#" 1.90118
+cap "VN" "lvds_currm_n_12/m1_n20_420#" 139.126
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" 341.255
+cap "lvds_currm_n_12/m1_76_644#" "VN" 327.039
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_n20_420#" -231.233
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 422.367
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_n10_n580#" 11.8572
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_42_48#" -87.0429
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/m1_n20_420#" -1246.89
+cap "VN" "lvds_currm_n_12/li_n10_n580#" 3.35709
+cap "VN" "lvds_currm_n_12/li_42_48#" -72.132
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_12/li_42_48#" 2.11136
+cap "lvds_currm_n_23/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_12/li_n10_n580#" 0.505308
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.20835
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_n20_420#" 37.4169
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/li_42_48#" -190.509
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_76_644#" 278.461
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_23/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.271324
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 2.52845
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_22/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_76_644#" 1.33178
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_n20_420#" -94.2383
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/m1_76_644#" 776.653
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" 190.854
+cap "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_12/li_n10_n580#" 0.505308
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 1.173
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/m1_76_644#" 956.88
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_n20_420#" 913.49
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_76_644#" 3201.76
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" 158.568
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/li_n10_n580#" -386.615
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/m1_76_644#" 1.36426
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" 126.821
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_22/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.01842
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.850274
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/m1_76_644#" 899.69
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" 135.363
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_n10_n580#" 117.633
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_14/li_42_48#" 1480.95
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 748.838
+cap "lvds_currm_n_24/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_14/li_42_48#" 1.28974
+cap "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_14/li_42_48#" -431.734
+cap "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_14/li_42_48#" 2.4037
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_25/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 2.1725
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_14/li_42_48#" 467.695
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_14/m1_76_644#" -21.3197
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_15/m1_n20_420#" 20.2654
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_25/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_14/m1_76_644#" 271.039
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_14/m1_76_644#" -395.225
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/m1_n20_420#" 300.595
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/m1_76_644#" -2306.29
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/li_42_48#" -107.079
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_42_48#" 628.961
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_n10_n580#" -60.3618
+cap "lvds_currm_n_15/li_42_48#" "lvds_currm_n_26/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.90118
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_26/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/li_42_48#" -813.559
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/li_n10_n580#" 390.657
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_15/m1_n20_420#" 316.057
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_27/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.15408
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_15/m1_n20_420#" -84.5035
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_16/m1_76_644#" -70.6845
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_16/li_42_48#" -169.322
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_15/m1_n20_420#" 656.926
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_27/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_16/li_42_48#" "lvds_currm_n_26/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.271324
+cap "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_16/m1_76_644#" -1403.94
+cap "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_15/m1_n20_420#" 2.58262
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_16/m1_n20_420#" 905.14
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 1.19417
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_27/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.01842
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_17/li_n10_n580#" 1452.97
+cap "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_17/li_n10_n580#" -366.881
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" 120.806
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_16/m1_76_644#" 7869.53
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.882757
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" 9953.27
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_17/m1_76_644#" 2039.91
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_17/li_n10_n580#" 131.735
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_28/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.28974
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_17/m1_76_644#" 562.242
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_18/m1_n20_420#" 905.178
+cap "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_17/li_n10_n580#" 154.541
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_17/li_n10_n580#" -441.331
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_18/m1_n20_420#" 223.164
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_18/m1_76_644#" -368.353
+cap "lvds_currm_n_28/m1_76_644#" "lvds_currm_n_19/li_42_48#" 2.4037
+cap "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_19/li_42_48#" 2.1725
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_19/li_42_48#" 88.6101
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/m1_76_644#" 164.739
+cap "lvds_currm_n_29/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_18/li_n10_n580#" 0.505308
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/m1_n20_420#" -257.291
+cap "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_18/m1_76_644#" -48.1956
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_19/li_n10_n580#" -309.112
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_29/m1_76_644#" 2.24129
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_30/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.90118
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/li_42_48#" -368.475
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/m1_n20_420#" -2677.94
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_19/m1_n20_420#" 774.931
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_30/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/li_n10_n580#" 317.316
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_19/li_n10_n580#" 109.445
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_19/li_n10_n580#" -440.956
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_20/m1_76_644#" 193.714
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_30/m1_76_644#" 1.20185
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_19/li_n10_n580#" -121.978
+cap "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_31/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.505308
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_20/m1_76_644#" 4541.25
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_30/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.271324
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_19/m1_n20_420#" 496.656
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_31/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.15408
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_20/m1_76_644#" 1676.22
+cap "lvds_currm_n_20/li_n10_n580#" "lvds_currm_n_20/m1_76_644#" -9.775
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_30/m1_76_644#" 1.36426
+cap "lvds_currm_n_20/li_n10_n580#" "lvds_currm_n_21/m1_n20_420#" 356.133
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_20/m1_76_644#" 2948.81
+cap "lvds_currm_n_31/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_21/li_42_48#" 1.01842
+cap "lvds_currm_n_21/m1_n20_420#" "lvds_currm_n_20/m1_76_644#" -293.04
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_21/m1_n20_420#" 1448.6
+cap "lvds_currm_n_1/li_n10_n580#" "VN" 25.0227
+cap "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_13/m1_76_644#" 0.334524
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_76_644#" -308.811
+cap "lvds_currm_n_12/m1_76_644#" "VN" 349.161
+cap "lvds_currm_n_12/li_42_48#" "VN" -36.5027
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_1/m1_76_644#" 1.8019
+cap "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_12/m1_n20_420#" 192.409
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_n20_420#" 180.163
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/m1_n20_420#" -39.8112
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_1/li_n10_n580#" 178.569
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_1/li_n10_n580#" 593.954
+cap "lvds_currm_n_1/li_n10_n580#" "VN" -40.3169
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_1/li_n10_n580#" -258.746
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_1/m1_76_644#" 1.1326
+cap "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_12/m1_n20_420#" 2.78682
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_76_644#" -2699.75
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_1/li_n10_n580#" 94.3707
+cap "lvds_currm_n_12/li_42_48#" "lvds_currm_n_12/m1_n20_420#" -190.778
+cap "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_12/m1_n20_420#" 3.13517
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_1/li_n10_n580#" 308.875
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/m1_76_644#" 1968.75
+cap "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_12/m1_n20_420#" 1.45973
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 15.8538
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_12/m1_n20_420#" -276.798
+cap "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_12/m1_n20_420#" 1.6422
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_2/li_n10_n580#" 254.939
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_1/m1_n20_420#" 0.458574
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_12/li_42_48#" 1.15985
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/m1_n20_420#" 1699.42
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_12/li_42_48#" -158.262
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/li_42_48#" 437.36
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/li_42_48#" 8612.94
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_14/li_42_48#" -301.659
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 462.602
+cap "lvds_currm_n_2/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 18.5638
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_2/li_n10_n580#" -273.328
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_12/m1_76_644#" 3542.95
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_14/li_42_48#" 2.04718
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_12/m1_76_644#" 186.24
+cap "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_12/m1_76_644#" 2321.08
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_14/m1_76_644#" 790.834
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_14/li_42_48#" -23.2524
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 260.717
+cap "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_14/li_42_48#" 130.564
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_14/li_42_48#" 19.6088
+cap "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_4/li_n10_n580#" 1238.53
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 0.458574
+cap "lvds_currm_n_14/li_42_48#" "lvds_currm_n_4/li_n10_n580#" 326.643
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 0.458574
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_15/li_42_48#" 51.4583
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 72.7217
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/m1_n20_420#" -304.005
+cap "lvds_currm_n_15/m1_76_644#" "VN" -13.2258
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/li_42_48#" 195.826
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_15/li_42_48#" 15.6195
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/li_42_48#" -1429.89
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_4/li_n10_n580#" 1043.5
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_16/li_42_48#" 10.5295
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_16/m1_76_644#" 237.998
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_16/li_42_48#" 183.314
+cap "VN" "lvds_currm_n_16/m1_76_644#" -13.0341
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_16/li_42_48#" 118.663
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_16/li_42_48#" 3239.87
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 0.458574
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 3.21101
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" 3014.92
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/m1_n20_420#" -254.375
+cap "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.85423
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_6/m1_n20_420#" 14.1135
+cap "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_16/m1_n20_420#" 1.48997
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/m1_n20_420#" 0.458574
+cap "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" 9341.19
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_16/m1_76_644#" 13912.1
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_16/m1_76_644#" 839.878
+cap "VN" "lvds_currm_n_16/m1_76_644#" -0.191678
+cap "lvds_currm_n_17/li_42_48#" "lvds_currm_n_16/m1_n20_420#" 409.813
+cap "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_16/m1_n20_420#" 1.67622
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_16/m1_n20_420#" -275.107
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_17/li_42_48#" -128.385
+cap "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_18/m1_n20_420#" 1998.16
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/li_42_48#" -273.85
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_18/li_42_48#" 18.5638
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_17/m1_76_644#" 4403.79
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_17/m1_76_644#" 220.249
+cap "lvds_currm_n_18/li_42_48#" "lvds_currm_n_18/m1_n20_420#" 628.881
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/m1_n20_420#" -274.011
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_18/m1_76_644#" 907.396
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_6/m1_n20_420#" 19.6088
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_19/li_42_48#" -43.4275
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_18/m1_76_644#" -69.5893
+cap "lvds_currm_n_19/li_42_48#" "lvds_currm_n_6/m1_76_644#" 2.04718
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_18/m1_n20_420#" 184.727
+cap "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_19/li_42_48#" 464.819
+cap "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_19/li_42_48#" -239.559
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_6/m1_n20_420#" 0.458574
+cap "lvds_currm_n_5/m1_76_644#" "lvds_currm_n_19/li_42_48#" 1.91091
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/li_42_48#" -742.407
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_19/m1_76_644#" 602.645
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/m1_n20_420#" -586.053
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_19/li_42_48#" 391.364
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_19/li_42_48#" 15.6195
+cap "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_19/li_42_48#" 164.345
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_5/li_n10_n580#" 0.458574
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_19/m1_n20_420#" -41.6506
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_10/m1_76_644#" 0.887325
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_5/li_n10_n580#" 316.015
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_19/m1_n20_420#" -297.143
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_20/li_42_48#" 8.36473
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_5/li_n10_n580#" -223.228
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_19/m1_n20_420#" 3943.17
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_5/li_n10_n580#" 0.458574
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_20/li_42_48#" 3.98928
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_20/m1_76_644#" 13513.8
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_20/li_42_48#" 0.136263
+cap "lvds_currm_n_20/li_42_48#" "lvds_currm_n_19/m1_n20_420#" 33.545
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_21/li_42_48#" 1.15985
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_21/li_42_48#" 76.037
+cap "lvds_currm_n_21/li_42_48#" "lvds_currm_n_10/m1_n20_420#" 11.244
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_21/li_42_48#" 7960.47
+cap "lvds_currm_n_21/m1_n20_420#" "lvds_currm_n_21/li_42_48#" 741.408
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_20/m1_76_644#" 2.36355
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_21/m1_n20_420#" 10.5974
+cap "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_21/m1_n20_420#" 186.411
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_9/li_42_48#" 7.43952
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_21/m1_n20_420#" 0.238136
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/m1_76_644#" 9.31282
+cap "VN" "lvds_currm_n_1/li_n10_n580#" -8.37031
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" -22.8836
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 202.082
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/m1_n20_420#" 32.8992
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/li_n10_n580#" 1916.32
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "lvds_currm_n_1/m1_76_644#" 8.04634
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "lvds_currm_n_13/a_32_332#" -16.0194
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "VN" -146.41
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 14.9141
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "lvds_currm_n_1/li_n10_n580#" 454.901
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_1/li_n10_n580#" -492.339
+cap "VN" "lvds_currm_n_12/a_32_332#" 0.777795
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_12/a_32_332#" -88.3011
+cap "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_12/a_32_332#" -9172.25
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_12/a_32_332#" -65.5673
+cap "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_12/a_32_332#" 21.2798
+cap "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_1/li_n10_n580#" 3.94657
+cap "VN" "lvds_currm_n_1/li_n10_n580#" -28.0514
+cap "VN" "lvds_currm_n_1/m1_76_644#" 96.9147
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/li_n10_n580#" -3733.02
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/m1_76_644#" 38.1491
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "lvds_currm_n_1/m1_76_644#" 8.04634
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_1/li_n10_n580#" 61.2454
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_12/a_32_332#" 302.673
+cap "VN" "lvds_currm_n_1/m1_n20_420#" 103.291
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 169.904
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/li_n10_n580#" 322.444
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/m1_76_644#" -673.341
+cap "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_12/a_32_332#" 17.5509
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/li_n10_n580#" 804.976
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_76_644#" -19.1247
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_12/m1_76_644#" 16.1583
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/m1_76_644#" -141.338
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_12/a_32_332#" 1140.72
+cap "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.08772
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_325_n200#" 5.64829
+cap "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_12/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_13/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 7.30219
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_12/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 9.83353
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_1/li_n10_n580#" 100.779
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/li_n10_n580#" 783.527
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_12/a_32_332#" 1347.02
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 4.82102
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_1/m1_n20_420#" -72.1476
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_12/m1_76_644#" 15.7822
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_12/a_32_332#" -9.55191
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_12/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.08772
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 1222.17
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_12/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 15.2776
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_2/li_n10_n580#" 77.6315
+cap "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_1/m1_n20_420#" 1045.6
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 20.0896
+cap "lvds_currm_n_14/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_2/li_n10_n580#" 2.08772
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_2/m1_n20_420#" 972.851
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_12/m1_76_644#" 26.6101
+cap "lvds_currm_n_2/m1_n20_420#" "lvds_currm_n_2/li_n10_n580#" 1083.73
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_2/m1_n20_420#" -38.9205
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_2/li_n10_n580#" 600.327
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_2/m1_76_644#" 56.7697
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_2/li_n10_n580#" 79.0011
+cap "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_15/a_32_332#" -34.7863
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/a_32_332#" 2191.76
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 6.03429
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_14/m1_76_644#" -393.378
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_4/li_n10_n580#" 848.904
+cap "lvds_currm_n_15/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_15/a_32_332#" 24.853
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_15/a_32_332#" 293.195
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_14/m1_76_644#" 58.5736
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/a_32_332#" 1500.9
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_4/m1_n20_420#" 1099.89
+cap "lvds_currm_n_15/a_32_332#" "lvds_currm_n_15/m1_76_644#" -174.126
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_15/m1_76_644#" -876.171
+cap "lvds_currm_n_15/a_32_332#" "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 17.8863
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_15/m1_76_644#" -16.1669
+cap "lvds_currm_n_15/a_32_332#" "lvds_currm_n_4/m1_n20_420#" 1225.34
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_16/a_32_332#" 661.673
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_16/a_32_332#" -3352.29
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.08772
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_17/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_4/m1_n20_420#" 803.477
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_4/m1_n20_420#" -1681.37
+cap "lvds_currm_n_16/a_32_332#" "lvds_currm_n_16/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 6.96673
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_4/li_n10_n580#" -5096.37
+cap "lvds_currm_n_16/a_32_332#" "lvds_currm_n_17/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 11.8393
+cap "lvds_currm_n_16/a_32_332#" "lvds_currm_n_4/m1_n20_420#" 1098.67
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_17/a_32_332#" "lvds_currm_n_17/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 13.0138
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_17/a_32_332#" 4629.91
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_17/a_32_332#" 661.693
+cap "lvds_currm_n_17/a_32_332#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 5.34629
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" 7878.59
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 1992.4
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_17/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.08772
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 2459.71
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_17/a_32_332#" 1199.25
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_17/m1_76_644#" 77.4385
+cap "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_18/a_32_332#" 19.5068
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.08772
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_18/a_32_332#" 1079.45
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/a_32_332#" 682.81
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/m1_n20_420#" 1301.23
+cap "lvds_currm_n_18/a_32_332#" "lvds_currm_n_17/m1_76_644#" 209.345
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_17/m1_76_644#" -158.274
+cap "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_19/a_32_332#" 26.6101
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_6/li_n10_n580#" 1377.33
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 6.03429
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_6/m1_76_644#" -10.0462
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_19/a_32_332#" 90.088
+cap "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_6/m1_76_644#" 45.4673
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_19/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 24.853
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_6/li_n10_n580#" 850.317
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_6/m1_76_644#" -400.17
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_5/m1_76_644#" 102.381
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_19/a_32_332#" 1662.96
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/m1_76_644#" -1.49764
+cap "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_19/a_32_332#" 22.039
+cap "lvds_currm_n_5/m1_76_644#" "lvds_currm_n_5/m1_n20_420#" -721.301
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_19/a_32_332#" 1244.93
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_5/m1_n20_420#" 18.1667
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_5/m1_n20_420#" 1871.73
+cap "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_19/a_32_332#" 19.9237
+cap "lvds_currm_n_5/m1_76_644#" "lvds_currm_n_19/a_32_332#" -71.0084
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/m1_n20_420#" 5.7008
+cap "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_5/li_n10_n580#" 3.94657
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_10/m1_n20_420#" 349.957
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/m1_n20_420#" 129.647
+cap "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_5/li_n10_n580#" 2.08772
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_20/m1_76_644#" 15.3991
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/m1_n20_420#" -9.19765
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_5/li_n10_n580#" 485.306
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/li_n10_n580#" 30.3091
+cap "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 3.94657
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_10/m1_n20_420#" 253.977
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/m1_76_644#" 38.1491
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_5/li_n10_n580#" 2318.63
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_20/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 4.92931
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_20/a_32_332#" 786.555
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_10/m1_76_644#" -64.3745
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 12.5143
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_11/m1_76_644#" -56.6534
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_11/m1_76_644#" 3.33956
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 12.3388
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/li_n10_n580#" 2088.09
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_10/m1_76_644#" -1.04945
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_10/m1_76_644#" 344.368
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_10/m1_76_644#" 190.405
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_10/li_n10_n580#" 1006.81
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n1127#" 26.1118
+cap "lvds_currm_n_21/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_10/li_n10_n580#" 2.08772
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/m1_76_644#" 9.62321
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/m1_n20_420#" 1600.06
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_20/m1_76_644#" 15.7822
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_9/li_42_48#" -12.7406
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_9/li_42_48#" 1481.76
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_9/li_42_48#" 4940.52
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_10/m1_76_644#" 21.6499
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_10/li_n10_n580#" 2745.79
+cap "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_10/m1_76_644#" -1260.41
+cap "lvds_currm_n_13/a_32_332#" "sky130_fd_sc_hs__inv_16_0/VNB" 2732.5
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_1/m1_76_644#" 24.8974
+cap "sky130_fd_sc_hs__inv_4_0/A" "lvds_currm_n_13/a_32_332#" 0.926845
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 31.4292
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "sky130_fd_sc_hs__inv_16_0/VNB" 1581.33
+cap "lvds_currm_n_13/a_32_332#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 619.333
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/m1_76_644#" 72.8756
+cap "VN" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" -229.232
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "lvds_currm_n_1/m1_n20_420#" 30.4471
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/m1_76_644#" -1936.22
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 85.3733
+cap "lvds_currm_n_1/m1_76_644#" "sky130_fd_sc_hs__inv_16_0/VNB" 2.21552
+cap "lvds_currm_n_12/a_32_332#" "VN" 46.7191
+cap "sky130_fd_sc_hs__inv_16_0/VNB" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" -7446.3
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_76_644#" 242.092
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" -100.004
+cap "lvds_currm_n_1/m1_76_644#" "VN" 470.551
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 384.288
+cap "lvds_currm_n_1/m1_n20_420#" "sky130_fd_sc_hs__inv_16_0/VNB" 15.2294
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 336.042
+cap "lvds_currm_n_12/a_32_332#" "sky130_fd_sc_hs__inv_16_0/VNB" -7375.33
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_76_644#" 1771.91
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_1/m1_76_644#" 2369.06
+cap "lvds_currm_n_12/a_32_332#" "sky130_fd_sc_hs__inv_16_0/VNB" -63.6149
+cap "sky130_fd_sc_hs__inv_16_0/VNB" "lvds_currm_n_1/m1_n20_420#" -333.458
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n509#" "lvds_currm_n_1/m1_76_644#" 0.630645
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "lvds_currm_n_1/m1_76_644#" 2.90097
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 2.87673
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.606724
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 364.786
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_325_n200#" "lvds_currm_n_1/m1_n20_420#" 4.08365
+cap "sky130_fd_sc_hs__inv_16_0/VNB" "lvds_currm_n_1/m1_76_644#" 257.261
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_n1127#" "lvds_currm_n_1/m1_76_644#" 0.630645
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_109#" "lvds_currm_n_1/m1_76_644#" 0.630645
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.78682
+cap "lvds_currm_n_2/m1_76_644#" "sky130_fd_sc_hs__inv_16_0/VNB" 258.886
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 1.45973
+cap "lvds_currm_n_12/a_32_332#" "lvds_currm_n_1/m1_n20_420#" 641.042
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_1/m1_n20_420#" 2600.9
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.4692
+cap "lvds_currm_n_1/m1_n20_420#" "sky130_fd_sc_hs__inv_16_0/VNB" -362.115
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_12/a_32_332#" 9488.9
+cap "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 1.4858
+cap "lvds_currm_n_12/a_32_332#" "sky130_fd_sc_hs__inv_16_0/VNB" -358.277
+cap "sky130_fd_sc_hs__inv_16_1/VNB" "lvds_currm_n_2/m1_n20_420#" -357.084
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_2/m1_n20_420#" 2589.4
+cap "lvds_currm_n_14/a_32_332#" "lvds_currm_n_2/m1_n20_420#" 571.224
+cap "lvds_currm_n_2/m1_76_644#" "sky130_fd_sc_hs__inv_16_1/VNB" 191.816
+cap "lvds_currm_n_2/m1_76_644#" "lvds_nswitch_0/m1_30_110#" 8.98028
+cap "lvds_currm_n_14/a_32_332#" "sky130_fd_sc_hs__inv_16_1/VNB" -432.996
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_14/a_32_332#" 4120.26
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_15/a_32_332#" 6.21807
+cap "sky130_fd_sc_hs__inv_16_2/VNB" "lvds_currm_n_15/m1_76_644#" 399.233
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_15/m1_76_644#" 571.113
+cap "sky130_fd_sc_hs__inv_16_2/VNB" "lvds_currm_n_4/m1_n20_420#" 282.566
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/a_32_332#" 810.456
+cap "sky130_fd_sc_hs__inv_16_2/VNB" "lvds_currm_n_15/a_32_332#" 168.562
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 14.5423
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_15/a_32_332#" -383.631
+cap "lvds_currm_n_15/a_32_332#" "lvds_currm_n_4/m1_n20_420#" 173.052
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_4/m1_n20_420#" -1533.14
+cap "lvds_currm_n_15/a_32_332#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 24.7883
+cap "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 608.402
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_16/m1_76_644#" 4031.76
+cap "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 291.498
+cap "lvds_currm_n_16/a_32_332#" "lvds_currm_n_16/m1_76_644#" 5922.71
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 2.94535
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.85423
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -326.466
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_16/a_32_332#" 378.916
+cap "lvds_currm_n_16/a_32_332#" "lvds_nswitch_0/m1_30_110#" 9.23557
+cap "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.628393
+cap "lvds_currm_n_16/a_32_332#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -59.4982
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -439.164
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" "lvds_currm_n_6/m1_n20_420#" 1.48997
+cap "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -51.3087
+cap "lvds_currm_n_17/a_32_332#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -222.396
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.482055
+cap "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_17/m1_76_644#" 10790.5
+cap "lvds_currm_n_17/a_32_332#" "lvds_currm_n_6/m1_n20_420#" 605.285
+cap "lvds_currm_n_17/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" 27.1582
+cap "lvds_currm_n_17/a_32_332#" "lvds_currm_n_17/m1_76_644#" 14591.6
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/m1_n20_420#" 1.51615
+cap "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_18/a_32_332#" 4991.91
+cap "lvds_currm_n_18/m1_76_644#" "lvds_nswitch_1/m1_30_110#" 0.262617
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/m1_n20_420#" -358.09
+cap "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 223.702
+cap "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_6/m1_n20_420#" 2129.51
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_18/a_32_332#" -432.996
+cap "lvds_currm_n_18/a_32_332#" "lvds_currm_n_6/m1_n20_420#" 758.421
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/m1_n20_420#" -322.06
+cap "lvds_currm_n_19/a_32_332#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" -224.647
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_6/m1_76_644#" -5863.61
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" -68.6509
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_6/m1_n20_420#" -278.314
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_6/m1_n20_420#" 174.328
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_5/m1_76_644#" -91.7725
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/m1_n20_420#" 44.8632
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_5/m1_n20_420#" -304.265
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/m1_76_644#" -4.03028
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_5/m1_76_644#" 1343.58
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_5/m1_76_644#" -141.727
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_19/a_32_332#" 237.113
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" 12.2427
+cap "lvds_currm_n_19/a_32_332#" "lvds_currm_n_5/m1_n20_420#" 328.539
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_0/m1_188_384#" 0.186711
+cap "lvds_currm_n_20/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 8.82812
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 3.00241
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/m1_76_644#" 384.288
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/m1_n20_420#" 520.838
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_n20_420#" 124.731
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -319.527
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_20/a_32_332#" 1115.21
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -33.0346
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 0.651667
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_11/m1_76_644#" 765.422
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_11/m1_76_644#" 5936.28
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -12.2597
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_109#" 2.91098
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_11/m1_76_644#" 7.00227
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_10/m1_n20_420#" 88.5759
+cap "lvds_currm_n_20/a_32_332#" "lvds_currm_n_10/m1_n20_420#" 245.667
+cap "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_20/a_32_332#" 225.571
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_10/m1_76_644#" -0.515271
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/m1_n20_420#" 886.309
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/m1_n20_420#" 2154.85
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -1341.41
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 1117.41
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_10/m1_76_644#" -1.56472
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_n20_420#" -1910.52
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_11/m1_76_644#" -1.56472
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n1127#" "lvds_currm_n_10/m1_n20_420#" 6.68961
+cap "lvds_currm_n_21/a_32_332#" "lvds_currm_n_10/m1_76_644#" 371.332
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_10/m1_n20_420#" 2133.48
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_10/m1_76_644#" -4048.76
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_1/m1_188_384#" 0.187333
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_9/li_42_48#" -3315.97
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/m1_n20_420#" 431.029
+cap "lvds_currm_n_10/m1_n20_420#" "lvds_currm_n_9/li_42_48#" 742.748
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_9/li_42_48#" 9505.75
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_0/a_32_332#" 17.8257
+cap "lvds_currm_n_0/a_32_332#" "sky130_fd_sc_hs__inv_16_0/A" 10.166
+cap "sky130_fd_sc_hs__inv_4_0/A" "lvds_currm_n_0/a_32_332#" 1.8
+cap "lvds_currm_n_0/a_32_332#" "lvds_currm_n_1/a_32_332#" 27.8627
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_8/VNB" 549.156
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/VPB" -218.192
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_0/A" -2.66571
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 13.3141
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 5.07123
+cap "lvds_currm_n_0/a_32_332#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 142.083
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 4.2819
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/VPB" -0.131849
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" -86.8374
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" 5.92334
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_0/A" 52.5249
+cap "lvds_currm_n_0/a_32_332#" "sky130_fd_sc_hs__inv_16_8/VNB" 1436.39
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_0/VPB" -45.1168
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/A" -1284.24
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_8/VNB" 4.51109
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "VN" -4.61069
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "VN" -30.3774
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/Y" 103.518
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/A" 49.2933
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" 4.24974
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_1/Y" 12.5556
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" 2.16191
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_0/VPB" 2.346
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_1/a_32_332#" 313.292
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 36.6505
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_1/m1_76_644#" 124.015
+cap "lvds_currm_n_1/a_32_332#" "lvds_currm_n_1/m1_76_644#" -206.218
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_0/a_32_332#" -46.0266
+cap "sky130_fd_sc_hs__inv_16_0/Y" "VN" 27.9742
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_0/Y" -191.511
+cap "sky130_fd_sc_hs__inv_16_0/A" "VN" 15.2787
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_0/A" 11.5735
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 3.9058
+cap "lvds_currm_n_1/a_32_332#" "VN" 24.6213
+cap "lvds_currm_n_1/a_32_332#" "lvds_currm_n_2/a_32_332#" 0.675634
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "VN" 0.154557
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/VPB" -40.3911
+cap "lvds_currm_n_1/m1_76_644#" "VN" 90.0939
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/a_32_332#" -16.6246
+cap "lvds_currm_n_0/a_32_332#" "lvds_currm_n_1/a_32_332#" 66.1835
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 229.654
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/m1_76_644#" 71.8253
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_0/a_32_332#" -1663.15
+cap "sky130_fd_sc_hs__inv_16_0/A" "sky130_fd_sc_hs__inv_4_0/A" 18.4159
+cap "lvds_currm_n_0/a_32_332#" "lvds_currm_n_1/m1_76_644#" 17.8257
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_8/VNB" -3668.91
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/m1_76_644#" 62.2214
+cap "sky130_fd_sc_hs__inv_16_0/A" "sky130_fd_sc_hs__inv_16_0/Y" -531.902
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_8/VNB" 46.4446
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_0/Y" 85.879
+cap "lvds_currm_n_0/a_32_332#" "lvds_currm_n_1/a_32_332#" 0.357985
+cap "lvds_currm_n_1/a_32_332#" "lvds_currm_n_1/m1_76_644#" -3871.45
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_1/Y" -402.522
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_2/a_32_332#" 188.033
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.99
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_1/Y" -0.744674
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/m1_76_644#" -21.9258
+cap "lvds_currm_n_1/a_32_332#" "lvds_currm_n_2/a_32_332#" 66.421
+cap "lvds_currm_n_2/a_32_332#" "lvds_currm_n_3/a_32_332#" 0.456857
+cap "lvds_currm_n_1/m1_76_644#" "lvds_currm_n_2/a_32_332#" -113.577
+cap "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_447_727#" "lvds_currm_n_1/m1_76_644#" 0.504516
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_8/VNB" -127.761
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/Y" 178.157
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_1/a_32_332#" -29.958
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" -968.441
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/a_32_332#" -22.8818
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 2.52845
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n509#" 1.27971
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_1/m1_76_644#" -589.961
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/VPB" -58.1749
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/a_32_332#" 26.5055
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_1/Y" -1098.06
+cap "sky130_fd_sc_hs__inv_16_0/VPB" "sky130_fd_sc_hs__inv_16_0/A" -7.59618
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/m1_76_644#" 705.401
+cap "lvds_nswitch_0/a_82_1150#" "sky130_fd_sc_hs__inv_16_0/Y" -0.205
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" 1.91281
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 1133.31
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/VPB" 48.5389
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.173
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/m1_76_644#" -27.1726
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.7777
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 28.905
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_nswitch_0/m1_30_110#" 0.442642
+cap "lvds_nswitch_0/a_82_1150#" "sky130_fd_sc_hs__inv_16_8/VNB" -0.162346
+cap "lvds_currm_n_2/a_32_332#" "lvds_currm_n_3/a_32_332#" 66.421
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/VPB" -39.7228
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_3/a_32_332#" 318.292
+cap "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#" "lvds_currm_n_2/m1_76_644#" 7.47208
+cap "lvds_nswitch_0/a_82_1150#" "sky130_fd_sc_hs__inv_16_3/Y" 0.136667
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#" 3.18765
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_3/a_32_332#" 9.89498
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_0/VPB" 148.807
+cap "lvds_currm_n_1/a_32_332#" "lvds_currm_n_2/a_32_332#" 0.4797
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 801.815
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/a_32_332#" -48.9495
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_3/Y" -1522.36
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_2/a_32_332#" 2994.87
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/a_32_332#" 148.277
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_2/a_32_332#" 43.9429
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_2/m1_76_644#" 318.974
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "lvds_currm_n_2/m1_76_644#" 541.899
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_sc_hs__inv_16_8/VNB" -127.761
+cap "lvds_currm_n_3/a_32_332#" "lvds_currm_n_4/a_32_332#" 0.345108
+cap "lvds_nswitch_0/m1_30_110#" "lvds_nswitch_0/a_82_1150#" 274.65
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 20.41
+cap "lvds_currm_n_3/a_32_332#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 111.759
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#" "lvds_currm_n_2/m1_76_644#" 12.5293
+cap "lvds_nswitch_0/a_82_1150#" "sky130_fd_sc_hs__inv_16_3/Y" 1.08987
+cap "lvds_nswitch_0/m1_30_728#" "lvds_nswitch_0/a_82_1150#" -0.0642819
+cap "lvds_currm_n_4/a_32_332#" "sky130_fd_sc_hs__inv_16_9/VNB" -83.4221
+cap "lvds_nswitch_0/m1_30_728#" "lvds_nswitch_0/m1_30_110#" -134.152
+cap "sky130_fd_sc_hs__inv_16_3/VPB" "sky130_fd_sc_hs__inv_16_3/Y" 73.1626
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_1/A" 10.9738
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_4/a_32_332#" -1028.13
+cap "lvds_currm_n_2/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 6.03887
+cap "lvds_nswitch_0/m1_30_728#" "sky130_fd_sc_hs__inv_16_3/Y" 0.189292
+cap "lvds_currm_n_2/m1_76_644#" "sky130_fd_sc_hs__inv_16_9/VNB" 441.241
+cap "lvds_currm_n_4/a_32_332#" "lvds_nswitch_0/a_82_1150#" 1.23
+cap "lvds_nswitch_0/a_82_1150#" "sky130_fd_sc_hs__inv_16_1/A" 2.74278
+cap "lvds_currm_n_3/a_32_332#" "lvds_currm_n_4/a_32_332#" 66.1814
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "lvds_nswitch_0/a_82_1150#" 100.339
+cap "lvds_currm_n_3/a_32_332#" "sky130_fd_sc_hs__inv_16_9/VNB" 51.6311
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 25.9636
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -129.338
+cap "sky130_fd_sc_hs__inv_16_3/VPB" "sky130_fd_sc_hs__inv_16_1/A" 29.5826
+cap "lvds_nswitch_0/m1_30_110#" "sky130_fd_sc_hs__inv_16_9/VNB" -5.48721
+cap "lvds_currm_n_3/a_32_332#" "lvds_currm_n_2/m1_76_644#" 2256.58
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_1/A" 337.31
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_0/m1_30_728#" 0.421336
+cap "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 997.768
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_3/VPB" 4.25251
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_3/Y" 23.413
+cap "lvds_currm_n_3/a_32_332#" "lvds_currm_n_2/a_32_332#" 0.726818
+cap "lvds_currm_n_3/a_32_332#" "lvds_nswitch_0/a_82_1150#" 33.21
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_0/a_82_1150#" -1281.47
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 12.8649
+cap "lvds_nswitch_0/m1_126_952#" "lvds_currm_n_3/m1_76_644#" -682.066
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_8/a_32_332#" 31.2112
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_6/VNB" -110.438
+cap "lvds_nswitch_0/a_82_1150#" "lvds_currm_n_3/m1_76_644#" 68.6973
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_3/a_32_332#" 32.1812
+cap "lvds_currm_n_4/a_32_332#" "lvds_nswitch_0/a_82_1150#" 172.2
+cap "sky130_fd_sc_hs__inv_16_4/Y" "lvds_currm_n_3/m1_76_644#" -3.95481
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_3/m1_76_644#" 986.147
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/m1_76_644#" 463.405
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_nswitch_0/a_82_1150#" -291.862
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_currm_n_3/a_32_332#" 1.88235
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_currm_n_3/m1_76_644#" 1576.61
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -64.055
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 14.1435
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/m1_76_644#" 31.1107
+cap "lvds_currm_n_4/a_32_332#" "sky130_fd_sc_hs__inv_16_6/VNB" 44.3337
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 173.169
+cap "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 20.8238
+cap "lvds_nswitch_1/m1_30_110#" "lvds_nswitch_0/m1_126_952#" 1.43334
+cap "lvds_nswitch_0/a_82_1150#" "lvds_currm_n_4/a_32_332#" 2.46
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/m1_76_644#" 300.122
+cap "lvds_currm_n_8/a_32_332#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 78.9569
+cap "lvds_currm_n_8/a_32_332#" "lvds_currm_n_7/a_32_332#" 0.71597
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_4/a_32_332#" -114.838
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 3.98894
+cap "lvds_currm_n_8/a_32_332#" "lvds_currm_n_4/m1_76_644#" -230.114
+cap "lvds_nswitch_0/a_82_1150#" "lvds_nswitch_0/m1_126_952#" 2359.85
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_4/m1_76_644#" -138.65
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_30_110#" 4.63636
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_3/m1_n20_420#" 0.67242
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/m1_126_952#" 1148.18
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 231.159
+cap "lvds_currm_n_4/m1_76_644#" "lvds_nswitch_0/m1_126_952#" -250.944
+cap "lvds_nswitch_0/a_82_1150#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -147.488
+cap "lvds_nswitch_0/m1_126_952#" "lvds_switch_p_0/m1_274_438#" 0.811509
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/m1_76_644#" -109.601
+cap "lvds_nswitch_0/a_82_1150#" "lvds_currm_n_4/m1_76_644#" 79.0952
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/a_32_332#" -47.2452
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 0.376582
+cap "lvds_currm_n_8/a_32_332#" "lvds_currm_n_4/a_32_332#" 66.1835
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_4/m1_76_644#" 7.65727
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_4/m1_76_644#" 1387.08
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 36.6505
+cap "lvds_currm_n_8/a_32_332#" "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -14.0056
+cap "lvds_nswitch_0/a_82_1150#" "lvds_currm_n_8/a_32_332#" 66.42
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -161.952
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_switch_p_0/w_230_116#" 0.714874
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_8/a_32_332#" -118.248
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_30_110#" -55.5526
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_1/m1_30_110#" 615.224
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -129.338
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -18.0388
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 2.58262
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -23.1372
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -157.494
+cap "lvds_currm_n_7/a_32_332#" "lvds_nswitch_0/m1_126_952#" 192.407
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_7/a_32_332#" -454.549
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_0/m1_126_952#" -201.819
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_8/a_32_332#" 66.421
+cap "lvds_nswitch_0/m1_126_952#" "lvds_currm_n_8/a_32_332#" 80.1905
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.99
+cap "lvds_currm_n_4/a_32_332#" "lvds_currm_n_8/a_32_332#" 0.347609
+cap "lvds_nswitch_0/a_82_22#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 0.376582
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_8/a_32_332#" 889.059
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_1/m1_30_110#" -55.781
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 47.3888
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/m1_30_110#" -592.484
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n509#" "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 1.25086
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/m1_76_644#" 828.57
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 44.5107
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_1/a_82_1150#" 369
+cap "lvds_switch_p_1/w_230_116#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 0.600277
+cap "lvds_nswitch_0/m1_126_952#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -340.435
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_8/a_32_332#" 17.5814
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_6/a_32_332#" 0.47495
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -478.776
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/a_82_1150#" -1829.86
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 1195.03
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_6/m1_76_644#" 3819.93
+cap "lvds_switch_p_0/m1_178_212#" "lvds_nswitch_1/m1_126_952#" -256.706
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/m1_76_644#" 3994.58
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -387.896
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -142.319
+cap "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_111_n705#" "lvds_currm_n_7/a_32_332#" 0.46125
+cap "lvds_nswitch_1/m1_126_952#" "lvds_currm_n_6/m1_76_644#" -211.356
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#" 3.09291
+cap "lvds_nswitch_1/m1_126_952#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -385.234
+cap "lvds_switch_p_0/m1_178_212#" "lvds_currm_n_7/a_32_332#" 184.5
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/a_32_332#" -48.1378
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/m1_76_644#" -23.9782
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_5/a_32_332#" 0.355333
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_1/m1_126_952#" -1749.37
+cap "lvds_switch_p_0/m1_178_212#" "lvds_currm_n_6/a_32_332#" 109.466
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 2.58988
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_7/a_32_332#" 66.421
+cap "lvds_switch_p_0/m1_178_212#" "lvds_currm_n_6/m1_76_644#" -57.551
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_6/m1_76_644#" 5683.84
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 1.19417
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.7777
+cap "lvds_currm_n_7/a_32_332#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -123.81
+cap "lvds_switch_p_0/m1_178_212#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -686.667
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_6/m1_76_644#" 259.33
+cap "lvds_switch_p_0/m1_178_212#" "lvds_nswitch_1/a_82_1150#" 739.168
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -8.68012
+cap "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_7/a_32_332#" 136.865
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_5/a_32_332#" -555.02
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_5/a_32_332#" 66.1814
+cap "lvds_currm_n_6/m1_76_644#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" 0.125853
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/a_82_22#" -124.681
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 19.9389
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 335.927
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/a_32_332#" -121.912
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -129.338
+cap "lvds_nswitch_1/m1_126_952#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" -129.704
+cap "lvds_currm_n_6/a_32_332#" "lvds_currm_n_7/a_32_332#" 0.685286
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/a_32_332#" 2405.36
+cap "lvds_switch_p_1/a_230_116#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" 11.3339
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 908.711
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/a_32_332#" 187.319
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" -28.983
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_126_952#" 199.511
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" -485.175
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_switch_p_1/w_230_116#" 8.06694
+cap "lvds_nswitch_1/m1_126_952#" "lvds_nswitch_1/a_82_22#" 3870.98
+cap "lvds_nswitch_1/a_82_22#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" 242.626
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_5/a_32_332#" -82.5775
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#" 11.6052
+cap "lvds_switch_p_1/m1_274_438#" "lvds_nswitch_1/m1_126_952#" 0.811509
+cap "lvds_switch_p_1/a_230_116#" "lvds_nswitch_1/a_82_22#" 5.99026
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 25.9636
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/m1_126_952#" -106.984
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" "lvds_currm_n_6/a_32_332#" 274.114
+cap "lvds_currm_n_6/m1_76_644#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" 18.1251
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n225_n509#" 4.86154
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 132.994
+cap "lvds_currm_n_5/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" 55.0312
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/a_32_332#" -136.083
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n509#" 20.8238
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_6/m1_76_644#" -280.542
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_6/m1_76_644#" -6301.83
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n417_n509#" 31.1107
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_nswitch_1/m1_30_728#" 0.17284
+cap "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_5/a_32_332#" 1156.74
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -6.44611
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_nswitch_1/m1_30_110#" 325.903
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 15.1387
+cap "lvds_currm_n_5/a_32_332#" "lvds_nswitch_1/m1_30_110#" 12.3
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_11/a_32_332#" 2.02715
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_5/a_32_332#" -117.635
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_5/a_32_332#" 33.2095
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -28.983
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_6/m1_76_644#" 484.37
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "lvds_nswitch_1/m1_30_110#" 10.3189
+cap "lvds_nswitch_1/m1_30_728#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" 0.125853
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n561_n1215#" "lvds_currm_n_5/a_32_332#" 28.6321
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_nswitch_1/a_82_22#" 0.295181
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 13.9317
+cap "lvds_nswitch_1/m1_30_110#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -55.5594
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -69.9359
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 0.165789
+cap "lvds_currm_n_11/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" 13.2462
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "lvds_diffamp_0/m1_70_1210#" -6.44611
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -144.78
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 0.127688
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" -36.595
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 58.4348
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/m1_76_644#" 130.718
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_5/a_32_332#" 33.2115
+cap "lvds_currm_n_11/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" 38.7923
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 2.73992
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_5/m1_76_644#" -390.608
+cap "lvds_currm_n_10/a_32_332#" "lvds_currm_n_11/a_32_332#" 0.761429
+cap "lvds_currm_n_5/a_32_332#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 1.89831
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 29.2174
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/m1_76_644#" 8.08171
+cap "lvds_currm_n_5/m1_76_644#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 3328.56
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/m1_76_644#" 239.234
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" 9.3738
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" -9.78626
+cap "lvds_currm_n_11/a_32_332#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 7.38
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_diffamp_0/m1_70_1210#" -10.4857
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" -1.42109e-14
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 4.87363
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" 2.64471
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 232.218
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.043
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -7.8252
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" 0.0630169
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 72.9199
+cap "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_495_n705#" "lvds_currm_n_11/a_32_332#" 0.337817
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "OutP" 28.5376
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_10/m1_76_644#" -336.033
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/a_32_332#" 54.7214
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_11/m1_76_644#" 150.639
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_778#" 0.334275
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_diffamp_1/a_132_72#" 0.275888
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -76.7108
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -416.935
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutP" 34.2476
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" -28.6243
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_76_644#" -59.3455
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/a_32_332#" -13.1059
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.99
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_n_10/m1_76_644#" -154.886
+cap "lvds_currm_n_10/a_32_332#" "lvds_currm_n_9/a_32_332#" 0.494536
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" -38.1981
+cap "lvds_currm_n_10/a_32_332#" "lvds_currm_n_11/a_32_332#" 66.421
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_11/a_32_332#" 1620.13
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_11/a_32_332#" 59.04
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/a_32_332#" 39.0345
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 2.62319
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_10/a_32_332#" 142.065
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "OutP" 256.079
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/m1_76_644#" 185.967
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 85.0079
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_543_n509#" 1.21359
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_11/m1_76_644#" 24.4097
+cap "lvds_currm_n_10/m1_76_644#" "OutP" 76.5948
+cap "lvds_currm_n_10/a_32_332#" "lvds_currm_n_10/m1_76_644#" 159.962
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_10/m1_76_644#" -196.013
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 4.0695
+cap "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" 62.2214
+cap "lvds_diffamp_0/m1_70_1210#" "m1_15690_6180#" 9.15349
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 49.8496
+cap "lvds_diffamp_0/m1_70_1210#" "OutP" 101.232
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_diffamp_0/m1_70_1210#" 138.918
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_11/a_32_332#" -121.152
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" -996.523
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_0/m1_70_1210#" 7.38
+cap "lvds_currm_n_10/m1_76_644#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -151.159
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" -385.537
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 12.11
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/a_32_332#" -405.398
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 25.9636
+cap "OutP" "lvds_diffamp_1/m1_70_778#" 41.5191
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "OutP" -10.8621
+cap "lvds_currm_n_10/m1_76_644#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" -465.81
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -566.103
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/a_32_332#" 227.245
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_1/m1_70_778#" -9.67757
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_76_644#" -2117.22
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" -28.9349
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "VN" -714.78
+cap "OutP" "lvds_currm_n_10/m1_76_644#" 26.7173
+cap "lvds_currm_n_10/a_32_332#" "lvds_currm_n_9/a_32_332#" 66.421
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_diffamp_0/m1_70_1210#" 178.214
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" -123.989
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -106.28
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" 37.1436
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_9/a_32_332#" 87.751
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_diffamp_0/m1_70_1210#" 2.97324
+cap "OutP" "lvds_diffamp_0/m1_70_1210#" 142.647
+cap "VN" "lvds_currm_n_10/m1_76_644#" 133.739
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_9/a_32_332#" 23.4593
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" 388.052
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_159_n509#" 2.38863
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_9/a_32_332#" -8.07704
+cap "lvds_diffamp_1/m1_70_1210#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 54.5235
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_0/m1_70_1210#" -1559.65
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_9/a_32_332#" 371.554
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_1/m1_70_778#" 2.047
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_diffamp_1/m1_70_1210#" 1.17057
+cap "VN" "lvds_currm_n_9/a_32_332#" -421.472
+cap "lvds_currm_n_11/a_32_332#" "lvds_currm_n_10/a_32_332#" 0.444167
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_1/m1_70_1210#" -40.2805
+cap "lvds_diffamp_1/m1_70_778#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 4.44997
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_currm_n_10/a_32_332#" 121.77
+cap "lvds_currm_n_11/m1_76_644#" "lvds_currm_n_10/m1_76_644#" -1.82867
+cap "OutP" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 7.92614
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/a_32_332#" -121.152
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_9/a_32_332#" 198.574
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/m1_76_644#" 403.165
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" -144.459
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" 157.008
+cap "lvds_currm_n_9/a_32_332#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n177_n1215#" 0.648243
+cap "lvds_diffamp_1/m1_70_778#" "OutP" -428.528
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n509#" 10.8081
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "VN" -131.301
+cap "lvds_currm_n_9/a_32_332#" "VN" -1078.38
+cap "VN" "VN" -24.5358
+cap "lvds_currm_n_10/m1_76_644#" "VN" -1730.43
+cap "lvds_diffamp_1/m1_70_778#" "lvds_currm_n_10/m1_76_644#" -254.077
+cap "lvds_diffamp_1/m1_70_778#" "lvds_diffamp_1/m1_70_1210#" 1.92699
+cap "lvds_currm_n_10/m1_76_644#" "OutP" 66.7378
+cap "lvds_diffamp_1/m1_70_1210#" "OutP" 428.998
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_9/a_32_332#" -151.164
+cap "lvds_currm_n_9/a_32_332#" "lvds_currm_n_10/m1_76_644#" 4119.82
+cap "lvds_currm_n_9/a_32_332#" "VN" 342.834
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "VN" -263.712
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_10/m1_76_644#" 553.424
+cap "lvds_diffamp_1/m1_70_778#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 1.15555
+cap "lvds_currm_n_10/m1_76_644#" "VN" -458.905
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_diffamp_1/m1_70_1210#" 122.233
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n33_n509#" 4.69767
+cap "VN" "lvds_diffamp_1/m1_70_1210#" 234.955
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_1/m1_70_1210#" -744.879
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "lvds_diffamp_1/m1_70_778#" 33.0853
+cap "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n509#" "VN" 391.215
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_0/a_132_72#" 0.508966
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_0/A" 15.0731
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_8/VPB" -20.6971
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_8/VNB" 7.89339
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/Y" 2.51276
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_0/A" -69.4036
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" -0.13542
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/A" -3.46086
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -358.331
+cap "sky130_fd_sc_hs__inv_16_0/A" "sky130_fd_sc_hs__inv_16_8/A" -0.282247
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -33.637
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/A" -7.00712
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "VN" -19.307
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" 16.4377
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" 4.11318
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -49.0127
+cap "sky130_fd_sc_hs__inv_16_0/Y" "VN" 23.895
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_1/Y" 0.367233
+cap "sky130_fd_sc_hs__inv_16_0/A" "VN" 10.5928
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/A" 17.9644
+cap "sky130_fd_sc_hs__inv_4_0/A" "sky130_fd_sc_hs__inv_16_0/A" 3.95059
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 3.981
+cap "sky130_fd_sc_hs__inv_16_8/Y" "VN" 2.50557
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/A" 18.2582
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_727#" 2.346
+cap "sky130_fd_sc_hs__inv_16_0/A" "sky130_fd_sc_hs__inv_16_8/A" 4.63732
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "VN" 0.489566
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/Y" 58.5584
+cap "sky130_fd_sc_hs__inv_16_8/A" "VN" 8.20587
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" 2.83108
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -137.912
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/A" -183.113
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_0/A" 6.10015
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/A" 427.375
+cap "sky130_fd_sc_hs__inv_16_1/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -139.673
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/Y" -46.3828
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_8/VPB" 6.21425
+cap "sky130_fd_sc_hs__inv_16_1/Y" "sky130_fd_sc_hs__inv_16_0/Y" -91.1433
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_9/Y" -2.94333
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_0/Y" 214.424
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_0/Y" -371.869
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_0/A" -6.00554
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_9/Y" 41.1973
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_0/A" 5.5867
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" 9.27379
+cap "sky130_fd_sc_hs__inv_16_1/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 21.1146
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -85.7261
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 146.084
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_9/Y" 3.07111
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_0/Y" 29.912
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" 5.32388
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_9/Y" -70.7351
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -857.65
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_9/Y" -0.432778
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_0/Y" -1559.33
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/Y" 559.706
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -340.663
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_9/Y" -1.29714
+cap "sky130_fd_sc_hs__inv_16_0/A" "sky130_fd_sc_hs__inv_16_0/Y" 0.448523
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 124.593
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_9/Y" 33.5856
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" -101.64
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -438.337
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_nswitch_0/m1_126_952#" 0.56812
+cap "sky130_fd_sc_hs__inv_16_0/Y" "sky130_fd_sc_hs__inv_16_8/VNB" -278.895
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" 0.449492
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_9/Y" 0.136667
+cap "lvds_switch_p_0/m1_274_848#" "sky130_fd_sc_hs__inv_16_8/VPB" 0.555924
+cap "lvds_nswitch_0/m1_30_728#" "sky130_fd_sc_hs__inv_16_8/VNB" 1.28875
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_3/A" 589.403
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_9/VPB" 234.129
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "lvds_switch_p_0/m1_274_1710#" 1.27239
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_3/A" 3.20276
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "sky130_fd_sc_hs__inv_16_9/A" -7.52572
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_9/VPB" -753.083
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_3/Y" 41.743
+cap "lvds_nswitch_0/m1_126_952#" "lvds_switch_p_0/m1_274_1710#" -3364.54
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "sky130_fd_sc_hs__inv_16_9/Y" 129.748
+cap "sky130_fd_sc_hs__inv_16_9/Y" "lvds_switch_p_0/m1_274_1710#" 6.53721
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_9/Y" 2.09871
+cap "sky130_fd_sc_hs__inv_16_3/Y" "lvds_nswitch_0/m1_30_728#" 32.7571
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_9/A" -1.13325
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_0/m1_30_728#" -117.355
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_3/A" 439.631
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_9/Y" 232.624
+cap "sky130_fd_sc_hs__inv_16_1/A" "sky130_fd_sc_hs__inv_16_9/VPB" 28.2065
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_1/A" 218.521
+cap "sky130_fd_sc_hs__inv_16_9/Y" "lvds_nswitch_0/m1_30_728#" 94.6829
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "lvds_currm_n_3/a_32_332#" 0.224199
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_9/VPB" 11.4809
+cap "sky130_fd_sc_hs__inv_16_3/Y" "sky130_fd_sc_hs__inv_16_9/VNB" 66.6163
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_9/A" 425.583
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_9/VNB" 13.9254
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "lvds_nswitch_0/m1_30_728#" 10.3909
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_9/Y" 167.366
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "sky130_fd_sc_hs__inv_16_3/A" 707.378
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_4/Y" 34.8162
+cap "lvds_currm_n_3/m1_76_644#" "sky130_fd_sc_hs__inv_16_4/Y" -818.782
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "sky130_fd_sc_hs__inv_16_6/VPB" 343.86
+cap "sky130_fd_sc_hs__inv_16_4/A" "sky130_fd_sc_hs__inv_16_6/Y" -0.194796
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_0/m1_126_952#" -250.79
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_nswitch_0/m1_126_952#" 107.535
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_6/VPB" -0.203843
+cap "lvds_currm_n_4/a_32_332#" "sky130_fd_sc_hs__inv_16_6/Y" 47.0252
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "sky130_fd_sc_hs__inv_16_6/Y" -635.854
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_6/Y" -3903.04
+cap "lvds_currm_n_3/m1_76_644#" "sky130_fd_sc_hs__inv_16_6/Y" 626.766
+cap "sky130_fd_sc_hs__inv_16_6/VNB" "lvds_nswitch_0/m1_126_952#" -272.981
+cap "sky130_fd_sc_hs__inv_16_4/Y" "sky130_fd_sc_hs__inv_16_6/Y" -343.741
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_6/Y" 44.9002
+cap "lvds_currm_n_3/m1_76_644#" "lvds_nswitch_0/m1_126_952#" -492.543
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "sky130_fd_sc_hs__inv_16_6/Y" -2134.61
+cap "lvds_nswitch_0/a_82_1150#" "lvds_nswitch_1/a_82_1150#" 1420.52
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/a_82_1150#" -210.685
+cap "lvds_currm_n_4/m1_76_644#" "lvds_nswitch_1/a_82_1150#" 10.8755
+cap "lvds_nswitch_0/a_82_1150#" "lvds_nswitch_0/m1_126_952#" 2562.23
+cap "lvds_currm_n_4/m1_76_644#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 4.63636
+cap "lvds_currm_n_4/m1_76_644#" "lvds_nswitch_0/m1_126_952#" 223.602
+cap "lvds_switch_p_0/a_230_1916#" "lvds_nswitch_1/a_82_1150#" 0.0220588
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/a_230_1916#" 498.613
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" 0.466649
+cap "lvds_currm_n_4/m1_76_644#" "lvds_nswitch_0/a_82_1150#" 1818.25
+cap "lvds_switch_p_0/a_230_1916#" "lvds_nswitch_0/m1_126_952#" 1881.31
+cap "lvds_nswitch_0/m1_126_952#" "lvds_switch_p_0/m1_274_1710#" 680.654
+cap "lvds_switch_p_0/a_230_1916#" "lvds_switch_p_0/m1_274_1710#" 40.7533
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/a_82_1150#" 0.60101
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/a_82_1150#" 1.12975
+cap "lvds_nswitch_1/m1_126_952#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 5.91316
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_1/a_82_1150#" 1697.8
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 228.044
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_0/m1_126_952#" 1174.06
+cap "lvds_nswitch_1/m1_126_952#" "lvds_nswitch_0/m1_126_952#" 2.75626
+cap "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/m1_126_952#" 2956.61
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" -300.773
+cap "lvds_nswitch_1/a_82_1150#" "lvds_currm_n_6/m1_76_644#" -44.4435
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" -2630.09
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_126_952#" 31.3708
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 185.193
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_0/m1_126_952#" 56.6755
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_0/m1_126_952#" 291.924
+cap "lvds_nswitch_1/m1_126_952#" "lvds_switch_p_1/m1_178_1484#" -1.58514
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 1.42908
+cap "lvds_nswitch_1/m1_126_952#" "lvds_currm_n_6/m1_76_644#" -226.027
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_1/m1_126_952#" 1032.32
+cap "lvds_switch_p_0/a_230_116#" "lvds_nswitch_1/a_82_1150#" 0.0220588
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/a_82_1150#" 80.0791
+cap "lvds_nswitch_1/m1_126_952#" "lvds_nswitch_0/m1_126_952#" 70.278
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_0/m1_126_952#" 2853.67
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/a_82_22#" 1.12975
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_0/m1_274_1710#" 65.1107
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/m1_126_952#" -15.8603
+cap "lvds_switch_p_0/a_230_116#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 0.607143
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/a_82_1150#" 105.561
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_0/m1_126_952#" 41.6571
+cap "lvds_nswitch_0/a_82_22#" "lvds_nswitch_1/a_82_1150#" 0.285923
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/m1_126_952#" 5.064
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/a_82_1150#" -495.869
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/a_82_1150#" 1835.38
+cap "lvds_switch_p_0/m1_178_212#" "lvds_nswitch_1/a_82_1150#" -593.386
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -201.646
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_1/m1_126_952#" -2086.2
+cap "lvds_currm_n_6/m1_76_644#" "lvds_switch_p_0/m1_178_212#" -1.15815
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/a_82_1150#" -314.47
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/m1_126_952#" -395.135
+cap "lvds_switch_p_0/m1_178_212#" "lvds_switch_p_1/m1_274_1710#" 97.0604
+cap "lvds_switch_p_0/m1_178_212#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 125.118
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 343.86
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 944.803
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_126_952#" -199.161
+cap "lvds_switch_p_0/m1_178_212#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 60.2559
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" -484.04
+cap "lvds_currm_n_6/m1_76_644#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 5.22791
+cap "lvds_switch_p_0/m1_178_212#" "lvds_nswitch_1/m1_126_952#" 156.861
+cap "lvds_nswitch_1/m1_126_952#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -210.93
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 32.3312
+cap "lvds_switch_p_0/m1_178_212#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 142.584
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -7.336
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/m1_126_952#" 119.333
+cap "lvds_switch_p_0/a_230_116#" "lvds_nswitch_1/a_82_1150#" 0.858745
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/a_82_1150#" 5000.32
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "OutN" 961.57
+cap "OutN" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 149.189
+cap "lvds_switch_p_1/w_230_116#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 299.205
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" "lvds_nswitch_1/a_82_22#" 19.5619
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" "lvds_switch_p_1/a_230_116#" 11.3339
+cap "lvds_nswitch_1/m1_126_952#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 2186.02
+cap "lvds_nswitch_1/a_82_22#" "lvds_nswitch_1/m1_126_952#" 2397.84
+cap "lvds_switch_p_1/m1_274_1710#" "OutN" 383.94
+cap "lvds_switch_p_1/a_230_116#" "lvds_nswitch_1/m1_126_952#" 4241.74
+cap "lvds_nswitch_1/a_82_22#" "lvds_switch_p_1/a_230_116#" 95.5582
+cap "lvds_switch_p_1/a_230_116#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 500.953
+cap "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/m1_126_952#" 877.633
+cap "lvds_switch_p_1/w_230_116#" "OutN" 232.348
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_nswitch_1/m1_126_952#" 33.3901
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -68.3707
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_nswitch_1/a_82_22#" 2.58405
+cap "lvds_nswitch_1/a_82_22#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -106.008
+cap "lvds_currm_n_6/m1_76_644#" "lvds_nswitch_1/m1_126_952#" 325.752
+cap "lvds_currm_n_6/m1_76_644#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 36.5953
+cap "lvds_nswitch_1/a_82_22#" "lvds_currm_n_6/m1_76_644#" 361.386
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" -212.953
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 221.031
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/a_230_116#" -0.0362887
+cap "OutN" "lvds_nswitch_1/m1_126_952#" -395.032
+cap "lvds_switch_p_1/w_230_116#" "lvds_nswitch_1/m1_126_952#" 1171.4
+cap "OutN" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 673.636
+cap "lvds_nswitch_1/a_82_22#" "OutN" 108.132
+cap "lvds_switch_p_1/w_230_116#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -15.3643
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_switch_p_1/m1_274_1710#" 0.675575
+cap "lvds_switch_p_1/a_230_116#" "OutN" 682.853
+cap "lvds_switch_p_1/w_230_116#" "lvds_switch_p_1/a_230_116#" -0.107824
+cap "OutN" "lvds_nswitch_1/m1_30_110#" -158.383
+cap "lvds_nswitch_1/m1_30_110#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n836#" 1.15
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 168.473
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_nswitch_1/a_82_22#" 2.58405
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 138.596
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_currm_n_5/a_32_332#" 10.6957
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" 16.2061
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/m1_30_110#" 259.358
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "lvds_nswitch_1/m1_30_110#" -329.748
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_nswitch_1/a_82_22#" 1.0753
+cap "lvds_switch_p_1/w_230_116#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 14.929
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutN" 90.0249
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "OutN" 668.22
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_nswitch_1/m1_30_110#" -80.9222
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "OutN" -82.5676
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 20.1081
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" 27.937
+cap "OutN" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -36.634
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_diffamp_0/m1_70_778#" 2.47984
+cap "lvds_currm_n_10/m1_76_644#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 0.994737
+cap "OutN" "lvds_diffamp_0/m1_70_778#" 417.546
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 7.5829
+cap "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" 441.544
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" 27.937
+cap "lvds_diffamp_0/m1_70_1210#" "OutN" 1552.78
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -3.88705
+cap "lvds_diffamp_0/m1_70_778#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 106.898
+cap "OutN" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -104.994
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutN" 108.373
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" "OutN" -57.827
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "OutN" 28.4158
+cap "lvds_diffamp_0/m1_70_1210#" "OutP" -282.494
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "OutN" 2009.42
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_778#" 0.753677
+cap "lvds_diffamp_1/a_132_72#" "lvds_diffamp_0/m1_70_1210#" 0.275888
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" 182.669
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_diffamp_0/m1_70_1210#" 247.418
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -65.9934
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" 41.5365
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_diffamp_1/a_130_1200#" 0.551776
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_n_10/m1_76_644#" -3.5552
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_76_644#" 111.391
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutP" 9.66459
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "OutP" 25.1423
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 24.4201
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" 41.6733
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" 428.155
+cap "lvds_diffamp_0/m1_70_1210#" "OutN" -135.661
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_10/m1_76_644#" -670.081
+cap "lvds_diffamp_1/m1_70_1210#" "OutP" -424.867
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_1210#" 402.198
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_diffamp_1/m1_70_1210#" 211.252
+cap "lvds_diffamp_1/m1_70_1210#" "OutN" -293.551
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "lvds_diffamp_1/m1_70_1210#" -17.106
+cap "OutP" "lvds_diffamp_1/m1_70_778#" 23.6974
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_778#" 71.0319
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "OutP" 23.7243
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" -289.12
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 13.4222
+cap "OutN" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 193.286
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutP" 281.056
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_currm_n_10/m1_76_644#" 386.218
+cap "lvds_diffamp_0/m1_70_1210#" "OutP" 1584.06
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "OutN" 228.709
+cap "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -5380.29
+cap "lvds_diffamp_1/m1_70_778#" "lvds_currm_n_10/m1_76_644#" 340.244
+cap "lvds_diffamp_0/m1_70_1210#" "OutN" 655.765
+cap "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_10/m1_76_644#" -36.5085
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "OutN" 1185.64
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_1/m1_70_778#" 228.535
+cap "OutP" "lvds_currm_n_10/m1_76_644#" 110.738
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_n_10/m1_76_644#" 88.7554
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" 5.27561
+cap "OutN" "lvds_currm_n_10/m1_76_644#" -25.3916
+cap "lvds_diffamp_0/m1_70_1210#" "lvds_currm_n_10/m1_76_644#" -1100.66
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_currm_n_10/m1_76_644#" -3922.01
+cap "VN" "lvds_diffamp_1/m1_70_1210#" 73.8761
+cap "lvds_currm_n_10/m1_76_644#" "OutP" 92.2815
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_0/a_132_72#" 0.508966
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" 197.712
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_778#" -1.58549
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_0/a_132_690#" 1.01793
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_1/m1_70_778#" 620.173
+cap "lvds_diffamp_1/m1_70_778#" "OutP" 821.271
+cap "lvds_diffamp_1/m1_70_778#" "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" 14.1095
+cap "lvds_diffamp_1/m1_70_778#" "OutN" -5.52657
+cap "lvds_diffamp_1/m1_70_1210#" "OutP" 5899.09
+cap "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" 343.604
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "OutP" 13.7139
+cap "lvds_diffamp_1/m1_70_1210#" "OutN" 2595.16
+cap "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "OutN" 650.165
+cap "lvds_currm_n_10/m1_76_644#" "lvds_diffamp_1/m1_70_778#" -964.349
+cap "sky130_fd_sc_hs__inv_4_1/A" "sky130_fd_sc_hs__inv_16_8/VPB" -82.4023
+cap "sky130_fd_sc_hs__inv_16_8/A" "sky130_fd_sc_hs__inv_4_1/A" -44.795
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/VPB" 294.518
+cap "sky130_fd_sc_hs__inv_16_8/A" "sky130_fd_sc_hs__inv_16_8/Y" 5.63836
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -22.9601
+cap "sky130_fd_sc_hs__inv_16_8/A" "sky130_fd_sc_hs__inv_16_8/VNB" 11.9919
+cap "sky130_fd_sc_hs__inv_4_1/A" "sky130_fd_sc_hs__inv_16_8/VNB" 5.76318
+cap "sky130_fd_sc_hs__inv_16_8/A" "sky130_fd_sc_hs__inv_16_8/VPB" 21.5227
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 2.75005
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/VNB" 12.5161
+cap "sky130_fd_sc_hs__inv_16_8/Y" "VN" 19.6797
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/A" 169.956
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_sc_hs__inv_16_8/VPB" 10.977
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/a_112_112#" 13.7365
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "VN" 6.90809
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_9/Y" 11.9327
+cap "sky130_fd_sc_hs__inv_16_8/A" "VN" 51.4719
+cap "sky130_fd_sc_hs__inv_4_1/A" "sky130_fd_sc_hs__inv_16_8/A" 19.1554
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 0.403594
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" -956.534
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/A" -84.4611
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "VN" -4.54025
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_9/Y" 0.367233
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" -257.459
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_7/Y" -537.99
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "w_660_5820#" -0.176101
+cap "sky130_fd_sc_hs__inv_16_7/Y" "sky130_fd_sc_hs__inv_16_8/VPB" 2.45533
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/VPB" 367.453
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 71.6117
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" -1275.04
+cap "sky130_fd_sc_hs__inv_16_7/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 61.9143
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_sc_hs__inv_16_8/VPB" 3.15161
+cap "sky130_fd_sc_hs__inv_16_8/A" "sky130_fd_sc_hs__inv_16_8/VPB" 413.014
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/VNB" 218.527
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -52.8894
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_9/Y" -445.001
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -117.385
+cap "sky130_fd_sc_hs__inv_16_9/Y" "lvds_nswitch_0/m1_126_952#" 4.21175
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_9/Y" 124.023
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_switch_p_0/m1_274_1710#" 0.525039
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_8/A" 1.80184
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" -343.105
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_switch_p_0/m1_274_848#" 0.46327
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/Y" -152.33
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -225.32
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_nswitch_0/m1_126_952#" 2.80916
+cap "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_9/Y" -789.258
+cap "lvds_switch_p_0/m1_274_848#" "sky130_fd_sc_hs__inv_16_9/Y" 0.0146895
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_9/Y" -5810.01
+cap "sky130_fd_sc_hs__inv_16_9/A" "sky130_fd_sc_hs__inv_16_9/VNB" 20.4044
+cap "sky130_fd_sc_hs__inv_16_9/A" "sky130_fd_sc_hs__inv_16_9/Y" -261
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_9/Y" -2612.91
+cap "lvds_nswitch_0/m1_126_952#" "lvds_currm_p_0/m1_60_208#" 3.86218
+cap "sky130_fd_sc_hs__inv_16_7/A" "sky130_fd_sc_hs__inv_16_9/VPB" 106.956
+cap "lvds_nswitch_0/m1_30_728#" "lvds_nswitch_0/m1_126_952#" 0.687305
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_0/m1_126_952#" -7114.05
+cap "sky130_fd_sc_hs__inv_16_7/A" "sky130_fd_sc_hs__inv_16_9/VNB" 7.56954
+cap "sky130_fd_sc_hs__inv_16_7/A" "sky130_fd_sc_hs__inv_16_9/Y" 1310.81
+cap "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_9/VPB" -22.7704
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_9/VPB" 66.0736
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_9/VNB" 581.591
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_9/VPB" -29.7958
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_9/Y" 17.7188
+cap "sky130_fd_sc_hs__inv_16_9/A" "sky130_fd_sc_hs__inv_16_9/VPB" -372.576
+cap "lvds_nswitch_0/m1_126_952#" "sky130_fd_sc_hs__inv_16_9/VPB" -944.61
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_switch_p_0/m1_274_1710#" 454.002
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "sky130_fd_sc_hs__inv_16_6/Y" -6222.84
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_switch_p_0/m1_274_1710#" 21.2177
+cap "lvds_nswitch_0/m1_126_952#" "lvds_switch_p_0/m1_274_1710#" 7.17415
+cap "sky130_fd_sc_hs__inv_16_6/Y" "lvds_nswitch_0/m1_126_952#" -4076.67
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_switch_p_0/m1_274_1710#" 1.53039
+cap "sky130_fd_sc_hs__inv_16_6/Y" "sky130_fd_sc_hs__inv_16_6/VNB" -0.9225
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_nswitch_0/m1_126_952#" 151.754
+cap "lvds_nswitch_0/m1_126_952#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 11.8069
+cap "sky130_fd_sc_hs__inv_16_6/Y" "lvds_switch_p_0/m1_274_1710#" -6777.15
+cap "sky130_fd_sc_hs__inv_16_6/Y" "sky130_fd_sc_hs__inv_16_6/A" -0.412529
+cap "sky130_fd_sc_hs__inv_16_6/Y" "sky130_fd_sc_hs__inv_16_5/A" -0.290225
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_0/m1_126_952#" -1242.5
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" 701.465
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/a_82_1150#" 2.40404
+cap "lvds_nswitch_0/m1_126_952#" "lvds_nswitch_1/a_82_1150#" 33.9014
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/a_230_1916#" 1792.44
+cap "lvds_currm_p_4/a_112_112#" "lvds_switch_p_0/a_230_1916#" 0.0340406
+cap "lvds_switch_p_0/a_230_1916#" "lvds_nswitch_0/m1_126_952#" 1486.98
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/m1_178_1484#" 15.0316
+cap "lvds_switch_p_1/m1_178_1484#" "lvds_nswitch_0/m1_126_952#" 5.2466
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/m1_126_952#" 1.60263
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_0/m1_126_952#" -661.393
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_1/a_82_1150#" 0.35276
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_0/a_230_1916#" 2482.41
+cap "lvds_switch_p_0/a_230_1916#" "lvds_nswitch_1/a_82_1150#" 0.0727941
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_0/m1_126_952#" 16.8112
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_0/m1_274_1710#" 0.0877976
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_0/a_230_116#" 0.0727941
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_1/m1_126_952#" 56.7167
+cap "lvds_switch_p_1/m1_178_1484#" "lvds_nswitch_1/m1_126_952#" -1.03421
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/m1_178_1484#" -30.3168
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 315.645
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_0/m1_274_1710#" 372.174
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_1/m1_178_1484#" -116.766
+cap "lvds_nswitch_1/a_82_1150#" "lvds_nswitch_0/m1_126_952#" 33.7128
+cap "lvds_switch_p_1/m1_178_1484#" "lvds_nswitch_0/m1_126_952#" 5.2466
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/a_230_116#" 2.42857
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/m1_126_952#" 1.61968
+cap "lvds_nswitch_1/a_82_1150#" "lvds_switch_p_1/m1_178_1484#" 1226.26
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" -128.107
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" -255.295
+cap "lvds_switch_p_0/a_230_116#" "lvds_nswitch_1/a_82_1150#" 2.52419
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/a_82_1150#" -1177.55
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/a_82_1150#" -237.125
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_nswitch_1/m1_126_952#" 394.592
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/m1_126_952#" 164.739
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_switch_p_1/m1_274_1710#" 0.801991
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/m1_274_1710#" 2169.58
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 243.427
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 3.90809
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "lvds_nswitch_1/a_82_1150#" -777.347
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_nswitch_1/a_82_1150#" 1.40281
+cap "lvds_nswitch_1/m1_126_952#" "lvds_nswitch_1/a_82_1150#" -2714.12
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" -160.572
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/a_82_1150#" 21389.4
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_nswitch_1/m1_126_952#" 0.0540547
+cap "lvds_switch_p_0/m1_178_1484#" "lvds_nswitch_1/m1_126_952#" -3.88376
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" 284.466
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n801_n597#" "lvds_switch_p_1/a_230_116#" 16.7438
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -24.7721
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_nswitch_1/m1_126_952#" -409.338
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 367.042
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_switch_p_1/a_230_116#" -26.7848
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_1/m1_274_1710#" 1523.47
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -15.2458
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/m1_126_952#" 2731.34
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 16.255
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" 48.1038
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_switch_p_1/m1_274_1710#" -764.856
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_currm_p_7/a_112_112#" 0.745455
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 29.2174
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_switch_p_1/a_230_116#" 23.8065
+cap "lvds_currm_p_7/w_112_112#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 0.793814
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_nswitch_1/m1_126_952#" -64.5151
+cap "lvds_nswitch_1/m1_126_952#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -209.902
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/a_230_116#" 2387.62
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" -14.0859
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 66.4423
+cap "lvds_nswitch_1/m1_126_952#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 129.129
+cap "lvds_nswitch_1/m1_126_952#" "lvds_switch_p_1/a_230_116#" 7257.03
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_nswitch_1/m1_126_952#" -43.2527
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" 39.4791
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_1/a_230_116#" 2897.8
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_currm_p_7/a_112_112#" 3.54091
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" -29.4649
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" -7.10543e-15
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_switch_p_1/w_230_116#" 20.5176
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" "lvds_currm_p_7/a_112_112#" 7.08182
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -14.8702
+cap "lvds_switch_p_1/m1_178_1484#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" 12.5465
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" 80.9692
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_switch_p_1/m1_178_1484#" -28.3452
+cap "lvds_switch_p_1/m1_178_1484#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_351_n836#" 0.958333
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_p_7/w_112_112#" 25.3114
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" 7.10543e-15
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" 29.2174
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_1/m1_178_1484#" 1332.13
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" -12.9771
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" 58.4348
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -24.4155
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" -24.1618
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" 299.224
+cap "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 398.503
+cap "lvds_switch_p_1/m1_178_1484#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" -52.0467
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_diffamp_0/m1_70_778#" 15.7377
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "lvds_currm_p_6/w_112_112#" 19.9901
+cap "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" 396.171
+cap "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" 214.009
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "lvds_diffamp_0/m1_70_1210#" 192.084
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" "lvds_diffamp_0/m1_70_1210#" -5.33273
+cap "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" 749.193
+cap "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" 444.907
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -57.966
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "lvds_diffamp_0/m1_70_1210#" 119.86
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -36.595
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" 27.3964
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" -3.55271e-15
+cap "lvds_currm_p_6/m1_60_208#" "lvds_diffamp_0/m1_70_778#" 29.825
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" 29.2174
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "lvds_currm_p_7/w_112_112#" 3.23077
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -50.018
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" 2145.88
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" 2552.74
+cap "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" -2.02576
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" 592.121
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 828.312
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#" "lvds_currm_p_6/w_112_112#" 2.92268
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_1/m1_70_778#" 12.1077
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_0/m1_188_1002#" 11.3888
+cap "lvds_diffamp_1/m1_70_778#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 12.1077
+cap "lvds_currm_p_1/a_112_112#" "sky130_fd_sc_hs__inv_16_8/VPB" -5851.76
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/w_112_112#" -643.874
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_8/VPB" -3040.38
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/m1_60_208#" -1048.19
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/a_112_112#" 0.089659
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_1/a_112_112#" 1.99875
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/a_112_112#" 0.171459
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_8/VPB" 445.24
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_1/a_112_112#" -19.11
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/a_112_112#" 121.918
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "VN" -34.5469
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/m1_60_208#" -5.97676
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" 0.228177
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_0/m1_60_208#" 847.061
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_sc_hs__inv_16_8/VPB" 66.7239
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_1/a_112_112#" 203.522
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_1/a_112_112#" 131.518
+cap "VN" "lvds_currm_p_0/m1_60_208#" -30.0901
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/m1_60_208#" 224.179
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.39033
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/a_112_112#" -63.2624
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -0.129759
+cap "lvds_currm_p_0/a_112_112#" "sky130_fd_sc_hs__inv_16_8/VPB" 72.7794
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.95279
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.23592
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/m1_60_208#" 18.0833
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_0/m1_60_208#" 0.0841407
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/m1_60_208#" -571.454
+cap "lvds_currm_p_0/m1_60_208#" "sky130_fd_sc_hs__inv_16_8/VPB" 175.982
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_1/a_112_112#" -39.4519
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.29265
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_1/a_112_112#" 12.802
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_0/m1_60_208#" -43.1732
+cap "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VPB" -25.3532
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -6.56046
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.0436247
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_1/a_112_112#" 16.605
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_1/a_112_112#" -14.8467
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_8/VPB" 11.5646
+cap "sky130_fd_sc_hs__inv_16_7/Y" "sky130_fd_sc_hs__inv_16_8/VPB" -93.1002
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.68393
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_2/a_112_112#" 1.35764
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_sc_hs__inv_16_8/VPB" 71.5287
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_1/a_112_112#" -43.3031
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_0/m1_60_208#" 663.235
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 33.0528
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/a_112_112#" 28.7032
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/a_112_112#" 60.7713
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_2/a_112_112#" -78.4343
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/a_112_112#" 52.9682
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_2/a_112_112#" 16.605
+cap "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.58228
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/VNB" -28.6183
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_1/a_112_112#" 0.888333
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_9/Y" -90.8299
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "lvds_currm_p_0/a_112_112#" 49.702
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/a_112_112#" 0.0124662
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.88856
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/m1_60_208#" 156.406
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.3393
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_3/a_112_112#" 0.0241731
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/a_112_112#" -1.43125
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 204.543
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_3/a_112_112#" 1.02793
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_2/a_112_112#" -179.992
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/a_112_112#" 5.25632
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_sc_hs__inv_16_8/VPB" 273.447
+cap "lvds_currm_p_1/a_112_112#" "lvds_currm_p_0/a_112_112#" 0.444167
+cap "sky130_fd_sc_hs__inv_16_8/VPB" "sky130_fd_sc_hs__inv_16_8/Y" 1.91144
+cap "sky130_fd_sc_hs__inv_16_7/A" "sky130_fd_sc_hs__inv_16_9/VPB" 3.34071
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_2/a_112_112#" "sky130_fd_sc_hs__inv_16_9/VPB" 121.651
+cap "lvds_currm_p_0/m1_60_208#" "lvds_switch_p_0/m1_178_1484#" 4.88348
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_0/m1_60_208#" 1586.37
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "lvds_currm_p_0/m1_60_208#" 418.435
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_0/a_112_112#" 0.648243
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "lvds_currm_p_0/m1_60_208#" 7.55918
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_3/a_112_112#" 8.3025
+cap "lvds_currm_p_3/a_112_112#" "sky130_fd_sc_hs__inv_16_9/VPB" 5.45038
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_0/a_112_112#" 1.29649
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_0/m1_60_208#" 17.3492
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_9/VPB" 3.95652
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/m1_60_208#" 17.9602
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.8464
+cap "sky130_fd_sc_hs__inv_16_9/VPB" "sky130_fd_sc_hs__inv_16_9/VNB" -14.5061
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_9/VPB" 9.08693
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_9/Y" -12.0984
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/m1_60_208#" 123.227
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 3.8576
+cap "lvds_currm_p_0/w_112_112#" "sky130_fd_sc_hs__inv_16_9/VPB" 2.5361
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/a_112_112#" 2.68248
+cap "lvds_currm_p_2/a_112_112#" "sky130_fd_sc_hs__inv_16_9/Y" 13.7471
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_9/VPB" -3.80824
+cap "sky130_fd_sc_hs__inv_16_9/Y" "sky130_fd_sc_hs__inv_16_9/VPB" -116.837
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_0/m1_60_208#" 2.68333
+cap "lvds_switch_p_0/m1_178_1484#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 11.8069
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "sky130_fd_sc_hs__inv_16_6/Y" -1501.12
+cap "lvds_switch_p_0/m1_178_1484#" "sky130_fd_sc_hs__inv_16_6/Y" -147.19
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_currm_p_2/a_112_112#" 1
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/a_112_112#" 2.605
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_3/a_112_112#" -388.16
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 8.58571
+cap "lvds_currm_p_2/a_112_112#" "sky130_fd_sc_hs__inv_16_6/VPB" 2
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_3/a_112_112#" 8.3025
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 17.7007
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -15.3204
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_currm_p_3/a_112_112#" -275.224
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_3/a_112_112#" "sky130_fd_sc_hs__inv_16_6/Y" 96.9529
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/a_112_112#" 17.3734
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_2/a_112_112#" 2.7675
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_sc_hs__inv_16_6/VPB" 2.04955
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 44.7784
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_6/VPB" 470.295
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_0/m1_178_1484#" 57.4921
+cap "lvds_currm_p_2/a_112_112#" "lvds_currm_p_3/a_112_112#" 5.535
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.69495
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_6/Y" -2680.26
+cap "sky130_fd_sc_hs__inv_16_6/VPB" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -0.129759
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_0/a_230_1916#" 333.661
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/a_112_112#" 0.0899469
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.605
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 837.315
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 2.06818
+cap "lvds_currm_p_4/a_112_112#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -90.9738
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_4/a_112_112#" 8.3025
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/a_230_1916#" 0.60101
+cap "lvds_currm_p_4/a_112_112#" "lvds_switch_p_0/a_230_1916#" 75.3906
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_9/a_112_112#" 2.11632
+cap "lvds_currm_p_3/a_112_112#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 3.02542
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_switch_p_0/m1_274_1710#" 17.7007
+cap "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.40034
+cap "lvds_currm_p_4/a_112_112#" "lvds_switch_p_0/m1_274_1710#" -242.94
+cap "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" "lvds_switch_p_0/a_230_1916#" -141.86
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -54.4266
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1469_n836#" 40.2369
+cap "lvds_switch_p_0/a_230_1916#" "lvds_switch_p_1/a_230_1916#" 0.0198529
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/a_230_1916#" -22.7572
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" 2532.14
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.20414
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_9/a_112_112#" 0.171747
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_9/a_112_112#" -388.508
+cap "lvds_switch_p_1/a_230_1916#" "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_n933#" 0.0198529
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_4/a_112_112#" 0.657123
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/a_112_112#" -5.68572
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.0436247
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/a_112_112#" -2149.39
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/a_230_1916#" -71.3063
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_1/m1_178_1484#" 17.6443
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n81_n933#" 0.607143
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_9/a_112_112#" 16.605
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_8/a_112_112#" 0.0841407
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_1/a_230_1916#" 532.283
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_4/a_112_112#" 0.328562
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.01306
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.93842
+cap "lvds_switch_p_1/a_230_1916#" "lvds_currm_p_9/a_112_112#" 51.7
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_9/a_112_112#" 1.41088
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 455.224
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 48.4873
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.54169
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -1474.92
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 3.57286
+cap "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/a_112_112#" -16.2897
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_9/a_112_112#" -59.1202
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_4/a_112_112#" -4.52054
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/a_112_112#" 5.21
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -8.14552
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.32623
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_8/a_112_112#" -103.405
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_9/a_112_112#" 3011.6
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.57394
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_7/a_112_112#" 0.037504
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/a_112_112#" -1.43125
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/a_112_112#" 5.25632
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/a_230_1916#" -224.701
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "lvds_switch_p_1/a_230_1916#" -211.427
+cap "lvds_switch_p_1/a_230_1916#" "lvds_currm_p_8/a_112_112#" 27.2802
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_1/m1_274_1710#" 4518.92
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" -88.2035
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" -108.116
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.38814
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_9/a_112_112#" 28.4169
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.0124662
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/a_112_112#" -169.393
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_9/a_112_112#" 0.856607
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4186.67
+cap "lvds_currm_p_9/a_112_112#" "lvds_currm_p_8/a_112_112#" 16.605
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/m1_178_1484#" 45.4935
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/a_112_112#" 1.05816
+cap "lvds_currm_p_9/a_112_112#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 24.365
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/a_230_1916#" 4177.83
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_9/a_112_112#" 0.428304
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_switch_p_1/a_230_1916#" -322.308
+cap "lvds_switch_p_1/a_230_1916#" "lvds_currm_p_9/a_112_112#" 65.2751
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" -98.358
+cap "lvds_switch_p_1/a_230_1916#" "lvds_switch_p_0/a_230_644#" 0.728632
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.95652
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 7.26946
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" 62.1541
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 903.193
+cap "lvds_currm_p_7/a_112_112#" "m1_1770_10130#" 2.66887
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" 2.94359
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" -101.097
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_7/w_112_112#" 211.792
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" 1288.81
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -3.77154
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_8/a_112_112#" 34.9855
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_7/w_112_112#" 738.513
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 53.225
+cap "lvds_currm_p_8/a_112_112#" "lvds_switch_p_1/m1_274_1710#" 2044.16
+cap "lvds_currm_p_7/a_112_112#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" 0.745455
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 672.587
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_7/w_112_112#" -115.416
+cap "lvds_switch_p_1/m1_274_1710#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 610.233
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_7/a_112_112#" 16.605
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_9/a_112_112#" 0.615
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 8.0102
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 214.237
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_switch_p_1/m1_274_1710#" 300.512
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.28748
+cap "lvds_currm_p_7/a_112_112#" "lvds_switch_p_1/m1_274_1710#" -201.485
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_9/a_112_112#" 1.23
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_switch_p_1/m1_274_1710#" 17.9602
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 3.83739
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/m1_178_1484#" 42.7653
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "lvds_currm_p_7/w_112_112#" 0.793814
+cap "lvds_currm_p_8/a_112_112#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/a_n1041_n933#" 68.9183
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_8/m1_60_208#" 215.626
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/m1_60_208#" -51.606
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/m1_60_208#" 222.314
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "lvds_currm_p_7/a_112_112#" 3.54091
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 12.0089
+cap "lvds_switch_p_1/w_230_644#" "lvds_currm_p_7/w_112_112#" 5.31245
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/a_112_112#" 3.57798
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_6/a_112_112#" 13.2267
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_7/w_112_112#" -0.129759
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_7/a_112_112#" -24.4721
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/m1_60_208#" 8.99279
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 2.38744
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 9.04729
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 53.225
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" -8.21
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" "lvds_currm_p_7/a_112_112#" 11.6642
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_7/a_112_112#" -5.32546
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_6/w_112_112#" 41.6042
+cap "lvds_currm_p_7/w_112_112#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" 25.3114
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_7/a_112_112#" 2.51591
+cap "lvds_currm_p_6/a_112_112#" "lvds_currm_p_8/m1_60_208#" 23.2721
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_8/m1_60_208#" 366.849
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 10.782
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_8/a_112_112#" 5.03182
+cap "lvds_currm_p_5/a_112_112#" "lvds_currm_p_6/m1_60_208#" 203.347
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "lvds_currm_p_5/a_112_112#" 439.299
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/a_112_112#" 3.47625
+cap "lvds_currm_p_6/a_112_112#" "lvds_currm_p_7/a_112_112#" 13.2267
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_8/li_n30_2690#" 0.55641
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_6/m1_60_208#" -240.162
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/m1_60_208#" 4.94729
+cap "lvds_currm_p_6/w_112_112#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" 18.6911
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/m1_60_208#" 17.7007
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/a_112_112#" 53.3149
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_6/m1_60_208#" 2569.64
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.67961
+cap "lvds_currm_p_6/m1_60_208#" "lvds_currm_p_6/a_112_112#" -445.7
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "lvds_currm_p_6/a_112_112#" 42.3957
+cap "lvds_currm_p_7/w_112_112#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" 3.23077
+cap "lvds_currm_p_7/w_112_112#" "lvds_currm_p_6/w_112_112#" 211.62
+cap "lvds_currm_p_5/a_112_112#" "lvds_currm_p_6/a_112_112#" 143.898
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_6/a_112_112#" -165.974
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" 127.094
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/a_112_112#" -12.5192
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.87403
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" 208.693
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_6/a_112_112#" 0.3198
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 5.21
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "lvds_currm_p_6/a_112_112#" 17.7946
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/m1_60_208#" 587.117
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 148.402
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_30/a_112_112#" 0.0454438
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_30/a_112_112#" 1.45597
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_6/a_112_112#" -162.269
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/a_112_112#" -7.42619
+cap "lvds_currm_p_6/a_112_112#" "lvds_currm_p_6/m1_60_208#" -119.791
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 774.429
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.5482
+cap "lvds_currm_p_6/a_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 286.478
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#" "lvds_currm_p_6/w_112_112#" 2.92268
+cap "lvds_currm_p_5/w_112_112#" "lvds_currm_p_6/w_112_112#" 211.792
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_30/m1_60_208#" -1.14677
+cap "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 274.878
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_7/w_112_112#" 2.5361
+cap "lvds_currm_p_5/w_112_112#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.274742
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_6/m1_60_208#" 676.572
+cap "lvds_currm_p_5/w_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 179.443
+cap "lvds_currm_p_6/a_112_112#" "lvds_currm_p_7/a_112_112#" 0.6396
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/m1_60_208#" -23.7552
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_30/w_112_112#" -1912.67
+cap "lvds_currm_p_6/w_112_112#" "lvds_currm_p_5/w_112_112#" 2.5361
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 575.619
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_30/a_112_112#" 5.92927
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 198.254
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/a_112_112#" 0.668017
+cap "lvds_currm_p_30/a_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 979.039
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/m1_60_208#" 3.40766
+cap "lvds_currm_p_30/w_112_112#" "lvds_currm_p_5/w_112_112#" 211.792
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/w_112_112#" 0.969664
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" 1.56607
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 14.3786
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_5/w_112_112#" -392.463
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "m1_15360_6190#" 231.154
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 61.9961
+cap "lvds_currm_p_6/a_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 0.413534
+cap "m1_15360_6190#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 510.644
+cap "lvds_currm_p_30/a_112_112#" "m1_15360_6190#" -1090.8
+cap "lvds_currm_p_5/w_112_112#" "lvds_currm_p_30/w_112_112#" 2.5361
+cap "lvds_currm_p_30/w_112_112#" "m1_15360_6190#" 487.15
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_30/w_112_112#" 85.7781
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n1154#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.78591
+cap "lvds_currm_p_30/a_112_112#" "m1_15360_6190#" 583.508
+cap "lvds_currm_p_30/a_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 25.0861
+cap "lvds_currm_p_30/w_112_112#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 8.79801
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_5/a_112_112#" 0.585
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1093.94
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/li_122_2858#" -7874.12
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/m1_60_1070#" -5682.32
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/w_112_112#" -207.242
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/m1_60_208#" -524.094
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" 29.9888
+cap "lvds_currm_p_0/m1_60_208#" "VN" -22.0929
+cap "lvds_currm_p_0/li_122_2858#" "sky130_fd_sc_hs__inv_16_7/VPB" 335.116
+cap "lvds_currm_p_0/m1_60_1070#" "sky130_fd_sc_hs__inv_16_7/VPB" 1181.87
+cap "lvds_currm_p_0/li_122_2858#" "lvds_currm_p_0/m1_60_1070#" 1.78348
+cap "lvds_currm_p_0/m1_60_208#" "sky130_fd_sc_hs__inv_16_7/VPB" 1054.59
+cap "lvds_currm_p_0/li_122_2858#" "lvds_currm_p_0/m1_60_208#" 226.178
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.79818
+cap "lvds_currm_p_0/m1_60_208#" "sky130_fd_sc_hs__inv_16_7/VPB" -555.767
+cap "lvds_currm_p_0/li_122_2858#" "sky130_fd_sc_hs__inv_16_7/VPB" -72.8555
+cap "lvds_currm_p_0/m1_60_1070#" "sky130_fd_sc_hs__inv_16_7/VPB" -87.545
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 2.06791
+cap "lvds_currm_p_0/li_122_2858#" "lvds_currm_p_0/m1_60_208#" -219.601
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/m1_60_208#" -33.4476
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/li_122_2858#" 77.7726
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/li_122_2858#" -281.155
+cap "lvds_currm_p_1/a_112_112#" "lvds_currm_p_0/li_122_2858#" 0.444167
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" -9.87974
+cap "lvds_currm_p_1/a_112_112#" "lvds_currm_p_0/li_122_2858#" 0.444167
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.521333
+cap "lvds_currm_p_0/m1_60_208#" "sky130_fd_sc_hs__inv_16_7/VPB" -252.253
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.599533
+cap "lvds_currm_p_1/a_112_112#" "lvds_currm_p_0/li_122_2858#" 0.888333
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/li_122_2858#" 173.916
+cap "lvds_currm_p_0/li_122_2858#" "sky130_fd_sc_hs__inv_16_7/VPB" -36.7471
+cap "lvds_currm_p_0/m1_60_1070#" "sky130_fd_sc_hs__inv_16_7/VPB" 16.6852
+cap "sky130_fd_sc_hs__inv_16_7/VPB" "lvds_currm_p_2/li_122_2858#" 183.459
+cap "lvds_currm_p_2/li_122_2858#" "lvds_currm_p_0/a_112_112#" 0.648243
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_2/li_122_2858#" 1949.62
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_2/li_122_2858#" 1.29649
+cap "lvds_currm_p_0/m1_60_208#" "sky130_fd_sc_hs__inv_16_7/VPB" -9.66512
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_2/li_122_2858#" 38.4285
+cap "sky130_fd_sc_hs__inv_16_7/VPB" "lvds_currm_p_0/m1_60_1070#" 74.2378
+cap "lvds_currm_p_0/a_112_112#" "lvds_currm_p_2/li_122_2858#" 0.648243
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" 1163.81
+cap "sky130_fd_sc_hs__inv_16_5/VPB" "lvds_currm_p_2/a_112_112#" 1
+cap "lvds_currm_p_2/li_122_2858#" "lvds_currm_p_2/a_112_112#" 2.7675
+cap "lvds_currm_p_2/li_122_2858#" "sky130_fd_sc_hs__inv_16_5/VPB" -219.8
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_2/li_122_2858#" -408.177
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_2/li_122_2858#" 78.1625
+cap "lvds_currm_p_2/li_122_2858#" "lvds_currm_p_2/a_112_112#" 2.7675
+cap "sky130_fd_sc_hs__inv_16_5/VPB" "lvds_currm_p_2/a_112_112#" 2
+cap "lvds_currm_p_2/a_112_112#" "sky130_fd_sc_hs__inv_16_5/VPB" 1
+cap "lvds_switch_p_0/m1_274_1710#" "sky130_fd_sc_hs__inv_16_5/VPB" 384.743
+cap "lvds_currm_p_2/li_122_2858#" "lvds_currm_p_2/a_112_112#" 5.535
+cap "lvds_currm_p_3/m1_60_1070#" "sky130_fd_sc_hs__inv_16_5/VPB" -44.0226
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_switch_p_0/m1_274_1710#" -35.6302
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_switch_p_0/m1_274_1710#" 1734.13
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_3/li_122_2858#" -22.4002
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_3/m1_60_1070#" 57.2389
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/li_122_2858#" 38.7228
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" -263.52
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_3/li_122_2858#" -337.995
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_4/li_122_2858#" -3717.69
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" 0.601941
+cap "lvds_currm_p_4/li_122_2858#" "lvds_currm_p_3/a_112_112#" 0.328562
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_4/li_122_2858#" -33.6404
+cap "lvds_switch_p_0/m1_274_1710#" "lvds_currm_p_3/m1_60_1070#" -4440.43
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_4/li_122_2858#" 0.328562
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_currm_p_3/m1_60_1070#" 10.1019
+cap "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/m1_274_1710#" -515.924
+cap "lvds_currm_p_3/a_112_112#" "lvds_currm_p_4/li_122_2858#" 0.657123
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" 0.523427
+cap "lvds_currm_p_4/li_122_2858#" "lvds_currm_p_3/m1_60_1070#" 88.7887
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.523427
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_4/a_112_112#" 0.856607
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_switch_p_1/m1_274_1710#" 12764
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 17.2769
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_8/m1_60_1070#" 165.278
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_4/a_112_112#" 0.428304
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.601941
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_4/a_112_112#" 0.428304
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" 254.563
+cap "lvds_currm_p_8/li_122_2858#" "lvds_switch_p_1/m1_274_1710#" 2781.44
+cap "lvds_currm_p_8/li_122_2858#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" -38.2437
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_8/w_122_2852#" -19.1835
+cap "lvds_currm_p_8/li_122_2858#" "lvds_switch_p_1/m1_274_1710#" 2433.59
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/w_122_2852#" 75.9095
+cap "lvds_currm_p_8/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 0.830144
+cap "lvds_currm_p_9/a_112_112#" "lvds_currm_p_8/li_122_2858#" 1.23
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_switch_p_1/m1_274_1710#" 350.662
+cap "lvds_currm_p_9/a_112_112#" "lvds_currm_p_8/li_122_2858#" 0.615
+cap "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_9/a_112_112#" 0.615
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/li_122_2858#" 112.979
+cap "lvds_switch_p_1/m1_274_1710#" "lvds_currm_p_8/w_122_2852#" 8.95723
+cap "lvds_currm_p_8/a_112_112#" "lvds_currm_p_6/li_122_2858#" 5.03182
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_8/m1_60_1070#" 89.0349
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_8/m1_60_1070#" 0.830144
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_8/a_112_112#" 2.51591
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_6/li_n30_2690#" -48.7621
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_8/m1_60_1070#" -76.59
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_8/a_112_112#" 2.51591
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_6/li_122_2858#" 159.897
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_6/li_n30_2690#" 10.9201
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_6/li_n30_2690#" 304.337
+cap "lvds_currm_p_5/li_n30_2690#" "lvds_currm_p_6/m1_60_208#" -295.848
+cap "lvds_currm_p_5/li_n30_2690#" "lvds_currm_p_6/m1_60_1070#" 57.149
+cap "lvds_currm_p_5/li_n30_2690#" "lvds_currm_p_6/li_122_2858#" -168.602
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/m1_60_208#" 99.9825
+cap "lvds_currm_p_5/li_122_2858#" "lvds_currm_p_6/m1_60_208#" 8.62315
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_6/m1_60_1070#" 10.6459
+cap "lvds_currm_p_5/li_122_2858#" "lvds_currm_p_6/m1_60_1070#" 0.993744
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_6/m1_60_208#" -568.228
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_6/m1_60_1070#" 52.4354
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_5/li_122_2858#" 2.99812
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/m1_60_1070#" 5.28732
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_6/m1_60_1070#" 0.182617
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_7/a_112_112#" 0.6396
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_7/a_112_112#" 0.3198
+cap "lvds_currm_p_30/m1_60_208#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 3.54073
+cap "lvds_currm_p_5/w_122_2852#" "lvds_currm_p_6/m1_60_208#" -347.441
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/m1_60_208#" 624.456
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/m1_60_1070#" 40.0369
+cap "lvds_currm_p_5/w_122_2852#" "lvds_currm_p_6/m1_60_1070#" -13.6443
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/m1_60_1070#" 79.3884
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_5/m1_60_1070#" 0.122996
+cap "lvds_currm_p_30/a_112_112#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 2.15411
+cap "lvds_currm_p_6/m1_60_208#" "lvds_currm_p_6/m1_60_1070#" -147.039
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" "lvds_currm_p_6/m1_60_1070#" 0.509778
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_5/w_122_2852#" -187.712
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" "lvds_currm_p_6/m1_60_1070#" 0.586245
+cap "lvds_currm_p_6/li_122_2858#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 22.14
+cap "lvds_currm_p_7/a_112_112#" "lvds_currm_p_6/li_122_2858#" 0.3198
+cap "lvds_currm_p_5/w_122_2852#" "lvds_currm_p_5/m1_60_1070#" 27.2675
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_5/m1_60_1070#" 27.4922
+cap "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_6/m1_60_208#" -122.255
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_5/w_122_2852#" 68.8616
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_30/li_122_2858#" -29.1979
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/a_112_112#" 0.413534
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_5/m1_60_1070#" 26.9733
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/m1_60_208#" 3.59455
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/a_112_112#" 0.413534
+cap "lvds_currm_p_5/w_122_2852#" "lvds_currm_p_30/li_122_2858#" -1000.55
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_6/a_112_112#" 0.827069
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/m1_60_1070#" 38.5222
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_5/w_122_2852#" -172.138
+cap "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_currm_p_30/li_122_2858#" 652.523
+cap "lvds_currm_p_5/w_122_2852#" "lvds_currm_p_5/m1_60_1070#" -14.4256
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/w_122_2852#" 26.5689
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/m1_60_1070#" 3.86746
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/li_122_2858#" 89.8129
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/a_112_112#" 0.585
+cap "lvds_currm_p_30/w_122_2852#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -35.3258
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1190.92
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/a_112_112#" 0.585
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/a_112_112#" 1.17
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_30/w_122_2852#" 1074.93
+cap "lvds_currm_p_30/li_122_2858#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" 55.7626
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 8.24535
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/m1_60_1070#" -5413.63
+cap "VN" "lvds_currm_p_1/li_n30_2690#" -35.9823
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/li_122_4022#" -4234.9
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_11/w_112_112#" -1441.12
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/li_122_4022#" 55.3806
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" -27.5477
+cap "lvds_currm_p_0/m1_60_1070#" "VN" 3.95758
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_208#" 3.8028
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_0/m1_60_1070#" -125.185
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/li_122_4022#" 252.318
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" -24.1525
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_1070#" 1391.69
+cap "lvds_currm_p_0/li_122_4022#" "VN" -1.47877
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -29.051
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/li_122_4022#" -2.84217e-14
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_1070#" -255.641
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" -34.0644
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 1.70827
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/li_122_4022#" 367.755
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/li_122_4022#" -118.092
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/li_122_4022#" 38.8795
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 786.674
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" 5.2477
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -136.163
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/li_122_4022#" 528.579
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_1/a_112_112#" 0.444167
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/m1_60_208#" -34.0644
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_0/li_122_4022#" 17.0834
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 0.495267
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_0/m1_60_1070#" 2.63022
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_1070#" 329.869
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" 4.5053
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/m1_60_1070#" -36.7303
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_0/a_112_112#" 0.648243
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1793.16
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/li_122_4022#" 560.128
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_2/a_112_112#" 2.7675
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/a_112_112#" 1
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/m1_60_1070#" -206.273
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_2/li_122_4022#" 0.932269
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/m1_60_208#" 1.78315
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_2/m1_60_208#" -38.8038
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_14/a_112_112#" 0.146597
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/li_122_4022#" -76.5615
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/m1_60_208#" -148.655
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/m1_60_208#" 1010.07
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -96.1004
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_3/li_122_4022#" 59.4975
+cap "lvds_currm_p_3/m1_60_208#" "lvds_currm_p_3/li_122_4022#" -222.203
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/li_122_4022#" 1632.85
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_4/w_122_2852#" -3392.39
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_3/m1_60_1070#" 474.372
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" 0.497256
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_3/a_112_112#" 0.328562
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_4/w_122_2852#" 0.146597
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_4/w_122_2852#" -3205.75
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_4/w_122_2852#" 289.752
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_4/m1_60_208#" -7819.66
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_4/m1_60_208#" -4167.63
+cap "lvds_currm_p_4/a_112_112#" "lvds_currm_p_8/li_122_4022#" 0.428304
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2548.68
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_8/m1_60_1070#" 10614.9
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/li_122_4022#" 2449.17
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/a_112_112#" 0.146597
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 7707.69
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/li_122_4022#" 697.102
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_8/li_122_4022#" 36.5232
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_8/li_122_4022#" 6860.14
+cap "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_8/m1_60_1070#" 0.497256
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/li_122_4022#" 100.236
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5.84526
+cap "lvds_currm_p_9/a_112_112#" "lvds_currm_p_8/li_122_4022#" 0.615
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/m1_60_1070#" 716.215
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/m1_60_208#" -0.207979
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/m1_60_208#" -35.5455
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/li_122_4022#" 2858.49
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/m1_60_1070#" -57.6191
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_8/m1_60_1070#" -39.9886
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 722.674
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.693827
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/a_112_112#" 2.51591
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -154.383
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_5/li_122_4022#" 1.8078
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/li_122_4022#" 0.266343
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.18246
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/m1_60_208#" 7.10543e-15
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" 5.2477
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" 179.04
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/m1_60_1070#" 26.3892
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/li_122_4022#" 0.0710645
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" 1733.98
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/m1_60_1070#" -167.946
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/m1_60_208#" -34.0644
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_17/m1_60_208#" 7.32487
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/m1_60_1070#" -247.704
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_30/a_112_112#" 0.82027
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" 61.2625
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 189.727
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_19/a_112_112#" 41.8249
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/li_122_4022#" 34.5798
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 11.2267
+cap "lvds_currm_p_30/a_112_112#" "lvds_currm_p_5/m1_60_1070#" 0.147583
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" 5.59462
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_6/li_122_4022#" 1.06158
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_7/a_112_112#" 0.3198
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/m1_60_1070#" -64.1155
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/m1_60_1070#" 107.378
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/m1_60_208#" -13.3295
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/a_112_112#" 0.0464645
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/m1_60_1070#" 85.7778
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/a_112_112#" 1.19615
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" -2.06562
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/li_122_4022#" 0.326031
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_5/m1_60_1070#" -221.628
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" 0.484289
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/li_122_2858#" 131.425
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_5/li_122_4022#" 95.7324
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n518#" 5.98362
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_6/m1_60_1070#" 12.0589
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/a_112_112#" 0.413534
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/li_122_2858#" -2622.67
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 91.3553
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/li_122_4022#" -67.6499
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_30/li_122_2858#" 33.1508
+cap "lvds_currm_p_18/m1_60_208#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.693827
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 109.179
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_21#" -0.192358
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_n615#" "lvds_currm_p_5/li_122_4022#" 0.48949
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -144.579
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_30/li_122_2858#" 0.0526998
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2906.06
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n518#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 19.7759
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/a_112_112#" 0.585
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2397.37
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_n615#" "lvds_currm_p_30/li_122_2858#" 0.749531
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/m1_60_1070#" 21.2589
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_21#" "lvds_currm_p_30/li_122_2858#" 1.49906
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 100.943
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 7.11566
+cap "lvds_currm_p_1/li_n30_2690#" "VN" -109.989
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/w_122_2852#" -1252.46
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/m1_60_1070#" 2.21151
+cap "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_1/li_n30_2690#" -3040.38
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_11/a_112_112#" -5851.76
+cap "lvds_currm_p_11/m1_60_208#" "lvds_currm_p_1/li_n30_2690#" -1048.19
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 205.744
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_11/a_112_112#" -62.7404
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.177848
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_11/a_112_112#" -176.216
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 460.03
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.80138
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_10/m1_60_208#" 0.171459
+cap "lvds_currm_p_0/m1_60_1070#" "VN" 0.522525
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1215.6
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/li_122_4022#" -77.9672
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/li_122_4022#" 155.622
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_11/a_112_112#" 157.03
+cap "lvds_currm_p_10/m1_60_208#" "VN" -34.5704
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.39033
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/li_122_4022#" 362.542
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -20.8895
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_11/a_112_112#" 1.99875
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.089659
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_0/m1_60_1070#" 57.9496
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 1.29265
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/li_122_4022#" 51.3391
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 20.2901
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/a_112_112#" 0.0436247
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.07838
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_10/m1_60_208#" 0.568297
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -53.6557
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/a_112_112#" 1.35764
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/m1_60_1070#" 1.19925
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/li_122_4022#" -727.952
+cap "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/m1_60_208#" -22.9926
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" 509.447
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_12/a_112_112#" 0.0841407
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.8109
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_1070#" 34.6975
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 25.0032
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 51.0345
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/li_122_4022#" 137.551
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/m1_60_208#" 20.1327
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.4106
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_10/m1_60_208#" -117.577
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.18346
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_10/a_112_112#" 16.605
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_0/li_122_4022#" 54.5478
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.521333
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_13/a_112_112#" 1.02793
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 4.56522
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/a_112_112#" 18.0388
+cap "lvds_currm_p_11/a_112_112#" "lvds_currm_p_10/a_112_112#" 0.888333
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/m1_60_208#" -5.47532
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/li_122_4022#" 105.887
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_0/m1_60_1070#" 21.9726
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 49.1728
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/m1_60_208#" 210.682
+cap "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1638.38
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/a_112_112#" 16.605
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_10/m1_60_208#" 0.0241731
+cap "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -5.55112e-17
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_11/a_112_112#" 0.444167
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" 1.58228
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -124.389
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_10/m1_60_208#" -256.841
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/a_112_112#" 0.0124662
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 39.8615
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_10/m1_60_208#" -43.0009
+cap "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 132.362
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/a_112_112#" -1.43125
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" 987.251
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/a_112_112#" 6.09879
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.8576
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_0/m1_60_1070#" 436.71
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_12/a_112_112#" 1498.75
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.3734
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/li_122_4022#" 511.181
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 513.987
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/a_112_112#" 53.7399
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_12/a_112_112#" 8.3025
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_10/m1_60_208#" 17.3492
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/a_112_112#" 1.29649
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.56522
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/m1_60_208#" 103.671
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "lvds_currm_p_10/m1_60_208#" 7.55918
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/a_112_112#" -20.1753
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_0/m1_60_1070#" -28.1539
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5.45038
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/a_112_112#" 0.648243
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 70.5771
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_2/li_122_4022#" 205.603
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/a_112_112#" 3.10371
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/m1_60_208#" 18.1079
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_3/m1_60_1070#" -54.3345
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_2/m1_60_208#" 17.3734
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/a_112_112#" 3.11618
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_2/m1_60_208#" -448.066
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/a_112_112#" -39.4508
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -242.911
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/m1_60_208#" 8.58571
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/li_122_4022#" -358.539
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.02623
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_12/a_112_112#" 2.7675
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/a_112_112#" 0.647059
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_14/a_112_112#" 8.3025
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_2/li_122_4022#" 214.983
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/m1_60_1070#" 232.431
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/m1_60_208#" -43.7444
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_12/a_112_112#" 5.535
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_2/m1_60_208#" 742.428
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 60.544
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/a_112_112#" 3.02542
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_14/a_112_112#" 2.11632
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/li_122_4022#" 1811.68
+cap "lvds_currm_p_3/li_122_4022#" "lvds_currm_p_3/m1_60_208#" -3.09248
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_n30_2690#" 2.49605
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/li_122_4022#" 0.777602
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/m1_60_208#" 18.1079
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_14/a_112_112#" 8.3025
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.38636
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_3/li_122_4022#" "lvds_currm_p_14/a_112_112#" 215.68
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/m1_60_208#" 2420.36
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_3/m1_60_208#" 779.499
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.36912
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_3/m1_60_208#" 0.171747
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/m1_60_208#" 39.1113
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/m1_60_1070#" 205.184
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/a_112_112#" 3.02623
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/a_112_112#" 0.0899469
+cap "lvds_currm_p_3/m1_60_208#" "lvds_currm_p_14/a_112_112#" -265.582
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_14/a_112_112#" -59.9962
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.40034
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/a_112_112#" -18.7917
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/w_122_2852#" 2.75486
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/a_112_112#" -5.58596
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_4/li_122_4022#" 59.8207
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_16/a_112_112#" 1.41088
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_4/w_122_2852#" 20.7618
+cap "lvds_currm_p_13/a_112_112#" "lvds_currm_p_14/a_112_112#" 0.657123
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_4/li_122_4022#" 115.513
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.54169
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_4/w_122_2852#" 248.041
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/m1_60_208#" 23.1109
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/m1_60_208#" -1486.35
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_4/w_122_2852#" -52.0174
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_4/li_122_4022#" 44.9217
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_15/a_112_112#" 16.605
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 1.17508
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_4/w_122_2852#" -28.1727
+cap "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_4/m1_60_208#" -1388.61
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_13/a_112_112#" 0.328562
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_4/m1_60_208#" 0.0841407
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/a_112_112#" 0.0436247
+cap "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_4/m1_60_208#" -941.559
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_4/m1_60_208#" -454.656
+cap "lvds_currm_p_4/w_122_2852#" "lvds_currm_p_4/m1_60_208#" -1598.1
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/a_112_112#" -11.9797
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/a_112_112#" 6.05247
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_4/w_122_2852#" 4.62176
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_4/m1_60_208#" -2202.35
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/a_112_112#" 36.2032
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.57394
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4152.17
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_15/a_112_112#" 2618.05
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/a_112_112#" 6.09879
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5345
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_16/a_112_112#" 16.605
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/m1_60_1070#" 91.4219
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/a_112_112#" -118.231
+cap "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_15/a_112_112#" 127.474
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_17/a_112_112#" 0.037504
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_17/a_112_112#" 1.05816
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.56522
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/li_122_4022#" 798.973
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.535616
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_8/m1_60_1070#" 1973.15
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_16/a_112_112#" -242.461
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/a_112_112#" 0.0124662
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -3.09827
+cap "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_8/li_122_4022#" 1522.11
+cap "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_8/m1_60_1070#" 25.0004
+cap "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_16/a_112_112#" 60.9652
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/a_112_112#" -1.43125
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_14/a_112_112#" 0.428304
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_14/a_112_112#" 0.856607
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/a_112_112#" 19.9228
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.1399
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 718.684
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/a_112_112#" 55.5609
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -118.292
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_15/m1_60_208#" -211.733
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_15/m1_60_208#" 1983.88
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/m1_60_208#" 1226.42
+cap "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.124522
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "lvds_currm_p_15/m1_60_208#" 7.26946
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_15/a_112_112#" 0.615
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.12995
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -29.8009
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/li_122_4022#" 0.777602
+cap "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_16/a_112_112#" 154.017
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_8/li_122_4022#" 9.08626
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/a_112_112#" 16.605
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.56522
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 71.5686
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.3734
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_16/a_112_112#" 1.23
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.83739
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 187.041
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/li_122_4022#" 2854.46
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.56098
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_6/li_122_4022#" 23.2721
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/m1_60_208#" 25.0288
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" 2.77343
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 8.99279
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" -59.8086
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/li_122_4022#" 4.14048
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -39.5369
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 221.792
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/a_112_112#" 2.51591
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 588.703
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_16/m1_60_208#" 10.782
+cap "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 230.068
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 60.544
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -420.707
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -105.842
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_16/a_112_112#" 5.03182
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_16/m1_60_208#" -45.1664
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" 1716.99
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/li_122_4022#" 2.36411
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2.88462
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3.48083
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_17/m1_60_208#" -175.277
+cap "lvds_currm_p_6/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -5.55112e-17
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_19/a_112_112#" 0.100519
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.87403
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_6/li_122_4022#" 4.03875
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" 2457.87
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_6/m1_60_1070#" 3.03696
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_17/m1_60_208#" 0.190843
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 13.2267
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.0710645
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/li_122_4022#" -0.552822
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/m1_60_1070#" 188.353
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_6/li_122_4022#" 4.42877
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/m1_60_208#" 32.9563
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_6/m1_60_1070#" 123.9
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 66.9186
+cap "lvds_currm_p_16/li_n30_2690#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.55641
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/m1_60_208#" 18.1079
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 0.53931
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" 29.7916
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_19/a_112_112#" -620.998
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 31.3111
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.88462
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 0.3198
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" 1127.41
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_19/a_112_112#" 23.9038
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 22.6189
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -8.62256
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_17/a_112_112#" 0.6396
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 1.18346
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/li_122_4022#" 57.863
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" -44.3798
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -7.63864
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_5/m1_60_1070#" -29.5216
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_6/li_122_4022#" -115.645
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_30/a_112_112#" 0.48949
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_5/li_122_4022#" 123.629
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/li_122_4022#" -124.439
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/m1_60_1070#" 12.127
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_5/li_122_4022#" 7.85372
+cap "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -51.4034
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/m1_60_1070#" 87.6777
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/a_112_112#" 0.0464645
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_19/a_112_112#" 7.83904
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -15.0419
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/a_112_112#" -557.996
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.56607
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -1249.77
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_26_n615#" -0.681848
+cap "lvds_currm_p_18/a_112_112#" "lvds_currm_p_19/a_112_112#" 0.827069
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/m1_60_208#" 859.666
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_30/li_122_2858#" 57.863
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -69.2714
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_19/a_112_112#" 93.0522
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -396.857
+cap "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 49.8007
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_5/m1_60_1070#" 12.9266
+cap "lvds_currm_p_5/li_122_4022#" "lvds_currm_p_30/li_122_2858#" 10.0636
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 86.5606
+cap "lvds_currm_p_19/a_112_112#" "lvds_currm_p_18/m1_60_208#" -112.254
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_6/m1_60_1070#" 1.98305
+cap "lvds_currm_p_5/m1_60_1070#" "lvds_currm_p_5/li_122_4022#" -53.7444
+cap "lvds_currm_p_18/a_112_112#" "lvds_currm_p_19/a_112_112#" 0.413534
+cap "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_18/m1_60_208#" 407.859
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.856577
+cap "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_19/a_112_112#" -33.1038
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/m1_60_208#" 0.250893
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 601.268
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_n1154#" 0.623936
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_30/li_122_2858#" 1676.75
+cap "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_5/m1_60_1070#" 3.03696
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n328_n615#" "lvds_currm_p_30/li_122_2858#" 0.749531
+cap "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" -83.266
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_1/li_n30_2690#" 19.7715
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_11/m1_60_208#" -520.398
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -413.51
+cap "lvds_currm_p_11/li_122_2858#" "lvds_currm_p_1/li_n30_2690#" -8521.42
+cap "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_11/m1_60_1070#" -6066.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_208#" -25.3217
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/li_122_2858#" -173.678
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_10/m1_60_1070#" 304.792
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 79.9919
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 890.576
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_10/m1_60_208#" 214.988
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" 1118.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/li_122_2858#" -102.047
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/m1_60_1070#" 32.7177
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -140.335
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -82.3887
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 145.732
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_10/m1_60_1070#" 166.86
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 5.70153
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" "lvds_currm_p_10/m1_60_1070#" 2.06791
+cap "lvds_currm_p_10/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -265.874
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/li_122_2858#" -131.703
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -440.582
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_0/li_122_4022#" 16.0515
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3.19043
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -146.951
+cap "lvds_currm_p_10/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2573.55
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -277.479
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/m1_60_1070#" -32.8632
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.79818
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 77.1847
+cap "lvds_currm_p_10/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -345.164
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.599533
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_0/li_n30_2690#" 0.438086
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_11/a_112_112#" 0.888333
+cap "lvds_currm_p_10/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -22.5692
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -973.431
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -23.538
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -172.256
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -442.624
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 22.7428
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_11/a_112_112#" 0.444167
+cap "lvds_currm_p_10/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -7951.88
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_10/m1_60_208#" -273.563
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -229.798
+cap "lvds_currm_p_10/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1263.46
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/li_122_2858#" 185.88
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -4631.01
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/m1_60_208#" -9.2953
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.521333
+cap "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_11/a_112_112#" 0.444167
+cap "lvds_currm_p_10/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -1936.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 113.954
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -107.315
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_122_2858#" 196.203
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2294.6
+cap "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 114.298
+cap "lvds_currm_p_2/li_n30_2690#" "lvds_currm_p_10/m1_60_1070#" 0.876171
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_208#" 759.017
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_12/li_122_2858#" 1122.57
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_12/li_122_2858#" 1954.29
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 80.5092
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/li_122_2858#" 0.648243
+cap "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_12/li_122_2858#" 25.4786
+cap "lvds_currm_p_10/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2477.98
+cap "lvds_currm_p_12/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1530.32
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/li_122_2858#" 0.648243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_1070#" 905.29
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/m1_60_208#" 1164.8
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_12/li_122_2858#" 52.1886
+cap "lvds_currm_p_10/a_112_112#" "lvds_currm_p_12/li_122_2858#" 1.29649
+cap "lvds_currm_p_12/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3806.56
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_2/li_n30_2690#" 0.876171
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -73.7884
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_12/m1_60_208#" -34.6325
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_122_2858#" -195.419
+cap "lvds_currm_p_12/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -606.499
+cap "lvds_currm_p_12/li_122_2858#" "lvds_currm_p_12/m1_60_208#" -392.181
+cap "lvds_currm_p_12/li_122_2858#" "lvds_currm_p_12/a_112_112#" 5.535
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_12/li_122_2858#" 93.8328
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 691.984
+cap "lvds_currm_p_12/li_122_2858#" "lvds_currm_p_12/a_112_112#" 2.7675
+cap "lvds_currm_p_12/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 873.116
+cap "lvds_currm_p_12/a_112_112#" "lvds_currm_p_12/li_122_2858#" 2.7675
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1672.71
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1122.17
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/m1_60_208#" 171.656
+cap "lvds_currm_p_12/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 764.215
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3.29714
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_13/li_122_2858#" 51.8394
+cap "lvds_currm_p_13/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2256.23
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_1070#" 57.241
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_3/li_n30_2690#" 0.438086
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_13/li_122_2858#" 38.9642
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_13/m1_60_1070#" 1484.36
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 622.095
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/li_122_2858#" -10.0765
+cap "lvds_currm_p_3/li_122_4022#" "lvds_currm_p_13/li_122_2858#" 25.7334
+cap "lvds_currm_p_13/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4858.17
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_13/li_122_2858#" -326.911
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1015.46
+cap "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_208#" -260.401
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" "lvds_currm_p_13/m1_60_1070#" 0.523427
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 21.9667
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_14/m1_60_208#" -3186.4
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" "lvds_currm_p_13/m1_60_1070#" 0.601941
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_13/a_112_112#" 0.328562
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -15.5058
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_4/li_n30_2690#" -29.9979
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -992.422
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_13/a_112_112#" 0.657123
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_13/m1_60_1070#" 94.0651
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_13/m1_60_1070#" -3867.04
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 16.3732
+cap "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_13/a_112_112#" 0.328562
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 42.4564
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 439.01
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_15/li_122_2858#" 174.388
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 23.58
+cap "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_15/li_122_2858#" 15.7967
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/m1_60_1070#" 12767.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_15/li_122_2858#" -423.95
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_15/li_122_2858#" 0.428304
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_15/li_122_2858#" 0.428304
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 7.18337
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -11.8322
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.601941
+cap "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/li_122_2858#" -29.6097
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/li_122_2858#" 2789.69
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -57.7852
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_15/li_122_2858#" -732.722
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.523427
+cap "lvds_currm_p_14/a_112_112#" "lvds_currm_p_15/li_122_2858#" 0.856607
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_15/m1_60_208#" 351.247
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_8/li_122_4022#" 0.615
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_8/li_122_4022#" 3.67193
+cap "lvds_currm_p_8/li_n30_2690#" "lvds_currm_p_8/li_122_4022#" 1.77038
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_8/li_122_4022#" 0.615
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_8/li_122_4022#" 2444.5
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_8/li_122_4022#" 134.389
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_8/li_122_4022#" 1.23
+cap "lvds_currm_p_15/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -193.245
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 62.4233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_15/m1_60_208#" 1265.6
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_15/m1_60_1070#" 1379.58
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_8/li_122_4022#" -393.941
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -180.025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_8/li_122_4022#" -980.302
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 82.1808
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_8/li_n30_2690#" 0.876171
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 47.7767
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_8/li_n30_2690#" 0.876171
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_6/li_122_4022#" 5.03182
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_16/a_112_112#" 2.51591
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_16/m1_60_208#" -2476.08
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_16/m1_60_208#" -74.9431
+cap "lvds_currm_p_16/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -443.228
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -48.7621
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" 114.382
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -264.208
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_6/li_122_4022#" -4586.63
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.09979
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -263.825
+cap "lvds_currm_p_6/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -889.411
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_8/li_n30_2690#" 2.00962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_16/m1_60_1070#" 1415.42
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 304.337
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_16/m1_60_208#" 179.314
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_6/li_122_4022#" 2.51591
+cap "lvds_currm_p_5/li_n30_2690#" "lvds_currm_p_6/li_122_4022#" 1.77038
+cap "lvds_currm_p_17/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2602.01
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_17/m1_60_1070#" 109.114
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_17/m1_60_1070#" -17.462
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_6/li_122_4022#" 79.7281
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_6/li_122_4022#" 14.6455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 154.192
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_1070#" 59.9142
+cap "lvds_currm_p_17/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 766.923
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_6/li_122_4022#" -503.749
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_5/li_n30_2690#" 0.876171
+cap "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "lvds_currm_p_6/li_122_4022#" 1.09979
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_6/li_122_4022#" -63.0813
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -369.192
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_17/m1_60_1070#" 1368.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 248.158
+cap "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" -509.069
+cap "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_17/m1_60_1070#" 107.271
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_6/li_122_4022#" -949.554
+cap "lvds_currm_p_17/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 953.609
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_17/m1_60_1070#" 6419.53
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 0.3198
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 0.6396
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 257.139
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_6/li_122_4022#" -1128
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 522.57
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_17/m1_60_1070#" -65.0488
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_6/li_122_4022#" 5902.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_6/li_122_4022#" 5197.7
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_6/li_122_4022#" 0.3198
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" "lvds_currm_p_17/m1_60_1070#" 0.586245
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" "lvds_currm_p_17/m1_60_1070#" 0.509778
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" -294.352
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_1070#" 14.2148
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_17/m1_60_208#" 2210.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_17/m1_60_1070#" 6437.64
+cap "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3.23367
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/li_122_2858#" -21.348
+cap "lvds_currm_p_18/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1140.21
+cap "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_19/li_122_2858#" -7.23788
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 250.952
+cap "lvds_currm_p_19/li_122_2858#" "lvds_currm_p_18/a_112_112#" 0.827069
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1336.43
+cap "lvds_currm_p_18/m1_60_208#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.499159
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_19/li_122_2858#" 2805.71
+cap "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_18/m1_60_208#" -24.1596
+cap "lvds_currm_p_18/m1_60_208#" "lvds_currm_p_19/li_122_2858#" -16.3015
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 278.402
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2878.38
+cap "lvds_currm_p_18/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 429.93
+cap "lvds_currm_p_18/a_112_112#" "lvds_currm_p_19/li_122_2858#" 0.413534
+cap "lvds_currm_p_19/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 4551.78
+cap "lvds_currm_p_18/a_112_112#" "lvds_currm_p_19/li_122_2858#" 0.413534
+cap "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 34.9552
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_11/li_122_4022#" -4428.17
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_11/w_122_2852#" -1505
+cap "lvds_currm_p_11/li_n30_2690#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 17.1772
+cap "VN" "lvds_currm_p_11/li_n30_2690#" 0.0416693
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_11/m1_60_1070#" -5790.12
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1086.43
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 6.10502
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 429.198
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/m1_60_1070#" -27.5477
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -215.851
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/li_122_4022#" -251.142
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_10/m1_60_1070#" 63.3921
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/li_122_4022#" 57.1411
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -233.995
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 93.1976
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3.3256
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -25.2966
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1.38765
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/li_122_4022#" -445.256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/li_122_4022#" -142.084
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -718.542
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 1.70827
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -35.9835
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/li_122_4022#" -2.84217e-14
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/li_122_4022#" -432.684
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/m1_60_208#" -34.0644
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" -600.337
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -231.159
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/li_122_4022#" 135.9
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -29.4615
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/m1_60_208#" 4.78359
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1829.49
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/a_112_112#" 0.146597
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_11/a_112_112#" 0.444167
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/m1_60_1070#" -34.0644
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" -105.473
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/a_112_112#" 0.146597
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/m1_60_1070#" -9515.7
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_10/m1_60_1070#" 0.495267
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/li_122_4022#" 720.881
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/li_122_4022#" -10448.7
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_10/li_122_4022#" 38.8795
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 1.04074
+cap "lvds_currm_p_10/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3.18906
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_1070#" -199.081
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1194.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/li_122_4022#" -984.874
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/li_122_4022#" 392.408
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_10/li_122_4022#" 17.0834
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -62.395
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/m1_60_1070#" 3699.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2405.06
+cap "lvds_currm_p_12/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1882.51
+cap "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_10/a_112_112#" 0.648243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/m1_60_208#" 3.18906
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 490.211
+cap "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_10/m1_60_1070#" -169.439
+cap "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2108.37
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_1070#" 1465.76
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 1.04074
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1064.21
+cap "lvds_currm_p_12/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1719.91
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/m1_60_1070#" -36.7303
+cap "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_13/m1_60_1070#" -174.029
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_13/m1_60_1070#" 697.702
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/m1_60_208#" 1.04074
+cap "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_12/a_112_112#" 2.7675
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4229.13
+cap "lvds_currm_p_12/m1_60_208#" "lvds_currm_p_13/m1_60_1070#" -38.8038
+cap "lvds_currm_p_12/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1862.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_13/m1_60_1070#" 144.468
+cap "lvds_currm_p_12/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 45.6747
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/a_112_112#" 0.146597
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_122_4022#" 761.569
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5809.56
+cap "lvds_currm_p_12/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 977.515
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_1070#" -47.6837
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -158.855
+cap "lvds_currm_p_13/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 268.908
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_13/m1_60_1070#" 683.265
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/a_112_112#" 0.146597
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/li_122_4022#" 1524.85
+cap "lvds_currm_p_13/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3971.62
+cap "lvds_currm_p_13/li_122_4022#" "lvds_currm_p_13/m1_60_1070#" -270.421
+cap "lvds_currm_p_13/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3108.51
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7548.41
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_1070#" 55.0297
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_13/m1_60_1070#" 1182.23
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5034.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_13/m1_60_1070#" 767.76
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_13/li_122_4022#" -222.203
+cap "lvds_currm_p_13/li_122_4022#" "lvds_currm_p_24/a_112_112#" 59.4975
+cap "lvds_currm_p_14/li_122_4022#" "lvds_currm_p_13/a_112_112#" 0.328562
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_14/li_122_4022#" 413.994
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_14/m1_60_208#" 59.0844
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_13/m1_60_1070#" -3349.72
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_14/li_122_4022#" 79.2119
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_14/m1_60_208#" -6408.52
+cap "lvds_currm_p_14/li_122_4022#" "lvds_currm_p_14/m1_60_208#" -3112.69
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_14/m1_60_208#" -2976.96
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" 0.497256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_14/m1_60_208#" 30.5699
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_25/a_112_112#" 0.146597
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 0.497256
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 95.6751
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 8022.73
+cap "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 569.58
+cap "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_25/a_112_112#" 36.5232
+cap "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_14/a_112_112#" 0.428304
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 66.0298
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/m1_60_1070#" 11752.5
+cap "lvds_currm_p_15/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -657.643
+cap "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_15/m1_60_1070#" 2313.95
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -55.2467
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2688.9
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 0.146597
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 180.585
+cap "lvds_currm_p_15/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -754.898
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/li_122_4022#" 6309.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_16/li_122_4022#" -517.133
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 689.836
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1.38765
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_16/li_122_4022#" -72.0282
+cap "lvds_currm_p_15/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3.18906
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2071.38
+cap "lvds_currm_p_16/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -733.505
+cap "lvds_currm_p_15/a_112_112#" "lvds_currm_p_16/li_122_4022#" 0.615
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -226.146
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.207979
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 875.859
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/m1_60_208#" 81.3404
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_15/m1_60_208#" -35.5455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_15/m1_60_1070#" 25.4874
+cap "lvds_currm_p_16/li_122_4022#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2888.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_16/m1_60_1070#" 17.0017
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_16/m1_60_1070#" 1655.78
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/m1_60_208#" 0.693827
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/li_122_4022#" 1143.23
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/a_112_112#" 0.146597
+cap "lvds_currm_p_16/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 4.78359
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_17/li_122_4022#" -7.20741
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_17/li_122_4022#" -4980.98
+cap "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_16/m1_60_1070#" -39.9886
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/m1_60_1070#" -231.963
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -55.8754
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -4583.26
+cap "lvds_currm_p_16/a_112_112#" "lvds_currm_p_17/li_122_4022#" 2.51591
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/m1_60_1070#" 12.3859
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_17/m1_60_208#" -34.0644
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 629.68
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/m1_60_208#" 7.32487
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3543.3
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2478.69
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 67.9878
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1126.18
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1139.19
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.18246
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_17/li_122_4022#" 14.6419
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2174.97
+cap "lvds_currm_p_17/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3.18906
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 255.043
+cap "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 6.21725e-15
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1.04074
+cap "lvds_currm_p_17/a_112_112#" "lvds_currm_p_18/li_122_4022#" 0.3198
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_18/m1_60_208#" -34.0644
+cap "lvds_currm_p_18/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 7040.69
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/m1_60_208#" 5.52019
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.09123
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/li_122_4022#" -179.525
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_18/li_122_4022#" 0.326031
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_18/m1_60_208#" -7.10543e-15
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 6825.55
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" "lvds_currm_p_17/m1_60_1070#" 0.484289
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2930.06
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/m1_60_208#" 1.38765
+cap "lvds_currm_p_18/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 9842.35
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_18/li_122_4022#" 117.009
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_18/m1_60_208#" 4.78359
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5196.52
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3308.59
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_1070#" -333.246
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_18/a_112_112#" 0.413534
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1394.03
+cap "lvds_currm_p_19/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6123.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2436.76
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1510.73
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.41726
+cap "lvds_currm_p_18/m1_60_208#" "lvds_currm_p_18/m1_60_1070#" -24.2894
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3586.78
+cap "lvds_currm_p_18/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1.59453
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6860.15
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_18/m1_60_1070#" 376.864
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_28/m1_60_208#" 3.92783
+cap "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 323.537
+cap "lvds_currm_p_19/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 4744.35
+cap "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -20.6334
+cap "lvds_currm_p_19/li_n30_2690#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 31.0636
+cap "lvds_currm_p_19/m1_60_1070#" "lvds_currm_p_19/li_n30_2690#" 5.74589
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -3026.09
+cap "lvds_currm_p_11/li_n30_2690#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 18.3957
+cap "lvds_currm_p_11/li_n30_2690#" "VN" 2.49564
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_11/li_n30_2690#" -5824.25
+cap "lvds_currm_p_11/w_122_2852#" "lvds_currm_p_11/li_n30_2690#" -916.798
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_21/m1_60_208#" -1040.8
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 89.122
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_21/a_112_112#" -150.194
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -51.8309
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 13.2644
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/a_112_112#" 1.99875
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -119.296
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -6.04419
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -5.39252
+cap "lvds_currm_p_21/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -148.867
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1106.55
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_20/a_112_112#" 0.089659
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 41.984
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 111.321
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -31.623
+cap "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.177848
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/a_112_112#" 0.171459
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/m1_60_1070#" 167.28
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -20.8895
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -115.309
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.39033
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/li_122_4022#" 163.643
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 364.442
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 125.526
+cap "lvds_currm_p_21/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -81.7259
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/li_122_4022#" -17.6972
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/li_122_4022#" -428.319
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_10/li_122_4022#" 137.551
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -11.4537
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 20.8988
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -35.8468
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 51.1406
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.18346
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_22/a_112_112#" 1.35764
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/a_112_112#" 16.605
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.8109
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -108.316
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.78493
+cap "lvds_currm_p_21/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 22.4321
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.92085
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2712.72
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 291.899
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/li_122_4022#" 51.3391
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 28.2346
+cap "lvds_currm_p_20/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -319.048
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/a_112_112#" -122.746
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -94.8267
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2108.18
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.0436247
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2154.11
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 35.4362
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 25.0032
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_22/a_112_112#" 0.0841407
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -190.47
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.8666
+cap "lvds_currm_p_21/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -1942.01
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/m1_60_208#" 0.568297
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -18.9878
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -24.6362
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_10/li_122_4022#" 54.7181
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/a_112_112#" -55.4194
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.29265
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -634.42
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1651.03
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_10/m1_60_1070#" 1.19925
+cap "lvds_currm_p_20/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -358.602
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -10.3213
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1630.34
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_22/a_112_112#" -262.124
+cap "lvds_currm_p_20/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -5870.69
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_22/a_112_112#" 16.605
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 49.5574
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/a_112_112#" 0.0124662
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.58228
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_10/li_122_4022#" 54.5478
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/a_112_112#" 0.444167
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2373.25
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/a_112_112#" -43.0009
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 135.259
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -0.0154718
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -1.43125
+cap "lvds_currm_p_22/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -533.586
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_10/li_122_4022#" 105.887
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/a_112_112#" 0.888333
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -492.752
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_22/a_112_112#" 6.94126
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.06209
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3570.98
+cap "lvds_currm_p_20/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -318.708
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1364.59
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/a_112_112#" -126.153
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 204.06
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -732.644
+cap "lvds_currm_p_10/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -159.246
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.0388
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 768.869
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/a_112_112#" 39.9868
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.0113259
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_23/a_112_112#" 1.02793
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.521333
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/li_122_4022#" 931.836
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_23/a_112_112#" 0.0241731
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -40.5104
+cap "lvds_currm_p_22/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -639.174
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_10/m1_60_1070#" 19.6635
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_208#" -5.55112e-17
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -947.279
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.17391
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.7866
+cap "lvds_currm_p_10/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 390.458
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/m1_60_1070#" 332.421
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_122_4022#" 511.181
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_23/a_112_112#" 8.3025
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_20/a_112_112#" 1.29649
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.17391
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 96.6101
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_12/li_122_4022#" 485.17
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_12/li_122_4022#" 389.939
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 325.115
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_12/li_122_4022#" 205.603
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/m1_60_208#" 1090.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/m1_60_208#" 3258.87
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 70.9617
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1029.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 388.979
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2516.26
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_22/a_112_112#" 1498.75
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 30.4608
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -20.1753
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/a_112_112#" 53.8652
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 7.55918
+cap "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_12/li_122_4022#" -29.3098
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/a_112_112#" 1190.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_22/a_112_112#" 1231.45
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 3.8576
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_23/a_112_112#" 17.3492
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/a_112_112#" 3.52495
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/a_112_112#" 5.45038
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_10/m1_60_1070#" 434.374
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_22/a_112_112#" 0.648243
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -286.008
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 230.32
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/a_112_112#" -244.675
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.53741
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_12/m1_60_208#" 354.404
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/a_112_112#" 3.44747
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_23/a_112_112#" 5.535
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 649.476
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/m1_60_208#" 561.976
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_12/li_122_4022#" 916.654
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/m1_60_208#" 18.5152
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_12/li_122_4022#" -55.4876
+cap "lvds_currm_p_23/a_112_112#" "lvds_currm_p_12/li_122_4022#" 214.983
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 60.544
+cap "lvds_currm_p_24/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3257.31
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1.32373
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_12/m1_60_208#" 1175.5
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4592.96
+cap "lvds_currm_p_12/m1_60_208#" "lvds_currm_p_23/a_112_112#" -452.908
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/m1_60_208#" 8.58571
+cap "lvds_currm_p_23/a_112_112#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -39.4508
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_12/li_122_4022#" 129.883
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_12/m1_60_208#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -49.6175
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/li_122_4022#" -353.745
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_23/a_112_112#" 8.3025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -275.634
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_23/a_112_112#" 2.7675
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_12/m1_60_208#" 17.3734
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1036.17
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 4913.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/a_112_112#" 44.5015
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.40034
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_13/m1_60_208#" 5631.51
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_13/li_122_4022#" 1076.96
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 204.052
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_208#" 2087.3
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/a_112_112#" 3.02542
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_25/a_112_112#" 2.11632
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.97768
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_13/m1_60_208#" -278.767
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_13/li_122_4022#" -1.53145
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 11.5295
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_23/a_112_112#" 8.3025
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2.70455
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -30.1261
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3808.62
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_24/a_112_112#" 3.44747
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 237.036
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_13/li_122_4022#" 1407.07
+cap "lvds_currm_p_24/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -34.0781
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/m1_60_1070#" 206.491
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_13/li_122_4022#" 1816.47
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_13/m1_60_208#" 0.171747
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.0899469
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_13/li_122_4022#" 215.68
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 655.87
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/li_n30_2690#" 2.49605
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6345.57
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_13/m1_60_208#" 18.5152
+cap "lvds_currm_p_13/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2463.88
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_24/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 19.9995
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/a_112_112#" -61.7598
+cap "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_13/li_122_4022#" -17.7907
+cap "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_13/m1_60_208#" 26.9284
+cap "lvds_currm_p_14/li_122_4022#" "lvds_currm_p_13/m1_60_1070#" 57.5117
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_24/a_112_112#" -1793.19
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_14/li_122_4022#" 252.835
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 5.23045
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 47.6896
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.54169
+cap "lvds_currm_p_14/w_122_2852#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -199.846
+cap "lvds_currm_p_13/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.0899855
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_24/a_112_112#" -28.0475
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_26/a_112_112#" 1.41088
+cap "lvds_currm_p_23/a_112_112#" "lvds_currm_p_24/a_112_112#" 0.328562
+cap "lvds_currm_p_14/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -159.064
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_14/li_122_4022#" 44.9217
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_26/a_112_112#" 0.0841407
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_25/a_112_112#" 6.89493
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -995.304
+cap "lvds_currm_p_24/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -185.792
+cap "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" "lvds_currm_p_13/m1_60_1070#" 1.17508
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_25/a_112_112#" -451.865
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 24.6743
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.13947
+cap "lvds_currm_p_23/a_112_112#" "lvds_currm_p_24/a_112_112#" 0.657123
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_25/a_112_112#" -53.781
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/a_112_112#" 0.0436247
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_14/m1_60_208#" -2743.1
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_13/m1_60_1070#" -614.889
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.7195
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_14/li_122_4022#" 115.513
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -16.4792
+cap "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_13/m1_60_1070#" 21.4113
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_14/li_122_4022#" -722.757
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 21.9798
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -5.58596
+cap "lvds_currm_p_25/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -98.0762
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -459.744
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_25/a_112_112#" 16.605
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3512.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 156.656
+cap "lvds_currm_p_15/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -72.263
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_25/a_112_112#" 0.856607
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5179.58
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/li_122_4022#" 803.768
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 36.3284
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2379.83
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/li_122_4022#" 1522.11
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_14/m1_60_208#" 2291.7
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_27/a_112_112#" 0.037504
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.535616
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_27/a_112_112#" 0.0124662
+cap "lvds_currm_p_26/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -628.39
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.73032
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -119.995
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_26/a_112_112#" -246.726
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -1.43125
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_15/li_122_4022#" 127.474
+cap "lvds_currm_p_15/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2159.56
+cap "lvds_currm_p_25/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2197.17
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -2.17241
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_15/m1_60_1070#" 94.3195
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/a_112_112#" 6.94126
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_15/m1_60_1070#" 778.415
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 87.9733
+cap "lvds_currm_p_24/a_112_112#" "lvds_currm_p_25/a_112_112#" 0.428304
+cap "lvds_currm_p_14/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 373.677
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" 1.57394
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_15/li_122_4022#" 60.9652
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5.17391
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5677.48
+cap "lvds_currm_p_26/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -508.787
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_26/a_112_112#" 16.605
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_27/a_112_112#" 1.05816
+cap "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -2.68503
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 4.52214
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -0.0261777
+cap "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_15/m1_60_1070#" 22.6914
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_16/li_122_4022#" 154.017
+cap "lvds_currm_p_27/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -624.061
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1063.61
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 7.26946
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 5.17391
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_25/m1_60_208#" 170.154
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 6.97241
+cap "lvds_currm_p_16/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 143.543
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_25/m1_60_208#" 1978.44
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 71.9532
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_26/a_112_112#" 0.615
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_16/li_122_4022#" 9.08626
+cap "lvds_currm_p_16/li_122_4022#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2859.26
+cap "lvds_currm_p_26/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 188.785
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 12.7917
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_26/a_112_112#" 16.605
+cap "lvds_currm_p_25/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -623.444
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 55.6861
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_25/m1_60_208#" -217.511
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1003.98
+cap "lvds_currm_p_27/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -471.474
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -695.818
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_25/a_112_112#" 1.23
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_16/li_122_4022#" -1.53145
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -120.056
+cap "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.124522
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 612.522
+cap "lvds_currm_p_16/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 10.7124
+cap "lvds_currm_p_15/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 178.143
+cap "lvds_currm_p_26/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -312.07
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n225_n518#" 3.83739
+cap "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 715.953
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_25/m1_60_208#" 18.7866
+cap "lvds_currm_p_25/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 892.797
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -65.2775
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/a_112_112#" -29.8009
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/m1_60_208#" 8.99279
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -57.5253
+cap "lvds_currm_p_16/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 63.9059
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_17/li_122_4022#" -60.7311
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.90244
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_26/m1_60_208#" -51.7592
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/a_112_112#" 221.792
+cap "lvds_currm_p_27/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3709.06
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 60.544
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/m1_60_208#" 417.92
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_27/a_112_112#" 5.03182
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1183.8
+cap "lvds_currm_p_26/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -524.221
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_27/a_112_112#" -39.5369
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_26/m1_60_208#" 24.9273
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_27/a_112_112#" 2.51591
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -947.887
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_26/m1_60_208#" 10.782
+cap "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 227.948
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/a_112_112#" -105.819
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 649.476
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/li_122_4022#" 4.70298
+cap "lvds_currm_p_16/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1.32373
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/m1_60_208#" -4430.78
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_26/m1_60_208#" 23.2721
+cap "lvds_currm_p_27/a_112_112#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -24.4502
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3702.79
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/li_122_4022#" -420.707
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_n1154#" "lvds_currm_p_27/a_112_112#" 3.15941
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -8.71499
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2.46463
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3012.8
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 18.5152
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_1070#" 189.363
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 369.484
+cap "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.87403
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_17/m1_60_1070#" 72.2357
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_17/m1_60_1070#" 116.517
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 9.04729
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 12.0543
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2660.34
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 601.961
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1466.2
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 625.68
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 172.074
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_17/m1_60_1070#" 134.03
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 3.26923
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/li_n30_2690#" 0.55641
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 4.60125
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/a_112_112#" 3.60606
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1512.29
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 491.763
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/m1_60_208#" -5.55112e-17
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/a_112_112#" 13.2267
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/m1_60_208#" -328.218
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 67.5273
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_18/li_122_4022#" 145.539
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -0.0729877
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1873.08
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_18/li_122_4022#" -581.934
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 13.399
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3612.48
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_27/m1_60_208#" -9.83976
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_18/li_122_4022#" 1.29212
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 27.7256
+cap "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 0.53931
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1298.84
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 29.8908
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 898.501
+cap "lvds_currm_p_17/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 330.607
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -136.228
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5161.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 57.8556
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/li_122_4022#" -872.972
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5763.54
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_18/li_122_4022#" 8149.6
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3.26923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_18/li_122_4022#" 6257.12
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/a_112_112#" 0.6396
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/a_112_112#" 0.3198
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 3011.54
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 11.8612
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2865.36
+cap "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 412.484
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_28/m1_60_208#" -20.0062
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 825.002
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/li_122_4022#" 50.1609
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 37.0563
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1347.45
+cap "lvds_currm_p_28/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1994.29
+cap "lvds_currm_p_19/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 4089.92
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" -4.38895
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3107.14
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/m1_60_1070#" 125.268
+cap "lvds_currm_p_28/a_112_112#" "lvds_currm_p_19/li_122_4022#" 0.827069
+cap "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_159_n518#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 1.56607
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 305.208
+cap "lvds_currm_p_19/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5402.3
+cap "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_19/li_122_4022#" -43.5128
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_29/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 2483.66
+cap "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_28/m1_60_208#" 721.231
+cap "lvds_currm_p_28/a_112_112#" "lvds_currm_p_19/li_122_4022#" 0.413534
+cap "lvds_currm_p_28/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 785.007
+cap "lvds_currm_p_18/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 505.064
+cap "lvds_currm_p_19/li_n30_2690#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 32.8704
+cap "lvds_currm_p_19/li_n30_2690#" "lvds_currm_p_19/m1_60_1070#" 1.46025
+cap "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_11/li_n30_2690#" -206.268
+cap "lvds_currm_p_21/m1_60_1070#" "lvds_currm_p_11/li_n30_2690#" -5655.61
+cap "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_21/li_122_2858#" -7837.11
+cap "lvds_currm_p_21/m1_60_208#" "lvds_currm_p_11/li_n30_2690#" -519.166
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 66.6259
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -120.053
+cap "lvds_currm_p_20/li_122_2858#" "lvds_currm_p_20/m1_60_1070#" 304.792
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 20.0007
+cap "lvds_currm_p_20/li_122_2858#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -291.595
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/li_122_2858#" -29.9674
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" 804.045
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/m1_60_1070#" 37.8177
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1187.46
+cap "lvds_currm_p_20/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -132.826
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.441886
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -231.159
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" "lvds_currm_p_20/m1_60_1070#" 1.79818
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/li_122_2858#" 166.565
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/m1_60_1070#" -32.2787
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" -131.503
+cap "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_20/li_122_2858#" 16.0515
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -449.636
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/li_122_2858#" -127.539
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/li_122_2858#" -328.622
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" "lvds_currm_p_20/m1_60_1070#" 2.06791
+cap "lvds_currm_p_20/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -425.398
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 2636.19
+cap "lvds_currm_p_20/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -1136.39
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -100.76
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/li_122_2858#" -269.398
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -163.982
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/m1_60_1070#" -8.71087
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -28.5349
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.521333
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/li_122_2858#" -23.5432
+cap "lvds_currm_p_20/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -8654.08
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_10/li_n30_2690#" 0.438086
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.599533
+cap "lvds_currm_p_20/li_122_2858#" "lvds_currm_p_21/a_112_112#" 0.444167
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" 22.7428
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/li_122_2858#" 0.444167
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -8841.64
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/li_122_2858#" 0.888333
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -437.065
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1376.17
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/li_122_2858#" 185.88
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 120.962
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3147.14
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_20/m1_60_1070#" 51.8938
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_20/a_112_112#" 1.29649
+cap "lvds_currm_p_22/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1612.63
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_12/li_n30_2690#" 0.876171
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 52.2269
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_12/li_122_4022#" 25.4786
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 984.917
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_20/a_112_112#" 0.648243
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_22/li_122_2858#" 0.648243
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3125.22
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" -102.992
+cap "lvds_currm_p_22/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1641.94
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1426.15
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_20/m1_60_208#" 1954.29
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/li_122_2858#" 196.203
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/m1_60_208#" 1165.79
+cap "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" 80.5092
+cap "lvds_currm_p_22/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -4398.58
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/li_122_2858#" -195.424
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_23/m1_60_1070#" 93.538
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_22/m1_60_208#" -388.017
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_22/a_112_112#" 2.7675
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_12/li_n30_2690#" 0.876171
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 897.213
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 565.621
+cap "lvds_currm_p_22/a_112_112#" "lvds_currm_p_22/li_122_2858#" 2.7675
+cap "lvds_currm_p_22/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1604.5
+cap "lvds_currm_p_23/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1157.29
+cap "lvds_currm_p_22/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1139.11
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" -73.7884
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/m1_60_208#" 172.893
+cap "lvds_currm_p_22/m1_60_208#" "lvds_currm_p_23/m1_60_1070#" -33.6349
+cap "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_22/a_112_112#" 5.535
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 633.411
+cap "lvds_currm_p_23/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6442.22
+cap "lvds_currm_p_23/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3.90156
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_208#" -257.282
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" 57.2442
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/m1_60_208#" 1464.61
+cap "lvds_currm_p_23/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 56.3912
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/li_122_2858#" -10.0817
+cap "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 494.478
+cap "lvds_currm_p_23/li_122_2858#" "lvds_currm_p_13/li_122_4022#" 25.7334
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/li_122_2858#" 51.5447
+cap "lvds_currm_p_23/li_122_2858#" "lvds_currm_p_23/m1_60_208#" -322.747
+cap "lvds_currm_p_23/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2836.62
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_13/li_n30_2690#" 0.438086
+cap "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_24/m1_60_208#" -2854.04
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" 16.3732
+cap "lvds_currm_p_24/m1_60_208#" "lvds_currm_p_14/li_n30_2690#" -29.6841
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_24/m1_60_208#" -2981.21
+cap "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_23/m1_60_1070#" 93.4021
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" 0.523427
+cap "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_23/a_112_112#" 0.328562
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" 0.601941
+cap "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_23/a_112_112#" 0.328562
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/m1_60_208#" -1723.54
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/li_122_2858#" -15.511
+cap "lvds_currm_p_24/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 85.4278
+cap "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_23/a_112_112#" 0.657123
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_24/a_112_112#" 0.428304
+cap "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/m1_60_208#" -66.2536
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_118#" 0.601941
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 23.6278
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_24/m1_60_208#" -15.3013
+cap "lvds_currm_p_25/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -837.407
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_24/m1_60_208#" 2136.02
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_25/li_122_2858#" 174.204
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_n518#" 0.523427
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -29.6149
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_24/a_112_112#" 0.856607
+cap "lvds_currm_p_25/li_122_2858#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -678.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_24/m1_60_208#" 571.714
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_15/li_122_4022#" 15.7967
+cap "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_24/a_112_112#" 0.428304
+cap "lvds_currm_p_25/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 14.7449
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_24/m1_60_208#" 10691.7
+cap "lvds_currm_p_16/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1219.26
+cap "lvds_currm_p_25/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1354.69
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_16/li_122_4022#" 0.615
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 60.177
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_16/li_122_4022#" -628.997
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_16/li_122_4022#" 134.094
+cap "lvds_currm_p_25/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -248.087
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_25/m1_60_1070#" 351.831
+cap "lvds_currm_p_25/a_112_112#" "lvds_currm_p_16/li_122_4022#" 0.615
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_16/li_122_4022#" 2448.67
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/m1_60_1070#" 82.1808
+cap "lvds_currm_p_16/li_122_4022#" "lvds_currm_p_25/a_112_112#" 1.23
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/li_122_4022#" 3.66674
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_15/li_n30_2690#" 0.876171
+cap "lvds_currm_p_16/li_122_4022#" "lvds_currm_p_15/li_n30_2690#" 1.77038
+cap "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/m1_60_208#" -174.466
+cap "lvds_currm_p_25/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1659.44
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_17/li_122_4022#" 2.51591
+cap "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "lvds_currm_p_17/li_122_4022#" 1.09979
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -2.44478
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_26/m1_60_208#" -73.2963
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_16/li_n30_2690#" 0.876171
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_17/li_122_4022#" -34.4018
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/m1_60_208#" -3856.11
+cap "lvds_currm_p_26/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1737.21
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/m1_60_208#" 304.337
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/m1_60_1070#" -48.7621
+cap "lvds_currm_p_26/a_112_112#" "lvds_currm_p_17/li_122_4022#" 2.51591
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -263.265
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_17/li_122_4022#" 114.087
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_26/m1_60_208#" 179.32
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/li_n30_2690#" 2.00962
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -5233.79
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/li_122_4022#" 47.7781
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_26/m1_60_208#" -84.646
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_26/a_112_112#" 5.03182
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_17/li_n30_2690#" 1.77038
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -494.68
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 169.637
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_27/m1_60_208#" -494.218
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3265.4
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -100.93
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_17/li_122_4022#" 79.4333
+cap "lvds_currm_p_27/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1648.78
+cap "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.09979
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -364.865
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_17/li_n30_2690#" 0.876171
+cap "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 124.079
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 59.9142
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 966.848
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/m1_60_208#" 108.293
+cap "lvds_currm_p_27/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -34.8283
+cap "lvds_currm_p_17/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -16.5854
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_27/m1_60_1070#" 10006.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_27/m1_60_208#" 1429.1
+cap "lvds_currm_p_18/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5125.48
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/a_112_112#" 0.3198
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_n518#" "lvds_currm_p_27/m1_60_1070#" 0.509778
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/m1_60_1070#" 111.001
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/m1_60_208#" -933.977
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_27/a_112_112#" 0.6396
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/m1_60_1070#" 9848.69
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/m1_60_208#" 2212.35
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_118#" "lvds_currm_p_27/m1_60_1070#" 0.586245
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_18/li_122_4022#" 8272.93
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_18/li_122_4022#" 0.3198
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 304.331
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/m1_60_208#" -64.2448
+cap "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.09979
+cap "lvds_currm_p_28/a_112_112#" "lvds_currm_p_19/li_122_4022#" 0.827069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_19/li_122_4022#" 3994.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_28/m1_60_208#" 1473.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_28/m1_60_1070#" 4890.49
+cap "lvds_currm_p_28/a_112_112#" "lvds_currm_p_19/li_122_4022#" 0.413534
+cap "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_28/m1_60_1070#" -24.2894
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 122.123
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_19/li_122_4022#" 5089.36
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_28/a_112_112#" 0.413534
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_28/m1_60_1070#" 2495.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_28/m1_60_208#" 573.608
+cap "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_28/m1_60_1070#" -0.426987
+cap "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_19/li_122_4022#" -13.9721
+cap "lvds_currm_p_21/li_n30_2690#" "lvds_currm_p_21/w_122_2852#" -1782.37
+cap "lvds_currm_p_21/li_122_4022#" "lvds_currm_p_21/li_n30_2690#" -4656.46
+cap "lvds_currm_p_21/m1_60_1070#" "lvds_currm_p_21/li_n30_2690#" -6092.39
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 378.844
+cap "lvds_currm_p_20/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -73.1388
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/m1_60_1070#" -57.742
+cap "VN" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -21.0897
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1610.25
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -11.8454
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 9.69817
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_208#" 2.58002
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/m1_60_208#" -27.5477
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/li_122_4022#" 28.9872
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "lvds_currm_p_20/m1_60_1070#" 0.177519
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/li_122_4022#" -733.776
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -772.037
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/li_122_4022#" -161.405
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/m1_60_1070#" -594.973
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -53.8924
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 9.69817
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/li_122_4022#" -2.84217e-14
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/m1_60_1070#" -34.0644
+cap "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3.86768
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" "lvds_currm_p_20/m1_60_1070#" 1.70827
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/li_122_4022#" 986.501
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" 147.267
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -518.408
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_20/li_122_4022#" -594.156
+cap "lvds_currm_p_21/a_112_112#" "lvds_currm_p_20/li_122_4022#" 0.444167
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1660.07
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/m1_60_208#" -34.0644
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 0.495267
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -569.921
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/li_122_4022#" 405.807
+cap "lvds_currm_p_20/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2.57845
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.0782
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -8901.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/li_122_4022#" -12163.6
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/li_122_4022#" 2385.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/li_122_4022#" 2187.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_22/li_122_4022#" 886.054
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_22/li_122_4022#" -156.295
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2582.77
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 615.157
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 795.804
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4195.26
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1050.73
+cap "lvds_currm_p_20/a_112_112#" "lvds_currm_p_22/li_122_4022#" 0.648243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/m1_60_208#" 2.57845
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/m1_60_208#" -36.7303
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 801.249
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_22/a_112_112#" 2.7675
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 4938.12
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5681.43
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" 265.875
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/m1_60_208#" 3.86768
+cap "lvds_currm_p_22/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1002.28
+cap "lvds_currm_p_22/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3721.38
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_22/m1_60_208#" -38.8038
+cap "lvds_currm_p_23/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 684.47
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_23/m1_60_1070#" -160.959
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/m1_60_1070#" 533.545
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/li_122_4022#" -258.254
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/m1_60_208#" -34.0644
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/li_122_4022#" 4850.03
+cap "lvds_currm_p_23/li_122_4022#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1795.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/m1_60_208#" 1.28923
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_208#" 6.21725e-15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_23/li_122_4022#" 1173.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/m1_60_1070#" 2178.34
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 343.303
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_23/m1_60_1070#" 382.025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 9480.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3637.41
+cap "lvds_currm_p_24/w_122_2852#" "lvds_currm_p_24/li_122_4022#" 350.156
+cap "lvds_currm_p_24/w_122_2852#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 406.897
+cap "lvds_currm_p_24/w_122_2852#" "lvds_currm_p_24/m1_60_208#" -26.2938
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_24/li_122_4022#" 420.597
+cap "lvds_currm_p_23/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 58.275
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_24/m1_60_208#" -32.9469
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" "lvds_currm_p_23/m1_60_1070#" 0.176262
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" "lvds_currm_p_23/m1_60_1070#" 0.497256
+cap "lvds_currm_p_23/a_112_112#" "lvds_currm_p_24/li_122_4022#" 0.328562
+cap "lvds_currm_p_24/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 29.6963
+cap "lvds_currm_p_24/m1_60_208#" "lvds_currm_p_24/li_122_4022#" -7.10543e-15
+cap "lvds_currm_p_24/w_122_2852#" "lvds_currm_p_23/m1_60_1070#" -3182.38
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -46.6709
+cap "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_25/m1_60_1070#" 2320.82
+cap "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_24/m1_60_208#" -2.84217e-14
+cap "lvds_currm_p_25/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -243.436
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.0803425
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n605_754#" 0.497256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2793.99
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2921.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/m1_60_1070#" 2735.89
+cap "lvds_currm_p_24/m1_60_208#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -13.1469
+cap "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_24/a_112_112#" 0.428304
+cap "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 831.756
+cap "lvds_currm_p_24/m1_60_208#" "lvds_currm_p_25/m1_60_1070#" -7.19927
+cap "lvds_currm_p_25/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -810.562
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_25/m1_60_208#" -35.5455
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1178
+cap "lvds_currm_p_26/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -158.252
+cap "lvds_currm_p_26/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1051.77
+cap "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.207979
+cap "lvds_currm_p_25/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2055.82
+cap "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/m1_60_1070#" -58.0068
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -87.7556
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/m1_60_208#" 2.57845
+cap "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3162.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 85.8994
+cap "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/a_112_112#" 0.615
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_26/m1_60_208#" -39.9886
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 329.222
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/m1_60_1070#" 1604.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -952.794
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/m1_60_208#" 3.86768
+cap "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_26/m1_60_1070#" -219.341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -5463.83
+cap "lvds_currm_p_27/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -269.708
+cap "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1286.98
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/li_122_4022#" -5869.42
+cap "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_26/a_112_112#" 2.51591
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/m1_60_1070#" 2632.08
+cap "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_27/m1_60_1070#" -34.0644
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/m1_60_1070#" 361.745
+cap "lvds_currm_p_27/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2.57845
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3986.66
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/m1_60_208#" 6.21725e-15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_27/m1_60_1070#" 123.774
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1414.15
+cap "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_27/m1_60_1070#" 36.6496
+cap "lvds_currm_p_27/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 864.119
+cap "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1412.53
+cap "lvds_currm_p_27/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 350.437
+cap "lvds_currm_p_28/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3.86768
+cap "lvds_currm_p_27/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 7858.18
+cap "lvds_currm_p_28/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5068.32
+cap "lvds_currm_p_28/li_122_4022#" "lvds_currm_p_28/m1_60_208#" -7.10543e-15
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_28/li_122_4022#" 128.657
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 0.0808966
+cap "lvds_currm_p_28/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8957.56
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_543_754#" 0.484289
+cap "lvds_currm_p_27/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5220.4
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_28/m1_60_208#" -34.0644
+cap "lvds_currm_p_27/a_112_112#" "lvds_currm_p_28/li_122_4022#" 0.3198
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1723.76
+cap "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_28/m1_60_1070#" -24.2894
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1135.9
+cap "lvds_currm_p_28/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 10152.5
+cap "lvds_currm_p_28/m1_60_208#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1.28923
+cap "lvds_currm_p_29/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2668.12
+cap "lvds_currm_p_29/li_122_4022#" "lvds_currm_p_28/m1_60_1070#" 382.616
+cap "lvds_currm_p_29/li_122_4022#" "lvds_currm_p_28/a_112_112#" 0.413534
+cap "lvds_currm_p_28/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2548.36
+cap "lvds_currm_p_29/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 10555.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_29/m1_60_1070#" 6.07953
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.886943
+cap "lvds_currm_p_21/m1_60_1070#" "lvds_currm_p_21/li_n30_2690#" 1.38479
+cap "lvds_currm_p_21/w_122_2852#" "lvds_currm_p_21/li_n30_2690#" -69.683
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 180.275
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 120.893
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -0.177848
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 1.00594
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 22.791
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -438.82
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/li_122_4022#" 79.4255
+cap "lvds_currm_p_20/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 221.929
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/m1_60_1070#" 79.4255
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 272.013
+cap "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 70.3517
+cap "lvds_currm_p_20/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 26.4205
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" "lvds_currm_p_20/m1_60_1070#" 0.443133
+cap "lvds_currm_p_21/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_754#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -5.55112e-17
+cap "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1112.91
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 669.982
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1217.07
+cap "lvds_currm_p_22/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 457.974
+cap "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/m1_60_1070#" 338.727
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_20/m1_60_1070#" 52.8003
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_20/m1_60_1070#" 784.553
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 2689.79
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_23/m1_60_1070#" 26.6253
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_22/li_122_4022#" 221.928
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/m1_60_1070#" -354.412
+cap "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -175.805
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" 134
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/li_122_4022#" 2020.56
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/m1_60_1070#" 112.847
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" -5.55112e-17
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_23/li_122_4022#" 79.4255
+cap "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4790.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/li_122_4022#" 305.616
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_23/m1_60_1070#" 9.91419
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_24/li_122_4022#" 79.4255
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_447_754#" "lvds_currm_p_24/w_122_2852#" -0.711392
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_24/w_122_2852#" 234.588
+cap "lvds_currm_p_23/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" "lvds_currm_p_23/m1_60_1070#" 0.99882
+cap "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_24/w_122_2852#" -13.7654
+cap "lvds_currm_p_23/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 395.674
+cap "lvds_currm_p_24/w_122_2852#" "lvds_currm_p_24/li_122_4022#" 435.314
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_24/li_122_4022#" 296.383
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/li_122_4022#" 983.903
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/m1_60_1070#" 31.3721
+cap "lvds_currm_p_25/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 297.403
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_n737_n518#" 0.455274
+cap "lvds_currm_p_25/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 9.8973
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2906.3
+cap "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_255_754#" -0.355696
+cap "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_25/m1_60_1070#" 79.4255
+cap "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n129_754#" -0.124522
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/m1_60_1070#" 417.053
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 308.564
+cap "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 620.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/li_122_4022#" 463.321
+cap "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/m1_60_1070#" 79.4255
+cap "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 3030.49
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/li_122_4022#" -265.927
+cap "lvds_currm_p_26/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 65.6269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -43.037
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 131.625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/li_122_4022#" -32.4229
+cap "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_27/li_122_4022#" 21.6124
+cap "lvds_currm_p_27/m1_60_1070#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 65.7289
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 95.3294
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2560.8
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/li_122_4022#" 173.614
+cap "lvds_currm_p_27/li_122_4022#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 339.968
+cap "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/li_122_4022#" 1869.79
+cap "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_8DK6RJ_0/a_n513_754#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" -5.55112e-17
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/a_443_n518#" 0.458414
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_27/m1_60_1070#" 1684.36
+cap "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_28/li_122_4022#" 153.131
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_28/li_122_4022#" 1137.75
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_28/m1_60_1070#" 104.914
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_29/li_122_4022#" 2906.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_29/m1_60_1070#" 1.12661
+merge "lvds_currm_p_28/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" 1.2952e+06 0 0 0 0 40537696 -189200 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1384966754 -293094 181039100 -36876 -148648120 -254060 -78372050 -100750 1261380 0 -14248460 -28390 0 0
+merge "lvds_currm_p_27/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_25/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_24/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_20/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_29/w_122_2852#"
+merge "lvds_currm_p_29/w_122_2852#" "lvds_currm_p_29/li_n30_2690#"
+merge "lvds_currm_p_29/li_n30_2690#" "lvds_currm_p_28/w_122_2852#"
+merge "lvds_currm_p_28/w_122_2852#" "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_26/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_19/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_28/li_n30_2690#"
+merge "lvds_currm_p_28/li_n30_2690#" "lvds_currm_p_27/w_122_2852#"
+merge "lvds_currm_p_27/w_122_2852#" "lvds_currm_p_27/li_n30_2690#"
+merge "lvds_currm_p_27/li_n30_2690#" "lvds_currm_p_26/w_122_2852#"
+merge "lvds_currm_p_26/w_122_2852#" "lvds_currm_p_26/li_n30_2690#"
+merge "lvds_currm_p_26/li_n30_2690#" "lvds_currm_p_25/w_122_2852#"
+merge "lvds_currm_p_25/w_122_2852#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "lvds_currm_p_25/li_n30_2690#"
+merge "lvds_currm_p_25/li_n30_2690#" "lvds_currm_p_24/w_122_2852#"
+merge "lvds_currm_p_24/w_122_2852#" "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_22/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_24/li_n30_2690#"
+merge "lvds_currm_p_24/li_n30_2690#" "lvds_currm_p_23/w_122_2852#"
+merge "lvds_currm_p_23/w_122_2852#" "lvds_currm_p_23/li_n30_2690#"
+merge "lvds_currm_p_23/li_n30_2690#" "lvds_currm_p_22/w_122_2852#"
+merge "lvds_currm_p_22/w_122_2852#" "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_13/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_22/li_n30_2690#"
+merge "lvds_currm_p_22/li_n30_2690#" "lvds_currm_p_21/w_122_2852#"
+merge "lvds_currm_p_21/w_122_2852#" "lvds_currm_p_20/li_n30_2690#"
+merge "lvds_currm_p_20/li_n30_2690#" "lvds_currm_p_21/li_n30_2690#"
+merge "lvds_currm_p_21/li_n30_2690#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_11/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_18/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_17/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_29/w_112_112#"
+merge "lvds_currm_p_29/w_112_112#" "lvds_currm_p_28/w_112_112#"
+merge "lvds_currm_p_28/w_112_112#" "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_15/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_27/w_112_112#"
+merge "lvds_currm_p_27/w_112_112#" "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_14/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_26/w_112_112#"
+merge "lvds_currm_p_26/w_112_112#" "lvds_currm_p_25/w_112_112#"
+merge "lvds_currm_p_25/w_112_112#" "lvds_currm_p_24/w_112_112#"
+merge "lvds_currm_p_24/w_112_112#" "lvds_currm_p_23/w_112_112#"
+merge "lvds_currm_p_23/w_112_112#" "lvds_currm_p_22/w_112_112#"
+merge "lvds_currm_p_22/w_112_112#" "lvds_currm_p_20/w_112_112#"
+merge "lvds_currm_p_20/w_112_112#" "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_10/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_21/w_112_112#"
+merge "lvds_currm_p_21/w_112_112#" "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_30/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/w_122_2852#"
+merge "lvds_currm_p_19/w_122_2852#" "lvds_currm_p_19/li_n30_2690#"
+merge "lvds_currm_p_19/li_n30_2690#" "lvds_currm_p_18/w_122_2852#"
+merge "lvds_currm_p_18/w_122_2852#" "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_16/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_18/li_n30_2690#"
+merge "lvds_currm_p_18/li_n30_2690#" "lvds_currm_p_17/w_122_2852#"
+merge "lvds_currm_p_17/w_122_2852#" "lvds_currm_p_17/li_n30_2690#"
+merge "lvds_currm_p_17/li_n30_2690#" "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_7/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_16/w_122_2852#"
+merge "lvds_currm_p_16/w_122_2852#" "lvds_currm_p_16/li_n30_2690#"
+merge "lvds_currm_p_16/li_n30_2690#" "lvds_currm_p_15/w_122_2852#"
+merge "lvds_currm_p_15/w_122_2852#" "lvds_currm_p_15/li_n30_2690#"
+merge "lvds_currm_p_15/li_n30_2690#" "lvds_currm_p_14/w_122_2852#"
+merge "lvds_currm_p_14/w_122_2852#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_12/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_14/li_n30_2690#"
+merge "lvds_currm_p_14/li_n30_2690#" "lvds_currm_p_13/w_122_2852#"
+merge "lvds_currm_p_13/w_122_2852#" "lvds_currm_p_13/li_n30_2690#"
+merge "lvds_currm_p_13/li_n30_2690#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_12/w_122_2852#"
+merge "lvds_currm_p_12/w_122_2852#" "lvds_currm_p_12/li_n30_2690#"
+merge "lvds_currm_p_12/li_n30_2690#" "lvds_currm_p_11/w_122_2852#"
+merge "lvds_currm_p_11/w_122_2852#" "lvds_currm_p_10/li_n30_2690#"
+merge "lvds_currm_p_10/li_n30_2690#" "lvds_currm_p_11/li_n30_2690#"
+merge "lvds_currm_p_11/li_n30_2690#" "lvds_currm_p_30/w_112_640#"
+merge "lvds_currm_p_30/w_112_640#" "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_1/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_19/w_112_112#"
+merge "lvds_currm_p_19/w_112_112#" "li_17350_11840#"
+merge "li_17350_11840#" "lvds_currm_p_18/w_112_112#"
+merge "lvds_currm_p_18/w_112_112#" "li_15610_11840#"
+merge "li_15610_11840#" "lvds_currm_p_17/w_112_112#"
+merge "lvds_currm_p_17/w_112_112#" "li_13870_11840#"
+merge "li_13870_11840#" "lvds_currm_p_7/w_112_640#"
+merge "lvds_currm_p_7/w_112_640#" "lvds_currm_p_16/w_112_112#"
+merge "lvds_currm_p_16/w_112_112#" "li_12130_11840#"
+merge "li_12130_11840#" "lvds_currm_p_15/w_112_112#"
+merge "lvds_currm_p_15/w_112_112#" "li_10390_11840#"
+merge "li_10390_11840#" "lvds_currm_p_9/w_112_640#"
+merge "lvds_currm_p_9/w_112_640#" "lvds_currm_p_14/w_112_112#"
+merge "lvds_currm_p_14/w_112_112#" "lvds_currm_p_4/w_112_640#"
+merge "lvds_currm_p_4/w_112_640#" "lvds_currm_p_13/w_112_112#"
+merge "lvds_currm_p_13/w_112_112#" "li_6910_11840#"
+merge "li_6910_11840#" "lvds_currm_p_3/w_112_640#"
+merge "lvds_currm_p_3/w_112_640#" "lvds_currm_p_12/w_112_112#"
+merge "lvds_currm_p_12/w_112_112#" "li_5170_11840#"
+merge "li_5170_11840#" "lvds_currm_p_2/w_112_640#"
+merge "lvds_currm_p_2/w_112_640#" "lvds_currm_p_11/w_112_112#"
+merge "lvds_currm_p_11/w_112_112#" "lvds_currm_p_1/w_112_640#"
+merge "lvds_currm_p_1/w_112_640#" "lvds_currm_p_10/w_112_112#"
+merge "lvds_currm_p_10/w_112_112#" "li_3440_11840#"
+merge "li_3440_11840#" "lvds_currm_p_30/w_122_2852#"
+merge "lvds_currm_p_30/w_122_2852#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_1000#" "m1_15360_6190#"
+merge "m1_15360_6190#" "lvds_currm_p_30/li_n30_2690#"
+merge "lvds_currm_p_30/li_n30_2690#" "lvds_currm_p_30/w_112_112#"
+merge "lvds_currm_p_30/w_112_112#" "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_5/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_5/w_122_2852#"
+merge "lvds_currm_p_5/w_122_2852#" "li_19090_10260#"
+merge "li_19090_10260#" "li_17350_10260#"
+merge "li_17350_10260#" "li_17350_10630#"
+merge "li_17350_10630#" "lvds_currm_p_6/w_122_2852#"
+merge "lvds_currm_p_6/w_122_2852#" "lvds_currm_p_5/w_112_112#"
+merge "lvds_currm_p_5/w_112_112#" "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_6/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "li_15610_10260#"
+merge "li_15610_10260#" "lvds_currm_p_5/li_n30_2690#"
+merge "lvds_currm_p_5/li_n30_2690#" "lvds_currm_p_6/li_n30_2690#"
+merge "lvds_currm_p_6/li_n30_2690#" "lvds_currm_p_6/w_112_112#"
+merge "lvds_currm_p_6/w_112_112#" "lvds_currm_p_7/w_122_2852#"
+merge "lvds_currm_p_7/w_122_2852#" "lvds_currm_p_7/li_n30_2690#"
+merge "lvds_currm_p_7/li_n30_2690#" "lvds_currm_p_8/w_122_2852#"
+merge "lvds_currm_p_8/w_122_2852#" "lvds_currm_p_7/w_112_112#"
+merge "lvds_currm_p_7/w_112_112#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "li_13870_10260#"
+merge "li_13870_10260#" "lvds_currm_p_9/w_122_2852#"
+merge "lvds_currm_p_9/w_122_2852#" "lvds_currm_p_8/li_n30_2690#"
+merge "lvds_currm_p_8/li_n30_2690#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "li_12130_10260#"
+merge "li_12130_10260#" "lvds_currm_p_9/li_n30_2690#"
+merge "lvds_currm_p_9/li_n30_2690#" "lvds_currm_p_9/w_112_112#"
+merge "lvds_currm_p_9/w_112_112#" "lvds_currm_p_4/w_122_2852#"
+merge "lvds_currm_p_4/w_122_2852#" "li_10390_10260#"
+merge "li_10390_10260#" "lvds_currm_p_4/li_n30_2690#"
+merge "lvds_currm_p_4/li_n30_2690#" "lvds_currm_p_4/w_112_112#"
+merge "lvds_currm_p_4/w_112_112#" "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_2/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_3/w_122_2852#"
+merge "lvds_currm_p_3/w_122_2852#" "lvds_currm_p_3/li_n30_2690#"
+merge "lvds_currm_p_3/li_n30_2690#" "lvds_currm_p_3/w_112_112#"
+merge "lvds_currm_p_3/w_112_112#" "lvds_currm_p_2/w_122_2852#"
+merge "lvds_currm_p_2/w_122_2852#" "li_6910_10260#"
+merge "li_6910_10260#" "lvds_switch_p_0/w_230_1916#"
+merge "lvds_switch_p_0/w_230_1916#" "lvds_currm_p_0/w_122_2852#"
+merge "lvds_currm_p_0/w_122_2852#" "lvds_currm_p_2/w_112_112#"
+merge "lvds_currm_p_2/w_112_112#" "lvds_currm_p_1/w_122_2852#"
+merge "lvds_currm_p_1/w_122_2852#" "li_5170_10260#"
+merge "li_5170_10260#" "lvds_currm_p_0/w_112_112#"
+merge "lvds_currm_p_0/w_112_112#" "lvds_currm_p_0/li_n30_2690#"
+merge "lvds_currm_p_0/li_n30_2690#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#"
+merge "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_9Z5L4S_0/w_n875_n737#" "lvds_currm_p_1/li_n30_2690#"
+merge "lvds_currm_p_1/li_n30_2690#" "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "lvds_currm_p_0/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "li_3340_7530#"
+merge "li_3340_7530#" "lvds_switch_p_0/w_230_644#"
+merge "lvds_switch_p_0/w_230_644#" "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "lvds_currm_p_8/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "lvds_currm_p_9/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "lvds_currm_p_4/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#"
+merge "lvds_currm_p_3/sky130_fd_pr__pfet_01v8_8DK6RJ_0/w_n743_n1373#" "lvds_currm_p_2/li_n30_2690#"
+merge "lvds_currm_p_2/li_n30_2690#" "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#"
+merge "lvds_switch_p_1/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#"
+merge "lvds_switch_p_0/sky130_fd_pr__pfet_01v8_VCB4SW_0/w_n1607_n1055#" "sky130_fd_sc_hs__inv_16_5/VPWR"
+merge "sky130_fd_sc_hs__inv_16_5/VPWR" "li_6650_7120#"
+merge "li_6650_7120#" "sky130_fd_sc_hs__inv_16_5/VPB"
+merge "sky130_fd_sc_hs__inv_16_5/VPB" "sky130_fd_sc_hs__inv_16_6/VPWR"
+merge "sky130_fd_sc_hs__inv_16_6/VPWR" "sky130_fd_sc_hs__inv_16_6/VPB"
+merge "sky130_fd_sc_hs__inv_16_6/VPB" "sky130_fd_sc_hs__inv_16_7/VPWR"
+merge "sky130_fd_sc_hs__inv_16_7/VPWR" "sky130_fd_sc_hs__inv_16_7/VPB"
+merge "sky130_fd_sc_hs__inv_16_7/VPB" "w_2940_6920#"
+merge "w_2940_6920#" "sky130_fd_sc_hs__inv_16_9/VPWR"
+merge "sky130_fd_sc_hs__inv_16_9/VPWR" "sky130_fd_sc_hs__inv_16_9/VPB"
+merge "sky130_fd_sc_hs__inv_16_9/VPB" "sky130_fd_sc_hs__inv_4_1/VPWR"
+merge "sky130_fd_sc_hs__inv_4_1/VPWR" "sky130_fd_sc_hs__inv_4_1/VPB"
+merge "sky130_fd_sc_hs__inv_4_1/VPB" "sky130_fd_sc_hs__inv_16_8/VPWR"
+merge "sky130_fd_sc_hs__inv_16_8/VPWR" "sky130_fd_sc_hs__inv_16_8/VPB"
+merge "sky130_fd_sc_hs__inv_16_8/VPB" "w_660_5820#"
+merge "w_660_5820#" "lvds_switch_p_0/w_230_116#"
+merge "lvds_switch_p_0/w_230_116#" "sky130_fd_sc_hs__inv_16_4/VPWR"
+merge "sky130_fd_sc_hs__inv_16_4/VPWR" "sky130_fd_sc_hs__inv_16_4/VPB"
+merge "sky130_fd_sc_hs__inv_16_4/VPB" "sky130_fd_sc_hs__inv_16_3/VPWR"
+merge "sky130_fd_sc_hs__inv_16_3/VPWR" "sky130_fd_sc_hs__inv_16_3/VPB"
+merge "sky130_fd_sc_hs__inv_16_3/VPB" "w_2920_5090#"
+merge "w_2920_5090#" "sky130_fd_sc_hs__inv_16_2/VPWR"
+merge "sky130_fd_sc_hs__inv_16_2/VPWR" "sky130_fd_sc_hs__inv_16_2/VPB"
+merge "sky130_fd_sc_hs__inv_16_2/VPB" "sky130_fd_sc_hs__inv_16_1/VPWR"
+merge "sky130_fd_sc_hs__inv_16_1/VPWR" "sky130_fd_sc_hs__inv_16_1/VPB"
+merge "sky130_fd_sc_hs__inv_16_1/VPB" "sky130_fd_sc_hs__inv_4_0/VPWR"
+merge "sky130_fd_sc_hs__inv_4_0/VPWR" "sky130_fd_sc_hs__inv_4_0/VPB"
+merge "sky130_fd_sc_hs__inv_4_0/VPB" "sky130_fd_sc_hs__inv_16_0/VPWR"
+merge "sky130_fd_sc_hs__inv_16_0/VPWR" "VP"
+merge "VP" "sky130_fd_sc_hs__inv_16_0/VPB"
+merge "sky130_fd_sc_hs__inv_16_0/VPB" "w_650_3990#"
+merge "lvds_currm_n_0/m1_76_644#" "lvds_currm_n_0/a_32_332#" -268433 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -263583160 -343900 13600 -1020 0 0 0 0 0 0 0 0
+merge "lvds_currm_n_0/a_32_332#" "m1_20_3330#"
+merge "m1_20_3330#" "lvds_currm_n_21/a_32_332#"
+merge "lvds_currm_n_21/a_32_332#" "lvds_currm_n_20/a_32_332#"
+merge "lvds_currm_n_20/a_32_332#" "lvds_currm_n_19/a_32_332#"
+merge "lvds_currm_n_19/a_32_332#" "lvds_currm_n_17/a_32_332#"
+merge "lvds_currm_n_17/a_32_332#" "lvds_currm_n_16/a_32_332#"
+merge "lvds_currm_n_16/a_32_332#" "lvds_currm_n_15/a_32_332#"
+merge "lvds_currm_n_15/a_32_332#" "lvds_currm_n_12/a_32_332#"
+merge "lvds_currm_n_12/a_32_332#" "lvds_currm_n_13/a_32_332#"
+merge "lvds_currm_n_13/a_32_332#" "lvds_currm_n_9/li_42_48#"
+merge "lvds_currm_n_9/li_42_48#" "lvds_currm_n_10/li_42_48#"
+merge "lvds_currm_n_10/li_42_48#" "lvds_currm_n_11/li_42_48#"
+merge "lvds_currm_n_11/li_42_48#" "lvds_currm_n_5/li_42_48#"
+merge "lvds_currm_n_5/li_42_48#" "lvds_currm_n_6/li_42_48#"
+merge "lvds_currm_n_6/li_42_48#" "lvds_currm_n_7/li_42_48#"
+merge "lvds_currm_n_7/li_42_48#" "lvds_currm_n_8/li_42_48#"
+merge "lvds_currm_n_8/li_42_48#" "lvds_currm_n_4/li_42_48#"
+merge "lvds_currm_n_4/li_42_48#" "lvds_currm_n_3/li_42_48#"
+merge "lvds_currm_n_3/li_42_48#" "lvds_currm_n_2/li_42_48#"
+merge "lvds_currm_n_2/li_42_48#" "lvds_currm_n_0/li_42_48#"
+merge "lvds_currm_n_0/li_42_48#" "lvds_currm_n_1/li_42_48#"
+merge "lvds_currm_n_1/li_42_48#" "m1_20_640#"
+merge "m1_20_640#" "lvds_currm_n_9/li_42_n462#"
+merge "lvds_currm_n_9/li_42_n462#" "lvds_currm_n_10/li_42_n462#"
+merge "lvds_currm_n_10/li_42_n462#" "lvds_currm_n_6/a_32_332#"
+merge "lvds_currm_n_6/a_32_332#" "lvds_currm_n_11/li_42_n462#"
+merge "lvds_currm_n_11/li_42_n462#" "lvds_currm_n_5/li_42_n462#"
+merge "lvds_currm_n_5/li_42_n462#" "lvds_currm_n_6/li_42_n462#"
+merge "lvds_currm_n_6/li_42_n462#" "lvds_currm_n_7/li_42_n462#"
+merge "lvds_currm_n_7/li_42_n462#" "lvds_currm_n_3/a_32_332#"
+merge "lvds_currm_n_3/a_32_332#" "lvds_currm_n_8/li_42_n462#"
+merge "lvds_currm_n_8/li_42_n462#" "lvds_currm_n_4/li_42_n462#"
+merge "lvds_currm_n_4/li_42_n462#" "lvds_currm_n_3/li_42_n462#"
+merge "lvds_currm_n_3/li_42_n462#" "lvds_currm_n_2/li_42_n462#"
+merge "lvds_currm_n_2/li_42_n462#" "lvds_currm_n_0/li_42_n462#"
+merge "lvds_currm_n_0/li_42_n462#" "lvds_currm_n_1/li_42_n462#"
+merge "lvds_currm_n_1/li_42_n462#" "lvds_currm_n_31/a_32_332#"
+merge "lvds_currm_n_31/a_32_332#" "lvds_currm_n_30/a_32_332#"
+merge "lvds_currm_n_30/a_32_332#" "lvds_currm_n_29/a_32_332#"
+merge "lvds_currm_n_29/a_32_332#" "lvds_currm_n_27/a_32_332#"
+merge "lvds_currm_n_27/a_32_332#" "lvds_currm_n_26/a_32_332#"
+merge "lvds_currm_n_26/a_32_332#" "lvds_currm_n_25/a_32_332#"
+merge "lvds_currm_n_25/a_32_332#" "lvds_currm_n_22/a_32_332#"
+merge "lvds_currm_n_22/a_32_332#" "lvds_currm_n_23/a_32_332#"
+merge "lvds_currm_n_23/a_32_332#" "lvds_currm_n_21/li_42_48#"
+merge "lvds_currm_n_21/li_42_48#" "lvds_currm_n_18/a_32_332#"
+merge "lvds_currm_n_18/a_32_332#" "lvds_currm_n_20/li_42_48#"
+merge "lvds_currm_n_20/li_42_48#" "lvds_currm_n_19/li_42_48#"
+merge "lvds_currm_n_19/li_42_48#" "lvds_currm_n_18/li_42_48#"
+merge "lvds_currm_n_18/li_42_48#" "lvds_currm_n_17/li_42_48#"
+merge "lvds_currm_n_17/li_42_48#" "lvds_currm_n_14/a_32_332#"
+merge "lvds_currm_n_14/a_32_332#" "lvds_currm_n_16/li_42_48#"
+merge "lvds_currm_n_16/li_42_48#" "lvds_currm_n_15/li_42_48#"
+merge "lvds_currm_n_15/li_42_48#" "lvds_currm_n_14/li_42_48#"
+merge "lvds_currm_n_14/li_42_48#" "lvds_currm_n_12/li_42_48#"
+merge "lvds_currm_n_12/li_42_48#" "lvds_currm_n_13/li_42_48#"
+merge "lvds_currm_n_13/li_42_48#" "lvds_currm_n_31/li_42_48#"
+merge "lvds_currm_n_31/li_42_48#" "lvds_currm_n_28/a_32_332#"
+merge "lvds_currm_n_28/a_32_332#" "lvds_currm_n_30/li_42_48#"
+merge "lvds_currm_n_30/li_42_48#" "lvds_currm_n_29/li_42_48#"
+merge "lvds_currm_n_29/li_42_48#" "lvds_currm_n_28/li_42_48#"
+merge "lvds_currm_n_28/li_42_48#" "lvds_currm_n_27/li_42_48#"
+merge "lvds_currm_n_27/li_42_48#" "lvds_currm_n_24/a_32_332#"
+merge "lvds_currm_n_24/a_32_332#" "lvds_currm_n_26/li_42_48#"
+merge "lvds_currm_n_26/li_42_48#" "lvds_currm_n_25/li_42_48#"
+merge "lvds_currm_n_25/li_42_48#" "lvds_currm_n_24/li_42_48#"
+merge "lvds_currm_n_24/li_42_48#" "lvds_currm_n_22/li_42_48#"
+merge "lvds_currm_n_22/li_42_48#" "lvds_currm_n_23/li_42_48#"
+merge "lvds_currm_n_23/li_42_48#" "m1_20_130#"
+merge "lvds_currm_p_29/VSUBS" "lvds_currm_p_28/VSUBS" 1.09021e+06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1064602980 -133788 115524508 -41794 666707372 -130040 15676170 0 -1265304 -2798 11293046 -100388 0 0
+merge "lvds_currm_p_28/VSUBS" "lvds_currm_p_27/VSUBS"
+merge "lvds_currm_p_27/VSUBS" "lvds_currm_p_26/VSUBS"
+merge "lvds_currm_p_26/VSUBS" "lvds_currm_p_25/VSUBS"
+merge "lvds_currm_p_25/VSUBS" "lvds_currm_p_24/VSUBS"
+merge "lvds_currm_p_24/VSUBS" "lvds_currm_p_23/VSUBS"
+merge "lvds_currm_p_23/VSUBS" "lvds_currm_p_22/VSUBS"
+merge "lvds_currm_p_22/VSUBS" "lvds_currm_p_20/VSUBS"
+merge "lvds_currm_p_20/VSUBS" "lvds_currm_p_21/VSUBS"
+merge "lvds_currm_p_21/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS" "lvds_currm_p_19/VSUBS"
+merge "lvds_currm_p_19/VSUBS" "lvds_currm_p_18/VSUBS"
+merge "lvds_currm_p_18/VSUBS" "lvds_currm_p_17/VSUBS"
+merge "lvds_currm_p_17/VSUBS" "lvds_currm_p_16/VSUBS"
+merge "lvds_currm_p_16/VSUBS" "lvds_currm_p_15/VSUBS"
+merge "lvds_currm_p_15/VSUBS" "lvds_currm_p_14/VSUBS"
+merge "lvds_currm_p_14/VSUBS" "lvds_currm_p_13/VSUBS"
+merge "lvds_currm_p_13/VSUBS" "lvds_currm_p_12/VSUBS"
+merge "lvds_currm_p_12/VSUBS" "lvds_currm_p_10/VSUBS"
+merge "lvds_currm_p_10/VSUBS" "lvds_currm_p_11/VSUBS"
+merge "lvds_currm_p_11/VSUBS" "lvds_currm_p_30/VSUBS"
+merge "lvds_currm_p_30/VSUBS" "lvds_currm_p_5/VSUBS"
+merge "lvds_currm_p_5/VSUBS" "lvds_currm_p_6/VSUBS"
+merge "lvds_currm_p_6/VSUBS" "lvds_currm_p_7/VSUBS"
+merge "lvds_currm_p_7/VSUBS" "lvds_currm_p_8/VSUBS"
+merge "lvds_currm_p_8/VSUBS" "lvds_currm_p_9/VSUBS"
+merge "lvds_currm_p_9/VSUBS" "lvds_currm_p_4/VSUBS"
+merge "lvds_currm_p_4/VSUBS" "lvds_currm_p_3/VSUBS"
+merge "lvds_currm_p_3/VSUBS" "lvds_currm_p_2/VSUBS"
+merge "lvds_currm_p_2/VSUBS" "lvds_currm_p_0/VSUBS"
+merge "lvds_currm_p_0/VSUBS" "lvds_currm_p_1/VSUBS"
+merge "lvds_currm_p_1/VSUBS" "sky130_fd_sc_hs__inv_16_5/VNB"
+merge "sky130_fd_sc_hs__inv_16_5/VNB" "sky130_fd_sc_hs__inv_16_5/VGND"
+merge "sky130_fd_sc_hs__inv_16_5/VGND" "sky130_fd_sc_hs__inv_16_7/VNB"
+merge "sky130_fd_sc_hs__inv_16_7/VNB" "sky130_fd_sc_hs__inv_16_7/VGND"
+merge "sky130_fd_sc_hs__inv_16_7/VGND" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/VSUBS" "lvds_switch_p_1/VSUBS"
+merge "lvds_switch_p_1/VSUBS" "lvds_switch_p_0/VSUBS"
+merge "lvds_switch_p_0/VSUBS" "sky130_fd_sc_hs__inv_16_4/VNB"
+merge "sky130_fd_sc_hs__inv_16_4/VNB" "sky130_fd_sc_hs__inv_16_4/VGND"
+merge "sky130_fd_sc_hs__inv_16_4/VGND" "sky130_fd_sc_hs__inv_16_6/VNB"
+merge "sky130_fd_sc_hs__inv_16_6/VNB" "sky130_fd_sc_hs__inv_16_6/VGND"
+merge "sky130_fd_sc_hs__inv_16_6/VGND" "sky130_fd_sc_hs__inv_16_3/VNB"
+merge "sky130_fd_sc_hs__inv_16_3/VNB" "sky130_fd_sc_hs__inv_16_3/VGND"
+merge "sky130_fd_sc_hs__inv_16_3/VGND" "sky130_fd_sc_hs__inv_16_9/VNB"
+merge "sky130_fd_sc_hs__inv_16_9/VNB" "sky130_fd_sc_hs__inv_16_9/VGND"
+merge "sky130_fd_sc_hs__inv_16_9/VGND" "sky130_fd_sc_hs__inv_4_1/VNB"
+merge "sky130_fd_sc_hs__inv_4_1/VNB" "sky130_fd_sc_hs__inv_4_1/VGND"
+merge "sky130_fd_sc_hs__inv_4_1/VGND" "sky130_fd_sc_hs__inv_16_8/VNB"
+merge "sky130_fd_sc_hs__inv_16_8/VNB" "sky130_fd_sc_hs__inv_16_8/VGND"
+merge "sky130_fd_sc_hs__inv_16_8/VGND" "lvds_diffamp_1/VSUBS"
+merge "lvds_diffamp_1/VSUBS" "lvds_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#"
+merge "lvds_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_9/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_diffamp_0/VSUBS"
+merge "lvds_diffamp_0/VSUBS" "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#"
+merge "lvds_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0/a_n839_n683#" "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_10/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_6/li_n110_170#"
+merge "lvds_currm_n_6/li_n110_170#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n483_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n483_n1562#" "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_11/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n324_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n324_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n324_n1562#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n324_n1562#" "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_5/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_1/VSUBS"
+merge "lvds_nswitch_1/VSUBS" "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#"
+merge "lvds_nswitch_1/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_3/li_n110_170#"
+merge "lvds_currm_n_3/li_n110_170#" "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_8/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_nswitch_0/VSUBS"
+merge "lvds_nswitch_0/VSUBS" "lvds_nswitch_0/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#"
+merge "lvds_nswitch_0/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0/a_n1331_n683#" "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_4/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_3/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "li_6620_3430#"
+merge "li_6620_3430#" "sky130_fd_sc_hs__inv_16_2/VNB"
+merge "sky130_fd_sc_hs__inv_16_2/VNB" "sky130_fd_sc_hs__inv_16_2/VGND"
+merge "sky130_fd_sc_hs__inv_16_2/VGND" "sky130_fd_sc_hs__inv_16_1/VNB"
+merge "sky130_fd_sc_hs__inv_16_1/VNB" "sky130_fd_sc_hs__inv_16_1/VGND"
+merge "sky130_fd_sc_hs__inv_16_1/VGND" "sky130_fd_sc_hs__inv_4_0/VNB"
+merge "sky130_fd_sc_hs__inv_4_0/VNB" "sky130_fd_sc_hs__inv_4_0/VGND"
+merge "sky130_fd_sc_hs__inv_4_0/VGND" "sky130_fd_sc_hs__inv_16_0/VNB"
+merge "sky130_fd_sc_hs__inv_16_0/VNB" "sky130_fd_sc_hs__inv_16_0/VGND"
+merge "sky130_fd_sc_hs__inv_16_0/VGND" "lvds_currm_n_9/VSUBS"
+merge "lvds_currm_n_9/VSUBS" "lvds_currm_n_10/VSUBS"
+merge "lvds_currm_n_10/VSUBS" "lvds_currm_n_11/VSUBS"
+merge "lvds_currm_n_11/VSUBS" "lvds_currm_n_5/VSUBS"
+merge "lvds_currm_n_5/VSUBS" "lvds_currm_n_6/VSUBS"
+merge "lvds_currm_n_6/VSUBS" "lvds_currm_n_7/VSUBS"
+merge "lvds_currm_n_7/VSUBS" "lvds_currm_n_8/VSUBS"
+merge "lvds_currm_n_8/VSUBS" "lvds_currm_n_4/VSUBS"
+merge "lvds_currm_n_4/VSUBS" "lvds_currm_n_3/VSUBS"
+merge "lvds_currm_n_3/VSUBS" "lvds_currm_n_2/VSUBS"
+merge "lvds_currm_n_2/VSUBS" "lvds_currm_n_0/VSUBS"
+merge "lvds_currm_n_0/VSUBS" "lvds_currm_n_1/VSUBS"
+merge "lvds_currm_n_1/VSUBS" "lvds_currm_n_21/VSUBS"
+merge "lvds_currm_n_21/VSUBS" "lvds_currm_n_20/VSUBS"
+merge "lvds_currm_n_20/VSUBS" "lvds_currm_n_19/VSUBS"
+merge "lvds_currm_n_19/VSUBS" "lvds_currm_n_18/VSUBS"
+merge "lvds_currm_n_18/VSUBS" "lvds_currm_n_17/VSUBS"
+merge "lvds_currm_n_17/VSUBS" "lvds_currm_n_16/VSUBS"
+merge "lvds_currm_n_16/VSUBS" "lvds_currm_n_15/VSUBS"
+merge "lvds_currm_n_15/VSUBS" "lvds_currm_n_14/VSUBS"
+merge "lvds_currm_n_14/VSUBS" "lvds_currm_n_12/VSUBS"
+merge "lvds_currm_n_12/VSUBS" "lvds_currm_n_13/VSUBS"
+merge "lvds_currm_n_13/VSUBS" "lvds_currm_n_31/VSUBS"
+merge "lvds_currm_n_31/VSUBS" "lvds_currm_n_30/VSUBS"
+merge "lvds_currm_n_30/VSUBS" "lvds_currm_n_29/VSUBS"
+merge "lvds_currm_n_29/VSUBS" "lvds_currm_n_28/VSUBS"
+merge "lvds_currm_n_28/VSUBS" "lvds_currm_n_27/VSUBS"
+merge "lvds_currm_n_27/VSUBS" "lvds_currm_n_26/VSUBS"
+merge "lvds_currm_n_26/VSUBS" "lvds_currm_n_25/VSUBS"
+merge "lvds_currm_n_25/VSUBS" "lvds_currm_n_24/VSUBS"
+merge "lvds_currm_n_24/VSUBS" "lvds_currm_n_22/VSUBS"
+merge "lvds_currm_n_22/VSUBS" "lvds_currm_n_23/VSUBS"
+merge "lvds_currm_n_23/VSUBS" "a_650_3580#"
+merge "a_650_3580#" "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#"
+merge "lvds_currm_n_7/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#"
+merge "lvds_currm_n_6/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n707_n1301#" "li_10120_3420#"
+merge "li_10120_3420#" "lvds_currm_n_9/li_n10_n580#"
+merge "lvds_currm_n_9/li_n10_n580#" "lvds_currm_n_10/li_n10_n580#"
+merge "lvds_currm_n_10/li_n10_n580#" "lvds_currm_n_11/li_n10_n580#"
+merge "lvds_currm_n_11/li_n10_n580#" "lvds_currm_n_5/li_n10_n580#"
+merge "lvds_currm_n_5/li_n10_n580#" "lvds_currm_n_6/li_n10_n580#"
+merge "lvds_currm_n_6/li_n10_n580#" "lvds_currm_n_7/li_n10_n580#"
+merge "lvds_currm_n_7/li_n10_n580#" "lvds_currm_n_8/li_n10_n580#"
+merge "lvds_currm_n_8/li_n10_n580#" "lvds_currm_n_4/li_n10_n580#"
+merge "lvds_currm_n_4/li_n10_n580#" "lvds_currm_n_3/li_n10_n580#"
+merge "lvds_currm_n_3/li_n10_n580#" "lvds_currm_n_2/li_n10_n580#"
+merge "lvds_currm_n_2/li_n10_n580#" "lvds_currm_n_0/li_n10_n580#"
+merge "lvds_currm_n_0/li_n10_n580#" "lvds_currm_n_1/li_n10_n580#"
+merge "lvds_currm_n_1/li_n10_n580#" "lvds_currm_n_21/li_n10_n580#"
+merge "lvds_currm_n_21/li_n10_n580#" "lvds_currm_n_20/li_n10_n580#"
+merge "lvds_currm_n_20/li_n10_n580#" "lvds_currm_n_19/li_n10_n580#"
+merge "lvds_currm_n_19/li_n10_n580#" "lvds_currm_n_18/li_n10_n580#"
+merge "lvds_currm_n_18/li_n10_n580#" "lvds_currm_n_17/li_n10_n580#"
+merge "lvds_currm_n_17/li_n10_n580#" "lvds_currm_n_16/li_n10_n580#"
+merge "lvds_currm_n_16/li_n10_n580#" "lvds_currm_n_15/li_n10_n580#"
+merge "lvds_currm_n_15/li_n10_n580#" "lvds_currm_n_14/li_n10_n580#"
+merge "lvds_currm_n_14/li_n10_n580#" "lvds_currm_n_12/li_n10_n580#"
+merge "lvds_currm_n_12/li_n10_n580#" "lvds_currm_n_13/li_n10_n580#"
+merge "lvds_currm_n_13/li_n10_n580#" "lvds_currm_n_31/li_n10_n580#"
+merge "lvds_currm_n_31/li_n10_n580#" "lvds_currm_n_30/li_n10_n580#"
+merge "lvds_currm_n_30/li_n10_n580#" "lvds_currm_n_29/li_n10_n580#"
+merge "lvds_currm_n_29/li_n10_n580#" "lvds_currm_n_28/li_n10_n580#"
+merge "lvds_currm_n_28/li_n10_n580#" "lvds_currm_n_27/li_n10_n580#"
+merge "lvds_currm_n_27/li_n10_n580#" "lvds_currm_n_26/li_n10_n580#"
+merge "lvds_currm_n_26/li_n10_n580#" "lvds_currm_n_25/li_n10_n580#"
+merge "lvds_currm_n_25/li_n10_n580#" "lvds_currm_n_24/li_n10_n580#"
+merge "lvds_currm_n_24/li_n10_n580#" "lvds_currm_n_22/li_n10_n580#"
+merge "lvds_currm_n_22/li_n10_n580#" "lvds_currm_n_23/li_n10_n580#"
+merge "lvds_currm_n_23/li_n10_n580#" "VN"
+merge "lvds_switch_p_1/a_230_1916#" "lvds_switch_p_1/a_230_644#" 4227.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9493936 -13494 0 0 0 0 0 0 0 0 0 0
+merge "lvds_switch_p_1/a_230_644#" "lvds_nswitch_1/a_82_1150#"
+merge "lvds_nswitch_1/a_82_1150#" "sky130_fd_sc_hs__inv_16_4/Y"
+merge "sky130_fd_sc_hs__inv_16_4/Y" "sky130_fd_sc_hs__inv_16_3/Y"
+merge "sky130_fd_sc_hs__inv_16_3/Y" "lvds_nswitch_1/a_82_532#"
+merge "lvds_nswitch_1/a_82_532#" "sky130_fd_sc_hs__inv_16_2/Y"
+merge "sky130_fd_sc_hs__inv_16_2/Y" "sky130_fd_sc_hs__inv_16_1/Y"
+merge "sky130_fd_sc_hs__inv_16_1/Y" "vm5g"
+merge "lvds_currm_p_29/m1_60_1070#" "lvds_currm_p_28/m1_60_1070#" -81133.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -92759200 -95640 -57838800 -10080 0 0 0 0 0 0
+merge "lvds_currm_p_28/m1_60_1070#" "lvds_currm_p_27/m1_60_1070#"
+merge "lvds_currm_p_27/m1_60_1070#" "lvds_currm_p_26/m1_60_1070#"
+merge "lvds_currm_p_26/m1_60_1070#" "lvds_currm_p_25/m1_60_1070#"
+merge "lvds_currm_p_25/m1_60_1070#" "lvds_currm_p_24/m1_60_1070#"
+merge "lvds_currm_p_24/m1_60_1070#" "m3_9390_18600#"
+merge "m3_9390_18600#" "lvds_currm_p_23/m1_60_1070#"
+merge "lvds_currm_p_23/m1_60_1070#" "lvds_currm_p_22/m1_60_1070#"
+merge "lvds_currm_p_22/m1_60_1070#" "lvds_currm_p_20/m1_60_1070#"
+merge "lvds_currm_p_20/m1_60_1070#" "lvds_currm_p_21/m1_60_1070#"
+merge "lvds_currm_p_21/m1_60_1070#" "lvds_currm_p_19/m1_60_1070#"
+merge "lvds_currm_p_19/m1_60_1070#" "lvds_currm_p_18/m1_60_1070#"
+merge "lvds_currm_p_18/m1_60_1070#" "lvds_currm_p_17/m1_60_1070#"
+merge "lvds_currm_p_17/m1_60_1070#" "lvds_currm_p_16/m1_60_1070#"
+merge "lvds_currm_p_16/m1_60_1070#" "lvds_currm_p_15/m1_60_1070#"
+merge "lvds_currm_p_15/m1_60_1070#" "lvds_currm_p_14/m1_60_1070#"
+merge "lvds_currm_p_14/m1_60_1070#" "m3_9390_14410#"
+merge "m3_9390_14410#" "lvds_currm_p_13/m1_60_1070#"
+merge "lvds_currm_p_13/m1_60_1070#" "lvds_currm_p_12/m1_60_1070#"
+merge "lvds_currm_p_12/m1_60_1070#" "lvds_currm_p_10/m1_60_1070#"
+merge "lvds_currm_p_10/m1_60_1070#" "lvds_currm_p_11/m1_60_1070#"
+merge "lvds_currm_p_11/m1_60_1070#" "lvds_currm_p_6/m1_60_1070#"
+merge "lvds_currm_p_6/m1_60_1070#" "lvds_currm_p_7/m1_60_1070#"
+merge "lvds_currm_p_7/m1_60_1070#" "lvds_currm_p_8/m1_60_1070#"
+merge "lvds_currm_p_8/m1_60_1070#" "lvds_currm_p_9/m1_60_1070#"
+merge "lvds_currm_p_9/m1_60_1070#" "lvds_currm_p_4/m1_60_1070#"
+merge "lvds_currm_p_4/m1_60_1070#" "m3_9390_10220#"
+merge "m3_9390_10220#" "lvds_currm_p_3/m1_60_1070#"
+merge "lvds_currm_p_3/m1_60_1070#" "lvds_currm_p_2/m1_60_1070#"
+merge "lvds_currm_p_2/m1_60_1070#" "lvds_currm_p_0/m1_60_1070#"
+merge "lvds_currm_p_0/m1_60_1070#" "lvds_currm_p_1/m1_60_1070#"
+merge "lvds_currm_p_1/m1_60_1070#" "m1_1430_10420#"
+merge "lvds_nswitch_1/m1_30_728#" "lvds_nswitch_0/m1_30_728#" -371578 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 164310124 -336960 -418529950 -75080 0 0 0 0 0 0
+merge "lvds_nswitch_0/m1_30_728#" "lvds_currm_n_11/m1_76_644#"
+merge "lvds_currm_n_11/m1_76_644#" "m2_1810_3120#"
+merge "m2_1810_3120#" "m2_1810_1890#"
+merge "m2_1810_1890#" "m2_1810_2510#"
+merge "m2_1810_2510#" "lvds_currm_n_5/m1_76_644#"
+merge "lvds_currm_n_5/m1_76_644#" "lvds_currm_n_6/m1_76_644#"
+merge "lvds_currm_n_6/m1_76_644#" "lvds_currm_n_7/m1_76_644#"
+merge "lvds_currm_n_7/m1_76_644#" "lvds_currm_n_8/m1_76_644#"
+merge "lvds_currm_n_8/m1_76_644#" "lvds_currm_n_4/m1_76_644#"
+merge "lvds_currm_n_4/m1_76_644#" "lvds_currm_n_3/m1_76_644#"
+merge "lvds_currm_n_3/m1_76_644#" "lvds_currm_n_2/m1_76_644#"
+merge "lvds_currm_n_2/m1_76_644#" "lvds_currm_n_1/m1_76_644#"
+merge "lvds_currm_n_1/m1_76_644#" "m2_1810_1270#"
+merge "m2_1810_1270#" "lvds_currm_n_21/m1_76_644#"
+merge "lvds_currm_n_21/m1_76_644#" "m2_1810_n960#"
+merge "m2_1810_n960#" "m2_1810_n350#"
+merge "m2_1810_n350#" "lvds_currm_n_20/m1_76_644#"
+merge "lvds_currm_n_20/m1_76_644#" "lvds_currm_n_19/m1_76_644#"
+merge "lvds_currm_n_19/m1_76_644#" "lvds_currm_n_18/m1_76_644#"
+merge "lvds_currm_n_18/m1_76_644#" "lvds_currm_n_17/m1_76_644#"
+merge "lvds_currm_n_17/m1_76_644#" "lvds_currm_n_16/m1_76_644#"
+merge "lvds_currm_n_16/m1_76_644#" "lvds_currm_n_15/m1_76_644#"
+merge "lvds_currm_n_15/m1_76_644#" "lvds_currm_n_14/m1_76_644#"
+merge "lvds_currm_n_14/m1_76_644#" "lvds_currm_n_12/m1_76_644#"
+merge "lvds_currm_n_12/m1_76_644#" "lvds_currm_n_13/m1_76_644#"
+merge "lvds_currm_n_13/m1_76_644#" "m2_1810_n2200#"
+merge "m2_1810_n2200#" "m2_1810_n1580#"
+merge "m2_1810_n1580#" "lvds_currm_n_31/m1_76_644#"
+merge "lvds_currm_n_31/m1_76_644#" "m2_1810_n3820#"
+merge "m2_1810_n3820#" "lvds_currm_n_30/m1_76_644#"
+merge "lvds_currm_n_30/m1_76_644#" "lvds_currm_n_29/m1_76_644#"
+merge "lvds_currm_n_29/m1_76_644#" "lvds_currm_n_28/m1_76_644#"
+merge "lvds_currm_n_28/m1_76_644#" "lvds_currm_n_27/m1_76_644#"
+merge "lvds_currm_n_27/m1_76_644#" "lvds_currm_n_26/m1_76_644#"
+merge "lvds_currm_n_26/m1_76_644#" "vm1d"
+merge "vm1d" "lvds_currm_n_25/m1_76_644#"
+merge "lvds_currm_n_25/m1_76_644#" "lvds_currm_n_24/m1_76_644#"
+merge "lvds_currm_n_24/m1_76_644#" "lvds_currm_n_22/m1_76_644#"
+merge "lvds_currm_n_22/m1_76_644#" "lvds_currm_n_23/m1_76_644#"
+merge "lvds_currm_n_23/m1_76_644#" "m2_1810_n5670#"
+merge "m2_1810_n5670#" "m2_1810_n5050#"
+merge "m2_1810_n5050#" "m2_1810_n4430#"
+merge "lvds_currm_p_29/m1_60_208#" "m2_1730_17620#" -163771 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 249949596 -368804 -177258390 -31800 -3005080 0 0 0 0 0
+merge "m2_1730_17620#" "lvds_currm_p_28/m1_60_208#"
+merge "lvds_currm_p_28/m1_60_208#" "lvds_currm_p_27/m1_60_208#"
+merge "lvds_currm_p_27/m1_60_208#" "lvds_currm_p_26/m1_60_208#"
+merge "lvds_currm_p_26/m1_60_208#" "lvds_currm_p_25/m1_60_208#"
+merge "lvds_currm_p_25/m1_60_208#" "lvds_currm_p_24/m1_60_208#"
+merge "lvds_currm_p_24/m1_60_208#" "lvds_currm_p_23/m1_60_208#"
+merge "lvds_currm_p_23/m1_60_208#" "lvds_currm_p_22/m1_60_208#"
+merge "lvds_currm_p_22/m1_60_208#" "lvds_currm_p_20/m1_60_208#"
+merge "lvds_currm_p_20/m1_60_208#" "lvds_currm_p_21/m1_60_208#"
+merge "lvds_currm_p_21/m1_60_208#" "m2_1730_15950#"
+merge "m2_1730_15950#" "m2_1730_16610#"
+merge "m2_1730_16610#" "lvds_currm_p_19/m1_60_208#"
+merge "lvds_currm_p_19/m1_60_208#" "m2_1790_13430#"
+merge "m2_1790_13430#" "lvds_currm_p_18/m1_60_208#"
+merge "lvds_currm_p_18/m1_60_208#" "lvds_currm_p_17/m1_60_208#"
+merge "lvds_currm_p_17/m1_60_208#" "lvds_currm_p_16/m1_60_208#"
+merge "lvds_currm_p_16/m1_60_208#" "lvds_currm_p_15/m1_60_208#"
+merge "lvds_currm_p_15/m1_60_208#" "lvds_currm_p_14/m1_60_208#"
+merge "lvds_currm_p_14/m1_60_208#" "lvds_currm_p_13/m1_60_208#"
+merge "lvds_currm_p_13/m1_60_208#" "lvds_currm_p_12/m1_60_208#"
+merge "lvds_currm_p_12/m1_60_208#" "lvds_currm_p_10/m1_60_208#"
+merge "lvds_currm_p_10/m1_60_208#" "lvds_currm_p_11/m1_60_208#"
+merge "lvds_currm_p_11/m1_60_208#" "m2_1730_11760#"
+merge "m2_1730_11760#" "m2_1730_12420#"
+merge "m2_1730_12420#" "lvds_currm_p_6/m1_60_208#"
+merge "lvds_currm_p_6/m1_60_208#" "m2_1800_9240#"
+merge "m2_1800_9240#" "lvds_currm_p_7/m1_60_208#"
+merge "lvds_currm_p_7/m1_60_208#" "lvds_currm_p_8/m1_60_208#"
+merge "lvds_currm_p_8/m1_60_208#" "lvds_currm_p_9/m1_60_208#"
+merge "lvds_currm_p_9/m1_60_208#" "lvds_currm_p_4/m1_60_208#"
+merge "lvds_currm_p_4/m1_60_208#" "lvds_currm_p_3/m1_60_208#"
+merge "lvds_currm_p_3/m1_60_208#" "lvds_currm_p_2/m1_60_208#"
+merge "lvds_currm_p_2/m1_60_208#" "lvds_currm_p_0/m1_60_208#"
+merge "lvds_currm_p_0/m1_60_208#" "lvds_currm_p_1/m1_60_208#"
+merge "lvds_currm_p_1/m1_60_208#" "m2_1800_7490#"
+merge "m2_1800_7490#" "m2_1800_8230#"
+merge "m2_1800_8230#" "lvds_switch_p_1/m1_274_848#"
+merge "lvds_switch_p_1/m1_274_848#" "lvds_switch_p_1/m1_274_1710#"
+merge "lvds_switch_p_1/m1_274_1710#" "lvds_switch_p_0/m1_274_848#"
+merge "lvds_switch_p_0/m1_274_848#" "lvds_switch_p_0/m1_274_1710#"
+merge "lvds_switch_p_0/m1_274_1710#" "lvds_switch_p_1/m1_274_438#"
+merge "lvds_switch_p_1/m1_274_438#" "lvds_switch_p_0/m1_274_438#"
+merge "lvds_switch_p_0/m1_274_438#" "vm6d"
+merge "lvds_currm_p_29/li_122_4022#" "lvds_currm_p_28/li_122_4022#" -289702 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -301937060 -229520 35111964 -860 -9553460 -2760 0 0 0 0 0 0
+merge "lvds_currm_p_28/li_122_4022#" "lvds_currm_p_27/li_122_4022#"
+merge "lvds_currm_p_27/li_122_4022#" "lvds_currm_p_26/li_122_4022#"
+merge "lvds_currm_p_26/li_122_4022#" "lvds_currm_p_25/li_122_4022#"
+merge "lvds_currm_p_25/li_122_4022#" "lvds_currm_p_24/li_122_4022#"
+merge "lvds_currm_p_24/li_122_4022#" "lvds_currm_p_23/li_122_4022#"
+merge "lvds_currm_p_23/li_122_4022#" "lvds_currm_p_22/li_122_4022#"
+merge "lvds_currm_p_22/li_122_4022#" "lvds_currm_p_20/li_122_4022#"
+merge "lvds_currm_p_20/li_122_4022#" "lvds_currm_p_21/li_122_4022#"
+merge "lvds_currm_p_21/li_122_4022#" "lvds_currm_p_29/li_122_2858#"
+merge "lvds_currm_p_29/li_122_2858#" "lvds_currm_p_28/li_122_2858#"
+merge "lvds_currm_p_28/li_122_2858#" "lvds_currm_p_27/li_122_2858#"
+merge "lvds_currm_p_27/li_122_2858#" "lvds_currm_p_26/li_122_2858#"
+merge "lvds_currm_p_26/li_122_2858#" "lvds_currm_p_25/li_122_2858#"
+merge "lvds_currm_p_25/li_122_2858#" "lvds_currm_p_24/li_122_2858#"
+merge "lvds_currm_p_24/li_122_2858#" "lvds_currm_p_23/li_122_2858#"
+merge "lvds_currm_p_23/li_122_2858#" "lvds_currm_p_22/li_122_2858#"
+merge "lvds_currm_p_22/li_122_2858#" "lvds_currm_p_20/li_122_2858#"
+merge "lvds_currm_p_20/li_122_2858#" "lvds_currm_p_21/li_122_2858#"
+merge "lvds_currm_p_21/li_122_2858#" "lvds_currm_p_29/a_112_112#"
+merge "lvds_currm_p_29/a_112_112#" "lvds_currm_p_19/li_122_4022#"
+merge "lvds_currm_p_19/li_122_4022#" "lvds_currm_p_28/a_112_112#"
+merge "lvds_currm_p_28/a_112_112#" "lvds_currm_p_18/li_122_4022#"
+merge "lvds_currm_p_18/li_122_4022#" "lvds_currm_p_17/li_122_4022#"
+merge "lvds_currm_p_17/li_122_4022#" "lvds_currm_p_16/li_122_4022#"
+merge "lvds_currm_p_16/li_122_4022#" "lvds_currm_p_15/li_122_4022#"
+merge "lvds_currm_p_15/li_122_4022#" "lvds_currm_p_14/li_122_4022#"
+merge "lvds_currm_p_14/li_122_4022#" "lvds_currm_p_13/li_122_4022#"
+merge "lvds_currm_p_13/li_122_4022#" "lvds_currm_p_12/li_122_4022#"
+merge "lvds_currm_p_12/li_122_4022#" "lvds_currm_p_10/li_122_4022#"
+merge "lvds_currm_p_10/li_122_4022#" "lvds_currm_p_11/li_122_4022#"
+merge "lvds_currm_p_11/li_122_4022#" "lvds_currm_p_19/li_122_2858#"
+merge "lvds_currm_p_19/li_122_2858#" "lvds_currm_p_18/li_122_2858#"
+merge "lvds_currm_p_18/li_122_2858#" "lvds_currm_p_17/li_122_2858#"
+merge "lvds_currm_p_17/li_122_2858#" "lvds_currm_p_16/li_122_2858#"
+merge "lvds_currm_p_16/li_122_2858#" "lvds_currm_p_15/li_122_2858#"
+merge "lvds_currm_p_15/li_122_2858#" "lvds_currm_p_14/li_122_2858#"
+merge "lvds_currm_p_14/li_122_2858#" "lvds_currm_p_13/li_122_2858#"
+merge "lvds_currm_p_13/li_122_2858#" "lvds_currm_p_12/li_122_2858#"
+merge "lvds_currm_p_12/li_122_2858#" "lvds_currm_p_10/li_122_2858#"
+merge "lvds_currm_p_10/li_122_2858#" "lvds_currm_p_11/li_122_2858#"
+merge "lvds_currm_p_11/li_122_2858#" "lvds_currm_p_11/a_112_112#"
+merge "lvds_currm_p_11/a_112_112#" "m1_1770_11730#"
+merge "m1_1770_11730#" "lvds_currm_p_19/a_112_112#"
+merge "lvds_currm_p_19/a_112_112#" "lvds_currm_p_18/a_112_112#"
+merge "lvds_currm_p_18/a_112_112#" "lvds_currm_p_6/li_122_4022#"
+merge "lvds_currm_p_6/li_122_4022#" "lvds_currm_p_7/li_122_4022#"
+merge "lvds_currm_p_7/li_122_4022#" "lvds_currm_p_8/li_122_4022#"
+merge "lvds_currm_p_8/li_122_4022#" "lvds_currm_p_9/li_122_4022#"
+merge "lvds_currm_p_9/li_122_4022#" "lvds_currm_p_4/li_122_4022#"
+merge "lvds_currm_p_4/li_122_4022#" "lvds_currm_p_3/li_122_4022#"
+merge "lvds_currm_p_3/li_122_4022#" "lvds_currm_p_2/li_122_4022#"
+merge "lvds_currm_p_2/li_122_4022#" "lvds_currm_p_0/li_122_4022#"
+merge "lvds_currm_p_0/li_122_4022#" "lvds_currm_p_1/li_122_4022#"
+merge "lvds_currm_p_1/li_122_4022#" "lvds_currm_p_30/li_122_2858#"
+merge "lvds_currm_p_30/li_122_2858#" "lvds_currm_p_6/li_122_2858#"
+merge "lvds_currm_p_6/li_122_2858#" "lvds_currm_p_7/li_122_2858#"
+merge "lvds_currm_p_7/li_122_2858#" "lvds_currm_p_8/li_122_2858#"
+merge "lvds_currm_p_8/li_122_2858#" "lvds_currm_p_9/li_122_2858#"
+merge "lvds_currm_p_9/li_122_2858#" "lvds_currm_p_4/li_122_2858#"
+merge "lvds_currm_p_4/li_122_2858#" "lvds_currm_p_3/li_122_2858#"
+merge "lvds_currm_p_3/li_122_2858#" "lvds_currm_p_2/li_122_2858#"
+merge "lvds_currm_p_2/li_122_2858#" "lvds_currm_p_0/li_122_2858#"
+merge "lvds_currm_p_0/li_122_2858#" "lvds_currm_p_1/li_122_2858#"
+merge "lvds_currm_p_1/li_122_2858#" "lvds_currm_p_30/m1_60_208#"
+merge "lvds_currm_p_30/m1_60_208#" "lvds_diffamp_1/m1_70_778#"
+merge "lvds_diffamp_1/m1_70_778#" "lvds_diffamp_1/m1_188_384#"
+merge "lvds_diffamp_1/m1_188_384#" "m2_19260_4160#"
+merge "m2_19260_4160#" "lvds_currm_p_30/a_112_112#"
+merge "lvds_currm_p_30/a_112_112#" "m1_20510_7590#"
+merge "m1_20510_7590#" "m1_19120_7610#"
+merge "m1_19120_7610#" "lvds_currm_p_6/a_112_112#"
+merge "lvds_currm_p_6/a_112_112#" "m1_1770_10130#"
+merge "lvds_currm_n_11/m1_n20_420#" "lvds_currm_n_5/m1_n20_420#" 30224.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 113930512 -91840 0 0 0 0 0 0 0 0
+merge "lvds_currm_n_5/m1_n20_420#" "lvds_currm_n_6/m1_n20_420#"
+merge "lvds_currm_n_6/m1_n20_420#" "lvds_currm_n_7/m1_n20_420#"
+merge "lvds_currm_n_7/m1_n20_420#" "lvds_currm_n_8/m1_n20_420#"
+merge "lvds_currm_n_8/m1_n20_420#" "lvds_currm_n_4/m1_n20_420#"
+merge "lvds_currm_n_4/m1_n20_420#" "lvds_currm_n_3/m1_n20_420#"
+merge "lvds_currm_n_3/m1_n20_420#" "lvds_currm_n_2/m1_n20_420#"
+merge "lvds_currm_n_2/m1_n20_420#" "lvds_currm_n_1/m1_n20_420#"
+merge "lvds_currm_n_1/m1_n20_420#" "lvds_currm_n_21/m1_n20_420#"
+merge "lvds_currm_n_21/m1_n20_420#" "lvds_currm_n_20/m1_n20_420#"
+merge "lvds_currm_n_20/m1_n20_420#" "lvds_currm_n_19/m1_n20_420#"
+merge "lvds_currm_n_19/m1_n20_420#" "lvds_currm_n_18/m1_n20_420#"
+merge "lvds_currm_n_18/m1_n20_420#" "lvds_currm_n_17/m1_n20_420#"
+merge "lvds_currm_n_17/m1_n20_420#" "lvds_currm_n_16/m1_n20_420#"
+merge "lvds_currm_n_16/m1_n20_420#" "lvds_currm_n_15/m1_n20_420#"
+merge "lvds_currm_n_15/m1_n20_420#" "lvds_currm_n_14/m1_n20_420#"
+merge "lvds_currm_n_14/m1_n20_420#" "lvds_currm_n_12/m1_n20_420#"
+merge "lvds_currm_n_12/m1_n20_420#" "lvds_currm_n_13/m1_n20_420#"
+merge "lvds_currm_n_13/m1_n20_420#" "m2_2170_n1830#"
+merge "m2_2170_n1830#" "lvds_currm_n_31/m1_n20_420#"
+merge "lvds_currm_n_31/m1_n20_420#" "lvds_currm_n_30/m1_n20_420#"
+merge "lvds_currm_n_30/m1_n20_420#" "lvds_currm_n_29/m1_n20_420#"
+merge "lvds_currm_n_29/m1_n20_420#" "lvds_currm_n_28/m1_n20_420#"
+merge "lvds_currm_n_28/m1_n20_420#" "lvds_currm_n_27/m1_n20_420#"
+merge "lvds_currm_n_27/m1_n20_420#" "lvds_currm_n_26/m1_n20_420#"
+merge "lvds_currm_n_26/m1_n20_420#" "lvds_currm_n_25/m1_n20_420#"
+merge "lvds_currm_n_25/m1_n20_420#" "lvds_currm_n_24/m1_n20_420#"
+merge "lvds_currm_n_24/m1_n20_420#" "lvds_currm_n_22/m1_n20_420#"
+merge "lvds_currm_n_22/m1_n20_420#" "lvds_currm_n_23/m1_n20_420#"
+merge "lvds_currm_n_23/m1_n20_420#" "m2_2920_n5300#"
+merge "m2_2920_n5300#" "m2_1870_1020#"
+merge "sky130_fd_sc_hs__inv_16_5/A" "sky130_fd_sc_hs__inv_16_7/A" -113.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 211962 -12767 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_sc_hs__inv_16_7/A" "sky130_fd_sc_hs__inv_16_8/Y"
+merge "sky130_fd_sc_hs__inv_16_8/Y" "sky130_fd_sc_hs__inv_16_6/A"
+merge "sky130_fd_sc_hs__inv_16_6/A" "sky130_fd_sc_hs__inv_16_9/A"
+merge "sky130_fd_sc_hs__inv_16_9/A" "vx1y"
+merge "sky130_fd_sc_hs__inv_4_0/A" "In" 1608.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1351200 -760 645600 0 0 0 0 0 0 0 0 0 0 0
+merge "lvds_currm_p_5/li_122_4022#" "m1_17640_11510#" 29435.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1341600 -5180 77947128 -6700 959840 -9998 0 0 0 0 0 0
+merge "m1_17640_11510#" "lvds_currm_p_5/li_122_2858#"
+merge "lvds_currm_p_5/li_122_2858#" "m1_17720_10340#"
+merge "m1_17720_10340#" "lvds_currm_p_5/m1_60_208#"
+merge "lvds_currm_p_5/m1_60_208#" "lvds_currm_p_5/a_112_112#"
+merge "lvds_currm_p_5/a_112_112#" "lvds_diffamp_0/m1_70_778#"
+merge "lvds_diffamp_0/m1_70_778#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#"
+merge "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/m3_n3150_n1100#" "lvds_diffamp_0/m1_188_384#"
+merge "lvds_diffamp_0/m1_188_384#" "m1_17940_7520#"
+merge "lvds_switch_p_0/a_230_1916#" "sky130_fd_sc_hs__inv_16_5/Y" -33176.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -47103040 -53120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_sc_hs__inv_16_5/Y" "sky130_fd_sc_hs__inv_16_6/Y"
+merge "sky130_fd_sc_hs__inv_16_6/Y" "sky130_fd_sc_hs__inv_16_7/Y"
+merge "sky130_fd_sc_hs__inv_16_7/Y" "sky130_fd_sc_hs__inv_16_9/Y"
+merge "sky130_fd_sc_hs__inv_16_9/Y" "lvds_switch_p_0/a_230_644#"
+merge "lvds_switch_p_0/a_230_644#" "lvds_nswitch_0/a_82_1150#"
+merge "lvds_nswitch_0/a_82_1150#" "lvds_nswitch_0/a_82_532#"
+merge "lvds_nswitch_0/a_82_532#" "vm2g"
+merge "lvds_switch_p_1/m1_178_1074#" "lvds_switch_p_1/m1_178_1484#" -4162 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4110800 -376 13549364 -29140 -1795040 0 -3021079 0 7640264 -9080 0 0
+merge "lvds_switch_p_1/m1_178_1484#" "lvds_switch_p_1/m1_178_212#"
+merge "lvds_switch_p_1/m1_178_212#" "lvds_nswitch_1/m1_126_952#"
+merge "lvds_nswitch_1/m1_126_952#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_n1432#" "lvds_nswitch_1/m1_30_110#"
+merge "lvds_nswitch_1/m1_30_110#" "OutP"
+merge "lvds_switch_p_0/m1_178_1074#" "lvds_switch_p_0/m1_178_1484#" 96165.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6212752 -942 242020200 -29120 -7514340 0 -4057209 0 21140068 -17480 0 0
+merge "lvds_switch_p_0/m1_178_1484#" "lvds_switch_p_0/m1_178_212#"
+merge "lvds_switch_p_0/m1_178_212#" "lvds_nswitch_0/m1_126_952#"
+merge "lvds_nswitch_0/m1_126_952#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_n1432#" "lvds_nswitch_0/m1_30_110#"
+merge "lvds_nswitch_0/m1_30_110#" "OutN"
+merge "sky130_fd_sc_hs__inv_4_1/Y" "sky130_fd_sc_hs__inv_16_8/A" 12769.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15827065 -1606 -4231840 -2472 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_sc_hs__inv_16_8/A" "vx14y"
+merge "sky130_fd_sc_hs__inv_16_4/A" "sky130_fd_sc_hs__inv_16_3/A" 14027.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18869672 -12120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_sc_hs__inv_16_3/A" "sky130_fd_sc_hs__inv_16_2/A"
+merge "sky130_fd_sc_hs__inv_16_2/A" "sky130_fd_sc_hs__inv_16_1/A"
+merge "sky130_fd_sc_hs__inv_16_1/A" "sky130_fd_sc_hs__inv_16_0/Y"
+merge "sky130_fd_sc_hs__inv_16_0/Y" "vx6y"
+merge "lvds_currm_p_5/m1_60_1070#" "m2_17720_10420#" -108.594 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 380400 -2880 0 0 0 0 0 0 0 0
+merge "lvds_diffamp_0/m1_70_1210#" "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" -19799.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -29147882 -2504 -22880 0 -978020 0 -1476869 -1422 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0/c1_n3050_n1000#" "lvds_diffamp_0/m1_70_590#"
+merge "lvds_diffamp_0/m1_70_590#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_n1432#" "vm20g"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" -12488.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -18516280 -2404 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_1000#" "lvds_diffamp_1/m1_70_1210#"
+merge "lvds_diffamp_1/m1_70_1210#" "lvds_diffamp_1/m1_70_590#"
+merge "lvds_diffamp_1/m1_70_590#" "m1_15690_6180#"
+merge "lvds_diffamp_1/m1_188_1002#" "lvds_diffamp_0/m1_188_1002#" 10202.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48785956 -34480 0 0 0 0 0 0 0 0
+merge "lvds_diffamp_0/m1_188_1002#" "lvds_diffamp_1/m1_70_160#"
+merge "lvds_diffamp_1/m1_70_160#" "lvds_diffamp_0/m1_70_160#"
+merge "lvds_diffamp_0/m1_70_160#" "lvds_currm_n_9/m1_76_644#"
+merge "lvds_currm_n_9/m1_76_644#" "m2_17470_3120#"
+merge "m2_17470_3120#" "m2_17470_1890#"
+merge "m2_17470_1890#" "m2_17470_2510#"
+merge "m2_17470_2510#" "lvds_currm_n_10/m1_76_644#"
+merge "lvds_currm_n_10/m1_76_644#" "m2_17470_1270#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" -8602 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -13321144 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0/a_n194_1000#" "m1_13800_6190#"
+merge "lvds_currm_n_9/m1_n20_420#" "lvds_currm_n_10/m1_n20_420#" -1680.31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 504000 -900 0 0 0 0 0 0 0 0
+merge "lvds_currm_n_10/m1_n20_420#" "m2_18900_460#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" -5151.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7916480 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n353_n1432#" "m1_16110_3750#"
+merge "sky130_fd_sc_hs__inv_4_1/A" "sky130_fd_sc_hs__inv_4_0/Y" 11556.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12761083 -2566 -3025032 -2452 -1425960 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_sc_hs__inv_4_0/Y" "sky130_fd_sc_hs__inv_16_0/A"
+merge "sky130_fd_sc_hs__inv_16_0/A" "vx9y"
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_283_1000#" "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" -4983.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7888000 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0/a_n35_1000#" "m1_16410_6170#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_124_n1432#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" -7017.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -10814948 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2/a_n194_n1432#" "m1_15390_3750#"
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_124_1000#" "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" -4578.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6938800 -1884 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1/a_n194_1000#" "m1_14510_6190#"
diff --git a/mag/lvds/transmitter.mag b/mag/lvds/transmitter.mag
new file mode 100644
index 0000000..3b81571
--- /dev/null
+++ b/mag/lvds/transmitter.mag
@@ -0,0 +1,1716 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654695234
+<< nwell >>
+rect 2940 6920 6680 7160
+rect 660 6100 6340 6260
+rect 660 5830 1230 6100
+rect 1250 5830 6340 6100
+rect 660 5820 6340 5830
+rect 2920 5090 6640 5330
+rect 650 3990 6320 4430
+<< pwell >>
+rect 2980 6390 6300 6610
+rect 2980 6380 6250 6390
+rect 2980 6310 6310 6380
+rect 6220 6300 6310 6310
+rect 660 5410 6310 5740
+rect 16060 5170 20880 5240
+rect 20790 5120 20880 5170
+rect 17420 4960 17550 5010
+rect 2960 4560 6280 4780
+rect 2960 4550 6230 4560
+rect 2960 4480 6290 4550
+rect 6200 4470 6290 4480
+rect 650 3900 6320 3910
+rect 650 3730 800 3900
+rect 880 3730 6320 3900
+rect 650 3580 6320 3730
+<< psubdiff >>
+rect 3010 6360 6280 6370
+rect 3010 6320 3040 6360
+rect 6250 6320 6280 6360
+rect 3010 6310 6280 6320
+rect 660 5430 700 5500
+rect 6250 5430 6310 5500
+rect 660 5410 6310 5430
+rect 2990 4530 6260 4540
+rect 2990 4490 3020 4530
+rect 6230 4490 6260 4530
+rect 2990 4480 6260 4490
+rect 650 3610 690 3670
+rect 6270 3610 6320 3670
+rect 650 3580 6320 3610
+<< nsubdiff >>
+rect 2980 7080 6340 7120
+rect 2980 7040 3040 7080
+rect 6280 7040 6340 7080
+rect 2980 7010 6340 7040
+rect 700 6190 1200 6210
+rect 700 6150 730 6190
+rect 1170 6150 1200 6190
+rect 700 6140 1200 6150
+rect 1270 6200 6270 6220
+rect 1270 6160 1310 6200
+rect 6240 6160 6270 6200
+rect 1270 6140 6270 6160
+rect 2960 5250 6320 5290
+rect 2960 5210 3020 5250
+rect 6260 5210 6320 5250
+rect 2960 5180 6320 5210
+rect 690 4360 1190 4380
+rect 690 4320 720 4360
+rect 1160 4320 1190 4360
+rect 690 4310 1190 4320
+rect 1250 4370 6250 4390
+rect 1250 4330 1290 4370
+rect 6220 4330 6250 4370
+rect 1250 4310 6250 4330
+<< psubdiffcont >>
+rect 3040 6320 6250 6360
+rect 700 5430 6250 5500
+rect 3020 4490 6230 4530
+rect 690 3610 6270 3670
+<< nsubdiffcont >>
+rect 3040 7040 6280 7080
+rect 730 6150 1170 6190
+rect 1310 6160 6240 6200
+rect 3020 5210 6260 5250
+rect 720 4320 1160 4360
+rect 1290 4330 6220 4370
+<< locali >>
+rect 3440 11840 3530 20040
+rect 5170 11840 5270 20040
+rect 6910 11840 7010 20040
+rect 10390 11840 10490 20040
+rect 12130 11840 12230 20040
+rect 13870 11840 13970 20040
+rect 15610 11840 15710 20040
+rect 17350 11840 17450 20040
+rect 3440 10270 3530 11610
+rect 3340 10250 3530 10270
+rect 5170 10260 5270 11610
+rect 6910 10260 7010 11610
+rect 10390 10260 10490 11610
+rect 12130 10260 12230 11610
+rect 13870 10260 13970 11610
+rect 15610 10260 15710 11610
+rect 17350 10630 17450 11610
+rect 17350 10260 17450 10300
+rect 19090 10260 19190 11610
+rect 3340 7530 3510 10250
+rect 6650 7120 13560 7540
+rect 2980 7080 6310 7100
+rect 2980 7040 3040 7080
+rect 6280 7040 6310 7080
+rect 2980 7030 6310 7040
+rect 3010 6360 6310 6380
+rect 3010 6320 3040 6360
+rect 6250 6320 6310 6360
+rect 3010 6300 6310 6320
+rect 700 6190 1200 6210
+rect 700 6150 730 6190
+rect 1170 6150 1200 6190
+rect 700 6140 1200 6150
+rect 1270 6200 6270 6220
+rect 1270 6160 1310 6200
+rect 6240 6160 6270 6200
+rect 1270 6140 6270 6160
+rect 660 5430 700 5500
+rect 6250 5430 6310 5500
+rect 660 5410 6310 5430
+rect 2960 5250 6290 5270
+rect 2960 5210 3020 5250
+rect 6260 5210 6290 5250
+rect 2960 5200 6290 5210
+rect 2990 4530 6290 4550
+rect 2990 4490 3020 4530
+rect 6230 4490 6290 4530
+rect 2990 4470 6290 4490
+rect 690 4360 1190 4380
+rect 690 4320 720 4360
+rect 1160 4320 1190 4360
+rect 690 4310 1190 4320
+rect 1250 4370 6250 4390
+rect 1250 4330 1290 4370
+rect 6220 4330 6250 4370
+rect 1250 4310 6250 4330
+rect 650 3610 690 3670
+rect 6270 3610 6320 3670
+rect 13080 3650 13680 4230
+rect 14300 3650 14400 6740
+rect 15000 3650 15300 6760
+rect 15900 3650 16000 6780
+rect 19100 3760 19180 5100
+rect 17350 3650 20840 3760
+rect 13080 3640 20840 3650
+rect 650 3580 6320 3610
+rect 6620 3430 9330 3640
+rect 10330 3480 20840 3640
+rect 10290 3460 20840 3480
+rect 10120 3440 20840 3460
+rect 10120 3420 10490 3440
+rect 10290 3410 10420 3420
+rect 12030 750 12220 3440
+rect 13630 3430 20840 3440
+<< viali >>
+rect 830 5890 870 6050
+rect 1010 5890 1050 6050
+rect 730 5770 1050 5840
+rect 830 5600 870 5710
+rect 1110 5700 1190 5910
+rect 810 4050 870 4230
+rect 990 4050 1050 4230
+rect 720 3940 1040 4000
+rect 820 3760 860 3890
+rect 1100 3870 1180 4070
+<< metal1 >>
+rect 1780 19890 18780 19950
+rect 15580 19280 15710 19890
+rect 15670 19050 15710 19280
+rect 17330 19270 17480 19890
+rect 17410 19050 17480 19270
+rect 1430 18800 1440 18960
+rect 1590 18800 1600 18960
+rect 1440 14770 1590 18800
+rect 15580 18780 15710 19050
+rect 17330 18780 17480 19050
+rect 1780 18720 18780 18780
+rect 15580 16140 15710 18720
+rect 15580 15760 15740 16140
+rect 17330 15760 17480 18720
+rect 1770 15700 18770 15760
+rect 15580 15510 15740 15700
+rect 15580 15090 15710 15510
+rect 17330 15090 17480 15700
+rect 15670 14860 15710 15090
+rect 1430 14610 1440 14770
+rect 1590 14610 1600 14770
+rect 1440 10580 1590 14610
+rect 15580 14590 15710 14860
+rect 17410 14850 17480 15090
+rect 17330 14590 17480 14850
+rect 1770 14530 18770 14590
+rect 1770 11730 1820 11840
+rect 1430 10420 1440 10580
+rect 1590 10420 1600 10580
+rect 1770 10400 1820 11630
+rect 15580 11570 15710 14530
+rect 17330 11840 17480 14530
+rect 17330 11740 17460 11840
+rect 2600 11510 17270 11570
+rect 17640 11510 18770 11570
+rect 15580 10920 15710 11510
+rect 15670 10670 15710 10920
+rect 15580 10400 15710 10670
+rect 1770 10340 17270 10400
+rect 17720 10340 18770 10400
+rect 1770 10130 1820 10340
+rect 15580 7400 15710 10340
+rect 17940 7520 17950 7620
+rect 18210 7520 18220 7620
+rect 19120 7610 19220 10650
+rect 20800 10480 20810 10640
+rect 20910 10480 20920 10640
+rect 20510 10050 20640 10370
+rect 20520 9760 20640 10050
+rect 20810 9790 20910 10480
+rect 20510 9190 20640 9760
+rect 20520 8940 20640 9190
+rect 20510 8780 20640 8940
+rect 20520 8540 20640 8780
+rect 20510 7920 20640 8540
+rect 20520 7670 20640 7920
+rect 19900 7580 20160 7660
+rect 20510 7590 20640 7670
+rect 20700 9640 20910 9790
+rect 19900 7510 19920 7580
+rect 20140 7510 20160 7580
+rect 19900 7400 20160 7510
+rect 15580 7310 20160 7400
+rect 20700 7140 20810 9640
+rect 2940 7090 6310 7120
+rect 2940 6970 3400 7090
+rect 3630 6970 4540 7090
+rect 4770 6970 5540 7090
+rect 5770 6970 6310 7090
+rect 2940 6960 6310 6970
+rect 6400 6990 9770 7100
+rect 6400 6920 6710 6990
+rect 3090 6750 6710 6920
+rect 2840 6700 6100 6710
+rect 2840 6510 2850 6700
+rect 3020 6510 6100 6700
+rect 2840 6500 6100 6510
+rect 6400 6530 6710 6750
+rect 2970 6420 6310 6440
+rect 2970 6300 3130 6420
+rect 3320 6300 3830 6420
+rect 4020 6300 4980 6420
+rect 5170 6300 6310 6420
+rect 2970 6290 6310 6300
+rect 6400 6360 9770 6530
+rect 660 6230 6300 6240
+rect 660 6120 1450 6230
+rect 1680 6120 2350 6230
+rect 2580 6120 3400 6230
+rect 3630 6120 4540 6230
+rect 660 6110 4540 6120
+rect 4770 6110 5540 6230
+rect 5770 6110 6300 6230
+rect 660 6100 6300 6110
+rect 824 6050 876 6062
+rect 824 5890 830 6050
+rect 870 5940 876 6050
+rect 1004 6050 1056 6062
+rect 2840 6050 2850 6070
+rect 1004 5940 1010 6050
+rect 870 5890 1010 5940
+rect 1050 5940 1056 6050
+rect 1050 5922 1190 5940
+rect 1050 5910 1196 5922
+rect 1050 5890 1110 5910
+rect 824 5880 1110 5890
+rect 824 5878 876 5880
+rect 1004 5878 1056 5880
+rect 718 5840 1062 5846
+rect 718 5770 730 5840
+rect 1050 5770 1062 5840
+rect 718 5764 1062 5770
+rect 824 5720 876 5722
+rect 1104 5720 1110 5880
+rect 824 5710 1110 5720
+rect 824 5600 830 5710
+rect 870 5700 1110 5710
+rect 1190 5840 1196 5910
+rect 1390 5890 2850 6050
+rect 3020 5890 3030 6070
+rect 6400 6050 6710 6360
+rect 1390 5880 3030 5890
+rect 3080 5890 6710 6050
+rect 3080 5880 9770 5890
+rect 1190 5780 2680 5840
+rect 2840 5830 3030 5880
+rect 1190 5700 1196 5780
+rect 870 5688 1196 5700
+rect 870 5660 1190 5688
+rect 870 5600 876 5660
+rect 2840 5640 6090 5830
+rect 6400 5720 9770 5880
+rect 824 5588 876 5600
+rect 660 5540 6310 5560
+rect 660 5400 700 5540
+rect 920 5400 1820 5540
+rect 2040 5400 3130 5540
+rect 3320 5400 3830 5540
+rect 4020 5520 6310 5540
+rect 4020 5400 4980 5520
+rect 5170 5400 6310 5520
+rect 660 5390 6310 5400
+rect 2960 5290 6290 5310
+rect 2960 5160 3400 5290
+rect 3630 5160 4540 5290
+rect 2960 5150 4540 5160
+rect 4770 5270 6290 5290
+rect 4770 5150 5540 5270
+rect 5770 5150 6290 5270
+rect 2960 5140 6290 5150
+rect 6400 5260 6710 5720
+rect 6400 5150 9770 5260
+rect 3080 5070 6170 5080
+rect 3080 4920 5880 5070
+rect 6160 4920 6170 5070
+rect 6400 4960 6710 5150
+rect 4260 4860 5820 4870
+rect 2930 4850 5820 4860
+rect 2850 4740 2860 4850
+rect 2980 4740 5820 4850
+rect 2930 4730 5820 4740
+rect 6400 4850 9260 4960
+rect 10180 4880 10490 7100
+rect 15360 7030 20810 7140
+rect 13800 6190 14180 6620
+rect 14510 6190 14890 6620
+rect 15360 6190 15490 7030
+rect 15690 6180 16220 6650
+rect 16060 5240 16220 6180
+rect 16410 6170 16820 6630
+rect 16060 5170 20880 5240
+rect 20790 5010 20880 5170
+rect 17390 4960 17540 5010
+rect 20740 4960 20880 5010
+rect 2960 4580 6290 4590
+rect 2960 4570 3830 4580
+rect 2960 4480 3130 4570
+rect 3320 4480 3830 4570
+rect 4020 4480 4980 4580
+rect 5170 4480 6290 4580
+rect 2960 4470 6290 4480
+rect 650 4400 4540 4410
+rect 650 4290 1450 4400
+rect 1680 4390 3400 4400
+rect 1680 4290 2350 4390
+rect 2580 4290 3400 4390
+rect 3630 4290 4540 4400
+rect 4770 4290 5540 4410
+rect 5770 4290 6320 4410
+rect 650 4280 6320 4290
+rect 6400 4390 6710 4850
+rect 10170 4650 10180 4880
+rect 10470 4650 10490 4880
+rect 14460 4740 14470 4890
+rect 14940 4840 14950 4890
+rect 17390 4840 17480 4960
+rect 14940 4740 17480 4840
+rect 804 4230 876 4242
+rect 804 4050 810 4230
+rect 870 4110 876 4230
+rect 984 4230 1056 4242
+rect 984 4110 990 4230
+rect 870 4050 990 4110
+rect 1050 4110 1056 4230
+rect 6400 4230 9170 4390
+rect 3070 4200 6160 4210
+rect 1370 4190 2980 4200
+rect 1050 4082 1180 4110
+rect 1050 4070 1186 4082
+rect 1050 4050 1100 4070
+rect 804 4040 1100 4050
+rect 804 4038 876 4040
+rect 984 4038 1056 4040
+rect 510 4006 1050 4010
+rect 510 4000 1052 4006
+rect 510 3940 720 4000
+rect 1040 3940 1052 4000
+rect 510 3934 1052 3940
+rect 510 3930 1050 3934
+rect 814 3890 866 3902
+rect 1094 3890 1100 4040
+rect 1180 4000 1186 4070
+rect 1370 4070 2870 4190
+rect 2970 4070 2980 4190
+rect 1370 4060 2980 4070
+rect 1180 3980 2660 4000
+rect 814 3760 820 3890
+rect 860 3870 1100 3890
+rect 860 3850 1110 3870
+rect 1260 3850 2660 3980
+rect 2860 3990 2980 4060
+rect 3070 4050 5880 4200
+rect 6160 4050 6170 4200
+rect 2860 3850 6060 3990
+rect 860 3840 2660 3850
+rect 860 3760 866 3840
+rect 1110 3830 2660 3840
+rect 814 3748 866 3760
+rect 6400 3770 6710 4230
+rect 650 3580 700 3700
+rect 920 3580 1820 3700
+rect 2040 3580 3130 3700
+rect 3320 3580 3830 3700
+rect 4020 3580 4980 3700
+rect 5170 3580 6320 3700
+rect 6400 3660 9260 3770
+rect 10180 3660 10490 4650
+rect 14470 4190 14580 4740
+rect 17390 4500 17480 4740
+rect 20790 4500 20880 4960
+rect 17390 4450 17550 4500
+rect 20730 4450 20880 4500
+rect 17390 4390 17480 4450
+rect 20790 4390 20880 4450
+rect 17390 4340 17550 4390
+rect 20730 4340 20880 4390
+rect 650 3570 6320 3580
+rect 9850 3500 9860 3630
+rect 10050 3590 10060 3630
+rect 13790 3590 13880 4190
+rect 14110 3750 14580 4190
+rect 14810 3750 14820 3900
+rect 14930 3750 14940 3900
+rect 15390 3750 15820 4200
+rect 16110 3750 16520 4210
+rect 10050 3500 13880 3590
+rect 16750 3660 16880 4200
+rect 17390 3880 17480 4340
+rect 20790 3880 20880 4340
+rect 17390 3830 17550 3880
+rect 20740 3830 20880 3880
+rect 16750 3560 20840 3660
+rect 200 3390 210 3470
+rect 400 3390 410 3470
+rect 20 3330 1450 3390
+rect 20740 880 20840 3560
+rect 20740 810 20960 880
+rect 20 640 20150 690
+rect 20 130 20150 180
+rect 1760 -1670 1830 130
+rect 1760 -1840 1810 -1670
+rect 1760 -2780 1830 -1840
+rect 3500 -2780 3570 130
+rect 5240 -2780 5310 130
+rect 6980 -2780 7050 130
+rect 8720 -2780 8790 130
+rect 10460 -2780 10530 130
+rect 12200 -2780 12270 130
+rect 13940 -2780 14010 130
+rect 15680 -2780 15750 130
+rect 17420 -2780 17490 130
+rect 20890 70 20960 810
+rect 20800 0 20810 70
+rect 20960 0 20970 70
+rect 1760 -2830 19010 -2780
+rect 1760 -3290 1830 -2830
+rect 3500 -3290 3570 -2830
+rect 5240 -3290 5310 -2830
+rect 6980 -3290 7050 -2830
+rect 8720 -3290 8790 -2830
+rect 10460 -3290 10530 -2830
+rect 12200 -3290 12270 -2830
+rect 13940 -3290 14010 -2830
+rect 15680 -3290 15750 -2830
+rect 17420 -3290 17490 -2830
+rect 1760 -3340 19010 -3290
+rect 1760 -5130 1830 -3340
+rect 1760 -5340 1810 -5130
+rect 1760 -5720 1830 -5340
+rect 1760 -6030 1820 -5720
+rect 1760 -6250 1830 -6030
+rect 3500 -6250 3570 -3340
+rect 5240 -6250 5310 -3340
+rect 6980 -6250 7050 -3340
+rect 8720 -6250 8790 -3340
+rect 10460 -6250 10530 -3340
+rect 12200 -6250 12270 -3340
+rect 13940 -6250 14010 -3340
+rect 15680 -6250 15750 -3340
+rect 17420 -6250 17490 -3340
+rect 1760 -6300 18850 -6250
+rect 1760 -6760 1830 -6300
+rect 3500 -6760 3570 -6300
+rect 5240 -6760 5310 -6300
+rect 6980 -6760 7050 -6300
+rect 8720 -6760 8790 -6300
+rect 10460 -6760 10530 -6300
+rect 12200 -6760 12270 -6300
+rect 13940 -6760 14010 -6300
+rect 15680 -6760 15750 -6300
+rect 17420 -6760 17490 -6300
+rect 1760 -6810 18850 -6760
+<< via1 >>
+rect 1440 18800 1590 18960
+rect 1440 14610 1590 14770
+rect 1440 10420 1590 10580
+rect 17950 7520 18210 7620
+rect 20810 10480 20910 10640
+rect 19920 7510 20140 7580
+rect 3400 6970 3630 7090
+rect 4540 6970 4770 7090
+rect 5540 6970 5770 7090
+rect 2850 6510 3020 6700
+rect 3130 6300 3320 6420
+rect 3830 6300 4020 6420
+rect 4980 6300 5170 6420
+rect 1450 6120 1680 6230
+rect 2350 6120 2580 6230
+rect 3400 6120 3630 6230
+rect 4540 6110 4770 6230
+rect 5540 6110 5770 6230
+rect 730 5770 1050 5840
+rect 2850 5890 3020 6070
+rect 700 5400 920 5540
+rect 1820 5400 2040 5540
+rect 3130 5400 3320 5540
+rect 3830 5400 4020 5540
+rect 4980 5400 5170 5520
+rect 3400 5160 3630 5290
+rect 4540 5150 4770 5290
+rect 5540 5150 5770 5270
+rect 5880 4920 6160 5070
+rect 2860 4740 2980 4850
+rect 3130 4480 3320 4570
+rect 3830 4480 4020 4580
+rect 4980 4480 5170 4580
+rect 1450 4290 1680 4400
+rect 2350 4290 2580 4390
+rect 3400 4290 3630 4400
+rect 4540 4290 4770 4410
+rect 5540 4290 5770 4410
+rect 10180 4650 10470 4880
+rect 14470 4740 14940 4890
+rect 2870 4070 2970 4190
+rect 1110 3870 1180 3980
+rect 1180 3870 1260 3980
+rect 1110 3850 1260 3870
+rect 5880 4050 6160 4200
+rect 700 3580 920 3700
+rect 1820 3580 2040 3700
+rect 3130 3580 3320 3700
+rect 3830 3580 4020 3700
+rect 4980 3580 5170 3700
+rect 9860 3500 10050 3630
+rect 14820 3750 14930 3900
+rect 210 3390 400 3470
+rect 20810 0 20960 70
+<< metal2 >>
+rect 1280 20070 1720 20080
+rect 1720 20050 20470 20070
+rect 1720 19710 19240 20050
+rect 1720 19090 19240 19380
+rect 20460 19710 20470 20050
+rect 20460 19090 20470 19380
+rect 1720 19080 20470 19090
+rect 1280 19070 1720 19080
+rect 1440 18960 1590 18970
+rect 1590 18800 19010 18960
+rect 1440 18790 1590 18800
+rect 1730 17620 19030 18140
+rect 1730 16610 19030 16870
+rect 1730 15950 19030 16230
+rect 1280 15880 1720 15890
+rect 1720 15860 20470 15880
+rect 1720 15520 19240 15860
+rect 1720 15180 1780 15520
+rect 1720 14900 19240 15180
+rect 20460 15520 20470 15860
+rect 20460 14900 20470 15180
+rect 1720 14890 20470 14900
+rect 1280 14880 1720 14890
+rect 1440 14770 1590 14780
+rect 1590 14610 19010 14770
+rect 1440 14600 1590 14610
+rect 1790 13430 19040 13950
+rect 1730 12420 19030 12680
+rect 19220 12240 20470 12270
+rect 1730 11760 19030 12040
+rect 19220 11740 19240 12240
+rect 20460 11740 20470 12240
+rect 1290 11660 1720 11670
+rect 1280 11330 1290 11610
+rect 1280 10710 1290 10970
+rect 19220 11610 20470 11740
+rect 1720 11330 20770 11610
+rect 1720 10710 20770 10970
+rect 1280 10700 20770 10710
+rect 20810 10640 20910 10850
+rect 1440 10580 1590 10590
+rect 1590 10420 17240 10580
+rect 17720 10440 19000 10580
+rect 20810 10470 20910 10480
+rect 17720 10420 18880 10440
+rect 1440 10410 1590 10420
+rect 1800 9240 17290 9760
+rect 1800 8230 17290 8490
+rect 1800 7490 17290 7850
+rect 17950 7620 18210 7630
+rect 17950 7510 18210 7520
+rect 19900 7580 20160 7760
+rect 19900 7510 19920 7580
+rect 20140 7510 20160 7580
+rect 19900 7490 20160 7510
+rect 8300 7260 12010 7270
+rect 1450 7250 1680 7260
+rect 1450 6230 1680 7000
+rect 730 5840 1050 5850
+rect 1050 5770 1260 5840
+rect 730 5710 1260 5770
+rect 700 5540 920 5560
+rect 700 3710 920 5400
+rect 1110 3980 1260 5710
+rect 1450 4400 1680 6120
+rect 2350 7250 2580 7260
+rect 2350 6230 2580 7000
+rect 3400 7250 3630 7260
+rect 1450 4280 1680 4290
+rect 1820 5540 2040 5560
+rect 1110 3840 1260 3850
+rect 70 3470 560 3610
+rect 700 3560 920 3570
+rect 1820 3700 2040 5400
+rect 2350 4390 2580 6120
+rect 2840 6700 3030 6710
+rect 2840 6510 2850 6700
+rect 3020 6510 3030 6700
+rect 2840 6070 3030 6510
+rect 2840 5890 2850 6070
+rect 3020 5890 3030 6070
+rect 2840 5880 3030 5890
+rect 3130 6420 3320 6440
+rect 3130 5540 3320 6300
+rect 2350 4280 2580 4290
+rect 2860 4850 2980 4860
+rect 2860 4190 2980 4740
+rect 2860 4070 2870 4190
+rect 2970 4070 2980 4190
+rect 3130 4570 3320 5400
+rect 2870 4060 2970 4070
+rect 1820 3550 2040 3560
+rect 3130 3700 3320 4480
+rect 3400 6230 3630 6970
+rect 4540 7250 4770 7260
+rect 3400 5290 3630 6120
+rect 3400 4400 3630 5160
+rect 3400 4280 3630 4290
+rect 3830 6420 4020 6440
+rect 3830 5540 4020 6300
+rect 3830 4580 4020 5400
+rect 3130 3550 3320 3560
+rect 3830 3700 4020 4480
+rect 4540 6230 4770 6970
+rect 5540 7250 5770 7260
+rect 4540 5290 4770 6110
+rect 4540 4410 4770 5150
+rect 4540 4280 4770 4290
+rect 4980 6420 5170 6440
+rect 4980 5520 5170 6300
+rect 4980 4580 5170 5400
+rect 3830 3550 4020 3560
+rect 4980 3700 5170 4480
+rect 5540 6230 5770 6970
+rect 6850 6830 8300 7210
+rect 12010 6830 13380 7210
+rect 6850 6810 13380 6830
+rect 6750 6680 9700 6710
+rect 6750 6220 6800 6680
+rect 8210 6220 9700 6680
+rect 6750 6180 9700 6220
+rect 10530 6180 14460 6710
+rect 5540 5270 5770 6110
+rect 6850 6060 13380 6080
+rect 6850 5560 8300 6060
+rect 12010 5560 13380 6060
+rect 6850 5540 13380 5560
+rect 13570 5440 14460 6180
+rect 5540 4410 5770 5150
+rect 6760 5420 10050 5440
+rect 5540 4280 5770 4290
+rect 5870 5070 6170 5080
+rect 5870 4920 5880 5070
+rect 6160 4920 6170 5070
+rect 5870 4870 6170 4920
+rect 5870 4660 5880 4870
+rect 6160 4660 6170 4870
+rect 6760 4970 6800 5420
+rect 10010 4970 10050 5420
+rect 6760 4670 10050 4970
+rect 10530 5090 14460 5440
+rect 18640 5110 19600 5120
+rect 5870 4200 6170 4660
+rect 5870 4050 5880 4200
+rect 6160 4050 6170 4200
+rect 6760 4550 9170 4560
+rect 5880 4040 6160 4050
+rect 6760 4040 9170 4050
+rect 9280 3950 10050 4670
+rect 10180 4880 10470 4890
+rect 10530 4670 13210 5090
+rect 10180 4640 10470 4650
+rect 10530 4550 13000 4560
+rect 10530 4040 13000 4050
+rect 13060 3950 13210 4670
+rect 4980 3550 5170 3560
+rect 6750 3630 10050 3950
+rect 6750 3550 9860 3630
+rect 10540 3760 13210 3950
+rect 14220 5060 14460 5090
+rect 14220 3760 14360 5060
+rect 14470 4890 14940 4900
+rect 17640 4800 18640 5110
+rect 19600 4930 20620 5110
+rect 19600 4800 20630 4930
+rect 17640 4780 20630 4800
+rect 14470 4730 14940 4740
+rect 17530 4640 19020 4670
+rect 18500 4200 19020 4640
+rect 17530 4160 19020 4200
+rect 19260 4630 20750 4670
+rect 19260 4190 19700 4630
+rect 20670 4190 20750 4630
+rect 19260 4160 20750 4190
+rect 17470 4040 20750 4050
+rect 10540 3660 14360 3760
+rect 14820 3900 14930 3910
+rect 14820 3740 14930 3750
+rect 14830 3660 14920 3740
+rect 10540 3550 14920 3660
+rect 17470 3730 18640 4040
+rect 19600 3730 20750 4040
+rect 9860 3490 10050 3500
+rect 70 3390 210 3470
+rect 400 3390 560 3470
+rect 70 3320 560 3390
+rect 1810 3120 16900 3460
+rect 17470 3120 20750 3730
+rect 1810 2510 16900 2730
+rect 17470 2510 20380 2730
+rect 1810 1890 16900 2110
+rect 17470 1890 20380 2110
+rect 1810 1270 16900 1490
+rect 17470 1270 20380 1490
+rect 3550 1170 3620 1200
+rect 5290 1170 5360 1200
+rect 6950 1170 7100 1200
+rect 8760 1170 8890 1200
+rect 10500 1170 10630 1200
+rect 12240 1170 12320 1200
+rect 13970 1170 14070 1200
+rect 15720 1170 15820 1200
+rect 1870 1140 17000 1170
+rect 1870 1020 1890 1140
+rect 2040 1020 17000 1140
+rect 1890 990 2040 1000
+rect 18900 460 19340 600
+rect 130 350 20750 360
+rect 20750 340 20790 350
+rect 20790 70 20960 80
+rect 20790 0 20810 70
+rect 20790 -10 20960 0
+rect 130 -40 19240 -30
+rect 19240 -50 20790 -40
+rect 1810 -350 18640 -120
+rect 1810 -960 18640 -740
+rect 1810 -1580 18640 -1360
+rect 2170 -1830 18750 -1680
+rect 1810 -2200 18640 -1980
+rect 1880 -2310 2090 -2300
+rect 1880 -2520 2090 -2510
+rect 130 -2910 1680 -2900
+rect 19240 -2940 20790 -2930
+rect 1680 -3110 19240 -3100
+rect 1680 -3500 19240 -3490
+rect 1810 -3820 18640 -3600
+rect 130 -3960 1680 -3950
+rect 19240 -3990 20790 -3980
+rect 1810 -4430 18640 -4210
+rect 1810 -5050 18640 -4830
+rect 2920 -5300 18750 -5150
+rect 1810 -5670 18640 -5450
+rect 1880 -5790 2040 -5780
+rect 130 -5930 1680 -5920
+rect 120 -6590 130 -6580
+rect 1880 -5970 2040 -5960
+rect 19240 -5940 20790 -5930
+rect 1680 -6590 19240 -6580
+rect 120 -6980 19240 -6970
+rect 19240 -6990 20790 -6980
+<< via2 >>
+rect 1280 19080 1720 20070
+rect 19240 19090 20460 20050
+rect 1280 14890 1720 15880
+rect 19240 14900 20460 15860
+rect 19240 11740 20460 12240
+rect 1290 10710 1720 11660
+rect 17950 7520 18210 7620
+rect 1450 7000 1680 7250
+rect 2350 7000 2580 7250
+rect 3400 7090 3630 7250
+rect 3400 7000 3630 7090
+rect 700 3700 920 3710
+rect 700 3580 920 3700
+rect 700 3570 920 3580
+rect 1820 3580 2040 3700
+rect 1820 3560 2040 3580
+rect 4540 7090 4770 7250
+rect 4540 7000 4770 7090
+rect 3130 3580 3320 3700
+rect 3130 3560 3320 3580
+rect 5540 7090 5770 7250
+rect 5540 7000 5770 7090
+rect 3830 3580 4020 3700
+rect 3830 3560 4020 3580
+rect 8300 6830 12010 7260
+rect 6800 6220 8210 6680
+rect 8300 5560 12010 6060
+rect 5880 4660 6160 4870
+rect 6800 4970 10010 5420
+rect 6760 4050 9170 4550
+rect 10180 4650 10470 4880
+rect 10530 4050 13000 4550
+rect 4980 3580 5170 3700
+rect 4980 3560 5170 3580
+rect 13210 3760 14220 5090
+rect 14470 4740 14940 4890
+rect 18640 4800 19600 5110
+rect 17530 4200 18500 4640
+rect 19700 4190 20670 4630
+rect 18640 3730 19600 4040
+rect 1890 1000 2040 1140
+rect 130 340 20750 350
+rect 130 -30 20790 340
+rect 19240 -40 20790 -30
+rect 1880 -2510 2090 -2310
+rect 130 -3110 1680 -2910
+rect 19240 -3110 20790 -2940
+rect 130 -3490 20790 -3110
+rect 130 -3950 1680 -3490
+rect 19240 -3980 20790 -3490
+rect 130 -6590 1680 -5930
+rect 1880 -5960 2040 -5790
+rect 19240 -6590 20790 -5940
+rect 120 -6970 20790 -6590
+rect 19240 -6980 20790 -6970
+<< metal3 >>
+rect 1270 20070 1730 20075
+rect 1270 19080 1280 20070
+rect 2200 20040 2210 20070
+rect 19230 20050 20470 20055
+rect 19230 20040 19240 20050
+rect 2200 19720 19240 20040
+rect 2200 19080 2210 19720
+rect 19230 19090 19240 19720
+rect 20460 19090 20470 20050
+rect 19230 19085 20470 19090
+rect 1270 19075 1730 19080
+rect 9390 18600 12140 18960
+rect 9900 17630 9910 18130
+rect 10920 17630 10930 18130
+rect 9900 16610 9910 16870
+rect 10920 16610 10930 16870
+rect 9390 15960 9400 16230
+rect 11920 15960 11930 16230
+rect 1270 15880 1730 15885
+rect 1270 14880 1280 15880
+rect 1720 15870 1730 15880
+rect 2200 15850 2210 15870
+rect 19230 15860 20470 15865
+rect 19230 15850 19240 15860
+rect 2200 15530 19240 15850
+rect 2200 14880 2210 15530
+rect 19230 14900 19240 15530
+rect 20460 14900 20470 15860
+rect 19230 14895 20470 14900
+rect 9390 14410 12140 14770
+rect 9900 13440 9910 13940
+rect 10920 13440 10930 13940
+rect 9900 12420 9910 12680
+rect 10920 12420 10930 12680
+rect 19230 12240 20470 12245
+rect 9390 11760 9400 12030
+rect 11920 11760 11930 12030
+rect 19230 11740 19240 12240
+rect 20460 11740 20470 12240
+rect 19230 11735 20470 11740
+rect 1710 11665 1810 11670
+rect 1280 11660 1810 11665
+rect 1280 10710 1290 11660
+rect 1720 11650 19230 11660
+rect 2200 11340 19230 11650
+rect 2200 10790 2210 11340
+rect 2200 10710 2230 10790
+rect 1280 10705 2230 10710
+rect 1700 10700 2230 10705
+rect 9390 10220 12140 10580
+rect 19220 10370 19230 11340
+rect 19600 11340 20360 11660
+rect 19600 10370 19610 11340
+rect 20350 10370 20360 11340
+rect 20760 10370 20770 11660
+rect 9900 9250 9910 9750
+rect 10920 9250 10930 9750
+rect 9900 8230 9910 8490
+rect 10920 8230 10930 8490
+rect 9390 7490 9400 7850
+rect 12130 7490 12140 7850
+rect 17460 7650 19030 7840
+rect 17430 7620 19050 7650
+rect 17430 7520 17950 7620
+rect 18210 7520 19050 7620
+rect 1340 6990 1350 7290
+rect 1940 7255 5770 7290
+rect 8290 7260 12020 7265
+rect 1940 7250 5780 7255
+rect 1940 7000 2350 7250
+rect 2580 7000 3400 7250
+rect 3630 7000 4540 7250
+rect 4770 7000 5540 7250
+rect 5770 7000 5780 7250
+rect 1940 6995 5780 7000
+rect 1940 6990 5770 6995
+rect 8290 6830 8300 7260
+rect 12010 6830 12020 7260
+rect 17430 7240 19050 7520
+rect 8290 6825 9430 6830
+rect 6790 6680 8220 6685
+rect 6790 6220 6800 6680
+rect 8210 6220 8220 6680
+rect 6790 6215 8220 6220
+rect 6800 5425 8210 6215
+rect 8300 6065 9430 6825
+rect 8290 6060 9430 6065
+rect 11980 6825 12020 6830
+rect 11980 6065 12010 6825
+rect 11980 6060 12020 6065
+rect 8290 5560 8300 6060
+rect 12010 5560 12020 6060
+rect 8290 5555 12020 5560
+rect 8300 5540 12010 5555
+rect 6790 5420 10020 5425
+rect 6780 4970 6790 5420
+rect 10010 4970 10020 5420
+rect 6790 4965 10020 4970
+rect 13200 5090 14230 5095
+rect 5830 4880 6170 4885
+rect 10170 4880 10480 4885
+rect 5830 4870 10180 4880
+rect 5830 4660 5880 4870
+rect 6160 4660 10180 4870
+rect 5830 4650 10180 4660
+rect 10470 4840 10480 4880
+rect 10470 4650 10490 4840
+rect 5830 4645 6170 4650
+rect 10170 4645 10480 4650
+rect 7710 4555 11940 4560
+rect 6750 4550 13010 4555
+rect 6750 4050 6760 4550
+rect 9170 4050 9340 4550
+rect 13000 4050 13010 4550
+rect 6750 4045 13010 4050
+rect 7710 4040 11940 4045
+rect 680 3560 690 3830
+rect 1250 3705 5170 3830
+rect 13200 3760 13210 5090
+rect 14220 3760 14230 5090
+rect 14460 4890 14950 4895
+rect 14460 4740 14470 4890
+rect 14940 4740 14950 4890
+rect 14460 4735 14950 4740
+rect 17540 4645 18510 7240
+rect 19200 7230 20770 7840
+rect 18630 5110 19610 5115
+rect 18630 4800 18640 5110
+rect 19600 4800 19610 5110
+rect 18630 4795 19610 4800
+rect 17520 4640 18510 4645
+rect 17520 4200 17530 4640
+rect 18500 4200 18510 4640
+rect 17520 4195 18510 4200
+rect 17540 4190 18510 4195
+rect 18640 4045 19600 4795
+rect 19700 4635 20670 7230
+rect 19690 4630 20680 4635
+rect 19690 4190 19700 4630
+rect 20670 4190 20680 4630
+rect 19690 4185 20680 4190
+rect 13200 3755 14230 3760
+rect 18630 4040 19610 4045
+rect 18630 3730 18640 4040
+rect 19600 3730 19610 4040
+rect 18630 3725 19610 3730
+rect 1250 3700 5180 3705
+rect 1250 3560 1820 3700
+rect 2040 3560 3130 3700
+rect 3320 3560 3830 3700
+rect 4020 3560 4980 3700
+rect 5170 3560 5180 3700
+rect 1810 3555 2050 3560
+rect 3120 3555 3330 3560
+rect 3820 3555 4030 3560
+rect 4970 3555 5180 3560
+rect 1800 3300 16900 3460
+rect 1800 3120 8770 3300
+rect 8760 1270 8770 3120
+rect 9460 3120 10510 3300
+rect 9460 1270 9470 3120
+rect 10500 1270 10510 3120
+rect 11200 3120 16900 3300
+rect 11200 1270 11210 3120
+rect 1880 1140 2050 1145
+rect 1880 1000 1890 1140
+rect 2040 1000 2050 1140
+rect 1880 995 2050 1000
+rect 19240 590 20780 600
+rect 130 360 20780 590
+rect 120 350 20780 360
+rect 120 -700 130 350
+rect 20750 345 20780 350
+rect 20750 340 20800 345
+rect 1680 -35 19240 -30
+rect 1680 -700 1690 -35
+rect 1810 -170 18640 -120
+rect 1810 -350 8770 -170
+rect 120 -705 1690 -700
+rect 8760 -2200 8770 -350
+rect 9460 -350 10510 -170
+rect 9460 -2200 9470 -350
+rect 10500 -2200 10510 -350
+rect 11200 -350 18640 -170
+rect 11200 -2200 11210 -350
+rect 19230 -700 19240 -35
+rect 20790 -700 20800 340
+rect 19230 -705 20800 -700
+rect 1870 -2310 2100 -2305
+rect 1870 -2510 1880 -2310
+rect 2090 -2510 2100 -2310
+rect 1870 -2515 2100 -2510
+rect 130 -2905 20790 -2860
+rect 120 -2910 20790 -2905
+rect 120 -3950 130 -2910
+rect 1680 -2935 20790 -2910
+rect 1680 -2940 20800 -2935
+rect 1680 -3110 19240 -2940
+rect 1680 -3495 19240 -3490
+rect 1680 -3950 1690 -3495
+rect 1810 -3820 8770 -3600
+rect 120 -3955 1690 -3950
+rect 8760 -5670 8770 -3820
+rect 9460 -3820 10490 -3600
+rect 9460 -5670 9470 -3820
+rect 10480 -5670 10490 -3820
+rect 11190 -3820 18640 -3600
+rect 11190 -5670 11200 -3820
+rect 19230 -3980 19240 -3495
+rect 20790 -3980 20800 -2940
+rect 19230 -3985 20800 -3980
+rect 1870 -5790 2050 -5785
+rect 120 -5930 1690 -5925
+rect 120 -6585 130 -5930
+rect 110 -6590 130 -6585
+rect 110 -6970 120 -6590
+rect 1680 -6350 1690 -5930
+rect 1870 -5960 1880 -5790
+rect 2040 -5960 2050 -5790
+rect 1870 -5965 2050 -5960
+rect 19230 -5940 20800 -5935
+rect 19230 -6350 19240 -5940
+rect 1680 -6590 19240 -6350
+rect 110 -6975 19240 -6970
+rect 19230 -6980 19240 -6975
+rect 20790 -6980 20800 -5940
+rect 19230 -6985 20800 -6980
+<< via3 >>
+rect 1280 19080 1720 20070
+rect 1720 19080 2200 20070
+rect 19240 19090 20460 20050
+rect 9910 17630 10920 18130
+rect 9910 16610 10920 16870
+rect 9400 15960 11920 16230
+rect 1280 14890 1720 15870
+rect 1720 14890 2200 15870
+rect 1280 14880 2200 14890
+rect 19240 14900 20460 15860
+rect 9910 13440 10920 13940
+rect 9910 12420 10920 12680
+rect 9400 11760 11920 12030
+rect 19240 11740 20460 12240
+rect 1290 10710 1720 11650
+rect 1720 10710 2200 11650
+rect 19230 10370 19600 11660
+rect 20360 10370 20760 11660
+rect 9910 9250 10920 9750
+rect 9910 8230 10920 8490
+rect 9400 7490 12130 7850
+rect 1350 7250 1940 7290
+rect 1350 7000 1450 7250
+rect 1450 7000 1680 7250
+rect 1680 7000 1940 7250
+rect 1350 6990 1940 7000
+rect 9430 6830 11980 7230
+rect 9430 6060 11980 6830
+rect 9430 5610 11980 6060
+rect 6790 4970 6800 5420
+rect 6800 4970 10010 5420
+rect 9340 4050 10530 4550
+rect 10530 4050 12130 4550
+rect 690 3710 1250 3830
+rect 690 3570 700 3710
+rect 700 3570 920 3710
+rect 920 3570 1250 3710
+rect 13210 3760 14220 5090
+rect 14470 4740 14940 4890
+rect 690 3560 1250 3570
+rect 8770 1270 9460 3300
+rect 10510 1270 11200 3300
+rect 1890 1000 2040 1130
+rect 130 -30 1680 350
+rect 130 -700 1680 -30
+rect 8770 -2200 9460 -170
+rect 10510 -2200 11200 -170
+rect 19240 -40 20790 340
+rect 19240 -700 20790 -40
+rect 1880 -2510 2090 -2310
+rect 130 -3950 1680 -2910
+rect 8770 -5670 9460 -3600
+rect 10490 -5670 11190 -3600
+rect 19240 -3980 20790 -2940
+rect 130 -6970 1680 -5930
+rect 1880 -5960 2040 -5790
+rect 19240 -6980 20790 -5940
+<< metal4 >>
+rect 1279 19080 1280 20071
+rect 2510 19090 2520 20090
+rect 2200 19080 2520 19090
+rect 1279 19079 2520 19080
+rect 1280 15871 2520 19079
+rect 19230 19090 19240 20090
+rect 9400 18130 11910 18140
+rect 9400 17630 9910 18130
+rect 10920 17630 11910 18130
+rect 9400 16870 11910 17630
+rect 9400 16610 9910 16870
+rect 10920 16610 11910 16870
+rect 9400 16231 11910 16610
+rect 9399 16230 11921 16231
+rect 9399 15960 9400 16230
+rect 11920 15960 12130 16230
+rect 9399 15959 12130 15960
+rect 1279 15870 2520 15871
+rect 1279 14880 1280 15870
+rect 2200 14880 2520 15870
+rect 1279 14879 2520 14880
+rect 1280 11650 2520 14879
+rect 9400 14820 12130 15959
+rect 19230 15860 20470 19090
+rect 19230 14900 19240 15860
+rect 20460 14900 20470 15860
+rect 9400 14400 11920 14820
+rect 9400 13940 12130 14400
+rect 9400 13440 9910 13940
+rect 10920 13440 12130 13940
+rect 9400 12680 12130 13440
+rect 9400 12420 9910 12680
+rect 10920 12420 12130 12680
+rect 9400 12031 12130 12420
+rect 9399 12030 12130 12031
+rect 9399 11760 9400 12030
+rect 11920 11760 12130 12030
+rect 9399 11759 12130 11760
+rect 1280 10710 1290 11650
+rect 2200 10710 2520 11650
+rect 1280 7480 2520 10710
+rect 9400 10680 12130 11759
+rect 19230 12240 20470 14900
+rect 19230 11740 19240 12240
+rect 20460 11740 20470 12240
+rect 19230 11661 20470 11740
+rect 19229 11660 20761 11661
+rect 9400 10080 11920 10680
+rect 19229 10370 19230 11660
+rect 19600 10370 20360 11660
+rect 20760 10370 20761 11660
+rect 19229 10369 20761 10370
+rect 19230 10190 20470 10369
+rect 9400 9750 12130 10080
+rect 9400 9250 9910 9750
+rect 10920 9250 12130 9750
+rect 9400 8490 12130 9250
+rect 9400 8230 9910 8490
+rect 10920 8230 12130 8490
+rect 9400 7851 12130 8230
+rect 9399 7850 12131 7851
+rect 9399 7490 9400 7850
+rect 12130 7490 12131 7850
+rect 9399 7489 12131 7490
+rect 1350 7291 1940 7480
+rect 1349 7290 1941 7291
+rect 1349 6990 1350 7290
+rect 1940 6990 1941 7290
+rect 1349 6989 1941 6990
+rect 9400 7230 12130 7489
+rect 9400 5610 9430 7230
+rect 11980 5610 12130 7230
+rect 9400 5560 12130 5610
+rect 6789 5420 10011 5421
+rect 6789 4970 6790 5420
+rect 10010 4970 10011 5420
+rect 6789 4969 10011 4970
+rect 13209 5090 14221 5091
+rect 9340 4551 12140 4570
+rect 9339 4550 12140 4551
+rect 9339 4050 9340 4550
+rect 12130 4050 12140 4550
+rect 9339 4049 12140 4050
+rect 689 3830 1251 3831
+rect 689 3560 690 3830
+rect 1250 3560 1251 3830
+rect 689 3559 1251 3560
+rect 690 3440 1250 3559
+rect 130 351 1680 3440
+rect 9340 3301 12140 4049
+rect 13209 3760 13210 5090
+rect 14220 3760 14221 5090
+rect 14470 4891 14940 5580
+rect 14469 4890 14941 4891
+rect 14469 4740 14470 4890
+rect 14940 4740 14941 4890
+rect 14469 4739 14941 4740
+rect 13209 3759 14221 3760
+rect 8769 3300 12140 3301
+rect 8769 1270 8770 3300
+rect 9460 1270 10510 3300
+rect 11200 1270 12140 3300
+rect 8769 1269 12140 1270
+rect 1880 1130 2050 1140
+rect 1880 1000 1890 1130
+rect 2040 1000 2050 1130
+rect 129 350 1681 351
+rect 129 -700 130 350
+rect 1680 -700 1681 350
+rect 129 -701 1681 -700
+rect 130 -2909 1680 -701
+rect 1880 -2309 2050 1000
+rect 9340 -169 12140 1269
+rect 19240 341 20790 3430
+rect 8769 -170 12140 -169
+rect 8769 -2200 8770 -170
+rect 9460 -2200 10510 -170
+rect 11200 -2200 12140 -170
+rect 19239 340 20791 341
+rect 19239 -700 19240 340
+rect 20790 -700 20791 340
+rect 19239 -701 20791 -700
+rect 8769 -2201 12140 -2200
+rect 1879 -2310 2091 -2309
+rect 1879 -2510 1880 -2310
+rect 2090 -2510 2091 -2310
+rect 1879 -2511 2091 -2510
+rect 129 -2910 1681 -2909
+rect 129 -3950 130 -2910
+rect 1680 -3950 1681 -2910
+rect 129 -3951 1681 -3950
+rect 130 -5190 1680 -3951
+rect 1650 -5929 1680 -5190
+rect 1880 -5789 2050 -2511
+rect 9340 -3599 12140 -2201
+rect 19240 -2939 20790 -701
+rect 8769 -3600 12140 -3599
+rect 8769 -5670 8770 -3600
+rect 9460 -5670 10490 -3600
+rect 11190 -5670 12140 -3600
+rect 19239 -2940 20791 -2939
+rect 19239 -3980 19240 -2940
+rect 20790 -3980 20791 -2940
+rect 19239 -3981 20791 -3980
+rect 8769 -5671 12140 -5670
+rect 1879 -5790 2050 -5789
+rect 1650 -5930 1681 -5929
+rect 1680 -6970 1681 -5930
+rect 1879 -5960 1880 -5790
+rect 2040 -5960 2050 -5790
+rect 1879 -5961 2041 -5960
+rect 9340 -6040 12140 -5671
+rect 19240 -5190 20790 -3981
+rect 19240 -5939 19260 -5190
+rect 19239 -5940 19260 -5939
+rect 129 -6971 1681 -6970
+rect 19239 -6980 19240 -5940
+rect 20790 -6980 20791 -5939
+rect 19239 -6981 20791 -6980
+<< via4 >>
+rect 1280 20070 2510 20090
+rect 1280 19090 2200 20070
+rect 2200 19090 2510 20070
+rect 19240 20050 20470 20090
+rect 19240 19090 20460 20050
+rect 20460 19090 20470 20050
+rect 6790 4970 10010 5420
+rect 13210 3760 14220 4570
+rect 120 -5930 1650 -5190
+rect 120 -6970 130 -5930
+rect 130 -6970 1650 -5930
+rect 19260 -5940 20790 -5190
+rect 19260 -6970 20790 -5940
+<< metal5 >>
+rect 1256 20100 2534 20114
+rect 19216 20100 20494 20114
+rect 1256 20090 20494 20100
+rect 1256 19090 1280 20090
+rect 2510 19430 19240 20090
+rect 2510 19090 2534 19430
+rect 1256 19066 2534 19090
+rect 19216 19090 19240 19430
+rect 20470 19090 20494 20090
+rect 19216 19066 20494 19090
+rect 1570 16080 2350 18340
+rect 1570 15500 18420 16080
+rect 1570 -5166 2350 15500
+rect 6766 5440 10034 5444
+rect 6766 5420 21080 5440
+rect 6766 4970 6790 5420
+rect 10010 4970 21080 5420
+rect 6766 4946 21080 4970
+rect 9850 4940 21080 4946
+rect 13210 4594 21080 4610
+rect 13186 4570 21080 4594
+rect 13186 3760 13210 4570
+rect 14220 4110 21080 4570
+rect 14220 3760 14244 4110
+rect 13186 3736 14244 3760
+rect 96 -5190 2350 -5166
+rect 96 -6970 120 -5190
+rect 1650 -5830 2350 -5190
+rect 19236 -5190 20814 -5166
+rect 19236 -5830 19260 -5190
+rect 1650 -6970 19260 -5830
+rect 20790 -6970 20814 -5190
+rect 96 -6980 20814 -6970
+rect 96 -6994 1674 -6980
+rect 19236 -6994 20814 -6980
+use lvds_currm_n  lvds_currm_n_0
+timestamp 1654683408
+transform 1 0 140 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_1
+timestamp 1654683408
+transform 1 0 1880 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_2
+timestamp 1654683408
+transform 1 0 3620 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_3
+timestamp 1654683408
+transform 1 0 5360 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_4
+timestamp 1654683408
+transform 1 0 7100 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_5
+timestamp 1654683408
+transform 1 0 14060 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_6
+timestamp 1654683408
+transform 1 0 12320 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_7
+timestamp 1654683408
+transform 1 0 10580 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_8
+timestamp 1654683408
+transform 1 0 8840 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_9
+timestamp 1654683408
+transform 1 0 19280 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_10
+timestamp 1654683408
+transform 1 0 17540 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_11
+timestamp 1654683408
+transform 1 0 15800 0 1 600
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_12
+timestamp 1654683408
+transform 1 0 3620 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_13
+timestamp 1654683408
+transform 1 0 1880 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_14
+timestamp 1654683408
+transform 1 0 5360 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_15
+timestamp 1654683408
+transform 1 0 7100 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_16
+timestamp 1654683408
+transform 1 0 8840 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_17
+timestamp 1654683408
+transform 1 0 10580 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_18
+timestamp 1654683408
+transform 1 0 12320 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_19
+timestamp 1654683408
+transform 1 0 14060 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_20
+timestamp 1654683408
+transform 1 0 15800 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_21
+timestamp 1654683408
+transform 1 0 17540 0 1 -2870
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_22
+timestamp 1654683408
+transform 1 0 3620 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_23
+timestamp 1654683408
+transform 1 0 1880 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_24
+timestamp 1654683408
+transform 1 0 5360 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_25
+timestamp 1654683408
+transform 1 0 7100 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_26
+timestamp 1654683408
+transform 1 0 8840 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_27
+timestamp 1654683408
+transform 1 0 10580 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_28
+timestamp 1654683408
+transform 1 0 12320 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_29
+timestamp 1654683408
+transform 1 0 14060 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_30
+timestamp 1654683408
+transform 1 0 15800 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_n  lvds_currm_n_31
+timestamp 1654683408
+transform 1 0 17540 0 1 -6340
+box -150 -600 1600 2884
+use lvds_currm_p  lvds_currm_p_0
+timestamp 1654683408
+transform 1 0 3540 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_1
+timestamp 1654683408
+transform 1 0 1800 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_2
+timestamp 1654683408
+transform 1 0 5280 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_3
+timestamp 1654683408
+transform 1 0 7020 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_4
+timestamp 1654683408
+transform 1 0 8760 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_5
+timestamp 1654683408
+transform 1 0 17460 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_6
+timestamp 1654683408
+transform 1 0 15720 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_7
+timestamp 1654683408
+transform 1 0 13980 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_8
+timestamp 1654683408
+transform 1 0 12240 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_9
+timestamp 1654683408
+transform 1 0 10500 0 1 7500
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_10
+timestamp 1654683408
+transform 1 0 3540 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_11
+timestamp 1654683408
+transform 1 0 1800 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_12
+timestamp 1654683408
+transform 1 0 5280 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_13
+timestamp 1654683408
+transform 1 0 7020 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_14
+timestamp 1654683408
+transform 1 0 8760 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_15
+timestamp 1654683408
+transform 1 0 10500 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_16
+timestamp 1654683408
+transform 1 0 12240 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_17
+timestamp 1654683408
+transform 1 0 13980 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_18
+timestamp 1654683408
+transform 1 0 15720 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_19
+timestamp 1654683408
+transform 1 0 17460 0 1 11690
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_20
+timestamp 1654683408
+transform 1 0 3540 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_21
+timestamp 1654683408
+transform 1 0 1800 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_22
+timestamp 1654683408
+transform 1 0 5280 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_23
+timestamp 1654683408
+transform 1 0 7020 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_24
+timestamp 1654683408
+transform 1 0 8760 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_25
+timestamp 1654683408
+transform 1 0 10500 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_26
+timestamp 1654683408
+transform 1 0 12240 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_27
+timestamp 1654683408
+transform 1 0 13980 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_28
+timestamp 1654683408
+transform 1 0 15720 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_29
+timestamp 1654683408
+transform 1 0 17460 0 1 15880
+box -70 -10 1680 4194
+use lvds_currm_p  lvds_currm_p_30
+timestamp 1654683408
+transform 1 0 19200 0 1 7500
+box -70 -10 1680 4194
+use lvds_diffamp  lvds_diffamp_0
+timestamp 1654683408
+transform 1 0 17450 0 1 3750
+box -60 -50 1690 1388
+use lvds_diffamp  lvds_diffamp_1
+timestamp 1654683408
+transform 1 0 19190 0 1 3750
+box -60 -50 1690 1388
+use lvds_nswitch  lvds_nswitch_0
+timestamp 1654683408
+transform 1 0 6720 0 1 3690
+box -100 -100 2634 1338
+use lvds_nswitch  lvds_nswitch_1
+timestamp 1654683408
+transform 1 0 10500 0 1 3690
+box -100 -100 2634 1338
+use lvds_switch_p  lvds_switch_p_0
+timestamp 1654683408
+transform 1 0 6572 0 1 5076
+box 48 -6 3262 2104
+use lvds_switch_p  lvds_switch_p_1
+timestamp 1654683408
+transform 1 0 10352 0 1 5076
+box 48 -6 3262 2104
+use sky130_fd_pr__cap_mim_m3_1_N3PKNJ  sky130_fd_pr__cap_mim_m3_1_N3PKNJ_0
+timestamp 1654683408
+transform -1 0 15679 0 -1 6300
+box -3150 -1100 3149 1100
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0
+timestamp 1654683408
+transform 0 -1 5991 1 0 16351
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1654683408
+transform 0 -1 15641 1 0 16351
+box -3351 -3101 3373 3101
+use sky130_fd_pr__res_xhigh_po_0p35_RS2YEK  sky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0
+timestamp 1654683408
+transform 1 0 16469 0 1 5188
+box -519 -1598 519 1598
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL  sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0
+timestamp 1654683408
+transform 1 0 13990 0 1 5188
+box -360 -1598 360 1598
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL  sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1
+timestamp 1654683408
+transform 1 0 14700 0 1 5188
+box -360 -1598 360 1598
+use sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL  sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2
+timestamp 1654683408
+transform 1 0 15600 0 1 5188
+box -360 -1598 360 1598
+use sky130_fd_sc_hs__inv_4  sky130_fd_sc_hs__inv_4_0
+timestamp 1649384327
+transform 1 0 688 0 1 3659
+box -38 -49 518 715
+use sky130_fd_sc_hs__inv_4  sky130_fd_sc_hs__inv_4_1
+timestamp 1649384327
+transform 1 0 698 0 1 5489
+box -38 -49 518 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_0
+timestamp 1649384327
+transform 1 0 1248 0 1 3659
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_1
+timestamp 1649384327
+transform 1 0 2948 0 1 3659
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_2
+timestamp 1649384327
+transform 1 0 4648 0 1 3659
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_3
+timestamp 1649384327
+transform 1 0 2958 0 1 4529
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_4
+timestamp 1649384327
+transform 1 0 4658 0 1 4529
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_5
+timestamp 1649384327
+transform 1 0 4678 0 1 6359
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_6
+timestamp 1649384327
+transform 1 0 4668 0 1 5489
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_7
+timestamp 1649384327
+transform 1 0 2978 0 1 6359
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_8
+timestamp 1649384327
+transform 1 0 1268 0 1 5489
+box -38 -49 1670 715
+use sky130_fd_sc_hs__inv_16  sky130_fd_sc_hs__inv_16_9
+timestamp 1649384327
+transform 1 0 2968 0 1 5489
+box -38 -49 1670 715
+<< labels >>
+rlabel metal5 1360 19290 1670 19720 1 VP
+rlabel metal5 380 -6870 690 -6440 1 VN
+rlabel metal1 510 3930 610 4010 1 In
+rlabel metal5 20910 4160 21040 4580 1 OutP
+rlabel metal5 20910 4960 21040 5380 1 OutN
+rlabel metal4 10230 7330 10690 7430 1 vm6d
+rlabel metal4 9890 3670 10350 3770 1 vm1d
+rlabel metal1 6480 4080 6610 4230 1 vm2g
+rlabel metal1 10210 4590 10340 4740 1 vm5g
+rlabel metal1 17120 4750 17220 4830 1 vm20g
+rlabel metal2 1130 4640 1230 4760 1 vx9y
+rlabel metal1 1280 5780 1340 5810 1 vx14y
+rlabel metal1 2890 5730 2990 5790 1 vx1y
+rlabel metal1 2880 3870 2930 3960 1 vx6y
+<< end >>
diff --git a/mag/lvds/transmitter.spice b/mag/lvds/transmitter.spice
new file mode 100644
index 0000000..4164fd4
--- /dev/null
+++ b/mag/lvds/transmitter.spice
@@ -0,0 +1,673 @@
+* SPICE3 file created from transmitter.ext - technology: sky130B
+
+.subckt sky130_fd_pr__nfet_01v8_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X6 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X7 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X10 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X11 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_XZXALN a_n129_727# a_n129_109# a_n369_21# a_n177_n1215#
++ a_n605_n1127# a_n465_n597# a_255_n509# a_n561_n1215# a_n707_n1301# a_495_n705# a_n273_639#
++ a_15_1149# a_399_21# a_n561_1149# a_447_727# a_n81_531# a_447_109# a_399_n1215#
++ a_n177_1149# a_351_n509# a_n417_n509# a_n177_n87# a_n321_727# a_n321_109# a_111_n597#
++ a_63_n1127# a_n273_531# a_n273_n597# a_n513_n509# a_n33_n1127# a_n129_n509# a_159_727#
++ a_159_109# a_303_n705# a_63_n509# a_n417_n1127# a_n129_n1127# a_n465_639# a_n513_n1127#
++ a_n225_n1127# a_n321_n1127# a_n369_n87# a_n225_n509# a_n465_n705# a_n513_727# a_n513_109#
++ a_n465_531# a_159_n1127# a_447_n1127# a_255_n1127# a_543_n1127# a_351_n1127# a_351_727#
++ a_351_109# a_n321_n509# a_n33_727# a_n33_109# a_399_1149# a_n81_n597# a_111_n705#
++ a_n561_n87# a_n225_727# a_n225_109# a_495_639# a_n273_n705# a_15_n1215# a_111_639#
++ a_n561_21# a_n177_21# a_n33_n509# a_495_n597# a_207_21# a_399_n87# a_543_727# a_543_109#
++ a_495_531# a_111_531# a_n605_n509# a_63_727# a_63_109# a_447_n509# a_15_n87# a_207_1149#
++ a_n605_727# a_15_21# a_n605_109# a_n417_727# a_n417_109# a_303_639# a_207_n1215#
++ a_n369_1149# a_255_727# a_255_109# a_543_n509# a_159_n509# a_n81_n705# a_207_n87#
++ a_303_n597# a_303_531# a_n81_639# a_n369_n1215#
+X0 a_n129_n509# a_n177_n87# a_n225_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n1127# a_n369_n1215# a_n417_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n417_n509# a_n465_n597# a_n513_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n33_727# a_n81_639# a_n129_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_351_727# a_303_639# a_255_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_159_727# a_111_639# a_63_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_255_727# a_207_1149# a_159_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_447_727# a_399_1149# a_351_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X8 a_543_727# a_495_639# a_447_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_63_n1127# a_15_n1215# a_n33_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_159_n1127# a_111_n705# a_63_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n33_109# a_n81_531# a_n129_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n33_n509# a_n81_n597# a_n129_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_351_n509# a_303_n597# a_255_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n321_727# a_n369_1149# a_n417_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X15 a_255_n1127# a_207_n1215# a_159_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_n513_727# a_n561_1149# a_n605_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X17 a_n417_727# a_n465_639# a_n513_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n225_727# a_n273_639# a_n321_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n129_727# a_n177_1149# a_n225_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 a_255_109# a_207_21# a_159_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X21 a_351_109# a_303_531# a_255_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X22 a_543_109# a_495_531# a_447_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_n417_n1127# a_n465_n705# a_n513_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X24 a_159_109# a_111_531# a_63_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_447_109# a_399_21# a_351_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 a_n513_n1127# a_n561_n1215# a_n605_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X27 a_351_n1127# a_303_n705# a_255_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_n513_109# a_n561_21# a_n605_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X29 a_n321_109# a_n369_21# a_n417_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X30 a_n225_109# a_n273_531# a_n321_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_n417_109# a_n465_531# a_n513_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 a_n129_109# a_n177_21# a_n225_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_255_n509# a_207_n87# a_159_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_n321_n509# a_n369_n87# a_n417_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X35 a_63_727# a_15_1149# a_n33_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_543_n509# a_495_n597# a_447_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X37 a_n33_n1127# a_n81_n705# a_n129_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X38 a_63_109# a_15_21# a_n33_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 a_159_n509# a_111_n597# a_63_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_n225_n509# a_n273_n597# a_n321_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 a_447_n509# a_399_n87# a_351_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n129_n1127# a_n177_n1215# a_n225_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X43 a_447_n1127# a_399_n1215# a_351_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n513_n509# a_n561_n87# a_n605_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X45 a_63_n509# a_15_n87# a_n33_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_n225_n1127# a_n273_n705# a_n321_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_543_n1127# a_495_n705# a_447_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_currm_n m1_76_644# m1_n20_420# a_42_42# VSUBS
+Xsky130_fd_pr__nfet_01v8_HR8DH9_0 a_42_42# a_42_42# VSUBS a_42_42# m1_n20_420# a_42_42#
++ VSUBS m1_n20_420# a_42_42# VSUBS VSUBS VSUBS m1_n20_420# a_42_42# m1_n20_420# a_42_42#
++ VSUBS m1_n20_420# VSUBS a_42_42# a_42_42# VSUBS a_42_42# a_42_42# m1_n20_420# a_42_42#
++ sky130_fd_pr__nfet_01v8_HR8DH9
+Xsky130_fd_pr__nfet_01v8_XZXALN_0 m1_76_644# m1_76_644# a_42_42# a_42_42# m1_n20_420#
++ a_42_42# m1_76_644# a_42_42# VSUBS a_42_42# a_42_42# a_42_42# a_42_42# a_42_42#
++ m1_76_644# a_42_42# m1_76_644# a_42_42# a_42_42# m1_n20_420# m1_n20_420# a_42_42#
++ m1_76_644# m1_76_644# a_42_42# m1_76_644# a_42_42# a_42_42# m1_76_644# m1_n20_420#
++ m1_76_644# m1_n20_420# m1_n20_420# a_42_42# m1_76_644# m1_n20_420# m1_76_644# a_42_42#
++ m1_76_644# m1_n20_420# m1_76_644# a_42_42# m1_n20_420# a_42_42# m1_76_644# m1_76_644#
++ a_42_42# m1_n20_420# m1_76_644# m1_76_644# m1_n20_420# m1_n20_420# m1_n20_420# m1_n20_420#
++ m1_76_644# m1_n20_420# m1_n20_420# a_42_42# a_42_42# a_42_42# a_42_42# m1_n20_420#
++ m1_n20_420# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# m1_n20_420# a_42_42#
++ a_42_42# a_42_42# m1_n20_420# m1_n20_420# a_42_42# a_42_42# m1_n20_420# m1_76_644#
++ m1_76_644# m1_76_644# a_42_42# a_42_42# m1_n20_420# a_42_42# m1_n20_420# m1_n20_420#
++ m1_n20_420# a_42_42# a_42_42# a_42_42# m1_76_644# m1_76_644# m1_n20_420# m1_n20_420#
++ a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# sky130_fd_pr__nfet_01v8_XZXALN
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL a_n194_n1432# a_n324_n1562# a_n194_1000#
++ a_124_n1432# a_124_1000#
+X0 a_124_n1432# a_124_1000# a_n324_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_n194_n1432# a_n194_1000# a_n324_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_sc_hs__inv_16 A VGND VPWR Y VNB VPB
+X0 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=2.7216e+12p pd=2.278e+07u as=3.4272e+12p ps=2.628e+07u w=1.12e+06u l=150000u
+X1 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X2 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X3 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X4 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=1.6576e+12p pd=1.632e+07u as=2.2718e+12p ps=1.946e+07u w=740000u l=150000u
+X5 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X6 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X7 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X8 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X9 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X10 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X11 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X12 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X13 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X14 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X15 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X16 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X17 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X18 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X19 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X20 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X21 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X22 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X23 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X24 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X25 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X26 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X27 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X28 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X29 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X30 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X31 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_RS2YEK a_283_1000# a_n353_n1432# a_n35_n1432#
++ a_n35_1000# a_n483_n1562# a_n353_1000# a_283_n1432#
+X0 a_n353_n1432# a_n353_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_283_n1432# a_283_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X2 a_n35_n1432# a_n35_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_8DK6RJ a_n321_n518# a_255_n1154# a_543_n1154# a_n369_21#
++ a_n33_118# a_351_754# a_351_n1154# a_n81_657# a_n33_754# a_495_n723# a_n369_n1251#
++ a_n177_n1251# a_n561_n1251# a_399_21# a_n225_118# w_n743_n1373# a_n273_657# a_n225_754#
++ a_n177_n87# a_15_1185# a_n33_n518# a_n561_1185# a_303_n615# a_n177_1185# a_399_n1251#
++ a_n465_549# a_543_118# a_543_754# a_n465_n615# a_n605_n518# a_63_118# a_447_n518#
++ a_63_754# a_n605_118# a_n417_118# a_303_n723# a_n465_657# a_n605_754# a_n417_754#
++ a_n369_n87# a_255_118# a_543_n518# a_159_n518# a_n465_n723# a_111_n615# a_255_754#
++ a_495_549# a_111_549# a_n273_n615# a_n129_118# a_255_n518# a_n129_754# a_n561_n87#
++ a_n605_n1154# a_111_n723# a_399_1185# a_n561_21# a_447_118# a_n177_21# a_495_657#
++ a_351_n518# a_n417_n518# a_111_657# a_447_754# a_n273_n723# a_207_21# a_399_n87#
++ a_15_n1251# a_n321_118# a_n321_754# a_303_549# a_63_n1154# a_n513_n518# a_n129_n518#
++ a_n81_n615# a_15_n87# a_15_21# a_n33_n1154# a_159_118# a_63_n518# a_159_754# a_207_1185#
++ a_n417_n1154# a_n129_n1154# a_n513_n1154# a_n225_n1154# a_n81_549# a_303_657# a_n321_n1154#
++ a_n225_n518# a_495_n615# a_n513_118# a_207_n87# a_n81_n723# a_n513_754# a_207_n1251#
++ a_n369_1185# a_n273_549# a_159_n1154# a_447_n1154# a_351_118#
+X0 a_447_n518# a_399_n87# a_351_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n513_n518# a_n561_n87# a_n605_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X2 a_63_n518# a_15_n87# a_n33_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n33_754# a_n81_657# a_n129_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_351_754# a_303_657# a_255_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_159_754# a_111_657# a_63_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_255_754# a_207_1185# a_159_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_447_754# a_399_1185# a_351_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X8 a_543_754# a_495_657# a_447_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_63_n1154# a_15_n1251# a_n33_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_159_n1154# a_111_n723# a_63_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n129_n518# a_n177_n87# a_n225_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n513_754# a_n561_1185# a_n605_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X13 a_n321_754# a_n369_1185# a_n417_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n225_754# a_n273_657# a_n321_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_255_n1154# a_207_n1251# a_159_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_n417_754# a_n465_657# a_n513_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 a_n129_754# a_n177_1185# a_n225_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n417_n518# a_n465_n615# a_n513_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n417_n1154# a_n465_n723# a_n513_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_351_n1154# a_303_n723# a_255_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X21 a_n513_n1154# a_n561_n1251# a_n605_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X22 a_63_754# a_15_1185# a_n33_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 a_n33_n518# a_n81_n615# a_n129_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 a_351_n518# a_303_n615# a_255_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_n33_118# a_n81_549# a_n129_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X26 a_351_118# a_303_549# a_255_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_159_118# a_111_549# a_63_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X28 a_255_118# a_207_21# a_159_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 a_447_118# a_399_21# a_351_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_543_118# a_495_549# a_447_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_n33_n1154# a_n81_n723# a_n129_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X32 a_n513_118# a_n561_21# a_n605_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X33 a_n321_118# a_n369_21# a_n417_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_n225_118# a_n273_549# a_n321_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X35 a_n417_118# a_n465_549# a_n513_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_n129_118# a_n177_21# a_n225_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 a_255_n518# a_207_n87# a_159_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X38 a_n129_n1154# a_n177_n1251# a_n225_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X39 a_447_n1154# a_399_n1251# a_351_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X40 a_n321_n518# a_n369_n87# a_n417_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X41 a_543_n518# a_495_n615# a_447_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n225_n1154# a_n273_n723# a_n321_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X43 a_543_n1154# a_495_n723# a_447_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n321_n1154# a_n369_n1251# a_n417_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 a_63_118# a_15_21# a_n33_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_159_n518# a_111_n615# a_63_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_n225_n518# a_n273_n615# a_n321_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_9Z5L4S a_n383_n518# a_498_n615# a_380_21# a_n92_21#
++ a_n737_n518# a_325_118# a_443_n518# a_n265_n518# a_89_118# a_n619_n518# a_26_n615#
++ a_n265_118# a_n501_118# a_679_n518# a_325_n518# a_n682_n615# a_n147_n518# a_443_118#
++ a_26_21# a_207_n518# a_n210_n615# a_n564_n615# a_n328_21# a_n383_118# a_n446_21#
++ a_n29_n518# a_n564_21# a_n619_118# a_n682_21# a_380_n615# a_n92_n615# a_89_n518#
++ a_n446_n615# a_561_118# a_n210_21# a_262_n615# a_n328_n615# a_n29_118# a_616_21#
++ a_498_21# a_207_118# a_n737_118# a_n501_n518# a_616_n615# w_n875_n737# a_144_21#
++ a_561_n518# a_144_n615# a_679_118# a_n147_118# a_262_21#
+X0 a_n383_118# a_n446_21# a_n501_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_679_n518# a_616_n615# a_561_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n29_118# a_n92_21# a_n147_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_n265_118# a_n328_21# a_n383_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X4 a_443_n518# a_380_n615# a_325_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_89_118# a_26_21# a_n29_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X6 a_n383_n518# a_n446_n615# a_n501_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_n147_118# a_n210_21# a_n265_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X8 a_679_118# a_616_21# a_561_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_443_118# a_380_21# a_325_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X10 a_n619_n518# a_n682_n615# a_n737_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n518# a_n92_n615# a_n147_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_561_118# a_498_21# a_443_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X13 a_325_n518# a_262_n615# a_207_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X14 a_325_118# a_262_21# a_207_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X15 a_561_n518# a_498_n615# a_443_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X16 a_n265_n518# a_n328_n615# a_n383_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n619_118# a_n682_21# a_n737_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X18 a_207_118# a_144_21# a_89_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n501_118# a_n564_21# a_n619_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X20 a_89_n518# a_26_n615# a_n29_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X21 a_207_n518# a_144_n615# a_89_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X22 a_n501_n518# a_n564_n615# a_n619_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X23 a_n147_n518# a_n210_n615# a_n265_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt lvds_currm_p a_112_112# m1_60_208# m1_60_1070# w_112_640#
+Xsky130_fd_pr__pfet_01v8_8DK6RJ_0 m1_60_208# m1_60_1070# m1_60_208# a_112_112# m1_60_1070#
++ m1_60_1070# m1_60_208# a_112_112# m1_60_1070# a_112_112# a_112_112# a_112_112# a_112_112#
++ a_112_112# m1_60_1070# w_112_640# a_112_112# m1_60_1070# a_112_112# a_112_112# m1_60_1070#
++ a_112_112# a_112_112# a_112_112# a_112_112# a_112_112# m1_60_1070# m1_60_1070# a_112_112#
++ m1_60_1070# m1_60_208# m1_60_208# m1_60_208# m1_60_1070# m1_60_1070# a_112_112#
++ a_112_112# m1_60_1070# m1_60_1070# a_112_112# m1_60_208# m1_60_1070# m1_60_1070#
++ a_112_112# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112# m1_60_208# m1_60_208#
++ m1_60_208# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112# m1_60_208# a_112_112#
++ a_112_112# m1_60_1070# m1_60_1070# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112#
++ a_112_112# m1_60_208# m1_60_208# a_112_112# m1_60_1070# m1_60_208# m1_60_208# a_112_112#
++ a_112_112# a_112_112# m1_60_208# m1_60_1070# m1_60_208# m1_60_1070# a_112_112# m1_60_208#
++ m1_60_1070# m1_60_1070# m1_60_208# a_112_112# a_112_112# m1_60_1070# m1_60_1070#
++ a_112_112# m1_60_208# a_112_112# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112#
++ m1_60_208# m1_60_1070# m1_60_1070# sky130_fd_pr__pfet_01v8_8DK6RJ
+Xsky130_fd_pr__pfet_01v8_9Z5L4S_0 w_112_640# a_112_112# a_112_112# a_112_112# m1_60_1070#
++ w_112_640# m1_60_1070# m1_60_1070# w_112_640# w_112_640# a_112_112# m1_60_1070#
++ m1_60_1070# m1_60_1070# w_112_640# a_112_112# w_112_640# m1_60_1070# a_112_112#
++ m1_60_1070# a_112_112# a_112_112# a_112_112# w_112_640# a_112_112# m1_60_1070# a_112_112#
++ w_112_640# a_112_112# a_112_112# a_112_112# w_112_640# a_112_112# w_112_640# a_112_112#
++ a_112_112# a_112_112# m1_60_1070# a_112_112# a_112_112# m1_60_1070# m1_60_1070#
++ m1_60_1070# a_112_112# w_112_640# a_112_112# w_112_640# a_112_112# m1_60_1070# w_112_640#
++ a_112_112# sky130_fd_pr__pfet_01v8_9Z5L4S
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_VCB4SW a_351_436# a_n81_339# a_n513_n200# a_n321_n836#
++ a_n1329_n297# a_n753_867# a_n33_436# a_n129_n200# a_n945_n405# a_n657_n933# a_831_436#
++ a_15_867# a_639_n836# a_1311_436# a_63_n200# a_1215_n200# a_1023_n836# a_n1041_231#
++ a_879_339# a_n1281_n836# a_1167_n297# a_n1089_n200# a_591_867# a_n273_339# a_n225_436#
++ a_15_n297# a_n81_231# a_n225_n200# a_n1089_436# a_n561_n297# a_591_n405# a_n177_n297#
++ a_n705_436# a_207_867# a_927_n200# a_1311_n200# a_n33_n836# a_735_n836# a_n1233_339#
++ a_303_n933# a_879_231# a_n1185_n200# a_207_n405# a_1359_n405# a_n273_231# a_543_436#
++ a_n1469_n836# a_1071_339# a_n945_867# a_1023_436# a_n321_n200# a_n897_n836# a_n1137_n297#
++ a_n753_n405# a_n465_n933# a_n369_n405# a_831_n836# a_n1233_231# a_63_436# a_975_n297#
++ a_639_n200# a_1023_n200# a_447_n836# a_783_867# a_n1281_n200# a_n1281_436# a_n465_339#
++ a_n417_436# a_1071_231# a_n1469_436# a_n993_n836# a_n1425_n933# a_n1329_n405# a_n177_867#
++ a_n1425_339# a_255_436# a_n33_n200# a_735_n200# a_543_n836# a_n609_n836# a_159_n836#
++ a_111_n933# a_879_n933# a_1263_n933# a_n465_231# a_1167_n405# a_735_436# a_1263_339#
++ a_n1469_n200# a_n1137_867# a_1215_436# a_n897_n200# a_15_n405# a_n993_436# a_n561_n405#
++ a_n273_n933# a_n177_n405# a_n1425_231# a_831_n200# a_n129_436# a_n705_n836# a_975_867#
++ a_783_n297# a_447_n200# a_255_n836# a_399_n297# a_n657_339# a_n609_436# a_1263_231#
++ a_1407_n836# a_n993_n200# a_n1233_n933# a_n369_867# a_n1137_n405# a_495_339# a_447_436#
++ a_111_339# a_543_n200# a_n801_n836# a_351_n836# a_n609_n200# a_n417_n836# a_159_n200#
++ a_975_n405# a_n945_n297# a_n657_231# a_687_n933# a_927_436# a_1071_n933# a_n1329_867#
++ a_1407_436# a_n321_436# a_1119_n836# a_n1377_n836# a_n1185_436# a_495_231# a_n801_436#
++ a_1167_867# a_111_231# a_n849_339# a_n705_n200# a_255_n200# a_n513_n836# a_n129_n836#
++ a_591_n297# a_n81_n933# a_n561_867# a_n849_n933# a_1407_n200# a_1215_n836# a_159_436#
++ a_63_n836# a_207_n297# a_1359_n297# w_n1607_n1055# a_n1089_n836# a_687_339# a_n1041_n933#
++ a_639_436# a_303_339# a_n801_n200# a_1119_436# a_351_n200# a_n849_231# a_n417_n200#
++ a_n225_n836# a_n753_n297# a_783_n405# a_n897_436# a_399_867# a_495_n933# a_n369_n297#
++ a_399_n405# a_n513_436# a_927_n836# a_1311_n836# a_1119_n200# a_n1377_436# a_n1041_339#
++ a_n1377_n200# a_n1185_n836# a_687_231# a_1359_867# a_303_231#
+X0 a_n1281_n200# a_n1329_n297# a_n1377_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n609_n200# a_n657_231# a_n705_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n417_n836# a_n465_n933# a_n513_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_927_n200# a_879_231# a_831_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_639_n836# a_591_n405# a_543_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_927_436# a_879_339# a_831_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_1023_436# a_975_867# a_927_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_n897_n200# a_n945_n297# a_n993_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n705_n836# a_n753_n405# a_n801_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X9 a_255_n200# a_207_n297# a_159_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_1215_n200# a_1167_n297# a_1119_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X11 a_1119_436# a_1071_339# a_1023_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X12 a_1215_436# a_1167_867# a_1119_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_1311_436# a_1263_339# a_1215_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_1407_436# a_1359_867# a_1311_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n321_n200# a_n369_n297# a_n417_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X16 a_1023_n836# a_975_n405# a_927_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_n1185_n200# a_n1233_231# a_n1281_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X18 a_543_n200# a_495_231# a_447_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X19 a_1311_n836# a_1263_n933# a_1215_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_n993_n836# a_n1041_n933# a_n1089_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X21 a_n33_n836# a_n81_n933# a_n129_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X22 a_351_n836# a_303_n933# a_255_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_n33_436# a_n81_339# a_n129_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X24 a_351_436# a_303_339# a_255_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_831_n200# a_783_n297# a_735_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X26 a_159_436# a_111_339# a_63_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_255_436# a_207_867# a_159_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 a_447_436# a_399_867# a_351_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X29 a_543_436# a_495_339# a_447_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_639_436# a_591_867# a_543_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_735_436# a_687_339# a_639_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X32 a_831_436# a_783_867# a_735_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_159_n200# a_111_231# a_63_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_1119_n200# a_1071_231# a_1023_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X35 a_n1281_n836# a_n1329_n405# a_n1377_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X36 a_n609_n836# a_n657_n933# a_n705_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X37 a_n1377_436# a_n1425_339# a_n1469_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X38 a_n1281_436# a_n1329_867# a_n1377_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X39 a_n1185_436# a_n1233_339# a_n1281_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X40 a_n1089_436# a_n1137_867# a_n1185_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X41 a_n993_436# a_n1041_339# a_n1089_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n225_n200# a_n273_231# a_n321_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X43 a_n897_n836# a_n945_n405# a_n993_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_927_n836# a_879_n933# a_831_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X45 a_n801_436# a_n849_339# a_n897_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X46 a_n513_436# a_n561_867# a_n609_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X47 a_n321_436# a_n369_867# a_n417_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X48 a_n225_436# a_n273_339# a_n321_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X49 a_n1089_n200# a_n1137_n297# a_n1185_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X50 a_447_n200# a_399_n297# a_351_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X51 a_1407_n200# a_1359_n297# a_1311_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X52 a_1215_n836# a_1167_n405# a_1119_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X53 a_n897_436# a_n945_867# a_n993_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 a_n705_436# a_n753_867# a_n801_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X55 a_n609_436# a_n657_339# a_n705_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 a_n417_436# a_n465_339# a_n513_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 a_n129_436# a_n177_867# a_n225_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 a_255_n836# a_207_n405# a_159_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X59 a_n513_n200# a_n561_n297# a_n609_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X60 a_63_n200# a_15_n297# a_n33_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X61 a_n321_n836# a_n369_n405# a_n417_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X62 a_n1377_n200# a_n1425_231# a_n1469_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X63 a_735_n200# a_687_231# a_639_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X64 a_543_n836# a_495_n933# a_447_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X65 a_n801_n200# a_n849_231# a_n897_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X66 a_n1185_n836# a_n1233_n933# a_n1281_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X67 a_n129_n200# a_n177_n297# a_n225_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X68 a_831_n836# a_783_n405# a_735_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X69 a_1119_n836# a_1071_n933# a_1023_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 a_63_436# a_15_867# a_n33_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 a_159_n836# a_111_n933# a_63_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X72 a_n417_n200# a_n465_231# a_n513_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 a_n225_n836# a_n273_n933# a_n321_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X74 a_639_n200# a_591_n297# a_543_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 a_447_n836# a_399_n405# a_351_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 a_1407_n836# a_1359_n405# a_1311_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X77 a_n705_n200# a_n753_n297# a_n801_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 a_n1089_n836# a_n1137_n405# a_n1185_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 a_n513_n836# a_n561_n405# a_n609_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 a_63_n836# a_15_n405# a_n33_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 a_1023_n200# a_975_n297# a_927_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 a_n1377_n836# a_n1425_n933# a_n1469_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X83 a_735_n836# a_687_n933# a_639_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 a_n801_n836# a_n849_n933# a_n897_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 a_351_n200# a_303_231# a_255_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 a_1311_n200# a_1263_231# a_1215_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 a_n993_n200# a_n1041_231# a_n1089_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 a_n33_n200# a_n81_231# a_n129_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 a_n129_n836# a_n177_n405# a_n225_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_switch_p m1_178_212# m1_274_438# m1_178_1074# m1_274_848# m1_178_1484#
++ a_230_644# m1_274_1710# w_230_752#
+Xsky130_fd_pr__pfet_01v8_VCB4SW_0 m1_274_1710# a_230_644# m1_178_1074# m1_178_212#
++ a_230_644# a_230_644# m1_274_1710# m1_178_1074# a_230_644# a_230_644# m1_178_1484#
++ a_230_644# m1_178_212# m1_274_1710# m1_178_1074# m1_178_1074# m1_178_212# a_230_644#
++ a_230_644# m1_178_212# a_230_644# m1_178_1074# a_230_644# a_230_644# m1_274_1710#
++ a_230_644# a_230_644# m1_274_848# m1_178_1484# a_230_644# a_230_644# a_230_644#
++ m1_178_1484# a_230_644# m1_274_848# m1_274_848# m1_274_438# m1_274_438# a_230_644#
++ a_230_644# a_230_644# m1_274_848# a_230_644# a_230_644# a_230_644# m1_274_1710#
++ m1_178_212# a_230_644# a_230_644# m1_178_1484# m1_178_1074# m1_178_212# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_178_212# a_230_644# m1_178_1484# a_230_644#
++ m1_178_1074# m1_178_1074# m1_178_212# a_230_644# m1_178_1074# m1_178_1484# a_230_644#
++ m1_274_1710# a_230_644# m1_178_1484# m1_274_438# a_230_644# a_230_644# a_230_644#
++ a_230_644# m1_178_1484# m1_274_848# m1_274_848# m1_274_438# m1_274_438# m1_274_438#
++ a_230_644# a_230_644# a_230_644# a_230_644# a_230_644# m1_274_1710# a_230_644# m1_178_1074#
++ a_230_644# m1_178_1484# m1_178_1074# a_230_644# m1_274_1710# a_230_644# a_230_644#
++ a_230_644# a_230_644# m1_178_1074# m1_178_1484# m1_178_212# a_230_644# a_230_644#
++ m1_178_1074# m1_178_212# a_230_644# a_230_644# m1_274_1710# a_230_644# m1_178_212#
++ m1_274_848# a_230_644# a_230_644# a_230_644# a_230_644# m1_178_1484# a_230_644#
++ m1_274_848# m1_274_438# m1_274_438# m1_274_848# m1_274_438# m1_274_848# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_274_1710# a_230_644# a_230_644# m1_178_1484#
++ m1_178_1484# m1_274_438# m1_274_438# m1_274_1710# a_230_644# m1_274_1710# a_230_644#
++ a_230_644# a_230_644# m1_178_1074# m1_178_1074# m1_178_212# m1_178_212# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_178_1074# m1_178_212# m1_274_1710# m1_178_212#
++ a_230_644# a_230_644# w_230_752# m1_178_212# a_230_644# a_230_644# m1_178_1484#
++ a_230_644# m1_274_848# m1_274_1710# m1_274_848# a_230_644# m1_274_848# m1_274_438#
++ a_230_644# a_230_644# m1_178_1484# a_230_644# a_230_644# a_230_644# a_230_644# m1_178_1484#
++ m1_274_438# m1_274_438# m1_274_848# m1_274_1710# a_230_644# m1_274_848# m1_274_438#
++ a_230_644# a_230_644# a_230_644# sky130_fd_pr__pfet_01v8_VCB4SW
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_N3PKNJ c1_n3050_n1000# m3_n3150_n1100#
+X0 c1_n3050_n1000# m3_n3150_n1100# sky130_fd_pr__cap_mim_m3_1 l=1e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_RE4MKQ a_n1041_109# a_n993_531# a_1119_n597# a_n1229_109#
++ a_n753_n509# a_n81_109# a_n369_n509# a_n705_21# a_399_109# a_303_n509# a_831_n87#
++ a_n609_531# a_879_109# a_n273_109# a_n465_n509# a_n753_109# a_n1089_n87# a_927_531#
++ a_15_109# a_n705_n87# a_n1089_21# a_n225_n597# a_1167_n509# a_927_n597# a_n1185_531#
++ a_591_109# a_15_n509# a_n801_531# a_n1185_n597# a_1071_109# a_n561_n509# a_n177_n509#
++ a_1023_n87# a_n321_21# a_207_109# a_111_n509# a_879_n509# a_159_531# a_639_21# a_63_n87#
++ a_n465_109# a_n1137_n509# a_n273_n509# a_1119_531# a_n945_109# a_975_n509# a_255_n87#
++ a_783_109# a_n33_n597# a_735_n597# a_n897_21# a_351_531# a_n1331_n683# a_n33_531#
++ a_n177_109# a_687_n509# a_1071_n509# a_n129_n87# a_255_21# a_n657_109# a_n225_531#
++ a_n1137_109# a_495_109# a_111_109# a_n993_n597# a_n81_n509# a_783_n509# a_n513_21#
++ a_447_n87# a_n849_n509# a_399_n509# a_n129_21# a_1023_21# a_975_109# a_63_21# a_543_n597#
++ a_n609_n597# a_159_n597# a_543_531# a_n1041_n509# a_n321_n87# a_n369_109# a_n945_n509#
++ a_495_n509# a_n849_109# a_n417_531# a_687_109# a_n1229_n509# a_303_109# a_1167_109#
++ a_639_n87# a_591_n509# a_n657_n509# a_n561_109# a_831_21# a_n897_n87# a_n801_n597#
++ a_351_n597# a_447_21# a_735_531# a_n417_n597# a_207_n509# a_n513_n87#
+X0 a_399_n509# a_351_n597# a_303_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n81_109# a_n129_21# a_n177_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_111_109# a_63_21# a_15_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n465_n509# a_n513_n87# a_n561_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_109# a_n321_21# a_n369_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n177_109# a_n225_531# a_n273_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 a_687_n509# a_639_n87# a_591_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_n753_n509# a_n801_n597# a_n849_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_975_n509# a_927_n597# a_879_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X9 a_n81_n509# a_n129_n87# a_n177_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_15_n509# a_n33_n597# a_n81_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n1041_n509# a_n1089_n87# a_n1137_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n369_n509# a_n417_n597# a_n465_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_n657_n509# a_n705_n87# a_n753_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_879_n509# a_831_n87# a_783_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X15 a_n945_n509# a_n993_n597# a_n1041_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_1167_n509# a_1119_n597# a_1071_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_303_n509# a_255_n87# a_207_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X18 a_n273_n509# a_n321_n87# a_n369_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_591_n509# a_543_n597# a_495_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_n849_n509# a_n897_n87# a_n945_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 a_303_109# a_255_21# a_207_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X22 a_591_109# a_543_531# a_495_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_207_109# a_159_531# a_111_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 a_399_109# a_351_531# a_303_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X25 a_495_109# a_447_21# a_399_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 a_687_109# a_639_21# a_591_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X27 a_783_109# a_735_531# a_687_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_975_109# a_927_531# a_879_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X29 a_n177_n509# a_n225_n597# a_n273_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 a_207_n509# a_159_n597# a_111_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X31 a_n1041_109# a_n1089_21# a_n1137_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X32 a_879_109# a_831_21# a_783_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_n1137_109# a_n1185_531# a_n1229_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X34 a_n1137_n509# a_n1185_n597# a_n1229_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X35 a_495_n509# a_447_n87# a_399_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_n561_109# a_n609_531# a_n657_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X37 a_1071_109# a_1023_21# a_975_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X38 a_n945_109# a_n993_531# a_n1041_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X39 a_n753_109# a_n801_531# a_n849_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_n657_109# a_n705_21# a_n753_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 a_n465_109# a_n513_21# a_n561_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n369_109# a_n417_531# a_n465_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 a_1167_109# a_1119_531# a_1071_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n561_n509# a_n609_n597# a_n657_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 a_111_n509# a_63_n87# a_15_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_n849_109# a_n897_21# a_n945_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_783_n509# a_735_n597# a_687_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 a_15_109# a_n33_531# a_n81_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 a_1071_n509# a_1023_n87# a_975_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_nswitch m1_30_728# m1_126_952# m1_30_110# a_82_22# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0 m1_30_728# a_82_22# a_82_22# m1_30_728# m1_30_728#
++ m1_30_728# m1_30_728# a_82_22# m1_126_952# m1_30_110# a_82_22# a_82_22# m1_30_728#
++ m1_30_728# m1_30_110# m1_126_952# a_82_22# a_82_22# m1_126_952# a_82_22# a_82_22#
++ a_82_22# m1_30_728# a_82_22# a_82_22# m1_126_952# m1_30_728# a_82_22# a_82_22# m1_30_728#
++ m1_30_728# m1_30_728# a_82_22# a_82_22# m1_126_952# m1_30_110# m1_30_110# a_82_22#
++ a_82_22# a_82_22# m1_30_728# m1_30_728# m1_30_110# a_82_22# m1_126_952# m1_30_728#
++ a_82_22# m1_126_952# a_82_22# a_82_22# a_82_22# a_82_22# VSUBS a_82_22# m1_126_952#
++ m1_30_110# m1_30_110# a_82_22# a_82_22# m1_30_728# a_82_22# m1_126_952# m1_30_728#
++ m1_30_728# a_82_22# m1_30_110# m1_30_728# a_82_22# a_82_22# m1_30_110# m1_30_728#
++ a_82_22# a_82_22# m1_126_952# a_82_22# a_82_22# a_82_22# a_82_22# a_82_22# m1_30_110#
++ a_82_22# m1_126_952# m1_30_728# m1_30_110# m1_30_728# a_82_22# m1_30_728# m1_30_110#
++ m1_30_728# m1_126_952# a_82_22# m1_30_728# m1_30_110# m1_126_952# a_82_22# a_82_22#
++ a_82_22# a_82_22# a_82_22# a_82_22# a_82_22# m1_30_728# a_82_22# sky130_fd_pr__nfet_01v8_lvt_RE4MKQ
+.ends
+
+.subckt sky130_fd_sc_hs__inv_4 A VGND VPWR Y VNB VPB
+X0 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=6.72e+11p pd=5.68e+06u as=9.968e+11p ps=8.5e+06u w=1.12e+06u l=150000u
+X1 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=4.44e+11p pd=4.16e+06u as=6.882e+11p ps=6.3e+06u w=740000u l=150000u
+X2 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X3 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X4 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X5 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X6 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X7 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_ZHX6G9 a_n383_109# a_n29_n509# a_380_21# a_n92_21#
++ a_n682_n597# a_n619_109# a_561_109# a_89_n509# a_n210_n597# a_n564_n597# a_207_109#
++ a_n29_109# a_n501_n509# a_n737_109# a_380_n597# a_n92_n597# a_n446_n597# a_26_21#
++ a_561_n509# a_n147_109# a_n383_n509# a_679_109# a_n328_21# a_n446_21# a_n737_n509#
++ a_n564_21# a_262_n597# a_n328_n597# a_n682_21# a_325_109# a_443_n509# a_616_n597#
++ a_n265_n509# a_n210_21# a_89_109# a_n619_n509# a_144_n597# a_n265_109# a_n839_n683#
++ a_498_n597# a_n501_109# a_325_n509# a_679_n509# a_n147_n509# a_616_21# a_498_21#
++ a_443_109# a_144_21# a_207_n509# a_26_n597# a_262_21#
+X0 a_89_109# a_26_21# a_n29_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n383_n509# a_n446_n597# a_n501_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n147_109# a_n210_21# a_n265_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_679_109# a_616_21# a_561_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_n619_n509# a_n682_n597# a_n737_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_n29_n509# a_n92_n597# a_n147_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_443_109# a_380_21# a_325_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_561_109# a_498_21# a_443_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X8 a_325_n509# a_262_n597# a_207_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_325_109# a_262_21# a_207_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X10 a_n265_n509# a_n328_n597# a_n383_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X11 a_561_n509# a_498_n597# a_443_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_n619_109# a_n682_21# a_n737_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X13 a_207_109# a_144_21# a_89_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X14 a_n501_109# a_n564_21# a_n619_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X15 a_89_n509# a_26_n597# a_n29_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X16 a_207_n509# a_144_n597# a_89_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n501_n509# a_n564_n597# a_n619_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X18 a_n147_n509# a_n210_n597# a_n265_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n383_109# a_n446_21# a_n501_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X20 a_679_n509# a_616_n597# a_561_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X21 a_n29_109# a_n92_21# a_n147_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X22 a_n265_109# a_n328_21# a_n383_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X23 a_443_n509# a_380_n597# a_325_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt lvds_diffamp m1_70_160# m1_188_1002# m1_70_80# m1_70_700# m1_188_384# m1_70_778#
++ VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0 m1_188_1002# m1_70_160# m1_70_700# m1_70_700#
++ m1_70_80# m1_188_1002# m1_188_1002# m1_188_384# m1_70_80# m1_70_80# m1_70_778# m1_70_778#
++ m1_70_160# m1_70_778# m1_70_80# m1_70_80# m1_70_80# m1_70_700# m1_188_384# m1_188_1002#
++ m1_188_384# m1_70_778# m1_70_700# m1_70_700# m1_70_160# m1_70_700# m1_70_80# m1_70_80#
++ m1_70_700# m1_188_1002# m1_70_160# m1_70_80# m1_70_160# m1_70_700# m1_188_1002#
++ m1_188_384# m1_70_80# m1_70_778# VSUBS m1_70_80# m1_70_778# m1_188_384# m1_70_160#
++ m1_188_384# m1_70_700# m1_70_700# m1_70_778# m1_70_700# m1_70_160# m1_70_80# m1_70_700#
++ sky130_fd_pr__nfet_01v8_lvt_ZHX6G9
+.ends
+
+
+Xlvds_currm_n_7 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_26 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_15 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_8 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_27 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_16 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_9 m2_17470_3120# m2_18900_460# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_28 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_17 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_29 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_18 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_19 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0 OutN VN m1_13800_6190# vm20g m1_13800_6190#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1 vm20g VN m1_14510_6190# OutP m1_14510_6190#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2 m1_15390_3750# VN VP m1_15390_3750# m1_15690_6180#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_sc_hs__inv_16_0 vx9y VN VP vx6y VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_1 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_2 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_3 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0 m1_16410_6170# m1_16110_3750# m1_16110_3750#
++ m1_16410_6170# VN m1_15690_6180# VN sky130_fd_pr__res_xhigh_po_0p35_RS2YEK
+Xsky130_fd_sc_hs__inv_16_4 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_5 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_6 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_7 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_8 vx14y VN VP vx1y VN VP sky130_fd_sc_hs__inv_16
+Xlvds_currm_p_30 m2_19260_4160# m2_19260_4160# lvds_currm_p_30/m1_60_1070# VP lvds_currm_p
+Xsky130_fd_sc_hs__inv_16_9 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xlvds_currm_p_20 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_22 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_21 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_11 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_10 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_23 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_12 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_switch_p_0 OutN vm6d OutN vm6d OutN vm2g vm6d VP lvds_switch_p
+Xlvds_currm_p_24 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_13 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_switch_p_1 OutP vm6d OutP vm6d OutP vm5g vm6d VP lvds_switch_p
+Xlvds_currm_p_25 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_14 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_26 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_15 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_27 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_16 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_0 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_1_N3PKNJ_0 vm20g m1_17940_7520# sky130_fd_pr__cap_mim_m3_1_N3PKNJ
+Xlvds_nswitch_0 vm1d OutN OutN vm2g VN lvds_nswitch
+Xlvds_currm_p_28 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_17 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_1 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_nswitch_1 vm1d OutP OutP vm5g VN lvds_nswitch
+Xlvds_currm_p_29 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_18 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_2 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_sc_hs__inv_4_0 In VN VP vx9y VN VP sky130_fd_sc_hs__inv_4
+Xlvds_currm_p_19 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_3 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_0 m1_20_640# lvds_currm_n_0/m1_n20_420# m1_20_640# VN lvds_currm_n
+Xsky130_fd_sc_hs__inv_4_1 vx9y VN VP vx14y VN VP sky130_fd_sc_hs__inv_4
+Xlvds_currm_n_30 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_4 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xlvds_currm_n_1 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_31 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_20 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_5 m1_17940_7520# m1_17940_7520# m2_17720_10420# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xlvds_currm_n_10 m2_17470_3120# m2_18900_460# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_2 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_21 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_7 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_6 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_diffamp_1 m2_17470_3120# m2_17470_3120# m1_15690_6180# m1_15690_6180# m2_19260_4160#
++ m2_19260_4160# VN lvds_diffamp
+Xlvds_diffamp_0 m2_17470_3120# m2_17470_3120# vm20g vm20g m1_17940_7520# m1_17940_7520#
++ VN lvds_diffamp
+Xlvds_currm_n_11 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_3 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_22 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_8 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_5 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_4 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_23 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_12 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_9 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_6 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_25 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_24 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_14 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_13 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+
+
diff --git a/mag/mpw6_submission.ext b/mag/mpw6_submission.ext
new file mode 100644
index 0000000..2fb1a50
--- /dev/null
+++ b/mag/mpw6_submission.ext
@@ -0,0 +1,1833 @@
+timestamp 1654724495
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use transmitter transmitter_0 1 0 92230 0 1 5554
+use tia_core tia_core_0 1 0 51540 0 1 10030
+use outd outd_0 1 0 80030 0 1 -18650
+use isource isource_0 1 0 -180 0 1 4490
+use fb_dark_current fb_dark_current_0 1 0 50550 0 1 16570
+use curr_mirror_distribution curr_mirror_distribution_0 1 0 27190 0 1 10240
+use curr_mirror_channel curr_mirror_channel_0 1 0 27070 0 1 -1680
+use comparator comparator_0 1 0 74820 0 1 964
+node "m5_15420_n2320#" 1 6504.84 15420 -2320 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10436400 31920 0 0
+node "m5_16620_n1320#" 1 8404.55 16620 -1320 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15504000 45800 0 0
+node "VP" 0 206822 -1500 29120 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 745910400 460020 0 0
+node "VN" 0 200474 62480 -930 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1640500 5420 665941168 527592 0 0
+node "m3_32520_n2460#" 1 9149.02 32520 -2460 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6751500 86620 655994 6166 0 0 0 0
+node "m3_33370_n2700#" 1 6246.41 33370 -2700 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6346600 80600 729654 6806 0 0 0 0
+node "m3_29890_1080#" 0 12527.1 29890 1080 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10824400 68460 0 0 0 0 0 0
+node "m3_26460_460#" 4 5869.4 26460 460 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2032400 27320 0 0 0 0 0 0
+node "m3_14700_n600#" 0 10729.5 14700 -600 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3348400 49080 0 0 0 0 0 0
+node "m2_75500_n1040#" 1 7611.75 75500 -1040 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 37500 800 1108400 9760 7997146 91506 0 0 0 0
+node "m2_71770_n2230#" 4 22354.7 71770 -2230 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 848300 9380 373300 5080 11352005 110482 0 0 0 0
+node "m2_32030_n10890#" 1 18178.3 32030 -10890 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6994100 76740 463600 4350 0 0 0 0 0 0
+node "m2_72110_1400#" 1 5687.34 72110 1400 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 202200 2700 262800 3240 6928887 82688 0 0 0 0
+node "m2_41100_n3020#" 2 5205.3 41100 -3020 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 376000 4560 315600 4560 6592618 82370 0 0 0 0
+node "m2_43360_n3050#" 4 9355.52 43360 -3050 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 922000 9020 6793000 78820 341328 5412 0 0 0 0
+node "m2_45470_n3380#" 4 15007.8 45470 -3380 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 965500 9940 6973900 82860 389758 5712 0 0 0 0
+node "m1_92320_9450#" 24 9401.33 92320 9450 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64900 1340 2597700 43960 0 0 0 0 0 0 0 0
+node "m1_52050_18560#" 1 19149.9 52050 18560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47200 1260 3609900 46940 4506300 56080 0 0 0 0 0 0
+node "m1_51790_18560#" 4 15378.8 51790 18560 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20000 600 4873400 63200 1568850 22320 0 0 0 0 0 0
+node "w_123076_n9534#" 34852 0 123076 -9534 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_108826_n9534#" 34852 0 108826 -9534 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_94576_n9534#" 34852 0 94576 -9534 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_80326_n9534#" 34852 0 80326 -9534 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_66006_n9534#" 34852 0 66006 -9534 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_60826_n8744#" 8333 0 60826 -8744 pw 4193184 8612 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_53840_2456#" 5450 0 53840 2456 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_53840_9526#" 5450 0 53840 9526 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_16220_9556#" 7571 0 16220 9556 pw 2989224 7172 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14386_13572#" 5632 0 14386 13572 pw 7546224 11072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14386_17696#" 5632 0 14386 17696 pw 7546224 11072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m2_75500_n1040#" "m1_52050_18560#" 10.3524
+cap "m3_29890_1080#" "m2_41100_n3020#" 414.821
+cap "m2_71770_n2230#" "m1_92320_9450#" 262.095
+cap "m3_33370_n2700#" "m2_45470_n3380#" 167.126
+cap "m3_32520_n2460#" "m2_45470_n3380#" 185.566
+cap "m3_33370_n2700#" "m2_71770_n2230#" 183.645
+cap "m3_32520_n2460#" "m2_71770_n2230#" 188.906
+cap "m2_45470_n3380#" "m1_51790_18560#" 175.577
+cap "m2_71770_n2230#" "m1_51790_18560#" 111.501
+cap "m3_33370_n2700#" "m3_32520_n2460#" 27746.1
+cap "m2_43360_n3050#" "VN" 259.756
+cap "VP" "m1_52050_18560#" 257.042
+cap "w_53840_2456#" "m1_52050_18560#" 377.223
+cap "VN" "m3_29890_1080#" 3459.53
+cap "m1_52050_18560#" "m2_41100_n3020#" 3.33156
+cap "m3_33370_n2700#" "m1_51790_18560#" 109.915
+cap "m3_32520_n2460#" "m1_51790_18560#" 123.325
+cap "m2_41100_n3020#" "m2_72110_1400#" 18554.2
+cap "VN" "m2_32030_n10890#" 481.509
+cap "m2_75500_n1040#" "m2_41100_n3020#" 16568.9
+cap "m2_43360_n3050#" "m2_45470_n3380#" 15437.7
+cap "m2_43360_n3050#" "m2_71770_n2230#" 235.506
+cap "m2_45470_n3380#" "m3_29890_1080#" 401.775
+cap "m2_71770_n2230#" "m3_29890_1080#" 5732.27
+cap "VN" "m1_52050_18560#" 54.2834
+cap "m3_33370_n2700#" "m2_43360_n3050#" 9075.38
+cap "m2_43360_n3050#" "m3_32520_n2460#" 195.973
+cap "VN" "m2_72110_1400#" 1442.42
+cap "m2_75500_n1040#" "VN" 1253.05
+cap "m3_33370_n2700#" "m3_29890_1080#" 450.185
+cap "m3_32520_n2460#" "m3_29890_1080#" 8560.6
+cap "m2_43360_n3050#" "m1_51790_18560#" 135.063
+cap "m1_52050_18560#" "m2_45470_n3380#" 177.307
+cap "m1_52050_18560#" "m2_71770_n2230#" 112.324
+cap "m3_14700_n600#" "m5_16620_n1320#" 3503.11
+cap "m2_45470_n3380#" "m2_72110_1400#" 25.7627
+cap "m2_71770_n2230#" "m2_72110_1400#" 2084.65
+cap "m2_75500_n1040#" "m2_45470_n3380#" 20742.4
+cap "m2_75500_n1040#" "m2_71770_n2230#" 403.813
+cap "m3_33370_n2700#" "m1_52050_18560#" 111.371
+cap "VN" "m2_41100_n3020#" 1148.54
+cap "m3_32520_n2460#" "m1_52050_18560#" 124.782
+cap "m3_33370_n2700#" "m2_72110_1400#" 12231.2
+cap "m3_32520_n2460#" "m2_72110_1400#" 214.794
+cap "m3_33370_n2700#" "m2_75500_n1040#" 324.092
+cap "m2_75500_n1040#" "m3_32520_n2460#" 270.382
+cap "m1_52050_18560#" "m1_51790_18560#" 8239.89
+cap "m2_43360_n3050#" "m3_29890_1080#" 424.567
+cap "m1_51790_18560#" "m2_72110_1400#" 19.7288
+cap "m3_14700_n600#" "m3_26460_460#" 970.429
+cap "VP" "m2_71770_n2230#" 3955.47
+cap "m2_75500_n1040#" "m1_51790_18560#" 10.2152
+cap "m3_14700_n600#" "m5_15420_n2320#" 335.194
+cap "m2_45470_n3380#" "m2_41100_n3020#" 276.642
+cap "m2_71770_n2230#" "m2_41100_n3020#" 156.094
+cap "m2_32030_n10890#" "m3_29890_1080#" 681.072
+cap "VP" "m1_92320_9450#" 902.03
+cap "m3_33370_n2700#" "m2_41100_n3020#" 238.163
+cap "m3_32520_n2460#" "m2_41100_n3020#" 175.159
+cap "m2_43360_n3050#" "m1_52050_18560#" 136.793
+cap "m5_16620_n1320#" "m3_26460_460#" 248.069
+cap "m2_43360_n3050#" "m2_72110_1400#" 26.8867
+cap "m5_16620_n1320#" "m5_15420_n2320#" 2654.86
+cap "VN" "m2_45470_n3380#" 517.411
+cap "m1_51790_18560#" "m2_41100_n3020#" 3.33156
+cap "m3_29890_1080#" "m2_72110_1400#" 461.19
+cap "VN" "m2_71770_n2230#" 21239.5
+cap "m2_75500_n1040#" "m3_29890_1080#" 551.321
+cap "w_53840_9526#" "m1_51790_18560#" 392.424
+cap "m2_75500_n1040#" "m2_32030_n10890#" 109.094
+cap "m3_33370_n2700#" "VN" 206.402
+cap "m3_32520_n2460#" "VN" 7471.75
+cap "m2_71770_n2230#" "m2_45470_n3380#" 205.138
+cap "VN" "m1_51790_18560#" 170.38
+cap "m2_43360_n3050#" "m2_41100_n3020#" 12823.7
+cap "m1_52050_18560#" "m2_72110_1400#" 19.9575
+cap "m2_32030_n10890#" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 100.77
+cap "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "m2_32030_n10890#" 24.335
+cap "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "m2_32030_n10890#" 412.634
+cap "m2_32030_n10890#" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" 24.335
+cap "m2_32030_n10890#" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 533.036
+cap "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "m2_32030_n10890#" 95.0446
+cap "m2_32030_n10890#" "outd_0/m4_n30140_10100#" 533.036
+cap "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "m2_32030_n10890#" 388.822
+cap "m2_32030_n10890#" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 751.916
+cap "outd_0/I_Bias" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" 352.187
+cap "outd_0/I_Bias" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 828.076
+cap "outd_0/I_Bias" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" 375.888
+cap "outd_0/I_Bias" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 605.238
+cap "outd_0/I_Bias" "outd_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 141.608
+cap "outd_0/I_Bias" "outd_0/m4_n30140_10100#" 201.536
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "outd_0/InputRef" 11.2159
+cap "outd_0/InputSignal" "outd_0/InputRef" -2.30906
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "outd_0/InputRef" -113.15
+cap "outd_0/InputRef" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 692.438
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "outd_0/InputRef" 129.263
+cap "outd_0/InputRef" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 10.2341
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_0/InputSignal" 0.500837
+cap "outd_0/InputSignal" "outd_0/InputRef" -6.07446
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_0/InputSignal" 340.204
+cap "outd_0/InputSignal" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 80.6248
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_0/InputSignal" 21.4119
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_0/InputRef" 833.265
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_0/InputSignal" 21.4119
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_0/InputSignal" 6.15959
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "m1_52050_18560#" 36.472
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_0/InputSignal" 232.485
+cap "m1_52050_18560#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 833.265
+cap "outd_0/w_n19204_9906#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" -1.66397
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_0/InputSignal" 49.8862
+cap "outd_0/w_n19204_9906#" "outd_0/outd_stage1_0/dw_70_8020#" 4.72186
+cap "outd_0/outd_stage1_0/dw_70_8020#" "outd_0/InputSignal" 9.9089
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 68.6733
+cap "m2_45470_n3380#" "m2_75500_n1040#" -155.719
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "outd_0/VP" -94.261
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "m2_75500_n1040#" 61.9824
+cap "VN" "outd_0/VP" 18.9319
+cap "m2_45470_n3380#" "m2_75500_n1040#" -273.401
+cap "VN" "outd_0/VP" 61.6389
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "outd_0/VP" -306.896
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "m2_75500_n1040#" 181.538
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 196.209
+cap "m2_45470_n3380#" "m2_75500_n1040#" -273.401
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 196.209
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "outd_0/VP" -306.896
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "m2_75500_n1040#" 181.538
+cap "VN" "outd_0/VP" 61.6389
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "m2_75500_n1040#" 30.1978
+cap "m2_45470_n3380#" "m2_75500_n1040#" -249.414
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 127.536
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "outd_0/VP" -197.882
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "m2_75500_n1040#" 116.444
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 34.1849
+cap "VN" "outd_0/VP" 61.6389
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_0/VP" -52.3931
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 191.436
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "m2_75500_n1040#" 177.634
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_0/VP" -302.228
+cap "m2_45470_n3380#" "m2_75500_n1040#" -269.073
+cap "VN" "outd_0/VP" 61.6389
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "m2_75500_n1040#" 177.634
+cap "VN" "outd_0/VP" 61.6389
+cap "m2_45470_n3380#" "m2_75500_n1040#" -269.073
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "m1_52050_18560#" -234.451
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 191.436
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_0/VP" -302.228
+cap "m1_52050_18560#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 76.1108
+cap "m2_45470_n3380#" "m2_75500_n1040#" -260.295
+cap "m1_52050_18560#" "m2_45470_n3380#" -31.948
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" -246.682
+cap "m1_51790_18560#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 175.622
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "VN" 61.6389
+cap "m2_45470_n3380#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 157.251
+cap "m1_51790_18560#" "m2_45470_n3380#" -31.948
+cap "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "m2_75500_n1040#" 144.391
+cap "m1_52050_18560#" "outd_0/sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 414.173
+cap "m2_45470_n3380#" "m2_75500_n1040#" -409.954
+cap "m2_75500_n1040#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 463.685
+cap "m2_45470_n3380#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 698.063
+cap "m1_51790_18560#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 67.1669
+cap "VN" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 61.8343
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "m2_45470_n3380#" 828.211
+cap "m2_45470_n3380#" "m2_75500_n1040#" -421.199
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "m2_75500_n1040#" 554.362
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "m1_51790_18560#" 13.1226
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "VN" 62.4845
+cap "m2_75500_n1040#" "m2_45470_n3380#" -421.199
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_600#" "VN" 63.5118
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_600#" "m2_45470_n3380#" 828.211
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_600#" "m2_75500_n1040#" 554.362
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_600#" "m2_75500_n1040#" 554.362
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_600#" "VN" 61.868
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_600#" "m2_45470_n3380#" 828.211
+cap "m2_45470_n3380#" "m2_75500_n1040#" -421.199
+cap "m2_45470_n3380#" "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 769.053
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "VN" 61.854
+cap "m2_45470_n3380#" "m2_75500_n1040#" -418.659
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "m2_75500_n1040#" 511.201
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_600#" "m2_45470_n3380#" 215.433
+cap "m2_45470_n3380#" "m2_75500_n1040#" -79.5331
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_600#" "m2_75500_n1040#" 150.306
+cap "outd_0/outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_600#" "VN" 61.6389
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "m2_45470_n3380#" 262.267
+cap "m2_75500_n1040#" "m2_45470_n3380#" -60.561
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "VN" 61.6389
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "m2_75500_n1040#" 212.339
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "m2_75500_n1040#" 212.339
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "m2_45470_n3380#" 262.267
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "VN" 61.6389
+cap "m2_45470_n3380#" "m2_75500_n1040#" -60.561
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "m2_75500_n1040#" 212.339
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "VN" 61.6389
+cap "m2_45470_n3380#" "m2_75500_n1040#" -60.561
+cap "m2_45470_n3380#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" 262.267
+cap "m2_75500_n1040#" "m2_45470_n3380#" -60.561
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "VN" 61.6389
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "m2_75500_n1040#" 212.339
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "m2_45470_n3380#" 262.267
+cap "comparator_0/VN" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 61.6389
+cap "m2_45470_n3380#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 91.7933
+cap "m2_71770_n2230#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 4.1122
+cap "m2_75500_n1040#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 106.17
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n703_n962#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 44.9083
+cap "m2_75500_n1040#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 119.691
+cap "m2_75500_n1040#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 52.3687
+cap "m2_71770_n2230#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 27.7367
+cap "m2_71770_n2230#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 12.1051
+cap "outd_0/outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "m2_71770_n2230#" 13.2938
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "outd_0/VP" "m2_71770_n2230#" 27.7367
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "outd_0/VP" "m2_71770_n2230#" 27.7367
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "outd_0/VP" "m2_71770_n2230#" 26.3499
+cap "m2_32030_n10890#" "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" -4.41146
+cap "m3_29890_1080#" "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" 60.0577
+cap "curr_mirror_channel_0/bias_curm_n_3/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "m2_75500_n1040#" 182.374
+cap "curr_mirror_channel_0/bias_curm_n_3/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "m2_32030_n10890#" 106.546
+cap "m3_33370_n2700#" "curr_mirror_channel_0/Comp_Bias_4" 232.543
+cap "m3_32520_n2460#" "curr_mirror_channel_0/Comp_Bias_4" 233.621
+cap "m2_72110_1400#" "curr_mirror_channel_0/Comp_Bias_4" 118.51
+cap "m2_72110_1400#" "curr_mirror_channel_0/Comp_Bias_4" 189.537
+cap "m2_41100_n3020#" "curr_mirror_channel_0/Comp_Bias_4" 56.27
+cap "m2_43360_n3050#" "VN" 120.663
+cap "m2_45470_n3380#" "VN" 111.261
+cap "VN" "m2_71770_n2230#" -123.938
+cap "VN" "outd_0/VP" 18.9319
+cap "VN" "m3_32520_n2460#" -14.8365
+cap "VN" "outd_0/VP" 61.6389
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" "m3_29890_1080#" 12.7764
+cap "m3_32520_n2460#" "VN" -48.3049
+cap "m3_29890_1080#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" 0.97036
+cap "m3_32520_n2460#" "VN" -48.3049
+cap "VN" "outd_0/VP" 61.6389
+cap "m3_29890_1080#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" 10.1101
+cap "VN" "outd_0/VP" 61.6389
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "m3_29890_1080#" 529.886
+cap "m3_29890_1080#" "m2_71770_n2230#" -242.45
+cap "m3_32520_n2460#" "VN" -48.3049
+cap "m2_71770_n2230#" "VN" -161.519
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 65.8592
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "m3_29890_1080#" 563.078
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "m2_71770_n2230#" 78.0718
+cap "m2_71770_n2230#" "m3_29890_1080#" -248.612
+cap "m3_32520_n2460#" "VN" -48.3049
+cap "VN" "outd_0/VP" 61.6389
+cap "m2_71770_n2230#" "VN" -165.624
+cap "VN" "outd_0/VP" 61.6389
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 9.10048
+cap "VN" "m3_32520_n2460#" -48.3049
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 14.0896
+cap "m2_71770_n2230#" "VN" -139.278
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 38.8075
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "VN" 29.8353
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "m2_71770_n2230#" 19.0161
+cap "m2_71770_n2230#" "m3_29890_1080#" -167.252
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "m3_29890_1080#" 243.593
+cap "VN" "m3_29890_1080#" -72.4405
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 106.172
+cap "VN" "m3_32520_n2460#" -44.7327
+cap "m2_71770_n2230#" "VN" -156.736
+cap "VN" "outd_0/VP" 61.6389
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "m1_52050_18560#" 1.62917
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 73.6185
+cap "m2_71770_n2230#" "m1_51790_18560#" -17.6839
+cap "m2_71770_n2230#" "m1_52050_18560#" -17.6839
+cap "VN" "m1_51790_18560#" -21.1891
+cap "VN" "m1_52050_18560#" -15.4102
+cap "VN" "m1_51790_18560#" -30.0167
+cap "outd_0/VP" "m1_51790_18560#" 1.10141
+cap "VN" "m3_32520_n2460#" -47.7181
+cap "VN" "outd_0/VP" 61.8343
+cap "m2_71770_n2230#" "VN" -156.736
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 105.113
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 73.6185
+cap "VN" "m2_71770_n2230#" -156.736
+cap "m3_32520_n2460#" "VN" -50.2431
+cap "outd_0/VP" "VN" 62.4845
+cap "m2_71770_n2230#" "VN" 73.6185
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 105.277
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 106.563
+cap "outd_0/VP" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 63.5118
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" -76.4627
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m3_32520_n2460#" -49.7296
+cap "outd_0/VP" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 61.868
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 18.5124
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" -22.2758
+cap "m3_32520_n2460#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -48.3049
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 26.859
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 31.438
+cap "m3_32520_n2460#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -48.0243
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 61.854
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" -88.6919
+cap "VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 99.6889
+cap "VN" "m3_32520_n2460#" -44.7327
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 78.6667
+cap "VN" "m2_71770_n2230#" -166.746
+cap "VN" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 61.6389
+cap "m3_33370_n2700#" "m2_71770_n2230#" -23.2419
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 78.6667
+cap "m3_33370_n2700#" "VN" -19.7656
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 110.765
+cap "m3_32520_n2460#" "m2_71770_n2230#" -23.2419
+cap "VN" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 61.6389
+cap "VN" "m2_71770_n2230#" -166.746
+cap "m3_32520_n2460#" "VN" -31.5878
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "VN" 61.6389
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 78.6667
+cap "m2_71770_n2230#" "VN" -166.746
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 110.765
+cap "VN" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" 61.6389
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 110.765
+cap "VN" "m2_71770_n2230#" -18.4923
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 40.192
+cap "VN" "m2_72110_1400#" -25.1975
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 8.72615
+cap "VN" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" 61.6389
+cap "comparator_0/VN" "m2_71770_n2230#" -0.219167
+cap "comparator_0/VN" "m2_43360_n3050#" -1.66457
+cap "comparator_0/VN" "m2_41100_n3020#" -1.87591
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "m2_71770_n2230#" 4.1122
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "comparator_0/VN" 61.6389
+cap "m2_45470_n3380#" "comparator_0/VN" -1.40174
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "comparator_0/VN" 44.9083
+cap "m2_71770_n2230#" "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 27.7367
+cap "m2_71770_n2230#" "comparator_0/comp_to_logic_0/I_Bias" 2.37652
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "m2_71770_n2230#" 12.1051
+cap "outd_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n703_n962#" "m2_71770_n2230#" 25.336
+cap "comparator_0/comp_to_logic_0/sky130_fd_pr__nfet_01v8_GV8PGY_1/a_n275_n374#" "m2_71770_n2230#" 25.336
+cap "m2_71770_n2230#" "outd_0/outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 13.2938
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "m2_71770_n2230#" "outd_0/VP" 26.8913
+cap "outd_0/VP" "m2_71770_n2230#" 25.8277
+cap "outd_0/VP" "m2_71770_n2230#" 25.8277
+cap "outd_0/VP" "m2_71770_n2230#" 25.964
+cap "m2_71770_n2230#" "outd_0/VP" 27.7367
+cap "outd_0/VP" "m2_71770_n2230#" 26.3499
+cap "isource_0/VP" "isource_0/VN" -11.8875
+cap "isource_0/I_ref" "isource_0/VN" 2.09519
+cap "isource_0/I_ref" "isource_0/VP" -2.81665
+cap "isource_0/VN" "isource_0/VP" -4.95312
+cap "m3_14700_n600#" "isource_0/VP" -0.440083
+cap "isource_0/VP" "isource_0/a_8476_13900#" 8.93557
+cap "m3_14700_n600#" "isource_0/VP" -2.20041
+cap "isource_0/VP" "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" 44.6779
+cap "m3_14700_n600#" "m5_16620_n1320#" -147.877
+cap "m3_14700_n600#" "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" 31.5509
+cap "m5_16620_n1320#" "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" 78.6961
+cap "m5_16620_n1320#" "m3_14700_n600#" -1.31943
+cap "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "m5_16620_n1320#" 0.468473
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "m5_16620_n1320#" 1.77636e-15
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" -4.559
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_n509#" 5.86762
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/TIA_Bias" 3.38794
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 2.54548
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_n509#" 1.14279
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/Bias_Analog_out" 0.736743
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 1.66401
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/TIA_Bias" 2.03355
+cap "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/Bias_Analog_out" 53.3409
+cap "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" -4.47706
+cap "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/TIA_Bias" 270.75
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 53.059
+cap "curr_mirror_channel_0/bias_curm_n_2/a_132_882#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" -3.0966
+cap "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_n_2/a_132_882#" -40.8551
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Bias_Analog_out" 1.0948
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" 29.8562
+cap "curr_mirror_channel_0/bias_curm_n_3/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/ctl_Bias" 729.438
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_n_3/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 22.3126
+cap "curr_mirror_channel_0/bias_curm_n_3/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/Bias_Analog_out" 158.826
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Bias_Analog_out" 2.6588
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/Comp_Bias_4" 695.167
+cap "curr_mirror_channel_0/Comp_Bias_2" "curr_mirror_channel_0/Comp_Bias_4" 708.104
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/Comp_Bias_4" 379.24
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/Comp_Bias_4" 403.29
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/Comp_Bias_4" 1356.78
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/Comp_Bias_4" 244.38
+cap "curr_mirror_channel_0/Comp_Bias_6" "VN" 231.86
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "m3_29890_1080#" 12.9571
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "tia_core_0/VM40D" -0.171263
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "m3_29890_1080#" 1.15107
+cap "tia_core_0/VM40D" "m3_29890_1080#" 10.1101
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "tia_core_0/VM40D" 0.150912
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "m2_71770_n2230#" 65.8592
+cap "m3_29890_1080#" "tia_core_0/m1_2840_n8140#" 218.188
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "tia_core_0/m1_2840_n8140#" -209.722
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 78.0718
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" -248.612
+cap "m3_29890_1080#" "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n1253_n618#" 383.15
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 9.10048
+cap "tia_core_0/Disable_TIA_B" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -88.1914
+cap "m3_29890_1080#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1442.37
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "VN" 29.8353
+cap "m3_29890_1080#" "tia_core_0/Disable_TIA_B" 455.867
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n1253_n618#" -217.85
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 38.8075
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -20.599
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 19.0161
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n1253_n618#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -174.215
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_core_0/Disable_TIA_B" -11.6784
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" -60.5548
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "m3_29890_1080#" 521.06
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 255.616
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 106.172
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "m1_52050_18560#" 16.6782
+cap "m2_71770_n2230#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 73.6185
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -7.49542
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.4605
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -240.322
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 73.6185
+cap "m1_51790_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 291.304
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 79.1468
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 105.113
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "m1_52050_18560#" 3.91
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_52050_18560#" -377.239
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -240.322
+cap "VN" "m2_71770_n2230#" 73.6185
+cap "VN" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 105.277
+cap "VN" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -240.322
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1731.25
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 62.4564
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 846.894
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 89.7958
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m2_71770_n2230#" 9.46695
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 26.859
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 121.234
+cap "VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 99.6889
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -231.429
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 78.6667
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m3_32520_n2460#" 671.313
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 110.765
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -257.144
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m3_33370_n2700#" 671.313
+cap "m2_71770_n2230#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 78.6667
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -257.144
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "VN" 110.765
+cap "m2_71770_n2230#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 78.6667
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 78.6667
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_72110_1400#" 40.3558
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -257.144
+cap "VN" "comparator_0/comp_adv3_0/VN" 110.765
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_72110_1400#" 277.059
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -93.3065
+cap "comparator_0/comp_adv3_0/VN" "VN" 40.192
+cap "comparator_0/comp_adv3_0/VN" "m2_72110_1400#" 6.83703
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" "m2_71770_n2230#" 35.0795
+cap "m2_45470_n3380#" "comparator_0/VN" 8.37417
+cap "m2_41100_n3020#" "comparator_0/VN" 13.0521
+cap "comparator_0/VN" "m2_45470_n3380#" 222.563
+cap "comparator_0/VN" "m2_71770_n2230#" 23.9099
+cap "comparator_0/VN" "m2_41100_n3020#" 13.0521
+cap "comparator_0/VN" "comparator_0/comp_to_logic_0/I_Bias" 62.0812
+cap "comparator_0/VN" "m2_43360_n3050#" 88.1779
+cap "m2_43360_n3050#" "comparator_0/comp_to_logic_0/VM6D" 6.50883
+cap "comparator_0/comp_to_logic_0/VM4D" "m2_43360_n3050#" 92.3265
+cap "comparator_0/comp_to_logic_0/In_n" "m2_45470_n3380#" 56.1263
+cap "comparator_0/VN" "comparator_0/comp_to_logic_0/I_Bias" 395.876
+cap "comparator_0/comp_to_logic_0/VM6D" "m2_43360_n3050#" 92.0228
+cap "comparator_0/comp_to_logic_0/VM1D" "m2_45470_n3380#" 0.370224
+cap "comparator_0/VN" "m2_43360_n3050#" 36.4498
+cap "comparator_0/comp_to_logic_0/In_p" "m2_43360_n3050#" 46.842
+cap "comparator_0/comp_to_logic_0/VM4D" "m2_45470_n3380#" 805.823
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/I_Bias" 0.00951788
+cap "comparator_0/comp_to_logic_0/In_n" "m2_43360_n3050#" 39.3354
+cap "comparator_0/VN" "m2_45470_n3380#" 1.36692
+cap "comparator_0/comp_to_logic_0/VM4D" "comparator_0/comp_to_logic_0/I_Bias" 4.38653
+cap "comparator_0/comp_to_logic_0/VM1D" "m2_43360_n3050#" 181.819
+cap "comparator_0/comp_to_logic_0/VP" "m2_45470_n3380#" 7.40123
+cap "comparator_0/comp_to_logic_0/VM4D" "comparator_0/comp_to_logic_0/I_Bias" -9.63376
+cap "comparator_0/comp_adv3_2/VN" "m2_71770_n2230#" 25.336
+cap "comparator_0/comp_adv3_2/VN" "m2_45470_n3380#" 802.839
+cap "comparator_0/comp_to_logic_0/VM11D" "m2_45470_n3380#" -40.4615
+cap "comparator_0/comp_to_logic_0/VM4D" "m2_45470_n3380#" 922.772
+cap "m2_45470_n3380#" "comparator_0/comp_to_logic_0/VM12D" 14.4657
+cap "m2_45470_n3380#" "comparator_0/comp_to_logic_0/VM11D" 108.921
+cap "comparator_0/comp_adv3_3/VN" "m2_45470_n3380#" 157.571
+cap "comparator_0/comp_adv3_4/VN" "m2_71770_n2230#" 25.336
+cap "comparator_0/comp_adv3_4/VN" "comparator_0/comp_to_logic_0/Out" 2.28216
+cap "m2_71770_n2230#" "transmitter_0/VN" 22.6355
+cap "m2_71770_n2230#" "transmitter_0/VN" 22.6355
+cap "isource_0/I_ref" "isource_0/VN" 30.0688
+cap "isource_0/VP" "isource_0/a_8476_13900#" 8.93557
+cap "isource_0/isource_out_0/li_4360_12590#" "isource_0/a_8476_13900#" -0.370515
+cap "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "isource_0/VP" 44.6779
+cap "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "m3_14700_n600#" 31.5509
+cap "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "m5_16620_n1320#" 78.6961
+cap "isource_0/isource_out_0/sky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0/a_n1331_n1562#" "m5_16620_n1320#" 0.468473
+cap "curr_mirror_channel_0/I_in" "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" -444.741
+cap "curr_mirror_channel_0/bias_curm_p_0/a_172_n788#" "curr_mirror_channel_0/I_in" 11.2788
+cap "curr_mirror_channel_0/I_in" "m3_14700_n600#" 3.55271e-15
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" -0.836302
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/I_in" 7.92456
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/I_in" 25.0997
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.51651
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" 4.00826
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.04911
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" 131.621
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/I_in" 8.05116
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -1.96449
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/TIA_Bias" 12.7024
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" 51.2613
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/I_in" -131.168
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" -1.33805
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/TIA_Bias" 156.696
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/Bias_Analog_out" 1.35314
+cap "curr_mirror_channel_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/TIA_Bias" 64.26
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/TIA_Bias" 339.824
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_63_n509#" -34.3677
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/TIA_Bias" -441.322
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/TIA_Bias" 14.724
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/vm4d" -32.0661
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm4d" -32.7168
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" -16.4902
+cap "curr_mirror_channel_0/bias_curm_n_0/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" -10.2195
+cap "curr_mirror_channel_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm4d" -10.5511
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" -38.1653
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" 13.3583
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/TIA_Bias" 281.384
+cap "curr_mirror_channel_0/bias_curm_p_1/w_n10_1380#" "curr_mirror_channel_0/TIA_Bias" 63.1699
+cap "curr_mirror_channel_0/ctl_Bias" "curr_mirror_channel_0/Bias_Analog_out" -6.74557
+cap "curr_mirror_channel_0/sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" "curr_mirror_channel_0/Bias_Analog_out" 11.3551
+cap "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" "curr_mirror_channel_0/TIA_Bias" 323.953
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Bias_Analog_out" -38.0269
+cap "curr_mirror_channel_0/bias_curm_p_1/w_n10_1380#" "curr_mirror_channel_0/Bias_Analog_out" -114.769
+cap "curr_mirror_channel_0/bias_curm_n_2/a_132_882#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" -88.0868
+cap "curr_mirror_channel_0/bias_curm_p_1/w_n10_1380#" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.70523
+cap "curr_mirror_channel_0/bias_curm_n_1/sky130_fd_pr__nfet_01v8_6YE2KS_0/a_n447_n374#" "curr_mirror_channel_0/TIA_Bias" -24.3465
+cap "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" "curr_mirror_channel_0/Bias_Analog_out" -20.2158
+cap "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n413_n509#" "curr_mirror_channel_0/bias_curm_n_2/sky130_fd_pr__nfet_01v8_QQ8PGA_0/a_n321_n509#" -36.1968
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/Bias_Analog_out" -221.795
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -16.3878
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/Bias_Analog_out" 98.0395
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/Bias_Analog_out" 100.028
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.64153
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Bias_Analog_out" 240.382
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/Bias_Analog_out" -1.07319
+cap "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/ctl_Bias" 405.993
+cap "curr_mirror_channel_0/Bias_Analog_out" "m3_29890_1080#" -1.78981
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/ctl_Bias" 487.941
+cap "curr_mirror_channel_0/ctl_Bias" "curr_mirror_channel_0/Comp_Bias_1" -1.55631
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/ctl_Bias" 92.4026
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -204.692
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/ctl_Bias" -15.9322
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm12d" -89.5045
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/vm12d" -18.668
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Comp_Bias_1" 69.8725
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -88.2705
+cap "curr_mirror_channel_0/bias_curm_p_15/w_172_n788#" "curr_mirror_channel_0/Comp_Bias_1" 113.559
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -4.67409
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 108.708
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm12d" -4.85201
+cap "curr_mirror_channel_0/ctl_Bias" "curr_mirror_channel_0/Comp_Bias_1" -1.55631
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/Comp_Bias_1" 282.589
+cap "curr_mirror_channel_0/bias_curm_p_15/w_172_n788#" "curr_mirror_channel_0/vm12d" -66.8047
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Comp_Bias_2" -77.9168
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/bias_curm_p_17/w_172_n788#" 142.555
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 245.116
+cap "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" "curr_mirror_channel_0/Comp_Bias_1" 1.08473
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Comp_Bias_1" 337.556
+cap "curr_mirror_channel_0/Comp_Bias_2" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_1/w_172_n788#" 159.612
+cap "curr_mirror_channel_0/Comp_Bias_2" "curr_mirror_channel_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -0.0247102
+cap "curr_mirror_channel_0/Comp_Bias_2" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 128.933
+cap "curr_mirror_channel_0/Comp_Bias_2" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_1/a_172_n788#" 89.1047
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Comp_Bias_2" -0.393376
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" 5.72018
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 121.119
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_0/a_172_n788#" -28.5577
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -118.258
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/Comp_Bias_3" 64.5732
+cap "curr_mirror_channel_0/Comp_Bias_3" "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.333134
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/Comp_Bias_3" 15.8068
+cap "curr_mirror_channel_0/Comp_Bias_4" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -74.4097
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/Comp_Bias_4" 1000.6
+cap "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/Comp_Bias_4" -38.4269
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" 101.962
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.326003
+cap "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/Comp_Bias_4" -60.2956
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 140.757
+cap "curr_mirror_channel_0/m3_14070_2720#" "curr_mirror_channel_0/eight-mirrors-p_3/bias_curm_p_1/a_172_n788#" 162.641
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -32.3293
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -162.909
+cap "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -4.2588
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 103.512
+cap "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.87935
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" 104.247
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 108.773
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" -2.68282
+cap "curr_mirror_channel_0/Comp_Bias_5" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" 100.679
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -14.6856
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -1.29204
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/a_172_n788#" 84.4077
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -3.44783
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 128.994
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 157.942
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -2.79146
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.18763
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/LVDS_Bias" -21.3689
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" 1.96236
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" 95.6049
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 5.04301
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" -0.0642865
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 104.04
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 101.46
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 107.752
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" -0.730159
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" 2.14567
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 0.745957
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/w_172_n788#" 6.13043
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -1.58643
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_0/a_172_n788#" 0.745957
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/w_172_n788#" 6.13043
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 5.04301
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 11.5849
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 1.96236
+cap "tia_core_0/VM40D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -26.9588
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -1.3334e-05
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/VM40D" -0.000288936
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/a_172_n788#" 0.464151
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 11.5849
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/VM40D" 2.14567
+cap "tia_core_0/tia_one_tia_1/tia_cur_mirror_0/a_122_42#" "m3_29890_1080#" 23.6255
+cap "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "tia_core_0/I_Bias1" -333.082
+cap "tia_core_0/I_Bias1" "tia_core_0/Disable_TIA_B" 255.431
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -249.805
+cap "tia_core_0/Disable_TIA" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2.04222
+cap "tia_core_0/I_Bias1" "tia_core_0/w_2300_n7574#" 686.248
+cap "tia_core_0/Disable_TIA_B" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -68.5689
+cap "tia_core_0/I_Bias1" "tia_core_0/Disable_TIA" 40.1341
+cap "tia_core_0/I_Bias1" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1416.75
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 335.982
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 277.92
+cap "m1_51790_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 48.2454
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -0.4605
+cap "m1_51790_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -24.3195
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -124.368
+cap "tia_core_0/Disable_TIA" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" -38.4406
+cap "tia_core_0/Disable_TIA" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -15.9296
+cap "tia_core_0/Disable_TIA" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -38.7914
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/Disable_TIA" -0.415859
+cap "tia_core_0/Disable_TIA" "tia_core_0/I_Bias1" 26.4916
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_52050_18560#" -50.139
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_51790_18560#" -7.38007
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m1_52050_18560#" 97.1736
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 32.9152
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m1_51790_18560#" 420.832
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1828.99
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 892.105
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 18.4618
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" 18.4618
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m3_33370_n2700#" 573.273
+cap "m3_33370_n2700#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" 10.1794
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_0/VN" 182.134
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" -17.2089
+cap "comparator_0/comp_adv3_0/VN" "m3_33370_n2700#" 808.676
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m3_32520_n2460#" 815.954
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_0/VN" -315.442
+cap "m3_32520_n2460#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" 41.1829
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 10.4478
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 16.002
+cap "comparator_0/comp_adv3_0/VN" "m3_33370_n2700#" 35.3304
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" 41.2624
+cap "m2_72110_1400#" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 58.169
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 652.457
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/m1_n5240_1470#" 960.465
+cap "comparator_0/comp_adv3_di_0/bias" "m2_41100_n3020#" -6.67964
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/comp_adv3_0/VN" 1214.62
+cap "comparator_0/m1_n5240_1470#" "comparator_0/comp_adv3_0/VN" -371.358
+cap "comparator_0/comp_adv3_0/VN" "m2_41100_n3020#" 0.033908
+cap "comparator_0/VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -0.0380155
+cap "comparator_0/VN" "m2_43360_n3050#" 393.03
+cap "comparator_0/VN" "comparator_0/comp_adv3_di_0/bias" 0.0556604
+cap "comparator_0/comp_adv3_2/bias" "m2_43360_n3050#" -24.1968
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/comp_adv3_2/bias" -6.67964
+cap "comparator_0/VN" "comparator_0/comp_adv3_2/bias" 1367.61
+cap "comparator_0/comp_adv3_2/bias" "m2_43360_n3050#" -1.23323
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/VN" 9.90318
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/VM6D" 0.289392
+cap "comparator_0/comp_to_logic_0/VM6D" "comparator_0/comp_to_logic_0/VP" -7.03486
+cap "comparator_0/VN" "m2_43360_n3050#" 303.516
+cap "comparator_0/comp_to_logic_0/VM6D" "m2_43360_n3050#" 15.262
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/VM6D" 92.5241
+cap "comparator_0/comp_to_logic_0/VM1D" "m2_45470_n3380#" 0.370224
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/In_p" 561.77
+cap "comparator_0/VN" "comparator_0/comp_to_logic_0/VM1D" -34.7233
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/In_n" 22.225
+cap "comparator_0/VN" "m2_45470_n3380#" 1.38685
+cap "comparator_0/comp_to_logic_0/VM1D" "comparator_0/comp_to_logic_0/VM6D" -45.0976
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/VM6D" -47.5999
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/I_Bias" 0.00951788
+cap "comparator_0/comp_to_logic_0/VM1D" "comparator_0/comp_to_logic_0/In_p" -18.4542
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/In_p" -62.0745
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/VM6D" 2.02575
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/VM1D" 537.788
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_adv3_3/bias" 629.329
+cap "comparator_0/comp_to_logic_0/VM1D" "comparator_0/comp_to_logic_0/In_n" -20.5047
+cap "comparator_0/VN" "comparator_0/comp_to_logic_0/In_p" -21.7926
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/VM4D" 41.7146
+cap "comparator_0/VN" "comparator_0/comp_adv3_3/bias" 228.403
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_adv3_3/bias" -1.23323
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/VM1D" -5.56705
+cap "comparator_0/comp_to_logic_0/VM12D" "comparator_0/comp_adv3_4/bias" -40.3074
+cap "comparator_0/comp_to_logic_0/VM6D" "comparator_0/comp_adv3_4/bias" -49.4327
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_adv3_2/VN" 9.78654
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/VP" 16.4193
+cap "comparator_0/comp_to_logic_0/VM11D" "comparator_0/comp_to_logic_0/VP" -3.25511
+cap "comparator_0/comp_to_logic_0/VM11D" "comparator_0/comp_adv3_4/bias" -15.5957
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/VP" 47.6946
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_adv3_2/VN" 1.76213
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/VP" 629.973
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/VM11D" 0.780218
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_n33_n147#" 14.9794
+cap "comparator_0/comp_to_logic_0/VM13D" "comparator_0/comp_to_logic_0/VP" -13.1094
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_adv3_3/VN" 309.965
+cap "comparator_0/comp_to_logic_0/sky130_fd_pr__pfet_01v8_XJ7GBL_1/a_n33_n147#" "comparator_0/comp_to_logic_0/VP" -10.2123
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_adv3_3/VN" -1.08566
+cap "comparator_0/comp_to_logic_0/VM13D" "comparator_0/comp_adv3_3/VN" -0.100189
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/VM12D" 233.848
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_to_logic_0/VM12D" -37.0397
+cap "comparator_0/comp_to_logic_0/VM13D" "comparator_0/comp_to_logic_0/Out" 3.55271e-15
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_to_logic_0/VM17D" 35.073
+cap "comparator_0/comp_to_logic_0/VM13D" "comparator_0/comp_to_logic_0/Out" -0.00959696
+cap "comparator_0/comp_adv3_4/VN" "comparator_0/comp_to_logic_0/Out" 7.6101
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/VN" 13.6266
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_to_logic_0/w_5802_3192#" 17.8765
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_to_logic_0/Out" 83.1089
+cap "comparator_0/comp_to_logic_0/VM13D" "comparator_0/comp_to_logic_0/Out" 1.54342
+cap "transmitter_0/VN" "m2_71770_n2230#" 26.3761
+cap "m2_71770_n2230#" "transmitter_0/VN" 26.3761
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/I_in" 1.95139
+cap "curr_mirror_channel_0/bias_curm_p_0/a_172_n788#" "curr_mirror_channel_0/I_in" 15.4773
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/I_in" 4.68333
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -4.69362
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" -1.70978
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/I_in" 34.3707
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.42703
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" 7.91631
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/TIA_Bias" 3.55271e-15
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" 0.17475
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.656883
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" 1.30992
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/I_in" 11.0863
+cap "curr_mirror_channel_0/vm4d" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.48885
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/vm4d" -16.9088
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/vm4d" 124.251
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/vm4d" -5.64204
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/Bias_Analog_out" 0.686569
+cap "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/TIA_Bias" 79.6595
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_1/a_172_n788#" -0.492197
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/TIA_Bias" 73.6074
+cap "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm4d" -3.6793
+cap "curr_mirror_channel_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/vm4d" -10.2833
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 8.73325
+cap "curr_mirror_channel_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/TIA_Bias" 121.712
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.25264
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_p_1/w_n10_1380#" -102.291
+cap "curr_mirror_channel_0/TIA_Bias" "curr_mirror_channel_0/Bias_Analog_out" 25.8132
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/vm12d" -188.519
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_p_11/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -55.806
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/sky130_fd_pr__cap_mim_m3_2_26U9NK_0/m4_n3351_n1600#" -3.39258
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/ctl_Bias" -1.48787
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -16.9113
+cap "curr_mirror_channel_0/Bias_Analog_out" "m3_29890_1080#" -0.536943
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/ctl_Bias" -3.3721
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/vm12d" -797.739
+cap "curr_mirror_channel_0/vm12d" "curr_mirror_channel_0/ctl_Bias" 70.2474
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/ctl_Bias" -8.01236
+cap "curr_mirror_channel_0/Bias_Analog_out" "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" -231.682
+cap "curr_mirror_channel_0/ctl_Bias" "curr_mirror_channel_0/Comp_Bias_1" -0.131144
+cap "curr_mirror_channel_0/bias_curm_p_11/w_172_n788#" "curr_mirror_channel_0/vm12d" -0.949355
+cap "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/ctl_Bias" 87.7989
+cap "curr_mirror_channel_0/ctl_Bias" "curr_mirror_channel_0/Comp_Bias_1" -0.131144
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/vm12d" -3.38665
+cap "curr_mirror_channel_0/bias_curm_p_15/w_172_n788#" "curr_mirror_channel_0/Comp_Bias_1" -0.428363
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/bias_curm_p_17/a_172_n788#" 3.0766
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/bias_curm_p_17/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_255_n518#" 0.0268819
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/bias_curm_p_17/w_172_n788#" 141.877
+cap "curr_mirror_channel_0/Comp_Bias_1" "curr_mirror_channel_0/sky130_fd_pr__cap_mim_m3_2_26U9NK_1/m4_n3351_n1600#" 147.588
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/Comp_Bias_5" 4.38918
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/w_172_n788#" 5.83889
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_2/bias_curm_p_1/a_172_n788#" 2.78135
+cap "curr_mirror_channel_0/Comp_Bias_6" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.383333
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" 2.95996
+cap "curr_mirror_channel_0/eight-mirrors-p_5/bias_curm_p_0/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.10921
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 14.634
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 21.5127
+cap "curr_mirror_channel_0/LVDS_Bias" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.0124326
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.5125
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 8.41506
+cap "curr_mirror_channel_0/LVDS_Bias" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 0.0123992
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" 1.34535
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -10.6172
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/w_n10_1380#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" -0.229886
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 10.8287
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" -0.272869
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_1/a_172_n788#" -0.00277289
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 121.036
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_0/a_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 1.34535
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_0/a_172_n788#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.5125
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" -8.80899
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/w_n10_1380#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 14.634
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 8.41506
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 20.829
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -2.32002
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -1.44644
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/LVDS_Bias" 0.0123992
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" "curr_mirror_channel_0/LVDS_Bias" 0.0124326
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 4.11431
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 121.036
+cap "tia_core_0/VM40D" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 0.461776
+cap "tia_core_0/VM40D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -281.659
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/a_172_n788#" 0.696226
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/w_n10_1380#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 1.18283
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/VM40D" -47.8446
+cap "tia_core_0/I_Bias1" "tia_core_0/sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" -151.554
+cap "tia_core_0/I_Bias1" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 297.731
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 20.8843
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" -1.81756
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/I_Bias1" 849.328
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -83.8759
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/I_Bias1" 218.016
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 14.2023
+cap "tia_core_0/I_Bias1" "tia_core_0/VM6D" -0.368952
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" -67.492
+cap "m1_51790_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 305.158
+cap "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -28.1919
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 289.979
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" 76.9155
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "m3_33370_n2700#" 381.286
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_1/Outn" 5.92619
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -69.2655
+cap "m3_32520_n2460#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -215.76
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/comp_adv3_0/VN" -136.974
+cap "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m3_32520_n2460#" -541.337
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_1/diffamp_element_nodi_1/a_890_330#" 21.0943
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "m3_32520_n2460#" 201.536
+cap "m3_33370_n2700#" "comparator_0/comp_adv3_0/VN" 367.705
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/comp_adv3_1/bias" -31.0484
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/comp_adv3_1/Outn" -4.70677
+cap "comparator_0/comp_adv3_1/bias" "m3_33370_n2700#" 162.685
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/comp_adv3_1/diffamp_element_nodi_1/a_890_330#" -14.4337
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -48.1994
+cap "m3_33370_n2700#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" 2.784
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "m3_32520_n2460#" 574.144
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_1/Outn" -3.05158
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_124_n1432#" "m3_33370_n2700#" 41.1052
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m3_32520_n2460#" -46.5296
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_0/VN" -1655.07
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -233.475
+cap "comparator_0/comp_adv3_1/Outn" "comparator_0/comp_adv3_0/VN" -61.9424
+cap "comparator_0/comp_adv3_1/OutP" "comparator_0/comp_adv3_0/VN" -51.6083
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_1/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -84.2673
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m3_32520_n2460#" 524.432
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "comparator_0/comp_adv3_1/Outn" -9.98913
+cap "comparator_0/comp_adv3_1/OutP" "comparator_0/comp_adv3_1/Outn" -85.7286
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" "comparator_0/comp_adv3_0/VN" 30.7473
+cap "comparator_0/comp_adv3_1/bias" "comparator_0/comp_adv3_0/VN" 94.738
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_0/VN" -1058.38
+cap "comparator_0/comp_adv3_0/Outn" "comparator_0/comp_adv3_1/OutP" -16.4099
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_0/VN" -105.324
+cap "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m3_32520_n2460#" 14.1799
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_1/OutP" 99.9315
+cap "m3_32520_n2460#" "comparator_0/comp_adv3_1/Outn" 103.095
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -16.386
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_1/Outn" -97.7235
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_1/OutP" -71.7295
+cap "m3_33370_n2700#" "comparator_0/comp_adv3_0/VN" 1.65294
+cap "m3_32520_n2460#" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/c2_n3251_n2000#" -80.2699
+cap "comparator_0/comp_adv3_0/bias" "m3_32520_n2460#" 180.429
+cap "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m3_32520_n2460#" 202.976
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m2_72110_1400#" 16.6053
+cap "comparator_0/comp_adv3_1/OutP" "m3_32520_n2460#" 19.8821
+cap "comparator_0/comp_adv3_0/bias" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" -32.1637
+cap "comparator_0/comp_adv3_0/VN" "m3_32520_n2460#" 1007.89
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -19.8549
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 89.0085
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" 626.69
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_0/a_890_330#" "m3_32520_n2460#" 874.091
+cap "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "m2_72110_1400#" 4.52395
+cap "comparator_0/comp_adv3_0/bias" "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -4.27897
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_di_0/bias" 0.632792
+cap "comparator_0/m1_n5240_1470#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" -42.5348
+cap "comparator_0/comp_adv3_0/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_di_0/bias" 4.21389
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_di_0/bias" 857.391
+cap "comparator_0/comp_adv3_0/Outn" "comparator_0/comp_adv3_di_0/bias" 5.93198
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" 7.26588
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" "comparator_0/comp_adv3_di_0/bias" 374.395
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/m1_n5240_1470#" 271.066
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_124_n1432#" -111.467
+cap "comparator_0/comp_adv3_0/OutP" "comparator_0/comp_adv3_di_0/bias" 7.90172
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" 15.9302
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/m1_n5240_1470#" -122.931
+cap "comparator_0/comp_adv3_di_0/bias" "m2_41100_n3020#" -2.00179
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0/a_n512_n1432#" -124.773
+cap "comparator_0/comp_adv3_0/VN" "m2_41100_n3020#" 0.033908
+cap "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "comparator_0/comp_adv3_di_0/bias" 2.93784
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/bias" 264.189
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_di_0/Inp2" -7.08063
+cap "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "comparator_0/comp_adv3_2/VN" -4.09038
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/sky130_fd_pr__cap_mim_m3_2_MJMGTW_0/m4_n3351_n2100#" -0.0380155
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_di_0/bias" 0.722466
+cap "comparator_0/comp_adv3_di_0/Inp2" "comparator_0/comp_adv3_di_0/Outn" 6.81791e-05
+cap "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "comparator_0/comp_adv3_di_0/Outn" 0.00613612
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -0.330065
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" -11.3232
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_di_0/bias" 577.065
+cap "comparator_0/comp_adv3_di_0/bias" "comparator_0/comp_adv3_2/bias" -1.10089
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_2/bias" 310.109
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_di_0/Outn" 0.00961429
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_2/bias" 195.09
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 11.2608
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/VN" -0.11861
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/VM6D" 0.289392
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -0.7475
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_di_0/diffamp_element_0/a_890_840#" -0.0756401
+cap "comparator_0/comp_adv3_2/VN" "m2_43360_n3050#" 3.79647
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 8.74379
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/bias" 5.96965
+cap "comparator_0/comp_adv3_di_0/Outn" "comparator_0/comp_adv3_di_0/Outp" -0.0756401
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/In_n" 0.55098
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_di_0/bias" -125.852
+cap "comparator_0/comp_adv3_di_0/diffamp_element_1/sky130_fd_pr__nfet_01v8_lvt_DG2JGC_0/a_n81_n200#" "comparator_0/comp_adv3_2/VN" -10.1165
+cap "comparator_0/comp_adv3_2/bias" "m2_43360_n3050#" -3.96749
+cap "m2_43360_n3050#" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 1.31245
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_adv3_di_0/bias" -100.991
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/Outn" -0.385584
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/bias" 769.167
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/Outn" -3.98454
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/In_n" 193.173
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -11.8975
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/bias" -12.2593
+cap "comparator_0/comp_to_logic_0/In_p" "comparator_0/comp_adv3_2/VN" -37.1329
+cap "m2_45470_n3380#" "comparator_0/comp_adv3_2/VN" 0.777365
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/VM6D" 2.02575
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_2/bias" 21.1232
+cap "comparator_0/comp_adv3_di_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "comparator_0/comp_adv3_2/bias" 0.941296
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/bias" 5.96965
+cap "comparator_0/comp_to_logic_0/In_p" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -0.27153
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_adv3_3/bias" -3.56672
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -2.70246
+cap "comparator_0/comp_to_logic_0/In_p" "comparator_0/comp_adv3_3/bias" 215.592
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_3/bias" 126.495
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_to_logic_0/In_n" 24.2682
+cap "comparator_0/comp_adv3_di_0/currm_comp_0/sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_89_n200#" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -0.7475
+cap "comparator_0/comp_adv3_di_0/Outp" "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -0.0755006
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/bias" 90.8407
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_to_logic_0/In_n" -42.7946
+cap "comparator_0/comp_to_logic_0/In_n" "comparator_0/comp_adv3_2/bias" 1.50008
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_adv3_4/bias" -2.15625
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_to_logic_0/In_p" -1.10936
+cap "comparator_0/comp_to_logic_0/In_n" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 29.9718
+cap "comparator_0/comp_adv3_2/bias" "comparator_0/comp_adv3_3/bias" -2.85401
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/bias" 359.998
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_to_logic_0/In_p" -14.4208
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_to_logic_0/In_n" -424.267
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/bias" 60.0271
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -6.15756
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_3/bias" 334.504
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_2/Outn" -10.6095
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_to_logic_0/In_p" -92.6869
+cap "comparator_0/comp_adv3_2/OutP" "comparator_0/comp_adv3_3/bias" 18.3403
+cap "comparator_0/comp_to_logic_0/In_n" "comparator_0/comp_adv3_3/bias" 6.58473
+cap "comparator_0/comp_adv3_2/Outn" "comparator_0/comp_adv3_3/bias" 7.36767
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/bias" 11.6338
+cap "comparator_0/comp_adv3_2/Outn" "comparator_0/comp_adv3_2/diffamp_element_nodi_0/a_890_330#" -2.31334
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_4/bias" 3.26886
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -11.8975
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -57.1187
+cap "comparator_0/comp_adv3_4/Outn" "comparator_0/comp_adv3_4/bias" 318.238
+cap "comparator_0/comp_adv3_3/Outn" "comparator_0/comp_adv3_4/bias" 8.41438
+cap "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/OutP" -0.0240974
+cap "comparator_0/comp_adv3_3/Outn" "comparator_0/comp_adv3_3/OutP" -4.97933
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_to_logic_0/VP" -3.91879
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/bias" -58.9441
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_adv3_4/bias" 46.631
+cap "comparator_0/comp_adv3_2/diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_255_n200#" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -2.96277
+cap "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/Outn" -19.3895
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_adv3_4/OutP" -11.443
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_3/bias" -17.3163
+cap "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_to_logic_0/VP" -22.1454
+cap "comparator_0/comp_adv3_3/bias" "comparator_0/comp_adv3_4/bias" 3.76209
+cap "comparator_0/comp_to_logic_0/VP" "comparator_0/comp_adv3_4/Outn" -17.766
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 15.9421
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/bias" 221.111
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/OutP" -0.288582
+cap "comparator_0/comp_adv3_4/Outn" "comparator_0/comp_adv3_3/bias" -0.287149
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -25.495
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_4/bias" 943.938
+cap "comparator_0/comp_adv3_3/OutP" "comparator_0/comp_adv3_4/bias" 21.4606
+cap "comparator_0/comp_adv3_3/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/Outn" -158.453
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_4/OutP" -18.1002
+cap "comparator_0/comp_adv3_4/OutP" "comparator_0/comp_adv3_4/bias" 248.912
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -14.392
+cap "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_4/bias" 133.528
+cap "comparator_0/comp_adv3_3/VN" "comparator_0/comp_adv3_4/Outn" -47.1167
+cap "comparator_0/comp_adv3_3/Outn" "comparator_0/comp_adv3_3/VN" -11.0505
+cap "comparator_0/comp_adv3_3/Outn" "comparator_0/comp_adv3_2/diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_159_n200#" -2.41989
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/Outn" 13.9629
+cap "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" "comparator_0/comp_adv3_3/diffamp_element_nodi_0/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n129_n200#" -4.24133
+cap "comparator_0/comp_adv3_4/Outn" "comparator_0/comp_adv3_4/bias" 3.0604
+cap "comparator_0/comp_adv3_4/Outn" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -43.3051
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/VN" -55.1361
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/OutP" -62.6686
+cap "comparator_0/comp_adv3_4/VN" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -94.1946
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/bias" 48.7602
+cap "comparator_0/comp_to_logic_0/w_5802_3192#" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" -149.318
+cap "comparator_0/comp_adv3_4/bias" "comparator_0/comp_adv3_4/diffamp_element_nodi_1/sky130_fd_pr__nfet_01v8_lvt_V6SMGN_0/a_n317_n200#" 75.3375
+cap "m2_71770_n2230#" "transmitter_0/VN" 26.3174
+cap "m2_71770_n2230#" "transmitter_0/VN" 26.3174
+cap "m3_26460_460#" "curr_mirror_channel_0/bias_curm_p_0/w_172_n260#" 54.6389
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n260#" "curr_mirror_channel_0/bias_curm_p_0/a_172_n788#" -28.0091
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n260#" "m3_26460_460#" 131.133
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n260#" "curr_mirror_channel_0/bias_curm_p_0/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -7.41592
+cap "curr_mirror_channel_0/bias_curm_p_0/w_172_n260#" "curr_mirror_channel_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -86.3577
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 14.3585
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 2.87859
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 9.76758
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.101695
+cap "curr_mirror_channel_0/LVDS_Bias" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 0.0123992
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/LVDS_Bias" -0.00151375
+cap "curr_mirror_channel_0/LVDS_Bias" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.0142142
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" 20.5789
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -0.409142
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_n10_1380#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -12.556
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 9.74429
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" 20.5789
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 121.036
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/w_n10_1380#" 14.3585
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_2/a_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" 2.87859
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" -11.5669
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -4.43305
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/LVDS_Bias" 0.0123992
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/a_172_n788#" 0.696226
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "VN" 121.036
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -131.755
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/a_172_n788#" 0.696226
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#" 7.96731
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/a_172_n788#" 0.696226
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -281.659
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -7.90655
+cap "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/w_n10_1380#" 0.956962
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_core_0/tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -27.0569
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "tia_core_0/VM39D" 0.109361
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" -2.98754
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" 0.0910563
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -17.2726
+cap "tia_core_0/VM39D" "tia_core_0/VM31D" -148.606
+cap "tia_core_0/VM39D" "tia_core_0/Out_ref" -499.154
+cap "tia_core_0/Out_ref" "tia_core_0/VM31D" 45.6495
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" 3.0622
+cap "tia_core_0/VM39D" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -9.50624
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" -75.6408
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/m2_n1840_n2910#" 95.2737
+cap "tia_core_0/VM39D" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -0.0527555
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -42.9502
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 185.53
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_core_0/Out_ref" 203.347
+cap "tia_core_0/VM39D" "tia_core_0/Out_ref" -340.134
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -34.3857
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/VM31D" -24.3515
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -16.3195
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_core_0/Out_ref" 2.69452
+cap "tia_core_0/I_Bias1" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -20.6808
+cap "tia_core_0/VM31D" "tia_core_0/Out_ref" 23.631
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/Out_ref" 506.986
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_ref" 31.0254
+cap "tia_core_0/VM39D" "tia_core_0/VM31D" -47.8494
+cap "tia_core_0/VM39D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -18.3231
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/VM39D" -0.85
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/I_Bias1" -11.4472
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "tia_core_0/w_2300_n7574#" -15.4665
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -58.8717
+cap "tia_core_0/VM31D" "m1_52050_18560#" 0.100645
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -6.35531
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 3.01377
+cap "tia_core_0/w_2300_n7574#" "m1_52050_18560#" 246.846
+cap "m1_52050_18560#" "tia_core_0/I_Bias1" 83.0877
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "m1_52050_18560#" 133.074
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 11.9121
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "m1_52050_18560#" 38.8781
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "m1_52050_18560#" 165.683
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 5.96644
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_52050_18560#" 74.5275
+cap "tia_core_0/m1_4090_n5190#" "m1_52050_18560#" 1014.61
+cap "tia_core_0/m1_4090_n5190#" "m1_51790_18560#" 288.13
+cap "m1_52050_18560#" "tia_core_0/m1_4090_n5190#" 1206.31
+cap "tia_core_0/VPP" "m1_52050_18560#" 127.166
+cap "m1_52050_18560#" "tia_core_0/VN" 1272.45
+cap "m1_52050_18560#" "tia_core_0/VPP" 476.528
+cap "tia_core_0/VN" "m1_52050_18560#" 1591.92
+cap "m1_52050_18560#" "tia_core_0/VN" 860.459
+cap "m1_52050_18560#" "tia_core_0/VPP" 302.08
+cap "m1_52050_18560#" "comparator_0/In" 72.2571
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#" "comparator_0/In" -6.57529
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "m1_52050_18560#" 4.44318
+cap "comparator_0/InRef" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 8.30173
+cap "comparator_0/InRef" "comparator_0/VP" 7.10543e-15
+cap "comparator_0/InRef" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2/a_n194_1000#" -2.84217e-14
+cap "comparator_0/InRef" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 3.85855
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 0.152596
+cap "comparator_0/comp_adv3_1/diffamp_element_nodi_1/a_890_330#" "m3_32520_n2460#" 6.74063
+cap "comparator_0/comp_adv3_0/Outn" "comparator_0/comp_adv3_di_0/bias" 5.93198
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_0/Outn" -2.15442
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comparator_0/comp_adv3_di_0/bias" 7.26588
+cap "comparator_0/sky130_fd_pr__cap_mim_m3_1_H9XL9H_0/c1_n550_n500#" "comparator_0/comp_adv3_0/Outn" 37.0528
+cap "comparator_0/comp_adv3_0/OutP" "comparator_0/comp_adv3_di_0/bias" 7.90172
+cap "comparator_0/comp_adv3_0/Outn" "comparator_0/comp_adv3_0/OutP" -1.02371
+cap "comparator_0/comp_adv3_0/VN" "comparator_0/comp_adv3_0/OutP" -0.122628
+cap "comparator_0/comp_adv3_2/VN" "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" -0.307752
+cap "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "comparator_0/comp_adv3_di_0/bias" 2.93784
+cap "comparator_0/comp_adv3_0/sky130_fd_pr__res_xhigh_po_2p85_8K9944_0/a_n285_n582#" "comparator_0/m2_n4630_2070#" -0.178351
+cap "m2_71770_n2230#" "transmitter_0/lvds_currm_n_0/li_n10_n580#" 26.3065
+cap "m2_71770_n2230#" "transmitter_0/lvds_currm_n_0/li_n10_n580#" 26.3065
+cap "m3_26460_460#" "curr_mirror_channel_0/bias_curm_p_0/w_n10_1380#" 54.6389
+cap "curr_mirror_channel_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/bias_curm_p_0/w_n10_1380#" -62.4315
+cap "m3_26460_460#" "curr_mirror_channel_0/bias_curm_p_0/w_n10_1380#" 131.133
+cap "curr_mirror_channel_0/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_0/w_n10_1380#" -19.4846
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -0.145578
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0123992
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" 9.70917
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -10.3821
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 21.2627
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" -0.28456
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" 2.69071
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 6.89201
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_4/w_172_n788#" 2.51182
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 10.8166
+cap "curr_mirror_channel_0/eight-mirrors-p_4/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -0.00161646
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" -0.803025
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_2/a_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" 2.69071
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -0.902239
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 20.5789
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -11.8567
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0123992
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/w_172_n788#" "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" 9.70917
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_1/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" 6.88036
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 54.8122
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/w_172_n788#" 2.51182
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -35.9074
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/a_172_n788#" 0.696226
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" -97.3645
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "VN" 54.8122
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -2.50492
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -74.4893
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/a_172_n788#" 0.696226
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_2421_22#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/w_172_n788#" 0.31128
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 0.117845
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/w_172_n788#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 0.32964
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -127.551
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n1734#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 1.86878
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" -1.57835
+cap "tia_core_0/VM39D" "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" 0.849223
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 0.676162
+cap "tia_core_0/Out_ref" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 118.721
+cap "tia_core_0/VM39D" "tia_core_0/Out_ref" 1.24667
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -31.4308
+cap "tia_core_0/VM31D" "tia_core_0/VM39D" -8.98999
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -80.413
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -7.20511
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -42.0896
+cap "tia_core_0/VM39D" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -0.166031
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" "tia_core_0/Out_ref" 1.81198
+cap "tia_core_0/VM31D" "tia_core_0/Out_ref" 110.832
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_ref" 187.251
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -153.666
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_core_0/Out_ref" 7.41148
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -68.7321
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -4.46477
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/Out_ref" 622.861
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -50.9648
+cap "tia_core_0/VM31D" "tia_core_0/Out_ref" 136.094
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -72.1796
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_ref" 119.069
+cap "tia_core_0/VM31D" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -80.4111
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_core_0/Out_ref" 196.896
+cap "tia_core_0/m1_3200_n2350#" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -22.1132
+cap "tia_core_0/VM31D" "tia_core_0/VM39D" -22.3695
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -0.176346
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "m1_52050_18560#" 27.4157
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "m1_52050_18560#" 11.0032
+cap "tia_core_0/m1_3200_n2350#" "m1_52050_18560#" 103.659
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "m1_52050_18560#" 195.106
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "m1_52050_18560#" 1252.31
+cap "tia_core_0/li_1340_n11280#" "m1_52050_18560#" 296.031
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -19.1438
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "m1_52050_18560#" 12.0412
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/m1_3200_n2350#" -30.675
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "tia_core_0/m1_3200_n2350#" -1.12715
+cap "tia_core_0/VM31D" "m1_52050_18560#" 0.100645
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "m1_52050_18560#" -60.4229
+cap "tia_core_0/li_1340_n11280#" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" -84.1971
+cap "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "tia_core_0/tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -2.51676
+cap "m1_52050_18560#" "tia_core_0/m1_4090_n5190#" 261.973
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 61.191
+cap "tia_core_0/m1_4090_n5190#" "m1_51790_18560#" 246.937
+cap "tia_core_0/m1_4090_n5190#" "m1_51790_18560#" 470.452
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_51790_18560#" -24.6391
+cap "m1_51790_18560#" "tia_core_0/VPP" 95.0446
+cap "tia_core_0/VN" "m1_51790_18560#" 540.152
+cap "m1_51790_18560#" "tia_core_0/VPP" 395.317
+cap "tia_core_0/VN" "m1_51790_18560#" 758.997
+cap "tia_core_0/VPP" "comparator_0/In" 205.069
+cap "tia_core_0/VN" "comparator_0/In" 460.579
+cap "m1_52050_18560#" "comparator_0/VP" 124.76
+cap "m1_52050_18560#" "comparator_0/In" 9.84989
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#" "comparator_0/In" 11.4283
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "m1_52050_18560#" 0.431623
+cap "comparator_0/In" "comparator_0/VP" 210.541
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/InRef" 37.2336
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" "comparator_0/VP" -0.0930252
+cap "comparator_0/VP" "comparator_0/InRef" -79.5636
+cap "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -4.89148
+cap "comparator_0/InRef" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_n642_n1562#" 47.96
+cap "comparator_0/InRef" "comparator_0/VP" 621.714
+cap "comparator_0/VP" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" -0.0930252
+cap "comparator_0/InRef" "comparator_0/sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1/a_442_1000#" 1.0242
+cap "comparator_0/InRef" "comparator_0/comp_adv3_0/VP" 7.81722
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "m2_71770_n2230#" 26.312
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "m2_71770_n2230#" 26.312
+cap "m3_26460_460#" "curr_mirror_channel_0/bias_curm_p_7/w_172_376#" 54.6389
+cap "curr_mirror_channel_0/bias_curm_p_7/w_172_376#" "m3_26460_460#" 131.133
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 1.51091
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" 10.3338
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.030819
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 0.0120746
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" -6.44461
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" 7.37552
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" -0.187642
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" 3.03846
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" -0.000580142
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" 3.7194
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 14.5642
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" 1.71706
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 0.0120746
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 10.3338
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_n10_1380#" "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" 3.7194
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -2.4663
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" -2.00525
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -0.320044
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 1.51091
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 14.5525
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_623_22#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" -0.811878
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" 3.03846
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" 2.75088
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/a_172_n788#" 0.696226
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#" "tia_core_0/VM28D" 7.37552
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -3.33351e-05
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/w_n10_1380#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 0.32964
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/a_172_n788#" 0.116038
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_2421_22#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/w_n10_1380#" 0.930748
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "tia_core_0/VM28D" -0.324665
+cap "tia_core_0/tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_core_0/tia_one_tia_1/rf_transistors_0/a_622_n290#" -29.3986
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_118#" 1.71706
+cap "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n745_n288#" "tia_core_0/tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" 8.19828
+cap "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n745_n288#" "tia_core_0/w_2300_n7574#" 22.3866
+cap "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n745_n288#" "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 5.06921
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" 928.748
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" 185.732
+cap "tia_core_0/tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" -2.54913
+cap "tia_core_0/w_2300_n7574#" "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" -185.405
+cap "tia_core_0/m1_4090_n5190#" "m1_51790_18560#" 322.644
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "m2_71770_n2230#" 26.312
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" -0.0184343
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "transmitter_0/lvds_currm_n_0/a_32_332#" -0.00910414
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" "m2_71770_n2230#" 26.312
+cap "curr_mirror_channel_0/VP" "m3_26460_460#" 54.6389
+cap "m3_26460_460#" "curr_mirror_channel_0/VP" 131.133
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0120746
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 7.30104
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" -0.157156
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" -1.22964
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" -0.186674
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 6.74561
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" -0.000580142
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" -0.00591322
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 1.22647
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" 1.49191
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 9.83342
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" 13.9847
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 5.53309
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0120746
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 9.83342
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/a_172_n788#" 1.49191
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -1.69559
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" 13.9847
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -0.00110173
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_core_0/VM28D" -12.8759
+cap "tia_core_0/VM28D" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" 7.30104
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 1.83456
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 5.53309
+cap "tia_core_0/VM28D" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -0.225731
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 7.97208
+cap "tia_core_0/VM28D" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -0.000180585
+cap "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/a_122_42#" "m1_52050_18560#" 0.7868
+cap "m1_52050_18560#" "tia_core_0/m1_4090_n5190#" 938.806
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" 164.297
+cap "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" "tia_core_0/w_2300_n504#" -154.155
+cap "tia_core_0/m1_4090_n5190#" "tia_core_0/tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" -26.2511
+cap "tia_core_0/m1_4090_n5190#" "m1_51790_18560#" 426.468
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "tia_core_0/VN" -85.5036
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "tia_core_0/VN" 106.687
+cap "transmitter_0/m1_20_3330#" "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_HR8DH9_0/a_n839_n374#" 26.3057
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "transmitter_0/sky130_fd_sc_hs__inv_16_0/VNB" -0.00353615
+cap "transmitter_0/m1_20_3330#" "transmitter_0/sky130_fd_sc_hs__inv_16_0/VNB" 26.1012
+cap "transmitter_0/In" "transmitter_0/m1_20_3330#" 0.574833
+cap "m3_26460_460#" "curr_mirror_channel_0/VP" 25.8646
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" -495.458
+cap "curr_mirror_distribution_0/bias_curm_p_3/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_9/w_n10_1380#" 0.0643185
+cap "curr_mirror_channel_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.48308
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_channel_0/VP" 7.61419
+cap "curr_mirror_channel_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "curr_mirror_channel_0/VP" -4.28972
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_channel_0/bias_curm_p_5/a_172_n788#" 6.58862
+cap "curr_mirror_channel_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -0.00474834
+cap "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 0.909302
+cap "curr_mirror_channel_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" -0.0192062
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.909302
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "curr_mirror_channel_0/VP" -0.00256401
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_channel_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_n345_n200#" 0.314489
+cap "curr_mirror_channel_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/VP" -10.971
+cap "curr_mirror_channel_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -0.000739783
+cap "curr_mirror_distribution_0/I_out2" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 4.26331
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "curr_mirror_distribution_0/I_out3" 2.48202
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_n10_1380#" "curr_mirror_channel_0/VP" 2.68216
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" -4.2925
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/bias_curm_p_6/a_172_n788#" -0.0192062
+cap "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.314489
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.48308
+cap "curr_mirror_distribution_0/I_out5" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" 2.48202
+cap "curr_mirror_channel_0/bias_curm_p_8/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.0192062
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_channel_0/VP" 3.6287
+cap "curr_mirror_channel_0/bias_curm_p_8/a_172_n788#" "curr_mirror_channel_0/VP" -5.63455
+cap "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 3.32333
+cap "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" 0.314489
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.909302
+cap "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/VP" -3.01892
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" -5.4915
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 6.14811
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_n10_1380#" "curr_mirror_channel_0/VP" 5.67438
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 0.909302
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -7.24903
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.305801
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -1.2708
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -1.10413
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.0164757
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.15975
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" -5.73259
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -3.29126
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 0.909302
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -0.0164757
+cap "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 4.37084
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_n10_1380#" "curr_mirror_channel_0/VP" 5.09006
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 0.305801
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" -5.31387
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 0.909302
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/VP" -0.0222719
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 0.305801
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.14811
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_6/a_172_n788#" -1.10413
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/VP" -4.68821
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_n10_1380#" "curr_mirror_channel_0/VP" 6.37132
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" -0.0164757
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 4.87358
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" -0.00140587
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" -0.22108
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.850349
+cap "tia_core_0/Input" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" 1.80834
+cap "tia_core_0/Input" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0123992
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" 2.36025
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" -0.26215
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" -0.41324
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.745957
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" 14.4679
+cap "tia_core_0/Input" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" 6.32632
+cap "VN" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" 32.0962
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" 0.858532
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "tia_core_0/Input" 6.32632
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" "VN" 32.0962
+cap "tia_core_0/Input" "VN" 56.2785
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "tia_core_0/Input" 1.80834
+cap "tia_core_0/Input" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 0.0123992
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 121.036
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" -0.362268
+cap "tia_core_0/Input" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 5.68434e-14
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_159_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.850349
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/Input" -1.89086
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_187_n297#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.745957
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n788#" 14.4679
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "VN" 121.036
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/Input" 1.36711
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.790052
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/VM28D" 0.46165
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" "tia_core_0/Input" 0.696226
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" 2.36025
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/w_172_n788#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 1.18283
+cap "tia_core_0/VM28D" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -213.673
+cap "tia_core_0/VM28D" "tia_core_0/Input" -23.9207
+cap "tia_core_0/VM28D" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" 0.0640517
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" -2.0001e-05
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "tia_core_0/VM28D" -0.0567473
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_351_n518#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 0.858532
+cap "m1_52050_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1096.94
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "m1_51790_18560#" 426.468
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -85.5036
+cap "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 112.374
+cap "transmitter_0/m1_20_3330#" "transmitter_0/VN" 15.2957
+cap "transmitter_0/m1_20_3330#" "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" -36.4075
+cap "transmitter_0/In" "transmitter_0/vx9y" 3.37621
+cap "transmitter_0/lvds_currm_n_0/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n605_n1127#" "transmitter_0/m1_20_3330#" -0.239083
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" "transmitter_0/vx9y" -0.759119
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_0/VPB" "transmitter_0/In" -0.693492
+cap "transmitter_0/m1_20_3330#" "transmitter_0/In" 74.9048
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" "transmitter_0/sky130_fd_sc_hs__inv_16_0/VPB" -1.82365
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" "transmitter_0/m1_20_3330#" 1.793
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_0/VPB" "transmitter_0/vx9y" -1.81151
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" "transmitter_0/In" -9.52189
+cap "transmitter_0/vx9y" "transmitter_0/In" 0.108529
+cap "transmitter_0/lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" 0.00554206
+cap "transmitter_0/lvds_currm_n_1/a_32_332#" "transmitter_0/lvds_currm_n_1/sky130_fd_pr__nfet_01v8_XZXALN_0/a_n513_n1127#" 0.0047231
+cap "m3_26460_460#" "curr_mirror_channel_0/VP" -44.1995
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_0/w_172_n788#" -1274.79
+cap "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/w_n551_n737#" "curr_mirror_distribution_0/I_in" 64.3228
+cap "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" "curr_mirror_distribution_0/I_in" -1.85657
+cap "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" "curr_mirror_channel_0/VP" -828.16
+cap "curr_mirror_distribution_0/bias_curm_p_1/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" 0.176167
+cap "curr_mirror_distribution_0/bias_curm_p_3/w_172_n788#" "curr_mirror_distribution_0/I_in" 236.322
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" 14.2011
+cap "curr_mirror_distribution_0/bias_curm_p_3/w_172_n788#" "curr_mirror_channel_0/bias_curm_p_6/w_172_n260#" 0.2629
+cap "curr_mirror_distribution_0/bias_curm_p_3/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" -11.5654
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.65862
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/bias_curm_p_5/a_172_n788#" -18.4854
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -7.37431
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" "curr_mirror_distribution_0/I_out2" 4.26331
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/I_in" -47.2861
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -18.9094
+cap "curr_mirror_channel_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/I_in" 14.9595
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -1.56071
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/I_in" 11.8732
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 22.2319
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -3.81254
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/I_out2" -3.93872
+cap "curr_mirror_distribution_0/I_out2" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -7.94858
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_channel_0/VP" 54.9768
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/I_out2" -0.00411323
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/bias_curm_p_6/a_172_n788#" -27.7543
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/I_in" 1.88949
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_2/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.48308
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" 11.8732
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" 29.8912
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" -32.9336
+cap "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out3" -2.11478
+cap "curr_mirror_channel_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/VP" -4.35537
+cap "curr_mirror_distribution_0/I_out3" "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" -0.00296777
+cap "curr_mirror_distribution_0/I_out3" "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" -2.118
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 4.48308
+cap "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 18.4825
+cap "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" -1.71674
+cap "curr_mirror_distribution_0/I_out3" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_n518#" 2.48202
+cap "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" -4.43188
+cap "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" 1.88949
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 3.32333
+cap "curr_mirror_channel_0/VP" "curr_mirror_channel_0/bias_curm_p_8/a_172_n788#" -18.5548
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 22.2319
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -7.43725
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out5" -8.77989
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -16.8702
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.88949
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/VP" 11.8732
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_channel_0/VP" 41.5972
+cap "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n321_118#" "curr_mirror_distribution_0/I_out5" 2.48202
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_distribution_0/I_out5" -1.26424
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" -34.7779
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_distribution_0/I_out4" -5.40242
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_distribution_0/I_out5" -0.00288467
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/I_out5" -0.262169
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" -4.04155
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -1.57613
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" -47.0641
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 6.14811
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/VP" -15.3736
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out6" -1.69887
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.8337
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/VP" -17.7144
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out5" -0.0784794
+cap "curr_mirror_distribution_0/I_out6" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" -24.9076
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/I_out6" -3.22312
+cap "curr_mirror_distribution_0/bias_curm_p_4/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 21.3437
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -0.218428
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/VP" 11.3367
+cap "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" "curr_mirror_channel_0/VP" 45.9018
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" -1.01251
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" 6.70909
+cap "curr_mirror_distribution_0/I_out6" "curr_mirror_channel_0/VP" 24.3626
+cap "curr_mirror_distribution_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.15975
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 3.46512
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/VP" 1.23157
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/VP" 0.510776
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -6.81035
+cap "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out7" -7.34071
+cap "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 4.37084
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" 21.5649
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_distribution_0/I_out7" -4.7253
+cap "curr_mirror_distribution_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" 4.49621
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 1.8337
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/VP" -16.7722
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/VP" -15.3074
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" -3.12141
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/I_out7" -6.11958
+cap "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/VP" 1.52962
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" -4.73745
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_distribution_0/I_out8" -6.8085
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 1.8337
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" -6.11397
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/I_out8" -0.545056
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_channel_0/VP" -5.12227
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" 6.14811
+cap "curr_mirror_distribution_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" "curr_mirror_channel_0/VP" -1.50285
+cap "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" "curr_mirror_distribution_0/I_out8" -4.79499
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 12.939
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_118#" "curr_mirror_channel_0/VP" 0.913842
+cap "VN" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" 20.2088
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 1.00281
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" -5.43858e-05
+cap "tia_core_0/Input" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" 0.115747
+cap "tia_core_0/Input" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 5.68434e-14
+cap "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_6/a_172_n788#" "tia_core_0/Input" 0.115747
+cap "VN" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" 20.2088
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "curr_mirror_channel_0/eight-mirrors-p_6/bias_curm_p_7/w_172_n260#" 1.00281
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_core_0/Input" -4.81183e-05
+cap "VN" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" 121.036
+cap "VN" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" 121.036
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "tia_core_0/m4_500_n2560#" -211.374
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "tia_core_0/m4_500_n2560#" 0.109731
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "tia_core_0/w_2300_n504#" 0.15561
+cap "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "tia_core_0/Out_1" -1.08855
+cap "tia_core_0/Out_2" "tia_core_0/m4_500_n2560#" -18.6206
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_1" -5.57443
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 16.1421
+cap "tia_core_0/Out_1" "tia_core_0/Out_2" 27.4334
+cap "tia_core_0/Out_1" "tia_core_0/m4_500_n2560#" 4.84011
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" 1.12652
+cap "tia_core_0/w_2300_n504#" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" -0.0272746
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_2" -24.1654
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_2" -10.1436
+cap "tia_core_0/w_2300_n504#" "tia_core_0/m4_500_n2560#" -0.46775
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/m4_500_n2560#" -2.73229
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_1" 1.92321
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/w_2300_n504#" -2.92201
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_2" -35.1315
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_2" -19.1113
+cap "tia_core_0/Out_1" "tia_core_0/Out_2" 46.2166
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/Out_2" -32.583
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "m1_52050_18560#" 1096.94
+cap "m1_51790_18560#" "tia_core_0/m1_4098_1944#" 426.468
+cap "transmitter_0/vx9y" "transmitter_0/sky130_fd_sc_hs__inv_16_0/VPB" -1.18089
+cap "transmitter_0/In" "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" 1.955
+cap "transmitter_0/sky130_fd_sc_hs__inv_16_8/VNB" "transmitter_0/sky130_fd_sc_hs__inv_16_0/VPB" -1.74811
+cap "transmitter_0/In" "transmitter_0/m1_20_3330#" 6.50938
+cap "transmitter_0/In" "transmitter_0/vx9y" 0.778481
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" 0.222134
+cap "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" "curr_mirror_distribution_0/I_in" 0.222134
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 1.52024
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_channel_0/bias_curm_p_5/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" 0.576954
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" 7.41099
+cap "curr_mirror_distribution_0/bias_curm_p_6/w_172_n788#" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 6.36997
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/bias_curm_p_3/sky130_fd_pr__pfet_01v8_U4PLGH_0/a_n413_n518#" 2.60762
+cap "curr_mirror_distribution_0/I_in" "curr_mirror_distribution_0/I_out2" 2.59244
+cap "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" "curr_mirror_distribution_0/I_out3" 2.65726
+cap "curr_mirror_distribution_0/bias_curm_p_1/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" 0.576954
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_channel_0/bias_curm_p_8/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" 0.576954
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" 2.56283
+cap "curr_mirror_distribution_0/bias_curm_p_3/a_172_n788#" "curr_mirror_distribution_0/I_out5" 4.72732
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/I_out6" 2.62015
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_distribution_0/bias_curm_p_8/w_172_n788#" 1.36128
+cap "curr_mirror_distribution_0/bias_curm_p_6/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" 0.565423
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/VP" -229.37
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_distribution_0/I_out7" 2.62015
+cap "curr_mirror_distribution_0/bias_curm_p_5/a_172_n788#" "curr_mirror_channel_0/eight-mirrors-p_0/bias_curm_p_6/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" 0.565423
+cap "curr_mirror_channel_0/VP" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" -145.608
+cap "curr_mirror_channel_0/eight-mirrors-p_1/bias_curm_p_7/sky130_fd_pr__pfet_01v8_PDCJZ5_0/a_287_n200#" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 0.565423
+cap "curr_mirror_distribution_0/I_out8" "curr_mirror_distribution_0/bias_curm_p_8/a_172_n788#" 3.34444
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "VN" 60.864
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -141.634
+cap "VN" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" 60.864
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -11.2042
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" -0.752047
+cap "tia_core_0/Out_1" "tia_core_0/w_2300_n504#" -19.4514
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 0.776325
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_core_0/Out_1" -0.661553
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_core_0/w_2300_n504#" 0.968723
+cap "tia_core_0/Out_2" "tia_core_0/Out_1" -1.77636e-15
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_1" -9.24671
+cap "tia_core_0/Out_1" "tia_core_0/Out_2" 135.213
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 724.868
+cap "tia_core_0/Out_2" "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -42.6766
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/Out_2" -96.659
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_1" -183.358
+cap "tia_core_0/w_2300_n504#" "tia_core_0/Out_2" -24.2322
+cap "tia_core_0/w_2300_n504#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -12.4182
+cap "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" "tia_core_0/Out_1" 6.26147
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 1254.07
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -7.20511
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -155.15
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_2" -80.5373
+cap "tia_core_0/Out_2" "tia_core_0/w_2300_n504#" -76.6598
+cap "tia_core_0/Out_2" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 45.9234
+cap "tia_core_0/w_2300_n504#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -20.4891
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" -36.6424
+cap "tia_core_0/Out_2" "tia_core_0/Out_1" 384.472
+cap "tia_core_0/Out_2" "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 75.3827
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 518.142
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_core_0/Out_1" 246.17
+cap "tia_core_0/Out_2" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -45.6169
+cap "tia_core_0/Out_2" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -13.1606
+cap "tia_core_0/Out_1" "tia_core_0/w_2300_n504#" -111.566
+cap "tia_core_0/Out_1" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 169.862
+cap "m1_51790_18560#" "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" 56.2999
+cap "m1_52050_18560#" "m1_51790_18560#" -1.12807
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "m1_51790_18560#" -105.123
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" -20.4075
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" 885.127
+cap "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "m1_51790_18560#" 76.1984
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "m1_51790_18560#" 472.343
+cap "m1_51790_18560#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 121.534
+cap "m1_51790_18560#" "tia_core_0/m1_4098_1944#" 560.423
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_1" -320.198
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/tia_one_tia_0/rf_transistors_0/a_622_n290#" -0.269293
+cap "tia_core_0/tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_core_0/Out_1" 448.199
+cap "m1_52050_18560#" "tia_core_0/tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 195.082
+cap "fb_dark_current_0/currm_n_19/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" -358.239
+cap "fb_dark_current_0/currm_n_19/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/sky130_fd_pr__nfet_01v8_lvt_LH2JGW_0/a_n33_n200#" 96.8474
+cap "fb_dark_current_0/VN" "m1_51790_18560#" 477.322
+cap "m1_51790_18560#" "tia_core_0/tia_one_tia_0/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" 6.62126
+cap "fb_dark_current_0/VN" "m1_52050_18560#" 444.562
+cap "fb_dark_current_0/VN" "m1_52050_18560#" 81.659
+cap "m1_52050_18560#" "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.434818
+cap "fb_dark_current_0/VN" "m1_52050_18560#" 96.6246
+cap "m1_52050_18560#" "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" 2.93737
+cap "m1_51790_18560#" "fb_dark_current_0/currm_n_18/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" -13.6331
+cap "fb_dark_current_0/I_Bias" "fb_dark_current_0/currm_n_18/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" -0.761895
+cap "fb_dark_current_0/currm_n_46/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "m1_51790_18560#" -38.1232
+cap "m1_51790_18560#" "fb_dark_current_0/I_Bias" -89.5084
+cap "fb_dark_current_0/currm_n_46/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "m1_51790_18560#" 164.259
+cap "fb_dark_current_0/VN" "m1_52050_18560#" 376.802
+cap "fb_dark_current_0/I_Bias" "m1_51790_18560#" 240.358
+cap "fb_dark_current_0/currm_n_46/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" "m1_52050_18560#" 158.539
+cap "fb_dark_current_0/I_Bias" "m1_52050_18560#" 218.404
+cap "fb_dark_current_0/VN" "m1_51790_18560#" 391.402
+cap "fb_dark_current_0/VN" "m1_52050_18560#" 0.115164
+cap "m1_52050_18560#" "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 0.434818
+cap "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "m1_52050_18560#" 2.93737
+cap "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -0.0203956
+cap "fb_dark_current_0/currm_n_14/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/currm_n_14/a_122_62#" -0.0489432
+cap "fb_dark_current_0/currm_n_18/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "fb_dark_current_0/InP" -27.2662
+cap "fb_dark_current_0/InP" "fb_dark_current_0/I_Bias" -80.6133
+cap "fb_dark_current_0/InP" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" -38.1232
+cap "fb_dark_current_0/InP" "fb_dark_current_0/I_Bias" 62.5444
+cap "fb_dark_current_0/I_Bias" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" -0.0255832
+cap "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/InN" 233.565
+cap "fb_dark_current_0/InN" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 160.467
+cap "fb_dark_current_0/InP" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" 221.669
+cap "fb_dark_current_0/InP" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n221_n200#" 166.148
+cap "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/I_Bias" -0.0352199
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/InN" 278.429
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/InP" 294.941
+cap "fb_dark_current_0/InN" "fb_dark_current_0/I_Bias" 62.4966
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/I_Bias" -0.0375559
+cap "fb_dark_current_0/VP" "fb_dark_current_0/currm_p_8/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" -1.13687e-13
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "fb_dark_current_0/currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_29_n297#" -0.0572762
+cap "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "fb_dark_current_0/currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_29_n297#" -3.8459
+cap "fb_dark_current_0/currm_n_18/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n323_n374#" "fb_dark_current_0/InP" 154.495
+cap "fb_dark_current_0/InP" "fb_dark_current_0/currm_p_3/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_29_n297#" 44.0036
+cap "fb_dark_current_0/InP" "fb_dark_current_0/InN" -1.845
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n413_n200#" "fb_dark_current_0/InP" 0.279545
+cap "fb_dark_current_0/InN" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.16476
+cap "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/InP" 271.108
+cap "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/InN" 282.336
+cap "fb_dark_current_0/currm_n_5/a_122_62#" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" -2.75289
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "fb_dark_current_0/InP" 71.2371
+cap "fb_dark_current_0/currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "fb_dark_current_0/InP" 1.58407
+cap "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -0.994649
+cap "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" -8.23158
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/InP" 61.9202
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/InN" 73.1845
+cap "fb_dark_current_0/InN" "fb_dark_current_0/InP" -36.9
+cap "fb_dark_current_0/InP" "fb_dark_current_0/currm_n_3/a_122_62#" 2.3961
+cap "fb_dark_current_0/InN" "fb_dark_current_0/currm_n_3/a_122_62#" -8.62597
+cap "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -1.30131
+cap "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "fb_dark_current_0/InN" 56.7943
+cap "fb_dark_current_0/currm_n_5/a_122_62#" "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" -0.297767
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -1.51344
+cap "fb_dark_current_0/currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -0.874292
+cap "fb_dark_current_0/currm_n_5/a_122_62#" "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" -8.58468
+cap "fb_dark_current_0/currm_n_5/sky130_fd_pr__nfet_01v8_PJG2KG_0/a_n210_n374#" "fb_dark_current_0/currm_n_3/sky130_fd_pr__nfet_01v8_82JNGJ_0/a_n129_n200#" -9.81844
+cap "fb_dark_current_0/currm_n_5/a_122_62#" "fb_dark_current_0/InP" 123.28
+cap "fb_dark_current_0/currm_n_5/a_122_62#" "fb_dark_current_0/InN" 129.15
+cap "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 1.80243
+cap "fb_dark_current_0/InN" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n483_n297#" 2.93856
+cap "fb_dark_current_0/currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "fb_dark_current_0/InP" 1.58407
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_LKHJAY_0/w_n425_n419#" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -0.220342
+cap "fb_dark_current_0/InN" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" 2.16476
+cap "fb_dark_current_0/currm_p_2/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_157_n297#" "fb_dark_current_0/currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -0.0595374
+cap "fb_dark_current_0/currm_p_0/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" "fb_dark_current_0/sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#" -0.874292
+cap "fb_dark_current_0/sky130_fd_pr__nfet_01v8_E6B2KN_0/a_n187_n200#" "fb_dark_current_0/currm_p_1/sky130_fd_pr__pfet_01v8_lvt_4LMUGG_0/a_n541_n200#" -1.30131
+cap "fb_dark_current_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "fb_dark_current_0/VP" -1.10493
+merge "fb_dark_current_0/VP" "curr_mirror_distribution_0/m2_290_1950#" -13041.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11159964 -45953 0 0
+merge "curr_mirror_distribution_0/m2_290_1950#" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#"
+merge "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "curr_mirror_channel_0/VP"
+merge "curr_mirror_channel_0/VP" "isource_0/VP"
+merge "isource_0/VP" "m5_16620_n1320#"
+merge "m5_16620_n1320#" "tia_core_0/VPP"
+merge "tia_core_0/VPP" "comparator_0/comp_adv3_0/VP"
+merge "comparator_0/comp_adv3_0/VP" "comparator_0/VP"
+merge "comparator_0/VP" "outd_0/VP"
+merge "outd_0/VP" "VP"
+merge "outd_0/VM1_D" "outd_0/w_n14024_9116#" -3.08563e+06 624984 -43128 0 0 0 0 0 0 -1065963680 -108768 -114910268 -56612 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -798319560 -147770 1738244788 -116356 -1574611016 -51316 -56848000 -27020 0 0 0 0 0 0
+merge "outd_0/w_n14024_9116#" "w_66006_n9534#"
+merge "fb_dark_current_0/VN" "fb_dark_current_0/sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" -34346.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -17142920 -6208 34108200 -141648 0 0
+merge "fb_dark_current_0/sky130_fd_pr__cap_mim_m3_2_N3PKNJ_1/c2_n3251_n1000#" "transmitter_0/VN"
+merge "transmitter_0/VN" "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "tia_core_0/sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "isource_0/VN"
+merge "isource_0/VN" "comparator_0/VN"
+merge "comparator_0/VN" "curr_mirror_channel_0/Comp_Bias_4"
+merge "curr_mirror_channel_0/Comp_Bias_4" "m5_15420_n2320#"
+merge "m5_15420_n2320#" "outd_0/VN"
+merge "outd_0/VN" "VN"
+merge "fb_dark_current_0/VSUBS" "curr_mirror_distribution_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "curr_mirror_distribution_0/VSUBS" "isource_0/a_8476_13900#"
+merge "isource_0/a_8476_13900#" "transmitter_0/a_650_3580#"
+merge "transmitter_0/a_650_3580#" "comparator_0/VSUBS"
+merge "comparator_0/VSUBS" "tia_core_0/VSUBS"
+merge "tia_core_0/VSUBS" "curr_mirror_channel_0/VSUBS"
+merge "curr_mirror_channel_0/VSUBS" "outd_0/VSUBS"
+merge "outd_0/VSUBS" "VSUBS"
+merge "fb_dark_current_0/InN" "tia_core_0/tia_one_tia_1/m1_1540_1550#" -28628.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21141600 -1168 -35184880 -29970 -30538300 -50750 0 0 0 0 0 0
+merge "tia_core_0/tia_one_tia_1/m1_1540_1550#" "comparator_0/InRef"
+merge "comparator_0/InRef" "tia_core_0/Out_ref"
+merge "tia_core_0/Out_ref" "outd_0/InputRef"
+merge "outd_0/InputRef" "m1_52050_18560#"
+merge "isource_0/VM2D" "isource_0/w_14566_13206#" -83067.2 -1606688 -18146 0 0 0 0 0 0 -15560192 -4192 -12829316 -12352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -31246052 -16472 -66689328 -4606 -26425048 -4800 0 0 0 0 0 0 0 0
+merge "isource_0/w_14566_13206#" "w_14386_17696#"
+merge "tia_core_0/I_Bias1" "curr_mirror_channel_0/TIA_Bias" 8175.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 33294400 -4140 0 0 0 0 0 0
+merge "curr_mirror_channel_0/TIA_Bias" "m3_29890_1080#"
+merge "comparator_0/comp_adv3_3/bias" "curr_mirror_channel_0/Comp_Bias_5" 536.166 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7497056 -520 35561200 -9970 -20322080 -324 0 0 0 0
+merge "curr_mirror_channel_0/Comp_Bias_5" "m2_43360_n3050#"
+merge "outd_0/outd_stage1_0/isource_out" "outd_0/w_n19204_9906#" -41747.4 4936256 -8612 0 0 0 0 0 0 0 0 -40332512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -45144580 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "outd_0/w_n19204_9906#" "w_60826_n8744#"
+merge "fb_dark_current_0/InP" "tia_core_0/Out_1" 92.3638 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9056600 -540 28805100 -48430 -14958400 -9778 0 0 0 0 0 0
+merge "tia_core_0/Out_1" "comparator_0/In"
+merge "comparator_0/In" "outd_0/InputSignal"
+merge "outd_0/InputSignal" "m1_51790_18560#"
+merge "comparator_0/comp_adv3_4/bias" "curr_mirror_channel_0/Comp_Bias_6" 7662.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 207440 -560 40021800 -13880 150389 -856 0 0 0 0
+merge "curr_mirror_channel_0/Comp_Bias_6" "m2_45470_n3380#"
+merge "transmitter_0/m1_20_3330#" "curr_mirror_channel_0/LVDS_Bias" -7718.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -12955700 -990 -9756380 -660 23735273 -16800 0 0 0 0
+merge "curr_mirror_channel_0/LVDS_Bias" "m2_71770_n2230#"
+merge "tia_core_0/VM39D" "tia_core_0/w_2300_n7574#" -174047 -1330752 -6752 0 0 0 0 0 0 -62851488 0 -15099228 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -64196692 0 -150573008 0 -41742864 0 0 0 0 0 0 0 0 0
+merge "tia_core_0/w_2300_n7574#" "w_53840_2456#"
+merge "tia_core_0/w_2300_n504#" "w_53840_9526#" -173531 -1370672 -6752 0 0 0 0 0 0 -62851488 0 -14605260 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -63639448 0 -150573008 0 -41742864 0 0 0 0 0 0 0 0 0
+merge "comparator_0/comp_adv3_2/bias" "curr_mirror_channel_0/m3_14070_2720#" 10571.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8603776 -568 169200 -580 40832000 -2800 0 0 0 0
+merge "curr_mirror_channel_0/m3_14070_2720#" "m2_41100_n3020#"
+merge "outd_0/outd_stage3_0/outd_stage2_3/cmirror_out" "outd_0/w_43046_9116#" -3.54545e+06 279104 -42468 0 0 0 0 0 0 -1186469000 -105176 -170576348 -55292 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -950848448 -143018 1441685352 -112164 -1826902880 -49836 -85159340 -27020 0 0 0 0 0 0
+merge "outd_0/w_43046_9116#" "w_123076_n9534#"
+merge "curr_mirror_distribution_0/bias_curm_p_1/m1_216_n466#" "curr_mirror_channel_0/I_in" -472.918 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5738000 -15020 0 0 0 0 0 0
+merge "curr_mirror_channel_0/I_in" "m3_26460_460#"
+merge "outd_0/outd_stage3_0/outd_stage2_2/cmirror_out" "outd_0/w_28796_9116#" -3.5202e+06 770104 -41968 0 0 0 0 0 0 -1142264312 -106072 -197241664 -49340 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -976434692 -140522 1518778620 -111328 -1882707316 -49216 -92597960 -27620 0 0 0 0 0 0
+merge "outd_0/w_28796_9116#" "w_108826_n9534#"
+merge "outd_0/outd_stage3_0/outd_stage2_1/cmirror_out" "outd_0/w_14546_9116#" -3.15204e+06 1287216 -41468 0 0 0 0 0 0 -1043858080 -104000 -139211288 -48340 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -838739720 -135986 1759310380 -109200 -1682693180 -48056 -46999030 -27620 0 0 0 0 0 0
+merge "outd_0/w_14546_9116#" "w_94576_n9534#"
+merge "outd_0/outd_stage3_0/outd_stage2_0/cmirror_out" "outd_0/VM14D" -2.94054e+06 1371304 -40968 0 0 0 0 0 0 -1015179152 -91192 -96854400 -47340 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -755615060 -124378 1876612880 -96368 -1524019560 -43096 -69063000 -21420 0 0 0 0 0 0
+merge "outd_0/VM14D" "outd_0/w_296_9116#"
+merge "outd_0/w_296_9116#" "w_80326_n9534#"
+merge "curr_mirror_channel_0/Comp_Bias_2" "m3_32520_n2460#" 3824.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21074800 -13580 0 0 0 0 0 0
+merge "comparator_0/comp_adv3_di_0/bias" "curr_mirror_channel_0/Comp_Bias_3" 5373.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1495264 -540 561600 -620 34775600 -3390 0 0 0 0
+merge "curr_mirror_channel_0/Comp_Bias_3" "m2_72110_1400#"
+merge "curr_mirror_distribution_0/I_in" "isource_0/I_ref" -8897.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8052400 -27270 0 0 0 0 0 0
+merge "isource_0/I_ref" "m3_14700_n600#"
+merge "transmitter_0/In" "comparator_0/comp_to_logic_0/Out" -3238.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3591040 -380 -1386040 -400 0 0 0 0 0 0 0 0
+merge "comparator_0/comp_to_logic_0/Out" "m1_92320_9450#"
+merge "curr_mirror_channel_0/bias_curm_p_15/m1_216_n466#" "curr_mirror_channel_0/Bias_Analog_out" -10862.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11651020 -22564 -14288400 -810 0 0 0 0 0 0
+merge "curr_mirror_channel_0/Bias_Analog_out" "outd_0/I_Bias"
+merge "outd_0/I_Bias" "m2_32030_n10890#"
+merge "isource_0/VM11D" "isource_0/w_14566_9082#" -73300.5 -1884544 -18222 0 0 0 0 0 0 -11626888 -4876 -12076412 -12504 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -27905956 -17308 -58270976 -5290 -23184400 -6246 1524750 -2630 0 0 0 0 0 0
+merge "isource_0/w_14566_9082#" "w_14386_13572#"
+merge "curr_mirror_channel_0/bias_curm_p_17/m1_216_n466#" "curr_mirror_channel_0/ctl_Bias" 9972.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5720336 -1028 -10128700 -1110 52306937 0 0 0 0 0
+merge "curr_mirror_channel_0/ctl_Bias" "comparator_0/comp_to_logic_0/I_Bias"
+merge "comparator_0/comp_to_logic_0/I_Bias" "m2_75500_n1040#"
+merge "curr_mirror_channel_0/Comp_Bias_1" "m3_33370_n2700#" 7152.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28636000 -8250 0 0 0 0 0 0
+merge "isource_0/VM12G" "isource_0/w_16400_5066#" -11024.2 465224 -7172 0 0 0 0 0 0 0 0 -11921296 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11921296 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "isource_0/w_16400_5066#" "w_16220_9556#"
diff --git a/mag/mpw6_submission.mag b/mag/mpw6_submission.mag
new file mode 100644
index 0000000..c0b5792
--- /dev/null
+++ b/mag/mpw6_submission.mag
@@ -0,0 +1,522 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1654724495
+<< metal1 >>
+rect 51790 18560 51800 18660
+rect 51980 18560 51990 18660
+rect 52050 18560 52060 18660
+rect 52240 18560 52250 18660
+rect 92320 9450 92330 9590
+rect 92530 9480 92850 9590
+rect 92530 9450 92540 9480
+rect 67580 3840 67590 4000
+rect 67740 3840 67750 4000
+<< via1 >>
+rect 51800 18560 51980 18660
+rect 52060 18560 52240 18660
+rect 92330 9450 92530 9590
+rect 67590 3840 67740 4000
+<< metal2 >>
+rect 51800 18660 51980 18670
+rect 51800 18550 51980 18560
+rect 52060 18660 52240 18670
+rect 52060 18550 52240 18560
+rect 53670 11120 53850 11130
+rect 53850 10990 58640 11120
+rect 53670 10980 53850 10990
+rect 53680 10700 53820 10980
+rect 58480 4220 58640 10990
+rect 92330 9590 92530 9600
+rect 88510 9450 92330 9580
+rect 64880 4320 67740 4430
+rect 64450 4270 64620 4280
+rect 55560 4110 55750 4120
+rect 53610 3940 55560 4110
+rect 53610 3630 53780 3940
+rect 55560 3930 55750 3940
+rect 56220 4110 56410 4120
+rect 56900 4110 57070 4120
+rect 56410 3940 56900 4110
+rect 57070 3940 58250 4110
+rect 56220 3930 56410 3940
+rect 56900 3930 57070 3940
+rect 58080 3810 58250 3940
+rect 58080 580 58250 3640
+rect 58480 4050 64450 4220
+rect 58480 950 58640 4050
+rect 64450 4040 64620 4050
+rect 64880 3810 65010 4320
+rect 67590 4000 67740 4320
+rect 67590 3830 67740 3840
+rect 64880 3630 65010 3640
+rect 78710 1810 78850 1820
+rect 76930 1800 77050 1810
+rect 75440 1600 75560 1610
+rect 72110 1580 72360 1590
+rect 72360 1410 73270 1580
+rect 75440 1410 75560 1420
+rect 76930 1580 77050 1700
+rect 78710 1580 78850 1710
+rect 76930 1430 77350 1580
+rect 76930 1410 77100 1430
+rect 78710 1410 79150 1580
+rect 72110 1400 72360 1410
+rect 58480 820 59010 950
+rect 58080 430 58720 580
+rect 43360 390 43600 400
+rect 32030 -480 32270 -470
+rect 32030 -10720 32270 -670
+rect 41100 -1270 41300 -1260
+rect 41100 -2860 41300 -1440
+rect 41100 -3020 41300 -3010
+rect 43360 -2860 43600 210
+rect 45470 390 45760 400
+rect 45470 200 45760 210
+rect 43360 -3050 43600 -3040
+rect 45490 -3150 45710 200
+rect 58540 -1480 58720 430
+rect 58190 -1630 58720 -1480
+rect 45470 -3160 45740 -3150
+rect 45470 -3380 45740 -3370
+rect 58190 -8470 58350 -1630
+rect 58850 -1880 59010 820
+rect 88510 170 88650 9450
+rect 92330 9440 92530 9450
+rect 90520 9160 90790 9170
+rect 90790 8930 92450 9160
+rect 90520 8920 90790 8930
+rect 80080 90 88650 170
+rect 80080 80 88510 90
+rect 75500 -800 75650 -790
+rect 75500 -1040 75650 -1030
+rect 58480 -2020 59010 -1880
+rect 58480 -7220 58640 -2020
+rect 73860 -2030 74050 -2020
+rect 71770 -2040 71960 -2030
+rect 71960 -2210 73860 -2040
+rect 73860 -2220 74050 -2210
+rect 71770 -2230 71960 -2220
+rect 58480 -7350 59410 -7220
+rect 58190 -8640 59090 -8470
+rect 32030 -10880 59980 -10720
+rect 32030 -10890 38240 -10880
+<< via2 >>
+rect 51800 18560 51980 18660
+rect 52060 18560 52240 18660
+rect 53670 10990 53850 11120
+rect 55560 3940 55750 4110
+rect 56220 3940 56410 4110
+rect 56900 3940 57070 4110
+rect 58080 3640 58250 3810
+rect 64450 4050 64620 4270
+rect 64880 3640 65010 3810
+rect 76930 1700 77050 1800
+rect 72110 1410 72360 1580
+rect 75440 1420 75560 1600
+rect 78710 1710 78850 1810
+rect 43360 210 43600 390
+rect 32030 -670 32270 -480
+rect 41100 -1440 41300 -1270
+rect 41100 -3010 41300 -2860
+rect 45470 210 45760 390
+rect 43360 -3040 43600 -2860
+rect 45470 -3370 45740 -3160
+rect 90520 8930 90790 9160
+rect 75500 -1030 75650 -800
+rect 71770 -2220 71960 -2040
+rect 73860 -2210 74050 -2030
+<< metal3 >>
+rect 51790 18660 51990 18665
+rect 51790 18560 51800 18660
+rect 51980 18560 51990 18660
+rect 51790 18555 51990 18560
+rect 52050 18660 52250 18665
+rect 52050 18560 52060 18660
+rect 52240 18560 52250 18660
+rect 52050 18555 52250 18560
+rect 51840 14150 51970 18555
+rect 52050 14400 52180 18555
+rect 52050 14230 57070 14400
+rect 51840 14020 53850 14150
+rect 53670 11125 53850 14020
+rect 53660 11120 53860 11125
+rect 53660 10990 53670 11120
+rect 53850 10990 53860 11120
+rect 53660 10985 53860 10990
+rect 25020 10260 28020 10360
+rect 14700 -460 15020 -200
+rect 25020 -460 25160 10260
+rect 29000 10100 29140 10840
+rect 26460 9980 29140 10100
+rect 26460 600 26620 9980
+rect 56900 4115 57070 14230
+rect 90510 9160 90800 9165
+rect 90510 8930 90520 9160
+rect 90790 8930 90800 9160
+rect 90510 8925 90800 8930
+rect 64440 4270 64630 4275
+rect 55550 4110 55760 4115
+rect 56210 4110 56420 4115
+rect 55550 3940 55560 4110
+rect 55750 3940 56220 4110
+rect 56410 3940 56420 4110
+rect 55550 3935 55760 3940
+rect 56210 3935 56420 3940
+rect 56890 4110 57080 4115
+rect 56890 3940 56900 4110
+rect 57070 3940 57080 4110
+rect 64440 4050 64450 4270
+rect 64620 4150 65520 4270
+rect 64620 4050 64630 4150
+rect 65330 4080 65520 4150
+rect 64440 4045 64630 4050
+rect 56890 3935 57080 3940
+rect 58070 3810 58260 3815
+rect 64870 3810 65020 3815
+rect 58070 3640 58080 3810
+rect 58250 3640 64880 3810
+rect 65010 3640 65020 3810
+rect 58070 3635 58260 3640
+rect 64870 3635 65020 3640
+rect 29890 1080 30530 1240
+rect 30360 660 30530 1080
+rect 26460 460 27220 600
+rect 30360 520 31690 660
+rect 14700 -600 25160 -460
+rect 31540 -1790 31690 520
+rect 32030 -475 32270 1240
+rect 33120 790 33470 1370
+rect 33120 -160 33450 790
+rect 34610 470 34840 1210
+rect 34600 310 34610 470
+rect 34840 310 34850 470
+rect 36760 390 36990 1180
+rect 36750 260 36760 390
+rect 36990 260 37000 390
+rect 38960 340 39190 1100
+rect 41090 340 41320 1080
+rect 43360 395 43590 1120
+rect 45490 395 45720 1120
+rect 43350 390 43610 395
+rect 38950 210 38960 340
+rect 39190 210 39200 340
+rect 41080 210 41090 340
+rect 41320 210 41330 340
+rect 43350 210 43360 390
+rect 43600 210 43610 390
+rect 38960 180 39190 210
+rect 41090 160 41320 210
+rect 43350 205 43610 210
+rect 45460 390 45770 395
+rect 47710 390 47940 1120
+rect 45460 210 45470 390
+rect 45760 210 45770 390
+rect 45460 205 45770 210
+rect 43360 200 43590 205
+rect 45490 200 45720 205
+rect 47680 190 47690 390
+rect 47950 190 47960 390
+rect 33120 -380 33130 -160
+rect 33450 -380 33460 -160
+rect 33120 -410 33450 -380
+rect 32020 -480 32280 -475
+rect 32020 -670 32030 -480
+rect 32270 -670 32280 -480
+rect 32020 -675 32280 -670
+rect 41090 -1270 41310 -1265
+rect 41090 -1440 41100 -1270
+rect 41300 -1440 41310 -1270
+rect 41090 -1445 41310 -1440
+rect 56630 -1790 57020 1940
+rect 31540 -2130 57020 -1790
+rect 67470 1710 70050 1850
+rect 78700 1810 78860 1815
+rect 67470 -2300 67600 1710
+rect 32520 -2310 67600 -2300
+rect 32520 -2440 36770 -2310
+rect 36980 -2440 67600 -2310
+rect 32520 -2460 67600 -2440
+rect 67670 1410 68240 1580
+rect 69910 1410 70050 1710
+rect 76920 1800 77060 1805
+rect 76920 1700 76930 1800
+rect 77050 1700 77060 1800
+rect 78700 1710 78710 1810
+rect 78850 1710 78860 1810
+rect 78700 1705 78860 1710
+rect 76920 1695 77060 1700
+rect 75430 1600 75570 1605
+rect 72100 1580 72370 1585
+rect 72100 1410 72110 1580
+rect 72360 1410 72370 1580
+rect 75430 1420 75440 1600
+rect 75560 1420 75570 1600
+rect 75430 1415 75570 1420
+rect 67670 550 67820 1410
+rect 72100 1405 72370 1410
+rect 67670 -2540 67800 550
+rect 72760 -180 75380 -170
+rect 72760 -310 76510 -180
+rect 76650 -310 76660 -180
+rect 72760 -320 75380 -310
+rect 71760 -2040 71970 -2035
+rect 71760 -2220 71770 -2040
+rect 71960 -2220 71970 -2040
+rect 71760 -2225 71970 -2220
+rect 33370 -2550 67800 -2540
+rect 33370 -2690 34620 -2550
+rect 34830 -2690 67800 -2550
+rect 33370 -2700 67800 -2690
+rect 72760 -2850 72950 -320
+rect 41090 -2860 41310 -2855
+rect 41090 -3010 41100 -2860
+rect 41300 -3010 41310 -2860
+rect 43350 -2860 43610 -2855
+rect 43350 -2880 43360 -2860
+rect 41090 -3015 41310 -3010
+rect 41580 -3040 43360 -2880
+rect 43600 -2880 43610 -2860
+rect 56520 -2870 72950 -2850
+rect 56490 -2880 72950 -2870
+rect 43600 -3040 72950 -2880
+rect 73030 -570 78380 -440
+rect 78530 -570 78540 -440
+rect 43350 -3045 43610 -3040
+rect 45460 -3160 45750 -3155
+rect 73030 -3160 73190 -570
+rect 75450 -795 75650 -790
+rect 75450 -800 75660 -795
+rect 75450 -1030 75500 -800
+rect 75650 -1030 75660 -800
+rect 75450 -1035 75660 -1030
+rect 73850 -2030 74060 -2025
+rect 73850 -2210 73860 -2030
+rect 74050 -2210 74060 -2030
+rect 73850 -2215 74060 -2210
+rect 75450 -3160 75650 -1035
+rect 45460 -3180 45470 -3160
+rect 41580 -3340 45470 -3180
+rect 44790 -3350 45470 -3340
+rect 45460 -3370 45470 -3350
+rect 45740 -3180 45750 -3160
+rect 45740 -3190 47420 -3180
+rect 56510 -3190 73190 -3160
+rect 45740 -3350 73190 -3190
+rect 75440 -3300 75450 -3160
+rect 75650 -3300 75660 -3160
+rect 45740 -3370 45750 -3350
+rect 45460 -3375 45750 -3370
+<< via3 >>
+rect 90520 8930 90790 9160
+rect 34610 310 34840 470
+rect 36760 260 36990 390
+rect 38960 210 39190 340
+rect 41090 210 41320 340
+rect 47690 190 47950 390
+rect 33130 -380 33450 -160
+rect 41100 -1440 41300 -1270
+rect 36770 -2440 36980 -2310
+rect 76930 1700 77050 1800
+rect 78710 1710 78850 1810
+rect 72110 1410 72360 1580
+rect 75440 1420 75560 1600
+rect 76510 -310 76650 -180
+rect 71770 -2220 71960 -2040
+rect 34620 -2690 34830 -2550
+rect 41100 -3010 41300 -2860
+rect 78380 -570 78530 -440
+rect 73860 -2210 74050 -2030
+rect 75450 -3300 75650 -3160
+<< metal4 >>
+rect 90519 9160 90791 9161
+rect 90519 8930 90520 9160
+rect 90790 8930 90791 9160
+rect 90519 8929 90791 8930
+rect 78709 1810 78851 1811
+rect 76929 1800 77051 1801
+rect 76929 1700 76930 1800
+rect 77050 1700 77051 1800
+rect 78709 1710 78710 1810
+rect 78850 1710 78851 1810
+rect 78709 1709 78851 1710
+rect 76929 1699 77051 1700
+rect 75439 1600 75561 1601
+rect 72109 1580 72361 1581
+rect 72109 1570 72110 1580
+rect 72010 1410 72110 1570
+rect 72360 1410 72361 1580
+rect 75439 1570 75440 1600
+rect 72010 1409 72361 1410
+rect 73570 1420 75440 1570
+rect 75560 1420 75561 1600
+rect 76930 1560 77050 1699
+rect 34609 470 34841 471
+rect 34609 310 34610 470
+rect 34840 310 34841 470
+rect 34609 309 34841 310
+rect 36759 390 36991 391
+rect 33130 -159 33450 -130
+rect 33129 -160 33451 -159
+rect 33129 -380 33130 -160
+rect 33450 -380 33451 -160
+rect 33129 -381 33451 -380
+rect 33130 -3120 33450 -381
+rect 34610 -2550 34840 309
+rect 36759 260 36760 390
+rect 36990 260 36991 390
+rect 38960 341 39190 410
+rect 47689 390 47951 391
+rect 41090 341 41320 380
+rect 36759 259 36991 260
+rect 38959 340 39191 341
+rect 36760 -2310 36990 259
+rect 38959 210 38960 340
+rect 39190 210 39191 340
+rect 38959 209 39191 210
+rect 41089 340 41321 341
+rect 41089 210 41090 340
+rect 41320 210 41321 340
+rect 41089 209 41321 210
+rect 36760 -2440 36770 -2310
+rect 36980 -2440 36990 -2310
+rect 36760 -2460 36990 -2440
+rect 34610 -2690 34620 -2550
+rect 34830 -2690 34840 -2550
+rect 34610 -2700 34840 -2690
+rect 38960 -2590 39190 209
+rect 41090 -1270 41320 209
+rect 47689 190 47690 390
+rect 47950 330 47951 390
+rect 47950 190 47960 330
+rect 47689 189 47960 190
+rect 41090 -1440 41100 -1270
+rect 41300 -1440 41320 -1270
+rect 41090 -1460 41320 -1440
+rect 47700 -2040 47960 189
+rect 62480 -60 64200 -10
+rect 62480 -890 63630 -60
+rect 72010 -220 72170 1409
+rect 72010 -340 72490 -220
+rect 62480 -930 64200 -890
+rect 71769 -2040 71961 -2039
+rect 47700 -2220 71770 -2040
+rect 71960 -2220 71961 -2040
+rect 47700 -2230 47960 -2220
+rect 71769 -2221 71961 -2220
+rect 38960 -2600 56810 -2590
+rect 72280 -2600 72490 -340
+rect 38960 -2750 72490 -2600
+rect 38960 -2760 56810 -2750
+rect 41090 -2860 59740 -2850
+rect 41090 -3010 41100 -2860
+rect 41300 -2870 59740 -2860
+rect 73570 -2870 73710 1420
+rect 75439 1419 75561 1420
+rect 76510 1450 77050 1560
+rect 78710 1490 78850 1709
+rect 76510 -179 76650 1450
+rect 76930 1400 77050 1450
+rect 78380 1380 78850 1490
+rect 76509 -180 76651 -179
+rect 76509 -310 76510 -180
+rect 76650 -310 76651 -180
+rect 76509 -311 76651 -310
+rect 78380 -439 78530 1380
+rect 78379 -440 78531 -439
+rect 78379 -570 78380 -440
+rect 78530 -570 78531 -440
+rect 78379 -571 78531 -570
+rect 90520 -2000 90790 8929
+rect 73859 -2030 74051 -2029
+rect 75930 -2030 90830 -2000
+rect 73859 -2210 73860 -2030
+rect 74050 -2200 90830 -2030
+rect 74050 -2210 74051 -2200
+rect 73859 -2211 74051 -2210
+rect 41300 -3010 73710 -2870
+rect 41090 -3020 73710 -3010
+rect 33120 -3130 45770 -3120
+rect 33120 -3150 59430 -3130
+rect 33120 -3160 75700 -3150
+rect 33120 -3300 75450 -3160
+rect 75650 -3300 75700 -3160
+rect 75449 -3301 75651 -3300
+<< via4 >>
+rect 63630 -890 64270 -60
+<< metal5 >>
+rect -1500 29120 136780 32790
+rect 37900 12540 40060 29120
+rect 50860 23600 52120 29120
+rect 36860 12180 40060 12540
+rect 25380 9300 28020 9760
+rect 37900 9440 40060 12180
+rect 49030 13540 49770 14890
+rect 49030 10250 49760 13540
+rect 15420 -1700 16220 -260
+rect 16620 -600 17420 -180
+rect 25380 -600 26100 9300
+rect 49240 8750 49760 10250
+rect 66360 9040 67460 29120
+rect 16620 -1320 26100 -600
+rect 27040 -1700 28640 -1020
+rect 15420 -2320 28640 -1700
+rect 45780 -2000 47800 -1020
+rect 49030 -2000 49760 8750
+rect 62400 7620 67460 9040
+rect 66360 4220 67460 7620
+rect 63640 -36 64290 10
+rect 63606 -60 64294 -36
+rect 63606 -890 63630 -60
+rect 64270 -890 64294 -60
+rect 63606 -914 64294 -890
+rect 55510 -2000 59210 -1990
+rect 61236 -2000 62204 -1976
+rect 63640 -2000 64290 -914
+rect 74560 -2000 75080 -960
+rect 45780 -2350 75120 -2000
+rect 45780 -20350 47800 -2350
+rect 61236 -2404 62204 -2350
+rect 83280 -3840 88000 29120
+rect 112580 -1090 141180 440
+rect 83020 -20350 88220 -18340
+rect -1470 -21060 136810 -20350
+rect 139420 -21060 141100 -1090
+rect -1470 -22860 141290 -21060
+rect -1470 -24020 136810 -22860
+use comparator  comparator_0 ~/code/particle_detector/mag/comp
+timestamp 1654178388
+transform 1 0 74820 0 1 964
+box -9660 -2484 5770 3520
+use curr_mirror_channel  curr_mirror_channel_0 ~/code/particle_detector/mag/bias
+timestamp 1654704381
+transform 1 0 27070 0 1 -1680
+box -20 0 21830 11434
+use curr_mirror_distribution  curr_mirror_distribution_0 ~/code/particle_detector/mag/bias
+timestamp 1654707512
+transform 1 0 27190 0 1 10240
+box 0 0 9830 2300
+use fb_dark_current  fb_dark_current_0 ~/code/particle_detector/mag/feedback
+timestamp 1654718902
+transform 1 0 50550 0 1 16570
+box -7920 -2510 12812 7750
+use isource  isource_0 ~/code/particle_detector/mag/isource
+timestamp 1654695234
+transform 1 0 -180 0 1 4490
+box -280 -4830 23120 15920
+use outd  outd_0 ~/code/particle_detector/mag/outd
+timestamp 1647868710
+transform 1 0 80030 0 1 -18650
+box -30220 -60 57040 15224
+use tia_core  tia_core_0 ~/code/particle_detector/mag/tia
+timestamp 1647868710
+transform 1 0 51540 0 1 10030
+box -1860 -11680 11730 2790
+use transmitter  transmitter_0 ~/code/particle_detector/mag/lvds
+timestamp 1654695234
+transform 1 0 92230 0 1 5554
+box -10 -6994 21080 20114
+<< labels >>
+rlabel metal5 -610 -23380 1100 -21480 1 VN
+rlabel metal5 -150 30080 1560 31980 1 VP
+<< end >>
diff --git a/mag/mpw6_submission.spice b/mag/mpw6_submission.spice
new file mode 100644
index 0000000..1a43443
--- /dev/null
+++ b/mag/mpw6_submission.spice
@@ -0,0 +1,3153 @@
+* SPICE3 file created from mpw6_submission.ext - technology: sky130A
+
+.subckt sky130_fd_pr__pfet_01v8_U4PLGH a_n321_n518# a_n33_118# a_15_549# a_207_n615#
++ a_n225_118# a_n413_118# a_111_21# a_n369_n615# a_207_549# a_n33_n518# a_111_n87#
++ a_63_118# a_15_n615# w_n551_n737# a_n177_n615# a_255_118# a_n177_549# a_159_n518#
++ a_n81_21# a_n273_21# a_303_21# a_n413_n518# a_303_n87# a_n129_118# a_255_n518# a_n369_549#
++ a_351_n518# a_n81_n87# a_n321_118# a_n273_n87# a_n129_n518# a_63_n518# a_159_118#
++ a_n225_n518# a_351_118#
+X0 a_63_n518# a_15_n615# a_n33_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n129_n518# a_n177_n615# a_n225_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n33_n518# a_n81_n87# a_n129_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_351_n518# a_303_n87# a_255_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n33_118# a_n81_21# a_n129_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_351_118# a_303_21# a_255_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_159_118# a_111_21# a_63_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_255_118# a_207_549# a_159_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n321_118# a_n369_549# a_n413_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_n225_118# a_n273_21# a_n321_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X10 a_n129_118# a_n177_549# a_n225_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 a_255_n518# a_207_n615# a_159_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n321_n518# a_n369_n615# a_n413_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X13 a_63_118# a_15_549# a_n33_118# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X14 a_159_n518# a_111_n87# a_63_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n225_n518# a_n273_n87# a_n321_n518# w_n551_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PDCJZ5 a_n345_n200# a_29_n297# a_n129_n297# a_187_n297#
++ a_129_n200# a_n287_n297# a_287_n200# w_n483_n419# a_n29_n200# a_n187_n200#
+X0 a_n187_n200# a_n287_n297# a_n345_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_287_n200# a_187_n297# a_129_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n200# a_29_n297# a_n29_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n200# a_n129_n297# a_n187_n200# w_n483_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt bias_curm_p m1_216_n466# m1_120_n692# a_172_n788# w_172_376#
+Xsky130_fd_pr__pfet_01v8_U4PLGH_0 m1_216_n466# m1_120_n692# a_172_n788# a_172_n788#
++ m1_120_n692# m1_120_n692# a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788#
++ m1_216_n466# a_172_n788# w_172_376# a_172_n788# m1_216_n466# a_172_n788# m1_120_n692#
++ a_172_n788# a_172_n788# a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# m1_216_n466#
++ a_172_n788# m1_120_n692# a_172_n788# m1_216_n466# a_172_n788# m1_216_n466# m1_216_n466#
++ m1_120_n692# m1_120_n692# m1_120_n692# sky130_fd_pr__pfet_01v8_U4PLGH
+Xsky130_fd_pr__pfet_01v8_PDCJZ5_0 m1_120_n692# a_172_n788# a_172_n788# a_172_n788#
++ w_172_376# a_172_n788# m1_120_n692# w_172_376# m1_120_n692# w_172_376# sky130_fd_pr__pfet_01v8_PDCJZ5
+.ends
+
+.subckt curr_mirror_distribution m2_290_1950# I_in m3_1720_60#
+Xbias_curm_p_6 I_out4 bias_curm_p_6/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_7 I_out8 bias_curm_p_7/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_8 I_out7 bias_curm_p_8/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_0 I_in bias_curm_p_0/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_1 m3_1720_60# bias_curm_p_1/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_2 I_out2 bias_curm_p_2/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_3 I_out3 bias_curm_p_3/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_4 I_out6 bias_curm_p_4/m1_120_n692# I_in m2_290_1950# bias_curm_p
+Xbias_curm_p_5 I_out5 bias_curm_p_5/m1_120_n692# I_in m2_290_1950# bias_curm_p
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_CDW43Z a_100_n50# a_n100_n138# a_n260_n224# a_n158_n50#
+X0 a_100_n50# a_n100_n138# a_n158_n50# a_n260_n224# sky130_fd_pr__nfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=1e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_F8VELN a_n513_n200# a_n129_n200# a_399_n288# a_63_n200#
++ a_n225_n200# a_495_222# a_111_222# a_n321_n200# a_207_n288# a_n33_n200# a_n369_n288#
++ a_n707_n374# a_303_222# a_n605_n200# a_447_n200# a_15_n288# a_n81_222# a_n177_n288#
++ a_n561_n288# a_543_n200# a_159_n200# a_n273_222# a_255_n200# a_351_n200# a_n417_n200#
++ a_n465_222#
+X0 a_n33_n200# a_n81_222# a_n129_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_351_n200# a_303_222# a_255_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_255_n200# a_207_n288# a_159_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n321_n200# a_n369_n288# a_n417_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_543_n200# a_495_222# a_447_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_159_n200# a_111_222# a_63_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_n225_n200# a_n273_222# a_n321_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_447_n200# a_399_n288# a_351_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n513_n200# a_n561_n288# a_n605_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_63_n200# a_15_n288# a_n33_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X10 a_n129_n200# a_n177_n288# a_n225_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n417_n200# a_n465_222# a_n513_n200# a_n707_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_854667 a_n287_n200# a_745_n200# a_n487_n288# a_545_n288#
++ a_229_n200# a_n545_n200# a_29_n288# a_n745_n288# a_487_n200# a_n29_n200# a_n229_n288#
++ a_n905_n374# a_287_n288# a_n803_n200#
+X0 a_745_n200# a_545_n288# a_487_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X1 a_487_n200# a_287_n288# a_229_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X2 a_n29_n200# a_n229_n288# a_n287_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X3 a_229_n200# a_29_n288# a_n29_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+X4 a_n545_n200# a_n745_n288# a_n803_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X5 a_n287_n200# a_n487_n288# a_n545_n200# a_n905_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=1e+06u
+.ends
+
+.subckt tia_cur_mirror m1_71_n690# a_122_42# m1_71_130# m1_167_370# VSUBS
+Xsky130_fd_pr__nfet_01v8_F8VELN_0 m1_167_370# m1_167_370# a_122_42# m1_167_370# m1_71_130#
++ a_122_42# a_122_42# m1_167_370# a_122_42# m1_71_130# a_122_42# VSUBS a_122_42# m1_71_130#
++ m1_167_370# a_122_42# a_122_42# a_122_42# a_122_42# m1_71_130# m1_71_130# a_122_42#
++ m1_167_370# m1_71_130# m1_71_130# a_122_42# sky130_fd_pr__nfet_01v8_F8VELN
+Xsky130_fd_pr__nfet_01v8_854667_0 m1_71_n690# m1_71_n690# a_122_42# a_122_42# m1_71_n690#
++ m1_71_130# a_122_42# a_122_42# m1_71_130# m1_71_130# a_122_42# VSUBS a_122_42# m1_71_n690#
++ sky130_fd_pr__nfet_01v8_854667
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_ZRA4RB a_n523_21# a_n817_n597# a_n1156_n509# a_n523_n87#
++ a_n1209_531# a_608_n509# a_216_109# a_n862_n509# a_n621_n597# a_n1209_n597# a_n568_109#
++ a_n78_n509# a_706_109# a_653_21# a_412_n509# a_653_n87# a_n817_531# a_n327_21# a_n131_n87#
++ a_n78_109# a_n1254_n509# a_n1058_109# a_n1013_n597# a_706_n509# a_n176_109# a_359_n597#
++ a_314_109# a_n176_n509# a_947_531# a_261_n87# a_n960_n509# a_n425_531# a_1143_n597#
++ a_457_21# a_n1111_n87# a_510_n509# a_n666_109# a_804_109# a_65_21# a_163_n597# a_n229_n597#
++ a_n1356_n683# a_n1156_109# a_555_531# a_804_n509# a_n274_n509# a_n915_21# a_n274_109#
++ a_412_109# a_1098_n509# a_n719_n87# a_n33_n597# a_1098_109# a_163_531# a_n764_109#
++ a_902_109# a_n568_n509# a_n33_531# a_n131_21# a_n1013_531# a_118_n509# a_902_n509#
++ a_n1254_109# a_849_n87# a_n719_21# a_n327_n87# a_555_n597# a_n372_n509# a_n1111_21#
++ a_1196_n509# a_1143_531# a_n372_109# a_510_109# a_261_21# a_20_109# a_n621_531#
++ a_1196_109# a_n666_n509# a_1000_109# a_n425_n597# a_849_21# a_n862_109# a_457_n87#
++ a_216_n509# a_1000_n509# a_751_531# a_n470_n509# a_n1058_n509# a_118_109# a_n470_109#
++ a_n229_531# a_n915_n87# a_947_n597# a_n764_n509# a_20_n509# a_608_109# a_1045_21#
++ a_n960_109# a_314_n509# a_65_n87# a_359_531# a_751_n597# a_1045_n87#
+X0 a_n274_109# a_n327_21# a_n372_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X1 a_n764_n509# a_n817_n597# a_n862_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X2 a_706_n509# a_653_n87# a_608_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X3 a_n568_109# a_n621_531# a_n666_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X4 a_n862_109# a_n915_21# a_n960_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X5 a_1196_n509# a_1143_n597# a_1098_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X6 a_1196_109# a_1143_531# a_1098_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X7 a_n1156_n509# a_n1209_n597# a_n1254_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X8 a_n960_109# a_n1013_531# a_n1058_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X9 a_412_109# a_359_531# a_314_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X10 a_n470_n509# a_n523_n87# a_n568_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X11 a_n372_n509# a_n425_n597# a_n470_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X12 a_314_n509# a_261_n87# a_216_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X13 a_706_109# a_653_21# a_608_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X14 a_n862_n509# a_n915_n87# a_n960_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X15 a_n78_109# a_n131_21# a_n176_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X16 a_1000_109# a_947_531# a_902_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X17 a_804_n509# a_751_n597# a_706_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X18 a_n372_109# a_n425_531# a_n470_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X19 a_118_n509# a_65_n87# a_20_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X20 a_n666_109# a_n719_21# a_n764_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X21 a_n78_n509# a_n131_n87# a_n176_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X22 a_n1058_109# a_n1111_21# a_n1156_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X23 a_n568_n509# a_n621_n597# a_n666_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X24 a_412_n509# a_359_n597# a_314_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X25 a_216_109# a_163_531# a_118_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X26 a_118_109# a_65_21# a_20_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X27 a_510_109# a_457_21# a_412_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X28 a_n960_n509# a_n1013_n597# a_n1058_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X29 a_902_n509# a_849_n87# a_804_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X30 a_804_109# a_751_531# a_706_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X31 a_n176_109# a_n229_531# a_n274_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X32 a_n176_n509# a_n229_n597# a_n274_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X33 a_n470_109# a_n523_21# a_n568_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X34 a_n764_109# a_n817_531# a_n862_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X35 a_n666_n509# a_n719_n87# a_n764_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X36 a_510_n509# a_457_n87# a_412_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X37 a_1098_109# a_1045_21# a_1000_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X38 a_608_n509# a_555_n597# a_510_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X39 a_20_109# a_n33_531# a_n78_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X40 a_n1156_109# a_n1209_531# a_n1254_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X41 a_1000_n509# a_947_n597# a_902_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X42 a_1098_n509# a_1045_n87# a_1000_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X43 a_314_109# a_261_21# a_216_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X44 a_n1058_n509# a_n1111_n87# a_n1156_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X45 a_608_109# a_555_531# a_510_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X46 a_n274_n509# a_n327_n87# a_n372_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X47 a_902_109# a_849_21# a_804_109# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X48 a_20_n509# a_n33_n597# a_n78_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X49 a_216_n509# a_163_n597# a_118_n509# a_n1356_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_NZHYX4 a_n568_n518# a_n764_118# a_653_n615# a_n719_n615#
++ a_163_n87# a_n33_n87# a_118_n518# a_n372_n518# a_n523_n615# a_510_118# a_n372_118#
++ a_20_118# a_65_549# a_n666_n518# a_n621_n87# a_163_21# a_n523_549# a_216_n518# a_n470_n518#
++ w_n902_n737# a_118_118# a_n470_118# a_653_549# a_n131_549# a_20_n518# a_n764_n518#
++ a_n229_n87# a_n621_21# a_314_n518# a_608_118# a_65_n615# a_359_n87# a_n33_21# a_261_549#
++ a_608_n518# a_216_118# a_n425_21# a_412_n518# a_n78_n518# a_706_118# a_n568_118#
++ a_457_n615# a_n78_118# a_555_21# a_n719_549# a_706_n518# a_n229_21# a_314_118# a_n176_118#
++ a_n176_n518# a_261_n615# a_n327_n615# a_510_n518# a_n425_n87# a_n666_118# a_359_21#
++ a_n327_549# a_n131_n615# a_n274_n518# a_555_n87# a_457_549# a_412_118# a_n274_118#
+X0 a_n666_n518# a_n719_n615# a_n764_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X1 a_510_n518# a_457_n615# a_412_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X2 a_20_118# a_n33_21# a_n78_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X3 a_608_n518# a_555_n87# a_510_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X4 a_314_118# a_261_549# a_216_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X5 a_608_118# a_555_21# a_510_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X6 a_n274_n518# a_n327_n615# a_n372_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X7 a_20_n518# a_n33_n87# a_n78_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X8 a_216_n518# a_163_n87# a_118_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X9 a_n274_118# a_n327_549# a_n372_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X10 a_706_n518# a_653_n615# a_608_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X11 a_n568_118# a_n621_21# a_n666_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X12 a_412_118# a_359_21# a_314_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X13 a_n470_n518# a_n523_n615# a_n568_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X14 a_n372_n518# a_n425_n87# a_n470_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X15 a_314_n518# a_261_n615# a_216_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X16 a_706_118# a_653_549# a_608_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X17 a_n78_118# a_n131_549# a_n176_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X18 a_n372_118# a_n425_21# a_n470_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X19 a_118_n518# a_65_n615# a_20_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X20 a_n666_118# a_n719_549# a_n764_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X21 a_n78_n518# a_n131_n615# a_n176_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X22 a_n568_n518# a_n621_n87# a_n666_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X23 a_412_n518# a_359_n87# a_314_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X24 a_118_118# a_65_549# a_20_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X25 a_216_118# a_163_21# a_118_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X26 a_510_118# a_457_549# a_412_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X27 a_n176_118# a_n229_21# a_n274_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X28 a_n176_n518# a_n229_n87# a_n274_n518# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X29 a_n470_118# a_n523_549# a_n568_118# w_n902_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+.ends
+
+.subckt rf_transistors m1_2957_359# m1_1943_755# m1_2041_n2774# m1_3839_995# m1_1257_995#
++ m1_1551_n2534# m1_2727_n2534# m1_3643_119# m1_1061_119# m1_1061_n1330# m1_865_995#
++ m1_2237_n1330# m1_571_n2534# m1_1453_n472# m1_1747_359# m1_2761_755# m1_1061_n1916#
++ m1_2237_n1916# m1_3021_n472# m1_767_n712# m1_669_119# m1_1943_n2156# m1_2139_n2534#
++ a_622_n800# m1_1649_n2774# m1_2565_359# m1_1551_755# m1_963_n2156# m1_3447_995#
++ m1_1943_n1090# m1_3251_119# m1_669_n2774# m1_963_n1090# m1_2825_n2774# m1_571_n712#
++ m1_669_n472# m1_1355_359# m1_1159_n712# m1_1845_n1330# m1_1355_n2156# m1_963_359#
++ m1_2041_119# m1_1943_n712# m1_2335_n712# m1_865_n1330# m1_1845_n1916# m1_2369_755#
++ m1_1355_n1090# m1_2531_n2156# m1_3741_755# m1_3055_995# m1_865_n1916# m1_1061_n2774#
++ m1_2237_n2774# m1_2531_n1090# m1_1747_n2534# m1_2859_119# m1_1845_995# m1_1257_n1330#
++ m1_3545_359# m1_1159_755# m1_767_n2534# m1_1845_n472# m1_2237_n472# m1_2923_n2534#
++ m1_767_755# m1_571_359# m1_1257_n1916# a_623_n2862# m1_2433_n1330# m1_1649_119#
++ m1_2663_995# a_622_n2244# m1_2433_n1916# m1_1159_n2534# m1_2467_119# m1_1453_995#
++ m1_2335_n2534# m1_2041_n472# m1_3349_755# a_623_658# m1_1845_n2774# m1_3153_359#
++ m1_963_n712# m1_1943_359# m1_865_n2774# m1_3839_119# m1_1257_119# m1_3021_n1330#
++ m1_865_119# m1_2727_n712# m1_1551_n2156# m1_2727_n2156# m1_2957_755# m1_2761_359#
++ m1_3021_n1916# m1_3643_995# m1_571_n2156# m1_1257_n2774# a_623_22# m1_1061_995#
++ m1_1551_n1090# m1_2727_n1090# m1_865_n472# m1_1355_n712# m1_2433_n2774# m1_1747_755#
++ m1_571_n1090# m1_1943_n2534# m1_1551_359# m1_2629_n472# m1_2531_n712# m1_3447_119#
++ m1_1453_n1330# m1_2629_n1330# m1_2139_n2156# m1_669_995# m1_963_n2534# w_623_22#
++ m1_1453_n1916# m1_2565_755# m1_2139_n1090# m1_2629_n1916# m1_1257_n472# m1_3251_995#
++ a_623_n908# a_2421_658# m1_2433_n472# m1_1355_n2534# m1_2369_359# m1_3741_359# m1_1355_755#
++ m1_3021_n2774# m1_3055_119# m1_963_755# m1_2041_995# m1_2531_n2534# a_2421_22# m1_2041_n1330#
++ m1_1845_119# m1_1061_n472# m1_1159_359# m1_1747_n2156# m1_767_359# m1_2041_n1916#
++ m1_2859_995# m1_767_n2156# m1_1747_n1090# m1_2923_n2156# m1_2663_119# m1_3545_755#
++ m1_1747_n712# m1_1453_n2774# m1_2139_n712# m1_767_n1090# m1_2629_n2774# m1_571_755#
++ m1_2923_n712# m1_2923_n1090# m1_1649_995# m1_1649_n1330# m1_1159_n2156# m1_1453_119#
++ m1_3349_359# m1_669_n1330# m1_1649_n1916# m1_1159_n1090# m1_2825_n1330# m1_2335_n2156#
++ m1_1551_n712# m1_1649_n472# m1_2467_995# m1_669_n1916# m1_3153_755# VSUBS m1_2825_n472#
++ m1_2335_n1090# m1_2825_n1916#
+Xsky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0 a_622_n2244# a_623_n2862# m1_669_n2774# a_623_n2862#
++ a_622_n2244# m1_2433_n2774# m1_2041_n1916# m1_963_n2534# a_623_n2862# a_623_n2862#
++ m1_1257_n1916# m1_1747_n2534# m1_2531_n2156# a_622_n2244# m1_2237_n2774# a_623_n2862#
++ a_622_n2244# a_622_n2244# a_623_n2862# m1_1747_n2156# m1_571_n2534# m1_767_n2156#
++ a_623_n2862# m1_2531_n2534# m1_1649_n1916# a_623_n2862# m1_2139_n2156# m1_1649_n2774#
++ a_622_n2244# a_623_n2862# m1_865_n2774# a_622_n2244# a_623_n2862# a_622_n2244# a_623_n2862#
++ m1_2335_n2534# m1_1159_n2156# m1_2629_n1916# a_622_n2244# a_623_n2862# a_623_n2862#
++ VSUBS m1_669_n1916# a_622_n2244# m1_2629_n2774# m1_1551_n2534# a_622_n2244# m1_1551_n2156#
++ m1_2237_n1916# m1_2923_n2534# a_623_n2862# a_623_n2862# m1_2923_n2156# a_622_n2244#
++ m1_1061_n1916# m1_2727_n2156# m1_1257_n2774# a_622_n2244# a_622_n2244# a_622_n2244#
++ m1_1943_n2534# m1_2727_n2534# m1_571_n2156# a_623_n2862# a_622_n2244# a_623_n2862#
++ a_623_n2862# m1_1453_n2774# a_622_n2244# m1_3021_n2774# a_622_n2244# m1_1453_n1916#
++ m1_2335_n2156# a_622_n2244# m1_1845_n1916# a_622_n2244# m1_3021_n1916# m1_1159_n2534#
++ m1_2825_n1916# a_623_n2862# a_622_n2244# m1_963_n2156# a_623_n2862# m1_2041_n2774#
++ m1_2825_n2774# a_622_n2244# m1_1355_n2534# m1_767_n2534# m1_1943_n2156# m1_1355_n2156#
++ a_622_n2244# a_623_n2862# a_623_n2862# m1_1061_n2774# m1_1845_n2774# m1_2433_n1916#
++ a_622_n2244# m1_865_n1916# m1_2139_n2534# a_623_n2862# a_622_n2244# a_623_n2862#
++ a_623_n2862# sky130_fd_pr__nfet_01v8_lvt_ZRA4RB
+Xsky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1 a_622_n800# a_623_n908# m1_669_n1330# a_623_n908#
++ a_622_n800# m1_2433_n1330# m1_2041_n472# m1_963_n1090# a_623_n908# a_623_n908# m1_1257_n472#
++ m1_1747_n1090# m1_2531_n712# a_622_n800# m1_2237_n1330# a_623_n908# a_622_n800#
++ a_622_n800# a_623_n908# m1_1747_n712# m1_571_n1090# m1_767_n712# a_623_n908# m1_2531_n1090#
++ m1_1649_n472# a_623_n908# m1_2139_n712# m1_1649_n1330# a_622_n800# a_623_n908# m1_865_n1330#
++ a_622_n800# a_623_n908# a_622_n800# a_623_n908# m1_2335_n1090# m1_1159_n712# m1_2629_n472#
++ a_622_n800# a_623_n908# a_623_n908# VSUBS m1_669_n472# a_622_n800# m1_2629_n1330#
++ m1_1551_n1090# a_622_n800# m1_1551_n712# m1_2237_n472# m1_2923_n1090# a_623_n908#
++ a_623_n908# m1_2923_n712# a_622_n800# m1_1061_n472# m1_2727_n712# m1_1257_n1330#
++ a_622_n800# a_622_n800# a_622_n800# m1_1943_n1090# m1_2727_n1090# m1_571_n712# a_623_n908#
++ a_622_n800# a_623_n908# a_623_n908# m1_1453_n1330# a_622_n800# m1_3021_n1330# a_622_n800#
++ m1_1453_n472# m1_2335_n712# a_622_n800# m1_1845_n472# a_622_n800# m1_3021_n472#
++ m1_1159_n1090# m1_2825_n472# a_623_n908# a_622_n800# m1_963_n712# a_623_n908# m1_2041_n1330#
++ m1_2825_n1330# a_622_n800# m1_1355_n1090# m1_767_n1090# m1_1943_n712# m1_1355_n712#
++ a_622_n800# a_623_n908# a_623_n908# m1_1061_n1330# m1_1845_n1330# m1_2433_n472#
++ a_622_n800# m1_865_n472# m1_2139_n1090# a_623_n908# a_622_n800# a_623_n908# a_623_n908#
++ sky130_fd_pr__nfet_01v8_lvt_ZRA4RB
+Xsky130_fd_pr__pfet_01v8_NZHYX4_1 m1_767_359# m1_571_755# a_623_22# a_623_22# a_623_22#
++ a_623_22# m1_1453_119# m1_963_359# a_623_22# m1_1845_995# m1_963_755# m1_1355_755#
++ a_623_658# m1_669_119# a_623_22# a_623_658# a_623_658# m1_1551_359# m1_865_119#
++ w_623_22# m1_1453_995# m1_865_995# a_623_658# a_623_658# m1_1355_359# m1_571_359#
++ a_623_22# a_623_658# m1_1649_119# m1_1943_755# a_623_22# a_623_22# a_623_658# a_623_658#
++ m1_1943_359# m1_1551_755# a_623_658# m1_1747_359# m1_1257_119# m1_2041_995# m1_767_755#
++ a_623_22# m1_1257_995# a_623_658# a_623_658# m1_2041_119# a_623_658# m1_1649_995#
++ m1_1159_755# m1_1159_359# a_623_22# a_623_22# m1_1845_119# a_623_22# m1_669_995#
++ a_623_658# a_623_658# a_623_22# m1_1061_119# a_623_22# a_623_658# m1_1747_755# m1_1061_995#
++ sky130_fd_pr__pfet_01v8_NZHYX4
+Xsky130_fd_pr__pfet_01v8_NZHYX4_2 m1_2565_359# m1_2369_755# a_2421_22# a_2421_22#
++ a_2421_22# a_2421_22# m1_3251_119# m1_2761_359# a_2421_22# m1_3643_995# m1_2761_755#
++ m1_3153_755# a_2421_658# m1_2467_119# a_2421_22# a_2421_658# a_2421_658# m1_3349_359#
++ m1_2663_119# w_623_22# m1_3251_995# m1_2663_995# a_2421_658# a_2421_658# m1_3153_359#
++ m1_2369_359# a_2421_22# a_2421_658# m1_3447_119# m1_3741_755# a_2421_22# a_2421_22#
++ a_2421_658# a_2421_658# m1_3741_359# m1_3349_755# a_2421_658# m1_3545_359# m1_3055_119#
++ m1_3839_995# m1_2565_755# a_2421_22# m1_3055_995# a_2421_658# a_2421_658# m1_3839_119#
++ a_2421_658# m1_3447_995# m1_2957_755# m1_2957_359# a_2421_22# a_2421_22# m1_3643_119#
++ a_2421_22# m1_2467_995# a_2421_658# a_2421_658# a_2421_22# m1_2859_119# a_2421_22#
++ a_2421_658# m1_3545_755# m1_2859_995# sky130_fd_pr__pfet_01v8_NZHYX4
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_ZWVPUJ m4_n2851_n1900# c2_n2751_n1800#
+X0 c2_n2751_n1800# m4_n2851_n1900# sky130_fd_pr__cap_mim_m3_2 l=1.8e+07u w=2.5e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_RRWALQ a_n1041_109# a_n1041_727# a_1119_1149# a_n1185_21#
++ a_n1229_109# a_n1229_727# a_n753_n509# a_879_n1127# a_n81_727# a_447_639# a_n369_n509#
++ a_687_n1127# a_975_n1127# a_n81_109# a_n129_531# a_351_n87# a_399_n1127# a_495_n1127#
++ a_783_n1127# a_n33_n87# a_399_727# a_303_n509# a_591_n1127# a_399_109# a_n513_n597#
++ a_n129_n597# a_n321_639# a_879_109# a_879_727# a_63_n597# a_n273_109# a_n273_727#
++ a_n1089_n597# a_735_21# a_447_531# a_n225_n87# a_n465_n509# a_n753_727# a_n753_109#
++ a_n225_1149# a_15_109# a_15_727# a_n705_n705# a_1167_n509# a_255_n705# a_n321_531#
++ a_927_1149# a_n1185_1149# a_591_109# a_591_727# a_15_n509# a_n609_21# a_1119_21#
++ a_639_639# a_543_n87# a_n561_n509# a_1071_109# a_1071_727# a_1119_n1215# a_n177_n509#
++ a_n993_21# a_n33_n1215# a_207_727# a_n897_639# a_n321_n597# a_111_n509# a_207_109#
++ a_879_n509# a_n513_639# a_n609_n1215# a_n417_n1215# a_n1229_n1127# a_n465_727# a_639_n597#
++ a_n1185_n1215# a_n465_109# a_1023_n597# a_n801_n1215# a_n225_n1215# a_639_531# a_n417_n87#
++ a_n1137_n509# a_n273_n509# a_351_21# a_n945_727# a_n945_109# a_n1331_n1301# a_n897_531#
++ a_975_n509# a_831_639# a_n513_531# a_n513_n705# a_n129_n705# a_735_1149# a_n33_1149#
++ a_783_727# a_927_n1215# a_783_109# a_735_n1215# a_159_n1215# a_735_n87# a_543_n1215#
++ a_n33_21# a_n225_21# a_63_n705# a_351_n1215# a_n1089_n705# a_927_21# a_n1089_639#
++ a_15_n1127# a_n993_n87# a_n177_727# a_n177_109# a_831_531# a_n705_639# a_687_n509#
++ a_n897_n597# a_1071_n509# a_n657_727# a_831_n597# a_n657_109# a_447_n597# a_n993_n1215#
++ a_n609_n87# a_n1137_727# a_n1137_109# a_1023_639# a_n1089_531# a_495_727# a_n993_1149#
++ a_495_109# a_n1137_n1127# a_n705_531# a_111_727# a_n81_n509# a_783_n509# a_111_109#
++ a_n849_n509# a_399_n509# a_n321_n705# a_n1041_n1127# a_975_727# a_543_1149# a_63_639#
++ a_975_109# a_n609_1149# a_159_1149# a_927_n87# a_639_n705# a_n1041_n509# a_1023_n705#
++ a_1023_531# a_n1185_n87# a_543_21# a_n369_727# a_n369_109# a_159_21# a_n801_n87#
++ a_n945_n509# a_495_n509# a_207_n1127# a_n849_109# a_63_531# a_n849_727# a_255_639#
++ a_303_n1127# a_111_n1127# a_n705_n597# a_255_n597# a_1167_n1127# a_n801_21# a_159_n87#
++ a_n81_n1127# a_n417_21# a_1071_n1127# a_687_727# a_n1229_n509# a_687_109# a_303_727#
++ a_n849_n1127# a_303_109# a_1167_727# a_591_n509# a_1167_109# a_n657_n509# a_n945_n1127#
++ a_n657_n1127# a_n369_n1127# a_n897_n705# a_255_531# a_n129_639# a_n801_1149# a_1119_n87#
++ a_n753_n1127# a_n465_n1127# a_n177_n1127# a_351_1149# a_n561_n1127# a_n561_727#
++ a_n417_1149# a_n273_n1127# a_n561_109# a_831_n705# a_207_n509# a_447_n705#
+X0 a_111_727# a_63_639# a_15_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_15_109# a_n33_21# a_n81_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_1071_n509# a_1023_n597# a_975_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n81_727# a_n129_639# a_n177_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_727# a_n321_639# a_n369_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n177_727# a_n225_1149# a_n273_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 a_399_n509# a_351_n87# a_303_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_399_n1127# a_351_n1215# a_303_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_111_109# a_63_531# a_15_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_n465_n509# a_n513_n597# a_n561_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_n81_109# a_n129_531# a_n177_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X11 a_879_n1127# a_831_n705# a_783_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n273_109# a_n321_531# a_n369_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X13 a_687_n509# a_639_n597# a_591_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_1071_n1127# a_1023_n705# a_975_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X15 a_n177_109# a_n225_21# a_n273_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 a_n81_n1127# a_n129_n705# a_n177_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_n753_n509# a_n801_n87# a_n849_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X18 a_495_n1127# a_447_n705# a_399_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n657_n1127# a_n705_n705# a_n753_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_975_n509# a_927_n87# a_879_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X21 a_975_n1127# a_927_n1215# a_879_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 a_n1137_n1127# a_n1185_n1215# a_n1229_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X23 a_n81_n509# a_n129_n597# a_n177_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X24 a_15_n509# a_n33_n87# a_n81_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X25 a_591_n1127# a_543_n1215# a_495_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X26 a_n753_n1127# a_n801_n1215# a_n849_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_n369_n509# a_n417_n87# a_n465_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_n1041_n509# a_n1089_n597# a_n1137_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X29 a_15_n1127# a_n33_n1215# a_n81_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_n657_n509# a_n705_n597# a_n753_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_879_n509# a_831_n597# a_783_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X32 a_n945_n509# a_n993_n87# a_n1041_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X33 a_1167_n509# a_1119_n87# a_1071_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X34 a_1167_n1127# a_1119_n1215# a_1071_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X35 a_n177_n1127# a_n225_n1215# a_n273_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X36 a_303_n509# a_255_n597# a_207_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X37 a_n273_n509# a_n321_n597# a_n369_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X38 a_303_727# a_255_639# a_207_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X39 a_591_727# a_543_1149# a_495_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_591_n509# a_543_n87# a_495_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X41 a_783_727# a_735_1149# a_687_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X42 a_495_727# a_447_639# a_399_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X43 a_207_727# a_159_1149# a_111_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 a_207_n1127# a_159_n1215# a_111_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X45 a_111_n1127# a_63_n705# a_15_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_n273_n1127# a_n321_n705# a_n369_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X47 a_975_727# a_927_1149# a_879_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X48 a_687_727# a_639_639# a_591_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 a_399_727# a_351_1149# a_303_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 a_n369_n1127# a_n417_n1215# a_n465_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X51 a_879_727# a_831_639# a_783_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 a_687_n1127# a_639_n705# a_591_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X53 a_n1041_727# a_n1089_639# a_n1137_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X54 a_n849_n1127# a_n897_n705# a_n945_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X55 a_n1137_727# a_n1185_1149# a_n1229_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X56 a_n849_n509# a_n897_n597# a_n945_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 a_1071_727# a_1023_639# a_975_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X58 a_n561_727# a_n609_1149# a_n657_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X59 a_303_n1127# a_255_n705# a_207_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 a_1167_727# a_1119_1149# a_1071_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X61 a_n465_727# a_n513_639# a_n561_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X62 a_n753_727# a_n801_1149# a_n849_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X63 a_n945_727# a_n993_1149# a_n1041_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X64 a_207_n509# a_159_n87# a_111_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X65 a_591_109# a_543_21# a_495_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X66 a_303_109# a_255_531# a_207_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X67 a_n369_727# a_n417_1149# a_n465_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 a_n657_727# a_n705_639# a_n753_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 a_n465_n1127# a_n513_n705# a_n561_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X70 a_207_109# a_159_21# a_111_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 a_n849_727# a_n897_639# a_n945_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X72 a_783_n1127# a_735_n1215# a_687_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 a_n177_n509# a_n225_n87# a_n273_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 a_783_109# a_735_21# a_687_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X75 a_495_109# a_447_531# a_399_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X76 a_687_109# a_639_531# a_591_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X77 a_399_109# a_351_21# a_303_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 a_975_109# a_927_21# a_879_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X79 a_n945_n1127# a_n993_n1215# a_n1041_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X80 a_879_109# a_831_531# a_783_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 a_n1041_109# a_n1089_531# a_n1137_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X82 a_15_727# a_n33_1149# a_n81_727# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X83 a_495_n509# a_447_n597# a_399_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 a_n1137_109# a_n1185_21# a_n1229_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X85 a_n1137_n509# a_n1185_n87# a_n1229_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X86 a_1071_109# a_1023_531# a_975_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X87 a_n561_n1127# a_n609_n1215# a_n657_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 a_n1041_n1127# a_n1089_n705# a_n1137_n1127# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 a_n561_109# a_n609_21# a_n657_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X90 a_n561_n509# a_n609_n87# a_n657_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 a_1167_109# a_1119_21# a_1071_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X92 a_n465_109# a_n513_531# a_n561_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X93 a_n753_109# a_n801_21# a_n849_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X94 a_111_n509# a_63_n597# a_15_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X95 a_n369_109# a_n417_21# a_n465_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 a_n657_109# a_n705_531# a_n753_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 a_n945_109# a_n993_21# a_n1041_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X98 a_783_n509# a_735_n87# a_687_n509# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X99 a_n849_109# a_n897_531# a_n945_109# a_n1331_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt dis_tran m1_1422_1633# m1_1038_1633# m1_174_1015# m1_2190_775# m1_1326_157#
++ m1_78_2011# m1_750_1393# m1_1806_775# m1_558_157# m1_366_1393# m1_462_2011# m1_2094_1015#
++ m1_1422_397# m1_270_1633# m1_1134_1015# m1_654_397# m1_2286_1393# m1_1710_1393#
++ m1_2382_2011# m1_1326_1393# m1_270_775# m1_1422_2011# m1_1038_775# m1_1038_2011#
++ m1_2190_1633# m1_942_2251# m1_750_157# m1_558_2251# m1_1230_1633# m1_1518_157# m1_1998_1633#
++ m1_2382_775# m1_174_1393# m1_1998_397# m1_2478_2251# m1_270_2011# m1_78_775# m1_1614_397#
++ m1_1902_2251# m1_1518_2251# m1_846_397# m1_90_1210# m1_1230_775# m1_2094_1393# m1_846_1633#
++ m1_1134_1393# m1_462_775# m1_2190_2011# m1_1710_157# m1_90_1830# m1_1230_2011# m1_2094_157#
++ m1_1998_2011# m1_942_157# m1_750_2251# m1_366_2251# m1_1806_1633# m1_942_1015# m1_2190_397#
++ m1_558_1015# m1_1806_397# m1_90_590# m1_2286_2251# m1_1710_2251# m1_1326_2251# m1_1422_775#
++ m1_174_157# m1_846_2011# m1_2478_1015# m1_90_2440# m1_654_775# m1_1902_1015# m1_1902_157#
++ m1_654_1633# m1_1518_1015# m1_2286_157# m1_270_397# m1_1038_397# m1_174_2251# m1_1806_2011#
++ m1_2382_397# m1_1614_1633# m1_750_1015# m1_366_1015# m1_1134_157# m1_2094_2251#
++ m1_942_1393# m1_1998_775# m1_558_1393# m1_78_1633# m1_1614_775# m1_78_397# m1_1134_2251#
++ m1_366_157# m1_654_2011# m1_2286_1015# m1_846_775# m1_90_70# m1_1710_1015# m1_1230_397#
++ m1_462_1633# m1_2478_157# m1_1326_1015# m1_2478_1393# m1_462_397# m1_1902_1393#
++ m1_1518_1393# m1_1614_2011# m1_2382_1633# VSUBS
+Xsky130_fd_pr__nfet_01v8_RRWALQ_0 m1_270_1633# m1_270_2011# m1_90_2440# m1_90_1210#
++ m1_78_1633# m1_78_2011# m1_558_1015# m1_2190_397# m1_1230_2011# m1_90_1830# m1_942_1015#
++ m1_1998_397# m1_2286_157# m1_1230_1633# m1_90_1830# m1_90_1210# m1_1710_157# m1_1806_397#
++ m1_2094_157# m1_90_1210# m1_1710_2251# m1_1614_775# m1_1902_157# m1_1710_1393# m1_90_590#
++ m1_90_590# m1_90_1830# m1_2190_1633# m1_2190_2011# m1_90_590# m1_1038_1633# m1_1038_2011#
++ m1_90_590# m1_90_1210# m1_90_1830# m1_90_1210# m1_846_775# m1_558_2251# m1_558_1393#
++ m1_90_2440# m1_1326_1393# m1_1326_2251# m1_90_590# m1_2478_1015# m1_90_590# m1_90_1830#
++ m1_90_2440# m1_90_2440# m1_1902_1393# m1_1902_2251# m1_1326_1015# m1_90_1210# m1_90_1210#
++ m1_90_1830# m1_90_1210# m1_750_1015# m1_2382_1633# m1_2382_2011# m1_90_70# m1_1134_1015#
++ m1_90_1210# m1_90_70# m1_1518_2251# m1_90_1830# m1_90_590# m1_1422_775# m1_1518_1393#
++ m1_2190_775# m1_90_1830# m1_90_70# m1_90_70# m1_78_397# m1_846_2011# m1_90_590#
++ m1_90_70# m1_846_1633# m1_90_590# m1_90_70# m1_90_70# m1_90_1830# m1_90_1210# m1_174_1015#
++ m1_1038_775# m1_90_1210# m1_366_2251# m1_366_1393# VSUBS m1_90_1830# m1_2286_1015#
++ m1_90_1830# m1_90_1830# m1_90_590# m1_90_590# m1_90_2440# m1_90_2440# m1_2094_2251#
++ m1_90_70# m1_2094_1393# m1_90_70# m1_90_70# m1_90_1210# m1_90_70# m1_90_1210# m1_90_1210#
++ m1_90_590# m1_90_70# m1_90_590# m1_90_1210# m1_90_1830# m1_1326_157# m1_90_1210#
++ m1_1134_2251# m1_1134_1393# m1_90_1830# m1_90_1830# m1_1998_775# m1_90_590# m1_2382_775#
++ m1_654_2011# m1_90_590# m1_654_1633# m1_90_590# m1_90_70# m1_90_1210# m1_174_2251#
++ m1_174_1393# m1_90_1830# m1_90_1830# m1_1806_2011# m1_90_2440# m1_1806_1633# m1_174_157#
++ m1_90_1830# m1_1422_2011# m1_1230_775# m1_2094_1015# m1_1422_1633# m1_462_775# m1_1710_1015#
++ m1_90_590# m1_270_397# m1_2286_2251# m1_90_2440# m1_90_1830# m1_2286_1393# m1_90_2440#
++ m1_90_2440# m1_90_1210# m1_90_590# m1_270_775# m1_90_590# m1_90_1830# m1_90_1210#
++ m1_90_1210# m1_942_2251# m1_942_1393# m1_90_1210# m1_90_1210# m1_366_1015# m1_1806_775#
++ m1_1518_157# m1_462_1633# m1_90_1830# m1_462_2011# m1_90_1830# m1_1614_397# m1_1422_397#
++ m1_90_590# m1_90_590# m1_2478_157# m1_90_1210# m1_90_1210# m1_1230_397# m1_90_1210#
++ m1_2382_397# m1_1998_2011# m1_78_775# m1_1998_1633# m1_1614_2011# m1_462_397# m1_1614_1633#
++ m1_2478_2251# m1_1902_1015# m1_2478_1393# m1_654_775# m1_366_157# m1_654_397# m1_942_157#
++ m1_90_590# m1_90_1830# m1_90_1830# m1_90_2440# m1_90_1210# m1_558_157# m1_846_397#
++ m1_1134_157# m1_90_2440# m1_750_157# m1_750_2251# m1_90_2440# m1_1038_397# m1_750_1393#
++ m1_90_590# m1_1518_1015# m1_90_590# sky130_fd_pr__nfet_01v8_RRWALQ
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_GYVK57 a_n819_n200# a_n345_n200# a_29_n297# a_n129_n297#
++ a_187_n297# a_129_n200# a_n503_n200# a_n287_n297# a_345_n297# a_287_n200# a_n661_n200#
++ a_n445_n297# a_503_n297# a_445_n200# a_n603_n297# a_661_n297# w_n957_n419# a_603_n200#
++ a_n761_n297# a_761_n200# a_n29_n200# a_n187_n200#
+X0 a_n187_n200# a_n287_n297# a_n345_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_761_n200# a_661_n297# a_603_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_287_n200# a_187_n297# a_129_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n345_n200# a_n445_n297# a_n503_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X4 a_129_n200# a_29_n297# a_n29_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X5 a_445_n200# a_345_n297# a_287_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X6 a_n503_n200# a_n603_n297# a_n661_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X7 a_n29_n200# a_n129_n297# a_n187_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X8 a_603_n200# a_503_n297# a_445_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X9 a_n661_n200# a_n761_n297# a_n819_n200# w_n957_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_62U3RB a_608_n509# a_216_109# a_163_n87# a_n33_n87#
++ a_n327_531# a_n866_n683# a_n78_n509# a_n568_109# a_412_n509# a_706_109# a_n78_109#
++ a_457_531# a_706_n509# a_65_n597# a_n621_n87# a_n176_n509# a_314_109# a_n176_109#
++ a_163_21# a_510_n509# a_n666_109# a_n229_n87# a_n621_21# a_n274_n509# a_457_n597#
++ a_412_109# a_n274_109# a_65_531# a_n523_531# a_359_n87# a_n33_21# a_n568_n509# a_261_n597#
++ a_n327_n597# a_n764_109# a_118_n509# a_n425_21# a_653_531# a_n131_531# a_n372_n509#
++ a_n131_n597# a_510_109# a_n372_109# a_20_109# a_555_21# a_n666_n509# a_261_531#
++ a_n229_21# a_216_n509# a_653_n597# a_n470_n509# a_n425_n87# a_n719_n597# a_118_109#
++ a_n470_109# a_359_21# a_20_n509# a_n764_n509# a_n523_n597# a_608_109# a_314_n509#
++ a_555_n87# a_n719_531#
+X0 a_n274_109# a_n327_531# a_n372_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X1 a_706_n509# a_653_n597# a_608_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X2 a_n568_109# a_n621_21# a_n666_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X3 a_412_109# a_359_21# a_314_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X4 a_n470_n509# a_n523_n597# a_n568_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X5 a_n372_n509# a_n425_n87# a_n470_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X6 a_314_n509# a_261_n597# a_216_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X7 a_706_109# a_653_531# a_608_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X8 a_n78_109# a_n131_531# a_n176_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X9 a_n372_109# a_n425_21# a_n470_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X10 a_118_n509# a_65_n597# a_20_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X11 a_n666_109# a_n719_531# a_n764_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X12 a_n78_n509# a_n131_n597# a_n176_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X13 a_n568_n509# a_n621_n87# a_n666_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X14 a_412_n509# a_359_n87# a_314_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X15 a_216_109# a_163_21# a_118_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X16 a_118_109# a_65_531# a_20_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X17 a_510_109# a_457_531# a_412_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X18 a_n176_109# a_n229_21# a_n274_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X19 a_n176_n509# a_n229_n87# a_n274_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X20 a_n470_109# a_n523_531# a_n568_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X21 a_n666_n509# a_n719_n597# a_n764_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=200000u
+X22 a_510_n509# a_457_n597# a_412_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=200000u
+X23 a_608_n509# a_555_n87# a_510_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X24 a_20_109# a_n33_21# a_n78_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X25 a_314_109# a_261_531# a_216_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X26 a_608_109# a_555_21# a_510_109# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X27 a_n274_n509# a_n327_n597# a_n372_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X28 a_20_n509# a_n33_n87# a_n78_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+X29 a_216_n509# a_163_n87# a_118_n509# a_n866_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=200000u
+.ends
+
+.subckt fb_transistor m1_6753_3028# m1_6285_4403# sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#
++ m1_6459_2410# m1_7145_3028# m1_5871_3268# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#
++ m1_6263_3268# m1_7145_2650# m1_6753_2650# m1_6917_4403# m1_6263_2410# m1_5871_2410#
++ m1_7233_4403# w_5706_2166# sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297# m1_6127_4163#
++ a_5923_2832# m1_6759_4163# m1_5969_3028# m1_7075_4163# sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#
++ m1_5969_2650# m1_6655_3268# m1_6601_4403# m1_7047_3268# m1_6165_3028# m1_7047_2410#
++ m1_6655_2410# m1_7341_3028# m1_6165_2650# m1_6443_4163# m1_7341_2650# m1_7391_4163#
++ sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#
++ m1_5811_4163# m1_6557_3028# m1_6851_3268# m1_6067_3268# sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#
++ m1_6557_2650# m1_7243_3268# m1_6067_2410# m1_6361_3028# a_5923_3450# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#
++ m1_7243_2410# m1_6851_2410# m1_6361_2650# sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#
++ m1_6949_3028# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297# m1_6949_2650# m1_6459_3268#
++ m1_5969_4403# dw_5500_1960#
+Xsky130_fd_pr__pfet_01v8_GYVK57_0 m1_5811_4163# m1_6285_4403# sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#
++ sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297# sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#
++ m1_6759_4163# m1_6127_4163# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297# sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#
++ m1_6917_4403# m1_5969_4403# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297# sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#
++ m1_7075_4163# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297# sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#
++ dw_5500_1960# m1_7233_4403# sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297# m1_7391_4163#
++ m1_6601_4403# m1_6443_4163# sky130_fd_pr__pfet_01v8_GYVK57
+Xsky130_fd_pr__nfet_01v8_lvt_62U3RB_0 m1_7243_2410# m1_6851_3268# a_5923_2832# a_5923_2832#
++ a_5923_3450# w_5706_2166# m1_6557_2650# m1_6067_3268# m1_7047_2410# m1_7341_3028#
++ m1_6557_3028# a_5923_3450# m1_7341_2650# a_5923_2832# a_5923_2832# m1_6459_2410#
++ m1_6949_3028# m1_6459_3268# a_5923_3450# m1_7145_2650# m1_5969_3028# a_5923_2832#
++ a_5923_3450# m1_6361_2650# a_5923_2832# m1_7047_3268# m1_6361_3028# a_5923_3450#
++ a_5923_3450# a_5923_2832# a_5923_3450# m1_6067_2410# a_5923_2832# a_5923_2832# m1_5871_3268#
++ m1_6753_2650# a_5923_3450# a_5923_3450# a_5923_3450# m1_6263_2410# a_5923_2832#
++ m1_7145_3028# m1_6263_3268# m1_6655_3268# a_5923_3450# m1_5969_2650# a_5923_3450#
++ a_5923_3450# m1_6851_2410# a_5923_2832# m1_6165_2650# a_5923_2832# a_5923_2832#
++ m1_6753_3028# m1_6165_3028# a_5923_3450# m1_6655_2410# m1_5871_2410# a_5923_2832#
++ m1_7243_3268# m1_6949_2650# a_5923_2832# a_5923_3450# sky130_fd_pr__nfet_01v8_lvt_62U3RB
+.ends
+
+.subckt tia_one_tia m1_n1960_n3240# m1_1850_2290# m2_1800_2380# tia_cur_mirror_0/m1_71_130#
++ w_1686_386# w_1650_2620# tia_cur_mirror_0/a_122_42# m2_n1840_n2910# VSUBS m1_1540_1550#
+Xtia_cur_mirror_0 VSUBS tia_cur_mirror_0/a_122_42# tia_cur_mirror_0/m1_71_130# w_1686_386#
++ VSUBS tia_cur_mirror
+Xrf_transistors_0 m1_1540_1550# m1_1540_1550# m2_n1840_n2910# w_1650_2620# w_1650_2620#
++ m1_1540_1550# m1_1540_1550# w_1650_2620# w_1650_2620# m2_n1840_n2910# w_1650_2620#
++ m2_n1840_n2910# m1_1540_1550# m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m2_n1840_n2910#
++ m2_n1840_n2910# m2_n1840_n2910# m1_1540_1550# w_1650_2620# m1_1540_1550# m1_1540_1550#
++ w_1686_386# m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m1_1540_1550# w_1650_2620#
++ m1_1540_1550# w_1650_2620# m2_n1840_n2910# m1_1540_1550# m2_n1840_n2910# m1_1540_1550#
++ m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m1_1540_1550# m1_1540_1550#
++ w_1650_2620# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m2_n1840_n2910# m1_1540_1550#
++ m1_1540_1550# m1_1540_1550# m1_1540_1550# w_1650_2620# m2_n1840_n2910# m2_n1840_n2910#
++ m2_n1840_n2910# m1_1540_1550# m1_1540_1550# w_1650_2620# w_1650_2620# m2_n1840_n2910#
++ m1_1540_1550# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m2_n1840_n2910# m1_1540_1550#
++ m1_1540_1550# m1_1540_1550# m2_n1840_n2910# w_1686_386# m2_n1840_n2910# w_1650_2620#
++ w_1650_2620# w_1686_386# m2_n1840_n2910# m1_1540_1550# w_1650_2620# w_1650_2620#
++ m1_1540_1550# m2_n1840_n2910# m1_1540_1550# w_1686_386# m2_n1840_n2910# m1_1540_1550#
++ m1_1540_1550# m1_1540_1550# m2_n1840_n2910# w_1650_2620# w_1650_2620# m2_n1840_n2910#
++ w_1650_2620# m1_1540_1550# m1_1540_1550# m1_1540_1550# m1_1540_1550# m1_1540_1550#
++ m2_n1840_n2910# w_1650_2620# m1_1540_1550# m2_n1840_n2910# w_1686_386# w_1650_2620#
++ m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m1_1540_1550# m2_n1840_n2910# m1_1540_1550#
++ m1_1540_1550# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m1_1540_1550# w_1650_2620#
++ m2_n1840_n2910# m2_n1840_n2910# m1_1540_1550# w_1650_2620# m1_1540_1550# w_1650_2620#
++ m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m2_n1840_n2910# w_1650_2620#
++ w_1686_386# w_1686_386# m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m1_1540_1550#
++ m1_1540_1550# m2_n1840_n2910# w_1650_2620# m1_1540_1550# w_1650_2620# m1_1540_1550#
++ w_1686_386# m2_n1840_n2910# w_1650_2620# m2_n1840_n2910# m1_1540_1550# m1_1540_1550#
++ m1_1540_1550# m2_n1840_n2910# w_1650_2620# m1_1540_1550# m1_1540_1550# m1_1540_1550#
++ w_1650_2620# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# m1_1540_1550# m1_1540_1550#
++ m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m1_1540_1550# w_1650_2620# m2_n1840_n2910#
++ m1_1540_1550# w_1650_2620# m1_1540_1550# m2_n1840_n2910# m2_n1840_n2910# m1_1540_1550#
++ m2_n1840_n2910# m1_1540_1550# m1_1540_1550# m2_n1840_n2910# w_1650_2620# m2_n1840_n2910#
++ m1_1540_1550# VSUBS m2_n1840_n2910# m1_1540_1550# m2_n1840_n2910# rf_transistors
+Xsky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0 m2_n1840_n2910# w_1650_2620# sky130_fd_pr__cap_mim_m3_2_ZWVPUJ
+Xdis_tran_0 m2_n1840_n2910# m2_n1840_n2910# VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910#
++ VSUBS m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910# m2_n1840_n2910#
++ VSUBS m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910# m2_n1840_n2910#
++ m2_n1840_n2910# m2_n1840_n2910# m2_n1840_n2910# VSUBS VSUBS VSUBS m2_n1840_n2910#
++ VSUBS m2_n1840_n2910# m2_n1840_n2910# VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910#
++ m2_n1840_n2910# m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910# m1_n1960_n3240# m2_n1840_n2910#
++ VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910# m2_n1840_n2910# VSUBS m1_n1960_n3240#
++ m2_n1840_n2910# VSUBS m2_n1840_n2910# VSUBS VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910#
++ VSUBS m2_n1840_n2910# m1_n1960_n3240# VSUBS VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910#
++ VSUBS m1_n1960_n3240# m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910#
++ m2_n1840_n2910# VSUBS m2_n1840_n2910# m2_n1840_n2910# m2_n1840_n2910# VSUBS VSUBS
++ VSUBS VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910# m2_n1840_n2910# m2_n1840_n2910#
++ VSUBS VSUBS m2_n1840_n2910# VSUBS m2_n1840_n2910# m1_n1960_n3240# VSUBS m2_n1840_n2910#
++ m2_n1840_n2910# VSUBS VSUBS VSUBS m2_n1840_n2910# VSUBS VSUBS m2_n1840_n2910# m2_n1840_n2910#
++ VSUBS dis_tran
+Xfb_transistor_0 w_1686_386# w_1650_2620# m1_1850_2290# m2_1800_2380# w_1686_386#
++ m2_1800_2380# m1_1850_2290# m2_1800_2380# w_1686_386# w_1686_386# w_1650_2620# m2_1800_2380#
++ m2_1800_2380# w_1650_2620# w_1686_386# m1_1850_2290# m2_1800_2380# m1_1540_1550#
++ m2_1800_2380# w_1686_386# m2_1800_2380# m1_1850_2290# w_1686_386# m2_1800_2380#
++ w_1650_2620# m2_1800_2380# w_1686_386# m2_1800_2380# m2_1800_2380# w_1686_386# w_1686_386#
++ m2_1800_2380# w_1686_386# m2_1800_2380# m1_1850_2290# m1_1850_2290# m2_1800_2380#
++ w_1686_386# m2_1800_2380# m2_1800_2380# m1_1850_2290# w_1686_386# m2_1800_2380#
++ m2_1800_2380# w_1686_386# m1_1540_1550# m1_1850_2290# m2_1800_2380# m2_1800_2380#
++ w_1686_386# m1_1850_2290# w_1686_386# m1_1850_2290# w_1686_386# m2_1800_2380# w_1650_2620#
++ w_1650_2620# fb_transistor
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_GCYTE7 a_100_n50# w_n296_n269# a_n158_n50# a_n100_n147#
+X0 a_100_n50# a_n100_n147# a_n158_n50# w_n296_n269# sky130_fd_pr__pfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=1e+06u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_J5CT7Z c1_n1550_n1200# m3_n1650_n1300#
+X0 c1_n1550_n1200# m3_n1650_n1300# sky130_fd_pr__cap_mim_m3_1 l=1.2e+07u w=1.5e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_var_lvt_MZUN4J a_n2040_n588# w_1507_n618# w_n2173_n618#
++ w_n333_n618# a_n1120_n588# w_587_n618# w_n1253_n618# a_n200_n588# a_1640_n588# a_720_n588#
+X0 a_n200_n588# w_n333_n618# w_n333_n618# sky130_fd_pr__cap_var_lvt pd=2.194e+07u ps=0u ad=0p as=0p w=5e+06u l=2e+06u
+X1 a_n1120_n588# w_n1253_n618# w_n1253_n618# sky130_fd_pr__cap_var_lvt pd=2.194e+07u ps=0u ad=0p as=0p w=5e+06u l=2e+06u
+X2 a_720_n588# w_587_n618# w_587_n618# sky130_fd_pr__cap_var_lvt pd=2.194e+07u ps=0u ad=0p as=0p w=5e+06u l=2e+06u
+X3 a_1640_n588# w_1507_n618# w_1507_n618# sky130_fd_pr__cap_var_lvt pd=2.194e+07u ps=0u ad=0p as=0p w=5e+06u l=2e+06u
+X4 a_n2040_n588# w_n2173_n618# w_n2173_n618# sky130_fd_pr__cap_var_lvt pd=2.194e+07u ps=0u ad=0p as=0p w=5e+06u l=2e+06u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0 m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_SC2JGL a_15_n200# a_n177_n200# a_111_n200# a_159_n288#
++ a_63_222# a_n81_n200# a_n129_222# a_n269_n200# a_207_n200# a_n225_n288# a_n371_n374#
++ a_n33_n288#
+X0 a_n81_n200# a_n129_222# a_n177_n200# a_n371_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_n288# a_n81_n200# a_n371_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_207_n200# a_159_n288# a_111_n200# a_n371_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n177_n200# a_n225_n288# a_n269_n200# a_n371_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_111_n200# a_63_222# a_15_n200# a_n371_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt tia_core VPP Out_2 Out_1 Disable_TIA I_Bias1 Out_ref VM39D Input VN
+Xsky130_fd_pr__nfet_01v8_CDW43Z_0 VN Disable_TIA VN Disable_TIA_B sky130_fd_pr__nfet_01v8_CDW43Z
+Xtia_cur_mirror_0 VN I_Bias1 VM6D I_Bias1 VN tia_cur_mirror
+Xtia_one_tia_0 Disable_TIA_B VN Out_2 VM5D Input VPP I_Bias1 VM28D VN Out_1 tia_one_tia
+Xtia_one_tia_1 Disable_TIA_B VN VM31D VM36D VM39D VPP I_Bias1 VM40D VN Out_ref tia_one_tia
+Xsky130_fd_pr__pfet_01v8_GCYTE7_0 VPP VPP Disable_TIA_B Disable_TIA sky130_fd_pr__pfet_01v8_GCYTE7
+Xsky130_fd_pr__cap_mim_m3_1_J5CT7Z_1 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1_J5CT7Z
+Xsky130_fd_pr__cap_mim_m3_1_J5CT7Z_0 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1_J5CT7Z
+Xsky130_fd_pr__cap_var_lvt_MZUN4J_0 Disable_TIA_B VN VN VN Disable_TIA_B VN VN Disable_TIA_B
++ Disable_TIA_B Disable_TIA_B sky130_fd_pr__cap_var_lvt_MZUN4J
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 VN VPP sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VN VPP sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0
+Xsky130_fd_pr__nfet_01v8_SC2JGL_0 VN VN I_Bias1 Disable_TIA Disable_TIA I_Bias1 Disable_TIA
++ I_Bias1 VN Disable_TIA VN Disable_TIA sky130_fd_pr__nfet_01v8_SC2JGL
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X6 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X7 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X10 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X11 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_XZXALN a_n129_727# a_n129_109# a_n369_21# a_n177_n1215#
++ a_n605_n1127# a_n465_n597# a_255_n509# a_n561_n1215# a_n707_n1301# a_495_n705# a_n273_639#
++ a_15_1149# a_399_21# a_n561_1149# a_447_727# a_n81_531# a_447_109# a_399_n1215#
++ a_n177_1149# a_351_n509# a_n417_n509# a_n177_n87# a_n321_727# a_n321_109# a_111_n597#
++ a_63_n1127# a_n273_531# a_n273_n597# a_n513_n509# a_n33_n1127# a_n129_n509# a_159_727#
++ a_159_109# a_303_n705# a_63_n509# a_n417_n1127# a_n129_n1127# a_n465_639# a_n513_n1127#
++ a_n225_n1127# a_n321_n1127# a_n369_n87# a_n225_n509# a_n465_n705# a_n513_727# a_n513_109#
++ a_n465_531# a_159_n1127# a_447_n1127# a_255_n1127# a_543_n1127# a_351_n1127# a_351_727#
++ a_351_109# a_n321_n509# a_n33_727# a_n33_109# a_399_1149# a_n81_n597# a_111_n705#
++ a_n561_n87# a_n225_727# a_n225_109# a_495_639# a_n273_n705# a_15_n1215# a_111_639#
++ a_n561_21# a_n177_21# a_n33_n509# a_495_n597# a_207_21# a_399_n87# a_543_727# a_543_109#
++ a_495_531# a_111_531# a_n605_n509# a_63_727# a_63_109# a_447_n509# a_15_n87# a_207_1149#
++ a_n605_727# a_15_21# a_n605_109# a_n417_727# a_n417_109# a_303_639# a_207_n1215#
++ a_n369_1149# a_255_727# a_255_109# a_543_n509# a_159_n509# a_n81_n705# a_207_n87#
++ a_303_n597# a_303_531# a_n81_639# a_n369_n1215#
+X0 a_n129_n509# a_n177_n87# a_n225_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n1127# a_n369_n1215# a_n417_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n417_n509# a_n465_n597# a_n513_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n33_727# a_n81_639# a_n129_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_351_727# a_303_639# a_255_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_159_727# a_111_639# a_63_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_255_727# a_207_1149# a_159_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_447_727# a_399_1149# a_351_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X8 a_543_727# a_495_639# a_447_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_63_n1127# a_15_n1215# a_n33_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_159_n1127# a_111_n705# a_63_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n33_109# a_n81_531# a_n129_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n33_n509# a_n81_n597# a_n129_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_351_n509# a_303_n597# a_255_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n321_727# a_n369_1149# a_n417_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X15 a_255_n1127# a_207_n1215# a_159_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_n513_727# a_n561_1149# a_n605_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X17 a_n417_727# a_n465_639# a_n513_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n225_727# a_n273_639# a_n321_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n129_727# a_n177_1149# a_n225_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 a_255_109# a_207_21# a_159_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X21 a_351_109# a_303_531# a_255_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X22 a_543_109# a_495_531# a_447_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_n417_n1127# a_n465_n705# a_n513_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X24 a_159_109# a_111_531# a_63_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_447_109# a_399_21# a_351_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 a_n513_n1127# a_n561_n1215# a_n605_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X27 a_351_n1127# a_303_n705# a_255_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_n513_109# a_n561_21# a_n605_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X29 a_n321_109# a_n369_21# a_n417_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X30 a_n225_109# a_n273_531# a_n321_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_n417_109# a_n465_531# a_n513_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 a_n129_109# a_n177_21# a_n225_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_255_n509# a_207_n87# a_159_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_n321_n509# a_n369_n87# a_n417_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X35 a_63_727# a_15_1149# a_n33_727# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_543_n509# a_495_n597# a_447_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X37 a_n33_n1127# a_n81_n705# a_n129_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X38 a_63_109# a_15_21# a_n33_109# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 a_159_n509# a_111_n597# a_63_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_n225_n509# a_n273_n597# a_n321_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 a_447_n509# a_399_n87# a_351_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n129_n1127# a_n177_n1215# a_n225_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X43 a_447_n1127# a_399_n1215# a_351_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n513_n509# a_n561_n87# a_n605_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X45 a_63_n509# a_15_n87# a_n33_n509# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_n225_n1127# a_n273_n705# a_n321_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_543_n1127# a_495_n705# a_447_n1127# a_n707_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_currm_n m1_76_644# m1_n20_420# a_42_42# VSUBS
+Xsky130_fd_pr__nfet_01v8_HR8DH9_0 a_42_42# a_42_42# VSUBS a_42_42# m1_n20_420# a_42_42#
++ VSUBS m1_n20_420# a_42_42# VSUBS VSUBS VSUBS m1_n20_420# a_42_42# m1_n20_420# a_42_42#
++ VSUBS m1_n20_420# VSUBS a_42_42# a_42_42# VSUBS a_42_42# a_42_42# m1_n20_420# a_42_42#
++ sky130_fd_pr__nfet_01v8_HR8DH9
+Xsky130_fd_pr__nfet_01v8_XZXALN_0 m1_76_644# m1_76_644# a_42_42# a_42_42# m1_n20_420#
++ a_42_42# m1_76_644# a_42_42# VSUBS a_42_42# a_42_42# a_42_42# a_42_42# a_42_42#
++ m1_76_644# a_42_42# m1_76_644# a_42_42# a_42_42# m1_n20_420# m1_n20_420# a_42_42#
++ m1_76_644# m1_76_644# a_42_42# m1_76_644# a_42_42# a_42_42# m1_76_644# m1_n20_420#
++ m1_76_644# m1_n20_420# m1_n20_420# a_42_42# m1_76_644# m1_n20_420# m1_76_644# a_42_42#
++ m1_76_644# m1_n20_420# m1_76_644# a_42_42# m1_n20_420# a_42_42# m1_76_644# m1_76_644#
++ a_42_42# m1_n20_420# m1_76_644# m1_76_644# m1_n20_420# m1_n20_420# m1_n20_420# m1_n20_420#
++ m1_76_644# m1_n20_420# m1_n20_420# a_42_42# a_42_42# a_42_42# a_42_42# m1_n20_420#
++ m1_n20_420# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# m1_n20_420# a_42_42#
++ a_42_42# a_42_42# m1_n20_420# m1_n20_420# a_42_42# a_42_42# m1_n20_420# m1_76_644#
++ m1_76_644# m1_76_644# a_42_42# a_42_42# m1_n20_420# a_42_42# m1_n20_420# m1_n20_420#
++ m1_n20_420# a_42_42# a_42_42# a_42_42# m1_76_644# m1_76_644# m1_n20_420# m1_n20_420#
++ a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# a_42_42# sky130_fd_pr__nfet_01v8_XZXALN
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL a_n194_n1432# a_n324_n1562# a_n194_1000#
++ a_124_n1432# a_124_1000#
+X0 a_124_n1432# a_124_1000# a_n324_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_n194_n1432# a_n194_1000# a_n324_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_sc_hs__inv_16 A VGND VPWR Y VNB VPB
+X0 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=2.7216e+12p pd=2.278e+07u as=3.4272e+12p ps=2.628e+07u w=1.12e+06u l=150000u
+X1 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X2 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X3 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X4 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=1.6576e+12p pd=1.632e+07u as=2.2718e+12p ps=1.946e+07u w=740000u l=150000u
+X5 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X6 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X7 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X8 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X9 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X10 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X11 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X12 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X13 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X14 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X15 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X16 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X17 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X18 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X19 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X20 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X21 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X22 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X23 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X24 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X25 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X26 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X27 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X28 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X29 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X30 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X31 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_RS2YEK a_283_1000# a_n353_n1432# a_n35_n1432#
++ a_n35_1000# a_n483_n1562# a_n353_1000# a_283_n1432#
+X0 a_n353_n1432# a_n353_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_283_n1432# a_283_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X2 a_n35_n1432# a_n35_1000# a_n483_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_8DK6RJ a_n321_n518# a_255_n1154# a_543_n1154# a_n369_21#
++ a_n33_118# a_351_754# a_351_n1154# a_n81_657# a_n33_754# a_495_n723# a_n369_n1251#
++ a_n177_n1251# a_n561_n1251# a_399_21# a_n225_118# w_n743_n1373# a_n273_657# a_n225_754#
++ a_n177_n87# a_15_1185# a_n33_n518# a_n561_1185# a_303_n615# a_n177_1185# a_399_n1251#
++ a_n465_549# a_543_118# a_543_754# a_n465_n615# a_n605_n518# a_63_118# a_447_n518#
++ a_63_754# a_n605_118# a_n417_118# a_303_n723# a_n465_657# a_n605_754# a_n417_754#
++ a_n369_n87# a_255_118# a_543_n518# a_159_n518# a_n465_n723# a_111_n615# a_255_754#
++ a_495_549# a_111_549# a_n273_n615# a_n129_118# a_255_n518# a_n129_754# a_n561_n87#
++ a_n605_n1154# a_111_n723# a_399_1185# a_n561_21# a_447_118# a_n177_21# a_495_657#
++ a_351_n518# a_n417_n518# a_111_657# a_447_754# a_n273_n723# a_207_21# a_399_n87#
++ a_15_n1251# a_n321_118# a_n321_754# a_303_549# a_63_n1154# a_n513_n518# a_n129_n518#
++ a_n81_n615# a_15_n87# a_15_21# a_n33_n1154# a_159_118# a_63_n518# a_159_754# a_207_1185#
++ a_n417_n1154# a_n129_n1154# a_n513_n1154# a_n225_n1154# a_n81_549# a_303_657# a_n321_n1154#
++ a_n225_n518# a_495_n615# a_n513_118# a_207_n87# a_n81_n723# a_n513_754# a_207_n1251#
++ a_n369_1185# a_n273_549# a_159_n1154# a_447_n1154# a_351_118#
+X0 a_447_n518# a_399_n87# a_351_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n513_n518# a_n561_n87# a_n605_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X2 a_63_n518# a_15_n87# a_n33_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n33_754# a_n81_657# a_n129_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_351_754# a_303_657# a_255_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_159_754# a_111_657# a_63_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_255_754# a_207_1185# a_159_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_447_754# a_399_1185# a_351_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X8 a_543_754# a_495_657# a_447_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_63_n1154# a_15_n1251# a_n33_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_159_n1154# a_111_n723# a_63_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n129_n518# a_n177_n87# a_n225_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n513_754# a_n561_1185# a_n605_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X13 a_n321_754# a_n369_1185# a_n417_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n225_754# a_n273_657# a_n321_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_255_n1154# a_207_n1251# a_159_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_n417_754# a_n465_657# a_n513_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 a_n129_754# a_n177_1185# a_n225_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n417_n518# a_n465_n615# a_n513_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n417_n1154# a_n465_n723# a_n513_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_351_n1154# a_303_n723# a_255_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X21 a_n513_n1154# a_n561_n1251# a_n605_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X22 a_63_754# a_15_1185# a_n33_754# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 a_n33_n518# a_n81_n615# a_n129_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 a_351_n518# a_303_n615# a_255_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_n33_118# a_n81_549# a_n129_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X26 a_351_118# a_303_549# a_255_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_159_118# a_111_549# a_63_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X28 a_255_118# a_207_21# a_159_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 a_447_118# a_399_21# a_351_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_543_118# a_495_549# a_447_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_n33_n1154# a_n81_n723# a_n129_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X32 a_n513_118# a_n561_21# a_n605_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X33 a_n321_118# a_n369_21# a_n417_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_n225_118# a_n273_549# a_n321_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X35 a_n417_118# a_n465_549# a_n513_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_n129_118# a_n177_21# a_n225_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 a_255_n518# a_207_n87# a_159_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X38 a_n129_n1154# a_n177_n1251# a_n225_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X39 a_447_n1154# a_399_n1251# a_351_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X40 a_n321_n518# a_n369_n87# a_n417_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X41 a_543_n518# a_495_n615# a_447_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n225_n1154# a_n273_n723# a_n321_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X43 a_543_n1154# a_495_n723# a_447_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n321_n1154# a_n369_n1251# a_n417_n1154# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 a_63_118# a_15_21# a_n33_118# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_159_n518# a_111_n615# a_63_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_n225_n518# a_n273_n615# a_n321_n518# w_n743_n1373# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_9Z5L4S a_n383_n518# a_498_n615# a_380_21# a_n92_21#
++ a_n737_n518# a_325_118# a_443_n518# a_n265_n518# a_89_118# a_n619_n518# a_26_n615#
++ a_n265_118# a_n501_118# a_679_n518# a_325_n518# a_n682_n615# a_n147_n518# a_443_118#
++ a_26_21# a_207_n518# a_n210_n615# a_n564_n615# a_n328_21# a_n383_118# a_n446_21#
++ a_n29_n518# a_n564_21# a_n619_118# a_n682_21# a_380_n615# a_n92_n615# a_89_n518#
++ a_n446_n615# a_561_118# a_n210_21# a_262_n615# a_n328_n615# a_n29_118# a_616_21#
++ a_498_21# a_207_118# a_n737_118# a_n501_n518# a_616_n615# w_n875_n737# a_144_21#
++ a_561_n518# a_144_n615# a_679_118# a_n147_118# a_262_21#
+X0 a_n383_118# a_n446_21# a_n501_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_679_n518# a_616_n615# a_561_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n29_118# a_n92_21# a_n147_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_n265_118# a_n328_21# a_n383_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X4 a_443_n518# a_380_n615# a_325_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_89_118# a_26_21# a_n29_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X6 a_n383_n518# a_n446_n615# a_n501_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_n147_118# a_n210_21# a_n265_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X8 a_679_118# a_616_21# a_561_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_443_118# a_380_21# a_325_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X10 a_n619_n518# a_n682_n615# a_n737_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n518# a_n92_n615# a_n147_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_561_118# a_498_21# a_443_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X13 a_325_n518# a_262_n615# a_207_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X14 a_325_118# a_262_21# a_207_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X15 a_561_n518# a_498_n615# a_443_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X16 a_n265_n518# a_n328_n615# a_n383_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n619_118# a_n682_21# a_n737_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X18 a_207_118# a_144_21# a_89_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n501_118# a_n564_21# a_n619_118# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X20 a_89_n518# a_26_n615# a_n29_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X21 a_207_n518# a_144_n615# a_89_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X22 a_n501_n518# a_n564_n615# a_n619_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X23 a_n147_n518# a_n210_n615# a_n265_n518# w_n875_n737# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt lvds_currm_p a_112_112# m1_60_208# m1_60_1070# w_112_640#
+Xsky130_fd_pr__pfet_01v8_8DK6RJ_0 m1_60_208# m1_60_1070# m1_60_208# a_112_112# m1_60_1070#
++ m1_60_1070# m1_60_208# a_112_112# m1_60_1070# a_112_112# a_112_112# a_112_112# a_112_112#
++ a_112_112# m1_60_1070# w_112_640# a_112_112# m1_60_1070# a_112_112# a_112_112# m1_60_1070#
++ a_112_112# a_112_112# a_112_112# a_112_112# a_112_112# m1_60_1070# m1_60_1070# a_112_112#
++ m1_60_1070# m1_60_208# m1_60_208# m1_60_208# m1_60_1070# m1_60_1070# a_112_112#
++ a_112_112# m1_60_1070# m1_60_1070# a_112_112# m1_60_208# m1_60_1070# m1_60_1070#
++ a_112_112# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112# m1_60_208# m1_60_208#
++ m1_60_208# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112# m1_60_208# a_112_112#
++ a_112_112# m1_60_1070# m1_60_1070# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112#
++ a_112_112# m1_60_208# m1_60_208# a_112_112# m1_60_1070# m1_60_208# m1_60_208# a_112_112#
++ a_112_112# a_112_112# m1_60_208# m1_60_1070# m1_60_208# m1_60_1070# a_112_112# m1_60_208#
++ m1_60_1070# m1_60_1070# m1_60_208# a_112_112# a_112_112# m1_60_1070# m1_60_1070#
++ a_112_112# m1_60_208# a_112_112# a_112_112# m1_60_208# a_112_112# a_112_112# a_112_112#
++ m1_60_208# m1_60_1070# m1_60_1070# sky130_fd_pr__pfet_01v8_8DK6RJ
+Xsky130_fd_pr__pfet_01v8_9Z5L4S_0 w_112_640# a_112_112# a_112_112# a_112_112# m1_60_1070#
++ w_112_640# m1_60_1070# m1_60_1070# w_112_640# w_112_640# a_112_112# m1_60_1070#
++ m1_60_1070# m1_60_1070# w_112_640# a_112_112# w_112_640# m1_60_1070# a_112_112#
++ m1_60_1070# a_112_112# a_112_112# a_112_112# w_112_640# a_112_112# m1_60_1070# a_112_112#
++ w_112_640# a_112_112# a_112_112# a_112_112# w_112_640# a_112_112# w_112_640# a_112_112#
++ a_112_112# a_112_112# m1_60_1070# a_112_112# a_112_112# m1_60_1070# m1_60_1070#
++ m1_60_1070# a_112_112# w_112_640# a_112_112# w_112_640# a_112_112# m1_60_1070# w_112_640#
++ a_112_112# sky130_fd_pr__pfet_01v8_9Z5L4S
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_VCB4SW a_351_436# a_n81_339# a_n513_n200# a_n321_n836#
++ a_n1329_n297# a_n753_867# a_n33_436# a_n129_n200# a_n945_n405# a_n657_n933# a_831_436#
++ a_15_867# a_639_n836# a_1311_436# a_63_n200# a_1215_n200# a_1023_n836# a_n1041_231#
++ a_879_339# a_n1281_n836# a_1167_n297# a_n1089_n200# a_591_867# a_n273_339# a_n225_436#
++ a_15_n297# a_n81_231# a_n225_n200# a_n1089_436# a_n561_n297# a_591_n405# a_n177_n297#
++ a_n705_436# a_207_867# a_927_n200# a_1311_n200# a_n33_n836# a_735_n836# a_n1233_339#
++ a_303_n933# a_879_231# a_n1185_n200# a_207_n405# a_1359_n405# a_n273_231# a_543_436#
++ a_n1469_n836# a_1071_339# a_n945_867# a_1023_436# a_n321_n200# a_n897_n836# a_n1137_n297#
++ a_n753_n405# a_n465_n933# a_n369_n405# a_831_n836# a_n1233_231# a_63_436# a_975_n297#
++ a_639_n200# a_1023_n200# a_447_n836# a_783_867# a_n1281_n200# a_n1281_436# a_n465_339#
++ a_n417_436# a_1071_231# a_n1469_436# a_n993_n836# a_n1425_n933# a_n1329_n405# a_n177_867#
++ a_n1425_339# a_255_436# a_n33_n200# a_735_n200# a_543_n836# a_n609_n836# a_159_n836#
++ a_111_n933# a_879_n933# a_1263_n933# a_n465_231# a_1167_n405# a_735_436# a_1263_339#
++ a_n1469_n200# a_n1137_867# a_1215_436# a_n897_n200# a_15_n405# a_n993_436# a_n561_n405#
++ a_n273_n933# a_n177_n405# a_n1425_231# a_831_n200# a_n129_436# a_n705_n836# a_975_867#
++ a_783_n297# a_447_n200# a_255_n836# a_399_n297# a_n657_339# a_n609_436# a_1263_231#
++ a_1407_n836# a_n993_n200# a_n1233_n933# a_n369_867# a_n1137_n405# a_495_339# a_447_436#
++ a_111_339# a_543_n200# a_n801_n836# a_351_n836# a_n609_n200# a_n417_n836# a_159_n200#
++ a_975_n405# a_n945_n297# a_n657_231# a_687_n933# a_927_436# a_1071_n933# a_n1329_867#
++ a_1407_436# a_n321_436# a_1119_n836# a_n1377_n836# a_n1185_436# a_495_231# a_n801_436#
++ a_1167_867# a_111_231# a_n849_339# a_n705_n200# a_255_n200# a_n513_n836# a_n129_n836#
++ a_591_n297# a_n81_n933# a_n561_867# a_n849_n933# a_1407_n200# a_1215_n836# a_159_436#
++ a_63_n836# a_207_n297# a_1359_n297# w_n1607_n1055# a_n1089_n836# a_687_339# a_n1041_n933#
++ a_639_436# a_303_339# a_n801_n200# a_1119_436# a_351_n200# a_n849_231# a_n417_n200#
++ a_n225_n836# a_n753_n297# a_783_n405# a_n897_436# a_399_867# a_495_n933# a_n369_n297#
++ a_399_n405# a_n513_436# a_927_n836# a_1311_n836# a_1119_n200# a_n1377_436# a_n1041_339#
++ a_n1377_n200# a_n1185_n836# a_687_231# a_1359_867# a_303_231#
+X0 a_n1281_n200# a_n1329_n297# a_n1377_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n609_n200# a_n657_231# a_n705_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n417_n836# a_n465_n933# a_n513_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_927_n200# a_879_231# a_831_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_639_n836# a_591_n405# a_543_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_927_436# a_879_339# a_831_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_1023_436# a_975_867# a_927_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_n897_n200# a_n945_n297# a_n993_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n705_n836# a_n753_n405# a_n801_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X9 a_255_n200# a_207_n297# a_159_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_1215_n200# a_1167_n297# a_1119_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X11 a_1119_436# a_1071_339# a_1023_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X12 a_1215_436# a_1167_867# a_1119_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_1311_436# a_1263_339# a_1215_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_1407_436# a_1359_867# a_1311_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n321_n200# a_n369_n297# a_n417_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X16 a_1023_n836# a_975_n405# a_927_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_n1185_n200# a_n1233_231# a_n1281_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X18 a_543_n200# a_495_231# a_447_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X19 a_1311_n836# a_1263_n933# a_1215_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_n993_n836# a_n1041_n933# a_n1089_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X21 a_n33_n836# a_n81_n933# a_n129_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X22 a_351_n836# a_303_n933# a_255_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_n33_436# a_n81_339# a_n129_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X24 a_351_436# a_303_339# a_255_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X25 a_831_n200# a_783_n297# a_735_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X26 a_159_436# a_111_339# a_63_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_255_436# a_207_867# a_159_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 a_447_436# a_399_867# a_351_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X29 a_543_436# a_495_339# a_447_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_639_436# a_591_867# a_543_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X31 a_735_436# a_687_339# a_639_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X32 a_831_436# a_783_867# a_735_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_159_n200# a_111_231# a_63_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_1119_n200# a_1071_231# a_1023_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X35 a_n1281_n836# a_n1329_n405# a_n1377_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X36 a_n609_n836# a_n657_n933# a_n705_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X37 a_n1377_436# a_n1425_339# a_n1469_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X38 a_n1281_436# a_n1329_867# a_n1377_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X39 a_n1185_436# a_n1233_339# a_n1281_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X40 a_n1089_436# a_n1137_867# a_n1185_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X41 a_n993_436# a_n1041_339# a_n1089_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n225_n200# a_n273_231# a_n321_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X43 a_n897_n836# a_n945_n405# a_n993_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_927_n836# a_879_n933# a_831_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X45 a_n801_436# a_n849_339# a_n897_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X46 a_n513_436# a_n561_867# a_n609_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X47 a_n321_436# a_n369_867# a_n417_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X48 a_n225_436# a_n273_339# a_n321_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X49 a_n1089_n200# a_n1137_n297# a_n1185_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X50 a_447_n200# a_399_n297# a_351_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X51 a_1407_n200# a_1359_n297# a_1311_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X52 a_1215_n836# a_1167_n405# a_1119_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X53 a_n897_436# a_n945_867# a_n993_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 a_n705_436# a_n753_867# a_n801_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X55 a_n609_436# a_n657_339# a_n705_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 a_n417_436# a_n465_339# a_n513_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 a_n129_436# a_n177_867# a_n225_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 a_255_n836# a_207_n405# a_159_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X59 a_n513_n200# a_n561_n297# a_n609_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X60 a_63_n200# a_15_n297# a_n33_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X61 a_n321_n836# a_n369_n405# a_n417_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X62 a_n1377_n200# a_n1425_231# a_n1469_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X63 a_735_n200# a_687_231# a_639_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X64 a_543_n836# a_495_n933# a_447_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X65 a_n801_n200# a_n849_231# a_n897_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X66 a_n1185_n836# a_n1233_n933# a_n1281_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X67 a_n129_n200# a_n177_n297# a_n225_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X68 a_831_n836# a_783_n405# a_735_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X69 a_1119_n836# a_1071_n933# a_1023_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 a_63_436# a_15_867# a_n33_436# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 a_159_n836# a_111_n933# a_63_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X72 a_n417_n200# a_n465_231# a_n513_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 a_n225_n836# a_n273_n933# a_n321_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X74 a_639_n200# a_591_n297# a_543_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 a_447_n836# a_399_n405# a_351_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 a_1407_n836# a_1359_n405# a_1311_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X77 a_n705_n200# a_n753_n297# a_n801_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 a_n1089_n836# a_n1137_n405# a_n1185_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 a_n513_n836# a_n561_n405# a_n609_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 a_63_n836# a_15_n405# a_n33_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 a_1023_n200# a_975_n297# a_927_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 a_n1377_n836# a_n1425_n933# a_n1469_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X83 a_735_n836# a_687_n933# a_639_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 a_n801_n836# a_n849_n933# a_n897_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 a_351_n200# a_303_231# a_255_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 a_1311_n200# a_1263_231# a_1215_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 a_n993_n200# a_n1041_231# a_n1089_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 a_n33_n200# a_n81_231# a_n129_n200# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 a_n129_n836# a_n177_n405# a_n225_n836# w_n1607_n1055# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_switch_p m1_178_212# m1_274_438# m1_178_1074# m1_274_848# m1_178_1484#
++ a_230_644# m1_274_1710# w_230_752#
+Xsky130_fd_pr__pfet_01v8_VCB4SW_0 m1_274_1710# a_230_644# m1_178_1074# m1_178_212#
++ a_230_644# a_230_644# m1_274_1710# m1_178_1074# a_230_644# a_230_644# m1_178_1484#
++ a_230_644# m1_178_212# m1_274_1710# m1_178_1074# m1_178_1074# m1_178_212# a_230_644#
++ a_230_644# m1_178_212# a_230_644# m1_178_1074# a_230_644# a_230_644# m1_274_1710#
++ a_230_644# a_230_644# m1_274_848# m1_178_1484# a_230_644# a_230_644# a_230_644#
++ m1_178_1484# a_230_644# m1_274_848# m1_274_848# m1_274_438# m1_274_438# a_230_644#
++ a_230_644# a_230_644# m1_274_848# a_230_644# a_230_644# a_230_644# m1_274_1710#
++ m1_178_212# a_230_644# a_230_644# m1_178_1484# m1_178_1074# m1_178_212# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_178_212# a_230_644# m1_178_1484# a_230_644#
++ m1_178_1074# m1_178_1074# m1_178_212# a_230_644# m1_178_1074# m1_178_1484# a_230_644#
++ m1_274_1710# a_230_644# m1_178_1484# m1_274_438# a_230_644# a_230_644# a_230_644#
++ a_230_644# m1_178_1484# m1_274_848# m1_274_848# m1_274_438# m1_274_438# m1_274_438#
++ a_230_644# a_230_644# a_230_644# a_230_644# a_230_644# m1_274_1710# a_230_644# m1_178_1074#
++ a_230_644# m1_178_1484# m1_178_1074# a_230_644# m1_274_1710# a_230_644# a_230_644#
++ a_230_644# a_230_644# m1_178_1074# m1_178_1484# m1_178_212# a_230_644# a_230_644#
++ m1_178_1074# m1_178_212# a_230_644# a_230_644# m1_274_1710# a_230_644# m1_178_212#
++ m1_274_848# a_230_644# a_230_644# a_230_644# a_230_644# m1_178_1484# a_230_644#
++ m1_274_848# m1_274_438# m1_274_438# m1_274_848# m1_274_438# m1_274_848# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_274_1710# a_230_644# a_230_644# m1_178_1484#
++ m1_178_1484# m1_274_438# m1_274_438# m1_274_1710# a_230_644# m1_274_1710# a_230_644#
++ a_230_644# a_230_644# m1_178_1074# m1_178_1074# m1_178_212# m1_178_212# a_230_644#
++ a_230_644# a_230_644# a_230_644# m1_178_1074# m1_178_212# m1_274_1710# m1_178_212#
++ a_230_644# a_230_644# w_230_752# m1_178_212# a_230_644# a_230_644# m1_178_1484#
++ a_230_644# m1_274_848# m1_274_1710# m1_274_848# a_230_644# m1_274_848# m1_274_438#
++ a_230_644# a_230_644# m1_178_1484# a_230_644# a_230_644# a_230_644# a_230_644# m1_178_1484#
++ m1_274_438# m1_274_438# m1_274_848# m1_274_1710# a_230_644# m1_274_848# m1_274_438#
++ a_230_644# a_230_644# a_230_644# sky130_fd_pr__pfet_01v8_VCB4SW
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_N3PKNJ c1_n3050_n1000# m3_n3150_n1100#
+X0 c1_n3050_n1000# m3_n3150_n1100# sky130_fd_pr__cap_mim_m3_1 l=1e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_RE4MKQ a_n1041_109# a_n993_531# a_1119_n597# a_n1229_109#
++ a_n753_n509# a_n81_109# a_n369_n509# a_n705_21# a_399_109# a_303_n509# a_831_n87#
++ a_n609_531# a_879_109# a_n273_109# a_n465_n509# a_n753_109# a_n1089_n87# a_927_531#
++ a_15_109# a_n705_n87# a_n1089_21# a_n225_n597# a_1167_n509# a_927_n597# a_n1185_531#
++ a_591_109# a_15_n509# a_n801_531# a_n1185_n597# a_1071_109# a_n561_n509# a_n177_n509#
++ a_1023_n87# a_n321_21# a_207_109# a_111_n509# a_879_n509# a_159_531# a_639_21# a_63_n87#
++ a_n465_109# a_n1137_n509# a_n273_n509# a_1119_531# a_n945_109# a_975_n509# a_255_n87#
++ a_783_109# a_n33_n597# a_735_n597# a_n897_21# a_351_531# a_n1331_n683# a_n33_531#
++ a_n177_109# a_687_n509# a_1071_n509# a_n129_n87# a_255_21# a_n657_109# a_n225_531#
++ a_n1137_109# a_495_109# a_111_109# a_n993_n597# a_n81_n509# a_783_n509# a_n513_21#
++ a_447_n87# a_n849_n509# a_399_n509# a_n129_21# a_1023_21# a_975_109# a_63_21# a_543_n597#
++ a_n609_n597# a_159_n597# a_543_531# a_n1041_n509# a_n321_n87# a_n369_109# a_n945_n509#
++ a_495_n509# a_n849_109# a_n417_531# a_687_109# a_n1229_n509# a_303_109# a_1167_109#
++ a_639_n87# a_591_n509# a_n657_n509# a_n561_109# a_831_21# a_n897_n87# a_n801_n597#
++ a_351_n597# a_447_21# a_735_531# a_n417_n597# a_207_n509# a_n513_n87#
+X0 a_399_n509# a_351_n597# a_303_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n81_109# a_n129_21# a_n177_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_111_109# a_63_21# a_15_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n465_n509# a_n513_n87# a_n561_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_109# a_n321_21# a_n369_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n177_109# a_n225_531# a_n273_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 a_687_n509# a_639_n87# a_591_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_n753_n509# a_n801_n597# a_n849_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_975_n509# a_927_n597# a_879_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X9 a_n81_n509# a_n129_n87# a_n177_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_15_n509# a_n33_n597# a_n81_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_n1041_n509# a_n1089_n87# a_n1137_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_n369_n509# a_n417_n597# a_n465_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X13 a_n657_n509# a_n705_n87# a_n753_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_879_n509# a_831_n87# a_783_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X15 a_n945_n509# a_n993_n597# a_n1041_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X16 a_1167_n509# a_1119_n597# a_1071_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_303_n509# a_255_n87# a_207_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X18 a_n273_n509# a_n321_n87# a_n369_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X19 a_591_n509# a_543_n597# a_495_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_n849_n509# a_n897_n87# a_n945_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 a_303_109# a_255_21# a_207_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X22 a_591_109# a_543_531# a_495_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_207_109# a_159_531# a_111_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 a_399_109# a_351_531# a_303_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X25 a_495_109# a_447_21# a_399_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 a_687_109# a_639_21# a_591_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X27 a_783_109# a_735_531# a_687_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_975_109# a_927_531# a_879_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X29 a_n177_n509# a_n225_n597# a_n273_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 a_207_n509# a_159_n597# a_111_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X31 a_n1041_109# a_n1089_21# a_n1137_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X32 a_879_109# a_831_21# a_783_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_n1137_109# a_n1185_531# a_n1229_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X34 a_n1137_n509# a_n1185_n597# a_n1229_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X35 a_495_n509# a_447_n87# a_399_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 a_n561_109# a_n609_531# a_n657_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X37 a_1071_109# a_1023_21# a_975_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X38 a_n945_109# a_n993_531# a_n1041_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X39 a_n753_109# a_n801_531# a_n849_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_n657_109# a_n705_21# a_n753_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 a_n465_109# a_n513_21# a_n561_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n369_109# a_n417_531# a_n465_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 a_1167_109# a_1119_531# a_1071_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n561_n509# a_n609_n597# a_n657_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 a_111_n509# a_63_n87# a_15_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_n849_109# a_n897_21# a_n945_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 a_783_n509# a_735_n597# a_687_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 a_15_109# a_n33_531# a_n81_109# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 a_1071_n509# a_1023_n87# a_975_n509# a_n1331_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt lvds_nswitch m1_30_728# m1_126_952# m1_30_110# a_82_22# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_RE4MKQ_0 m1_30_728# a_82_22# a_82_22# m1_30_728# m1_30_728#
++ m1_30_728# m1_30_728# a_82_22# m1_126_952# m1_30_110# a_82_22# a_82_22# m1_30_728#
++ m1_30_728# m1_30_110# m1_126_952# a_82_22# a_82_22# m1_126_952# a_82_22# a_82_22#
++ a_82_22# m1_30_728# a_82_22# a_82_22# m1_126_952# m1_30_728# a_82_22# a_82_22# m1_30_728#
++ m1_30_728# m1_30_728# a_82_22# a_82_22# m1_126_952# m1_30_110# m1_30_110# a_82_22#
++ a_82_22# a_82_22# m1_30_728# m1_30_728# m1_30_110# a_82_22# m1_126_952# m1_30_728#
++ a_82_22# m1_126_952# a_82_22# a_82_22# a_82_22# a_82_22# VSUBS a_82_22# m1_126_952#
++ m1_30_110# m1_30_110# a_82_22# a_82_22# m1_30_728# a_82_22# m1_126_952# m1_30_728#
++ m1_30_728# a_82_22# m1_30_110# m1_30_728# a_82_22# a_82_22# m1_30_110# m1_30_728#
++ a_82_22# a_82_22# m1_126_952# a_82_22# a_82_22# a_82_22# a_82_22# a_82_22# m1_30_110#
++ a_82_22# m1_126_952# m1_30_728# m1_30_110# m1_30_728# a_82_22# m1_30_728# m1_30_110#
++ m1_30_728# m1_126_952# a_82_22# m1_30_728# m1_30_110# m1_126_952# a_82_22# a_82_22#
++ a_82_22# a_82_22# a_82_22# a_82_22# a_82_22# m1_30_728# a_82_22# sky130_fd_pr__nfet_01v8_lvt_RE4MKQ
+.ends
+
+.subckt sky130_fd_sc_hs__inv_4 A VGND VPWR Y VNB VPB
+X0 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=6.72e+11p pd=5.68e+06u as=9.968e+11p ps=8.5e+06u w=1.12e+06u l=150000u
+X1 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=4.44e+11p pd=4.16e+06u as=6.882e+11p ps=6.3e+06u w=740000u l=150000u
+X2 Y A VGND VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X3 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X4 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X5 Y A VPWR VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+X6 VGND A Y VNB sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=740000u l=150000u
+X7 VPWR A Y VPB sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=1.12e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3 m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_ZHX6G9 a_n383_109# a_n29_n509# a_380_21# a_n92_21#
++ a_n682_n597# a_n619_109# a_561_109# a_89_n509# a_n210_n597# a_n564_n597# a_207_109#
++ a_n29_109# a_n501_n509# a_n737_109# a_380_n597# a_n92_n597# a_n446_n597# a_26_21#
++ a_561_n509# a_n147_109# a_n383_n509# a_679_109# a_n328_21# a_n446_21# a_n737_n509#
++ a_n564_21# a_262_n597# a_n328_n597# a_n682_21# a_325_109# a_443_n509# a_616_n597#
++ a_n265_n509# a_n210_21# a_89_109# a_n619_n509# a_144_n597# a_n265_109# a_n839_n683#
++ a_498_n597# a_n501_109# a_325_n509# a_679_n509# a_n147_n509# a_616_21# a_498_21#
++ a_443_109# a_144_21# a_207_n509# a_26_n597# a_262_21#
+X0 a_89_109# a_26_21# a_n29_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n383_n509# a_n446_n597# a_n501_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n147_109# a_n210_21# a_n265_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_679_109# a_616_21# a_561_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_n619_n509# a_n682_n597# a_n737_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_n29_n509# a_n92_n597# a_n147_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_443_109# a_380_21# a_325_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_561_109# a_498_21# a_443_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X8 a_325_n509# a_262_n597# a_207_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_325_109# a_262_21# a_207_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X10 a_n265_n509# a_n328_n597# a_n383_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X11 a_561_n509# a_498_n597# a_443_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_n619_109# a_n682_21# a_n737_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X13 a_207_109# a_144_21# a_89_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X14 a_n501_109# a_n564_21# a_n619_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X15 a_89_n509# a_26_n597# a_n29_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X16 a_207_n509# a_144_n597# a_89_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n501_n509# a_n564_n597# a_n619_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X18 a_n147_n509# a_n210_n597# a_n265_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n383_109# a_n446_21# a_n501_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X20 a_679_n509# a_616_n597# a_561_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X21 a_n29_109# a_n92_21# a_n147_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X22 a_n265_109# a_n328_21# a_n383_109# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X23 a_443_n509# a_380_n597# a_325_n509# a_n839_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt lvds_diffamp m1_70_160# m1_188_1002# m1_70_80# m1_70_700# m1_188_384# m1_70_778#
++ VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_ZHX6G9_0 m1_188_1002# m1_70_160# m1_70_700# m1_70_700#
++ m1_70_80# m1_188_1002# m1_188_1002# m1_188_384# m1_70_80# m1_70_80# m1_70_778# m1_70_778#
++ m1_70_160# m1_70_778# m1_70_80# m1_70_80# m1_70_80# m1_70_700# m1_188_384# m1_188_1002#
++ m1_188_384# m1_70_778# m1_70_700# m1_70_700# m1_70_160# m1_70_700# m1_70_80# m1_70_80#
++ m1_70_700# m1_188_1002# m1_70_160# m1_70_80# m1_70_160# m1_70_700# m1_188_1002#
++ m1_188_384# m1_70_80# m1_70_778# VSUBS m1_70_80# m1_70_778# m1_188_384# m1_70_160#
++ m1_188_384# m1_70_700# m1_70_700# m1_70_778# m1_70_700# m1_70_160# m1_70_80# m1_70_700#
++ sky130_fd_pr__nfet_01v8_lvt_ZHX6G9
+.ends
+
+.subckt transmitter VN m1_20_640# In
+Xlvds_currm_n_7 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_26 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_15 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_8 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_27 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_16 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_9 m2_17470_3120# m2_18900_460# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_28 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_17 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_29 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_18 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_19 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_0 OutN VN m1_13800_6190# vm20g m1_13800_6190#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_1 vm20g VN m1_14510_6190# OutP m1_14510_6190#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_pr__res_xhigh_po_0p35_ZPVFQL_2 m1_15390_3750# VN VP m1_15390_3750# m1_15690_6180#
++ sky130_fd_pr__res_xhigh_po_0p35_ZPVFQL
+Xsky130_fd_sc_hs__inv_16_0 vx9y VN VP vx6y VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_1 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_2 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_3 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_pr__res_xhigh_po_0p35_RS2YEK_0 m1_16410_6170# m1_16110_3750# m1_16110_3750#
++ m1_16410_6170# VN m1_15690_6180# VN sky130_fd_pr__res_xhigh_po_0p35_RS2YEK
+Xsky130_fd_sc_hs__inv_16_4 vx6y VN VP vm5g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_5 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_6 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_7 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xsky130_fd_sc_hs__inv_16_8 vx14y VN VP vx1y VN VP sky130_fd_sc_hs__inv_16
+Xlvds_currm_p_30 m2_19260_4160# m2_19260_4160# lvds_currm_p_30/m1_60_1070# VP lvds_currm_p
+Xsky130_fd_sc_hs__inv_16_9 vx1y VN VP vm2g VN VP sky130_fd_sc_hs__inv_16
+Xlvds_currm_p_20 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_22 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_21 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_11 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_10 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_23 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_12 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_switch_p_0 OutN vm6d OutN vm6d OutN vm2g vm6d VP lvds_switch_p
+Xlvds_currm_p_24 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_13 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_switch_p_1 OutP vm6d OutP vm6d OutP vm5g vm6d VP lvds_switch_p
+Xlvds_currm_p_25 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_14 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_26 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_15 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_27 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_16 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_0 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_1_N3PKNJ_0 vm20g m1_17940_7520# sky130_fd_pr__cap_mim_m3_1_N3PKNJ
+Xlvds_nswitch_0 vm1d OutN OutN vm2g VN lvds_nswitch
+Xlvds_currm_p_28 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_17 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_1 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_nswitch_1 vm1d OutP OutP vm5g VN lvds_nswitch
+Xlvds_currm_p_29 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_18 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_2 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_sc_hs__inv_4_0 In VN VP vx9y VN VP sky130_fd_sc_hs__inv_4
+Xlvds_currm_p_19 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_3 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_0 m1_20_640# lvds_currm_n_0/m1_n20_420# m1_20_640# VN lvds_currm_n
+Xsky130_fd_sc_hs__inv_4_1 vx9y VN VP vx14y VN VP sky130_fd_sc_hs__inv_4
+Xlvds_currm_n_30 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_4 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3
+Xlvds_currm_n_1 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_31 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_20 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_5 m1_17940_7520# m1_17940_7520# m2_17720_10420# VP lvds_currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#3
+Xlvds_currm_n_10 m2_17470_3120# m2_18900_460# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_2 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_21 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_7 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_p_6 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_diffamp_1 m2_17470_3120# m2_17470_3120# m1_15690_6180# m1_15690_6180# m2_19260_4160#
++ m2_19260_4160# VN lvds_diffamp
+Xlvds_diffamp_0 m2_17470_3120# m2_17470_3120# vm20g vm20g m1_17940_7520# m1_17940_7520#
++ VN lvds_diffamp
+Xlvds_currm_n_11 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_3 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_22 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_8 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_5 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_4 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_23 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_12 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_p_9 m2_19260_4160# vm6d m3_9390_18600# VP lvds_currm_p
+Xlvds_currm_n_6 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_25 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_24 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_14 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+Xlvds_currm_n_13 vm1d m2_1870_1020# m1_20_640# VN lvds_currm_n
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_WXTTNJ c1_n2050_n2000# m3_n2150_n2100#
+X0 c1_n2050_n2000# m3_n2150_n2100# sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+.ends
+
+.subckt sky130_fd_pr__res_high_po_5p73_PA2QZX a_n573_400# a_n573_n832# a_n703_n962#
+X0 a_n573_n832# a_n573_400# a_n703_n962# sky130_fd_pr__res_high_po_5p73 l=4e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_324MKY a_n369_n509# a_n81_109# a_n129_531# a_303_n509#
++ a_351_n87# a_n33_n87# a_399_109# a_n129_n597# a_n513_n597# a_63_n597# a_n273_109#
++ a_n465_n509# a_n225_n87# a_447_531# a_15_109# a_n321_531# a_15_n509# a_n177_n509#
++ a_111_n509# a_n321_n597# a_207_109# a_n417_n87# a_n465_109# a_n273_n509# a_351_21#
++ a_n513_531# a_n33_21# a_n225_21# a_n177_109# a_447_n597# a_n557_n509# a_495_109#
++ a_399_n509# a_n81_n509# a_111_109# a_n557_109# a_n369_109# a_159_21# a_495_n509#
++ a_63_531# a_255_n597# a_n659_n683# a_159_n87# a_n417_21# a_303_109# a_255_531# a_207_n509#
+X0 a_399_n509# a_351_n87# a_303_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n81_109# a_n129_531# a_n177_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_111_109# a_63_531# a_15_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n465_n509# a_n513_n597# a_n557_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_n273_109# a_n321_531# a_n369_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n177_109# a_n225_21# a_n273_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 a_n81_n509# a_n129_n597# a_n177_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_15_n509# a_n33_n87# a_n81_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n369_n509# a_n417_n87# a_n465_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_303_n509# a_255_n597# a_207_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_n273_n509# a_n321_n597# a_n369_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_303_109# a_255_531# a_207_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_207_109# a_159_21# a_111_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 a_399_109# a_351_21# a_303_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_495_109# a_447_531# a_399_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n177_n509# a_n225_n87# a_n273_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 a_207_n509# a_159_n87# a_111_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_495_n509# a_447_n597# a_399_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n465_109# a_n513_531# a_n557_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X19 a_n369_109# a_n417_21# a_n465_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 a_111_n509# a_63_n597# a_15_n509# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 a_15_109# a_n33_21# a_n81_109# a_n659_n683# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt outd_diffamp m1_610_8380# m1_226_8380# m1_802_8758# m1_418_8758# m1_2276_8758#
++ m1_2084_8380# m1_1700_8758# m1_1186_8380# m1_898_8998# m1_130_8998# m1_706_8140#
++ m1_1796_8998# m1_1090_8998# m1_2564_8140# m1_1604_8140# m1_610_8758# m1_226_8758#
++ m1_2084_8758# m1_1186_8758# m1_514_8140# m1_706_8998# m1_2564_8998# m1_2372_8140#
++ m1_1604_8998# m1_994_8380# a_1560_8562# m1_2468_8380# m1_1892_8380# a_182_8562#
++ m1_1508_8380# m1_514_8998# a_1560_9180# m1_322_8140# m1_2180_8140# m1_2372_8998#
++ m1_1988_8140# m1_994_8758# a_182_9180# m1_802_8380# m1_418_8380# m1_1892_8758# VSUBS
++ m1_2276_8380# m1_2468_8758# m1_1700_8380# m1_1508_8758# m1_322_8998# m1_898_8140#
++ m1_130_8140# m1_2180_8998# m1_1796_8140# m1_1090_8140# m1_1988_8998#
+Xsky130_fd_pr__nfet_01v8_lvt_324MKY_0 m1_322_8140# m1_610_8758# a_182_9180# m1_994_8380#
++ a_182_8562# a_182_8562# m1_1090_8998# a_182_8562# a_182_8562# a_182_8562# m1_418_8758#
++ m1_226_8380# a_182_8562# a_182_9180# m1_706_8998# a_182_9180# m1_706_8140# m1_514_8140#
++ m1_802_8380# a_182_8562# m1_898_8998# a_182_8562# m1_226_8758# m1_418_8380# a_182_9180#
++ a_182_9180# a_182_9180# a_182_9180# m1_514_8998# a_182_8562# m1_130_8140# m1_1186_8758#
++ m1_1090_8140# m1_610_8380# m1_802_8758# m1_130_8998# m1_322_8998# a_182_9180# m1_1186_8380#
++ a_182_9180# a_182_8562# VSUBS a_182_8562# a_182_9180# m1_994_8758# a_182_9180# m1_898_8140#
++ sky130_fd_pr__nfet_01v8_lvt_324MKY
+Xsky130_fd_pr__nfet_01v8_lvt_324MKY_2 m1_2372_8140# m1_2084_8758# a_1560_9180# m1_1700_8380#
++ a_1560_8562# a_1560_8562# m1_1604_8998# a_1560_8562# a_1560_8562# a_1560_8562# m1_2276_8758#
++ m1_2468_8380# a_1560_8562# a_1560_9180# m1_1988_8998# a_1560_9180# m1_1988_8140#
++ m1_2180_8140# m1_1892_8380# a_1560_8562# m1_1796_8998# a_1560_8562# m1_2468_8758#
++ m1_2276_8380# a_1560_9180# a_1560_9180# a_1560_9180# a_1560_9180# m1_2180_8998#
++ a_1560_8562# m1_2564_8140# m1_1508_8758# m1_1604_8140# m1_2084_8380# m1_1892_8758#
++ m1_2564_8998# m1_2372_8998# a_1560_9180# m1_1508_8380# a_1560_9180# a_1560_8562#
++ VSUBS a_1560_8562# a_1560_9180# m1_1700_8758# a_1560_9180# m1_1796_8140# sky130_fd_pr__nfet_01v8_lvt_324MKY
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_ED72KE a_n129_109# a_n753_n1215# a_n753_21# a_n129_727#
++ a_n369_21# a_n705_n509# a_n177_n1215# a_n465_n597# a_255_n509# a_n561_n1215# a_495_n705#
++ a_n609_727# a_n609_109# a_15_1149# a_n273_639# a_399_21# a_n561_1149# a_n81_531#
++ a_447_109# a_447_727# a_399_n1215# a_n177_1149# a_351_n509# a_n417_n509# a_n657_n705#
++ a_n177_n87# a_591_n1215# a_n321_109# a_111_n597# a_n321_727# a_63_n1127# a_n273_531#
++ a_n273_n597# a_n513_n509# a_n797_n1127# a_n33_n1127# a_n129_n509# a_n899_n1301#
++ a_n609_n1127# a_159_109# a_303_n705# a_159_727# a_63_n509# a_n705_n1127# a_n417_n1127#
++ a_n129_n1127# a_n465_639# a_n513_n1127# a_n225_n1127# a_639_727# a_639_109# a_n321_n1127#
++ a_n369_n87# a_n225_n509# a_n465_n705# a_n513_109# a_n513_727# a_687_n597# a_639_n1127#
++ a_n465_531# a_159_n1127# a_447_n1127# a_735_n1127# a_255_n1127# a_543_n1127# a_351_n1127#
++ a_351_727# a_351_109# a_n797_n509# a_n321_n509# a_n33_109# a_n33_727# a_399_1149#
++ a_n81_n597# a_n657_639# a_639_n509# a_111_n705# a_n561_n87# a_n797_727# a_n797_109#
++ a_n225_109# a_n225_727# a_495_639# a_n273_n705# a_15_n1215# a_n705_727# a_n561_21#
++ a_n705_109# a_111_639# a_n177_21# a_n33_n509# a_735_n509# a_n657_531# a_495_n597#
++ a_207_21# a_399_n87# a_543_109# a_543_727# a_591_21# a_495_531# a_111_531# a_591_1149#
++ a_63_727# a_63_109# a_n753_n87# a_n657_n597# a_447_n509# a_687_n705# a_15_n87# a_15_21#
++ a_207_1149# a_n417_109# a_n417_727# a_687_639# a_591_n87# a_303_639# a_n753_1149#
++ a_207_n1215# a_n369_1149# a_255_109# a_255_727# a_543_n509# a_n609_n509# a_159_n509#
++ a_n81_n705# a_207_n87# a_735_727# a_735_109# a_303_n597# a_687_531# a_303_531# a_n369_n1215#
++ a_n81_639#
+X0 a_n129_n509# a_n177_n87# a_n225_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n1127# a_n369_n1215# a_n417_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n417_n509# a_n465_n597# a_n513_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_639_n509# a_591_n87# a_543_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n705_n509# a_n753_n87# a_n797_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X5 a_n33_727# a_n81_639# a_n129_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_351_727# a_303_639# a_255_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_159_727# a_111_639# a_63_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_255_727# a_207_1149# a_159_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X9 a_447_727# a_399_1149# a_351_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X10 a_543_727# a_495_639# a_447_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_735_727# a_687_639# a_639_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_63_n1127# a_15_n1215# a_n33_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X13 a_159_n1127# a_111_n705# a_63_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_639_727# a_591_1149# a_543_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_639_n1127# a_591_n1215# a_543_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X16 a_n33_109# a_n81_531# a_n129_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X17 a_n33_n509# a_n81_n597# a_n129_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X18 a_351_n509# a_303_n597# a_255_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X19 a_n321_727# a_n369_1149# a_n417_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X20 a_255_n1127# a_207_n1215# a_159_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X21 a_n705_727# a_n753_1149# a_n797_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X22 a_n513_727# a_n561_1149# a_n609_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X23 a_n417_727# a_n465_639# a_n513_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 a_n225_727# a_n273_639# a_n321_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X25 a_n129_727# a_n177_1149# a_n225_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 a_255_109# a_207_21# a_159_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X27 a_351_109# a_303_531# a_255_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X28 a_543_109# a_495_531# a_447_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X29 a_n609_n509# a_n657_n597# a_n705_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X30 a_n417_n1127# a_n465_n705# a_n513_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X31 a_735_n1127# a_687_n705# a_639_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X32 a_n609_727# a_n657_639# a_n705_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 a_159_109# a_111_531# a_63_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X34 a_447_109# a_399_21# a_351_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 a_639_109# a_591_21# a_543_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X36 a_735_109# a_687_531# a_639_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X37 a_n513_n1127# a_n561_n1215# a_n609_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X38 a_351_n1127# a_303_n705# a_255_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X39 a_n513_109# a_n561_21# a_n609_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X40 a_n321_109# a_n369_21# a_n417_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X41 a_n225_109# a_n273_531# a_n321_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X42 a_n705_109# a_n753_21# a_n797_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X43 a_n609_109# a_n657_531# a_n705_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 a_n417_109# a_n465_531# a_n513_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 a_n129_109# a_n177_21# a_n225_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 a_255_n509# a_207_n87# a_159_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X47 a_n321_n509# a_n369_n87# a_n417_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X48 a_63_727# a_15_1149# a_n33_727# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 a_543_n509# a_495_n597# a_447_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X50 a_n33_n1127# a_n81_n705# a_n129_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X51 a_63_109# a_15_21# a_n33_109# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 a_159_n509# a_111_n597# a_63_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X53 a_n225_n509# a_n273_n597# a_n321_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 a_447_n509# a_399_n87# a_351_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X55 a_n129_n1127# a_n177_n1215# a_n225_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X56 a_447_n1127# a_399_n1215# a_351_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X57 a_n609_n1127# a_n657_n705# a_n705_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X58 a_n513_n509# a_n561_n87# a_n609_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X59 a_63_n509# a_15_n87# a_n33_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 a_735_n509# a_687_n597# a_639_n509# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X61 a_n225_n1127# a_n273_n705# a_n321_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X62 a_543_n1127# a_495_n705# a_447_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X63 a_n705_n1127# a_n753_n1215# a_n797_n1127# a_n899_n1301# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_A574RZ a_761_1345# a_1235_109# a_1235_727# a_n1135_727#
++ a_n1135_109# a_n1135_n1127# a_n1135_n1745# a_n977_n2363# a_n29_n509# a_n503_n1127#
++ a_n503_n1745# a_n129_n2451# a_n29_1963# a_29_n597# a_n29_1345# a_977_21# a_n1235_n2451#
++ a_n129_n597# a_187_21# a_n603_n2451# a_n187_n509# a_n345_n1745# a_n603_639# a_n345_n1127#
++ a_187_n597# a_1077_109# a_n977_109# a_1077_727# a_n977_727# a_1135_639# a_n819_n1745#
++ a_n187_1963# a_n819_n1127# a_n187_1345# a_29_n1215# a_29_n1833# a_n1077_n2451# a_503_n2451#
++ a_n445_n2451# a_129_109# a_129_727# a_n187_n1745# a_n445_21# a_29_1257# a_29_1875#
++ a_n187_n1127# a_n919_n2451# a_1135_n2451# a_n1293_n1745# a_n287_n597# a_n129_1875#
++ a_n1293_n1127# a_n819_n509# a_n129_1257# a_n445_639# a_n661_n1745# a_345_n2451#
++ a_819_n597# a_n819_1963# a_n661_n1127# a_n287_n2451# a_977_639# a_n819_1345# a_187_1257#
++ a_187_1875# a_819_n2451# a_n345_n509# a_n1077_n597# a_345_n597# a_n1077_21# a_n345_1345#
++ a_n345_1963# a_n29_727# a_n761_n2451# a_n29_109# a_187_n2451# a_n1135_n509# a_n919_n597#
++ a_345_21# a_29_21# a_n977_n1127# a_n977_n1745# a_n287_1875# a_n977_n509# a_n287_1257#
++ a_n287_639# a_n1135_1345# a_n1135_1963# a_977_n597# a_n503_727# a_n129_n1215# a_n129_n1833#
++ a_129_n2363# a_n445_n597# a_n503_109# a_819_1257# a_n977_1963# a_819_1875# a_661_n2451#
++ a_603_109# a_603_727# a_n977_1345# a_n1235_n1833# a_n1077_1257# a_n1077_1875# a_n1235_n1215#
++ a_29_639# a_345_1875# a_345_1257# a_n603_n1215# a_n603_n1833# a_603_n2363# a_n1235_n597#
++ a_n603_21# a_n503_n509# a_129_n509# a_n1293_n509# a_n1293_109# a_n1293_727# a_1235_n2363#
++ a_503_n597# a_n919_1875# a_977_n2451# a_n503_1345# a_n919_1257# a_n503_1963# a_n1077_n1833#
++ a_n1077_n1215# a_129_1345# a_129_1963# a_n1293_1963# a_n1293_1345# a_n345_727# a_n919_639#
++ a_503_n1215# a_n445_n1833# a_503_n1833# a_445_n2363# a_n345_109# a_977_1257# a_977_1875#
++ a_n445_n1215# a_445_109# a_445_727# a_503_639# a_n445_1257# a_n445_1875# a_n919_n1833#
++ a_919_n2363# a_n919_n1215# a_n1235_21# a_1135_n1215# a_1135_n1833# a_1077_n2363#
++ a_n603_n597# a_1135_n597# a_n661_n509# a_n761_639# a_287_n509# a_n1235_1257# a_n1235_1875#
++ a_345_n1215# a_n287_n1833# a_345_n1833# a_287_n2363# a_661_n597# a_503_21# a_n287_n1215#
++ a_819_n1833# a_n661_1963# a_503_1875# a_819_n1215# a_n661_1345# a_503_1257# a_287_1963#
++ a_287_1345# a_n187_109# a_n187_727# a_287_727# a_n761_n1833# a_761_n2363# a_287_109#
++ a_345_639# a_n761_n1215# a_187_n1833# a_n29_n2363# a_187_n1215# a_n761_n597# a_n603_1257#
++ a_1135_1875# a_n603_1875# a_919_n509# a_1135_1257# a_129_n1745# a_1135_21# a_n1395_n2537#
++ a_129_n1127# a_661_n1833# a_661_n1215# a_n919_21# a_661_1257# a_919_1963# a_661_1875#
++ a_919_1345# a_n761_21# a_445_n509# a_n129_21# a_n819_727# a_603_n1745# a_n819_109#
++ a_187_639# a_603_n1127# a_n1135_n2363# a_919_109# a_919_727# a_445_1963# a_445_1345#
++ a_1235_n1745# a_977_n1215# a_1235_n1127# a_977_n1833# a_n503_n2363# a_n761_1875#
++ a_n761_1257# a_n1235_639# a_n661_109# a_n661_727# a_445_n1745# a_1077_n509# a_761_727#
++ a_445_n1127# a_761_109# a_919_n1127# a_919_n1745# a_819_21# a_1077_1963# a_1077_n1127#
++ a_1077_n1745# a_661_21# a_1077_1345# a_n345_n2363# a_n819_n2363# a_819_639# a_29_n2451#
++ a_287_n1127# a_287_n1745# a_603_n509# a_603_1345# a_603_1963# a_n187_n2363# a_n1077_639#
++ a_661_639# a_761_n1127# a_n29_n1745# a_761_n1745# a_n29_n1127# a_n1293_n2363# a_n129_639#
++ a_n661_n2363# a_1235_n509# a_761_n509# a_1235_1345# a_1235_1963# a_n287_21# a_761_1963#
+X0 a_1235_n1745# a_1135_n1833# a_1077_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n1135_109# a_n1235_21# a_n1293_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_761_n2363# a_661_n2451# a_603_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n345_n1127# a_n445_n1215# a_n503_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X4 a_n29_1963# a_n129_1875# a_n187_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X5 a_603_1963# a_503_1875# a_445_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X6 a_1235_n509# a_1135_n597# a_1077_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X7 a_n819_727# a_n919_639# a_n977_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X8 a_n1135_n509# a_n1235_n597# a_n1293_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X9 a_n977_1345# a_n1077_1257# a_n1135_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X10 a_603_n1745# a_503_n1833# a_445_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X11 a_n345_727# a_n445_639# a_n503_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X12 a_1077_1345# a_977_1257# a_919_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X13 a_n661_109# a_n761_21# a_n819_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X14 a_n503_1345# a_n603_1257# a_n661_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X15 a_n819_n1127# a_n919_n1215# a_n977_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X16 a_129_109# a_29_21# a_n29_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X17 a_761_n1745# a_661_n1833# a_603_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X18 a_n977_n1127# a_n1077_n1215# a_n1135_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X19 a_1235_1963# a_1135_1875# a_1077_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X20 a_n503_727# a_n603_639# a_n661_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X21 a_n1135_1963# a_n1235_1875# a_n1293_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X22 a_1235_n1127# a_1135_n1215# a_1077_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X23 a_n187_109# a_n287_21# a_n345_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X24 a_n503_n2363# a_n603_n2451# a_n661_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X25 a_n29_1345# a_n129_1257# a_n187_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X26 a_603_1345# a_503_1257# a_445_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X27 a_287_n2363# a_187_n2451# a_129_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X28 a_n29_727# a_n129_639# a_n187_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X29 a_n819_109# a_n919_21# a_n977_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X30 a_603_n1127# a_503_n1215# a_445_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X31 a_n345_109# a_n445_21# a_n503_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X32 a_n661_n2363# a_n761_n2451# a_n819_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X33 a_n503_n1745# a_n603_n1833# a_n661_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X34 a_761_n1127# a_661_n1215# a_603_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X35 a_n1135_n2363# a_n1235_n2451# a_n1293_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X36 a_n503_109# a_n603_21# a_n661_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X37 a_1077_727# a_977_639# a_919_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X38 a_n1135_1345# a_n1235_1257# a_n1293_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X39 a_1235_1345# a_1135_1257# a_1077_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X40 a_287_n1745# a_187_n1833# a_129_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X41 a_n819_n509# a_n919_n597# a_n977_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X42 a_n661_n1745# a_n761_n1833# a_n819_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X43 a_n29_109# a_n129_21# a_n187_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X44 a_n661_n509# a_n761_n597# a_n819_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X45 a_n29_n2363# a_n129_n2451# a_n187_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X46 a_761_727# a_661_639# a_603_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X47 a_n1135_n1745# a_n1235_n1833# a_n1293_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X48 a_n819_1963# a_n919_1875# a_n977_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X49 a_919_n509# a_819_n597# a_761_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X50 a_n187_n2363# a_n287_n2451# a_n345_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X51 a_n503_n1127# a_n603_n1215# a_n661_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X52 a_287_727# a_187_639# a_129_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X53 a_761_n509# a_661_n597# a_603_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X54 a_1077_109# a_977_21# a_919_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X55 a_n661_1963# a_n761_1875# a_n819_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X56 a_n187_n509# a_n287_n597# a_n345_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X57 a_1235_727# a_1135_639# a_1077_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X58 a_287_n1127# a_187_n1215# a_129_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X59 a_n29_n1745# a_n129_n1833# a_n187_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X60 a_n661_n1127# a_n761_n1215# a_n819_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X61 a_919_727# a_819_639# a_761_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X62 a_919_1963# a_819_1875# a_761_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X63 a_445_727# a_345_639# a_287_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X64 a_n187_n1745# a_n287_n1833# a_n345_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X65 a_n187_1963# a_n287_1875# a_n345_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X66 a_761_1963# a_661_1875# a_603_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X67 a_287_n509# a_187_n597# a_129_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X68 a_761_109# a_661_21# a_603_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X69 a_129_n2363# a_29_n2451# a_n29_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X70 a_n1135_n1127# a_n1235_n1215# a_n1293_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X71 a_n819_1345# a_n919_1257# a_n977_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X72 a_603_727# a_503_639# a_445_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X73 a_287_109# a_187_21# a_129_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X74 a_n661_1345# a_n761_1257# a_n819_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X75 a_1235_109# a_1135_21# a_1077_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X76 a_445_n2363# a_345_n2451# a_287_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X77 a_n29_n1127# a_n129_n1215# a_n187_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X78 a_287_1963# a_187_1875# a_129_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X79 a_129_n1745# a_29_n1833# a_n29_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X80 a_919_1345# a_819_1257# a_761_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X81 a_919_109# a_819_21# a_761_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X82 a_445_109# a_345_21# a_287_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X83 a_n187_n1127# a_n287_n1215# a_n345_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X84 a_n345_n509# a_n445_n597# a_n503_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X85 a_n187_1345# a_n287_1257# a_n345_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X86 a_761_1345# a_661_1257# a_603_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X87 a_919_n2363# a_819_n2451# a_761_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X88 a_445_n1745# a_345_n1833# a_287_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X89 a_129_n509# a_29_n597# a_n29_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X90 a_603_109# a_503_21# a_445_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X91 a_1077_n2363# a_977_n2451# a_919_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X92 a_445_n509# a_345_n597# a_287_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X93 a_n345_1963# a_n445_1875# a_n503_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X94 a_287_1345# a_187_1257# a_129_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X95 a_129_n1127# a_29_n1215# a_n29_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X96 a_919_n1745# a_819_n1833# a_761_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X97 a_129_1963# a_29_1875# a_n29_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X98 a_n345_n2363# a_n445_n2451# a_n503_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X99 a_n977_727# a_n1077_639# a_n1135_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X100 a_1077_n1745# a_977_n1833# a_919_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X101 a_445_1963# a_345_1875# a_287_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X102 a_445_n1127# a_345_n1215# a_287_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X103 a_n977_n509# a_n1077_n597# a_n1135_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X104 a_1077_n509# a_977_n597# a_919_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X105 a_n1135_727# a_n1235_639# a_n1293_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X106 a_n819_n2363# a_n919_n2451# a_n977_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X107 a_n345_1345# a_n445_1257# a_n503_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X108 a_n503_n509# a_n603_n597# a_n661_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X109 a_n345_n1745# a_n445_n1833# a_n503_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X110 a_n977_n2363# a_n1077_n2451# a_n1135_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X111 a_919_n1127# a_819_n1215# a_761_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X112 a_1235_n2363# a_1135_n2451# a_1077_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=500000u
+X113 a_n977_1963# a_n1077_1875# a_n1135_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X114 a_129_1345# a_29_1257# a_n29_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X115 a_n977_109# a_n1077_21# a_n1135_109# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X116 a_1077_1963# a_977_1875# a_919_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X117 a_n661_727# a_n761_639# a_n819_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X118 a_n503_1963# a_n603_1875# a_n661_1963# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X119 a_1077_n1127# a_977_n1215# a_919_n1127# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X120 a_603_n509# a_503_n597# a_445_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X121 a_n29_n509# a_n129_n597# a_n187_n509# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X122 a_445_1345# a_345_1257# a_287_1345# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X123 a_n819_n1745# a_n919_n1833# a_n977_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X124 a_129_727# a_29_639# a_n29_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X125 a_603_n2363# a_503_n2451# a_445_n2363# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X126 a_n977_n1745# a_n1077_n1833# a_n1135_n1745# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X127 a_n187_727# a_n287_639# a_n345_727# a_n1395_n2537# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt outd_cmirror_transistors sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n597#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n2363# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1345# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1833# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875# sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1875# sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#
++ a_2_2306# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215# a_2_1688# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109# a_2_n58# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1875#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257# sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1833#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n597# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_639#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#
++ VSUBS a_2_560# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833#
+Xsky130_fd_pr__nfet_01v8_ED72KE_0 sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109# a_2_n58#
++ a_2_1688# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727# a_2_1688# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#
++ a_2_n58# a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509# a_2_n58# a_2_n58#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#
++ a_2_2306# a_2_2306# a_2_1688# a_2_2306# a_2_1688# sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727# a_2_n58# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509# a_2_n58# a_2_560# a_2_n58# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#
++ a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#
++ a_2_1688# a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#
++ VSUBS sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#
++ a_2_n58# sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#
++ a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509# a_2_n58# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727# a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#
++ a_2_1688# sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127# sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#
++ a_2_2306# a_2_560# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509# a_2_n58#
++ a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#
++ a_2_2306# a_2_n58# a_2_n58# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727# a_2_1688#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109# a_2_2306# a_2_1688# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n509# a_2_1688# a_2_560# a_2_1688# a_2_560#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#
++ a_2_1688# a_2_1688# a_2_1688# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109# a_2_560# a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#
++ a_2_n58# a_2_560# a_2_1688# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727# a_2_2306# a_2_560# a_2_2306# a_2_2306#
++ a_2_n58# a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109# sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509# sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509# a_2_n58# a_2_560# sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_727#
++ sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109# a_2_560# a_2_1688# a_2_1688# a_2_n58#
++ a_2_2306# sky130_fd_pr__nfet_01v8_ED72KE
+Xsky130_fd_pr__nfet_01v8_A574RZ_0 sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n597# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_109#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n597#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21# VSUBS sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1833# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1833#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_727#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_727# sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_109# sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451# sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_639#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1745# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1745#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_639# sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n509#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345# sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_21# sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#
++ sky130_fd_pr__nfet_01v8_A574RZ
+.ends
+
+.subckt outd_cmirror_64t m1_220_5610# m1_0_80# m1_130_5370# VSUBS
+Xoutd_cmirror_transistors_0 m1_220_5610# m1_130_5370# m1_130_5370# m1_220_5610# m1_130_5370#
++ VSUBS m1_130_5370# VSUBS m1_220_5610# VSUBS m1_0_80# m1_0_80# VSUBS VSUBS VSUBS
++ m1_220_5610# m1_0_80# m1_0_80# m1_0_80# m1_220_5610# m1_130_5370# m1_220_5610# m1_220_5610#
++ m1_220_5610# m1_0_80# m1_220_5610# m1_130_5370# m1_220_5610# m1_220_5610# m1_220_5610#
++ VSUBS VSUBS m1_220_5610# VSUBS m1_220_5610# m1_0_80# VSUBS VSUBS m1_0_80# m1_0_80#
++ m1_220_5610# m1_0_80# m1_130_5370# m1_220_5610# m1_220_5610# m1_220_5610# m1_0_80#
++ m1_220_5610# m1_0_80# m1_220_5610# m1_220_5610# m1_220_5610# m1_0_80# m1_220_5610#
++ m1_0_80# m1_220_5610# m1_220_5610# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# VSUBS
++ VSUBS VSUBS m1_130_5370# m1_220_5610# m1_130_5370# VSUBS VSUBS m1_220_5610# m1_0_80#
++ VSUBS VSUBS m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_130_5370# m1_0_80# VSUBS
++ VSUBS m1_220_5610# m1_130_5370# VSUBS m1_220_5610# m1_220_5610# m1_220_5610# m1_220_5610#
++ m1_0_80# m1_0_80# VSUBS VSUBS m1_0_80# VSUBS VSUBS m1_220_5610# m1_220_5610# m1_220_5610#
++ m1_130_5370# m1_220_5610# m1_130_5370# m1_130_5370# m1_220_5610# m1_220_5610# m1_0_80#
++ m1_130_5370# m1_220_5610# m1_220_5610# VSUBS VSUBS VSUBS m1_220_5610# m1_220_5610#
++ m1_220_5610# m1_130_5370# m1_220_5610# m1_0_80# m1_130_5370# m1_220_5610# m1_0_80#
++ m1_0_80# VSUBS m1_130_5370# VSUBS VSUBS m1_130_5370# m1_220_5610# m1_220_5610# m1_0_80#
++ m1_0_80# m1_0_80# m1_220_5610# m1_0_80# m1_220_5610# m1_220_5610# m1_0_80# VSUBS
++ m1_220_5610# m1_0_80# VSUBS m1_0_80# m1_0_80# VSUBS VSUBS m1_220_5610# m1_0_80#
++ m1_0_80# m1_0_80# m1_0_80# m1_0_80# VSUBS VSUBS VSUBS m1_0_80# m1_0_80# m1_220_5610#
++ m1_0_80# m1_0_80# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# m1_0_80# VSUBS VSUBS m1_220_5610#
++ VSUBS m1_220_5610# m1_0_80# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# VSUBS VSUBS
++ m1_220_5610# m1_130_5370# m1_130_5370# m1_0_80# VSUBS VSUBS VSUBS VSUBS m1_220_5610#
++ m1_0_80# m1_220_5610# m1_130_5370# m1_0_80# m1_130_5370# m1_0_80# m1_220_5610# m1_0_80#
++ VSUBS m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_220_5610# m1_220_5610# m1_0_80# m1_0_80#
++ m1_0_80# m1_0_80# m1_0_80# m1_130_5370# m1_130_5370# m1_130_5370# m1_0_80# m1_0_80#
++ m1_0_80# m1_0_80# m1_0_80# m1_130_5370# m1_0_80# m1_0_80# m1_220_5610# m1_220_5610#
++ m1_220_5610# VSUBS m1_220_5610# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# m1_0_80#
++ VSUBS m1_220_5610# m1_0_80# m1_0_80# VSUBS m1_220_5610# VSUBS m1_0_80# m1_0_80#
++ VSUBS VSUBS m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_220_5610# m1_0_80# m1_0_80# m1_0_80#
++ m1_0_80# m1_0_80# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_220_5610#
++ m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# m1_0_80#
++ m1_220_5610# m1_220_5610# m1_220_5610# m1_0_80# m1_0_80# m1_0_80# VSUBS VSUBS m1_220_5610#
++ m1_130_5370# m1_130_5370# m1_220_5610# m1_0_80# m1_0_80# m1_130_5370# m1_130_5370#
++ m1_220_5610# m1_0_80# m1_0_80# m1_130_5370# m1_0_80# m1_0_80# m1_130_5370# VSUBS
++ m1_220_5610# m1_220_5610# VSUBS VSUBS m1_130_5370# m1_0_80# VSUBS m1_0_80# VSUBS
++ m1_0_80# VSUBS m1_130_5370# m1_0_80# m1_130_5370# m1_220_5610# m1_0_80# m1_220_5610#
++ VSUBS VSUBS m1_0_80# VSUBS VSUBS m1_220_5610# m1_0_80# m1_220_5610# m1_0_80# m1_0_80#
++ VSUBS m1_0_80# m1_0_80# m1_0_80# VSUBS VSUBS VSUBS VSUBS VSUBS m1_220_5610# m1_220_5610#
++ m1_220_5610# m1_220_5610# m1_220_5610# m1_220_5610# m1_220_5610# m1_220_5610# m1_220_5610#
++ VSUBS m1_0_80# m1_0_80# m1_0_80# m1_0_80# m1_0_80# outd_cmirror_transistors
+.ends
+
+.subckt outd_stage2 m1_370_11400# m1_2350_11400# outd_cmirror_64t_4/m1_0_80# dw_60_8030#
++ m1_1850_8370# m2_7240_7300# cmirror_out m1_250_8900# VN
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_0 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_1 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_2 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_3 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_4 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_5 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_6 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_8 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_7 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_9 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_10 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_11 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_12 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_13 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_14 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xsky130_fd_pr__res_high_po_5p73_PA2QZX_15 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73_PA2QZX
+Xoutd_diffamp_0 cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_370_11400# m1_2350_11400# m1_2350_11400# cmirror_out cmirror_out cmirror_out
++ cmirror_out m1_370_11400# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400#
++ cmirror_out m1_1850_8370# cmirror_out cmirror_out m1_250_8900# cmirror_out m1_370_11400#
++ m1_1850_8370# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400# cmirror_out
++ m1_250_8900# cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_2350_11400# m1_370_11400# m1_2350_11400# outd_diffamp
+Xoutd_cmirror_64t_0 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN outd_cmirror_64t
+Xoutd_diffamp_1 cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_370_11400# m1_2350_11400# m1_2350_11400# cmirror_out cmirror_out cmirror_out
++ cmirror_out m1_370_11400# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400#
++ cmirror_out m1_1850_8370# cmirror_out cmirror_out m1_250_8900# cmirror_out m1_370_11400#
++ m1_1850_8370# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400# cmirror_out
++ m1_250_8900# cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_2350_11400# m1_370_11400# m1_2350_11400# outd_diffamp
+Xoutd_cmirror_64t_2 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN outd_cmirror_64t
+Xoutd_cmirror_64t_1 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN outd_cmirror_64t
+Xoutd_diffamp_2 cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_370_11400# m1_2350_11400# m1_2350_11400# cmirror_out cmirror_out cmirror_out
++ cmirror_out m1_370_11400# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400#
++ cmirror_out m1_1850_8370# cmirror_out cmirror_out m1_250_8900# cmirror_out m1_370_11400#
++ m1_1850_8370# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400# cmirror_out
++ m1_250_8900# cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_2350_11400# m1_370_11400# m1_2350_11400# outd_diffamp
+Xoutd_cmirror_64t_3 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN outd_cmirror_64t
+Xoutd_diffamp_3 cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_370_11400# m1_2350_11400# m1_2350_11400# cmirror_out cmirror_out cmirror_out
++ cmirror_out m1_370_11400# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400#
++ cmirror_out m1_1850_8370# cmirror_out cmirror_out m1_250_8900# cmirror_out m1_370_11400#
++ m1_1850_8370# m1_370_11400# m1_2350_11400# m1_2350_11400# m1_2350_11400# cmirror_out
++ m1_250_8900# cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out cmirror_out
++ cmirror_out cmirror_out m1_370_11400# m1_370_11400# m1_370_11400# m1_2350_11400#
++ m1_2350_11400# m1_370_11400# m1_2350_11400# outd_diffamp
+Xoutd_cmirror_64t_4 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN outd_cmirror_64t
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_DJG2KN a_n29_n509# a_29_n597# a_n187_n509# a_n129_n597#
++ a_129_109# a_n289_n683# a_n29_109# a_29_21# a_129_n509# a_n187_109# a_n129_21#
+X0 a_129_109# a_29_21# a_n29_109# a_n289_n683# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_109# a_n129_21# a_n187_109# a_n289_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n509# a_29_n597# a_n29_n509# a_n289_n683# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n509# a_n129_n597# a_n187_n509# a_n289_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt outd_stage3 m4_40470_12200# m3_11690_14240# m2_40400_9110# outd_stage2_3/outd_cmirror_64t_4/m1_0_80#
++ outd_stage2_3/cmirror_out m4_40470_12880# m2_40400_10380# VSUBS
+Xoutd_stage2_0 m4_40470_12880# m4_40470_12200# outd_stage2_3/outd_cmirror_64t_4/m1_0_80#
++ m3_11690_14240# m2_40400_9110# m2_41490_8160# outd_stage2_3/cmirror_out m2_40400_10380#
++ VSUBS outd_stage2
+Xoutd_stage2_1 m4_40470_12880# m4_40470_12200# outd_stage2_3/outd_cmirror_64t_4/m1_0_80#
++ m3_11690_14240# m2_40400_9110# m2_41490_8160# outd_stage2_3/cmirror_out m2_40400_10380#
++ VSUBS outd_stage2
+Xoutd_stage2_2 m4_40470_12880# m4_40470_12200# outd_stage2_3/outd_cmirror_64t_4/m1_0_80#
++ m3_11690_14240# m2_40400_9110# m2_41490_8160# outd_stage2_3/cmirror_out m2_40400_10380#
++ VSUBS outd_stage2
+Xoutd_stage2_3 m4_40470_12880# m4_40470_12200# outd_stage2_3/outd_cmirror_64t_4/m1_0_80#
++ m3_11690_14240# m2_40400_9110# m2_41490_8160# outd_stage2_3/cmirror_out m2_40400_10380#
++ VSUBS outd_stage2
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_LH2JGW a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__res_high_po_2p85_8GE2XM a_n1512_n1032# a_n694_n1032# a_124_n1032#
++ a_n1512_600# a_n1642_n1162# a_942_n1032# a_124_600# a_942_600# a_n694_600#
+X0 a_n1512_n1032# a_n1512_600# a_n1642_n1162# sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X1 a_n694_n1032# a_n694_600# a_n1642_n1162# sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X2 a_942_n1032# a_942_600# a_n1642_n1162# sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X3 a_124_n1032# a_124_600# a_n1642_n1162# sky130_fd_pr__res_high_po_2p85 l=6e+06u
+.ends
+
+.subckt outd_stage1 outd_cmirror_64t_0/m1_0_80# m1_n1500_10180# m1_1860_8350# isource_out
++ m1_1830_10170# m1_260_8900# dw_70_8020# VN
+Xoutd_cmirror_64t_0 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out
++ VN outd_cmirror_64t
+Xoutd_diffamp_0 isource_out isource_out isource_out isource_out isource_out isource_out
++ isource_out isource_out m1_n1500_10180# m1_n1500_10180# m1_n1500_10180# m1_1830_10170#
++ m1_n1500_10180# m1_1830_10170# m1_1830_10170# isource_out isource_out isource_out
++ isource_out m1_n1500_10180# m1_n1500_10180# m1_1830_10170# m1_1830_10170# m1_1830_10170#
++ isource_out m1_1860_8350# isource_out isource_out m1_260_8900# isource_out m1_n1500_10180#
++ m1_1860_8350# m1_n1500_10180# m1_1830_10170# m1_1830_10170# m1_1830_10170# isource_out
++ m1_260_8900# isource_out isource_out isource_out isource_out isource_out isource_out
++ isource_out isource_out m1_n1500_10180# m1_n1500_10180# m1_n1500_10180# m1_1830_10170#
++ m1_1830_10170# m1_n1500_10180# m1_1830_10170# outd_diffamp
+Xsky130_fd_pr__res_high_po_2p85_8GE2XM_0 m1_n1500_10180# m1_n1500_10180# m1_n1500_10180#
++ dw_70_8020# VN m1_n1500_10180# dw_70_8020# dw_70_8020# dw_70_8020# sky130_fd_pr__res_high_po_2p85_8GE2XM
+Xsky130_fd_pr__res_high_po_2p85_8GE2XM_1 m1_1830_10170# m1_1830_10170# m1_1830_10170#
++ dw_70_8020# VN m1_1830_10170# dw_70_8020# dw_70_8020# dw_70_8020# sky130_fd_pr__res_high_po_2p85_8GE2XM
+.ends
+
+.subckt outd VP InputRef I_Bias outd_stage1_0/isource_out VM1_D VM14D InputSignal
++ VN
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_6 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_7 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_1_WXTTNJ_0 VN I_Bias sky130_fd_pr__cap_mim_m3_1_WXTTNJ
+Xsky130_fd_pr__cap_mim_m3_1_WXTTNJ_1 VN I_Bias sky130_fd_pr__cap_mim_m3_1_WXTTNJ
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_8 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xoutd_stage2_0 V_da2_N V_da2_P I_Bias VP V_da1_P outd_stage2_0/m2_7240_7300# VM1_D
++ V_da1_N VN outd_stage2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_9 VN InputRef sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__nfet_01v8_DJG2KN_0 m1_n19890_7120# I_Bias VN I_Bias VN VN m1_n19890_7120#
++ I_Bias VN VN I_Bias sky130_fd_pr__nfet_01v8_DJG2KN
+Xoutd_stage3_0 OutputP VP V_da2_P I_Bias VM14D OutputN V_da2_N VN outd_stage3
+Xsky130_fd_pr__nfet_01v8_LH2JGW_0 I_Bias m1_n19890_7120# I_Bias I_Bias VN m1_n19890_7120#
++ sky130_fd_pr__nfet_01v8_LH2JGW
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_10 VN InputRef sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xoutd_stage1_0 I_Bias V_da1_P InputRef outd_stage1_0/isource_out V_da1_N InputSignal
++ VP VN outd_stage1
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_4 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_5 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_6YE2KS a_n345_n200# a_129_n200# a_287_n200# a_29_n288#
++ a_n129_n288# a_187_n288# a_n287_n288# a_n29_n200# a_n187_n200# a_n447_n374#
+X0 a_n187_n200# a_n287_n288# a_n345_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_287_n200# a_187_n288# a_129_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X2 a_129_n200# a_29_n288# a_n29_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X3 a_n29_n200# a_n129_n288# a_n187_n200# a_n447_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_QQ8PGA a_255_n509# a_n129_109# a_15_n597# a_111_21#
++ a_351_n509# a_n177_n597# a_n321_109# a_n515_n683# a_n129_n509# a_111_n87# a_15_531#
++ a_63_n509# a_159_109# a_n225_n509# a_207_531# a_n81_21# a_n273_21# a_n321_n509#
++ a_351_109# a_n33_109# a_303_21# a_303_n87# a_n225_109# a_n413_109# a_n177_531# a_n33_n509#
++ a_n81_n87# a_n273_n87# a_63_109# a_207_n597# a_n369_531# a_159_n509# a_n369_n597#
++ a_255_109# a_n413_n509#
+X0 a_n129_n509# a_n177_n597# a_n225_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n33_109# a_n81_21# a_n129_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n33_n509# a_n81_n87# a_n129_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X3 a_351_n509# a_303_n87# a_255_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_255_109# a_207_531# a_159_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_351_109# a_303_21# a_255_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_159_109# a_111_21# a_63_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_n321_109# a_n369_531# a_n413_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X8 a_n225_109# a_n273_21# a_n321_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_n129_109# a_n177_531# a_n225_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X10 a_255_n509# a_207_n597# a_159_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X11 a_n321_n509# a_n369_n597# a_n413_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X12 a_63_109# a_15_531# a_n33_109# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 a_159_n509# a_111_n87# a_63_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X14 a_n225_n509# a_n273_n87# a_n321_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 a_63_n509# a_15_n597# a_n33_n509# a_n515_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt bias_curm_n m1_80_970# m1_176_1194# a_132_882# VSUBS
+Xsky130_fd_pr__nfet_01v8_6YE2KS_0 VSUBS m1_80_970# VSUBS a_132_882# a_132_882# a_132_882#
++ a_132_882# VSUBS m1_80_970# VSUBS sky130_fd_pr__nfet_01v8_6YE2KS
+Xsky130_fd_pr__nfet_01v8_QQ8PGA_0 m1_176_1194# m1_176_1194# a_132_882# a_132_882#
++ m1_80_970# a_132_882# m1_176_1194# VSUBS m1_176_1194# a_132_882# a_132_882# m1_176_1194#
++ m1_80_970# m1_80_970# a_132_882# a_132_882# a_132_882# m1_176_1194# m1_80_970# m1_80_970#
++ a_132_882# a_132_882# m1_80_970# m1_80_970# a_132_882# m1_80_970# a_132_882# a_132_882#
++ m1_176_1194# a_132_882# a_132_882# m1_80_970# a_132_882# m1_176_1194# m1_80_970#
++ sky130_fd_pr__nfet_01v8_QQ8PGA
+.ends
+
+.subckt eight-mirrors-p m3_590_440# m2_150_1940# m1_910_120#
+Xbias_curm_p_6 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_7 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_0 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_1 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_2 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_3 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_4 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+Xbias_curm_p_5 m3_590_440# m2_920_6270# m1_910_120# m2_150_1940# bias_curm_p
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_26U9NK c2_n3251_n1500# m4_n3351_n1600#
+X0 c2_n3251_n1500# m4_n3351_n1600# sky130_fd_pr__cap_mim_m3_2 l=1.5e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt curr_mirror_channel TIA_Bias Comp_Bias_6 Comp_Bias_5 ctl_Bias VP Comp_Bias_3
++ Comp_Bias_2 Comp_Bias_1 LVDS_Bias I_in m3_14070_2720# Bias_Analog_out VSUBS
+Xbias_curm_p_6 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_3 m2_3220_480# vm12d I_in VSUBS bias_curm_n
+Xbias_curm_p_7 FB_Bias_1 bias_curm_p_7/m1_120_n692# vm4d VP bias_curm_p
+Xbias_curm_p_8 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_9 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_10 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_11 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_12 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_13 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_14 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_15 Bias_Analog_out m2_5290_6250# vm12d VP bias_curm_p
+Xbias_curm_p_16 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xbias_curm_p_17 ctl_Bias m2_6380_8570# vm12d VP bias_curm_p
+Xeight-mirrors-p_0 Comp_Bias_1 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_1 Comp_Bias_2 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_2 m3_14070_2720# VP vm12d eight-mirrors-p
+Xeight-mirrors-p_3 Comp_Bias_3 VP vm12d eight-mirrors-p
+Xeight-mirrors-p_4 Comp_Bias_6 VP vm12d eight-mirrors-p
+Xsky130_fd_pr__cap_mim_m3_2_26U9NK_0 VP vm4d sky130_fd_pr__cap_mim_m3_2_26U9NK
+Xeight-mirrors-p_5 Comp_Bias_5 VP vm12d eight-mirrors-p
+Xsky130_fd_pr__cap_mim_m3_2_26U9NK_1 VP vm12d sky130_fd_pr__cap_mim_m3_2_26U9NK
+Xeight-mirrors-p_6 LVDS_Bias VP vm12d eight-mirrors-p
+Xbias_curm_p_0 vm4d bias_curm_p_0/m1_120_n692# vm4d VP bias_curm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VSUBS VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG
+Xbias_curm_p_1 vm12d bias_curm_p_1/m1_120_n692# vm12d VP bias_curm_p
+Xbias_curm_p_3 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_p_2 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_p_4 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_1 bias_curm_n_1/m1_80_970# vm4d I_in VSUBS bias_curm_n
+Xbias_curm_n_0 bias_curm_n_0/m1_80_970# I_in I_in VSUBS bias_curm_n
+Xbias_curm_p_5 TIA_Bias m2_3110_8460# vm12d VP bias_curm_p
+Xbias_curm_n_2 m2_3220_480# vm12d I_in VSUBS bias_curm_n
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL a_n642_n1562# a_442_1000# a_n194_n1432#
++ a_n194_1000# a_442_n1432# a_n512_n1432# a_124_n1432# a_n512_1000# a_124_1000#
+X0 a_n512_n1432# a_n512_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X1 a_124_n1432# a_124_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X2 a_n194_n1432# a_n194_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+X3 a_442_n1432# a_442_1000# a_n642_n1562# sky130_fd_pr__res_xhigh_po_0p35 l=1e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_HR8DH9 a_262_n288# a_n328_n288# a_n501_n200# a_616_n288#
++ a_561_n200# a_144_n288# a_n839_n374# a_n383_n200# a_498_n288# a_n737_n200# a_443_n200#
++ a_n265_n200# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200# a_n147_n200#
++ a_207_n200# a_n210_n288# a_n564_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200#
++ a_n446_n288#
+X0 a_325_n200# a_262_n288# a_207_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_n265_n200# a_n328_n288# a_n383_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_561_n200# a_498_n288# a_443_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_89_n200# a_26_n288# a_n29_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_207_n200# a_144_n288# a_89_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X5 a_n501_n200# a_n564_n288# a_n619_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n147_n200# a_n210_n288# a_n265_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X7 a_679_n200# a_616_n288# a_561_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X8 a_443_n200# a_380_n288# a_325_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X9 a_n383_n200# a_n446_n288# a_n501_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X10 a_n619_n200# a_n682_n288# a_n737_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X11 a_n29_n200# a_n92_n288# a_n147_n200# a_n839_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt currm_comp m1_522_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288#
++ m1_994_170# m1_50_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1230_170#
++ m1_1348_410# m1_168_410# m1_404_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_758_170# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288#
++ m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ m1_1466_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288# m1_286_170# m1_640_410#
++ VSUBS sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288#
+Xsky130_fd_pr__nfet_01v8_lvt_HR8DH9_0 sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_262_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n328_n288# m1_286_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_616_n288#
++ m1_1348_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_144_n288# VSUBS m1_404_410#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_498_n288# m1_50_170# m1_1230_170# m1_522_170#
++ m1_168_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_26_n288# m1_1112_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n682_n288#
++ m1_1466_170# m1_640_410# m1_994_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n210_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n564_n288# m1_758_170# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_380_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n92_n288# m1_876_410# sky130_fd_pr__nfet_01v8_lvt_HR8DH9_0/a_n446_n288#
++ sky130_fd_pr__nfet_01v8_lvt_HR8DH9
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_DG2JGC a_15_n200# a_n177_n200# a_111_n200# a_n273_n200#
++ a_159_n288# a_63_222# a_n81_n200# a_255_222# a_399_n200# a_351_n288# a_n417_n288#
++ a_n129_222# a_n563_n374# a_207_n200# a_n225_n288# a_n321_222# a_n461_n200# a_n369_n200#
++ a_303_n200# a_n33_n288#
+X0 a_n81_n200# a_n129_222# a_n177_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_n288# a_n81_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_n369_n200# a_n417_n288# a_n461_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_303_n200# a_255_222# a_207_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n273_n200# a_n321_222# a_n369_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X5 a_207_n200# a_159_n288# a_111_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_n177_n200# a_n225_n288# a_n273_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 a_111_n200# a_63_222# a_15_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_399_n200# a_351_n288# a_303_n200# a_n563_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element m1_838_660# m1_934_420# a_698_850# m1_646_660# a_890_840#
++ VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_DG2JGC_0 m1_838_660# m1_838_660# m1_934_420# VSUBS a_890_840#
++ a_890_840# m1_934_420# a_890_840# m1_838_660# a_890_840# VSUBS a_890_840# VSUBS
++ m1_838_660# a_698_850# a_698_850# VSUBS m1_646_660# m1_934_420# a_890_840# sky130_fd_pr__nfet_01v8_lvt_DG2JGC
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_TY94YJ a_n285_100# a_n285_n532# a_n415_n662#
+X0 a_n285_n532# a_n285_100# a_n415_n662# sky130_fd_pr__res_xhigh_po_2p85 l=1e+06u
+.ends
+
+.subckt comp_adv3_di Outn bias VP diffamp_element_0/a_890_840# diffamp_element_1/a_890_840#
++ Outp VN
+Xcurrm_comp_0 VN bias bias VN VN bias VN m2_820_n490# bias m2_820_n490# VN VN m2_820_n490#
++ bias bias bias bias m2_820_n490# bias bias VN bias VN m2_820_n490# VN bias currm_comp
+Xdiffamp_element_0 Outp m2_820_n490# Inn2 Inn2 diffamp_element_0/a_890_840# VN diffamp_element
+Xdiffamp_element_1 Outn m2_820_n490# Inp2 Inp2 diffamp_element_1/a_890_840# VN diffamp_element
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_0 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+Xsky130_fd_pr__res_xhigh_po_2p85_TY94YJ_1 VP Outp VN sky130_fd_pr__res_xhigh_po_2p85_TY94YJ
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_MJMGTW c2_n3251_n2000# m4_n3351_n2100#
+X0 c2_n3251_n2000# m4_n3351_n2100# sky130_fd_pr__cap_mim_m3_2 l=2e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_H9XL9H c1_n550_n500# m3_n650_n600#
+X0 c1_n550_n500# m3_n650_n600# sky130_fd_pr__cap_mim_m3_1 l=5e+06u w=5e+06u
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_2p85_8K9944 a_n285_150# a_n285_n582# a_n415_n712#
+X0 a_n285_n582# a_n285_150# a_n415_n712# sky130_fd_pr__res_xhigh_po_2p85 l=1.5e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_V6SMGN a_n129_n200# a_n81_n288# a_63_n200# a_n177_222#
++ a_n225_n200# a_n33_n200# a_n419_n374# a_n317_n200# a_159_n200# a_111_n288# a_15_222#
++ a_n273_n288# a_255_n200# a_207_222#
+X0 a_n33_n200# a_n81_n288# a_n129_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_255_n200# a_207_222# a_159_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_n288# a_63_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_n288# a_n317_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_63_n200# a_15_222# a_n33_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_222# a_n225_n200# a_n419_n374# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt diffamp_element_nodi m1_1126_642# m1_1414_418# a_890_330# m1_1318_642# m1_838_418#
++ m1_1030_418# m1_934_642# m1_1222_418# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_V6SMGN_0 m1_1030_418# a_890_330# m1_1222_418# a_890_330#
++ m1_934_642# m1_1126_642# VSUBS m1_838_418# m1_1318_642# a_890_330# a_890_330# a_890_330#
++ m1_1414_418# a_890_330# sky130_fd_pr__nfet_01v8_lvt_V6SMGN
+.ends
+
+.subckt comp_adv3 Outn bias VP OutP diffamp_element_nodi_0/a_890_330# diffamp_element_nodi_1/a_890_330#
++ VN
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_0 VP OutP VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xsky130_fd_pr__res_xhigh_po_2p85_8K9944_1 VP Outn VN sky130_fd_pr__res_xhigh_po_2p85_8K9944
+Xdiffamp_element_nodi_0 OutP m2_720_n160# diffamp_element_nodi_0/a_890_330# OutP m2_720_n160#
++ m2_720_n160# OutP m2_720_n160# VN diffamp_element_nodi
+Xdiffamp_element_nodi_1 Outn m2_720_n160# diffamp_element_nodi_1/a_890_330# Outn m2_720_n160#
++ m2_720_n160# Outn m2_720_n160# VN diffamp_element_nodi
+Xcurrm_comp_0 VN bias bias VN VN bias VN m2_720_n160# bias m2_720_n160# VN VN m2_720_n160#
++ bias bias bias bias m2_720_n160# bias bias VN bias VN m2_720_n160# VN bias currm_comp
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_XJ7GBL a_n33_n147# a_n73_n50# w_n211_n269# a_15_n50#
+X0 a_15_n50# a_n33_n147# a_n73_n50# w_n211_n269# sky130_fd_pr__pfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U47ZGH a_n221_n200# a_n129_n200# a_63_n200# a_15_n297#
++ a_n81_231# w_n359_n419# a_n177_n297# a_n33_n200# a_159_n200# a_111_231#
+X0 a_159_n200# a_111_231# a_63_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_n297# a_n33_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n129_n200# a_n177_n297# a_n221_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_n33_n200# a_n81_231# a_n129_n200# w_n359_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_GV8PGY a_15_n200# a_n33_222# a_111_n200# a_n81_n200#
++ a_n129_n288# a_63_n288# a_n275_n374# a_n173_n200#
+X0 a_n81_n200# a_n129_n288# a_n173_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_15_n200# a_n33_222# a_n81_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_111_n200# a_63_n288# a_15_n200# a_n275_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_X4XKHL a_63_n200# a_15_231# a_n33_n200# w_n263_n419#
++ a_n81_n297# a_n125_n200#
+X0 a_63_n200# a_15_231# a_n33_n200# w_n263_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n33_n200# a_n81_n297# a_n125_n200# w_n263_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_LH2JGW a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_YT8PGU a_15_n200# a_n175_n374# a_n73_n200# a_n33_n288#
+X0 a_15_n200# a_n33_n288# a_n73_n200# a_n175_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_PL8DH5 a_n1209_n200# a_262_n288# a_n328_n288# a_1033_n200#
++ a_n501_n200# a_n855_n200# a_616_n288# a_561_n200# a_144_n288# a_n383_n200# a_498_n288#
++ a_915_n200# a_n1154_n288# a_n737_n200# a_443_n200# a_n1311_n374# a_797_n200# a_n265_n200#
++ a_n800_n288# a_n1036_n288# a_n619_n200# a_26_n288# a_325_n200# a_n682_n288# a_679_n200#
++ a_n147_n200# a_970_n288# a_n1091_n200# a_207_n200# a_n210_n288# a_n564_n288# a_852_n288#
++ a_n918_n288# a_n29_n200# a_380_n288# a_n92_n288# a_89_n200# a_n446_n288# a_1151_n200#
++ a_734_n288# a_n973_n200# a_1088_n288#
+X0 a_n29_n200# a_n92_n288# a_n147_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X1 a_915_n200# a_852_n288# a_797_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X2 a_n619_n200# a_n682_n288# a_n737_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X3 a_n855_n200# a_n918_n288# a_n973_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X4 a_325_n200# a_262_n288# a_207_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X5 a_561_n200# a_498_n288# a_443_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X6 a_n265_n200# a_n328_n288# a_n383_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X7 a_1151_n200# a_1088_n288# a_1033_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X8 a_797_n200# a_734_n288# a_679_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X9 a_89_n200# a_26_n288# a_n29_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X10 a_207_n200# a_144_n288# a_89_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X11 a_n1091_n200# a_n1154_n288# a_n1209_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=300000u
+X12 a_n501_n200# a_n564_n288# a_n619_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=300000u
+X13 a_n147_n200# a_n210_n288# a_n265_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X14 a_679_n200# a_616_n288# a_561_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X15 a_1033_n200# a_970_n288# a_915_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X16 a_n737_n200# a_n800_n288# a_n855_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X17 a_n973_n200# a_n1036_n288# a_n1091_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X18 a_443_n200# a_380_n288# a_325_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+X19 a_n383_n200# a_n446_n288# a_n501_n200# a_n1311_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=300000u
+.ends
+
+.subckt comp_to_logic Out VP In_p In_n I_Bias VSUBS
+Xsky130_fd_pr__pfet_01v8_XJ7GBL_1 VM6D VM1D VP VP sky130_fd_pr__pfet_01v8_XJ7GBL
+Xsky130_fd_pr__pfet_01v8_XJ7GBL_0 VM1D VP VP VM6D sky130_fd_pr__pfet_01v8_XJ7GBL
+Xsky130_fd_pr__pfet_01v8_U47ZGH_0 VP VM11D VM11D VM1D VM1D VP VM1D VP VP VM1D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__nfet_01v8_GV8PGY_0 VSUBS VM11D VM11D VM11D VM11D VM11D VSUBS VSUBS
++ sky130_fd_pr__nfet_01v8_GV8PGY
+Xsky130_fd_pr__pfet_01v8_U47ZGH_1 VP VM12D VM12D VM6D VM6D VP VM6D VP VP VM6D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__nfet_01v8_GV8PGY_1 VSUBS VM11D VM12D VM12D VM11D VM11D VSUBS VSUBS
++ sky130_fd_pr__nfet_01v8_GV8PGY
+Xsky130_fd_pr__pfet_01v8_U47ZGH_2 VP VM13D VM13D VM17D VM17D VP VM17D VP VP VM17D
++ sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__pfet_01v8_U47ZGH_3 VP Out Out VM13D VM13D VP VM13D VP VP VM13D sky130_fd_pr__pfet_01v8_U47ZGH
+Xsky130_fd_pr__pfet_01v8_X4XKHL_0 VP VM1D VM1D VP VM1D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__pfet_01v8_X4XKHL_2 VP VM12D VM17D VP VM12D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__pfet_01v8_X4XKHL_1 VP VM6D VM6D VP VM6D VP sky130_fd_pr__pfet_01v8_X4XKHL
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 In_n VM4D VM1D In_n VSUBS VM4D sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_2 VM13D VSUBS Out VM13D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_1 In_p VM4D VM6D In_p VSUBS VM4D sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_3 VM17D VSUBS VM13D VM17D VSUBS VSUBS sky130_fd_pr__nfet_01v8_lvt_LH2JGW
+Xsky130_fd_pr__nfet_01v8_YT8PGU_0 VM17D VSUBS VSUBS VM12D sky130_fd_pr__nfet_01v8_YT8PGU
+Xsky130_fd_pr__nfet_01v8_PL8DH5_0 VSUBS I_Bias I_Bias VSUBS VM4D VSUBS I_Bias VSUBS
++ I_Bias VSUBS I_Bias VM4D VSUBS VM4D VM4D VSUBS VSUBS VM4D I_Bias I_Bias VSUBS I_Bias
++ VSUBS I_Bias VM4D VSUBS I_Bias VSUBS VM4D I_Bias I_Bias I_Bias I_Bias VM4D I_Bias
++ I_Bias VSUBS I_Bias VSUBS I_Bias I_Bias VSUBS sky130_fd_pr__nfet_01v8_PL8DH5
+.ends
+
+.subckt comparator comp_adv3_4/bias VP comp_adv3_2/bias comp_adv3_di_0/bias InRef
++ comp_to_logic_0/I_Bias comp_adv3_3/bias comp_to_logic_0/Out In VN
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_0 VN m1_n2250_2600# m1_n3200_150# m1_n2870_2590#
++ m1_n2560_340# m1_n3200_150# m1_n2560_340# comp_adv3_0/OutP m1_n2870_2590# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_1 VN m1_n8540_2590# m1_n9500_160# m1_n9180_2590#
++ m1_n8860_160# m1_n9500_160# m1_n8860_160# m1_n9490_2240# m1_n9180_2590# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xsky130_fd_pr__res_xhigh_po_0p35_Z7KPPL_2 VN InRef m1_n8150_160# m1_n7830_2600# m1_n7520_160#
++ m1_n8150_160# m1_n7520_160# m1_n8540_2590# m1_n7830_2600# sky130_fd_pr__res_xhigh_po_0p35_Z7KPPL
+Xcomp_adv3_di_0 comp_adv3_di_0/Outn comp_adv3_di_0/bias VP m1_n2250_2600# comp_adv3_0/OutP
++ comp_adv3_di_0/Outp VN comp_adv3_di
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_0 VN m1_n8540_2590# sky130_fd_pr__cap_mim_m3_2_MJMGTW
+Xsky130_fd_pr__cap_mim_m3_1_H9XL9H_0 m1_n2250_2600# comp_adv3_0/Outn sky130_fd_pr__cap_mim_m3_1_H9XL9H
+Xsky130_fd_pr__cap_mim_m3_1_H9XL9H_1 m1_n9490_2240# In sky130_fd_pr__cap_mim_m3_1_H9XL9H
+Xcomp_adv3_0 comp_adv3_0/Outn comp_adv3_0/bias VP comp_adv3_0/OutP comp_adv3_1/OutP
++ comp_adv3_1/Outn VN comp_adv3
+Xcomp_adv3_1 comp_adv3_1/Outn comp_adv3_1/bias VP comp_adv3_1/OutP m1_n8540_2590#
++ m1_n9490_2240# VN comp_adv3
+Xcomp_adv3_2 comp_adv3_2/Outn comp_adv3_2/bias VP comp_adv3_2/OutP comp_adv3_di_0/Outp
++ comp_adv3_di_0/Outn VN comp_adv3
+Xcomp_to_logic_0 comp_to_logic_0/Out VP comp_adv3_4/OutP comp_adv3_4/Outn comp_to_logic_0/I_Bias
++ VN comp_to_logic
+Xcomp_adv3_3 comp_adv3_3/Outn comp_adv3_3/bias VP comp_adv3_3/OutP comp_adv3_2/OutP
++ comp_adv3_2/Outn VN comp_adv3
+Xcomp_adv3_4 comp_adv3_4/Outn comp_adv3_4/bias VP comp_adv3_4/OutP comp_adv3_3/OutP
++ comp_adv3_3/Outn VN comp_adv3
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_PJG2KG a_50_n200# a_n108_n200# a_n50_n288# a_n210_n374#
+X0 a_50_n200# a_n50_n288# a_n108_n200# a_n210_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_82JNGJ a_n221_n200# a_n129_n200# a_63_n200# a_111_222#
++ a_n33_n200# a_15_n288# a_n81_222# a_n177_n288# a_159_n200# a_n323_n374#
+X0 a_n33_n200# a_n81_222# a_n129_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_159_n200# a_111_222# a_63_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_63_n200# a_15_n288# a_n33_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 a_n129_n200# a_n177_n288# a_n221_n200# a_n323_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+.ends
+
+.subckt currm_n m1_68_150# m1_164_390# a_122_62# VSUBS
+Xsky130_fd_pr__nfet_01v8_PJG2KG_0 VSUBS m1_68_150# a_122_62# VSUBS sky130_fd_pr__nfet_01v8_PJG2KG
+Xsky130_fd_pr__nfet_01v8_82JNGJ_0 m1_68_150# m1_164_390# m1_164_390# a_122_62# m1_68_150#
++ a_122_62# a_122_62# a_122_62# m1_68_150# VSUBS sky130_fd_pr__nfet_01v8_82JNGJ
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_4LMUGG a_355_n200# a_413_n297# a_n285_n200# a_29_n297#
++ a_n227_n297# a_285_n297# a_227_n200# a_n157_n200# a_n541_n200# w_n679_n419# a_n483_n297#
++ a_n99_n297# a_483_n200# a_157_n297# a_99_n200# a_n413_n200# a_n29_n200# a_n355_n297#
+X0 a_227_n200# a_157_n297# a_99_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X1 a_n285_n200# a_n355_n297# a_n413_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X2 a_99_n200# a_29_n297# a_n29_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X3 a_355_n200# a_285_n297# a_227_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X4 a_483_n200# a_413_n297# a_355_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=0p ps=0u w=2e+06u l=350000u
+X5 a_n29_n200# a_n99_n297# a_n157_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X6 a_n413_n200# a_n483_n297# a_n541_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=350000u
+X7 a_n157_n200# a_n227_n297# a_n285_n200# w_n679_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=350000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_lvt_LKHJAY a_29_n297# a_n287_n200# a_n229_n297# a_229_n200#
++ w_n425_n419# a_n29_n200#
+X0 a_229_n200# a_29_n297# a_n29_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+X1 a_n29_n200# a_n229_n297# a_n287_n200# w_n425_n419# sky130_fd_pr__pfet_01v8_lvt ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=1e+06u
+.ends
+
+.subckt currm_p m1_60_n360# m1_70_460# m1_190_n590# m1_n50_n680#
+Xsky130_fd_pr__pfet_01v8_lvt_4LMUGG_0 m1_190_n590# m1_n50_n680# m1_60_n360# m1_n50_n680#
++ m1_n50_n680# m1_n50_n680# m1_60_n360# m1_190_n590# m1_60_n360# m1_70_460# m1_n50_n680#
++ m1_n50_n680# m1_60_n360# m1_n50_n680# m1_190_n590# m1_190_n590# m1_60_n360# m1_n50_n680#
++ sky130_fd_pr__pfet_01v8_lvt_4LMUGG
+Xsky130_fd_pr__pfet_01v8_lvt_LKHJAY_0 m1_n50_n680# m1_70_460# m1_n50_n680# m1_70_460#
++ m1_70_460# m1_60_n360# sky130_fd_pr__pfet_01v8_lvt_LKHJAY
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_PD4XN5 a_29_n297# a_n129_n297# a_129_n200# w_n325_n419#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n297# a_n29_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n297# a_n187_n200# w_n325_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_U4PWGH a_n129_n200# a_63_n200# a_n225_n200# a_15_n297#
++ a_n81_231# a_n177_n297# a_n273_231# a_n321_n200# w_n551_n419# a_n33_n200# a_159_n200#
++ a_n413_n200# a_111_231# a_255_n200# a_207_n297# a_351_n200# a_n369_n297# a_303_231#
+X0 a_255_n200# a_207_n297# a_159_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_n321_n200# a_n369_n297# a_n413_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X2 a_159_n200# a_111_231# a_63_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n225_n200# a_n273_231# a_n321_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X4 a_63_n200# a_15_n297# a_n33_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_n129_n200# a_n177_n297# a_n225_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_351_n200# a_303_231# a_255_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_n33_n200# a_n81_231# a_n129_n200# w_n551_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt currm_ps m1_170_170# a_132_72# w_132_72# m1_80_400#
+Xsky130_fd_pr__pfet_01v8_PD4XN5_0 a_132_72# a_132_72# w_132_72# w_132_72# m1_80_400#
++ w_132_72# sky130_fd_pr__pfet_01v8_PD4XN5
+Xsky130_fd_pr__pfet_01v8_U4PWGH_0 m1_170_170# m1_170_170# m1_80_400# a_132_72# a_132_72#
++ a_132_72# a_132_72# m1_170_170# w_132_72# m1_80_400# m1_80_400# m1_80_400# a_132_72#
++ m1_170_170# a_132_72# m1_80_400# a_132_72# a_132_72# sky130_fd_pr__pfet_01v8_U4PWGH
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_6H2JYD a_n73_n100# a_n33_n188# a_15_n100# a_n175_n274#
+X0 a_15_n100# a_n33_n188# a_n73_n100# a_n175_n274# sky130_fd_pr__nfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_N3PKNJ c2_n3251_n1000# m4_n3351_n1100#
+X0 c2_n3251_n1000# m4_n3351_n1100# sky130_fd_pr__cap_mim_m3_2 l=1e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_9A2JGL a_n81_109# a_15_109# a_n225_n597# a_15_n509#
++ a_n177_n509# a_111_n509# a_207_109# a_63_n87# a_159_531# a_n371_n683# a_n33_n597#
++ a_n33_531# a_n129_n87# a_n177_109# a_n225_531# a_n81_n509# a_111_109# a_n129_21#
++ a_159_n597# a_63_21# a_n269_n509# a_n269_109# a_207_n509#
+X0 a_15_109# a_n33_531# a_n81_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_111_109# a_63_21# a_15_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X2 a_n81_109# a_n129_21# a_n177_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X3 a_n177_109# a_n225_531# a_n269_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X4 a_n81_n509# a_n129_n87# a_n177_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_15_n509# a_n33_n597# a_n81_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X6 a_207_109# a_159_531# a_111_109# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+X7 a_207_n509# a_159_n597# a_111_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n177_n509# a_n225_n597# a_n269_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X9 a_111_n509# a_63_n87# a_15_n509# a_n371_n683# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_VCBWSW a_n513_n200# a_n989_n200# a_n129_n200# a_63_n200#
++ a_n225_n200# a_15_n297# a_n561_n297# a_n81_231# a_927_n200# a_n177_n297# a_879_231#
++ a_n273_231# a_n321_n200# a_639_n200# a_735_n200# a_n33_n200# a_n465_231# a_n897_n200#
++ a_831_n200# a_447_n200# a_783_n297# a_399_n297# a_543_n200# a_159_n200# a_n609_n200#
++ a_n945_n297# a_n657_231# a_495_231# a_111_231# a_255_n200# a_n705_n200# a_591_n297#
++ a_207_n297# a_351_n200# a_n801_n200# a_n849_231# a_n417_n200# a_n369_n297# a_n753_n297#
++ w_n1127_n419# a_687_231# a_303_231#
+X0 a_n609_n200# a_n657_231# a_n705_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X1 a_927_n200# a_879_231# a_831_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.2e+11p pd=4.62e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X2 a_n897_n200# a_n945_n297# a_n989_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X3 a_255_n200# a_207_n297# a_159_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X4 a_n321_n200# a_n369_n297# a_n417_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X5 a_543_n200# a_495_231# a_447_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X6 a_831_n200# a_783_n297# a_735_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X7 a_159_n200# a_111_231# a_63_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X8 a_n225_n200# a_n273_231# a_n321_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X9 a_447_n200# a_399_n297# a_351_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X10 a_n513_n200# a_n561_n297# a_n609_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X11 a_63_n200# a_15_n297# a_n33_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X12 a_735_n200# a_687_231# a_639_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=6.6e+11p ps=4.66e+06u w=2e+06u l=150000u
+X13 a_n801_n200# a_n849_231# a_n897_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X14 a_n129_n200# a_n177_n297# a_n225_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=6.6e+11p pd=4.66e+06u as=0p ps=0u w=2e+06u l=150000u
+X15 a_n417_n200# a_n465_231# a_n513_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 a_639_n200# a_591_n297# a_543_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 a_n705_n200# a_n753_n297# a_n801_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_351_n200# a_303_231# a_255_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 a_n33_n200# a_n81_231# a_n129_n200# w_n1127_n419# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_MJMGTW#0 c2_n3251_n2000# m4_n3351_n2100#
+X0 c2_n3251_n2000# m4_n3351_n2100# sky130_fd_pr__cap_mim_m3_2 l=2e+07u w=3e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_E6B2KN a_129_n200# a_29_n288# a_n129_n288# a_n289_n374#
++ a_n29_n200# a_n187_n200#
+X0 a_129_n200# a_29_n288# a_n29_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=5.8e+11p pd=4.58e+06u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+X1 a_n29_n200# a_n129_n288# a_n187_n200# a_n289_n374# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=5.8e+11p ps=4.58e+06u w=2e+06u l=500000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_UAQRRG a_n73_n100# a_15_n100# w_n211_n319# a_n33_n197#
+X0 a_15_n100# a_n33_n197# a_n73_n100# w_n211_n319# sky130_fd_pr__pfet_01v8 ad=2.9e+11p pd=2.58e+06u as=2.9e+11p ps=2.58e+06u w=1e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_LH2JGW#0 a_n81_n288# a_63_n200# a_n33_n200# a_15_222#
++ a_n227_n374# a_n125_n200#
+X0 a_n33_n200# a_n81_n288# a_n125_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.6e+11p pd=4.66e+06u as=6.2e+11p ps=4.62e+06u w=2e+06u l=150000u
+X1 a_63_n200# a_15_222# a_n33_n200# a_n227_n374# sky130_fd_pr__nfet_01v8_lvt ad=6.2e+11p pd=4.62e+06u as=0p ps=0u w=2e+06u l=150000u
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4 m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt fb_dark_current VP InP InN VN
+Xcurrm_n_2 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_5 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_3 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_6 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_0 m1_9810_5770# m1_9810_5770# VP currm_ps_0/m1_80_400# currm_ps
+Xcurrm_n_4 currm_n_4/m1_68_150# m1_n5100_670# m1_n5100_670# VN currm_n
+Xcurrm_p_7 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_1 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_5 currm_n_5/m1_68_150# m1_4960_670# m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_6H2JYD_0 m1_n830_1270# Disable_FB VN VN sky130_fd_pr__nfet_01v8_6H2JYD
+Xcurrm_p_9 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_p_8 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_19 m1_n6550_3300# m1_n6550_3300# VP currm_ps_19/m1_80_400# currm_ps
+Xcurrm_ps_18 m1_9390_670# m1_n6550_3300# VP currm_ps_18/m1_80_400# currm_ps
+Xcurrm_ps_2 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_7 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_6 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_ps_3 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_8 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_ps_4 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_n_9 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_ps_5 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_20 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_21 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_10 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_6 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_11 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_ps_7 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_ps_8 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_12 currm_p_12/m1_60_n360# VP m1_n5100_670# m1_7940_2770# currm_p
+Xcurrm_p_13 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_ps_9 Out m1_9810_5770# VP m2_9370_4730# currm_ps
+Xcurrm_p_14 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_15 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_16 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_17 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_0 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xsky130_fd_pr__nfet_01v8_9A2JGL_1 m1_9390_670# VN Disable_FB m1_9390_670# m1_9390_670#
++ VN VN Disable_FB Disable_FB VN Disable_FB Disable_FB Disable_FB VN Disable_FB VN
++ m1_9390_670# Disable_FB Disable_FB Disable_FB VN m1_9390_670# m1_9390_670# sky130_fd_pr__nfet_01v8_9A2JGL
+Xsky130_fd_pr__cap_mim_m3_2_N3PKNJ_1 VN I_Bias sky130_fd_pr__cap_mim_m3_2_N3PKNJ
+Xcurrm_n_40 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_p_18 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xcurrm_p_19 m2_4260_3100# VP m1_9810_5770# m1_7940_2770# currm_p
+Xsky130_fd_pr__pfet_01v8_VCBWSW_0 VP m1_9810_5770# VP VP m1_9810_5770# m1_n830_1270#
++ m1_n830_1270# m1_n830_1270# m1_9810_5770# m1_n830_1270# m1_n830_1270# m1_n830_1270#
++ VP VP m1_9810_5770# m1_9810_5770# m1_n830_1270# VP VP VP m1_n830_1270# m1_n830_1270#
++ m1_9810_5770# m1_9810_5770# m1_9810_5770# m1_n830_1270# m1_n830_1270# m1_n830_1270#
++ m1_n830_1270# VP VP m1_n830_1270# m1_n830_1270# m1_9810_5770# m1_9810_5770# m1_n830_1270#
++ m1_9810_5770# m1_n830_1270# m1_n830_1270# VP m1_n830_1270# m1_n830_1270# sky130_fd_pr__pfet_01v8_VCBWSW
+Xcurrm_n_41 m2_9090_740# Out m1_9390_670# VN currm_n
+Xsky130_fd_pr__cap_mim_m3_2_MJMGTW_0 VP VN sky130_fd_pr__cap_mim_m3_2_MJMGTW#0
+Xcurrm_n_42 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_31 m2_n6460_740# m1_9390_670# m1_9390_670# VN currm_n
+Xcurrm_n_20 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_43 currm_n_43/m1_68_150# m1_9810_5770# I_Bias VN currm_n
+Xcurrm_n_10 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_32 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_21 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_11 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_12 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_45 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_44 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_33 currm_n_33/m1_68_150# m1_n6550_3300# I_Bias VN currm_n
+Xcurrm_n_23 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_22 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_35 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_13 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xcurrm_n_46 m2_200_n880# I_Bias I_Bias VN currm_n
+Xcurrm_n_36 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_14 m2_4080_740# m1_9810_5770# m1_4960_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_E6B2KN_0 m1_950_1560# InP InP VN m1_970_2720# m1_950_1560#
++ sky130_fd_pr__nfet_01v8_E6B2KN
+Xcurrm_n_47 m2_200_n880# I_Bias I_Bias VN currm_n
+Xsky130_fd_pr__pfet_01v8_UAQRRG_0 m1_n830_1270# VP VP Disable_FB sky130_fd_pr__pfet_01v8_UAQRRG
+Xcurrm_n_37 m2_9090_740# Out m1_9390_670# VN currm_n
+Xsky130_fd_pr__nfet_01v8_E6B2KN_1 m1_950_1560# InN InN VN m1_7940_2770# m1_950_1560#
++ sky130_fd_pr__nfet_01v8_E6B2KN
+Xsky130_fd_pr__nfet_01v8_lvt_LH2JGW_0 Disable_FB VN I_Bias Disable_FB VN VN sky130_fd_pr__nfet_01v8_lvt_LH2JGW#0
+Xcurrm_n_15 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_38 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_16 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_39 m2_9090_740# Out m1_9390_670# VN currm_n
+Xcurrm_n_17 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_18 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_n_19 m2_n5090_n880# m1_n6550_3300# m1_n5100_670# VN currm_n
+Xcurrm_p_0 currm_p_0/m1_60_n360# VP m1_970_2720# m1_970_2720# currm_p
+Xcurrm_p_1 currm_p_1/m1_60_n360# VP m1_7940_2770# m1_7940_2770# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 m1_970_2720# VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4
+Xcurrm_p_2 currm_p_2/m1_60_n360# VP m1_4960_670# m1_970_2720# currm_p
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 m1_7940_2770# VP sky130_fd_pr__cap_mim_m3_2_LJ5JLG#4
+Xcurrm_n_0 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_3 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+Xcurrm_n_1 m2_250_740# m1_950_1560# I_Bias VN currm_n
+Xcurrm_p_4 m2_n5120_4740# VP m1_n6550_3300# m1_970_2720# currm_p
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_1_WXTTNJ#0 c1_n2050_n2000# m3_n2150_n2100#
+X0 c1_n2050_n2000# m3_n2150_n2100# sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_834VMG a_2487_n400# a_n29_n400# a_n2487_n488# a_1229_n400#
++ a_n2647_n574# a_n2545_n400# a_n1229_n488# a_1287_n488# a_n1287_n400# a_29_n488#
+X0 a_n29_n400# a_n1229_n488# a_n1287_n400# a_n2647_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X1 a_n1287_n400# a_n2487_n488# a_n2545_n400# a_n2647_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X2 a_1229_n400# a_29_n488# a_n29_n400# a_n2647_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=6e+06u
+X3 a_2487_n400# a_1287_n488# a_1229_n400# a_n2647_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=6e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_26RGPZ a_n225_n909# a_n129_109# a_n369_21# a_n465_931#
++ a_447_109# a_399_21# a_n321_n909# a_n177_n87# a_n81_n997# a_n321_109# a_n509_109#
++ a_n33_n909# a_n509_n909# a_159_109# a_n369_n87# a_111_931# a_447_n909# a_351_109#
++ a_n33_109# a_n611_n1083# a_159_n909# a_303_n997# a_n225_109# a_303_931# a_n177_21#
++ a_255_n909# a_399_n87# a_n465_n997# a_207_21# a_351_n909# a_n417_n909# a_63_109#
++ a_n81_931# a_15_n87# a_15_21# a_111_n997# a_n417_109# a_n273_931# a_n129_n909# a_n273_n997#
++ a_255_109# a_207_n87# a_63_n909#
+X0 a_351_n909# a_303_n997# a_255_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X1 a_n33_n909# a_n81_n997# a_n129_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X2 a_255_n909# a_207_n87# a_159_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X3 a_n33_109# a_n81_931# a_n129_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X4 a_n321_n909# a_n369_n87# a_n417_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X5 a_351_109# a_303_931# a_255_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X6 a_159_109# a_111_931# a_63_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X7 a_255_109# a_207_21# a_159_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X8 a_447_109# a_399_21# a_351_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.24e+12p pd=8.62e+06u as=0p ps=0u w=4e+06u l=150000u
+X9 a_n321_109# a_n369_21# a_n417_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X10 a_n417_109# a_n465_931# a_n509_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.24e+12p ps=8.62e+06u w=4e+06u l=150000u
+X11 a_n225_109# a_n273_931# a_n321_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=0p ps=0u w=4e+06u l=150000u
+X12 a_n129_109# a_n177_21# a_n225_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X13 a_159_n909# a_111_n997# a_63_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.32e+12p ps=8.66e+06u w=4e+06u l=150000u
+X14 a_n225_n909# a_n273_n997# a_n321_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.32e+12p pd=8.66e+06u as=0p ps=0u w=4e+06u l=150000u
+X15 a_447_n909# a_399_n87# a_351_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.24e+12p pd=8.62e+06u as=0p ps=0u w=4e+06u l=150000u
+X16 a_63_n909# a_15_n87# a_n33_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X17 a_63_109# a_15_21# a_n33_109# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X18 a_n129_n909# a_n177_n87# a_n225_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=150000u
+X19 a_n417_n909# a_n465_n997# a_n509_n909# a_n611_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.24e+12p ps=8.62e+06u w=4e+06u l=150000u
+.ends
+
+.subckt isource_conv_tsmal m1_4500_6730# m1_4590_7330# m1_4410_6620# VSUBS
+Xsky130_fd_pr__nfet_01v8_lvt_26RGPZ_0 m1_4590_7330# m1_4500_6730# m1_4410_6620# m1_4410_6620#
++ m1_4500_6730# m1_4410_6620# m1_4500_6730# m1_4410_6620# m1_4410_6620# m1_4500_6730#
++ m1_4500_6730# m1_4590_7330# m1_4500_6730# m1_4590_7330# m1_4410_6620# m1_4410_6620#
++ m1_4500_6730# m1_4590_7330# m1_4590_7330# VSUBS m1_4590_7330# m1_4410_6620# m1_4590_7330#
++ m1_4410_6620# m1_4410_6620# m1_4500_6730# m1_4410_6620# m1_4410_6620# m1_4410_6620#
++ m1_4590_7330# m1_4590_7330# m1_4500_6730# m1_4410_6620# m1_4410_6620# m1_4410_6620#
++ m1_4410_6620# m1_4590_7330# m1_4410_6620# m1_4500_6730# m1_4410_6620# m1_4500_6730#
++ m1_4410_6620# m1_4500_6730# sky130_fd_pr__nfet_01v8_lvt_26RGPZ
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_HZ8P49 a_2487_n400# a_n6261_n488# a_n29_n400# a_5003_n400#
++ a_3803_n488# a_n2487_n488# a_n3803_n400# a_n6421_n574# a_1229_n400# a_n5003_n488#
++ a_2545_n488# a_n2545_n400# a_n1229_n488# a_5061_n488# a_n5061_n400# a_3745_n400#
++ a_1287_n488# a_6261_n400# a_n1287_n400# a_29_n488# a_n6319_n400# a_n3745_n488#
+X0 a_6261_n400# a_5061_n488# a_5003_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X1 a_n29_n400# a_n1229_n488# a_n1287_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X2 a_n2545_n400# a_n3745_n488# a_n3803_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X3 a_n1287_n400# a_n2487_n488# a_n2545_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+X4 a_5003_n400# a_3803_n488# a_3745_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X5 a_n3803_n400# a_n5003_n488# a_n5061_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X6 a_1229_n400# a_29_n488# a_n29_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=6e+06u
+X7 a_3745_n400# a_2545_n488# a_2487_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X8 a_n5061_n400# a_n6261_n488# a_n6319_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X9 a_2487_n400# a_1287_n488# a_1229_n400# a_n6421_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+.ends
+
+.subckt isource_ref_transistor m1_n370_110# m1_887_21# m1_890_680# VSUBS
+Xsky130_fd_pr__nfet_01v8_HZ8P49_0 m1_890_680# m1_887_21# m1_890_680# m1_890_680# m1_887_21#
++ m1_887_21# m1_n370_110# VSUBS m1_n370_110# m1_887_21# m1_887_21# m1_890_680# m1_887_21#
++ m1_887_21# m1_890_680# m1_n370_110# m1_887_21# m1_n370_110# m1_n370_110# m1_887_21#
++ m1_n370_110# m1_887_21# sky130_fd_pr__nfet_01v8_HZ8P49
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_ACY9XJ#0#0 a_20_n918# a_20_118# a_n78_n918# a_n33_21#
++ a_n78_118# w_n216_n1137# a_n33_n1015#
+X0 a_20_118# a_n33_21# a_n78_118# w_n216_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X1 a_20_n918# a_n33_n1015# a_n78_n918# w_n216_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_J24RLQ#0#0 a_n416_118# a_n100_n1015# a_358_118# a_n416_n918#
++ a_n674_118# a_n158_118# a_n100_21# a_158_n1015# a_n358_21# w_n812_n1137# a_158_21#
++ a_358_n918# a_416_n1015# a_n358_n1015# a_100_n918# a_n674_n918# a_n616_21# a_416_21#
++ a_n616_n1015# a_n158_n918# a_616_118# a_100_118# a_616_n918#
+X0 a_100_118# a_n100_21# a_n158_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X1 a_616_n918# a_416_n1015# a_358_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X2 a_358_n918# a_158_n1015# a_100_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X3 a_616_118# a_416_21# a_358_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X4 a_100_n918# a_n100_n1015# a_n158_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X5 a_358_118# a_158_21# a_100_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X6 a_n416_118# a_n616_21# a_n674_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X7 a_n416_n918# a_n616_n1015# a_n674_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X8 a_n158_n918# a_n358_n1015# a_n416_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 a_n158_118# a_n358_21# a_n416_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+.ends
+
+.subckt isource_cmirror#0 m1_0_1060# li_0_0# m1_110_820#
+Xsky130_fd_pr__pfet_01v8_ACY9XJ_0 m1_250_820# m1_250_820# m1_110_820# m1_0_1060# m1_110_820#
++ li_0_0# m1_0_1060# sky130_fd_pr__pfet_01v8_ACY9XJ#0#0
+Xsky130_fd_pr__pfet_01v8_J24RLQ_0 li_0_0# m1_0_1060# m1_250_820# li_0_0# m1_250_820#
++ m1_250_820# m1_0_1060# m1_0_1060# m1_0_1060# li_0_0# m1_0_1060# m1_250_820# m1_0_1060#
++ m1_0_1060# li_0_0# m1_250_820# m1_0_1060# m1_0_1060# m1_0_1060# m1_250_820# li_0_0#
++ li_0_0# li_0_0# sky130_fd_pr__pfet_01v8_J24RLQ#0#0
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_1p41_JAGHGM a_n1331_n1562# a_n671_1000# a_919_n1432#
++ a_389_n1432# a_n141_1000# a_919_1000# a_389_1000# a_n141_n1432# a_n1201_n1432# a_n1201_1000#
++ a_n671_n1432#
+X0 a_n1201_n1432# a_n1201_1000# a_n1331_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X1 a_919_n1432# a_919_1000# a_n1331_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X2 a_n671_n1432# a_n671_1000# a_n1331_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X3 a_n141_n1432# a_n141_1000# a_n1331_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X4 a_389_n1432# a_389_1000# a_n1331_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+.ends
+
+.subckt isource_out m1_18730_12160# isource_cmirror_0/m1_0_1060# m1_21256_12488# m1_20970_12680#
++ li_23190_12600# VSUBS isource_conv_tsmal_0/m1_4500_6730#
+Xsky130_fd_pr__nfet_01v8_834VMG_0 VSUBS VSUBS m1_21256_12488# m1_18730_12160# VSUBS
++ VSUBS m1_21256_12488# m1_21256_12488# m1_18730_12160# m1_21256_12488# sky130_fd_pr__nfet_01v8_834VMG
+Xisource_conv_tsmal_0 isource_conv_tsmal_0/m1_4500_6730# m1_16760_11560# m1_20970_12680#
++ VSUBS isource_conv_tsmal
+Xisource_ref_transistor_0 m1_18730_12160# m1_16760_11560# m1_20970_12680# VSUBS isource_ref_transistor
+Xisource_cmirror_0 isource_cmirror_0/m1_0_1060# li_23190_12600# m1_20970_12680# isource_cmirror#0
+Xisource_ref_transistor_1 m1_20970_12680# m1_16760_11560# m1_18730_12160# VSUBS isource_ref_transistor
+Xsky130_fd_pr__res_xhigh_po_1p41_JAGHGM_0 VSUBS m1_23460_11560# VSUBS m1_24000_9140#
++ m1_23460_11560# m1_24520_11560# m1_24520_11560# m1_24000_9140# m1_22920_9140# m1_16760_11560#
++ m1_22920_9140# sky130_fd_pr__res_xhigh_po_1p41_JAGHGM
+.ends
+
+.subckt isource_conv_tsmal_nwell m1_4500_6730# m1_4590_7330# w_4356_6496# dw_4150_6290#
++ m1_4410_6620#
+Xsky130_fd_pr__nfet_01v8_lvt_26RGPZ_0 m1_4590_7330# m1_4500_6730# m1_4410_6620# m1_4410_6620#
++ m1_4500_6730# m1_4410_6620# m1_4500_6730# m1_4410_6620# m1_4410_6620# m1_4500_6730#
++ m1_4500_6730# m1_4590_7330# m1_4500_6730# m1_4590_7330# m1_4410_6620# m1_4410_6620#
++ m1_4500_6730# m1_4590_7330# m1_4590_7330# w_4356_6496# m1_4590_7330# m1_4410_6620#
++ m1_4590_7330# m1_4410_6620# m1_4410_6620# m1_4500_6730# m1_4410_6620# m1_4410_6620#
++ m1_4410_6620# m1_4590_7330# m1_4590_7330# m1_4500_6730# m1_4410_6620# m1_4410_6620#
++ m1_4410_6620# m1_4410_6620# m1_4590_7330# m1_4410_6620# m1_4500_6730# m1_4410_6620#
++ m1_4500_6730# m1_4410_6620# m1_4500_6730# sky130_fd_pr__nfet_01v8_lvt_26RGPZ
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_QDYTZD a_n200_n147# a_n258_n50# w_n396_n269# a_200_n50#
+X0 a_200_n50# a_n200_n147# a_n258_n50# w_n396_n269# sky130_fd_pr__pfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=2e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_U3V43Z a_n258_n50# a_n200_n138# a_n360_n224# a_200_n50#
+X0 a_200_n50# a_n200_n138# a_n258_n50# a_n360_n224# sky130_fd_pr__nfet_01v8 ad=1.45e+11p pd=1.58e+06u as=1.45e+11p ps=1.58e+06u w=500000u l=2e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_E9U3PA a_363_n400# a_114_n488# a_n29_n400# a_408_422#
++ a_n278_n488# a_461_n400# a_n127_n400# a_n180_422# a_n82_n488# a_16_422# a_n225_n400#
++ a_310_n488# a_n519_n400# a_69_n400# a_n323_n400# a_n474_n488# a_212_422# a_167_n400#
++ a_n376_422# a_n421_n400# a_265_n400# a_n621_n574#
+X0 a_n421_n400# a_n474_n488# a_n519_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X1 a_461_n400# a_408_422# a_363_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X2 a_n127_n400# a_n180_422# a_n225_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X3 a_167_n400# a_114_n488# a_69_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X4 a_n225_n400# a_n278_n488# a_n323_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X5 a_265_n400# a_212_422# a_167_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=200000u
+X6 a_69_n400# a_16_422# a_n29_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X7 a_n323_n400# a_n376_422# a_n421_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X8 a_n29_n400# a_n82_n488# a_n127_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+X9 a_363_n400# a_310_n488# a_265_n400# a_n621_n574# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=200000u
+.ends
+
+.subckt isource_startup li_2190_920# m1_360_100# sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#
++ VSUBS
+Xsky130_fd_pr__pfet_01v8_QDYTZD_1 m1_360_100# m1_330_800# li_2190_920# li_2190_920#
++ sky130_fd_pr__pfet_01v8_QDYTZD
+Xsky130_fd_pr__nfet_01v8_U3V43Z_0 VSUBS m1_330_800# VSUBS sky130_fd_pr__nfet_01v8_U3V43Z_0/a_200_n50#
++ sky130_fd_pr__nfet_01v8_U3V43Z
+Xsky130_fd_pr__nfet_01v8_lvt_E9U3PA_0 VSUBS m1_360_100# VSUBS m1_360_100# m1_360_100#
++ m1_330_800# m1_330_800# m1_360_100# m1_360_100# m1_360_100# VSUBS m1_360_100# m1_330_800#
++ m1_330_800# m1_330_800# m1_360_100# m1_360_100# VSUBS m1_360_100# VSUBS m1_330_800#
++ VSUBS sky130_fd_pr__nfet_01v8_lvt_E9U3PA
+.ends
+
+.subckt isource_ref_5transistors m2_12120_850# m1_12450_1060# m2_220_270# VSUBS
+Xisource_ref_transistor_0 m2_220_270# m1_12450_1060# m2_12120_850# VSUBS isource_ref_transistor
+Xisource_ref_transistor_1 VSUBS m1_12450_1060# m1_12450_1060# VSUBS isource_ref_transistor
+Xisource_ref_transistor_3 m2_220_270# m1_12450_1060# m2_12120_850# VSUBS isource_ref_transistor
+Xisource_ref_transistor_4 m2_220_270# m1_12450_1060# m2_12120_850# VSUBS isource_ref_transistor
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_TV3VM6 a_n658_n400# a_n3276_n574# a_n600_n488# a_n3174_n400#
++ a_1858_n400# a_n1858_n488# a_3116_n400# a_1916_n488# a_658_n488# a_600_n400# a_n1916_n400#
++ a_n3116_n488#
+X0 a_1858_n400# a_658_n488# a_600_n400# a_n3276_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X1 a_n658_n400# a_n1858_n488# a_n1916_n400# a_n3276_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X2 a_n1916_n400# a_n3116_n488# a_n3174_n400# a_n3276_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X3 a_3116_n400# a_1916_n488# a_1858_n400# a_n3276_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=6e+06u
+X4 a_600_n400# a_n600_n488# a_n658_n400# a_n3276_n574# sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=6e+06u
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_WY4VMC a_n29_n400# a_1229_n400# a_n1229_n488# a_n1389_n574#
++ a_n1287_n400# a_29_n488#
+X0 a_n29_n400# a_n1229_n488# a_n1287_n400# a_n1389_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=6e+06u
+X1 a_1229_n400# a_29_n488# a_n29_n400# a_n1389_n574# sky130_fd_pr__nfet_01v8 ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=6e+06u
+.ends
+
+.subckt isource_ref m2_12700_7520# m1_1370_6840# m1_12708_6228# m1_5600_140# m1_130_6460#
++ VSUBS
+Xisource_ref_transistor_0 VSUBS m1_5600_140# m1_5600_140# VSUBS isource_ref_transistor
+Xisource_ref_5transistors_0 m1_1370_6840# m1_5600_140# m1_130_6460# VSUBS isource_ref_5transistors
+Xisource_ref_5transistors_1 m1_1370_6840# m1_5600_140# m1_130_6460# VSUBS isource_ref_5transistors
+Xsky130_fd_pr__nfet_01v8_TV3VM6_0 m1_130_6460# VSUBS m1_5600_140# m1_130_6460# m1_130_6460#
++ m1_5600_140# m1_1370_6840# m1_5600_140# m1_5600_140# m1_1370_6840# m1_1370_6840#
++ m1_5600_140# sky130_fd_pr__nfet_01v8_TV3VM6
+Xsky130_fd_pr__nfet_01v8_WY4VMC_0 m1_130_6460# VSUBS m1_12708_6228# VSUBS VSUBS m1_12708_6228#
++ sky130_fd_pr__nfet_01v8_WY4VMC
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_ACY9XJ#0 a_20_n918# a_20_118# a_n78_n918# a_n33_21#
++ a_n78_118# w_n216_n1137# a_n33_n1015#
+X0 a_20_118# a_n33_21# a_n78_118# w_n216_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+X1 a_20_n918# a_n33_n1015# a_n78_n918# w_n216_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=200000u
+.ends
+
+.subckt sky130_fd_pr__pfet_01v8_J24RLQ#0 a_n416_118# a_n100_n1015# a_358_118# a_n416_n918#
++ a_n674_118# a_n158_118# a_n100_21# a_158_n1015# a_n358_21# w_n812_n1137# a_158_21#
++ a_358_n918# a_416_n1015# a_n358_n1015# a_100_n918# a_n674_n918# a_n616_21# a_416_21#
++ a_n616_n1015# a_n158_n918# a_616_118# a_100_118# a_616_n918#
+X0 a_100_118# a_n100_21# a_n158_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X1 a_616_n918# a_416_n1015# a_358_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X2 a_358_n918# a_158_n1015# a_100_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X3 a_616_118# a_416_21# a_358_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X4 a_100_n918# a_n100_n1015# a_n158_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X5 a_358_118# a_158_21# a_100_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X6 a_n416_118# a_n616_21# a_n674_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X7 a_n416_n918# a_n616_n1015# a_n674_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X8 a_n158_n918# a_n358_n1015# a_n416_n918# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X9 a_n158_118# a_n358_21# a_n416_118# w_n812_n1137# sky130_fd_pr__pfet_01v8 ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+.ends
+
+.subckt isource_cmirror m1_0_1060# li_0_0# m1_250_820# m1_110_820#
+Xsky130_fd_pr__pfet_01v8_ACY9XJ_0 m1_250_820# m1_250_820# m1_110_820# m1_0_1060# m1_110_820#
++ li_0_0# m1_0_1060# sky130_fd_pr__pfet_01v8_ACY9XJ#0
+Xsky130_fd_pr__pfet_01v8_J24RLQ_0 li_0_0# m1_0_1060# m1_250_820# li_0_0# m1_250_820#
++ m1_250_820# m1_0_1060# m1_0_1060# m1_0_1060# li_0_0# m1_0_1060# m1_250_820# m1_0_1060#
++ m1_0_1060# li_0_0# m1_250_820# m1_0_1060# m1_0_1060# m1_0_1060# m1_250_820# li_0_0#
++ li_0_0# li_0_0# sky130_fd_pr__pfet_01v8_J24RLQ#0
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_1p41_BQY2W7 a_n406_1000# a_n1996_1000# a_n1996_n1432#
++ a_654_n1432# a_1714_1000# a_1714_n1432# a_1184_n1432# a_n1466_1000# a_1184_1000#
++ a_n2126_n1562# a_n406_n1432# a_654_1000# a_n936_1000# a_n936_n1432# a_n1466_n1432#
++ a_124_n1432# a_124_1000#
+X0 a_654_n1432# a_654_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X1 a_124_n1432# a_124_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X2 a_n1996_n1432# a_n1996_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X3 a_n1466_n1432# a_n1466_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X4 a_n936_n1432# a_n936_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X5 a_1714_n1432# a_1714_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X6 a_n406_n1432# a_n406_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X7 a_1184_n1432# a_1184_1000# a_n2126_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+.ends
+
+.subckt sky130_fd_pr__res_xhigh_po_1p41_J2NVFM a_n406_1000# a_n406_n1432# a_124_n1432#
++ a_124_1000# a_n536_n1562#
+X0 a_124_n1432# a_124_1000# a_n536_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+X1 a_n406_n1432# a_n406_1000# a_n536_n1562# sky130_fd_pr__res_xhigh_po_1p41 l=1e+07u
+.ends
+
+.subckt isource_conv m1_4090_13100# m1_9600_7000# m1_4700_7820# m2_10060_7720# m1_5350_12620#
++ sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432# li_9700_9140# VSUBS m1_4150_7820#
+Xisource_cmirror_0 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xisource_cmirror_1 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xisource_cmirror_2 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xisource_cmirror_3 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xisource_cmirror_4 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xisource_cmirror_5 m1_9600_7000# li_9700_9140# m2_10060_7720# m1_5350_12620# isource_cmirror
+Xsky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0 m1_6360_10260# m1_5300_10260# m1_4700_7820#
++ m1_7960_7820# m1_8480_10260# sky130_fd_pr__res_xhigh_po_1p41_BQY2W7_0/a_1714_n1432#
++ m1_7960_7820# m1_5300_10260# m1_8480_10260# VSUBS m1_6900_7820# m1_7420_10260# m1_6360_10260#
++ m1_5840_7820# m1_5840_7820# m1_6900_7820# m1_7420_10260# sky130_fd_pr__res_xhigh_po_1p41_BQY2W7
+Xsky130_fd_pr__nfet_01v8_WY4VMC_2 m1_5350_12620# m1_4090_13100# m1_4150_7820# VSUBS
++ m1_4090_13100# m1_4150_7820# sky130_fd_pr__nfet_01v8_WY4VMC
+Xsky130_fd_pr__res_xhigh_po_1p41_J2NVFM_0 m1_4160_10260# m1_4150_7820# m1_4700_7820#
++ m1_4160_10260# VSUBS sky130_fd_pr__res_xhigh_po_1p41_J2NVFM
+.ends
+
+.subckt sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87 a_n287_n909# a_n229_n997# a_n1003_n997#
++ a_229_109# a_n1061_n909# a_287_n997# a_n487_21# a_n1061_109# a_745_n909# a_n545_109#
++ a_287_21# a_n1261_21# a_1061_n997# a_487_109# a_n745_21# a_229_n909# a_n29_109#
++ a_1061_21# a_29_21# a_n487_n997# a_n1261_n997# a_545_21# a_n545_n909# a_n287_109#
++ a_545_n997# a_1003_n909# a_1003_109# a_n29_n909# a_803_21# a_487_n909# a_29_n997#
++ a_n229_21# a_n745_n997# a_n803_n909# a_n803_109# a_n1319_109# a_803_n997# a_1261_109#
++ a_n1003_21# a_n1421_n1083# a_1261_n909# a_745_109# a_n1319_n909#
+X0 a_229_109# a_29_21# a_n29_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X1 a_1261_n909# a_1061_n997# a_1003_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X2 a_487_109# a_287_21# a_229_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=1e+06u
+X3 a_n545_109# a_n745_21# a_n803_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X4 a_1261_109# a_1061_21# a_1003_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X5 a_n29_n909# a_n229_n997# a_n287_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X6 a_229_n909# a_29_n997# a_n29_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=1e+06u
+X7 a_n1061_109# a_n1261_21# a_n1319_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X8 a_n287_109# a_n487_21# a_n545_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=0p ps=0u w=4e+06u l=1e+06u
+X9 a_n545_n909# a_n745_n997# a_n803_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=1.16e+12p pd=8.58e+06u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X10 a_n287_n909# a_n487_n997# a_n545_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X11 a_n803_n909# a_n1003_n997# a_n1061_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X12 a_1003_109# a_803_21# a_745_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X13 a_n1061_n909# a_n1261_n997# a_n1319_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X14 a_1003_n909# a_803_n997# a_745_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X15 a_n803_109# a_n1003_21# a_n1061_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X16 a_745_n909# a_545_n997# a_487_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=1.16e+12p ps=8.58e+06u w=4e+06u l=1e+06u
+X17 a_n29_109# a_n229_21# a_n287_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X18 a_745_109# a_545_21# a_487_109# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+X19 a_487_n909# a_287_n997# a_229_n909# a_n1421_n1083# sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=4e+06u l=1e+06u
+.ends
+
+.subckt isource_diffamp dw_14640_n8120# w_14846_n7914# m1_15050_n7600# m1_14640_n6760#
++ m1_15310_n7040#
+Xsky130_fd_pr__nfet_01v8_lvt_ZZ3Y87_0 m1_15050_n7600# m1_14640_n6760# m1_14640_n6760#
++ m1_15050_n7600# m1_15310_n7040# m1_14640_n6760# m1_14640_n6760# m1_15310_n7040#
++ m1_15050_n7600# m1_15310_n7040# m1_14640_n6760# m1_14640_n6760# m1_14640_n6760#
++ m1_15310_n7040# m1_14640_n6760# m1_15050_n7600# m1_15310_n7040# m1_14640_n6760#
++ m1_14640_n6760# m1_14640_n6760# m1_14640_n6760# m1_14640_n6760# m1_15310_n7040#
++ m1_15050_n7600# m1_14640_n6760# m1_15310_n7040# m1_15310_n7040# m1_15310_n7040#
++ m1_14640_n6760# m1_15310_n7040# m1_14640_n6760# m1_14640_n6760# m1_14640_n6760#
++ m1_15050_n7600# m1_15050_n7600# m1_15050_n7600# m1_14640_n6760# m1_15050_n7600#
++ m1_14640_n6760# w_14846_n7914# m1_15050_n7600# m1_15050_n7600# m1_15050_n7600# sky130_fd_pr__nfet_01v8_lvt_ZZ3Y87
+.ends
+
+.subckt sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1 m4_n3351_n3100# c2_n3251_n3000#
+X0 c2_n3251_n3000# m4_n3351_n3100# sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+.ends
+
+.subckt isource VP I_ref VM12G VM11D VN VM2D
+Xsky130_fd_pr__cap_mim_m3_1_WXTTNJ_0 VP VM8D sky130_fd_pr__cap_mim_m3_1_WXTTNJ#0
+Xisource_out_0 VM3D VM8D VM3G VM22D VP VN I_ref isource_out
+Xisource_conv_tsmal_nwell_0 VP VM12G VM12G VP VM14D isource_conv_tsmal_nwell
+Xisource_startup_0 VP VM11D VM8D VN isource_startup
+Xisource_ref_0 VM11D VM11D VM12G VM2D VM12D VN isource_ref
+Xisource_cmirror_2 VM8D VP VM9D isource_cmirror#0
+Xisource_cmirror_3 VM8D VP VM8D isource_cmirror#0
+Xisource_conv_0 VN VM8D VM3G m2_19160_1520# VM14D VN VP VN VM12G isource_conv
+Xisource_diffamp_0 VP VM11D VM11D VM9D VM8D isource_diffamp
+Xisource_diffamp_1 VP VM2D VM2D VM9D VM9D isource_diffamp
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1
+Xsky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 VP VN sky130_fd_pr__cap_mim_m3_2_LJ5JLG#1
+.ends
+
+
+Xcurr_mirror_distribution_0 VP isource_0/I_ref curr_mirror_channel_0/I_in curr_mirror_distribution
+Xtia_core_0 VP tia_core_0/Out_2 comparator_0/In tia_core_0/Disable_TIA tia_core_0/I_Bias1
++ outd_0/InputRef tia_core_0/VM39D tia_core_0/Input VN tia_core
+Xtransmitter_0 VN curr_mirror_channel_0/LVDS_Bias transmitter_0/In transmitter
+Xoutd_0 VP outd_0/InputRef outd_0/I_Bias outd_0/outd_stage1_0/isource_out outd_0/VM1_D
++ outd_0/VM14D comparator_0/In VN outd
+Xcurr_mirror_channel_0 tia_core_0/I_Bias1 curr_mirror_channel_0/Comp_Bias_6 curr_mirror_channel_0/Comp_Bias_5
++ curr_mirror_channel_0/ctl_Bias VP curr_mirror_channel_0/Comp_Bias_3 curr_mirror_channel_0/Comp_Bias_2
++ curr_mirror_channel_0/Comp_Bias_1 curr_mirror_channel_0/LVDS_Bias curr_mirror_channel_0/I_in
++ comparator_0/comp_adv3_2/bias outd_0/I_Bias VN curr_mirror_channel
+Xcomparator_0 curr_mirror_channel_0/Comp_Bias_6 VP comparator_0/comp_adv3_2/bias curr_mirror_channel_0/Comp_Bias_3
++ outd_0/InputRef curr_mirror_channel_0/ctl_Bias curr_mirror_channel_0/Comp_Bias_5
++ transmitter_0/In comparator_0/In VN comparator
+Xfb_dark_current_0 VP comparator_0/In outd_0/InputRef VN fb_dark_current
+Xisource_0 VP isource_0/I_ref isource_0/VM12G isource_0/VM11D VN isource_0/VM2D isource
+
+
diff --git a/mag/outd/.magicrc b/mag/outd/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/outd/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/outd/comp.out b/mag/outd/comp.out
new file mode 100644
index 0000000..2ce3db2
--- /dev/null
+++ b/mag/outd/comp.out
@@ -0,0 +1,26 @@
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+Equate elements:  no current cell.
+
+Class ../../xschem/outdriver/outdriver.spice (0):  Merged 10 parallel devices.
+Class outd_flat.spice (1):  Merged 6000 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../xschem/outdriver/outdrive |Circuit 2: outd_flat.spice                 
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__nfet_01v8_lvt (924->6)       |sky130_fd_pr__nfet_01v8_lvt (924->6)       
+sky130_fd_pr__nfet_01v8 (4998->8)          |sky130_fd_pr__nfet_01v8 (4998->8)          
+sky130_fd_pr__res_high_po_5p73 (80->4)     |sky130_fd_pr__res_high_po_5p73 (80->4)     
+sky130_fd_pr__res_high_po_2p85 (8->2)      |sky130_fd_pr__res_high_po_2p85 (8->2)      
+sky130_fd_pr__cap_mim_m3_2 (11->2)         |sky130_fd_pr__cap_mim_m3_2 (11->2)         
+sky130_fd_pr__cap_mim_m3_1 (2->1)          |sky130_fd_pr__cap_mim_m3_1 (2->1)          
+Number of devices: 23                      |Number of devices: 23                      
+Number of nets: 18                         |Number of nets: 18                         
+---------------------------------------------------------------------------------------
+Circuits match uniquely.
+Netlists match uniquely.
+Cells have no pins;  pin matching not needed.
+Device classes ../../xschem/outdriver/outdriver.spice and outd_flat.spice are equivalent.
+Circuits match uniquely.
diff --git a/mag/outd/outd.ext b/mag/outd/outd.ext
new file mode 100644
index 0000000..a8e291e
--- /dev/null
+++ b/mag/outd/outd.ext
@@ -0,0 +1,4682 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_LH2JGW sky130_fd_pr__nfet_01v8_LH2JGW_0 1 0 -19757 0 1 7320
+use sky130_fd_pr__nfet_01v8_DJG2KN sky130_fd_pr__nfet_01v8_DJG2KN_0 1 0 -19815 0 1 6189
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10 0 1 -25439 -1 0 6813
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9 0 1 -18659 -1 0 6793
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1 0 -1 -28120 1 0 12750
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0 0 -1 -23680 1 0 12740
+use outd_stage1 outd_stage1_0 1 0 -19480 0 1 1680
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 0 -1 -3999 1 0 6791
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 0 -1 -11199 1 0 6791
+use outd_stage2 outd_stage2_0 1 0 -14290 0 1 880
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3 0 -1 11001 1 0 6751
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2 0 -1 3421 1 0 6771
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4 0 -1 18501 1 0 6751
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5 0 -1 26261 1 0 6771
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6 0 -1 33781 1 0 6771
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7 0 -1 42561 1 0 6831
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8 0 -1 50901 1 0 6811
+use outd_stage3 outd_stage3_0 1 0 20 0 1 20
+node "m5_n22620_9330#" 0 651.148 -22620 9330 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 432900 3000 0 0
+node "m4_n30140_10100#" 1 4720.78 -30140 10100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5846400 19800 0 0 0 0
+node "OutputP" 0 743.403 54740 12220 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 621600 3340 0 0 0 0
+node "OutputN" 0 563.759 54740 12900 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 621600 3340 0 0 0 0
+node "VN" 0 155537 -19490 440 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 70903044 153508 70582888 152496 271242000 224200 0 0
+node "VM14D" 0 199.917 2030 8460 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50000 900 0 0 0 0 0 0
+node "VM1_D" 0 209.105 -12280 8500 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 53200 940 0 0 0 0 0 0
+node "m3_n26280_10780#" 0 602.906 -26280 10780 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 306000 2480 0 0 0 0 0 0
+node "V_da1_N" 1 1032.08 -14760 10400 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 698400 4720 0 0 0 0 0 0 0 0
+node "InputRef" 1 942.888 -21150 10290 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 163100 2240 84000 1160 76504 1108 211200 1940 0 0
+node "InputSignal" 0 84.4845 -21080 11310 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13200 460 0 0 0 0 0 0 0 0
+node "V_da1_P" 1 1699.53 -15460 9120 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1062000 7440 125800 1420 116564 1368 0 0 0 0
+node "V_da2_P" 1 19603.8 -1160 8940 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21366000 119420 140600 1500 577524 4284 0 0 0 0
+node "V_da2_N" 1 19113.2 -300 10400 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20768400 116100 140600 1500 883124 6004 0 0 0 0
+node "m1_n120_1040#" 4 2609.01 -120 1040 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 800000 10320 0 0 0 0 0 0 0 0 0 0
+node "m1_n19950_5570#" 1 165.872 -19950 5570 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38400 1120 0 0 0 0 0 0 0 0 0 0
+node "m1_n19950_6110#" 0 172.074 -19950 6110 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 76800 1280 0 0 0 0 0 0 0 0 0 0
+node "m1_n20010_5920#" 4 969.278 -20010 5920 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47360 1872 500200 5760 0 0 0 0 0 0 0 0
+node "m1_n16680_6460#" 1 1715.63 -16680 6460 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 912000 5560 0 0 0 0 0 0 0 0 0 0
+node "m1_n19890_7120#" 3 536.554 -19890 7120 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47360 1872 297000 3780 0 0 0 0 0 0 0 0
+node "VP" 1 142496 -21110 13500 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11356000 16760 11455200 16760 51392800 137980 51359744 137768 260194832 225048 0 0
+node "li_n20100_6860#" 459 1296.46 -20100 6860 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208600 5620 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n19838_7032#" 180 399.814 -19838 7032 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10692 456 0 0 5508 392 177780 1760 0 0 0 0 0 0 0 0 0 0
+node "I_Bias" 182 2745.71 -19838 7542 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10692 456 0 0 5508 392 46180 1140 123200 1860 732500 10140 0 0 0 0 0 0
+node "w_43046_9116#" 34852 0 43046 9116 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_28796_9116#" 34852 0 28796 9116 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14546_9116#" 34852 0 14546 9116 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_296_9116#" 34852 0 296 9116 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n14024_9116#" 34852 0 -14024 9116 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_n19204_9906#" 8333 0 -19204 9906 pw 4193184 8612 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "I_Bias" "a_n19838_7032#" 45.966
+cap "VP" "V_da2_P" 1960.55
+cap "m1_n19950_5570#" "m1_n19950_6110#" 38.5043
+cap "VP" "V_da1_N" 10.3405
+cap "m1_n19950_6110#" "m1_n19890_7120#" 165.542
+cap "m1_n20010_5920#" "li_n20100_6860#" 266.976
+cap "VP" "w_296_9116#" 857.984
+cap "w_296_9116#" "V_da2_P" 2842.67
+cap "m1_n120_1040#" "VN" 300.322
+cap "w_14546_9116#" "VP" 890.964
+cap "InputRef" "InputSignal" 6.60845
+cap "w_14546_9116#" "V_da2_P" 2842.67
+cap "VP" "OutputN" 1616.33
+cap "VP" "w_43046_9116#" 417.999
+cap "OutputP" "VP" 1382.86
+cap "a_n19838_7032#" "m1_n19950_6110#" 38.5043
+cap "w_43046_9116#" "V_da2_P" 2842.67
+cap "m1_n19950_5570#" "m1_n20010_5920#" 200.004
+cap "m1_n19890_7120#" "m1_n20010_5920#" 1612.14
+cap "OutputP" "OutputN" 272.875
+cap "a_n19838_7032#" "m1_n20010_5920#" 11.9382
+cap "m4_n30140_10100#" "InputRef" 506.99
+cap "m1_n19950_5570#" "li_n20100_6860#" 57.9814
+cap "I_Bias" "InputRef" 101.271
+cap "I_Bias" "m1_n20010_5920#" 4.81231
+cap "a_n19838_7032#" "li_n20100_6860#" 521.949
+cap "m1_n19950_5570#" "m1_n19890_7120#" 91.02
+cap "m1_n19950_6110#" "m1_n20010_5920#" 443.596
+cap "a_n19838_7032#" "m1_n19890_7120#" 787.858
+cap "w_28796_9116#" "V_da2_N" 2840.25
+cap "I_Bias" "li_n20100_6860#" 61.8156
+cap "VP" "V_da2_N" 6213
+cap "V_da2_N" "V_da2_P" 2179.58
+cap "V_da1_N" "V_da1_P" 161.962
+cap "w_296_9116#" "V_da2_N" 2840.25
+cap "I_Bias" "m1_n19890_7120#" 44.6715
+cap "w_14546_9116#" "V_da2_N" 2840.25
+cap "w_n14024_9116#" "VP" 1049.27
+cap "w_28796_9116#" "VP" 590.334
+cap "m1_n19950_6110#" "li_n20100_6860#" 75.9823
+cap "w_28796_9116#" "V_da2_P" 2842.67
+cap "w_43046_9116#" "V_da2_N" 2840.25
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 10.1284
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 160.437
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage2_0/VN" 427.414
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "outd_stage2_0/VN" 0.749436
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.49887
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "outd_stage2_0/VN" 703.11
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" "outd_stage2_0/VN" 574.117
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 1.67031
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 1.49887
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 123.34
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "outd_stage2_0/VN" 397.993
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" 262.056
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 0.672051
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" 392.559
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 257.909
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.49887
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" 572.685
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.942205
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#" "outd_stage2_0/VN" 700.394
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 1.49887
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 1.49887
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.747753
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 1.71104
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/VN" 688.246
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 12.3506
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 13.1371
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/VN" 769.816
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/VN" 619.257
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 1.69164
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.749436
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" 701.938
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 1.49887
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 1.66068
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" 576.447
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" "outd_stage3_0/outd_stage2_0/VN" 390.653
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 0.749436
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 124.099
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 1.49887
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "outd_stage3_0/outd_stage2_0/VN" 267.304
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 124.282
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.749436
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 375.262
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.49887
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 581.206
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 673.143
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 0.749436
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1.49887
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 583.302
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 669.57
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 0.185833
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 385.586
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" "outd_stage3_0/outd_stage2_1/VN" 279.121
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 367.024
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1.69164
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 589.827
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1.67031
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 649.678
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 595.222
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 646.657
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 294.289
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69327
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 326.467
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 385.733
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_stage3_0/outd_stage2_2/VN" 299.348
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 626.409
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 357.424
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_2/VN" 615.701
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 5.42621
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_stage3_0/outd_stage2_2/VN" 394.507
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.67031
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 294.644
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 538.723
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 76.0735
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "outd_stage3_0/outd_stage2_2/VN" 593.424
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 392.203
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 2.24831
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "outd_stage3_0/outd_stage2_2/VN" 600.813
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2.03504
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 341.137
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 385.425
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "outd_stage3_0/outd_stage2_3/VN" 283.561
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 349.019
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.69164
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" 588.434
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 2.24831
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_stage3_0/outd_stage2_3/VN" 666.141
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" 581.44
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.67031
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 2.24831
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_stage3_0/outd_stage2_3/VN" 679.873
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.731494
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" 270.619
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "outd_stage3_0/outd_stage2_3/VN" 384.472
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_stage3_0/outd_stage2_3/VN" 374.477
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 0.942205
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" "outd_stage3_0/outd_stage2_3/VN" 578.517
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "outd_stage3_0/outd_stage2_3/VN" 0.749436
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2.24831
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" 692.056
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.942205
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" 2719.95
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" "outd_stage3_0/outd_stage2_3/VN" 1300.61
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" 0.749436
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -13.6086
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 134.715
+cap "outd_stage1_0/VN" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 151.129
+cap "outd_stage1_0/VN" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 747.973
+cap "outd_stage1_0/VN" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1908.03
+cap "outd_stage1_0/VN" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1067
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 724.904
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage2_0/VN" 62.6346
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1667.94
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 289.758
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 796.774
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "outd_stage2_0/VN" 2240.76
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" 341.962
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" 2152.1
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 717.61
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage2_0/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 74.2969
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 1481.77
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 718.496
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/VN" 53.3345
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "outd_stage2_0/VN" 972.061
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" 656.022
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 800.313
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -428.882
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" 0.323788
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 1755.11
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" 941.386
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 642.578
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 903.898
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" 2114.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/VN" 74.2969
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#" 2293.77
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/VN" 527.37
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 408.298
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 987.325
+cap "outd_stage2_0/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 63.9484
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.54386
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745#" 0.740162
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 2082
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" 0.740162
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 32.6002
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -700.851
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 334.661
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -0.779734
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -7.54693
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 38.2321
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_0/VN" 2219.64
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/VN" 511.427
+cap "outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 987.352
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#" 0.485905
+cap "outd_stage2_0/VN" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 2061.97
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.971811
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.971811
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 138.631
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" "outd_stage3_0/outd_stage2_0/VN" 2321.95
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 146.171
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 472.79
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1113.29
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2058.35
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1611.2
+cap "outd_stage3_0/outd_stage2_0/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 75.9932
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" "outd_stage3_0/outd_stage2_0/VN" 1054.79
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 18.9569
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "outd_stage3_0/outd_stage2_0/VN" 739.503
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_0/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 12.2132
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 1244.56
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" -402.308
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 1636.52
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_0/VN" 952.527
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 1946.47
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1081.3
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/VN" 510.512
+cap "outd_stage3_0/outd_stage2_0/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -252.05
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_0/VN" 2359.45
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 2040.18
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1520
+cap "outd_stage3_0/outd_stage2_1/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 77.7687
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 0.323788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/VN" 44.717
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" -393.101
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 518.384
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 2257.85
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 3291.29
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" 741.285
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1053.23
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -542.32
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 426.821
+cap "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 2023.4
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1777.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/VN" 77.7687
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 2353.53
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 510.512
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" -684.389
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" "outd_stage3_0/outd_stage2_1/VN" 2021.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/VN" 72.4915
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1916.75
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 2396.11
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" -837.53
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 750.974
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 1503.84
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" "outd_stage3_0/outd_stage2_1/VN" 741.522
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_1/VN" 1070.28
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/VN" 2135.1
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 916.217
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 730.678
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 0.323788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/VN" 75.9932
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_2/VN" 2350.81
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 512.518
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 932.84
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 880.31
+cap "outd_stage3_0/outd_stage2_2/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 36.0967
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 525.998
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage3_0/outd_stage2_2/VN" 2313.04
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 832.724
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_stage3_0/outd_stage2_2/VN" 953.804
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 512.518
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 944.159
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 0.323788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" 989.439
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 916.217
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" 2210.79
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 513.784
+cap "outd_stage3_0/outd_stage2_2/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 64.3228
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 1019.29
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 972.547
+cap "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" 2267.19
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/VN" 541.799
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 794.095
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 866.718
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2478.24
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" 940.196
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 859.183
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 924.853
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 0.323788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/VN" 71.1218
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "outd_stage3_0/outd_stage2_3/VN" 2199.98
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 518.264
+cap "outd_stage3_0/outd_stage2_3/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 8.38221
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 962.404
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 2193.27
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" 2155.78
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 538.984
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 702.025
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_stage3_0/outd_stage2_3/VN" 66.9872
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_stage3_0/outd_stage2_3/VN" 2242.27
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 66.9872
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.323788
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 66.9872
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 265.313
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "outd_stage3_0/outd_stage2_3/VN" 877.169
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" 674.906
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 922.106
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 937.118
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 0.323788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745#" 934.157
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#" 603.781
+cap "outd_stage3_0/outd_stage2_3/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 72.6747
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" 2170.77
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 454.135
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" 0.323788
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_3/VN" 965.947
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" 2258.52
+cap "outd_stage3_0/outd_stage2_3/VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 5.4506
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#" 97.6904
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745#" "outd_stage3_0/outd_stage2_3/VN" 88.6656
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" 87.9437
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1303.97
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" 10071.7
+cap "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" 577.522
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" "outd_stage3_0/outd_stage2_3/VN" 4778.54
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 0.723653
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 0.0793263
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 3.51355
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -6.64952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 3.51355
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -6.47297
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -56.3801
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" 79.1876
+cap "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 5.47514
+cap "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_n597#" 182.913
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" 536.084
+cap "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_n597#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" 47.2699
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" 2790.25
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 76.1001
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_stage1_0/VN" 15035.4
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage1_0/VN" 4167.37
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 605.024
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/VN" 1524.53
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 331.672
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 16.3421
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 202.674
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1516.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -126.256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -894.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -2379.33
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 2.5496
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 197.88
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 25.7518
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -245.629
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -119.669
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 193.865
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1664.29
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -4395.36
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -4061.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -481.479
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 70.7096
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 125.308
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6.53315
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1759.35
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 70.7096
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -133.001
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1422.47
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1219.35
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -6.52642
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 167.021
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 262.749
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -272.104
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2056.87
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3298.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VN" 74.2969
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2094.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -133.001
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -259.96
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2756.2
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1825.45
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -265.622
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2245.85
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -109.203
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" 2868.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 2465.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1036.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 6.53315
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 75.8745
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 20.65
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 299.635
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" 433.022
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" 2070.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 20.65
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -358.941
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1083.41
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 37.8175
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" 124.136
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 22.5399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#" -196.037
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 70.8372
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 58.6322
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -2610.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" -4579.17
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 6.53315
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 254.122
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" 30.1556
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 4.5728
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1506.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -212.715
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" -712.517
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1182.81
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -481.502
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" -46.8228
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" -228.877
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1226.58
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 207.584
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1920.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -133.001
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1642.34
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 429.482
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 70.7096
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -2179.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" 208.28
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 247.59
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 747.418
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 287.002
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "VN" 74.2969
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -133.001
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2915.67
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -580.916
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 208.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -77.0333
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 83.0732
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.54386
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2926.94
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -1123.25
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 16.9262
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3619.96
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -13.1325
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#" 0.740162
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 34.072
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5556.48
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#" 0.740162
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -116.267
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 334.526
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 7112.6
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -8.92678
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2221.24
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -53.8483
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -8.36439
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 74.5521
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 35.9978
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -5.17272
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 2.90811
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -9.4085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -16.8497
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 16.9262
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 478.954
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 59.3654
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -0.779734
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 19.1248
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -343.062
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 34.072
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 58.8
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 43.8062
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#" 0.485905
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1809.1
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109#" 0.971811
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#" 6.00881
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 13.9621
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -311.156
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -13.6632
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.0134194
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -839.117
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -984.927
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.119248
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" 494.564
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509#" 0.971811
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#" 1.45247
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 472.845
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 18.9537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" 200.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" -561.958
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" 1892.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -203.357
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 562.256
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7.08437
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" 271.032
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -140.342
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 292.255
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 70.7096
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1557.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -140.342
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1184.75
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 828.123
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1932.95
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -60.9187
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -802.825
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" 2419.77
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -5.43436
+cap "VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 75.9932
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -140.342
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" 573.747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2808.4
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 364.948
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -63.474
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 2735.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" 2690.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 863.909
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" 1022.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -22.555
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 369.041
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 575.723
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1646.58
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 12.2132
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 15.3913
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1621.58
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 322.815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -228.262
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" 293.06
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -2745.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 9.55467
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 129.545
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 244.028
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 15.3913
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -955.379
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -123.705
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -139.476
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -474.003
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1028.04
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -2061.67
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -2230.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" -2343.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" -4812.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -354.964
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -147.853
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1911.23
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 192.62
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 66.7826
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -39.1059
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 9.55467
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1112.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 70.7096
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 568.081
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -2309.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "VN" 77.7687
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4191.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -147.853
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3594.31
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 178.602
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 4378.97
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2853.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -85.2671
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 3787.07
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5360.42
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 412.503
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 16.7923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 64.0846
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5949.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 2368.01
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 253.225
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 16.7923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -49.4693
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -369.377
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 19.3676
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1052.96
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 9.55467
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -301.604
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 110.501
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -3644.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -489.094
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -472.116
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 75.2758
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -372.31
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 251.319
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -13.5854
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -170.838
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 568.763
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1116.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 1108.4
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1716.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 1573.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -147.853
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 177.9
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -531.144
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 2177.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -3386.75
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -353.329
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 255.539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -816.422
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1246.98
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "VN" 77.7687
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -5145.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -147.853
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 2385.78
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 3426.1
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1911.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 5148.27
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 5002.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 13.4345
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "VN" 72.4915
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 7329.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -137.82
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 347.215
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 14.6793
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -597.063
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -903.05
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -358.06
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 278.998
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 13.6154
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" -1105.66
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" 54.8025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -282.261
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -551.926
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 13.6154
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 533.541
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -2867.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1255.79
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -3433.55
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1573.25
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -459.719
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -3652.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -634.131
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -1651.35
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1495.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 352.185
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 704.579
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1565.38
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -417.398
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -140.342
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 557.984
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -180.049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 331.235
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 4920.45
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "VN" 75.9932
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 4565.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -181.114
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1920.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -140.342
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 2991.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 461.794
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 3044.86
+cap "VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 36.0967
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2466.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 16.0909
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1729.91
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1703.31
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 7.08437
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 18.5053
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -66.7389
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 16.0909
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -58.7178
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 182.649
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 18.5053
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -9.36627
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 137.073
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 339.584
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 409.276
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -23.8464
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" -31.2415
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -138.786
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -218.746
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1565.38
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 77.3145
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -119.952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" -1290.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1107.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 545.368
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 70.7096
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -140.342
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2453.47
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 987.93
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 221.289
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -4280.25
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 149.475
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -380.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -140.342
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1565.38
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -587.071
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 380.203
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 1440.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 504.763
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 5718.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 331.597
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 3158.16
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 7258.52
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 5217.77
+cap "VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 64.3228
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -118.789
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 75.7165
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -17.2314
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 208.477
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 110.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" 31.7392
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 83.1516
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -146.66
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1443.08
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -185.791
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" -67.8832
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -197.729
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 366.898
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -118.837
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 902.813
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -41.6242
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1020.6
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 189.903
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -2.6238
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1942.76
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -543.287
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -288.557
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -631.243
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 861.323
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -572.769
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 1108.02
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 760.202
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -118.837
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1447.78
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -118.837
+cap "VN" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 71.1218
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 3601.8
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 488.925
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -108.578
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 5992.91
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 364.34
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -66.5527
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 4560.73
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 5225.85
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 141.395
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 50.3637
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "VN" 8.38221
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -14.0058
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 2026.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 731.711
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -8.3721
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 194.807
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -23.6383
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 100.546
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 128.606
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -566.307
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -169.801
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -1080.79
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -39.9936
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -876.216
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" -80.6512
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1482.8
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -354.546
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" -34.5065
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 163.02
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -3368.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -335.869
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 838.539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 2948.94
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -354.101
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -1226.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 134.203
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -702.138
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -709.351
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -356.287
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1463.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 840.452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#" 922.927
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1482.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -125.831
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 112.307
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" 4266.68
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 460.642
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 3654.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" 6104.2
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 362.468
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -125.831
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 5007.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "VN" 72.6747
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 28.9944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#" 107.075
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -9.43734
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" 420.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "VN" 5.4506
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#" 28.9944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 228.945
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" 1556.29
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" -155.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" 81.9828
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -164.959
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 81.9828
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" -16.3441
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" 58.224
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" 162.042
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 272.038
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 0.30203
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" 586.952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" 0.293029
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -18.2786
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" 226.548
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" -464
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" 2047.55
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 2252.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" 21.0887
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" 749.458
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" 187.852
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 4827.25
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 5820.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 7005.03
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833#" 12514
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833#" 12315.2
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 1351.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" 1547.06
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 275.361
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 161.256
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 42.6569
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 29.5337
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 1.95916
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 444.106
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 44.618
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2532.66
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 67.0311
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -13.3603
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -341.592
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2693.24
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -360.903
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -6736.86
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 23.7546
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 141.419
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 359.161
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2766.45
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2348.16
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 218.702
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 374.761
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2441.74
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -12.4087
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 4454.75
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#" -837.147
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 3551.7
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -259.96
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 4511.13
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -259.96
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#" 8921.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 525.498
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -6427.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 41.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 3884.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 905.522
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3234.33
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 599.269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -32.7176
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 54.0341
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6780.6
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 6186.69
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1810.5
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 0.754512
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 54.0341
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -3.29
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 118.532
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 41.3
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 147.804
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -37.3935
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1895.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -54.8027
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1928.08
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -3678.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -1029.15
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 7.53324
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -97.4132
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" 102.526
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3207.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1038.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215#" 2465.33
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 141.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 621.807
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215#" 2608.89
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 634.502
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -152.049
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -562.86
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 7058.36
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 416.561
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 718.475
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 780.475
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -4136.44
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 11817.8
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.54386
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8389.19
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -8.37467
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -12.4711
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" 0.740162
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -4.2773
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#" 0.740162
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 669.052
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 34.0674
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3807.83
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -841.865
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 11328.4
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 6251
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127#" 56.7526
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127#" 38.3184
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -15.3768
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" -0.779734
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -16.9953
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -9.45881
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127#" 99.8923
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -6.09338
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -309.979
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" 34.2423
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 758.809
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.485905
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 27.9243
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#" 0.971811
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2883.92
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.0134194
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127#" 1.45247
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.427402
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -861.871
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 89.1288
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#" 0.971811
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1774.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -1676.4
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127#" 6.00881
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 257.059
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -389.423
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 498.989
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 483.038
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2912.6
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 842.88
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 14.8797
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 68.8878
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2523.01
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3132.59
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1781.54
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 2482.36
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 141.419
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 742.218
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 7541.69
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.754512
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -713.825
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3605.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 718.612
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -675.788
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 7654.42
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 3914.95
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 850.839
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3584.29
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3505.65
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 857.561
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#" 2184.15
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1384.27
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -569.867
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#" 483.193
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 334.391
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 315.697
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -11.3449
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 6.36055
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 276.896
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -7793.23
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 89.4381
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1802.08
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -5593.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -131.201
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -538.274
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2970.4
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 230.067
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -19.897
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 251.899
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2443.45
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -669.093
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -145.066
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 542.769
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 10387.8
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 388.195
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 6033.11
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7041.96
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -3708.49
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7867.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 31.7692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 778.325
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 7883.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" 3986.6
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1203.43
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 9138.62
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6102.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -0.535858
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 43.453
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 31.7692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -1.28387
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -325.672
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 6.33704
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1682.22
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 11.572
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 43.453
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 104.539
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -5362.06
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -73.8178
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -637.924
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -664.577
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -1076.69
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 19.3626
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -883.521
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 3239.94
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -282.886
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2467.26
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1561.33
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1231.81
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 2437.66
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 553.775
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 734.568
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -988.206
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 6041.27
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1932.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -5556.31
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 2011.54
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -3998.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.1227
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 7154.29
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 11743.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 694.43
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 10782.2
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 11720
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2548.39
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1668.71
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -570.726
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 403.366
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 44.4636
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1108.23
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 812.741
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 68.9875
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -6.46694
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -629.406
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2098.57
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 111.857
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -733.767
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 18.4944
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -2136.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -5110.78
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -8555.31
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 835.762
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2558.61
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 522.306
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -732.747
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 933.573
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 11.1585
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 6545.73
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1015.82
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 11204.6
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 4898.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4478.1
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1270.18
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 4849.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -0.15819
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1.50902
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#" 2885.4
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2876.14
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 13.1255
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#" 3399.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" -37.7519
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" 449.359
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -0.6382
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 6.94149
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 326.064
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 285.082
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 61.87
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 9.7337
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -939.116
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2627.17
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1712.2
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -129.494
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 2474.63
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1240.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 235.665
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 781.722
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 4435.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 550.694
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 9.02132
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -9001.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -385.893
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -836.103
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2626.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 2914.93
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 8724.98
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 11945.7
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 1018.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 5176.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" 11226.3
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1402.13
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 184.484
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 0.443637
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 246.901
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 304.6
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -365.705
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127#" -799.739
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127#" -443.194
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -0.630981
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2541.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" 111.857
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -237.434
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 111.857
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 2589.48
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 3430.22
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 19.305
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1269.81
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 2552.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1935.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 1097.68
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 6.98612
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 1055.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1635.95
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1449.04
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 5925.69
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 1119.31
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" 11782.6
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 9430.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" 12651.1
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 1796.91
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 310.047
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 100.727
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 3826.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 318.625
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -42.6876
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 198.609
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 6.36055
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" 196.976
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -80.6512
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2550.66
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -997.259
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -2427.07
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -80.6512
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 5.50657
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -80.6512
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 111.008
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -1090.26
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 5750.3
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 2852.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" 1181.17
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 488.509
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" 848.717
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 225.218
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#" 857.219
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 857.195
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 941.042
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -995.862
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2549.49
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1206.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#" 1357.56
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1357.44
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -837.229
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 4.68055
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 587.017
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1277.67
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 8633.09
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 12598
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 6019.26
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1382.34
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 12076.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1114.06
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1079.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 57.9888
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" 90.0114
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#" 28.9944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#" 107.525
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" 30.1991
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2899.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 464.943
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#" 107.311
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#" 28.9944
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 28.2683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" 81.9828
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" -155.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 71.2069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 81.9828
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 71.2069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -164.959
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 244.053
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -463.292
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" -303.166
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 43.3194
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 586.664
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -14.7977
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 494.191
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 221.421
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 371.556
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 531.601
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 192.168
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 239.271
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 2161.33
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 798.769
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -884.398
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 5.90544
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 4087.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 1808.69
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" -740.299
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -70.0541
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 161.966
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1545.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 5801.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1351.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597#" 10576.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 6696.65
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 911.269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597#" 11166.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -1.96102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 44.618
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1031.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1168.59
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 933.765
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -156.861
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 7.6372
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 1669.56
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 1128.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 27.6163
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 31.0025
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2590.4
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -250.308
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 44.618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3.24405
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 65.93
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.54747e-13
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.31693
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -498.859
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 9.09495e-13
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 40.2173
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -6013.67
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -304.658
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -252.692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 1024.29
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -286.477
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -68.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21#" 143.654
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" 66.7808
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21#" 297.094
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" 2488.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" 20.2579
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 360.385
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 580.357
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 262.749
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -839.354
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2130.78
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 5475.2
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 6586.18
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -259.96
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -426.449
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1469.03
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 716.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 41.3
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1731.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -32.7176
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" 3386.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" 20.2579
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1410.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 1244.96
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1411.54
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -608.399
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 54.0341
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 891.237
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -494.429
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 13.1504
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 613.327
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 52.6227
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 775.344
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -37.3935
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.9735
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 54.0341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 41.3
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 242.064
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -70.9834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" -0.628521
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -731.504
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1031.37
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" 19.3744
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 42.2587
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -387.709
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -478.311
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 854.052
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1570.2
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 437.392
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1764.64
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2070.32
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1769.25
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 575.463
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 864.686
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21#" 1195.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" 1691.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" 95.7098
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 20.2579
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -565.953
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 997.644
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21#" -1405.07
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 10123.8
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 134.634
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.80621
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2770.48
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 10625.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -4.2773
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 4068.69
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -252.399
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.84201
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 4257.39
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -1.52951
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 13.1325
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -4.54717
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 334.526
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 6.21024
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 5847.21
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 5.28889
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1592.99
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" 0.740162
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -0.220916
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 2.64586
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -0.155947
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#" 12.9843
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -249.289
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -2.71023
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 848.207
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -6.09338
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 359.369
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -81.004
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 4.76
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 13.1325
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -606.145
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" 23.2764
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -742.871
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 2.9031
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" 12.8289
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 6.21024
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 3.0044
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -779.727
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1537.58
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -194.116
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -48.1188
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.427402
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#" 0.726233
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -531.123
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 27.9243
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.485905
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 679.961
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -229.246
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -7.50725
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 281.762
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 799.517
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 700.219
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#" 165.204
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -295.424
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -3.093
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 52.9252
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#" -597.528
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1142.78
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 15.8693
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 596.223
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1887.16
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1651.76
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1686.25
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 663.735
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 546.274
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1725.47
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1885.45
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1719.7
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -177.64
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" 1268.24
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1077.41
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1726.05
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -58.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 887.314
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 819.891
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 121.999
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 3240.8
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1342.4
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1175.15
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2249.83
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1922.4
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 71.5583
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -519.646
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -443.731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 294.413
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -677.48
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 579.913
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 20.2579
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1073.07
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -4188.29
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -154.588
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -56.1501
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -417.946
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -6274.22
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" 982.607
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" 643.113
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 392.718
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -436.425
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1192.72
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 813.547
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" 19.1222
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" -0.79878
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" 902.179
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2404.14
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5771.18
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 7937.99
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2882.25
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 4055.32
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 281.924
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6475.87
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3797.06
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 4944.03
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 406.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 43.453
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 5358.36
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" -890.869
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -0.535858
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 31.7692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" 3652.64
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" -727.173
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 274.229
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 4550.41
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 598.25
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 18.2551
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 24.4511
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -2.63049
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1.28387
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1125.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 31.7692
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -118.894
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -58.1809
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 13.8771
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 43.453
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -574.862
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -348.723
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" -649.499
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -156.095
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -3548.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -666.757
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" -1649.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -1970.57
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 23.2849
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1082.36
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#" 1718.11
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3414.91
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 414.539
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1029.73
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#" 1763.15
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1461.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -571.652
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 4516.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -1631.79
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -4158.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -681.524
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -5604.82
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 1740.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2959.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#" 10342.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#" 10357.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.1227
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 5180.26
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 8267.65
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 2833.28
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3456.18
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 347.215
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1278.82
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -374.943
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 90.1618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -267.16
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -863.88
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1300.13
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 145.806
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -91.9615
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -255.879
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 691.738
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 17.7433
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 32.6695
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 282.082
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2169.71
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -128.454
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -6033.9
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -5720.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 26.3696
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -340.004
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -3392.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -708.721
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -2737.15
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -453.313
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 600.044
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 20.321
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 141.511
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 683.976
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2623.35
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 596.123
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -171.769
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 574.895
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 5360.79
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 690.603
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -3369.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 8037.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 4389.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 2905.36
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 4532.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 6173.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 20.2579
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 3033.25
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 3564.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -0.15819
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 0.199227
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1348.94
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2889.21
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1539.4
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -0.6382
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 7.20771
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -3.056
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 213.928
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 95.6813
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 285.57
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -34.8293
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -394.507
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -258.455
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2611.35
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -158
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -1317.26
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 300.655
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 11.8837
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -2239.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1026.54
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 1003.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 890.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2412.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 836.237
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 337.731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1110.34
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1557.01
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 647.079
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2615.46
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -301.299
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -3153.55
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 14.7779
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -119.387
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 534.017
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 164.453
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 2397.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 6333.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" 9703.69
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 843.506
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 3591.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 8024.98
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" 9292.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 696.834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 176.292
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 0.0495128
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 111.782
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 64.0625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 2608.78
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" -261.309
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -208.086
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727#" -564.938
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 10.0667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" 84.3218
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -442.741
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -168.961
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -167.106
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" 1331.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 788.632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" -107.774
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2289.69
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" -557.252
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 35.3418
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 1255.77
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -30.208
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 575.542
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 24.5672
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 2608.12
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -290.034
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 704.24
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 9.60251
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 188.941
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" 8068.38
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 7110.65
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 5193.78
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 4075.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" 9066.4
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 5171.62
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 7734.12
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 2743.53
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 571.17
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1281.74
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 248.243
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 449.009
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 110.53
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 6.54033
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 164.257
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" 84.9413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" -10.5083
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -347.674
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -883.576
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2605.34
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -563.013
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 7.63942
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -743.203
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -284.171
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -258.978
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -80.6512
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 1153.97
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" 1166.38
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 175.441
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 2976.77
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 2196.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" 1004.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 256.859
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1804.32
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 5.82046
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 594.278
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 116.966
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -376.209
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 940.665
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 8.33587
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -276.777
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 2602.75
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -89.7312
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" -372.922
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 2788.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 8183.79
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 766.554
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21#" 10147
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 7170.81
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 4385.02
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 10364.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 860.051
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 159.352
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 29.6979
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 745.628
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 563.203
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 273.726
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 99.5837
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 28.2683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" -155.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 71.2069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 71.2069
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" -164.959
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 0.778524
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 57.1314
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 159.588
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "outd_stage1_0/isource_out" 0.276067
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -93.42
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage1_0/isource_out" -62.2269
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" -181.112
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" 133.751
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/isource_out" 28.6775
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -1390.83
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" -18.8466
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" -897.792
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "outd_stage1_0/isource_out" 24.8802
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 276.427
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -441.989
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 537.031
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "outd_stage1_0/isource_out" 0.137705
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "outd_stage1_0/isource_out" -8.87822
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 367.68
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 2475.43
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 2196.36
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" 0.71944
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "outd_stage1_0/isource_out" 0.997364
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -123.065
+cap "outd_stage1_0/isource_out" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 44.6418
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 73.9372
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 275.332
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 3453.61
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 2010.14
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 141.419
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "outd_stage1_0/isource_out" -0.476829
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 2158.98
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 2.27374e-13
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639#" 5587.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1251.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639#" 5207.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1386.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 44.618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 32.7778
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/w_276_8226#" 144
+cap "outd_stage1_0/w_276_8226#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 252.458
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -1.96102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -661.697
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 50.6436
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 42.3484
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3.24405
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 44.618
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -465.051
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2590.61
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2145.48
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -602.9
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 55.1233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -7032.66
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -102.234
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -586.24
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -724.923
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -704.022
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 51.5815
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2675.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/cmirror_out" 40.5223
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 111.367
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 6383.9
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 3281.74
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1177.86
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1255.44
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 55.1233
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 11652
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 525.498
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 41.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 2660.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 572.089
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -746.825
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 54.0341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "w_n14024_9116#" 40.5223
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 152.384
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -32.7176
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 51.5815
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -930.847
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 55.1233
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -119.143
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -37.3935
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 41.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 1322.97
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 54.0341
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#" 160.141
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -57.7529
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 38.4362
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" -105.813
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -832.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "w_n14024_9116#" -1.49217
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -789.826
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 51.5815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 1836.85
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 55.1233
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1390.01
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2158.76
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 851.044
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#" 1427.48
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 538.387
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 4673.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 258.052
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 51.5815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257#" -886.291
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 40.5223
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257#" -834.254
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 2275.59
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 6886.38
+cap "w_n14024_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 29.7148
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 2.47236
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -0.160157
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8991.65
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 10745.6
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -4.2773
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 6.21024
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 11046.9
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_stage2_0/w_266_8236#" 2.12593
+cap "w_n14024_9116#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -0.58679
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 669.052
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 7.29683
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "w_n14024_9116#" 2.64586
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 6.24114
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_stage2_0/w_266_8236#" 5.28889
+cap "w_n14024_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -1.90416
+cap "outd_stage2_0/w_266_8236#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -30.5912
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3282.73
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 109.513
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.11622
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "w_n14024_9116#" 2.64586
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "outd_stage2_0/w_266_8236#" 5.28889
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 7.29683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -6.09338
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -2.86782
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 14.9237
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -314.886
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 0.11622
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 11.4333
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 759.412
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 45.8471
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_276_9096#" -5.93738
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -936.629
+cap "outd_stage2_0/w_266_8236#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" 1.54545
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 29.7148
+cap "outd_stage3_0/w_276_9096#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 5.8062
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1167.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -1724.3
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -345.051
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1597.95
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.66441
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1736.21
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -740.407
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -3.16939
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.427402
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/cmirror_out" -3.07921
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 27.9243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 55.1233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/cmirror_out" 30.7604
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#" -4.84667
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 7.91486
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/cmirror_out" -6.90683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" 1233.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#" -1068.33
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 51.5815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" -411.091
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#" -979.715
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1639.99
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -2.81508
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 55.1233
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2208.87
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1651
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.27258
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -2.73498
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 4184.4
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1056.94
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1562.5
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" "w_296_9116#" -0.0571625
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 51.5815
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1841.42
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -4.84667
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -1232.1
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" 8.30669
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 729.895
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -117.634
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "w_296_9116#" -2.28753
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1864.21
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1622.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 5208.98
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 143.117
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2739.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "w_296_9116#" 243.999
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.88076
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -2.35452
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" 8.69851
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -596.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 495.224
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -4.84667
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "w_296_9116#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/w_276_9096#" 51.5815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -1065.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -1176.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "w_296_9116#" 40.5223
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1.6913
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -8584.19
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -259.338
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1.15292
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.48893
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -568.94
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2060.76
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -6538.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -237.139
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -574.266
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 38.2085
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/w_276_9096#" 215.786
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "w_296_9116#" -0.0571625
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -262.448
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 372.242
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -6.78534
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "w_296_9116#" -1.62847
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 9.09034
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/w_276_9096#" 116.997
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 8116.97
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 7858.14
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 8921.94
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 6691.25
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 7169.1
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 6854.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 501.455
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" -1433.9
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -9.20868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 43.453
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_276_9096#" -4.01439
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" -1149.7
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -0.535858
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 3678.84
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 94.6265
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_14526_9096#" -0.0571625
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 9.48216
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" 3166.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 31.7692
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 846.897
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 43.453
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 4.3637
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -5.26097
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2382.85
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 9.53253
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 31.7692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1.28387
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -78.5904
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -107.359
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -668.046
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -4361.44
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -2294.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -953.945
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -0.114325
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -9.69334
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 106.705
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/cmirror_out" -312.19
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -1112.15
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 9.87399
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 3044.99
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 33.2103
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1553.97
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 4943.1
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2096.58
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1632.1
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.2658
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -3509.85
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -725.659
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -8.96752
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 106.705
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -3.75962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1139.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" 4150.23
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 3863.29
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -7365.9
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 11518.4
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 694.43
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 12502.4
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 8771.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.1227
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 11394
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2603.91
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.91336
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "w_14546_9116#" -649.64
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.5793
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1216.21
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -9.2324
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 197.189
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -346.454
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1828.23
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -146.444
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1370.42
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2125.37
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -297.942
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -136.606
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 21.1082
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.5009
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -1182.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -8289.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "w_14546_9116#" -784.954
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 106.705
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "w_14546_9116#" -6011.4
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -9.22271
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -55.3968
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "w_14546_9116#" -4.8584
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -3237.32
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1111.14
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2584.75
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 413.225
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 0.078365
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -398.755
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 65.2784
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "w_14546_9116#" -0.0571625
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 376.623
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_28776_9096#" -4.83175
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -8.33234
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 995.735
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.1091
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 141.625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/w_28776_9096#" 10597.6
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -6875.4
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 7606.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 10826.3
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_14526_9096#" -3.47782
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2158.97
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -0.15819
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -0.969334
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 2591.78
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 3032.15
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" 0.47019
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 40.5223
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 345.462
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 3311.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 42.893
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 51.5815
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -27.4388
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 108.812
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 9.71726
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -6.19589
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" 60.0223
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -65.8193
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -0.6382
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.80305
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 511.504
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -140.059
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -288.587
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2142.21
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 0.862015
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -600.365
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -0.959149
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" -3.39267
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -76.1272
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -2199.87
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2557.9
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 695.845
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.77205
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.9118
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1865.15
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 812.122
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 55.1233
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 654.957
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 9.32543
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 2369.25
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 213.643
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 1.25384
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -310.382
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 363.559
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -700.038
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 51.5815
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -4.84667
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -191.647
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2241.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 999.156
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "w_28796_9116#" 5136.8
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 55.1233
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 8.93361
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.73847
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 10072.2
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.87724
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1335.14
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 7723.44
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 10192.8
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1257#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -4.84667
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 1.64566
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.42576
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.70198
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.54178
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -77.3638
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.83968
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 2387.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 51.5815
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -54.7093
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -290.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" -392.448
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 2.03749
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 98.366
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -585.258
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -4.84667
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" -4.7987
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.14996
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -77.162
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" 2665.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" 1288.2
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/w_28776_9096#" -3.35576
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 329.808
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -246.899
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -4.66217
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -928.342
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 94.6265
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "V_da2_P" 2.42931
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 129.359
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 46.9989
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -145.74
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -288.998
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -4.84667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 2692.83
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -649.668
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_n58#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -391.442
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 8776.61
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 12421.7
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 5896.92
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 12579.4
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 7610.17
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 7.75813
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 8745.07
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -53.4551
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.61857
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.75383
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 203.63
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#" 375.821
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 2.82114
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -0.0571625
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -4.84667
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 25.2538
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 51.5815
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/cmirror_out" -4.57063
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -0.423097
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" -4.70449
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -88.5919
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 7.36631
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -634.722
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 2416.42
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -470.843
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 3.21296
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 51.5815
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -779.184
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -41.4879
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" -386.729
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -4.84667
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.64996
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/w_43026_9096#" 55.1233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "w_43046_9116#" 5036.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 279.018
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" 1070.48
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -4.51766
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 6.97448
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "w_43046_9116#" 2832.97
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 125.834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" 977.559
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "w_43046_9116#" -878.423
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 187.662
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 3.60479
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -512.614
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/w_43026_9096#" 51.5815
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "w_43046_9116#" -842.898
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" 2755.27
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -4.84667
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_n58#" -434.236
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#" 11016.6
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#" -4.5894
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/w_43026_9096#" 55.1233
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#" 11363.3
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1194.07
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "w_43046_9116#" -4.45882
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 6.58266
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "w_43046_9116#" 9444.99
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1094.1
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "w_43046_9116#" 6001.88
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -1.85165
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 3.99661
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1257#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -4.84667
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 168.162
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "w_43046_9116#" -0.0571625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" -205.028
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" -50.954
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" -57.7561
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 74.096
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage1_0/isource_out" -41.9831
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 88.2011
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 111.054
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 173.613
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 31.274
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" -868.004
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -53.48
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -359.074
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 14.1799
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 93.3742
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 221.537
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 141.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1465.79
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 176.624
+cap "outd_stage1_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 26.9935
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 269.71
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 3041.52
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 9.39314
+cap "outd_stage1_0/isource_out" "outd_stage1_0/dw_70_8020#" -2.22957
+cap "outd_stage1_0/isource_out" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 45.6834
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 1269.67
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 299.477
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 2887.09
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 2164.34
+cap "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 242.972
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" 503.537
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" -1.48658
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 2266.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1859.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#" 3286.83
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 1976.39
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 3063.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/dw_70_8020#" 2317.28
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/m1_n1500_10180#" 26.9935
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 2.8152
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/dw_70_8020#" 1110.39
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -1.67935
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/dw_60_8030#" -101.952
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/dw_70_8020#" 1318.85
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -60.291
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 305.277
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 37.734
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 533.865
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 12.7448
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" 2.46917
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_0/dw_60_8030#" 5.08406
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.7778
+cap "outd_stage1_0/w_276_8226#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 15.8446
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/VN" 5.08406
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 37.734
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/m1_1850_8370#" 3.8185
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 183.83
+cap "outd_stage1_0/w_276_8226#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -37.054
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -1.27677
+cap "outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -51.1003
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/m1_1850_8370#" 25.8153
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/m1_250_8900#" -104.524
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 224.816
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -2.74354
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 280.486
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 531.515
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -22.9899
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/m1_1850_8370#" 11.6724
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_0/m1_1850_8370#" 3.08635
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 174.413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -17.1582
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -203.49
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -551.566
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -824.048
+cap "outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -90.0892
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 0.128604
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -876.912
+cap "outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1341.17
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/m1_1850_8370#" 1577.18
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3219.74
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -92.4751
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -165.531
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -185.378
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -285.713
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -34.38
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2908.44
+cap "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1970.48
+cap "outd_stage2_0/cmirror_out" "outd_stage2_0/m1_1850_8370#" 1019.33
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 657.03
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -102.309
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 319.814
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 670.329
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -43.7808
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2370.63
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -216.545
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -131.899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" -2.10141
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 788.997
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 309.019
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -38.964
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 275.699
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 70.7096
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -260.177
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -120.383
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" 52.3788
+cap "outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -47.5542
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1817.59
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2059.35
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1628.63
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 142.272
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -115.513
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -108.577
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1397.36
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3.32755
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1946.18
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4487.51
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 669.615
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 680.165
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1156.21
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1750.38
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 402.898
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -148.874
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -2.36446
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3808.85
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1936.34
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 41.3
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4490.15
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 4.1598
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 45.6974
+cap "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 3357.88
+cap "outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -159.78
+cap "outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -195.677
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1365.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -27.7499
+cap "outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 85.7668
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -229.731
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -291.486
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6486.44
+cap "outd_stage2_0/outd_diffamp_1/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2515.22
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1316.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" 12.9783
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2388.14
+cap "outd_stage2_0/outd_diffamp_1/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 2194.53
+cap "outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 32.2246
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -40.874
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -54.249
+cap "outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 0.0643022
+cap "outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 0.0643022
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 45.6974
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -68.8414
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 41.3
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2331.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" 4.48465
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" 10.8211
+cap "outd_stage2_0/outd_diffamp_1/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -173.428
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -31.6243
+cap "outd_stage2_0/outd_diffamp_1/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -214.875
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -664.806
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -626.267
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -294.302
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" -139.511
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 11.8496
+cap "outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 472.017
+cap "outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -911.33
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -242.983
+cap "outd_stage2_0/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -120.668
+cap "outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 5.53303
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 24.8351
+cap "outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -54.3644
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -52.6242
+cap "outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -14.9755
+cap "outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -134.554
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" -337.537
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -42.784
+cap "outd_stage2_0/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 191.351
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 19.6112
+cap "outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1254.33
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 160.291
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 331.736
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 370.121
+cap "outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -185.064
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 4664.96
+cap "outd_stage2_0/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 214.791
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -30.5691
+cap "outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1836.79
+cap "outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -166.435
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 147.91
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 324.843
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "w_n14024_9116#" 1177.78
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 328.233
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -256.538
+cap "outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 678.411
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 5360.22
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -311.636
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/dw_60_8030#" 966.678
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "V_da2_P" -274.68
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/dw_60_8030#" 782.328
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "w_n14024_9116#" -1.22144
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2191.18
+cap "V_da2_P" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -612.68
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" -23.8281
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1822.27
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "outd_stage2_0/dw_60_8030#" -7.91532
+cap "outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 8.83938
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -127.153
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "V_da2_P" 9.775
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "w_n14024_9116#" 1923.93
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 38.1186
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 927.972
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 0.0826056
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_n14024_9116#" -0.0207155
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1142.35
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2902.82
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 2898.74
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "w_n14024_9116#" 0.456267
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1153.46
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1275.41
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2973.16
+cap "outd_stage2_0/w_266_8236#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" 3.16296
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 2343.78
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 2.39791
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 392.672
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -0.0192188
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 2.72791
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -14.6428
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 1968.06
+cap "w_n14024_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 0.126927
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 9.775
+cap "outd_stage2_0/w_266_8236#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 0.428058
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" 6.49105
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -3.58593
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 4946.22
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "w_n14024_9116#" 2.64586
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n705#" 0.386364
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 7.64455
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 158.939
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -5.05947
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" 0.0826056
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 166.904
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -278.847
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -0.484152
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -75.7593
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/w_276_9096#" -4.14719
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" "outd_stage3_0/w_276_9096#" 2.9031
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -37.1246
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -288.24
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -9.879
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -49.278
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" 2.84667
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/w_276_9096#" -6.55325
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -153.167
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.3231
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 114.891
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 38.1186
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 33.8525
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -51.0943
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" 0.126927
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -1.0888
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 8.28584
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -172.603
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 5.54173
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -68.4752
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 150.678
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n705#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 6.49105
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -44.1197
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 0.144287
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 27.9243
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -469.055
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -185.689
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 367.615
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -6.49797
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -162.161
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -225.541
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 0.855459
+cap "outd_stage2_0/li_250_11940#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 0.391011
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -12.4806
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -138.277
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -90.876
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -2.44175
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -209.327
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 0.715486
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -173.251
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/cmirror_out" 702.136
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 0.267442
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -3.48756
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1758.84
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 0.238473
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -30.8572
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -158.406
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 1131.79
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 2.66441
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -106.407
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -373.682
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -408.701
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 378.571
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" "outd_stage3_0/outd_stage2_0/cmirror_out" -6.49797
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -369.783
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 712.69
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/cmirror_out" -76.2632
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -1995.14
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/cmirror_out" 3145.72
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -64.8013
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -4.14719
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/cmirror_out" -284.289
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -51.188
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 1420.48
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 11.8496
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -129.201
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" -66.3061
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -63.7782
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -301.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 309.019
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 13.4611
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" 7.91486
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" -152.413
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/cmirror_out" -1302.13
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 153.949
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 159.168
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 319.814
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -12.4806
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 196.098
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 98.1182
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 95.0446
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -6.49797
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 168.774
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 624.454
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/cmirror_out" 40.8632
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 4502.21
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 395.791
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 365.011
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 309.019
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 226.608
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1095.73
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 2.27258
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 104.794
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 422.858
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" "w_296_9116#" -6.23276
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "w_296_9116#" 9147.4
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -3.1104
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" -224.415
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 378.604
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -862.679
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 629.542
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 389.283
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 1601.32
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 8.30669
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -44.8987
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 494.802
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 1192.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -480.333
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "w_296_9116#" -5.83036
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" -565.836
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "w_296_9116#" -76.2632
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -195.308
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 4034.61
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -540.445
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -285.581
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 513.142
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 365.262
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "w_296_9116#" 54.5406
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 37.8908
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 242.887
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 173.046
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 440.661
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 546.635
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 95.8933
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 747.829
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 283.627
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 749.183
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 352.756
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "w_296_9116#" -76.2632
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 201.502
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1949.05
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -190.359
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" 323.51
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_296_9116#" -6.76319
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -13.5174
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -403.818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/w_276_9096#" -68.8482
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "w_296_9116#" -3.1104
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 29.9275
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -95.9449
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "w_296_9116#" -7.94655
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 629.478
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" -3.79367
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -122.186
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "w_296_9116#" 2714.03
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "w_296_9116#" -76.2632
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 378.636
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -327.892
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 117.189
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_296_9116#" -3.5142
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/w_276_9096#" -55.008
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" 8.69851
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" "w_296_9116#" -7.69365
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "w_296_9116#" 57.8289
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -209.032
+cap "outd_stage3_0/m2_11870_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 59.2963
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1846.84
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1539.04
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -20.0983
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1004.47
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 736.732
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "w_296_9116#" -13.5174
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -418.365
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -79.9433
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 619.477
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_296_9116#" -9.48175
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -104.78
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 11.8496
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 350.794
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -635.215
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -657.836
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/w_276_9096#" 437.796
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 427.981
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 678.411
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "w_296_9116#" -2.0736
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n1215#" 270.344
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 378.668
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 9.09034
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n1215#" 275.552
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -340.936
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -420.905
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "w_296_9116#" -9.5743
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_296_9116#" -3.24899
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "w_296_9116#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 80.6206
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 166.053
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -113.209
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 368.745
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 373.962
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -151.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "w_296_9116#" 457.928
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "w_296_9116#" 4091.24
+cap "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1072.32
+cap "w_296_9116#" "outd_stage3_0/w_276_9096#" -42.604
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 942.166
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 2167.87
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 7458.94
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/w_276_9096#" 62.0866
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "w_296_9116#" -9.74696
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -42.4722
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "w_296_9116#" 520.763
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1039.54
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1209.62
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1047.86
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 995.867
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -14.5542
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 5489.86
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1880.82
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 185.955
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 949.973
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1356.1
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 719.87
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/w_14526_9096#" -3.24899
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 601.542
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 975.819
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" 1620.96
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 35.5073
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" 1122.83
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 67.4696
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/w_14526_9096#" -2.0736
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 31.7692
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" -0.450695
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -58.828
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 9.48216
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -78.078
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 1125.01
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -353.856
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -449.223
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/w_14526_9096#" -5.51016
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1271.51
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" 277.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -31.5408
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -4.76545
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" -9.74696
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -77.2575
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -189.164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 31.7692
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -6.32482
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1.0491
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 343.509
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1896.37
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -111.761
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 35.5073
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -23.0889
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -14.5542
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 0.128604
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -366.627
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 11.8496
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -206.415
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 26.3701
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 585.384
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -454.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -531.717
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -322.789
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_1/cmirror_out" -2.58017
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -885.09
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 9.87399
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 21.8345
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1594.88
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -52.3575
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 24.3998
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" -150.682
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -1.0368
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -399.532
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -214.94
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 378.733
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 172.214
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 66.1098
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 624.454
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 631.788
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 218.512
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 319.814
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3377.65
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 445.054
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 572.002
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 345.537
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 159.249
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 59.2912
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 221.162
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -15.591
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/cmirror_out" -76.2632
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 444.965
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "outd_stage3_0/outd_stage2_1/cmirror_out" -10.4158
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 309.019
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 410.881
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -297.475
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "w_14546_9116#" 1282
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "w_14546_9116#" -1.0368
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" -2543.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -2834.15
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -778.004
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -13.3221
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" 784.367
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" -467.356
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -85.4466
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -249.828
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 629.542
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -302.389
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "w_14546_9116#" -780.44
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 786.664
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" 1150.38
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/w_14526_9096#" 486.706
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 198.043
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 378.765
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -170.609
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.2658
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 919.635
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -14.5493
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1139.4
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 21.5462
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1364.91
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1486.35
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 5674.99
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3080.18
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1225
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.1227
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 1524.09
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 2748.79
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" 3119.8
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 613.974
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 899.012
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 347.571
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 65.161
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1478.25
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 378.791
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" 38.2602
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 33.1238
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -287.179
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 46.9374
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 87.1606
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -13.2871
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -1.04167
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 42.2885
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "w_14546_9116#" 69.3141
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -13.1622
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -95.6515
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -191.259
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 10.5793
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -190.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 26.4744
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/w_14526_9096#" -10.5023
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -56.8476
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "w_14546_9116#" 64.4335
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -15.5861
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -46.209
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2106.44
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 30.2034
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 349.164
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 26.4744
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 42.6532
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -479.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" -13.9389
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -25.0076
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 619.413
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "w_14546_9116#" -12.9959
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 236.667
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/m2_26150_10380#" -162.573
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/m2_26150_10380#" -1918.34
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -60.356
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -62.4184
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 378.784
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" -784.516
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 10.8762
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 276.913
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 57.3102
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -1076.5
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "w_14546_9116#" -76.2632
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -26.7534
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -261.908
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -364.085
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "w_14546_9116#" -12.897
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -2427.86
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -1.04167
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1451.26
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -251.429
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "w_14546_9116#" -5083.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -282.622
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 10.5009
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/m2_26150_10380#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -457.978
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 3367.04
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "w_14546_9116#" "outd_stage3_0/w_14526_9096#" -42.604
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 340.077
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1549.83
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 394.855
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 216.034
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 228.017
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 58.4887
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -14.5444
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 602.905
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 98.0009
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 1359.43
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -56.0906
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 187.409
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 393.433
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 371.173
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 636.483
+cap "outd_stage3_0/w_14526_9096#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 62.3729
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 121.452
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/w_28776_9096#" -2.08335
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1242.54
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/w_14526_9096#" 1341.32
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 2072.79
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 5196.95
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -2.07987
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 607.385
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -663.271
+cap "outd_stage3_0/m2_26150_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1100.12
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 10.1091
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -1.55043
+cap "outd_stage3_0/w_28776_9096#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 149.55
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -1357.69
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 21.3428
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 355.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/w_14526_9096#" 748.053
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1775.62
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 5523.3
+cap "outd_stage3_0/m2_26150_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -132.701
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -706.914
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -2836.63
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" -0.139752
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 72.4716
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 2458.22
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/cmirror_out" -86.3788
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -457.688
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 2195
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -14.5444
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 76.9875
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 239.16
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 566.736
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 797.47
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 635.214
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 580.244
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -302.052
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 694.178
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" 553.5
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 485.559
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 1074.35
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "outd_stage3_0/outd_stage2_2/cmirror_out" -12.9959
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1388.06
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/cmirror_out" -63.6391
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 35.6625
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -10.8839
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -0.530618
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -0.672555
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 378.758
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -6.24856
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 9.71726
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/cmirror_out" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 35.6625
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/cmirror_out" -114.717
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2.1318
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 55.198
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/outd_stage2_2/cmirror_out" -2.08335
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.2879
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 457.026
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -1.528
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -11.868
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1935.27
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 56.1751
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -20.3834
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1224.46
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -90.1112
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 624.39
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -645.177
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -640.698
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -13.5028
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 358.679
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -1.62836
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1442.28
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -657.56
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 31.8475
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -582.199
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 11.8496
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -703.972
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1019.89
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -272.594
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -23.5568
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 54.8081
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 9.32543
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 1363.78
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -3.12502
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 442.108
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" 192.202
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 122.081
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 71.9992
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" 285.71
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 113.434
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 319.814
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 328.389
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -7.05703
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 453.79
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 64.8193
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 5494.53
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 141.419
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/w_28776_9096#" 134.315
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" 100.835
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -35.4868
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" 232.935
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 378.784
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 309.019
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -96.7866
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 362.599
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 58.4887
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 944.436
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -20.4817
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 3358.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 1449.81
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "w_28796_9116#" 893.359
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 2.55503
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -13.4333
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -4171.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_1560_8052#" -1832.59
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "w_28796_9116#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -108.974
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "w_28796_9116#" 50.6039
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" -18.5662
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 4140.06
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -502.564
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 620.5
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" -43.958
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "w_28796_9116#" 629.964
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -1181.92
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_1560_8052#" -236.467
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 949.947
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 298.22
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 355.537
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" 2683.54
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 10788.2
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -5.09751
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 1456.07
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 2850.3
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 831.009
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 666.694
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 2695.1
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 4646.67
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 441.765
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 833.338
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" 355.932
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 9.01197
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -3.19447
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 378.677
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1464.79
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 2574.66
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "w_28796_9116#" 46.439
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "w_28796_9116#" -76.2632
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -12.4611
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 366.425
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -3.13573
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1237.69
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -98.7087
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -76.5684
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 8.54178
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -17.0973
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -97.6459
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -196.272
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -76.2632
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -4.1667
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 378.891
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 279.02
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/w_28776_9096#" 63.1357
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -5.52339
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -140.806
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "w_28796_9116#" -12.2527
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -208.223
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -458.422
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "w_28796_9116#" 298.47
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "w_28796_9116#" -69.7091
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" -45.0777
+cap "w_28796_9116#" "outd_stage3_0/w_28776_9096#" -42.604
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -15.0053
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 58.4887
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "w_28796_9116#" -12.9959
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1967.18
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -121.945
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 43.7982
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -114.025
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/w_28776_9096#" -82.1066
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -64.9029
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/m2_40400_10380#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" 294.881
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 24.335
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/m2_40400_10380#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" 2531.38
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 207.365
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 8.14996
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" -285.648
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" 253.599
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 498.165
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -30.6014
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -113.072
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -4.37503
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -0.701501
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "V_da2_P" -117.208
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 33.1302
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "V_da2_P" 231.689
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -120.572
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "outd_stage3_0/outd_stage2_3/cmirror_out" -12.9959
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/cmirror_out" -580.37
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -11.4194
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 30.2568
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "V_da2_P" -24.8818
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -50.0206
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -423.724
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" -42.205
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "V_da2_P" 443.043
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 57.5023
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" -24.448
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 18.2576
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" 897.336
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_1560_8052#" -312.296
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 104.264
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 700.863
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "V_da2_P" 116.002
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -775.666
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 709.495
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 2252.87
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1586.83
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 2667.68
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 926.559
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 378.967
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 5925.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 709.824
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1243.25
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/cmirror_out" -17.4996
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 494.125
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 355.749
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 2343.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" 11464.3
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 7.75813
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -44.6737
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" -5.20837
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_452#" 2394.08
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 2281.35
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -15.3562
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 3127.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -239.187
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1151.65
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 34.1383
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" -11.0722
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 428.101
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 364.256
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 231.201
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 2558.45
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 652.205
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 30.3082
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 835.859
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 377.438
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 4.1598
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" 268.446
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1425.83
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -17.8346
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -67.1693
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -148.506
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -75.1327
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/cmirror_out" -76.2632
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 378.929
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 7.36631
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_452#" "outd_stage3_0/outd_stage2_3/cmirror_out" -5.5556
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/cmirror_out" 3.00403
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -10.3777
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -82.5525
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -90.2544
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 11.8496
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 523.846
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -663.6
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "w_43046_9116#" 30.1533
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1542.8
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 58.4887
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -33.3582
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -144.876
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -12.9959
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -6.20759
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -128.074
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 380.833
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -179.785
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -57.8433
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -342.617
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -259.159
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -28.268
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -76.2632
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -168.385
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 378.587
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 319.814
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -1.10619
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -6.47346
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 128.644
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 468.594
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 6183.69
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" -6.25005
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 367.404
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 202.067
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "w_43046_9116#" -76.2632
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 7.05285
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 4.81303
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 381.577
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 145.775
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 1944.71
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 309.019
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 6.84182
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1.07303
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 271.832
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 342.984
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "w_43046_9116#" -12.9959
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/w_43026_9096#" -35.8932
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "w_43046_9116#" -9.89162
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -101.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 500.985
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 384.098
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -27.3736
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 309.019
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 1334.86
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -932.046
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 376.666
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -76.2632
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1458.19
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 778.128
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" -157.56
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 646.338
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "w_43046_9116#" 229.635
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/w_43026_9096#" -30.178
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 58.4887
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -184.361
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 26.2229
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2830.04
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -117.202
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 165.612
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2809.03
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/w_43026_9096#" 927.287
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2921.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1619.15
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 6.58266
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 886.031
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1358.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -65.0265
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 2700.24
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -387.395
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -176.867
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -38.2252
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2918.93
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" -6.73616
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "w_43046_9116#" 4413.89
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 457.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" 3204.01
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_452#" 3054.84
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 371.607
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 8041.24
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -76.2632
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -51.3319
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 396.057
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 480.65
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "V_da2_N" -15.9955
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 28.9944
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -127.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 689.117
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" 179.139
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 2561.83
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 3.99661
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 692.4
+cap "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_452#" "w_43046_9116#" -4.14719
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" 262.19
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -6.49797
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 316.023
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 294.659
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" -556.449
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 2183.72
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 529.67
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -316.707
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 798.019
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -32.4198
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 1629.75
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 0.212879
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 107.893
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 848.651
+cap "outd_stage1_0/m1_260_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 0.23079
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 2.6471
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 0.669048
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 193.857
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 27.4278
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 58.3565
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 67.6156
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -65.0042
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/m1_260_8900#" -15.0772
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 8.96729
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 85.0824
+cap "outd_stage1_0/isource_out" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -4.08739
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 363.214
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 359.38
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -52.3001
+cap "outd_stage1_0/m1_260_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" -127.073
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 37.1813
+cap "outd_stage1_0/isource_out" "I_Bias" 8.96729
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "outd_stage1_0/isource_out" -3.43731
+cap "outd_stage1_0/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 233.539
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 776.661
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 60.2559
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 1036.51
+cap "outd_stage1_0/isource_out" "outd_stage1_0/dw_70_8020#" -0.360743
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 122.48
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/outd_diffamp_0/a_182_8052#" 10.8751
+cap "outd_stage1_0/isource_out" "outd_stage1_0/outd_diffamp_0/a_182_8052#" -1.39118
+cap "outd_stage1_0/isource_out" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -1.11874
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "I_Bias" 26.8227
+cap "outd_stage1_0/isource_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 66.0621
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 61.5886
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/m1_n1500_10180#" 36.6785
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "outd_stage1_0/dw_70_8020#" -41.2564
+cap "outd_stage1_0/m1_n1500_10180#" "outd_stage1_0/m1_1830_10170#" 3.0629
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/dw_70_8020#" 295.655
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/isource_out" 2921.57
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/m1_1830_10170#" 338.289
+cap "outd_stage1_0/isource_out" "outd_stage1_0/m1_1830_10170#" 3.54226
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "outd_stage1_0/m1_n1500_10180#" 21.2687
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 952.226
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/isource_out" 2096.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/dw_70_8020#" 306.599
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 465.211
+cap "outd_stage1_0/isource_out" "outd_stage1_0/m1_n1500_10180#" 3.49418
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 86.1795
+cap "outd_stage1_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_stage2_0/dw_60_8030#" 10.2609
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "outd_stage2_0/m1_1850_8370#" 21.2687
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 6.36305
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 463.076
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "outd_stage2_0/m1_1850_8370#" 0.145245
+cap "outd_stage1_0/isource_out" "outd_stage2_0/m1_1850_8370#" 2.96212
+cap "outd_stage1_0/m1_1830_10170#" "outd_stage2_0/m1_1850_8370#" 14.3406
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 9.4119
+cap "outd_stage1_0/dw_70_8020#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 405.987
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" -1.38993
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 17.3175
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/w_266_8236#" -0.068618
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/w_266_8236#" 0.272358
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" -564.101
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1332.48
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/m1_250_8900#" 11.0862
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/m1_250_8900#" -1090.59
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" 6.36305
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/m1_250_8900#" -10.3308
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 9.4119
+cap "outd_stage1_0/w_276_8226#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -201.73
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 426.167
+cap "outd_stage1_0/w_276_8226#" "outd_stage2_0/dw_60_8030#" 10.2609
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/cmirror_out" -382.185
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -189.032
+cap "outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3007.03
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 96.9775
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 57.1125
+cap "outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -192.76
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/m1_250_8900#" -99.9675
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/dw_60_8030#" 1.7627
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -3514.37
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -1018.16
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -248.705
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 207.615
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 934.393
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 613.522
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1702.49
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 45.5582
+cap "outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 7524.84
+cap "outd_stage2_0/outd_diffamp_0/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -267.563
+cap "outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1330.54
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2180.97
+cap "outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 212.014
+cap "outd_stage2_0/outd_diffamp_1/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6077.4
+cap "outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -510.238
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6956.97
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 27.1055
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 6372.11
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -1039.49
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_1/a_1560_8052#" -1239.52
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_2/a_182_8052#" -37.5292
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 27.1055
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" -249.235
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 28.5562
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1176.33
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -286.021
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" -278.067
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1462.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_2/a_1560_8052#" -1998.17
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1212.31
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -512.54
+cap "w_n14024_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -2263.09
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/w_266_8236#" -156.316
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" 727.012
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 2650.21
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 1013.6
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_2/a_1560_8052#" -415.162
+cap "outd_stage2_0/m1_2350_11400#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" 2.72418
+cap "outd_stage2_0/m1_2350_11400#" "outd_stage2_0/outd_diffamp_3/a_1560_8052#" 3.04337
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_3/a_1560_8052#" 4452.32
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/m1_2350_11400#" -172.274
+cap "outd_stage2_0/outd_diffamp_3/a_182_8052#" "outd_stage2_0/dw_60_8030#" -2.20591
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "outd_stage2_0/dw_60_8030#" -2.45876
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/dw_60_8030#" 81.3707
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "w_n14024_9116#" 4421.05
+cap "outd_stage2_0/m1_2350_11400#" "w_n14024_9116#" 2.13911
+cap "w_n14024_9116#" "outd_stage2_0/m1_2350_11400#" 2.33355
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 3576.6
+cap "outd_stage2_0/m1_2350_11400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" 0.141053
+cap "outd_stage2_0/outd_diffamp_3/a_1560_8052#" "outd_stage2_0/m1_2350_11400#" 3.04337
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 21.5921
+cap "outd_stage2_0/m1_2350_11400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 377.626
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 161.574
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage2_0/m1_2350_11400#" 11.1968
+cap "outd_stage2_0/m1_2350_11400#" "outd_stage2_0/m1_250_8900#" 2.72418
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 0.286237
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage2_0/m1_250_8900#" 2.13045
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 12.6779
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -432.604
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 2.38029
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" -115.771
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 148.119
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 20.9487
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -5.85902
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -5.09393
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -32.8845
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -546.778
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -42.0696
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 113.545
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -716.025
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 219.71
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" 0.267148
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 179.33
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -411.793
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -13.0863
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -60.0557
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 17.5893
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 746.949
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 6.55357
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 32.0735
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/m1_250_8900#" -520.312
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 5.61454
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -705.078
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -81.1539
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1804.88
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" -567.296
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -357.095
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -15.2105
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 2136.42
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" 0.517881
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" 324.79
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1720.23
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8052#" 425.8
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" 316.378
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" 443.563
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 800.171
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -81.1539
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 960.701
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -508.6
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -16.5567
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 842.184
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -557.302
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 321.838
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -646.778
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 959.803
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "w_296_9116#" -545.955
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "w_296_9116#" -15.5461
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 175.736
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 456.241
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 15641.4
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -81.1539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 18.693
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -138.797
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "w_296_9116#" -16.0725
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 319.072
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "w_296_9116#" -525.216
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 528.9
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -81.1539
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1204.36
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1555.23
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 399.986
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#" -24.8818
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -304.464
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -77.9284
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 1226.46
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 498.864
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 319.255
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -81.1539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 18.693
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 123.91
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "w_296_9116#" 207.251
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_1560_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "w_296_9116#" -526.618
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -16.0299
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -73.3591
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -204.015
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -81.1539
+cap "w_296_9116#" "outd_stage3_0/m2_11870_10380#" -544.381
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1228.06
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -2238.4
+cap "outd_stage3_0/m2_11870_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 258.357
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/m2_11870_10380#" 356.361
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1027.85
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -15.5824
+cap "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 321.626
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 889.886
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -1235
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" 935.642
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" -102.125
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 36.4054
+cap "w_296_9116#" "outd_stage3_0/m2_11870_10380#" -509.787
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" "outd_stage3_0/m2_11870_10380#" 355.233
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/m2_11870_10380#" 542.031
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "w_296_9116#" 2812.52
+cap "w_296_9116#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" -18.1878
+cap "w_296_9116#" "outd_stage3_0/m2_11870_10380#" -117.638
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/m2_11870_10380#" 210.902
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 156.169
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 2396.57
+cap "w_296_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1427.22
+cap "outd_stage3_0/w_276_9096#" "outd_stage3_0/m2_11870_10380#" 70.5266
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 139.876
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/m2_11870_10380#" 0.388411
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/w_14526_9096#" -14.5229
+cap "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 79.1702
+cap "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "outd_stage3_0/m2_11870_10380#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 19.9373
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 64.7719
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/cmirror_out" -524.582
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 19.9373
+cap "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -267.69
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -102.125
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1172.35
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 357.464
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1576.74
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_1/cmirror_out" -17.5704
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -1258.92
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -5.67957
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 396.752
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/cmirror_out" 33.9985
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/cmirror_out" -528.185
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -1306.49
+cap "outd_stage3_0/outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -206.822
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 319.44
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 139.768
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -81.1539
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/cmirror_out" -3478.82
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 505.433
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1292.7
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -149.984
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/cmirror_out" -15.9448
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_1/cmirror_out" -15.5461
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" 321.416
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 734.163
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 889.886
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" 351.206
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" -543.079
+cap "outd_stage3_0/outd_stage2_1/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1048.06
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" 197.776
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -81.1539
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" -81.1539
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" "w_14546_9116#" -510.728
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" 316.946
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "w_14546_9116#" -300.84
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" 888.999
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" "w_14546_9116#" -16.5567
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" 48.8004
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" 546.762
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8052#" -4301.18
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 3075.33
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 885.561
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 2234.19
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" 316.931
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" 0.25894
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 9.02848
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -81.1539
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" 324.313
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" -563.938
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" 42.1761
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 6.75459
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "w_14546_9116#" -15.2368
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" -496.706
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 251.67
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -61.1452
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 16.0015
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -13.6701
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -6.5811
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -371.669
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" 585.95
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8052#" -24.8818
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 166.435
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 50.6936
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -20.0087
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "w_14546_9116#" -2.97388
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" -86.1546
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -81.1539
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 190.268
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 16.0015
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -15.2105
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -11.6043
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -106.372
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" -24.8818
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -943.538
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" 65.6091
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" 458.451
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 1204.64
+cap "w_14546_9116#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" -586.324
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8052#" 327.569
+cap "outd_stage3_0/m2_26150_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -4129.93
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -54.0636
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 200.03
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -379.206
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 375.18
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -423.153
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 4.79285
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -7636.81
+cap "outd_stage3_0/m2_26150_10380#" "w_14546_9116#" -484.974
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 490.676
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -3104.03
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "w_14546_9116#" -10.9815
+cap "w_14546_9116#" "outd_stage3_0/m2_26150_10380#" -218.886
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/m2_26150_10380#" 278.783
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1088.13
+cap "outd_stage3_0/w_14526_9096#" "outd_stage3_0/m2_26150_10380#" 70.4593
+cap "w_14546_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 827.455
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 141.529
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "w_14546_9116#" -7.202
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -48.0617
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 158.871
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/m2_26150_10380#" 159.989
+cap "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/m2_26150_10380#" -24.8818
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1866.77
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 23.3531
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 52.0171
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1309.02
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1610.52
+cap "outd_stage3_0/m2_26150_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1425.04
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 362.652
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 20.0819
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 3932.6
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" -426.871
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -16.8784
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 437.301
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -102.125
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 199.838
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 862.103
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/cmirror_out" -683.794
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 17.4362
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_2/cmirror_out" -13.876
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" 593.025
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1020.07
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -61.6899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/cmirror_out" -1298.19
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1891.92
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1448.2
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 20.0819
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" 255.683
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -338.814
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 10.2245
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_2/cmirror_out" -497.684
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1346.9
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 456.583
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -407.137
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -2.77693
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -81.1539
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -3192.84
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1463.66
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" -584.519
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/cmirror_out" -15.2105
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 61.4557
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1683.42
+cap "outd_stage3_0/outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -49.4075
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -76.1996
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1331.27
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" 327.305
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -19.4639
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -54.6084
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 27.9456
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 490.236
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" 491.291
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" 15.9381
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 4740.71
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -11.2389
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 1082.94
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 203.97
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8052#" "w_28796_9116#" -485.541
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 2371.19
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_1560_8670#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -558.02
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "w_28796_9116#" -5.33717
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 116.234
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -81.1539
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 904.81
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 3461.68
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "w_28796_9116#" -15.2105
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 330.9
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_1560_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -2373.57
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" 482.453
+cap "w_28796_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -1043.51
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 62.6654
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -26.5455
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "w_28796_9116#" -609.145
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "w_28796_9116#" 11243.9
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 515.59
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 8906.62
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "w_28796_9116#" -8.334
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -47.5268
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 55.8913
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "w_28796_9116#" -476.339
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 485.204
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" 153.097
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 75.7821
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" 500.073
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -33.6271
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" "w_28796_9116#" -625.557
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -81.1539
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "w_28796_9116#" -7.8974
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" 171.931
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -15.2105
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 333.288
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/m2_40400_10380#" 483.698
+cap "w_28796_9116#" "outd_stage3_0/m2_40400_10380#" -471.984
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -40.4452
+cap "w_28796_9116#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -5.23394
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/m2_40400_10380#" -24.8818
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 102.857
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "w_28796_9116#" 282.985
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -71.6671
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -255.449
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -367.562
+cap "outd_stage3_0/m2_40400_10380#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -129.648
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -61.6802
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 346.589
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 128.997
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "w_28796_9116#" -12.1255
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#" -1724.65
+cap "outd_stage3_0/m2_40400_10380#" "w_28796_9116#" -320.135
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "w_28796_9116#" -368.12
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 265.41
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 702.357
+cap "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/w_28776_9096#" 70.4036
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/w_28776_9096#" 211.964
+cap "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/m2_40400_10380#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -102.125
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "V_da2_P" -24.8818
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 160.535
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_3/cmirror_out" -366.745
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 369.223
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 101.473
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 310.76
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -16.8784
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" -876.751
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 1086.62
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" 9698.69
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 156.986
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" 9819.69
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_3/cmirror_out" -476.534
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -48.0715
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 475.759
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 803.767
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -1208.18
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -201.868
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/cmirror_out" -8.61377
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" 2948.54
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/cmirror_out" -7.70046
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 500.076
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 333.29
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1574.55
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 167.715
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -81.1539
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/cmirror_out" -625.557
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -33.0824
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -15.2105
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1319.99
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/cmirror_out" 395.25
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/cmirror_out" -471.949
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -40.9899
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -89.2066
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -120.378
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 106.705
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 483.688
+cap "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -5.48091
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -10.2607
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_1560_8670#" -1336.07
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -11.0485
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 222.529
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 500.063
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 239.395
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -2008.38
+cap "outd_stage3_0/w_43026_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -371.082
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -40.164
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -296.105
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -1721.91
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -42.3429
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 164.489
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 962.835
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -3978.16
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "w_43046_9116#" -625.557
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 3206.8
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/w_43026_9096#" -34.139
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" 91.3111
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "w_43046_9116#" -4.50276
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 84.8898
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" -471.869
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -38.811
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -131.103
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" 483.679
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 79.9122
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 203.888
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8052#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1256.02
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -8.48822
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" 184.58
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 500.068
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 2216.14
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -625.557
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -24.8818
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 407.477
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -81.1539
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" 333.286
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -15.2105
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1102.46
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -189.24
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -35.2613
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1669.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "w_43046_9116#" 4109.47
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -715.07
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 3135.64
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -45.8926
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" 10917.6
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -7.64134
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 325.006
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" -415.994
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -24.8818
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/m1_2350_11400#" -217.728
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8052#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 324.038
+cap "w_43046_9116#" "V_da2_N" -352.73
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "V_da2_N" 746.64
+cap "w_43046_9116#" "outd_stage3_0/outd_stage2_3/m1_2350_11400#" -16.8784
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1659.84
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/m1_2350_11400#" -102.125
+cap "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "V_da2_N" -15.9955
+cap "outd_stage3_0/outd_stage2_3/m1_2350_11400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 403.116
+cap "w_43046_9116#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1842.61
+cap "outd_stage3_0/outd_stage2_3/m1_2350_11400#" "V_da2_N" 369.402
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 617.74
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 33.77
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -752.565
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 120.508
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -252.831
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "VP" 1096.72
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 344.234
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 497.137
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -253.255
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 125.649
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 4.74344
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -74.3889
+cap "VP" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 803.855
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 273.264
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 1178.13
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/m1_260_8900#" 0.23079
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 223.441
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" 1.13687e-13
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 9.11229
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 10.3245
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 181.949
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_stage1_0/m1_1830_10170#" 0.484003
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 0.523979
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 23.6672
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/m1_1830_10170#" -0.487199
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 36.6785
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/outd_diffamp_0/a_182_8052#" -11.7595
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 31.4183
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -21.7926
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/isource_out" -7.0308
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 30.4788
+cap "outd_stage1_0/isource_out" "outd_stage1_0/m1_n1500_10180#" -0.66266
+cap "outd_stage1_0/m1_1830_10170#" "outd_stage1_0/m1_n1500_10180#" -19.1139
+cap "outd_stage1_0/isource_out" "outd_stage1_0/outd_diffamp_0/a_182_8052#" -3.18611
+cap "outd_stage1_0/m1_1830_10170#" "outd_stage1_0/outd_diffamp_0/a_182_8052#" -4.95018
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/m1_1830_10170#" 65.2734
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "outd_stage1_0/m1_n1500_10180#" 36.6785
+cap "outd_stage1_0/outd_diffamp_0/a_182_8052#" "outd_stage1_0/m1_n1500_10180#" 0.0416478
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/m1_n1500_10180#" -3.23534
+cap "outd_stage1_0/isource_out" "outd_stage1_0/m1_1830_10170#" 1.458
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/outd_diffamp_0/a_182_8052#" -1.22021
+cap "outd_stage1_0/outd_diffamp_0/a_1560_8052#" "outd_stage1_0/m1_n1500_10180#" -14.6993
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "V_da1_P" 8.25159
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage1_0/m1_1830_10170#" 0.644505
+cap "V_da1_P" "outd_stage1_0/m1_1830_10170#" -176.298
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "V_da1_P" 68.8908
+cap "outd_stage2_0/m1_2350_11400#" "outd_stage1_0/m1_1830_10170#" 1.98876
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "outd_stage1_0/m1_1830_10170#" 57.0751
+cap "V_da1_P" "outd_stage1_0/m1_260_8900#" 2.6474
+cap "V_da1_P" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" 17.3175
+cap "outd_stage2_0/w_266_8236#" "V_da1_P" -2.09206
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage1_0/w_276_8226#" 17.6558
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "V_da1_P" 8.25159
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage2_0/m1_250_8900#" 1.20943
+cap "outd_stage1_0/w_276_8226#" "outd_stage1_0/m1_1830_10170#" -28.1387
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -0.925244
+cap "outd_stage2_0/m1_250_8900#" "outd_stage1_0/m1_1830_10170#" 49.3482
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/dw_60_8030#" 5.60861
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage1_0/m1_1830_10170#" 9.19606
+cap "outd_stage2_0/m1_250_8900#" "V_da1_P" 264.674
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage2_0/dw_60_8030#" -1171.84
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage1_0/w_276_8226#" 6.45775
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 90.2743
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 3.55897
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage1_0/m1_1830_10170#" 6.94118
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -213.059
+cap "outd_stage2_0/m1_250_8900#" "outd_stage1_0/w_276_8226#" 134.587
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/dw_60_8030#" -3.03637
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#" 219.832
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -104.898
+cap "outd_stage1_0/m1_1830_10170#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1.73529
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#" -1003.39
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#" -88.1943
+cap "outd_stage2_0/m1_250_8900#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.692347
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/m1_250_8900#" 5.60861
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 1037.71
+cap "outd_stage2_0/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -20.5805
+cap "outd_stage2_0/dw_60_8030#" "VP" -3.58197
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "VP" 329.92
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "VP" 803.855
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -43.7891
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1081.38
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -30.779
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/dw_60_8030#" -228.735
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -906.919
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 338.129
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 1320.16
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -40.9775
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -1235.24
+cap "outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" -24.0189
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/w_266_8236#" -1.9855
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -4.87634
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 344.262
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" 803.855
+cap "VP" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 1077.91
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -7.96032
+cap "outd_stage2_0/dw_60_8030#" "VP" 3.83525
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 1.63413
+cap "outd_stage2_0/w_266_8236#" "VP" -3.438
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -2.4785
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/m1_2350_11400#" 0.487603
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" -55.7866
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 27.1044
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.115164
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 63.8232
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -97.1054
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 115.753
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "V_da2_P" -1.17752
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -2.0065
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -241.652
+cap "outd_stage2_0/w_266_8236#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 8.96667
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" -32.8845
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "V_da2_P" 6.94622
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -2.51751
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "V_da2_P" 5.90336
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 32.3639
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 6.33565
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 551.267
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/m1_250_8900#" 16.1066
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 891.843
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 1297.26
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "V_da2_P" 2.99463
+cap "outd_stage3_0/outd_stage2_0/m1_250_8900#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 6.33565
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -420.917
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -45.6845
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8562#" 0.517881
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.017346
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" 623.675
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" -8.57537
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_0/a_182_8562#" 8.15662
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -0.00867302
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "VP" 346.32
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "VP" 803.855
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "VP" -30.9754
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8562#" 7.63874
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_1/a_182_8562#" 8.15662
+cap "VP" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 14.0716
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "VP" 997.82
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8562#" 8.15662
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 803.855
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -284.192
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 0.601
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 1676.95
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/w_276_9096#" 92.9229
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_0/outd_diffamp_2/a_182_8562#" 8.15662
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 415.657
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 305.728
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -0.0260191
+cap "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 8.15662
+cap "outd_stage3_0/w_276_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -174.071
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" -68.9053
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 0.601
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "outd_stage3_0/m2_11870_10380#" 7.76821
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 52.2875
+cap "outd_stage3_0/outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" 801.501
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/m2_11870_10380#" 0.388411
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "VP" 1104.79
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 803.855
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.0260191
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.601
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -778.184
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8562#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -514.689
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/a_182_8562#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 1698.07
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -460.084
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -6.1318
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" -67.251
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 0.601
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 803.855
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -0.0260191
+cap "outd_stage3_0/w_14526_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" 125.068
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8562#" 8.15662
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "VP" 51.0425
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "outd_stage3_0/outd_stage2_1/outd_diffamp_1/a_182_8562#" 7.89768
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "VP" 803.341
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8562#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "VP" 0.601
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8562#" 0.25894
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "VP" -89.5668
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "VP" 1104.01
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 65.5579
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_2/a_182_8562#" 6.21457
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 798.615
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 192.71
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8562#" 1.94205
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 317.817
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/a_182_8562#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -97.6111
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1467.61
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -1904.21
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 193.577
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/m2_26150_10380#" 4.53146
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" -838.659
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/m2_26150_10380#" 3.62517
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" 1124.4
+cap "outd_stage3_0/outd_stage2_1/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "VP" 803.855
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.601
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8562#" 8.15662
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1087.34
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -0.0260191
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -87.8991
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_0/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 6.34404
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -1748.61
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -820.566
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 942.149
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 8.15662
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 84.9552
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 525.561
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1.81258
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" -286.577
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 908.921
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 792.259
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_1/a_182_8562#" 4.66093
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 75.4872
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" 192.71
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 3.4957
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "VP" 1123.62
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "VP" 0.601
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "VP" -135.807
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "VP" 192.71
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "outd_stage3_0/outd_stage2_2/outd_diffamp_2/a_182_8562#" 2.97781
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "VP" 783.473
+cap "VP" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 82.1307
+cap "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8562#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/outd_diffamp_3/a_182_8562#" 5.17881
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "VP" 0.601
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "VP" 1133.82
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/m2_40400_10380#" 1.2947
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 192.71
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -44.0317
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 601.397
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/m2_40400_10380#" 6.86192
+cap "outd_stage3_0/w_28776_9096#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 147.243
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 2224.54
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 30.3176
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 803.855
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" 1018.79
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8562#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 8.15662
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.601
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" -134.027
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "VP" 192.71
+cap "VP" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1128.79
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_0/a_182_8562#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 3.10728
+cap "VP" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 81.7776
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8562#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 5.04934
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "VP" 0.601
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8562#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 8.15662
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "VP" 1133.03
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 773.896
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_1/a_182_8562#" 1.42417
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 192.71
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8562#" 6.73245
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 310.315
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8562#" 7.25033
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -432.285
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -2140.6
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1185.03
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 579.224
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_2/a_182_8562#" 0.906291
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -112.829
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -0.0260191
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" -15.0703
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" 1004.55
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8562#" 5.56722
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8562#" 8.15662
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -305.043
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_3/a_182_8562#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 2.5894
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" "VP" 803.855
+cap "VP" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 324.75
+cap "VP" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -1.02223
+cap "outd_stage3_0/outd_stage2_3/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" "outd_stage3_0/w_43026_9096#" 190.608
+cap "outd_stage3_0/w_43026_9096#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 11.07
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "V_da2_N" 8.15662
+cap "VP" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -56.9202
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "VP" 798.562
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 48.6691
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -36.0556
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "OutputN" -54.9028
+cap "VP" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 48.8763
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 796.132
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "VP" 3866.78
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 3373.02
+cap "VP" "m3_n26280_10780#" -373.515
+cap "m3_n26280_10780#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" -252.831
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 79.7297
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 4182.14
+cap "m3_n26280_10780#" "VP" 822.62
+cap "VP" "m3_n26280_10780#" 539.056
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 3024.71
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 79.7297
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "m3_n26280_10780#" -253.255
+cap "m3_n26280_10780#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 4.74344
+cap "VP" "m3_n26280_10780#" 304.661
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 4056.36
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 1227.37
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 5383.26
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 9.11229
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 1242.7
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 844.341
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" -66.701
+cap "outd_stage1_0/w_276_8226#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 244.248
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 23.6672
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 0.0227098
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 0.121121
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_stage1_0/m1_1830_10170#" 0.484003
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 30.4788
+cap "outd_stage1_0/w_276_8226#" "outd_stage1_0/dw_70_8020#" 9.07
+cap "outd_stage1_0/dw_70_8020#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 34.2116
+cap "outd_stage1_0/m1_1830_10170#" "outd_stage1_0/dw_70_8020#" 70.2987
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "outd_stage1_0/m1_1830_10170#" 57.0751
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/m1_1830_10170#" 9.19606
+cap "outd_stage1_0/w_276_8226#" "outd_stage2_0/dw_60_8030#" 241.998
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 283.689
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" 1.20943
+cap "outd_stage1_0/w_276_8226#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 14.838
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 764.794
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1195.47
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 336.132
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 30.4183
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2820.7
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 394.842
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -67.2709
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2546.17
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -7.22642
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 3155.13
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 1623.71
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 3873.3
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 368.18
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2314.38
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 395.081
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -67.2709
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 3311.68
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -7.22642
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 327.994
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 1256.63
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 4093.9
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -67.2709
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -7.22642
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 2077.48
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/dw_60_8030#" 2680.06
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" 395.13
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -365.046
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 1422.75
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 256.129
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 3768
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 256.129
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 317.716
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -50.7268
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -1620.57
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 432.519
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/dw_60_8030#" 3837.61
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 2.42391
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/dw_60_8030#" 1713.78
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 309.052
+cap "V_da2_N" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 390.526
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.115164
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 486.054
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 501.057
+cap "V_da2_N" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" 365.74
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "V_da2_P" 11.5706
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 84.4767
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "V_da2_N" 422.553
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 253.058
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "V_da2_P" -7.11805
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 345.7
+cap "V_da2_N" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 235.042
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "V_da2_P" 11.9092
+cap "outd_stage3_0/outd_stage2_0/m1_2350_11400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 5.21798
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -172.487
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "V_da2_N" 36.3767
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1446
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 3272.31
+cap "V_da2_P" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 5.13416
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 72.1538
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 344.869
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 1074.41
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -67.2709
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2558.44
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -7.22642
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 395.262
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 1522.14
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 4395.64
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 368.177
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 2867.25
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 391.385
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -67.2709
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2152.1
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -7.22642
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 3324.21
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 1522.14
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 348.313
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 2138.74
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -0.116555
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 476.034
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -67.2709
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 1732.28
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" 845.458
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" 1464.17
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" -7.10986
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" 3388.68
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -63.1311
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 2610.69
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 2125.44
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 400.526
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#" 465.776
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.488591
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#" 2429.86
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2358.13
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -0.123075
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 1522.14
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2617.76
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" 33.5059
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 309.646
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1716.39
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 3233.82
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2281.59
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -0.699331
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2139.78
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 395.12
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -67.2709
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1522.14
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 3384.05
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 877.083
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -6.52709
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2631.62
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 368.177
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -64.1661
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2126.47
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 2394.85
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" 395.399
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" 3375.38
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -3.10481
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -7.22642
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 2442.87
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -50.7119
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 368.178
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 2831.88
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" 395.099
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" 2222.88
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" -7.22642
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -16.559
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 2427.51
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 2179.45
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -37.2577
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 386.138
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 2882.2
+cap "outd_stage3_0/m4_26220_12880#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 1889.05
+cap "outd_stage3_0/m4_26220_12880#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -10.8242
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 2860.08
+cap "outd_stage3_0/m4_26220_12880#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -5.927
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 478.487
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 2617.29
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 1522.14
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1805.63
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 3391.83
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -1.87749
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 38.703
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -51.7468
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2479.34
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 2825.17
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 310.488
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2900.79
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -7.22642
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2092.85
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -15.524
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 356.153
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 368.179
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2912.74
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -38.2927
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 2257.93
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -28.9782
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 395.077
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" -7.22642
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 3269.9
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 2825.57
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 2047.21
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -24.8385
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 368.181
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 2999.91
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -42.4324
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 2953.71
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 393.913
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -7.22642
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 3043.34
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 1785.86
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -11.3843
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 369.618
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 3091.23
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -33.8156
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 2565.03
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 2203.6
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -9.94399
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 424.481
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 1522.14
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 2594.45
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -1.64105
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 3290.22
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 38.7057
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1737.08
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 2408.35
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -25.8734
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 2993.3
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 320.041
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -41.3975
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -7.22642
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 2962.94
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 3026.77
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 394.145
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 3083.62
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 1844.56
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 369.116
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -12.4192
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 2761.19
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -54.8516
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" -7.22642
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" 3198.01
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 392.983
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 3124.2
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1387.47
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 329.863
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" 393.216
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" -7.22642
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 3058.41
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -67.2709
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 2662.25
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 618.755
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -689.765
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 347.951
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 1677.47
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 190.608
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 3750.35
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 85.6324
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 34.909
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 1831.88
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -16.812
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 2967.99
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 499.191
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" 980.834
+cap "OutputN" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 336.362
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "VP" 1523.69
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "VP" 2284.66
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 646.266
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -3562.1
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 40.4913
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "VP" 3757.89
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" -128.402
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 3166.83
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 120.722
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "VP" 1776.6
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "VP" 251.958
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 40.4913
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" -128.617
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "VP" 1142.24
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" 120.722
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 1989.47
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 18.2228
+cap "VP" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 794.233
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" 0.0191683
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" 10.128
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 3634.73
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 5484.62
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" 12.4816
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 2938.59
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 249.216
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -107.538
+cap "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" 1224.45
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" 157.827
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" 1810.09
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_600#" 1107.91
+cap "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 3877.58
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 18.4975
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 1572.88
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 293.568
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_0/dw_60_8030#" 51.6896
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_0/dw_60_8030#" 244.979
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 244.979
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 51.6896
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 244.979
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage2_0/dw_60_8030#" 51.6896
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 244.979
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage2_0/dw_60_8030#" 244.979
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 51.6896
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 1802.49
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/dw_60_8030#" 40.6502
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_0/dw_60_8030#" 1077.98
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 109.459
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 6.68273
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 151.232
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -137.976
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" 239.749
+cap "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 484.795
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 2094.6
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 1807.82
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_0/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 0.775344
+cap "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage3_0/outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" -73.4502
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 48.7728
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -37.7591
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" -432.65
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 977.161
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_stage3_0/outd_stage2_1/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 244.979
+cap "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 1832.41
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/m4_26220_12880#" 10.3748
+cap "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 424.312
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 39.9118
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -2.27374e-13
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -137.976
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 244.979
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 1741.65
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 19.2359
+cap "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 853.62
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 30.3123
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" -137.976
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 244.979
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 244.979
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "outd_stage3_0/outd_stage2_3/dw_60_8030#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 1802.47
+cap "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 51.6896
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 28.8354
+cap "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 876.74
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/VSUBS" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" -416525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4564180 -10668 17264640 -1648 -3521960 -720 -151358678 -154544 7876787 -32926 128351008 -78124 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/c1_n2050_n2000#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/VSUBS" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/c1_n2050_n2000#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_129_n509#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_129_n509#" "m4_n30140_10100#"
+merge "m4_n30140_10100#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n187_n509#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n187_n509#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_129_109#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_129_109#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n187_109#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n187_109#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n227_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/c2_n3251_n3000#" "m1_n20010_5920#"
+merge "m1_n20010_5920#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n289_n683#" "li_n20100_6860#"
+merge "li_n20100_6860#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/VSUBS" "outd_stage3_0/VSUBS"
+merge "outd_stage3_0/VSUBS" "outd_stage2_0/VSUBS"
+merge "outd_stage2_0/VSUBS" "outd_stage1_0/VSUBS"
+merge "outd_stage1_0/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/m4_n3351_n3100#" "outd_stage3_0/outd_stage2_3/VN"
+merge "outd_stage3_0/outd_stage2_3/VN" "outd_stage3_0/outd_stage2_2/VN"
+merge "outd_stage3_0/outd_stage2_2/VN" "outd_stage3_0/outd_stage2_1/VN"
+merge "outd_stage3_0/outd_stage2_1/VN" "outd_stage3_0/outd_stage2_0/VN"
+merge "outd_stage3_0/outd_stage2_0/VN" "outd_stage2_0/VN"
+merge "outd_stage2_0/VN" "outd_stage1_0/outd_cmirror_64t_0/li_0_0#"
+merge "outd_stage1_0/outd_cmirror_64t_0/li_0_0#" "outd_stage1_0/VN"
+merge "outd_stage1_0/VN" "VN"
+merge "outd_stage1_0/m1_260_8900#" "InputSignal" -1426.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3190000 -460 0 0 0 0 0 0 0 0
+merge "outd_stage3_0/outd_stage2_2/cmirror_out" "outd_stage3_0/w_28776_9096#" -4.05795e+06 -290976 -42948 0 0 0 0 0 0 -1380500284 -133282 -115434936 -56252 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1057878964 -168738 853562876 -142458 -1914785564 -65718 -88463980 -28520 0 0 0 0 0 0
+merge "outd_stage3_0/w_28776_9096#" "w_28796_9116#"
+merge "outd_stage3_0/outd_stage2_3/dw_60_8030#" "outd_stage3_0/outd_stage2_2/dw_60_8030#" -335854 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5764820 -13620 4069600 -5600 -52276500 -126800 18465483 -39944 81347440 -164520 0 0
+merge "outd_stage3_0/outd_stage2_2/dw_60_8030#" "outd_stage3_0/outd_stage2_1/dw_60_8030#"
+merge "outd_stage3_0/outd_stage2_1/dw_60_8030#" "outd_stage3_0/outd_stage2_0/dw_60_8030#"
+merge "outd_stage3_0/outd_stage2_0/dw_60_8030#" "outd_stage2_0/dw_60_8030#"
+merge "outd_stage2_0/dw_60_8030#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#"
+merge "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#"
+merge "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#"
+merge "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_600#"
+merge "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_600#" "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#"
+merge "outd_stage1_0/sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3/m4_n3351_n3100#" "VP"
+merge "outd_stage3_0/outd_stage2_3/cmirror_out" "outd_stage3_0/w_43026_9096#" -3.46629e+06 331824 -40648 0 0 0 0 0 0 -1173872296 -114288 -91636660 -46700 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -901301576 -144070 1383737824 -120488 -1682564220 -55866 -94267990 -23820 0 0 0 0 0 0
+merge "outd_stage3_0/w_43026_9096#" "w_43046_9116#"
+merge "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" -68106 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -111489280 -20200 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage3_0/outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_3/m1_0_80#"
+merge "outd_stage2_0/outd_cmirror_64t_3/m1_0_80#" "m1_n120_1040#"
+merge "outd_stage2_0/w_266_8236#" "w_n14024_9116#" -3.5763e+06 921472 -41308 0 0 0 0 0 0 -1188969280 -129308 -109398172 -48020 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -934377408 -159534 1315418176 -136444 -1793451244 -62348 -53929750 -29360 0 0 0 0 0 0
+merge "w_n14024_9116#" "outd_stage2_0/cmirror_out"
+merge "outd_stage2_0/cmirror_out" "VM1_D"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9/c2_n3251_n3000#" "outd_stage1_0/m1_1860_8350#" 192.242 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 286000 -710 0 0 0 0 3446640 -2912 0 0
+merge "outd_stage1_0/m1_1860_8350#" "InputRef"
+merge "InputRef" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10/c2_n3251_n3000#" "m5_n22620_9330#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n29_109#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" 6686.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11041264 -1648 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n125_n200#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n29_n509#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n29_n509#" "m1_n19890_7120#"
+merge "outd_stage3_0/outd_stage2_1/cmirror_out" "outd_stage3_0/w_14526_9096#" -4.47763e+06 -532976 -42448 0 0 0 0 0 0 -1490292660 -130604 -157787620 -55252 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1189035548 -167694 570694008 -139930 -2138511280 -64440 -117183780 -28520 0 0 0 0 0 0
+merge "outd_stage3_0/w_14526_9096#" "w_14546_9116#"
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0/m3_n2150_n2100#" "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" -140653 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -16048904 -664 0 0 -5290096 -400 -147678016 -6488 -400000 0 -7793120 -7540 4828300 0 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1/m3_n2150_n2100#" "m3_n26280_10780#"
+merge "m3_n26280_10780#" "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#"
+merge "outd_stage2_0/outd_cmirror_64t_0/m1_0_80#" "I_Bias"
+merge "I_Bias" "outd_stage1_0/outd_cmirror_64t_0/m1_0_80#"
+merge "outd_stage1_0/outd_cmirror_64t_0/m1_0_80#" "m1_n16680_6460#"
+merge "m1_n16680_6460#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_29_n597#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_29_n597#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_n597#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_n597#" "m1_n19950_5570#"
+merge "m1_n19950_5570#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_29_21#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_29_21#" "m1_n19950_6110#"
+merge "m1_n19950_6110#" "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_21#"
+merge "sky130_fd_pr__nfet_01v8_DJG2KN_0/a_n129_21#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_15_222#" "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#"
+merge "sky130_fd_pr__nfet_01v8_LH2JGW_0/a_n81_n288#" "a_n19838_7032#"
+merge "outd_stage1_0/isource_out" "outd_stage1_0/w_276_8226#" -37719.5 -971740 -8612 0 0 0 0 0 0 0 0 -31845828 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -40263724 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage1_0/w_276_8226#" "w_n19204_9906#"
+merge "outd_stage3_0/w_276_9096#" "w_296_9116#" -4.16365e+06 679040 -41948 0 0 0 0 0 0 -1355404664 -132328 -181448748 -49300 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1134952548 -164350 891659264 -139844 -2072762848 -63922 -134625910 -29890 0 0 0 0 0 0
+merge "w_296_9116#" "outd_stage3_0/outd_stage2_0/cmirror_out"
+merge "outd_stage3_0/outd_stage2_0/cmirror_out" "VM14D"
+merge "outd_stage2_0/m1_370_11400#" "outd_stage3_0/outd_stage2_3/m1_250_8900#" -4567.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41884800 -114080 -1248000 -1500 -5085812 -6004 0 0 0 0
+merge "outd_stage3_0/outd_stage2_3/m1_250_8900#" "outd_stage3_0/m2_40400_10380#"
+merge "outd_stage3_0/m2_40400_10380#" "outd_stage3_0/outd_stage2_2/m1_250_8900#"
+merge "outd_stage3_0/outd_stage2_2/m1_250_8900#" "outd_stage3_0/m2_26150_10380#"
+merge "outd_stage3_0/m2_26150_10380#" "outd_stage3_0/outd_stage2_1/m1_250_8900#"
+merge "outd_stage3_0/outd_stage2_1/m1_250_8900#" "outd_stage3_0/m2_11870_10380#"
+merge "outd_stage3_0/m2_11870_10380#" "outd_stage3_0/outd_stage2_0/m1_250_8900#"
+merge "outd_stage3_0/outd_stage2_0/m1_250_8900#" "V_da2_N"
+merge "outd_stage2_0/m1_2350_11400#" "outd_stage3_0/outd_stage2_3/m1_1850_8370#" -17728.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52546400 -116160 -11179000 -1500 -22369852 -4284 0 0 0 0
+merge "outd_stage3_0/outd_stage2_3/m1_1850_8370#" "outd_stage3_0/m2_40400_9110#"
+merge "outd_stage3_0/m2_40400_9110#" "outd_stage3_0/outd_stage2_2/m1_1850_8370#"
+merge "outd_stage3_0/outd_stage2_2/m1_1850_8370#" "outd_stage3_0/outd_stage2_1/m1_1850_8370#"
+merge "outd_stage3_0/outd_stage2_1/m1_1850_8370#" "outd_stage3_0/outd_stage2_0/m1_1850_8370#"
+merge "outd_stage3_0/outd_stage2_0/m1_1850_8370#" "V_da2_P"
+merge "outd_stage3_0/outd_stage2_3/m1_370_11400#" "OutputN" -493.031 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -285600 -3340 0 0 0 0
+merge "outd_stage3_0/outd_stage2_3/m1_2350_11400#" "OutputP" -1216.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4353400 -3340 0 0 0 0
+merge "outd_stage1_0/m1_n1500_10180#" "outd_stage2_0/m1_1850_8370#" -3863.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2163600 -1800 -362550 -1420 -10456180 -5328 0 0 0 0
+merge "outd_stage2_0/m1_1850_8370#" "V_da1_P"
+merge "outd_stage1_0/m1_1830_10170#" "outd_stage2_0/m1_250_8900#" 1008.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 -1580 0 0 0 0 0 0 0 0
+merge "outd_stage2_0/m1_250_8900#" "V_da1_N"
diff --git a/mag/outd/outd.mag b/mag/outd/outd.mag
new file mode 100644
index 0000000..181b4a8
--- /dev/null
+++ b/mag/outd/outd.mag
@@ -0,0 +1,395 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -19838 7542 -19676 7608
+rect -19838 7032 -19676 7098
+<< poly >>
+rect -19838 7592 -19676 7608
+rect -19838 7558 -19822 7592
+rect -19788 7558 -19676 7592
+rect -19838 7542 -19676 7558
+rect -19838 7082 -19676 7098
+rect -19838 7048 -19726 7082
+rect -19692 7048 -19676 7082
+rect -19838 7032 -19676 7048
+<< polycont >>
+rect -19822 7558 -19788 7592
+rect -19726 7048 -19692 7082
+<< locali >>
+rect -19838 7558 -19822 7592
+rect -19788 7558 -19676 7592
+rect -19838 7048 -19726 7082
+rect -19692 7048 -19676 7082
+rect -19540 6960 -19470 7690
+rect -20100 6860 -19470 6960
+rect -19540 5510 -19470 6860
+<< viali >>
+rect -19822 7558 -19788 7592
+rect -19726 7048 -19692 7082
+<< metal1 >>
+rect -21110 13500 -21100 15200
+rect -14440 13500 -14430 15200
+rect -19850 7550 -19840 7710
+rect -19680 7630 -19670 7710
+rect -19680 7550 -19470 7630
+rect -19780 7520 -19734 7550
+rect -19890 7120 -19880 7280
+rect -19826 7120 -19816 7280
+rect -19698 7120 -19688 7280
+rect -19634 7120 -19624 7280
+rect -19780 7090 -19734 7120
+rect -19950 7082 -19460 7090
+rect -19950 7048 -19726 7082
+rect -19692 7048 -19460 7082
+rect -19950 6730 -19460 7048
+rect -19852 6538 -19842 6698
+rect -19788 6538 -19778 6698
+rect -16680 6460 -14280 6840
+rect -20010 6298 -20000 6458
+rect -19946 6298 -19936 6458
+rect -19694 6298 -19684 6458
+rect -19630 6298 -19620 6458
+rect -19950 6110 -19470 6270
+rect -20010 5920 -20000 6080
+rect -19946 5920 -19936 6080
+rect -19694 5920 -19684 6080
+rect -19630 5920 -19620 6080
+rect -19852 5680 -19842 5840
+rect -19788 5680 -19778 5840
+rect -19950 5570 -19470 5650
+rect -120 1040 40 6040
+<< via1 >>
+rect -21100 13500 -14440 15200
+rect -19840 7592 -19680 7710
+rect -19840 7558 -19822 7592
+rect -19822 7558 -19788 7592
+rect -19788 7558 -19680 7592
+rect -19840 7550 -19680 7558
+rect -19880 7120 -19826 7280
+rect -19688 7120 -19634 7280
+rect -19842 6538 -19788 6698
+rect -20000 6298 -19946 6458
+rect -19684 6298 -19630 6458
+rect -20000 5920 -19946 6080
+rect -19684 5920 -19630 6080
+rect -19842 5680 -19788 5840
+<< metal2 >>
+rect -21100 15200 -14440 15210
+rect -21100 13490 -14440 13500
+rect -300 13460 60 13470
+rect -1160 12780 -800 12790
+rect -15460 11640 -15100 11660
+rect -21080 11310 -20960 11420
+rect -15460 11280 -15440 11640
+rect -15120 11280 -15100 11640
+rect -21150 10590 -20890 10600
+rect -21150 10290 -20890 10300
+rect -21090 9740 -20940 10290
+rect -15460 9300 -15100 11280
+rect -14760 10580 -14400 12280
+rect -14760 10400 -14280 10580
+rect -1160 9300 -800 12420
+rect -300 10760 60 13100
+rect -300 10400 54680 10760
+rect -15460 9120 -14280 9300
+rect -1160 8940 54700 9300
+rect -20220 7920 -19680 7930
+rect -20220 7780 -19830 7920
+rect -19690 7780 -19680 7920
+rect -20220 7770 -19680 7780
+rect -19840 7710 -19680 7770
+rect -19840 7540 -19680 7550
+rect -19900 7280 -19630 7290
+rect -19900 7120 -19880 7280
+rect -19826 7120 -19688 7280
+rect -19634 7120 -19630 7280
+rect -19900 7110 -19630 7120
+rect -19900 6750 -19720 7110
+rect -19900 6698 -19730 6750
+rect -19900 6538 -19842 6698
+rect -19788 6538 -19730 6698
+rect -20100 6458 -19940 6470
+rect -20100 6298 -20000 6458
+rect -19946 6298 -19940 6458
+rect -20100 6080 -19940 6298
+rect -20100 5920 -20000 6080
+rect -19946 5920 -19940 6080
+rect -20100 5520 -19940 5920
+rect -19900 5840 -19730 6538
+rect -19900 5680 -19842 5840
+rect -19788 5680 -19730 5840
+rect -19900 5670 -19730 5680
+rect -19690 6458 -19530 6470
+rect -19690 6298 -19684 6458
+rect -19630 6298 -19530 6458
+rect -19690 6080 -19530 6298
+rect -19690 5920 -19684 6080
+rect -19630 5920 -19530 6080
+rect -19690 5840 -19530 5920
+rect -19690 5520 -19340 5840
+rect -20100 5360 -19340 5520
+rect -19570 5300 -19340 5360
+<< via2 >>
+rect -21100 13500 -14440 15200
+rect -300 13100 60 13460
+rect -1160 12420 -800 12780
+rect -15440 11280 -15120 11640
+rect -21150 10300 -20890 10590
+rect -19830 7780 -19690 7920
+<< metal3 >>
+rect -21110 15200 -14430 15205
+rect -21110 13500 -21100 15200
+rect -14440 13500 -14430 15200
+rect -13930 14260 -13920 14960
+rect -2520 14260 -2510 14960
+rect 390 14260 400 14960
+rect 11800 14260 11810 14960
+rect 14650 14260 14660 14960
+rect 26060 14260 26070 14960
+rect 28890 14260 28900 14960
+rect 40300 14260 40310 14960
+rect 43150 14260 43160 14960
+rect 54560 14260 54570 14960
+rect -21110 13495 -14430 13500
+rect -310 13460 70 13465
+rect -310 13100 -300 13460
+rect 60 13100 70 13460
+rect -310 13095 70 13100
+rect -1170 12780 -790 12785
+rect -1170 12420 -1160 12780
+rect -800 12420 -790 12780
+rect -1170 12415 -790 12420
+rect -15450 11640 -15110 11645
+rect -15450 11280 -15440 11640
+rect -15120 11280 -15110 11640
+rect -15450 11275 -15110 11280
+rect -26280 10780 -25380 11120
+rect -21610 10780 -19680 10910
+rect -21160 10590 -20880 10595
+rect -21160 10300 -21150 10590
+rect -20890 10300 -20880 10590
+rect -21160 10295 -20880 10300
+rect -19840 7920 -19680 10780
+rect -12280 8500 -12000 8690
+rect 2030 8460 2280 8660
+rect -19840 7780 -19830 7920
+rect -19690 7780 -19680 7920
+rect -19840 7770 -19680 7780
+rect -18488 1660 -17582 2134
+rect -19490 440 -19480 1660
+rect -16640 440 -16630 1660
+rect -14310 20 -14300 960
+rect 56940 20 56950 960
+<< via3 >>
+rect -21100 13500 -14440 15200
+rect -13920 14260 -2520 14960
+rect 400 14260 11800 14960
+rect 14660 14260 26060 14960
+rect 28900 14260 40300 14960
+rect 43160 14260 54560 14960
+rect -300 13100 60 13460
+rect -1160 12420 -800 12780
+rect -15440 11280 -15120 11640
+rect -21150 10300 -20890 10590
+rect -19480 440 -16640 1660
+rect -14300 20 56940 960
+<< metal4 >>
+rect -21101 15200 -14439 15201
+rect -21101 13500 -21100 15200
+rect -14440 13500 -14439 15200
+rect -13921 14960 -2519 14961
+rect -13921 14260 -13920 14960
+rect -2520 14260 -2519 14960
+rect -13921 14259 -2519 14260
+rect 399 14960 11801 14961
+rect 399 14260 400 14960
+rect 11800 14260 11801 14960
+rect 399 14259 11801 14260
+rect 14659 14960 26061 14961
+rect 14659 14260 14660 14960
+rect 26060 14260 26061 14960
+rect 14659 14259 26061 14260
+rect 28899 14960 40301 14961
+rect 28899 14260 28900 14960
+rect 40300 14260 40301 14960
+rect 28899 14259 40301 14260
+rect 43159 14960 54561 14961
+rect 43159 14260 43160 14960
+rect 54560 14260 54561 14960
+rect 43159 14259 54561 14260
+rect -21101 13499 -14439 13500
+rect -301 13460 61 13461
+rect -2360 13100 -300 13460
+rect 60 13100 61 13460
+rect -2360 12900 -2340 13100
+rect -301 13099 61 13100
+rect -300 13080 60 13099
+rect 54740 12900 55850 13460
+rect -1161 12780 -799 12781
+rect -2360 12420 -1160 12780
+rect -800 12420 -799 12780
+rect -2360 12220 -2320 12420
+rect -1161 12419 -799 12420
+rect -1160 12400 -800 12419
+rect 54740 12220 55850 12780
+rect -15441 11640 -15119 11641
+rect -15441 11280 -15440 11640
+rect -15120 11280 -15119 11640
+rect -15441 11279 -15119 11280
+rect -30140 10200 -21350 10760
+rect -21151 10590 -20889 10591
+rect -21151 10300 -21150 10590
+rect -20890 10300 -20889 10590
+rect -21151 10299 -20889 10300
+rect -30140 10100 -20900 10200
+rect -19481 1660 -16639 1661
+rect -19481 440 -19480 1660
+rect -16640 440 -16639 1660
+rect -19481 439 -16639 440
+rect -14301 960 56941 961
+rect -14301 20 -14300 960
+rect 56940 20 56941 960
+rect -14301 19 56941 20
+<< via4 >>
+rect -21100 13500 -14440 15200
+rect -13920 14260 -2520 14960
+rect 400 14260 11800 14960
+rect 14660 14260 26060 14960
+rect 28900 14260 40300 14960
+rect 43160 14260 54560 14960
+rect -21150 10300 -20890 10590
+rect -19480 440 -16640 1660
+rect -14300 20 56940 960
+<< metal5 >>
+rect -21124 15220 -14416 15224
+rect -30160 15200 57000 15220
+rect -30160 13500 -21100 15200
+rect -14440 14960 57000 15200
+rect -14440 14260 -13920 14960
+rect -2520 14260 400 14960
+rect 11800 14260 14660 14960
+rect 26060 14260 28900 14960
+rect 40300 14260 43160 14960
+rect 54560 14260 57000 14960
+rect -14440 13500 57000 14260
+rect -30160 12500 57000 13500
+rect -21180 10590 -20850 10620
+rect -21180 10300 -21150 10590
+rect -20890 10300 -20850 10590
+rect -21180 9980 -20850 10300
+rect -13920 9980 -12900 12500
+rect -6820 10000 -5800 12500
+rect 580 10020 1600 12500
+rect 8100 9940 9120 12500
+rect 15640 9920 16660 12500
+rect 23420 9980 24440 12500
+rect 31200 9980 32220 12500
+rect 40060 10040 41080 12500
+rect 49480 10000 50500 12500
+rect -22620 9330 -21510 9720
+rect -28540 2660 -15540 3640
+rect -14000 2660 -12980 4920
+rect -6580 2660 -5560 4920
+rect 780 2660 1800 5060
+rect 8520 2660 9540 5160
+rect 16060 2660 17080 5180
+rect 24000 2660 25020 5060
+rect 31660 2660 32680 5300
+rect 40040 2660 41060 4880
+rect 48700 2660 49720 4840
+rect -29980 1660 57040 2660
+rect -29980 440 -19480 1660
+rect -16640 960 57040 1660
+rect -16640 440 -14300 960
+rect -29980 20 -14300 440
+rect 56940 20 57040 960
+rect -29980 -60 57040 20
+use outd_stage1  outd_stage1_0
+timestamp 1647868710
+transform 1 0 -19480 0 1 1680
+box -1660 -880 5040 12406
+use outd_stage2  outd_stage2_0
+timestamp 1647868710
+transform 1 0 -14290 0 1 880
+box -30 -880 14232 14120
+use outd_stage3  outd_stage3_0
+timestamp 1647868710
+transform 1 0 20 0 1 20
+box -20 -20 56992 14980
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ  sky130_fd_pr__cap_mim_m3_1_WXTTNJ_0
+timestamp 1647868710
+transform 0 -1 -23680 1 0 12740
+box -2150 -2100 2149 2100
+use sky130_fd_pr__cap_mim_m3_1_WXTTNJ  sky130_fd_pr__cap_mim_m3_1_WXTTNJ_1
+timestamp 1647868710
+transform 0 -1 -28120 1 0 12750
+box -2150 -2100 2149 2100
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0
+timestamp 1647868710
+transform 0 -1 -11199 1 0 6791
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1647868710
+transform 0 -1 -3999 1 0 6791
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_2
+timestamp 1647868710
+transform 0 -1 3421 1 0 6771
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_3
+timestamp 1647868710
+transform 0 -1 11001 1 0 6751
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_4
+timestamp 1647868710
+transform 0 -1 18501 1 0 6751
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_5
+timestamp 1647868710
+transform 0 -1 26261 1 0 6771
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_6
+timestamp 1647868710
+transform 0 -1 33781 1 0 6771
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_7
+timestamp 1647868710
+transform 0 -1 42561 1 0 6831
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_8
+timestamp 1647868710
+transform 0 -1 50901 1 0 6811
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_9
+timestamp 1647868710
+transform 0 1 -18659 -1 0 6793
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#2  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_10
+timestamp 1647868710
+transform 0 1 -25439 -1 0 6813
+box -3351 -3101 3373 3101
+use sky130_fd_pr__nfet_01v8_DJG2KN  sky130_fd_pr__nfet_01v8_DJG2KN_0
+timestamp 1647868710
+transform 1 0 -19815 0 1 6189
+box -325 -719 325 719
+use sky130_fd_pr__nfet_01v8_LH2JGW  sky130_fd_pr__nfet_01v8_LH2JGW_0
+timestamp 1647868710
+transform 1 0 -19757 0 1 7320
+box -263 -410 263 410
+<< labels >>
+rlabel metal2 -20210 7780 -20050 7920 1 I_Bias
+rlabel metal2 -21080 11310 -20960 11420 1 InputSignal
+rlabel metal2 -21080 9750 -20950 9860 1 InputRef
+rlabel metal2 -15390 10580 -15190 10730 1 V_da1_P
+rlabel metal2 -14690 10610 -14490 10760 1 V_da1_N
+rlabel metal5 -29610 520 -28750 1280 1 VN
+rlabel metal5 -29780 13450 -28910 14580 1 VP
+rlabel metal2 -1090 11190 -910 11400 1 V_da2_P
+rlabel metal2 -170 11220 10 11430 1 V_da2_N
+rlabel metal4 55470 12270 55650 12440 1 OutputP
+rlabel metal4 55470 12940 55650 13140 3 OutputN
+rlabel metal3 -12280 8500 -12000 8690 1 VM1_D
+rlabel metal3 2030 8460 2280 8660 1 VM14D
+<< end >>
diff --git a/mag/outd/outd.spice b/mag/outd/outd.spice
new file mode 100644
index 0000000..8012a78
--- /dev/null
+++ b/mag/outd/outd.spice
@@ -0,0 +1,6025 @@
+* SPICE3 file created from outd.ext - technology: sky130A
+
+X0 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X1 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X2 VN I_Bias sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X3 VN I_Bias sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X4 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X5 VP V_da2_N VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X6 VP V_da2_P VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X7 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X8 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X9 VP V_da2_P VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X10 VP V_da2_N VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X11 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X12 VP V_da2_P VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X13 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X14 VP V_da2_N VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X15 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X16 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X17 VP V_da2_P VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X18 VP V_da2_N VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X19 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X20 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X21 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X38 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X40 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X51 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X53 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X55 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X59 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X61 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X62 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X63 outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X64 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X65 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X66 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X67 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X72 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X77 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X83 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X90 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X92 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X93 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X94 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X95 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X98 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X99 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X100 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X101 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X102 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X103 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X104 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X105 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X106 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X107 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X108 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X109 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X110 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X111 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X112 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X113 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X114 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X115 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X116 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X117 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X118 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X119 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X120 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X121 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X122 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X123 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X124 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X125 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X126 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X127 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X128 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X129 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X130 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X131 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X132 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X133 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X134 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X135 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X136 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X137 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X138 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X139 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X140 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X141 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X142 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X143 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X144 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X145 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X146 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X147 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X148 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X149 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X150 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X151 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X152 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X153 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X154 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X155 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X156 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X157 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X158 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X159 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X160 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X161 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X162 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X163 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X164 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X165 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X166 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X167 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X168 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X169 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X170 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X171 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X172 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X173 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X174 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X175 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X176 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X177 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X178 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X179 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X180 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X181 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X182 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X183 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X184 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X185 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X186 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X187 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X188 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X189 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X190 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X191 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X192 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X193 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X194 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X195 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X196 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X197 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X198 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X199 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X200 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X201 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X202 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X203 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X204 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X205 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X206 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X207 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X208 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X209 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X210 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X211 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X212 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X213 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X214 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X215 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X216 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X217 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X218 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X219 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X220 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X221 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X222 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X223 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X224 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X225 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X226 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X227 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X228 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X229 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X230 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X231 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X232 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X233 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X234 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X235 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X236 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X237 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X238 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X239 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X240 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X241 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X242 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X243 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X244 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X245 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X246 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X247 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X248 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X249 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X250 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X251 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X252 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X253 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X254 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X255 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X256 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X257 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X258 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X259 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X260 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X261 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X262 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X263 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X264 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X265 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X266 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X267 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X268 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X269 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X270 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X271 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X272 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X273 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X274 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X275 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X276 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X277 outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X278 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X279 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X280 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X281 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X282 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X283 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X284 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X285 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X286 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X287 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X288 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X289 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X290 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X291 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X292 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X293 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X294 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X295 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X296 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X297 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X298 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X299 outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X300 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X301 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X302 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X303 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X304 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X305 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X306 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X307 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X308 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X309 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X310 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X311 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X312 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X313 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X314 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X315 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X316 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X317 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X318 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X319 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X320 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X321 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X322 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X323 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X324 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X325 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X326 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X327 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X328 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X329 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X330 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X331 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X332 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X333 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X334 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X335 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X336 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X337 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X338 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X339 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X340 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X341 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X342 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X343 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X344 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X345 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X346 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X347 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X348 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X349 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X350 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X351 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X352 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X353 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X354 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X355 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X356 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X357 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X358 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X359 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X360 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X361 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X362 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X363 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X364 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X365 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X366 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X367 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X368 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X369 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X370 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X371 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X372 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X373 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X374 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X375 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X376 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X377 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X378 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X379 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X380 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X381 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X382 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X383 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X384 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X385 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X386 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X387 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X388 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X389 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X390 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X391 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X392 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X393 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X394 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X395 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X396 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X397 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X398 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X399 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X400 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X401 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X402 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X403 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X404 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X405 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X406 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X407 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X408 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X409 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X410 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X411 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X412 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X413 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X414 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X415 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X416 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X417 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X418 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X419 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X420 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X421 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X422 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X423 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X424 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X425 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X426 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X427 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X428 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X429 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X430 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X431 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X432 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X433 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X434 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X435 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X436 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X437 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X438 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X439 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X440 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X441 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X442 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X443 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X444 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X445 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X446 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X447 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X448 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X449 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X450 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X451 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X452 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X453 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X454 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X455 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X456 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X457 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X458 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X459 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X460 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X461 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X462 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X463 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X464 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X465 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X466 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X467 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X468 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X469 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X470 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X471 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X472 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X473 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X474 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X475 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X476 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X477 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X478 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X479 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X480 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X481 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X482 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X483 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X484 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X485 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X486 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X487 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X488 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X489 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X490 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X491 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X492 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X493 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X494 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X495 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X496 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X497 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X498 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X499 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X500 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X501 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X502 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X503 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X504 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X505 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X506 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X507 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X508 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X509 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X510 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X511 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X512 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X513 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X514 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X515 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X516 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X517 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X518 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X519 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X520 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X521 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X522 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X523 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X524 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X525 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X526 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X527 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X528 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X529 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X530 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X531 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X532 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X533 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X534 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X535 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X536 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X537 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X538 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X539 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X540 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X541 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X542 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X543 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X544 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X545 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X546 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X547 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X548 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X549 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X550 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X551 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X552 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X553 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X554 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X555 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X556 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X557 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X558 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X559 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X560 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X561 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X562 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X563 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X564 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X565 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X566 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X567 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X568 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X569 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X570 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X571 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X572 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X573 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X574 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X575 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X576 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X577 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X578 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X579 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X580 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X581 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X582 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X583 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X584 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X585 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X586 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X587 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X588 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X589 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X590 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X591 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X592 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X593 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X594 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X595 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X596 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X597 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X598 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X599 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X600 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X601 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X602 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X603 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X604 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X605 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X606 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X607 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X608 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X609 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X610 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X611 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X612 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X613 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X614 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X615 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X616 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X617 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X618 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X619 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X620 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X621 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X622 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X623 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X624 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X625 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X626 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X627 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X628 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X629 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X630 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X631 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X632 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X633 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X634 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X635 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X636 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X637 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X638 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X639 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X640 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X641 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X642 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X643 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X644 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X645 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X646 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X647 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X648 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X649 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X650 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X651 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X652 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X653 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X654 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X655 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X656 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X657 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X658 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X659 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X660 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X661 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X662 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X663 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X664 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X665 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X666 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X667 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X668 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X669 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X670 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X671 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X672 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X673 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X674 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X675 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X676 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X677 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X678 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X679 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X680 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X681 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X682 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X683 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X684 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X685 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X686 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X687 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X688 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X689 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X690 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X691 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X692 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X693 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X694 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X695 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X696 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X697 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X698 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X699 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X700 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X701 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X702 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X703 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X704 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X705 outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X706 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X707 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X708 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X709 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X710 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X711 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X712 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X713 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X714 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X715 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X716 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X717 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X718 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X719 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X720 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X721 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X722 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X723 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X724 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X725 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X726 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X727 outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da1_P V_da2_P outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X728 V_da2_P V_da1_P outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X729 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X730 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X731 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X732 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X733 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X734 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X735 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X736 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X737 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X738 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X739 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X740 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X741 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X742 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X743 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X744 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X745 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X746 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X747 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X748 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X749 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X750 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X751 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X752 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X753 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X754 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X755 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X756 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X757 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X758 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X759 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X760 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X761 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X762 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X763 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X764 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X765 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X766 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X767 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X768 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X769 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X770 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X771 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X772 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X773 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X774 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X775 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X776 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X777 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X778 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X779 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X780 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X781 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X782 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X783 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X784 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X785 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X786 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X787 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X788 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X789 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X790 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X791 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X792 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X793 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X794 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X795 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X796 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X797 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X798 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X799 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X800 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X801 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X802 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X803 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X804 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X805 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X806 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X807 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X808 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X809 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X810 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X811 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X812 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X813 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X814 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X815 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X816 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X817 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X818 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X819 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X820 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X821 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X822 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X823 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X824 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X825 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X826 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X827 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X828 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X829 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X830 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X831 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X832 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X833 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X834 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X835 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X836 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X837 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X838 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X839 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X840 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X841 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X842 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X843 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X844 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X845 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X846 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X847 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X848 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X849 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X850 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X851 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X852 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X853 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X854 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X855 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X856 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X857 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X858 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X859 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X860 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X861 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X862 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X863 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X864 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X865 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X866 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X867 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X868 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X869 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X870 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X871 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X872 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X873 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X874 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X875 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X876 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X877 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X878 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X879 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X880 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X881 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X882 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X883 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X884 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X885 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X886 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X887 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X888 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X889 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X890 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X891 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X892 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X893 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X894 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X895 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X896 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X897 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X898 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X899 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X900 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X901 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X902 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X903 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X904 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X905 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X906 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X907 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X908 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X909 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X910 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X911 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X912 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X913 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X914 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X915 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X916 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X917 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X918 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X919 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X920 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X921 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X922 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X923 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X924 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X925 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X926 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X927 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X928 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X929 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X930 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X931 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X932 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X933 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X934 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X935 VN V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X936 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X937 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X938 VN V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X939 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X940 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X941 outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da1_N V_da2_N outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X942 V_da2_N V_da1_N outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X943 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X944 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X945 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X946 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X947 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X948 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X949 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X950 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X951 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X952 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X953 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X954 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X955 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X956 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X957 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X958 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X959 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X960 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X961 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X962 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X963 VN V_da1_P V_da2_P outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X964 V_da2_P V_da1_P VN outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X965 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X966 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X967 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X968 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X969 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X970 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X971 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X972 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X973 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X974 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X975 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X976 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X977 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X978 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X979 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X980 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X981 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X982 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X983 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X984 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X985 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X986 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X987 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X988 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X989 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X990 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X991 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X992 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X993 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X994 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X995 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X996 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X997 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X998 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X999 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1000 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1001 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1002 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1003 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1004 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1005 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1006 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1007 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1008 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1009 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1010 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1011 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1012 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1013 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1014 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1015 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1016 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1017 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1018 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1019 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1020 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1021 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1022 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1023 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1024 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1025 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1026 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1027 VM1_D I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1028 outd_stage2_0/m2_7240_7300# I_Bias VM1_D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1029 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1030 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1031 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1032 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1033 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1034 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1035 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1036 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1037 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1038 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1039 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1040 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1041 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1042 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1043 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1044 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1045 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1046 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1047 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1048 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1049 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1050 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1051 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1052 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1053 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1054 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1055 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1056 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1057 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1058 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1059 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1060 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1061 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1062 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1063 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1064 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1065 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1066 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1067 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1068 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1069 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1070 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1071 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1072 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1073 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1074 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1075 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1076 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1077 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1078 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1079 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1080 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1081 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1082 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1083 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1084 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1085 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1086 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1087 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1088 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1089 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1090 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1091 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1092 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1093 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1094 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1095 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1096 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1097 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1098 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1099 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1100 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1101 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1102 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1103 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1104 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1105 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1106 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1107 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1108 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1109 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1110 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1111 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1112 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1113 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1114 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1115 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1116 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1117 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1118 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1119 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1120 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1121 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1122 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1123 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1124 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1125 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1126 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1127 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1128 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1129 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1130 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1131 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1132 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1133 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1134 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1135 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1136 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1137 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1138 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1139 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1140 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1141 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1142 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1143 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1144 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1145 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1146 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1147 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1148 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1149 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1150 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1151 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1152 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1153 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1154 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1155 VN I_Bias outd_stage2_0/m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1156 outd_stage2_0/m2_7240_7300# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1157 InputRef VN sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X1158 VN I_Bias m1_n19890_7120# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1159 m1_n19890_7120# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1160 VN I_Bias m1_n19890_7120# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1161 m1_n19890_7120# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1162 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1163 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1164 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1165 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1166 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1167 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1168 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1169 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1170 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1171 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1172 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1173 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1174 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1175 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1176 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1177 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1178 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1179 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1180 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1181 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1182 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1183 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1184 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1185 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1186 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1187 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1188 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1189 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1190 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1191 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1192 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1193 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1194 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1195 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1196 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1197 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1198 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1199 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1200 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1201 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1202 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1203 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1204 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1205 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1206 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1207 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1208 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1209 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1210 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1211 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1212 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1213 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1214 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1215 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1216 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1217 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1218 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1219 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1220 outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1221 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1222 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1223 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1224 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1225 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1226 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1227 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1228 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1229 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1230 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1231 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1232 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1233 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1234 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1235 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1236 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1237 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1238 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1239 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1240 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1241 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1242 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1243 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1244 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1245 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1246 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1247 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1248 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1249 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1250 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1251 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1252 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1253 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1254 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1255 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1256 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1257 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1258 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1259 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1260 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1261 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1262 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1263 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1264 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1265 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1266 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1267 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1268 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1269 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1270 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1271 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1272 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1273 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1274 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1275 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1276 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1277 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1278 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1279 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1280 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1281 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1282 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1283 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1284 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1285 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1286 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1287 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1288 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1289 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1290 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1291 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1292 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1293 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1294 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1295 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1296 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1297 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1298 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1299 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1300 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1301 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1302 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1303 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1304 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1305 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1306 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1307 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1308 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1309 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1310 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1311 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1312 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1313 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1314 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1315 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1316 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1317 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1318 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1319 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1320 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1321 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1322 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1323 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1324 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1325 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1326 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1327 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1328 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1329 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1330 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1331 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1332 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1333 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1334 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1335 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1336 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1337 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1338 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1339 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1340 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1341 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1342 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1343 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1344 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1345 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1346 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1347 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1348 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1349 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1350 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1351 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1352 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1353 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1354 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1355 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1356 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1357 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1358 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1359 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1360 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1361 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1362 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1363 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1364 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1365 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1366 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1367 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1368 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1369 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1370 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1371 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1372 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1373 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1374 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1375 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1376 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1377 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1378 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1379 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1380 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1381 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1382 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1383 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1384 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1385 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1386 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1387 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1388 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1389 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1390 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1391 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1392 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1393 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1394 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1395 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1396 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1397 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1398 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1399 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1400 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1401 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1402 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1403 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1404 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1405 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1406 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1407 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1408 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1409 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1410 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1411 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1412 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1413 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1414 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1415 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1416 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1417 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1418 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1419 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1420 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1421 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1422 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1423 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1424 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1425 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1426 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1427 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1428 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1429 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1430 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1431 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1432 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1433 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1434 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1435 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1436 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1437 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1438 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1439 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1440 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1441 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1442 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1443 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1444 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1445 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1446 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1447 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1448 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1449 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1450 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1451 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1452 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1453 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1454 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1455 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1456 outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1457 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1458 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1459 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1460 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1461 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1462 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1463 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1464 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1465 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1466 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1467 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1468 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1469 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1470 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1471 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1472 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1473 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1474 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1475 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1476 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1477 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1478 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1479 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1480 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1481 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1482 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1483 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1484 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1485 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1486 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1487 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1488 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1489 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1490 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1491 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1492 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1493 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1494 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1495 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1496 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1497 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1498 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1499 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1500 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1501 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1502 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1503 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1504 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1505 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1506 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1507 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1508 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1509 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1510 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1511 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1512 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1513 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1514 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1515 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1516 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1517 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1518 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1519 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1520 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1521 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1522 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1523 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1524 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1525 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1526 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1527 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1528 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1529 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1530 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1531 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1532 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1533 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1534 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1535 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1536 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1537 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1538 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1539 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1540 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1541 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1542 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1543 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1544 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1545 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1546 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1547 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1548 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1549 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1550 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1551 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1552 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1553 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1554 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1555 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1556 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1557 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1558 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1559 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1560 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1561 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1562 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1563 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1564 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1565 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1566 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1567 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1568 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1569 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1570 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1571 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1572 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1573 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1574 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1575 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1576 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1577 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1578 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1579 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1580 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1581 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1582 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1583 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1584 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1585 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1586 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1587 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1588 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1589 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1590 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1591 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1592 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1593 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1594 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1595 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1596 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1597 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1598 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1599 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1600 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1601 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1602 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1603 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1604 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1605 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1606 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1607 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1608 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1609 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1610 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1611 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1612 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1613 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1614 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1615 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1616 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1617 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1618 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1619 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1620 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1621 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1622 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1623 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1624 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1625 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1626 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1627 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1628 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1629 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1630 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1631 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1632 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1633 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1634 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1635 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1636 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1637 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1638 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1639 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1640 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1641 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1642 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1643 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1644 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1645 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1646 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1647 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1648 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1649 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1650 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1651 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1652 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1653 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1654 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1655 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1656 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1657 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1658 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1659 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1660 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1661 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1662 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1663 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1664 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1665 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1666 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1667 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1668 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1669 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1670 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1671 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1672 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1673 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1674 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1675 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1676 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1677 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1678 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1679 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1680 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1681 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1682 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1683 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1684 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1685 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1686 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1687 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1688 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1689 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1690 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1691 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1692 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1693 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1694 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1695 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1696 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1697 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1698 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1699 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1700 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1701 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1702 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1703 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1704 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1705 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1706 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1707 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1708 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1709 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1710 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1711 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1712 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1713 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1714 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1715 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1716 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1717 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1718 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1719 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1720 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1721 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1722 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1723 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1724 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1725 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1726 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1727 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1728 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1729 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1730 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1731 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1732 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1733 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1734 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1735 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1736 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1737 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1738 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1739 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1740 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1741 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1742 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1743 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1744 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1745 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1746 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1747 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1748 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1749 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1750 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1751 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1752 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1753 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1754 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1755 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1756 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1757 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1758 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1759 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1760 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1761 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1762 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1763 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1764 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1765 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1766 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1767 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1768 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1769 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1770 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1771 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1772 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1773 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1774 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1775 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1776 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1777 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1778 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1779 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1780 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1781 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1782 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1783 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1784 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1785 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1786 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1787 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1788 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1789 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1790 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1791 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1792 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1793 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1794 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1795 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1796 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1797 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1798 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1799 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1800 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1801 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1802 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1803 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1804 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1805 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1806 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1807 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1808 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1809 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1810 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1811 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1812 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1813 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1814 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1815 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1816 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1817 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1818 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1819 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1820 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1821 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1822 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1823 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1824 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1825 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1826 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1827 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1828 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1829 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1830 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1831 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1832 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1833 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1834 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1835 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1836 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1837 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1838 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1839 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1840 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1841 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1842 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1843 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1844 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1845 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1846 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1847 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1848 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1849 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1850 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1851 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1852 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1853 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1854 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1855 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1856 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1857 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1858 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1859 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1860 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1861 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1862 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1863 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1864 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1865 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1866 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1867 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1868 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1869 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1870 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1871 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1872 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1873 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1874 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1875 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1876 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1877 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1878 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1879 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1880 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1881 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1882 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1883 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1884 outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1885 OutputP V_da2_P outd_stage3_0/outd_stage2_0/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1886 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1887 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1888 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1889 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1890 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1891 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1892 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1893 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1894 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1895 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1896 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1897 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1898 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1899 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1900 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1901 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1902 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1903 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1904 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1905 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1906 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1907 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1908 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1909 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1910 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1911 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1912 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1913 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1914 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1915 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1916 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1917 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1918 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1919 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1920 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1921 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1922 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1923 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1924 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1925 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1926 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1927 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1928 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1929 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1930 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1931 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1932 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1933 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1934 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1935 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1936 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1937 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1938 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1939 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1940 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1941 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1942 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1943 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1944 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1945 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1946 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1947 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1948 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1949 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1950 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1951 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1952 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1953 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1954 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1955 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1956 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1957 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1958 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1959 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1960 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1961 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1962 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1963 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1964 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1965 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1966 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1967 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1968 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1969 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1970 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1971 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1972 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1973 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1974 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1975 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1976 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1977 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1978 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1979 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1980 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1981 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1982 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1983 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1984 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1985 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1986 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1987 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1988 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1989 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1990 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1991 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1992 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1993 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1994 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1995 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1996 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1997 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1998 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1999 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2000 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2001 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2002 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2003 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2004 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2005 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2006 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2007 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2008 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2009 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2010 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2011 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2012 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2013 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2014 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2015 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2016 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2017 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2018 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2019 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2020 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2021 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2022 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2023 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2024 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2025 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2026 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2027 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2028 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2029 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2030 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2031 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2032 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2033 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2034 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2035 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2036 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2037 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2038 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2039 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2040 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2041 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2042 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2043 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2044 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2045 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2046 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2047 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2048 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2049 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2050 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2051 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2052 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2053 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2054 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2055 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2056 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2057 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2058 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2059 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2060 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2061 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2062 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2063 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2064 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2065 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2066 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2067 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2068 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2069 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2070 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2071 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2072 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2073 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2074 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2075 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2076 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2077 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2078 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2079 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2080 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2081 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2082 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2083 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2084 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2085 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2086 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2087 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2088 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2089 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2090 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2091 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2092 VN V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2093 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2094 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2095 VN V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2096 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2097 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2098 outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2099 OutputN V_da2_N outd_stage3_0/outd_stage2_0/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2100 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2101 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2102 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2103 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2104 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2105 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2106 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2107 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2108 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2109 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2110 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2111 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2112 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2113 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2114 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2115 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2116 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2117 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2118 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2119 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2120 VN V_da2_P OutputP outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2121 OutputP V_da2_P VN outd_stage3_0/outd_stage2_0/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2122 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2123 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2124 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2125 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2126 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2127 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2128 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2129 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2130 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2131 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2132 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2133 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2134 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2135 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2136 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2137 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2138 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2139 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2140 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2141 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2142 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2143 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2144 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2145 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2146 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2147 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2148 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2149 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2150 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2151 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2152 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2153 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2154 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2155 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2156 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2157 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2158 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2159 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2160 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2161 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2162 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2163 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2164 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2165 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2166 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2167 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2168 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2169 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2170 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2171 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2172 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2173 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2174 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2175 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2176 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2177 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2178 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2179 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2180 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2181 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2182 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2183 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2184 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2185 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2186 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2187 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2188 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2189 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2190 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2191 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2192 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2193 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2194 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2195 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2196 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2197 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2198 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2199 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2200 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2201 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2202 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2203 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2204 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2205 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2206 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2207 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2208 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2209 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2210 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2211 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2212 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2213 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2214 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2215 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2216 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2217 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2218 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2219 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2220 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2221 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2222 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2223 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2224 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2225 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2226 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2227 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2228 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2229 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2230 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2231 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2232 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2233 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2234 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2235 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2236 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2237 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2238 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2239 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2240 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2241 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2242 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2243 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2244 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2245 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2246 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2247 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2248 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2249 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2250 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2251 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2252 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2253 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2254 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2255 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2256 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2257 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2258 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2259 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2260 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2261 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2262 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2263 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2264 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2265 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2266 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2267 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2268 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2269 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2270 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2271 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2272 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2273 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2274 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2275 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2276 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2277 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2278 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2279 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2280 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2281 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2282 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2283 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2284 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2285 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2286 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2287 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2288 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2289 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2290 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2291 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2292 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2293 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2294 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2295 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2296 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2297 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2298 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2299 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2300 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2301 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2302 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2303 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2304 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2305 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2306 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2307 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2308 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2309 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2310 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2311 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2312 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2313 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2314 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2315 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2316 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2317 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2318 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2319 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2320 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2321 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2322 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2323 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2324 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2325 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2326 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2327 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2328 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2329 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2330 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2331 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2332 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2333 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2334 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2335 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2336 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2337 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2338 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2339 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2340 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2341 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2342 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2343 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2344 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2345 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2346 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2347 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2348 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2349 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2350 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2351 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2352 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2353 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2354 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2355 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2356 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2357 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2358 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2359 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2360 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2361 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2362 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2363 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2364 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2365 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2366 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2367 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2368 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2369 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2370 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2371 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2372 outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2373 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2374 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2375 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2376 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2377 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2378 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2379 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2380 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2381 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2382 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2383 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2384 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2385 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2386 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2387 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2388 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2389 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2390 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2391 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2392 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2393 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2394 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2395 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2396 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2397 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2398 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2399 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2400 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2401 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2402 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2403 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2404 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2405 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2406 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2407 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2408 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2409 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2410 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2411 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2412 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2413 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2414 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2415 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2416 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2417 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2418 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2419 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2420 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2421 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2422 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2423 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2424 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2425 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2426 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2427 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2428 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2429 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2430 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2431 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2432 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2433 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2434 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2435 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2436 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2437 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2438 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2439 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2440 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2441 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2442 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2443 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2444 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2445 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2446 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2447 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2448 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2449 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2450 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2451 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2452 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2453 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2454 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2455 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2456 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2457 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2458 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2459 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2460 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2461 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2462 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2463 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2464 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2465 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2466 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2467 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2468 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2469 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2470 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2471 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2472 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2473 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2474 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2475 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2476 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2477 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2478 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2479 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2480 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2481 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2482 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2483 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2484 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2485 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2486 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2487 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2488 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2489 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2490 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2491 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2492 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2493 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2494 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2495 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2496 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2497 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2498 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2499 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2500 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2501 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2502 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2503 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2504 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2505 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2506 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2507 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2508 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2509 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2510 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2511 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2512 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2513 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2514 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2515 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2516 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2517 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2518 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2519 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2520 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2521 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2522 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2523 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2524 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2525 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2526 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2527 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2528 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2529 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2530 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2531 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2532 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2533 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2534 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2535 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2536 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2537 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2538 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2539 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2540 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2541 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2542 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2543 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2544 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2545 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2546 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2547 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2548 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2549 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2550 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2551 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2552 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2553 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2554 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2555 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2556 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2557 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2558 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2559 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2560 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2561 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2562 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2563 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2564 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2565 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2566 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2567 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2568 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2569 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2570 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2571 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2572 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2573 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2574 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2575 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2576 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2577 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2578 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2579 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2580 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2581 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2582 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2583 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2584 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2585 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2586 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2587 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2588 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2589 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2590 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2591 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2592 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2593 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2594 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2595 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2596 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2597 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2598 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2599 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2600 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2601 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2602 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2603 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2604 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2605 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2606 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2607 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2608 outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2609 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2610 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2611 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2612 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2613 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2614 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2615 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2616 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2617 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2618 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2619 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2620 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2621 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2622 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2623 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2624 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2625 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2626 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2627 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2628 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2629 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2630 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2631 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2632 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2633 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2634 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2635 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2636 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2637 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2638 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2639 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2640 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2641 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2642 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2643 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2644 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2645 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2646 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2647 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2648 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2649 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2650 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2651 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2652 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2653 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2654 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2655 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2656 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2657 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2658 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2659 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2660 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2661 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2662 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2663 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2664 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2665 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2666 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2667 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2668 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2669 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2670 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2671 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2672 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2673 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2674 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2675 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2676 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2677 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2678 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2679 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2680 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2681 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2682 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2683 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2684 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2685 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2686 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2687 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2688 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2689 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2690 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2691 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2692 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2693 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2694 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2695 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2696 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2697 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2698 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2699 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2700 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2701 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2702 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2703 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2704 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2705 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2706 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2707 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2708 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2709 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2710 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2711 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2712 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2713 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2714 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2715 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2716 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2717 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2718 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2719 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2720 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2721 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2722 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2723 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2724 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2725 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2726 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2727 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2728 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2729 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2730 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2731 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2732 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2733 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2734 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2735 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2736 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2737 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2738 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2739 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2740 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2741 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2742 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2743 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2744 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2745 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2746 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2747 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2748 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2749 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2750 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2751 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2752 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2753 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2754 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2755 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2756 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2757 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2758 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2759 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2760 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2761 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2762 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2763 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2764 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2765 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2766 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2767 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2768 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2769 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2770 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2771 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2772 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2773 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2774 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2775 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2776 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2777 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2778 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2779 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2780 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2781 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2782 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2783 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2784 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2785 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2786 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2787 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2788 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2789 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2790 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2791 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2792 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2793 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2794 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2795 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2796 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2797 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2798 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2799 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2800 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2801 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2802 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2803 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2804 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2805 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2806 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2807 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2808 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2809 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2810 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2811 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2812 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2813 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2814 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2815 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2816 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2817 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2818 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2819 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2820 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2821 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2822 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2823 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2824 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2825 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2826 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2827 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2828 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2829 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2830 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2831 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2832 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2833 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2834 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2835 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2836 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2837 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2838 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2839 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2840 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2841 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2842 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2843 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2844 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2845 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2846 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2847 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2848 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2849 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2850 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2851 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2852 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2853 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2854 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2855 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2856 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2857 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2858 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2859 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2860 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2861 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2862 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2863 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2864 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2865 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2866 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2867 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2868 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2869 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2870 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2871 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2872 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2873 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2874 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2875 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2876 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2877 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2878 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2879 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2880 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2881 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2882 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2883 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2884 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2885 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2886 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2887 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2888 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2889 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2890 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2891 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2892 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2893 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2894 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2895 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2896 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2897 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2898 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2899 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2900 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2901 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2902 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2903 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2904 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2905 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2906 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2907 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2908 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2909 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2910 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2911 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2912 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2913 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2914 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2915 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2916 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2917 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2918 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2919 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2920 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2921 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2922 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2923 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2924 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2925 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2926 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2927 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2928 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2929 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2930 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2931 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2932 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2933 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2934 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2935 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2936 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2937 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2938 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2939 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2940 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2941 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2942 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2943 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2944 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2945 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2946 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2947 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2948 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2949 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2950 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2951 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2952 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2953 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2954 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2955 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2956 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2957 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2958 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2959 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2960 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2961 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2962 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2963 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2964 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2965 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2966 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2967 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2968 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2969 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2970 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2971 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2972 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2973 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2974 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2975 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2976 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2977 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2978 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2979 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2980 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2981 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2982 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2983 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2984 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2985 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2986 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2987 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2988 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2989 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2990 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2991 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2992 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2993 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2994 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2995 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2996 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2997 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2998 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2999 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3000 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3001 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3002 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3003 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3004 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3005 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3006 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3007 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3008 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3009 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3010 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3011 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3012 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3013 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3014 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3015 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3016 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3017 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3018 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3019 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3020 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3021 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3022 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3023 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3024 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3025 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3026 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3027 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3028 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3029 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3030 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3031 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3032 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3033 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3034 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3035 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3036 outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3037 OutputP V_da2_P outd_stage3_0/outd_stage2_1/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3038 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3039 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3040 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3041 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3042 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3043 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3044 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3045 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3046 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3047 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3048 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3049 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3050 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3051 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3052 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3053 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3054 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3055 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3056 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3057 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3058 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3059 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3060 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3061 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3062 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3063 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3064 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3065 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3066 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3067 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3068 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3069 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3070 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3071 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3072 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3073 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3074 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3075 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3076 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3077 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3078 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3079 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3080 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3081 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3082 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3083 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3084 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3085 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3086 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3087 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3088 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3089 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3090 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3091 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3092 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3093 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3094 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3095 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3096 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3097 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3098 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3099 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3100 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3101 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3102 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3103 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3104 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3105 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3106 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3107 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3108 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3109 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3110 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3111 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3112 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3113 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3114 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3115 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3116 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3117 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3118 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3119 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3120 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3121 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3122 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3123 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3124 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3125 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3126 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3127 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3128 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3129 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3130 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3131 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3132 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3133 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3134 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3135 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3136 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3137 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3138 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3139 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3140 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3141 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3142 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3143 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3144 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3145 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3146 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3147 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3148 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3149 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3150 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3151 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3152 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3153 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3154 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3155 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3156 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3157 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3158 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3159 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3160 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3161 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3162 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3163 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3164 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3165 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3166 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3167 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3168 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3169 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3170 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3171 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3172 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3173 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3174 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3175 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3176 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3177 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3178 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3179 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3180 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3181 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3182 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3183 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3184 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3185 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3186 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3187 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3188 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3189 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3190 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3191 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3192 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3193 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3194 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3195 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3196 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3197 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3198 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3199 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3200 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3201 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3202 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3203 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3204 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3205 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3206 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3207 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3208 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3209 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3210 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3211 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3212 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3213 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3214 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3215 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3216 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3217 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3218 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3219 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3220 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3221 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3222 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3223 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3224 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3225 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3226 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3227 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3228 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3229 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3230 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3231 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3232 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3233 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3234 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3235 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3236 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3237 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3238 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3239 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3240 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3241 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3242 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3243 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3244 VN V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3245 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3246 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3247 VN V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3248 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3249 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3250 outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3251 OutputN V_da2_N outd_stage3_0/outd_stage2_1/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3252 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3253 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3254 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3255 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3256 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3257 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3258 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3259 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3260 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3261 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3262 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3263 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3264 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3265 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3266 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3267 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3268 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3269 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3270 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3271 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3272 VN V_da2_P OutputP outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3273 OutputP V_da2_P VN outd_stage3_0/outd_stage2_1/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3274 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3275 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3276 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3277 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3278 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3279 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3280 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3281 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3282 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3283 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3284 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3285 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3286 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3287 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3288 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3289 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3290 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3291 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3292 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3293 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3294 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3295 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3296 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3297 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3298 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3299 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3300 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3301 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3302 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3303 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3304 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3305 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3306 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3307 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3308 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3309 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3310 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3311 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3312 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3313 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3314 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3315 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3316 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3317 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3318 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3319 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3320 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3321 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3322 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3323 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3324 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3325 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3326 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3327 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3328 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3329 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3330 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3331 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3332 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3333 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3334 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3335 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3336 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3337 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3338 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3339 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3340 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3341 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3342 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3343 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3344 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3345 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3346 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3347 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3348 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3349 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3350 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3351 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3352 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3353 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3354 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3355 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3356 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3357 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3358 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3359 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3360 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3361 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3362 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3363 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3364 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3365 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3366 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3367 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3368 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3369 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3370 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3371 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3372 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3373 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3374 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3375 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3376 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3377 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3378 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3379 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3380 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3381 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3382 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3383 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3384 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3385 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3386 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3387 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3388 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3389 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3390 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3391 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3392 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3393 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3394 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3395 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3396 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3397 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3398 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3399 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3400 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3401 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3402 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3403 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3404 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3405 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3406 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3407 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3408 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3409 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3410 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3411 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3412 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3413 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3414 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3415 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3416 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3417 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3418 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3419 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3420 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3421 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3422 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3423 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3424 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3425 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3426 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3427 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3428 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3429 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3430 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3431 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3432 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3433 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3434 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3435 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3436 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3437 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3438 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3439 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3440 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3441 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3442 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3443 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3444 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3445 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3446 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3447 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3448 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3449 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3450 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3451 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3452 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3453 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3454 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3455 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3456 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3457 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3458 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3459 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3460 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3461 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3462 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3463 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3464 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3465 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3466 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3467 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3468 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3469 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3470 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3471 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3472 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3473 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3474 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3475 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3476 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3477 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3478 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3479 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3480 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3481 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3482 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3483 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3484 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3485 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3486 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3487 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3488 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3489 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3490 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3491 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3492 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3493 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3494 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3495 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3496 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3497 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3498 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3499 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3500 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3501 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3502 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3503 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3504 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3505 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3506 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3507 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3508 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3509 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3510 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3511 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3512 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3513 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3514 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3515 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3516 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3517 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3518 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3519 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3520 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3521 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3522 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3523 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3524 outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3525 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3526 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3527 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3528 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3529 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3530 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3531 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3532 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3533 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3534 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3535 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3536 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3537 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3538 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3539 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3540 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3541 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3542 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3543 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3544 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3545 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3546 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3547 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3548 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3549 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3550 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3551 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3552 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3553 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3554 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3555 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3556 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3557 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3558 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3559 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3560 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3561 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3562 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3563 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3564 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3565 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3566 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3567 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3568 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3569 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3570 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3571 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3572 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3573 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3574 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3575 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3576 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3577 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3578 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3579 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3580 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3581 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3582 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3583 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3584 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3585 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3586 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3587 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3588 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3589 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3590 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3591 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3592 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3593 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3594 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3595 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3596 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3597 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3598 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3599 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3600 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3601 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3602 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3603 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3604 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3605 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3606 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3607 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3608 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3609 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3610 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3611 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3612 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3613 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3614 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3615 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3616 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3617 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3618 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3619 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3620 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3621 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3622 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3623 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3624 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3625 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3626 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3627 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3628 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3629 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3630 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3631 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3632 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3633 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3634 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3635 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3636 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3637 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3638 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3639 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3640 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3641 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3642 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3643 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3644 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3645 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3646 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3647 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3648 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3649 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3650 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3651 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3652 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3653 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3654 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3655 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3656 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3657 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3658 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3659 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3660 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3661 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3662 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3663 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3664 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3665 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3666 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3667 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3668 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3669 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3670 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3671 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3672 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3673 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3674 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3675 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3676 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3677 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3678 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3679 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3680 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3681 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3682 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3683 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3684 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3685 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3686 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3687 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3688 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3689 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3690 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3691 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3692 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3693 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3694 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3695 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3696 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3697 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3698 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3699 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3700 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3701 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3702 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3703 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3704 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3705 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3706 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3707 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3708 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3709 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3710 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3711 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3712 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3713 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3714 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3715 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3716 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3717 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3718 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3719 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3720 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3721 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3722 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3723 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3724 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3725 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3726 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3727 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3728 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3729 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3730 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3731 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3732 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3733 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3734 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3735 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3736 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3737 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3738 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3739 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3740 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3741 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3742 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3743 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3744 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3745 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3746 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3747 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3748 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3749 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3750 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3751 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3752 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3753 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3754 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3755 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3756 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3757 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3758 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3759 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3760 outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3761 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3762 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3763 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3764 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3765 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3766 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3767 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3768 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3769 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3770 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3771 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3772 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3773 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3774 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3775 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3776 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3777 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3778 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3779 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3780 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3781 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3782 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3783 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3784 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3785 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3786 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3787 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3788 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3789 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3790 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3791 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3792 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3793 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3794 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3795 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3796 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3797 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3798 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3799 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3800 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3801 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3802 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3803 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3804 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3805 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3806 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3807 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3808 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3809 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3810 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3811 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3812 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3813 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3814 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3815 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3816 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3817 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3818 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3819 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3820 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3821 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3822 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3823 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3824 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3825 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3826 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3827 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3828 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3829 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3830 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3831 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3832 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3833 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3834 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3835 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3836 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3837 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3838 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3839 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3840 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3841 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3842 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3843 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3844 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3845 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3846 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3847 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3848 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3849 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3850 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3851 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3852 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3853 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3854 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3855 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3856 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3857 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3858 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3859 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3860 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3861 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3862 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3863 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3864 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3865 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3866 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3867 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3868 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3869 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3870 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3871 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3872 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3873 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3874 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3875 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3876 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3877 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3878 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3879 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3880 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3881 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3882 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3883 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3884 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3885 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3886 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3887 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3888 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3889 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3890 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3891 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3892 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3893 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3894 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3895 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3896 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3897 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3898 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3899 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3900 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3901 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3902 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3903 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3904 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3905 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3906 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3907 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3908 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3909 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3910 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3911 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3912 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3913 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3914 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3915 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3916 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3917 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3918 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3919 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3920 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3921 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3922 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3923 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3924 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3925 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3926 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3927 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3928 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3929 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3930 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3931 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3932 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3933 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3934 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3935 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3936 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3937 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3938 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3939 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3940 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3941 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3942 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3943 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3944 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3945 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3946 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3947 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3948 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3949 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3950 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3951 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3952 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3953 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3954 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3955 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3956 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3957 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3958 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3959 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3960 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3961 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3962 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3963 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3964 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3965 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3966 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3967 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3968 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3969 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3970 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3971 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3972 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3973 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3974 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3975 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3976 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3977 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3978 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3979 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3980 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3981 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3982 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3983 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3984 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3985 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3986 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3987 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3988 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3989 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3990 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3991 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3992 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3993 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3994 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3995 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3996 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3997 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3998 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3999 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4000 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4001 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4002 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4003 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4004 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4005 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4006 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4007 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4008 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4009 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4010 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4011 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4012 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4013 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4014 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4015 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4016 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4017 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4018 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4019 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4020 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4021 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4022 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4023 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4024 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4025 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4026 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4027 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4028 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4029 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4030 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4031 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4032 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4033 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4034 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4035 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4036 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4037 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4038 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4039 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4040 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4041 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4042 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4043 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4044 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4045 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4046 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4047 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4048 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4049 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4050 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4051 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4052 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4053 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4054 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4055 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4056 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4057 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4058 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4059 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4060 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4061 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4062 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4063 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4064 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4065 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4066 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4067 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4068 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4069 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4070 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4071 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4072 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4073 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4074 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4075 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4076 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4077 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4078 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4079 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4080 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4081 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4082 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4083 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4084 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4085 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4086 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4087 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4088 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4089 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4090 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4091 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4092 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4093 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4094 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4095 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4096 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4097 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4098 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4099 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4100 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4101 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4102 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4103 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4104 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4105 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4106 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4107 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4108 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4109 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4110 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4111 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4112 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4113 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4114 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4115 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4116 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4117 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4118 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4119 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4120 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4121 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4122 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4123 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4124 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4125 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4126 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4127 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4128 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4129 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4130 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4131 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4132 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4133 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4134 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4135 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4136 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4137 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4138 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4139 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4140 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4141 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4142 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4143 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4144 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4145 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4146 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4147 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4148 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4149 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4150 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4151 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4152 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4153 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4154 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4155 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4156 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4157 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4158 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4159 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4160 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4161 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4162 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4163 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4164 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4165 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4166 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4167 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4168 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4169 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4170 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4171 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4172 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4173 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4174 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4175 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4176 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4177 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4178 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4179 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4180 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4181 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4182 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4183 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4184 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4185 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4186 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4187 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4188 outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4189 OutputP V_da2_P outd_stage3_0/outd_stage2_2/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4190 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4191 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4192 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4193 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4194 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4195 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4196 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4197 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4198 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4199 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4200 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4201 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4202 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4203 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4204 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4205 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4206 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4207 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4208 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4209 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4210 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4211 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4212 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4213 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4214 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4215 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4216 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4217 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4218 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4219 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4220 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4221 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4222 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4223 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4224 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4225 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4226 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4227 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4228 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4229 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4230 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4231 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4232 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4233 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4234 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4235 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4236 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4237 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4238 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4239 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4240 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4241 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4242 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4243 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4244 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4245 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4246 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4247 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4248 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4249 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4250 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4251 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4252 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4253 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4254 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4255 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4256 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4257 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4258 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4259 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4260 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4261 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4262 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4263 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4264 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4265 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4266 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4267 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4268 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4269 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4270 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4271 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4272 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4273 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4274 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4275 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4276 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4277 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4278 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4279 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4280 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4281 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4282 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4283 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4284 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4285 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4286 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4287 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4288 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4289 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4290 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4291 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4292 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4293 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4294 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4295 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4296 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4297 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4298 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4299 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4300 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4301 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4302 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4303 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4304 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4305 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4306 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4307 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4308 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4309 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4310 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4311 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4312 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4313 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4314 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4315 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4316 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4317 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4318 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4319 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4320 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4321 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4322 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4323 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4324 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4325 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4326 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4327 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4328 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4329 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4330 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4331 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4332 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4333 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4334 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4335 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4336 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4337 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4338 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4339 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4340 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4341 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4342 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4343 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4344 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4345 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4346 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4347 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4348 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4349 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4350 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4351 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4352 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4353 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4354 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4355 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4356 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4357 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4358 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4359 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4360 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4361 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4362 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4363 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4364 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4365 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4366 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4367 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4368 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4369 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4370 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4371 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4372 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4373 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4374 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4375 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4376 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4377 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4378 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4379 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4380 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4381 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4382 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4383 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4384 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4385 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4386 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4387 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4388 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4389 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4390 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4391 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4392 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4393 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4394 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4395 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4396 VN V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4397 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4398 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4399 VN V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4400 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4401 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4402 outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4403 OutputN V_da2_N outd_stage3_0/outd_stage2_2/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4404 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4405 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4406 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4407 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4408 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4409 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4410 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4411 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4412 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4413 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4414 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4415 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4416 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4417 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4418 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4419 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4420 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4421 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4422 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4423 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4424 VN V_da2_P OutputP outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4425 OutputP V_da2_P VN outd_stage3_0/outd_stage2_2/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4426 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4427 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4428 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4429 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4430 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4431 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4432 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4433 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4434 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4435 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4436 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4437 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4438 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4439 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4440 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4441 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4442 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4443 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4444 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4445 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4446 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4447 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4448 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4449 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4450 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4451 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4452 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4453 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4454 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4455 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4456 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4457 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4458 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4459 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4460 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4461 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4462 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4463 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4464 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4465 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4466 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4467 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4468 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4469 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4470 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4471 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4472 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4473 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4474 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4475 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4476 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4477 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4478 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4479 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4480 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4481 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4482 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4483 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4484 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4485 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4486 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4487 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4488 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4489 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4490 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4491 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4492 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4493 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4494 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4495 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4496 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4497 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4498 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4499 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4500 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4501 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4502 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4503 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4504 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4505 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4506 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4507 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4508 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4509 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4510 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4511 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4512 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4513 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4514 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4515 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4516 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4517 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4518 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4519 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4520 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4521 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4522 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4523 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4524 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4525 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4526 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4527 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4528 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4529 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4530 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4531 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4532 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4533 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4534 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4535 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4536 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4537 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4538 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4539 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4540 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4541 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4542 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4543 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4544 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4545 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4546 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4547 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4548 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4549 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4550 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4551 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4552 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4553 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4554 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4555 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4556 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4557 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4558 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4559 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4560 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4561 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4562 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4563 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4564 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4565 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4566 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4567 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4568 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4569 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4570 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4571 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4572 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4573 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4574 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4575 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4576 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4577 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4578 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4579 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4580 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4581 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4582 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4583 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4584 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4585 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4586 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4587 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4588 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4589 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4590 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4591 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4592 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4593 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4594 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4595 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4596 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4597 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4598 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4599 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4600 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4601 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4602 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4603 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4604 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4605 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4606 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4607 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4608 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4609 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4610 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4611 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4612 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4613 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4614 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4615 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4616 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4617 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4618 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4619 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4620 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4621 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4622 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4623 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4624 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4625 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4626 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4627 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4628 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4629 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4630 VP OutputP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4631 VP OutputN VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4632 OutputN VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4633 OutputP VP VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4634 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4635 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4636 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4637 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4638 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4639 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4640 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4641 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4642 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4643 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4644 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4645 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4646 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4647 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4648 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4649 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4650 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4651 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4652 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4653 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4654 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4655 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4656 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4657 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4658 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4659 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4660 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4661 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4662 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4663 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4664 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4665 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4666 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4667 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4668 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4669 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4670 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4671 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4672 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4673 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4674 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4675 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4676 outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4677 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_0/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_0/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4678 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4679 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4680 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4681 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4682 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4683 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4684 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4685 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4686 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4687 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4688 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4689 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4690 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4691 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4692 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4693 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4694 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4695 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4696 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4697 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4698 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4699 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4700 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4701 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4702 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4703 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4704 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4705 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4706 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4707 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4708 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4709 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4710 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4711 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4712 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4713 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4714 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4715 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4716 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4717 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4718 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4719 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4720 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4721 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4722 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4723 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4724 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4725 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4726 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4727 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4728 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4729 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4730 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4731 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4732 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4733 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4734 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4735 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4736 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4737 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4738 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4739 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4740 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4741 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4742 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4743 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4744 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4745 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4746 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4747 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4748 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4749 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4750 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4751 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4752 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4753 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4754 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4755 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4756 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4757 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4758 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4759 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4760 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4761 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4762 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4763 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4764 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4765 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4766 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4767 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4768 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4769 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4770 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4771 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4772 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4773 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4774 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4775 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4776 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4777 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4778 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4779 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4780 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4781 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4782 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4783 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4784 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4785 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4786 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4787 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4788 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4789 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4790 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4791 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4792 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4793 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4794 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4795 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4796 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4797 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4798 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4799 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4800 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4801 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4802 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4803 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4804 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4805 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4806 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4807 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4808 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4809 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4810 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4811 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4812 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4813 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4814 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4815 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4816 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4817 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4818 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4819 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4820 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4821 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4822 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4823 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4824 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4825 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4826 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4827 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4828 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4829 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4830 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4831 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4832 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4833 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4834 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4835 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4836 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4837 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4838 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4839 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4840 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4841 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4842 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4843 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4844 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4845 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4846 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4847 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4848 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4849 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4850 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4851 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4852 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4853 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4854 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4855 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4856 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4857 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4858 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4859 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4860 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4861 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4862 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4863 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4864 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4865 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4866 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4867 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4868 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4869 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4870 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4871 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4872 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4873 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4874 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4875 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4876 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4877 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4878 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4879 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4880 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4881 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4882 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4883 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4884 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4885 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4886 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4887 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4888 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4889 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4890 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4891 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4892 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4893 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4894 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4895 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4896 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4897 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4898 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4899 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4900 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4901 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4902 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4903 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4904 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4905 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4906 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4907 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4908 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4909 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4910 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4911 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4912 outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4913 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_1/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_1/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4914 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4915 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4916 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4917 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4918 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4919 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4920 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4921 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4922 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4923 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4924 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4925 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4926 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4927 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4928 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4929 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4930 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4931 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4932 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4933 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4934 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4935 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4936 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4937 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4938 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4939 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4940 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4941 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4942 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4943 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4944 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4945 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4946 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4947 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4948 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4949 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4950 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4951 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4952 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4953 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4954 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4955 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4956 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4957 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4958 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4959 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4960 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4961 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4962 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4963 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4964 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4965 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4966 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4967 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4968 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4969 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4970 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4971 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4972 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4973 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4974 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4975 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4976 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4977 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4978 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4979 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4980 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4981 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4982 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4983 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4984 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4985 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4986 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4987 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4988 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4989 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4990 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4991 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4992 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4993 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4994 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4995 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4996 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4997 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4998 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4999 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5000 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5001 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5002 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5003 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5004 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5005 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5006 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5007 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5008 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5009 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5010 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5011 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5012 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5013 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5014 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5015 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5016 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5017 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5018 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5019 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5020 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5021 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5022 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5023 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5024 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5025 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5026 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5027 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5028 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5029 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5030 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5031 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5032 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5033 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5034 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5035 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5036 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5037 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5038 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5039 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5040 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5041 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5042 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5043 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5044 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5045 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5046 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5047 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5048 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5049 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5050 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5051 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5052 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5053 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5054 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5055 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5056 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5057 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5058 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5059 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5060 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5061 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5062 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5063 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5064 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5065 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5066 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5067 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5068 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5069 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5070 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5071 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5072 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5073 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5074 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5075 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5076 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5077 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5078 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5079 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5080 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5081 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5082 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5083 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5084 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5085 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5086 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5087 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5088 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5089 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5090 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5091 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5092 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5093 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5094 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5095 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5096 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5097 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5098 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5099 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5100 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5101 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5102 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5103 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5104 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5105 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5106 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5107 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5108 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5109 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5110 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5111 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5112 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5113 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5114 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5115 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5116 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5117 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5118 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5119 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5120 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5121 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5122 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5123 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5124 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5125 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5126 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5127 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5128 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5129 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5130 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5131 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5132 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5133 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5134 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5135 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5136 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5137 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5138 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5139 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5140 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5141 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5142 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5143 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5144 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5145 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5146 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5147 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5148 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5149 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5150 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5151 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5152 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5153 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5154 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5155 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5156 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5157 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5158 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5159 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5160 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5161 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5162 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5163 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5164 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5165 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5166 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5167 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5168 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5169 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5170 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5171 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5172 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5173 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5174 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5175 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5176 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5177 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5178 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5179 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5180 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5181 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5182 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5183 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5184 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5185 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5186 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5187 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5188 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5189 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5190 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5191 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5192 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5193 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5194 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5195 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5196 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5197 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5198 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5199 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5200 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5201 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5202 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5203 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5204 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5205 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5206 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5207 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5208 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5209 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5210 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5211 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5212 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5213 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5214 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5215 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5216 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5217 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5218 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5219 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5220 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5221 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5222 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5223 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5224 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5225 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5226 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5227 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5228 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5229 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5230 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5231 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5232 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5233 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5234 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5235 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5236 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5237 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5238 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5239 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5240 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5241 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5242 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5243 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5244 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5245 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5246 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5247 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5248 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5249 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5250 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5251 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5252 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5253 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5254 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5255 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5256 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5257 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5258 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5259 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5260 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5261 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5262 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5263 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5264 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5265 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5266 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5267 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5268 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5269 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5270 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5271 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5272 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5273 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5274 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5275 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5276 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5277 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5278 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5279 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5280 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5281 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5282 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5283 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5284 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5285 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5286 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5287 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5288 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5289 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5290 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5291 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5292 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5293 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5294 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5295 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5296 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5297 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5298 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5299 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5300 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5301 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5302 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5303 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5304 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5305 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5306 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5307 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5308 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5309 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5310 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5311 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5312 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5313 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5314 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5315 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5316 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5317 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5318 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5319 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5320 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5321 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5322 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5323 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5324 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5325 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5326 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5327 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5328 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5329 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5330 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5331 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5332 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5333 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5334 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5335 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5336 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5337 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5338 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5339 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5340 outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5341 OutputP V_da2_P outd_stage3_0/outd_stage2_3/outd_diffamp_2/m1_2468_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_2/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5342 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5343 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5344 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5345 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5346 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5347 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5348 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5349 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5350 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5351 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5352 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5353 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5354 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5355 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5356 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5357 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5358 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5359 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5360 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5361 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5362 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5363 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5364 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5365 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5366 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5367 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5368 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5369 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5370 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5371 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5372 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5373 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5374 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5375 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5376 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5377 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5378 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5379 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5380 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5381 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5382 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5383 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5384 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5385 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5386 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5387 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5388 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5389 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5390 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5391 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5392 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5393 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5394 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5395 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5396 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5397 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5398 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5399 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5400 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5401 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5402 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5403 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5404 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5405 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5406 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5407 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5408 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5409 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5410 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5411 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5412 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5413 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5414 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5415 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5416 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5417 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5418 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5419 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5420 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5421 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5422 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5423 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5424 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5425 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5426 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5427 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5428 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5429 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5430 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5431 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5432 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5433 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5434 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5435 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5436 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5437 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5438 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5439 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5440 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5441 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5442 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5443 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5444 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5445 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5446 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5447 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5448 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5449 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5450 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5451 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5452 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5453 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5454 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5455 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5456 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5457 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5458 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5459 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5460 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5461 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5462 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5463 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5464 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5465 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5466 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5467 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5468 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5469 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5470 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5471 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5472 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5473 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5474 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5475 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5476 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5477 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5478 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5479 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5480 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5481 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5482 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5483 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5484 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5485 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5486 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5487 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5488 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5489 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5490 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5491 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5492 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5493 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5494 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5495 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5496 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5497 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5498 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5499 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5500 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5501 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5502 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5503 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5504 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5505 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5506 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5507 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5508 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5509 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5510 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5511 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5512 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5513 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5514 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5515 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5516 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5517 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5518 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5519 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5520 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5521 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5522 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5523 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5524 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5525 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5526 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5527 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5528 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5529 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5530 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5531 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5532 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5533 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5534 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5535 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5536 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5537 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5538 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5539 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5540 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5541 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5542 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5543 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5544 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5545 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5546 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5547 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5548 VN V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5549 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5550 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5551 VN V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5552 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5553 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5554 outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# V_da2_N OutputN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5555 OutputN V_da2_N outd_stage3_0/outd_stage2_3/outd_diffamp_3/m1_994_8758# outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5556 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5557 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5558 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5559 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5560 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5561 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5562 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5563 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5564 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5565 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5566 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5567 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5568 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5569 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5570 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5571 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5572 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5573 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5574 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5575 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5576 VN V_da2_P OutputP outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5577 OutputP V_da2_P VN outd_stage3_0/outd_stage2_3/outd_diffamp_3/VSUBS sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5578 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5579 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5580 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5581 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5582 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5583 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5584 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5585 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5586 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5587 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5588 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5589 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5590 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5591 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5592 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5593 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5594 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5595 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5596 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5597 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5598 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5599 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5600 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5601 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5602 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5603 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5604 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5605 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5606 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5607 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5608 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5609 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5610 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5611 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5612 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5613 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5614 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5615 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5616 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5617 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5618 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5619 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5620 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5621 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5622 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5623 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5624 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5625 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5626 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5627 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5628 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5629 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5630 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5631 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5632 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5633 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5634 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5635 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5636 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5637 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5638 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5639 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5640 VM14D I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5641 outd_stage3_0/m2_41490_8160# I_Bias VM14D VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5642 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5643 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5644 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5645 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5646 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5647 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5648 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5649 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5650 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5651 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5652 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5653 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5654 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5655 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5656 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5657 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5658 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5659 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5660 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5661 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5662 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5663 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5664 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5665 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5666 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5667 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5668 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5669 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5670 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5671 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5672 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5673 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5674 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5675 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5676 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5677 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5678 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5679 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5680 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5681 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5682 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5683 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5684 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5685 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5686 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5687 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5688 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5689 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5690 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5691 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5692 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5693 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5694 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5695 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5696 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5697 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5698 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5699 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5700 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5701 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5702 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5703 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5704 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5705 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5706 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5707 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5708 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5709 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5710 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5711 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5712 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5713 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5714 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5715 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5716 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5717 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5718 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5719 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5720 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5721 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5722 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5723 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5724 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5725 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5726 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5727 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5728 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5729 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5730 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5731 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5732 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5733 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5734 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5735 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5736 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5737 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5738 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5739 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5740 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5741 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5742 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5743 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5744 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5745 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5746 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5747 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5748 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5749 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5750 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5751 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5752 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5753 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5754 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5755 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5756 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5757 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5758 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5759 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5760 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5761 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5762 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5763 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5764 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5765 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5766 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5767 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5768 VN I_Bias outd_stage3_0/m2_41490_8160# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5769 outd_stage3_0/m2_41490_8160# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5770 I_Bias I_Bias m1_n19890_7120# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5771 m1_n19890_7120# I_Bias I_Bias VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5772 InputRef VN sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X5773 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5774 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5775 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5776 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5777 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5778 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5779 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5780 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5781 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5782 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5783 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5784 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5785 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5786 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5787 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5788 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5789 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5790 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5791 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5792 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5793 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5794 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5795 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5796 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5797 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5798 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5799 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5800 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5801 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5802 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5803 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5804 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5805 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5806 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5807 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5808 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5809 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5810 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5811 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5812 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5813 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5814 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5815 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5816 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5817 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5818 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5819 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5820 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5821 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5822 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5823 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5824 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5825 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5826 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5827 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5828 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5829 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5830 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5831 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5832 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5833 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5834 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5835 outd_stage1_0/isource_out I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5836 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias outd_stage1_0/isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5837 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5838 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5839 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5840 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5841 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5842 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5843 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5844 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5845 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5846 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5847 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5848 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5849 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5850 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5851 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5852 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5853 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5854 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5855 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5856 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5857 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5858 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5859 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5860 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5861 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5862 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5863 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5864 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5865 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5866 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5867 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5868 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5869 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5870 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5871 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5872 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5873 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5874 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5875 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5876 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5877 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5878 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5879 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5880 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5881 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5882 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5883 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5884 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5885 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5886 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5887 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5888 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5889 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5890 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5891 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5892 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5893 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5894 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5895 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5896 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5897 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5898 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5899 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5900 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5901 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5902 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5903 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5904 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5905 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5906 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5907 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5908 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5909 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5910 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5911 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5912 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5913 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5914 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5915 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5916 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5917 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5918 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5919 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5920 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5921 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5922 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5923 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5924 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5925 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5926 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5927 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5928 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5929 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5930 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5931 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5932 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5933 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5934 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5935 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5936 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5937 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5938 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5939 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5940 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5941 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5942 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5943 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5944 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5945 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5946 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5947 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5948 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5949 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5950 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5951 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5952 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5953 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5954 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5955 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5956 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5957 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5958 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5959 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5960 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5961 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5962 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5963 VN I_Bias outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5964 outd_stage1_0/outd_cmirror_64t_0/m1_220_5610# I_Bias VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5965 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5966 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5967 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5968 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5969 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5970 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5971 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5972 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5973 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5974 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5975 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5976 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5977 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5978 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5979 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5980 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5981 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5982 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5983 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5984 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5985 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5986 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5987 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5988 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5989 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5990 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5991 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5992 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5993 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5994 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5995 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5996 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5997 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5998 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5999 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6000 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6001 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6002 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6003 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6004 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6005 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6006 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6007 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6008 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6009 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6010 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6011 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6012 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6013 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6014 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6015 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6016 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X6017 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X6018 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X6019 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X6020 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X6021 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X6022 VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
diff --git a/mag/outd/outd_cmirror_64t.ext b/mag/outd/outd_cmirror_64t.ext
new file mode 100644
index 0000000..4e2155d
--- /dev/null
+++ b/mag/outd/outd_cmirror_64t.ext
@@ -0,0 +1,421 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use outd_cmirror_transistors outd_cmirror_transistors_0 1 0 180 0 1 5340
+node "m1_220_5610#" 54 9760.51 220 5610 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1228800 46080 4322400 57760 5110650 15830 0 0 0 0 0 0
+node "m1_130_5370#" 26 3228.8 130 5370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 460800 17280 1102400 14800 1845100 6590 0 0 0 0 0 0
+node "m1_0_80#" 0 14947.7 0 80 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5981000 91840 0 0 0 0 0 0 0 0 0 0
+node "li_0_0#" 3729 18692.6 0 0 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1789200 45560 1105756 38412 3963900 47180 4245800 11580 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_0_80#" "m1_220_5610#" 14330.1
+cap "li_0_0#" "m1_130_5370#" 509.615
+cap "m1_130_5370#" "m1_220_5610#" 7497.73
+cap "li_0_0#" "m1_220_5610#" 20941.5
+cap "m1_0_80#" "m1_130_5370#" 6442.39
+cap "m1_0_80#" "li_0_0#" 23589.3
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -2211.59
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" 836.924
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" -398.99
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" -1972.32
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" 1040.04
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" 736.839
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" -13.4182
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" 342.618
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" -13.4182
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -3535.62
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -144.719
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" 960.921
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" -2249.25
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#" 913.155
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#" 1111.28
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" -13.0827
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" -13.0827
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" 360.815
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_transistors_0/a_2_n58#" 943.953
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_n58#" 475.465
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -3767.35
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_cmirror_transistors_0/a_2_n58#" -0.212773
+cap "outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 730.333
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_n58#" -1184.84
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1238.88
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_n58#" 242.247
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_transistors_0/a_2_n58#" -13.4182
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_cmirror_transistors_0/a_2_n58#" -13.4182
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 982.637
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" -1453.43
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" -270.107
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_1688#" -66.5352
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 661.798
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" -4.19713
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 530.721
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" -2.02942
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 131.428
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 770.587
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" -63.4659
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_1688#" -1533.86
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_1688#" 320.199
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" -13.4182
+cap "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" -13.2505
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" 4936.69
+cap "outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -532.162
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 1.32518
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_2306#" -138.789
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/a_2_2306#" -543.866
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_2306#" -160.441
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/a_2_2306#" -1981.33
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -1707.37
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" "outd_cmirror_transistors_0/a_2_2306#" -290.873
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 1.32518
+cap "outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" -337.314
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" 2751.53
+cap "outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -307.052
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" -161.951
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_2306#" -77.9835
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" -1458.52
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/a_2_2306#" -85.5249
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" "outd_cmirror_transistors_0/a_2_2306#" -208.867
+cap "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" -194.673
+cap "outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" -2385.44
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1963#" 200833 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -666668 -48552 297409436 -29520 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "li_0_0#"
+merge "outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_transistors_0/a_2_452#" -632578 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1007740240 -94248 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_transistors_0/a_2_452#" "outd_cmirror_transistors_0/a_2_1070#"
+merge "outd_cmirror_transistors_0/a_2_1070#" "outd_cmirror_transistors_0/a_2_1688#"
+merge "outd_cmirror_transistors_0/a_2_1688#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#" "outd_cmirror_transistors_0/a_2_n58#"
+merge "outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_639#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1257#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1833#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n1215#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n597#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1135_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_977_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_819_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_661_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_503_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_21#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_21#" "m1_0_80#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" 256764 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 410313552 -39264 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1345#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1745#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_109#" "m1_220_5610#"
+merge "outd_cmirror_transistors_0/VSUBS" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" 92888.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 134022740 -14796 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#"
+merge "outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "m1_130_5370#"
diff --git a/mag/outd/outd_cmirror_64t.mag b/mag/outd/outd_cmirror_64t.mag
new file mode 100644
index 0000000..c313c3b
--- /dev/null
+++ b/mag/outd/outd_cmirror_64t.mag
@@ -0,0 +1,1418 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect 10 5090 1860 5220
+<< locali >>
+rect 0 7770 1870 7840
+rect 0 5220 70 7770
+rect 1800 5220 1870 7770
+rect 0 5210 1870 5220
+rect 0 5140 1020 5210
+rect 1730 5150 1870 5210
+rect 1730 5140 2860 5150
+rect 0 5080 2860 5140
+rect 0 70 70 5080
+rect 2790 70 2860 5080
+rect 0 40 2860 70
+rect 0 0 990 40
+rect 980 -70 990 0
+rect 1950 0 2860 40
+rect 1950 -70 1960 0
+<< viali >>
+rect 1020 5140 1730 5210
+rect 990 -70 1950 40
+<< metal1 >>
+rect 0 7660 1870 7750
+rect 0 7190 100 7660
+rect 130 7460 140 7620
+rect 200 7460 210 7620
+rect 320 7460 330 7620
+rect 390 7460 400 7620
+rect 510 7460 520 7620
+rect 580 7460 590 7620
+rect 700 7460 710 7620
+rect 770 7460 780 7620
+rect 900 7460 910 7620
+rect 970 7460 980 7620
+rect 1090 7460 1100 7620
+rect 1160 7460 1170 7620
+rect 1280 7460 1290 7620
+rect 1350 7460 1360 7620
+rect 1470 7460 1480 7620
+rect 1540 7460 1550 7620
+rect 1660 7460 1670 7620
+rect 1730 7460 1740 7620
+rect 220 7220 230 7380
+rect 290 7220 300 7380
+rect 420 7220 430 7380
+rect 490 7220 500 7380
+rect 610 7220 620 7380
+rect 680 7220 690 7380
+rect 800 7220 810 7380
+rect 870 7220 880 7380
+rect 990 7220 1000 7380
+rect 1060 7220 1070 7380
+rect 1180 7220 1190 7380
+rect 1250 7220 1260 7380
+rect 1380 7220 1390 7380
+rect 1450 7220 1460 7380
+rect 1570 7220 1580 7380
+rect 1640 7220 1650 7380
+rect 1770 7190 1870 7660
+rect 0 7040 1870 7190
+rect 0 6570 100 7040
+rect 220 6850 230 7010
+rect 290 6850 300 7010
+rect 420 6850 430 7010
+rect 490 6850 500 7010
+rect 610 6850 620 7010
+rect 680 6850 690 7010
+rect 800 6850 810 7010
+rect 870 6850 880 7010
+rect 990 6850 1000 7010
+rect 1060 6850 1070 7010
+rect 1180 6850 1190 7010
+rect 1250 6850 1260 7010
+rect 1380 6850 1390 7010
+rect 1450 6850 1460 7010
+rect 1570 6850 1580 7010
+rect 1640 6850 1650 7010
+rect 130 6610 140 6770
+rect 200 6610 210 6770
+rect 320 6610 330 6770
+rect 390 6610 400 6770
+rect 510 6610 520 6770
+rect 580 6610 590 6770
+rect 700 6610 710 6770
+rect 770 6610 780 6770
+rect 900 6610 910 6770
+rect 970 6610 980 6770
+rect 1090 6610 1100 6770
+rect 1160 6610 1170 6770
+rect 1280 6610 1290 6770
+rect 1350 6610 1360 6770
+rect 1470 6610 1480 6770
+rect 1540 6610 1550 6770
+rect 1660 6610 1670 6770
+rect 1730 6610 1740 6770
+rect 1770 6570 1870 7040
+rect 0 6420 1870 6570
+rect 0 5960 100 6420
+rect 130 6230 140 6390
+rect 200 6230 210 6390
+rect 320 6230 330 6390
+rect 390 6230 400 6390
+rect 510 6230 520 6390
+rect 580 6230 590 6390
+rect 700 6230 710 6390
+rect 770 6230 780 6390
+rect 900 6230 910 6390
+rect 970 6230 980 6390
+rect 1090 6230 1100 6390
+rect 1160 6230 1170 6390
+rect 1280 6230 1290 6390
+rect 1350 6230 1360 6390
+rect 1470 6230 1480 6390
+rect 1540 6230 1550 6390
+rect 1660 6230 1670 6390
+rect 1730 6230 1740 6390
+rect 220 5990 230 6150
+rect 290 5990 300 6150
+rect 420 5990 430 6150
+rect 490 5990 500 6150
+rect 610 5990 620 6150
+rect 680 5990 690 6150
+rect 800 5990 810 6150
+rect 870 5990 880 6150
+rect 990 5990 1000 6150
+rect 1060 5990 1070 6150
+rect 1180 5990 1190 6150
+rect 1250 5990 1260 6150
+rect 1380 5990 1390 6150
+rect 1450 5990 1460 6150
+rect 1570 5990 1580 6150
+rect 1640 5990 1650 6150
+rect 1770 5960 1870 6420
+rect 0 5800 1870 5960
+rect 0 5340 100 5800
+rect 220 5610 230 5770
+rect 290 5610 300 5770
+rect 420 5610 430 5770
+rect 490 5610 500 5770
+rect 610 5610 620 5770
+rect 680 5610 690 5770
+rect 800 5610 810 5770
+rect 870 5610 880 5770
+rect 990 5610 1000 5770
+rect 1060 5610 1070 5770
+rect 1180 5610 1190 5770
+rect 1250 5610 1260 5770
+rect 1380 5610 1390 5770
+rect 1450 5610 1460 5770
+rect 1570 5610 1580 5770
+rect 1640 5610 1650 5770
+rect 130 5370 140 5530
+rect 200 5370 210 5530
+rect 320 5370 330 5530
+rect 390 5370 400 5530
+rect 510 5370 520 5530
+rect 580 5370 590 5530
+rect 700 5370 710 5530
+rect 770 5370 780 5530
+rect 900 5370 910 5530
+rect 970 5370 980 5530
+rect 1090 5370 1100 5530
+rect 1160 5370 1170 5530
+rect 1280 5370 1290 5530
+rect 1350 5370 1360 5530
+rect 1470 5370 1480 5530
+rect 1540 5370 1550 5530
+rect 1660 5370 1670 5530
+rect 1730 5370 1740 5530
+rect 1770 5340 1870 5800
+rect 0 5250 1870 5340
+rect 0 5090 100 5250
+rect 1008 5210 1742 5216
+rect 1008 5140 1020 5210
+rect 1730 5140 1742 5210
+rect 1008 5134 1742 5140
+rect 1770 5090 1870 5250
+rect 0 4970 2860 5090
+rect 0 4500 100 4970
+rect 130 4780 140 4940
+rect 200 4780 210 4940
+rect 440 4780 450 4940
+rect 510 4780 520 4940
+rect 760 4780 770 4940
+rect 830 4780 840 4940
+rect 1080 4780 1090 4940
+rect 1150 4780 1160 4940
+rect 1390 4780 1400 4940
+rect 1460 4780 1470 4940
+rect 1710 4780 1720 4940
+rect 1780 4780 1790 4940
+rect 2020 4780 2030 4940
+rect 2090 4780 2100 4940
+rect 2340 4780 2350 4940
+rect 2410 4780 2420 4940
+rect 2650 4780 2660 4940
+rect 2720 4780 2730 4940
+rect 280 4540 290 4700
+rect 350 4540 360 4700
+rect 600 4540 610 4700
+rect 670 4540 680 4700
+rect 920 4540 930 4700
+rect 990 4540 1000 4700
+rect 1230 4540 1240 4700
+rect 1300 4540 1310 4700
+rect 1550 4540 1560 4700
+rect 1620 4540 1630 4700
+rect 1860 4540 1870 4700
+rect 1930 4540 1940 4700
+rect 2180 4540 2190 4700
+rect 2250 4540 2260 4700
+rect 2500 4540 2510 4700
+rect 2570 4540 2580 4700
+rect 2760 4500 2860 4970
+rect 0 4350 2860 4500
+rect 0 3880 100 4350
+rect 280 4160 290 4320
+rect 350 4160 360 4320
+rect 600 4160 610 4320
+rect 670 4160 680 4320
+rect 920 4160 930 4320
+rect 990 4160 1000 4320
+rect 1230 4160 1240 4320
+rect 1300 4160 1310 4320
+rect 1550 4160 1560 4320
+rect 1620 4160 1630 4320
+rect 1860 4160 1870 4320
+rect 1930 4160 1940 4320
+rect 2180 4160 2190 4320
+rect 2250 4160 2260 4320
+rect 2500 4160 2510 4320
+rect 2570 4160 2580 4320
+rect 130 3920 140 4080
+rect 200 3920 210 4080
+rect 440 3920 450 4080
+rect 510 3920 520 4080
+rect 760 3920 770 4080
+rect 830 3920 840 4080
+rect 1080 3920 1090 4080
+rect 1150 3920 1160 4080
+rect 1390 3920 1400 4080
+rect 1460 3920 1470 4080
+rect 1710 3920 1720 4080
+rect 1780 3920 1790 4080
+rect 2020 3920 2030 4080
+rect 2090 3920 2100 4080
+rect 2340 3920 2350 4080
+rect 2410 3920 2420 4080
+rect 2650 3920 2660 4080
+rect 2720 3920 2730 4080
+rect 2760 3880 2860 4350
+rect 0 3730 2860 3880
+rect 0 3260 100 3730
+rect 130 3540 140 3700
+rect 200 3540 210 3700
+rect 440 3540 450 3700
+rect 510 3540 520 3700
+rect 760 3540 770 3700
+rect 830 3540 840 3700
+rect 1080 3540 1090 3700
+rect 1150 3540 1160 3700
+rect 1390 3540 1400 3700
+rect 1460 3540 1470 3700
+rect 1710 3540 1720 3700
+rect 1780 3540 1790 3700
+rect 2020 3540 2030 3700
+rect 2090 3540 2100 3700
+rect 2340 3540 2350 3700
+rect 2410 3540 2420 3700
+rect 2650 3540 2660 3700
+rect 2720 3540 2730 3700
+rect 280 3300 290 3460
+rect 350 3300 360 3460
+rect 600 3300 610 3460
+rect 670 3300 680 3460
+rect 920 3300 930 3460
+rect 990 3300 1000 3460
+rect 1230 3300 1240 3460
+rect 1300 3300 1310 3460
+rect 1550 3300 1560 3460
+rect 1620 3300 1630 3460
+rect 1860 3300 1870 3460
+rect 1930 3300 1940 3460
+rect 2180 3300 2190 3460
+rect 2250 3300 2260 3460
+rect 2500 3300 2510 3460
+rect 2570 3300 2580 3460
+rect 2760 3260 2860 3730
+rect 0 3110 2860 3260
+rect 0 2650 100 3110
+rect 280 2920 290 3080
+rect 350 2920 360 3080
+rect 600 2920 610 3080
+rect 670 2920 680 3080
+rect 920 2920 930 3080
+rect 990 2920 1000 3080
+rect 1230 2920 1240 3080
+rect 1300 2920 1310 3080
+rect 1550 2920 1560 3080
+rect 1620 2920 1630 3080
+rect 1860 2920 1870 3080
+rect 1930 2920 1940 3080
+rect 2180 2920 2190 3080
+rect 2250 2920 2260 3080
+rect 2500 2920 2510 3080
+rect 2570 2920 2580 3080
+rect 130 2680 140 2840
+rect 200 2680 210 2840
+rect 440 2680 450 2840
+rect 510 2680 520 2840
+rect 760 2680 770 2840
+rect 830 2680 840 2840
+rect 1080 2680 1090 2840
+rect 1150 2680 1160 2840
+rect 1390 2680 1400 2840
+rect 1460 2680 1470 2840
+rect 1710 2680 1720 2840
+rect 1780 2680 1790 2840
+rect 2020 2680 2030 2840
+rect 2090 2680 2100 2840
+rect 2340 2680 2350 2840
+rect 2410 2680 2420 2840
+rect 2650 2680 2660 2840
+rect 2720 2680 2730 2840
+rect 2760 2650 2860 3110
+rect 0 2500 2860 2650
+rect 0 2030 100 2500
+rect 130 2300 140 2460
+rect 200 2300 210 2460
+rect 440 2300 450 2460
+rect 510 2300 520 2460
+rect 760 2300 770 2460
+rect 830 2300 840 2460
+rect 1080 2300 1090 2460
+rect 1150 2300 1160 2460
+rect 1390 2300 1400 2460
+rect 1460 2300 1470 2460
+rect 1710 2300 1720 2460
+rect 1780 2300 1790 2460
+rect 2020 2300 2030 2460
+rect 2090 2300 2100 2460
+rect 2340 2300 2350 2460
+rect 2410 2300 2420 2460
+rect 2650 2300 2660 2460
+rect 2720 2300 2730 2460
+rect 280 2060 290 2220
+rect 350 2060 360 2220
+rect 600 2060 610 2220
+rect 670 2060 680 2220
+rect 920 2060 930 2220
+rect 990 2060 1000 2220
+rect 1230 2060 1240 2220
+rect 1300 2060 1310 2220
+rect 1550 2060 1560 2220
+rect 1620 2060 1630 2220
+rect 1860 2060 1870 2220
+rect 1930 2060 1940 2220
+rect 2180 2060 2190 2220
+rect 2250 2060 2260 2220
+rect 2500 2060 2510 2220
+rect 2570 2060 2580 2220
+rect 2760 2030 2860 2500
+rect 0 1880 2860 2030
+rect 0 1410 100 1880
+rect 280 1690 290 1850
+rect 350 1690 360 1850
+rect 600 1690 610 1850
+rect 670 1690 680 1850
+rect 920 1690 930 1850
+rect 990 1690 1000 1850
+rect 1230 1690 1240 1850
+rect 1300 1690 1310 1850
+rect 1550 1690 1560 1850
+rect 1620 1690 1630 1850
+rect 1860 1690 1870 1850
+rect 1930 1690 1940 1850
+rect 2180 1690 2190 1850
+rect 2250 1690 2260 1850
+rect 2500 1690 2510 1850
+rect 2570 1690 2580 1850
+rect 130 1450 140 1610
+rect 200 1450 210 1610
+rect 440 1450 450 1610
+rect 510 1450 520 1610
+rect 760 1450 770 1610
+rect 830 1450 840 1610
+rect 1080 1450 1090 1610
+rect 1150 1450 1160 1610
+rect 1390 1450 1400 1610
+rect 1460 1450 1470 1610
+rect 1710 1450 1720 1610
+rect 1780 1450 1790 1610
+rect 2020 1450 2030 1610
+rect 2090 1450 2100 1610
+rect 2340 1450 2350 1610
+rect 2410 1450 2420 1610
+rect 2650 1450 2660 1610
+rect 2720 1450 2730 1610
+rect 2760 1410 2860 1880
+rect 0 1260 2860 1410
+rect 0 790 100 1260
+rect 130 1070 140 1230
+rect 200 1070 210 1230
+rect 440 1070 450 1230
+rect 510 1070 520 1230
+rect 760 1070 770 1230
+rect 830 1070 840 1230
+rect 1080 1070 1090 1230
+rect 1150 1070 1160 1230
+rect 1390 1070 1400 1230
+rect 1460 1070 1470 1230
+rect 1710 1070 1720 1230
+rect 1780 1070 1790 1230
+rect 2020 1070 2030 1230
+rect 2090 1070 2100 1230
+rect 2340 1070 2350 1230
+rect 2410 1070 2420 1230
+rect 2650 1070 2660 1230
+rect 2720 1070 2730 1230
+rect 280 830 290 990
+rect 350 830 360 990
+rect 600 830 610 990
+rect 670 830 680 990
+rect 920 830 930 990
+rect 990 830 1000 990
+rect 1230 830 1240 990
+rect 1300 830 1310 990
+rect 1550 830 1560 990
+rect 1620 830 1630 990
+rect 1860 830 1870 990
+rect 1930 830 1940 990
+rect 2180 830 2190 990
+rect 2250 830 2260 990
+rect 2500 830 2510 990
+rect 2570 830 2580 990
+rect 2760 790 2860 1260
+rect 0 640 2860 790
+rect 0 180 100 640
+rect 280 450 290 610
+rect 350 450 360 610
+rect 600 450 610 610
+rect 670 450 680 610
+rect 920 450 930 610
+rect 990 450 1000 610
+rect 1230 450 1240 610
+rect 1300 450 1310 610
+rect 1550 450 1560 610
+rect 1620 450 1630 610
+rect 1860 450 1870 610
+rect 1930 450 1940 610
+rect 2180 450 2190 610
+rect 2250 450 2260 610
+rect 2500 450 2510 610
+rect 2570 450 2580 610
+rect 130 210 140 370
+rect 200 210 210 370
+rect 440 210 450 370
+rect 510 210 520 370
+rect 760 210 770 370
+rect 830 210 840 370
+rect 1080 210 1090 370
+rect 1150 210 1160 370
+rect 1390 210 1400 370
+rect 1460 210 1470 370
+rect 1710 210 1720 370
+rect 1780 210 1790 370
+rect 2020 210 2030 370
+rect 2090 210 2100 370
+rect 2340 210 2350 370
+rect 2410 210 2420 370
+rect 2650 210 2660 370
+rect 2720 210 2730 370
+rect 2760 180 2860 640
+rect 0 80 2860 180
+rect 980 46 990 50
+rect 978 -70 990 46
+rect 1950 46 1960 50
+rect 1950 -70 1962 46
+rect 978 -76 1962 -70
+<< via1 >>
+rect 140 7460 200 7620
+rect 330 7460 390 7620
+rect 520 7460 580 7620
+rect 710 7460 770 7620
+rect 910 7460 970 7620
+rect 1100 7460 1160 7620
+rect 1290 7460 1350 7620
+rect 1480 7460 1540 7620
+rect 1670 7460 1730 7620
+rect 230 7220 290 7380
+rect 430 7220 490 7380
+rect 620 7220 680 7380
+rect 810 7220 870 7380
+rect 1000 7220 1060 7380
+rect 1190 7220 1250 7380
+rect 1390 7220 1450 7380
+rect 1580 7220 1640 7380
+rect 230 6850 290 7010
+rect 430 6850 490 7010
+rect 620 6850 680 7010
+rect 810 6850 870 7010
+rect 1000 6850 1060 7010
+rect 1190 6850 1250 7010
+rect 1390 6850 1450 7010
+rect 1580 6850 1640 7010
+rect 140 6610 200 6770
+rect 330 6610 390 6770
+rect 520 6610 580 6770
+rect 710 6610 770 6770
+rect 910 6610 970 6770
+rect 1100 6610 1160 6770
+rect 1290 6610 1350 6770
+rect 1480 6610 1540 6770
+rect 1670 6610 1730 6770
+rect 140 6230 200 6390
+rect 330 6230 390 6390
+rect 520 6230 580 6390
+rect 710 6230 770 6390
+rect 910 6230 970 6390
+rect 1100 6230 1160 6390
+rect 1290 6230 1350 6390
+rect 1480 6230 1540 6390
+rect 1670 6230 1730 6390
+rect 230 5990 290 6150
+rect 430 5990 490 6150
+rect 620 5990 680 6150
+rect 810 5990 870 6150
+rect 1000 5990 1060 6150
+rect 1190 5990 1250 6150
+rect 1390 5990 1450 6150
+rect 1580 5990 1640 6150
+rect 230 5610 290 5770
+rect 430 5610 490 5770
+rect 620 5610 680 5770
+rect 810 5610 870 5770
+rect 1000 5610 1060 5770
+rect 1190 5610 1250 5770
+rect 1390 5610 1450 5770
+rect 1580 5610 1640 5770
+rect 140 5370 200 5530
+rect 330 5370 390 5530
+rect 520 5370 580 5530
+rect 710 5370 770 5530
+rect 910 5370 970 5530
+rect 1100 5370 1160 5530
+rect 1290 5370 1350 5530
+rect 1480 5370 1540 5530
+rect 1670 5370 1730 5530
+rect 1020 5140 1730 5210
+rect 140 4780 200 4940
+rect 450 4780 510 4940
+rect 770 4780 830 4940
+rect 1090 4780 1150 4940
+rect 1400 4780 1460 4940
+rect 1720 4780 1780 4940
+rect 2030 4780 2090 4940
+rect 2350 4780 2410 4940
+rect 2660 4780 2720 4940
+rect 290 4540 350 4700
+rect 610 4540 670 4700
+rect 930 4540 990 4700
+rect 1240 4540 1300 4700
+rect 1560 4540 1620 4700
+rect 1870 4540 1930 4700
+rect 2190 4540 2250 4700
+rect 2510 4540 2570 4700
+rect 290 4160 350 4320
+rect 610 4160 670 4320
+rect 930 4160 990 4320
+rect 1240 4160 1300 4320
+rect 1560 4160 1620 4320
+rect 1870 4160 1930 4320
+rect 2190 4160 2250 4320
+rect 2510 4160 2570 4320
+rect 140 3920 200 4080
+rect 450 3920 510 4080
+rect 770 3920 830 4080
+rect 1090 3920 1150 4080
+rect 1400 3920 1460 4080
+rect 1720 3920 1780 4080
+rect 2030 3920 2090 4080
+rect 2350 3920 2410 4080
+rect 2660 3920 2720 4080
+rect 140 3540 200 3700
+rect 450 3540 510 3700
+rect 770 3540 830 3700
+rect 1090 3540 1150 3700
+rect 1400 3540 1460 3700
+rect 1720 3540 1780 3700
+rect 2030 3540 2090 3700
+rect 2350 3540 2410 3700
+rect 2660 3540 2720 3700
+rect 290 3300 350 3460
+rect 610 3300 670 3460
+rect 930 3300 990 3460
+rect 1240 3300 1300 3460
+rect 1560 3300 1620 3460
+rect 1870 3300 1930 3460
+rect 2190 3300 2250 3460
+rect 2510 3300 2570 3460
+rect 290 2920 350 3080
+rect 610 2920 670 3080
+rect 930 2920 990 3080
+rect 1240 2920 1300 3080
+rect 1560 2920 1620 3080
+rect 1870 2920 1930 3080
+rect 2190 2920 2250 3080
+rect 2510 2920 2570 3080
+rect 140 2680 200 2840
+rect 450 2680 510 2840
+rect 770 2680 830 2840
+rect 1090 2680 1150 2840
+rect 1400 2680 1460 2840
+rect 1720 2680 1780 2840
+rect 2030 2680 2090 2840
+rect 2350 2680 2410 2840
+rect 2660 2680 2720 2840
+rect 140 2300 200 2460
+rect 450 2300 510 2460
+rect 770 2300 830 2460
+rect 1090 2300 1150 2460
+rect 1400 2300 1460 2460
+rect 1720 2300 1780 2460
+rect 2030 2300 2090 2460
+rect 2350 2300 2410 2460
+rect 2660 2300 2720 2460
+rect 290 2060 350 2220
+rect 610 2060 670 2220
+rect 930 2060 990 2220
+rect 1240 2060 1300 2220
+rect 1560 2060 1620 2220
+rect 1870 2060 1930 2220
+rect 2190 2060 2250 2220
+rect 2510 2060 2570 2220
+rect 290 1690 350 1850
+rect 610 1690 670 1850
+rect 930 1690 990 1850
+rect 1240 1690 1300 1850
+rect 1560 1690 1620 1850
+rect 1870 1690 1930 1850
+rect 2190 1690 2250 1850
+rect 2510 1690 2570 1850
+rect 140 1450 200 1610
+rect 450 1450 510 1610
+rect 770 1450 830 1610
+rect 1090 1450 1150 1610
+rect 1400 1450 1460 1610
+rect 1720 1450 1780 1610
+rect 2030 1450 2090 1610
+rect 2350 1450 2410 1610
+rect 2660 1450 2720 1610
+rect 140 1070 200 1230
+rect 450 1070 510 1230
+rect 770 1070 830 1230
+rect 1090 1070 1150 1230
+rect 1400 1070 1460 1230
+rect 1720 1070 1780 1230
+rect 2030 1070 2090 1230
+rect 2350 1070 2410 1230
+rect 2660 1070 2720 1230
+rect 290 830 350 990
+rect 610 830 670 990
+rect 930 830 990 990
+rect 1240 830 1300 990
+rect 1560 830 1620 990
+rect 1870 830 1930 990
+rect 2190 830 2250 990
+rect 2510 830 2570 990
+rect 290 450 350 610
+rect 610 450 670 610
+rect 930 450 990 610
+rect 1240 450 1300 610
+rect 1560 450 1620 610
+rect 1870 450 1930 610
+rect 2190 450 2250 610
+rect 2510 450 2570 610
+rect 140 210 200 370
+rect 450 210 510 370
+rect 770 210 830 370
+rect 1090 210 1150 370
+rect 1400 210 1460 370
+rect 1720 210 1780 370
+rect 2030 210 2090 370
+rect 2350 210 2410 370
+rect 2660 210 2720 370
+rect 990 40 1950 50
+rect 990 -60 1950 40
+<< metal2 >>
+rect 140 7620 200 7630
+rect 330 7620 390 7630
+rect 520 7620 580 7630
+rect 710 7620 770 7630
+rect 910 7620 1730 7630
+rect 200 7460 330 7620
+rect 390 7460 520 7620
+rect 580 7460 710 7620
+rect 770 7460 910 7620
+rect 970 7460 990 7620
+rect 140 7450 200 7460
+rect 330 7450 390 7460
+rect 520 7450 580 7460
+rect 710 7450 770 7460
+rect 910 7450 1730 7460
+rect 140 7380 870 7390
+rect 1000 7380 1060 7390
+rect 1190 7380 1250 7390
+rect 1390 7380 1450 7390
+rect 1580 7380 1640 7390
+rect 870 7220 1000 7380
+rect 1060 7220 1190 7380
+rect 1250 7220 1390 7380
+rect 1450 7220 1580 7380
+rect 140 7210 870 7220
+rect 1000 7210 1060 7220
+rect 1190 7210 1250 7220
+rect 1390 7210 1450 7220
+rect 1580 7210 1640 7220
+rect 140 7010 870 7020
+rect 1000 7010 1060 7020
+rect 1190 7010 1250 7020
+rect 1390 7010 1450 7020
+rect 1580 7010 1640 7020
+rect 870 6850 1000 7010
+rect 1060 6850 1190 7010
+rect 1250 6850 1390 7010
+rect 1450 6850 1580 7010
+rect 140 6840 870 6850
+rect 1000 6840 1060 6850
+rect 1190 6840 1250 6850
+rect 1390 6840 1450 6850
+rect 1580 6840 1640 6850
+rect 140 6770 200 6780
+rect 330 6770 390 6780
+rect 520 6770 580 6780
+rect 710 6770 770 6780
+rect 910 6770 1730 6780
+rect 200 6610 330 6770
+rect 390 6610 520 6770
+rect 580 6610 710 6770
+rect 770 6610 910 6770
+rect 970 6610 990 6770
+rect 140 6600 200 6610
+rect 330 6600 390 6610
+rect 520 6600 580 6610
+rect 710 6600 770 6610
+rect 910 6600 1730 6610
+rect 140 6390 200 6400
+rect 330 6390 390 6400
+rect 520 6390 580 6400
+rect 710 6390 770 6400
+rect 910 6390 1730 6400
+rect 200 6230 330 6390
+rect 390 6230 520 6390
+rect 580 6230 710 6390
+rect 770 6230 910 6390
+rect 970 6230 990 6390
+rect 140 6220 200 6230
+rect 330 6220 390 6230
+rect 520 6220 580 6230
+rect 710 6220 770 6230
+rect 910 6220 1730 6230
+rect 140 6150 870 6160
+rect 1000 6150 1060 6160
+rect 1190 6150 1250 6160
+rect 1390 6150 1450 6160
+rect 1580 6150 1640 6160
+rect 870 5990 1000 6150
+rect 1060 5990 1190 6150
+rect 1250 5990 1390 6150
+rect 1450 5990 1580 6150
+rect 140 5980 870 5990
+rect 1000 5980 1060 5990
+rect 1190 5980 1250 5990
+rect 1390 5980 1450 5990
+rect 1580 5980 1640 5990
+rect 140 5770 870 5780
+rect 1000 5770 1060 5780
+rect 1190 5770 1250 5780
+rect 1390 5770 1450 5780
+rect 1580 5770 1640 5780
+rect 870 5610 1000 5770
+rect 1060 5610 1190 5770
+rect 1250 5610 1390 5770
+rect 1450 5610 1580 5770
+rect 140 5600 870 5610
+rect 1000 5600 1060 5610
+rect 1190 5600 1250 5610
+rect 1390 5600 1450 5610
+rect 1580 5600 1640 5610
+rect 140 5530 200 5540
+rect 330 5530 390 5540
+rect 520 5530 580 5540
+rect 710 5530 770 5540
+rect 910 5530 1730 5540
+rect 200 5370 330 5530
+rect 390 5370 520 5530
+rect 580 5370 710 5530
+rect 770 5370 910 5530
+rect 970 5370 990 5530
+rect 140 5360 200 5370
+rect 330 5360 390 5370
+rect 520 5360 580 5370
+rect 710 5360 770 5370
+rect 910 5360 1730 5370
+rect 1020 5210 1740 5230
+rect 1730 5140 1740 5210
+rect 1020 4950 1740 5140
+rect 140 4940 200 4950
+rect 450 4940 510 4950
+rect 770 4940 830 4950
+rect 1010 4940 1900 4950
+rect 2030 4940 2090 4950
+rect 2350 4940 2410 4950
+rect 2660 4940 2720 4950
+rect 200 4780 450 4940
+rect 510 4780 770 4940
+rect 830 4780 1010 4940
+rect 1900 4780 2030 4940
+rect 2090 4780 2350 4940
+rect 2410 4780 2660 4940
+rect 140 4770 200 4780
+rect 450 4770 510 4780
+rect 770 4770 830 4780
+rect 1010 4770 1900 4780
+rect 2030 4770 2090 4780
+rect 2350 4770 2410 4780
+rect 2660 4770 2720 4780
+rect 140 4700 870 4710
+rect 930 4700 990 4710
+rect 1240 4700 1300 4710
+rect 1560 4700 1620 4710
+rect 1870 4700 1930 4710
+rect 2190 4700 2250 4710
+rect 2510 4700 2570 4710
+rect 870 4540 930 4700
+rect 990 4540 1240 4700
+rect 1300 4540 1560 4700
+rect 1620 4540 1870 4700
+rect 1930 4540 2190 4700
+rect 2250 4540 2510 4700
+rect 140 4530 870 4540
+rect 930 4530 990 4540
+rect 1240 4530 1300 4540
+rect 1560 4530 1620 4540
+rect 1870 4530 1930 4540
+rect 2190 4530 2250 4540
+rect 2510 4530 2570 4540
+rect 140 4320 870 4330
+rect 930 4320 990 4330
+rect 1240 4320 1300 4330
+rect 1560 4320 1620 4330
+rect 1870 4320 1930 4330
+rect 2190 4320 2250 4330
+rect 2510 4320 2570 4330
+rect 870 4160 930 4320
+rect 990 4160 1240 4320
+rect 1300 4160 1560 4320
+rect 1620 4160 1870 4320
+rect 1930 4160 2190 4320
+rect 2250 4160 2510 4320
+rect 140 4150 870 4160
+rect 930 4150 990 4160
+rect 1240 4150 1300 4160
+rect 1560 4150 1620 4160
+rect 1870 4150 1930 4160
+rect 2190 4150 2250 4160
+rect 2510 4150 2570 4160
+rect 140 4080 200 4090
+rect 450 4080 510 4090
+rect 770 4080 830 4090
+rect 1010 4080 1900 4090
+rect 2030 4080 2090 4090
+rect 2350 4080 2410 4090
+rect 2660 4080 2720 4090
+rect 200 3920 450 4080
+rect 510 3920 770 4080
+rect 830 3920 1010 4080
+rect 1900 3920 2030 4080
+rect 2090 3920 2350 4080
+rect 2410 3920 2660 4080
+rect 140 3910 200 3920
+rect 450 3910 510 3920
+rect 770 3910 830 3920
+rect 1010 3910 1900 3920
+rect 2030 3910 2090 3920
+rect 2350 3910 2410 3920
+rect 2660 3910 2720 3920
+rect 140 3700 200 3710
+rect 450 3700 510 3710
+rect 770 3700 830 3710
+rect 1010 3700 1900 3710
+rect 2030 3700 2090 3710
+rect 2350 3700 2410 3710
+rect 2660 3700 2720 3710
+rect 200 3540 450 3700
+rect 510 3540 770 3700
+rect 830 3540 1010 3700
+rect 1900 3540 2030 3700
+rect 2090 3540 2350 3700
+rect 2410 3540 2660 3700
+rect 140 3530 200 3540
+rect 450 3530 510 3540
+rect 770 3530 830 3540
+rect 1010 3530 1900 3540
+rect 2030 3530 2090 3540
+rect 2350 3530 2410 3540
+rect 2660 3530 2720 3540
+rect 140 3460 870 3470
+rect 930 3460 990 3470
+rect 1240 3460 1300 3470
+rect 1560 3460 1620 3470
+rect 1870 3460 1930 3470
+rect 2190 3460 2250 3470
+rect 2510 3460 2570 3470
+rect 870 3300 930 3460
+rect 990 3300 1240 3460
+rect 1300 3300 1560 3460
+rect 1620 3300 1870 3460
+rect 1930 3300 2190 3460
+rect 2250 3300 2510 3460
+rect 140 3290 870 3300
+rect 930 3290 990 3300
+rect 1240 3290 1300 3300
+rect 1560 3290 1620 3300
+rect 1870 3290 1930 3300
+rect 2190 3290 2250 3300
+rect 2510 3290 2570 3300
+rect 140 3080 870 3090
+rect 930 3080 990 3090
+rect 1240 3080 1300 3090
+rect 1560 3080 1620 3090
+rect 1870 3080 1930 3090
+rect 2190 3080 2250 3090
+rect 2510 3080 2570 3090
+rect 870 2920 930 3080
+rect 990 2920 1240 3080
+rect 1300 2920 1560 3080
+rect 1620 2920 1870 3080
+rect 1930 2920 2190 3080
+rect 2250 2920 2510 3080
+rect 140 2910 870 2920
+rect 930 2910 990 2920
+rect 1240 2910 1300 2920
+rect 1560 2910 1620 2920
+rect 1870 2910 1930 2920
+rect 2190 2910 2250 2920
+rect 2510 2910 2570 2920
+rect 140 2840 200 2850
+rect 450 2840 510 2850
+rect 770 2840 830 2850
+rect 1010 2840 1900 2850
+rect 2030 2840 2090 2850
+rect 2350 2840 2410 2850
+rect 2660 2840 2720 2850
+rect 200 2680 450 2840
+rect 510 2680 770 2840
+rect 830 2680 1010 2840
+rect 1900 2680 2030 2840
+rect 2090 2680 2350 2840
+rect 2410 2680 2660 2840
+rect 140 2670 200 2680
+rect 450 2670 510 2680
+rect 770 2670 830 2680
+rect 1010 2670 1900 2680
+rect 2030 2670 2090 2680
+rect 2350 2670 2410 2680
+rect 2660 2670 2720 2680
+rect 140 2460 200 2470
+rect 450 2460 510 2470
+rect 770 2460 830 2470
+rect 1010 2460 1900 2470
+rect 2030 2460 2090 2470
+rect 2350 2460 2410 2470
+rect 2660 2460 2720 2470
+rect 200 2300 450 2460
+rect 510 2300 770 2460
+rect 830 2300 1010 2460
+rect 1900 2300 2030 2460
+rect 2090 2300 2350 2460
+rect 2410 2300 2660 2460
+rect 140 2290 200 2300
+rect 450 2290 510 2300
+rect 770 2290 830 2300
+rect 1010 2290 1900 2300
+rect 2030 2290 2090 2300
+rect 2350 2290 2410 2300
+rect 2660 2290 2720 2300
+rect 140 2220 870 2230
+rect 930 2220 990 2230
+rect 1240 2220 1300 2230
+rect 1560 2220 1620 2230
+rect 1870 2220 1930 2230
+rect 2190 2220 2250 2230
+rect 2510 2220 2570 2230
+rect 870 2060 930 2220
+rect 990 2060 1240 2220
+rect 1300 2060 1560 2220
+rect 1620 2060 1870 2220
+rect 1930 2060 2190 2220
+rect 2250 2060 2510 2220
+rect 140 2050 870 2060
+rect 930 2050 990 2060
+rect 1240 2050 1300 2060
+rect 1560 2050 1620 2060
+rect 1870 2050 1930 2060
+rect 2190 2050 2250 2060
+rect 2510 2050 2570 2060
+rect 140 1850 870 1860
+rect 930 1850 990 1860
+rect 1240 1850 1300 1860
+rect 1560 1850 1620 1860
+rect 1870 1850 1930 1860
+rect 2190 1850 2250 1860
+rect 2510 1850 2570 1860
+rect 870 1690 930 1850
+rect 990 1690 1240 1850
+rect 1300 1690 1560 1850
+rect 1620 1690 1870 1850
+rect 1930 1690 2190 1850
+rect 2250 1690 2510 1850
+rect 140 1680 870 1690
+rect 930 1680 990 1690
+rect 1240 1680 1300 1690
+rect 1560 1680 1620 1690
+rect 1870 1680 1930 1690
+rect 2190 1680 2250 1690
+rect 2510 1680 2570 1690
+rect 140 1610 200 1620
+rect 450 1610 510 1620
+rect 770 1610 830 1620
+rect 1010 1610 1900 1620
+rect 2030 1610 2090 1620
+rect 2350 1610 2410 1620
+rect 2660 1610 2720 1620
+rect 200 1450 450 1610
+rect 510 1450 770 1610
+rect 830 1450 1010 1610
+rect 1900 1450 2030 1610
+rect 2090 1450 2350 1610
+rect 2410 1450 2660 1610
+rect 140 1440 200 1450
+rect 450 1440 510 1450
+rect 770 1440 830 1450
+rect 1010 1440 1900 1450
+rect 2030 1440 2090 1450
+rect 2350 1440 2410 1450
+rect 2660 1440 2720 1450
+rect 140 1230 200 1240
+rect 450 1230 510 1240
+rect 770 1230 830 1240
+rect 1010 1230 1900 1240
+rect 2030 1230 2090 1240
+rect 2350 1230 2410 1240
+rect 2660 1230 2720 1240
+rect 200 1070 450 1230
+rect 510 1070 770 1230
+rect 830 1070 1010 1230
+rect 1900 1070 2030 1230
+rect 2090 1070 2350 1230
+rect 2410 1070 2660 1230
+rect 140 1060 200 1070
+rect 450 1060 510 1070
+rect 770 1060 830 1070
+rect 1010 1060 1900 1070
+rect 2030 1060 2090 1070
+rect 2350 1060 2410 1070
+rect 2660 1060 2720 1070
+rect 140 990 870 1000
+rect 930 990 990 1000
+rect 1240 990 1300 1000
+rect 1560 990 1620 1000
+rect 1870 990 1930 1000
+rect 2190 990 2250 1000
+rect 2510 990 2570 1000
+rect 870 830 930 990
+rect 990 830 1240 990
+rect 1300 830 1560 990
+rect 1620 830 1870 990
+rect 1930 830 2190 990
+rect 2250 830 2510 990
+rect 140 820 870 830
+rect 930 820 990 830
+rect 1240 820 1300 830
+rect 1560 820 1620 830
+rect 1870 820 1930 830
+rect 2190 820 2250 830
+rect 2510 820 2570 830
+rect 140 610 870 620
+rect 930 610 990 620
+rect 1240 610 1300 620
+rect 1560 610 1620 620
+rect 1870 610 1930 620
+rect 2190 610 2250 620
+rect 2510 610 2570 620
+rect 870 450 930 610
+rect 990 450 1240 610
+rect 1300 450 1560 610
+rect 1620 450 1870 610
+rect 1930 450 2190 610
+rect 2250 450 2510 610
+rect 140 440 870 450
+rect 930 440 990 450
+rect 1240 440 1300 450
+rect 1560 440 1620 450
+rect 1870 440 1930 450
+rect 2190 440 2250 450
+rect 2510 440 2570 450
+rect 140 370 200 380
+rect 450 370 510 380
+rect 770 370 830 380
+rect 1010 370 1900 380
+rect 2030 370 2090 380
+rect 2350 370 2410 380
+rect 2660 370 2720 380
+rect 200 210 450 370
+rect 510 210 770 370
+rect 830 210 1010 370
+rect 1900 210 2030 370
+rect 2090 210 2350 370
+rect 2410 210 2660 370
+rect 140 200 200 210
+rect 450 200 510 210
+rect 770 200 830 210
+rect 990 50 1950 210
+rect 2030 200 2090 210
+rect 2350 200 2410 210
+rect 2660 200 2720 210
+rect 990 -70 1950 -60
+<< via2 >>
+rect 990 7460 1100 7620
+rect 1100 7460 1160 7620
+rect 1160 7460 1290 7620
+rect 1290 7460 1350 7620
+rect 1350 7460 1480 7620
+rect 1480 7460 1540 7620
+rect 1540 7460 1670 7620
+rect 1670 7460 1730 7620
+rect 140 7220 230 7380
+rect 230 7220 290 7380
+rect 290 7220 430 7380
+rect 430 7220 490 7380
+rect 490 7220 620 7380
+rect 620 7220 680 7380
+rect 680 7220 810 7380
+rect 810 7220 870 7380
+rect 140 6850 230 7010
+rect 230 6850 290 7010
+rect 290 6850 430 7010
+rect 430 6850 490 7010
+rect 490 6850 620 7010
+rect 620 6850 680 7010
+rect 680 6850 810 7010
+rect 810 6850 870 7010
+rect 990 6610 1100 6770
+rect 1100 6610 1160 6770
+rect 1160 6610 1290 6770
+rect 1290 6610 1350 6770
+rect 1350 6610 1480 6770
+rect 1480 6610 1540 6770
+rect 1540 6610 1670 6770
+rect 1670 6610 1730 6770
+rect 990 6230 1100 6390
+rect 1100 6230 1160 6390
+rect 1160 6230 1290 6390
+rect 1290 6230 1350 6390
+rect 1350 6230 1480 6390
+rect 1480 6230 1540 6390
+rect 1540 6230 1670 6390
+rect 1670 6230 1730 6390
+rect 140 5990 230 6150
+rect 230 5990 290 6150
+rect 290 5990 430 6150
+rect 430 5990 490 6150
+rect 490 5990 620 6150
+rect 620 5990 680 6150
+rect 680 5990 810 6150
+rect 810 5990 870 6150
+rect 140 5610 230 5770
+rect 230 5610 290 5770
+rect 290 5610 430 5770
+rect 430 5610 490 5770
+rect 490 5610 620 5770
+rect 620 5610 680 5770
+rect 680 5610 810 5770
+rect 810 5610 870 5770
+rect 990 5370 1100 5530
+rect 1100 5370 1160 5530
+rect 1160 5370 1290 5530
+rect 1290 5370 1350 5530
+rect 1350 5370 1480 5530
+rect 1480 5370 1540 5530
+rect 1540 5370 1670 5530
+rect 1670 5370 1730 5530
+rect 1010 4780 1090 4940
+rect 1090 4780 1150 4940
+rect 1150 4780 1400 4940
+rect 1400 4780 1460 4940
+rect 1460 4780 1720 4940
+rect 1720 4780 1780 4940
+rect 1780 4780 1900 4940
+rect 140 4540 290 4700
+rect 290 4540 350 4700
+rect 350 4540 610 4700
+rect 610 4540 670 4700
+rect 670 4540 870 4700
+rect 140 4160 290 4320
+rect 290 4160 350 4320
+rect 350 4160 610 4320
+rect 610 4160 670 4320
+rect 670 4160 870 4320
+rect 1010 3920 1090 4080
+rect 1090 3920 1150 4080
+rect 1150 3920 1400 4080
+rect 1400 3920 1460 4080
+rect 1460 3920 1720 4080
+rect 1720 3920 1780 4080
+rect 1780 3920 1900 4080
+rect 1010 3540 1090 3700
+rect 1090 3540 1150 3700
+rect 1150 3540 1400 3700
+rect 1400 3540 1460 3700
+rect 1460 3540 1720 3700
+rect 1720 3540 1780 3700
+rect 1780 3540 1900 3700
+rect 140 3300 290 3460
+rect 290 3300 350 3460
+rect 350 3300 610 3460
+rect 610 3300 670 3460
+rect 670 3300 870 3460
+rect 140 2920 290 3080
+rect 290 2920 350 3080
+rect 350 2920 610 3080
+rect 610 2920 670 3080
+rect 670 2920 870 3080
+rect 1010 2680 1090 2840
+rect 1090 2680 1150 2840
+rect 1150 2680 1400 2840
+rect 1400 2680 1460 2840
+rect 1460 2680 1720 2840
+rect 1720 2680 1780 2840
+rect 1780 2680 1900 2840
+rect 1010 2300 1090 2460
+rect 1090 2300 1150 2460
+rect 1150 2300 1400 2460
+rect 1400 2300 1460 2460
+rect 1460 2300 1720 2460
+rect 1720 2300 1780 2460
+rect 1780 2300 1900 2460
+rect 140 2060 290 2220
+rect 290 2060 350 2220
+rect 350 2060 610 2220
+rect 610 2060 670 2220
+rect 670 2060 870 2220
+rect 140 1690 290 1850
+rect 290 1690 350 1850
+rect 350 1690 610 1850
+rect 610 1690 670 1850
+rect 670 1690 870 1850
+rect 1010 1450 1090 1610
+rect 1090 1450 1150 1610
+rect 1150 1450 1400 1610
+rect 1400 1450 1460 1610
+rect 1460 1450 1720 1610
+rect 1720 1450 1780 1610
+rect 1780 1450 1900 1610
+rect 1010 1070 1090 1230
+rect 1090 1070 1150 1230
+rect 1150 1070 1400 1230
+rect 1400 1070 1460 1230
+rect 1460 1070 1720 1230
+rect 1720 1070 1780 1230
+rect 1780 1070 1900 1230
+rect 140 830 290 990
+rect 290 830 350 990
+rect 350 830 610 990
+rect 610 830 670 990
+rect 670 830 870 990
+rect 140 450 290 610
+rect 290 450 350 610
+rect 350 450 610 610
+rect 610 450 670 610
+rect 670 450 870 610
+rect 1010 210 1090 370
+rect 1090 210 1150 370
+rect 1150 210 1400 370
+rect 1400 210 1460 370
+rect 1460 210 1720 370
+rect 1720 210 1780 370
+rect 1780 210 1900 370
+<< metal3 >>
+rect 990 7625 1730 7840
+rect 980 7620 1740 7625
+rect 980 7460 990 7620
+rect 1730 7460 1740 7620
+rect 980 7455 1740 7460
+rect 140 7385 870 7390
+rect 130 7380 880 7385
+rect 130 7220 140 7380
+rect 870 7220 880 7380
+rect 130 7215 880 7220
+rect 140 7015 870 7215
+rect 130 7010 880 7015
+rect 130 6850 140 7010
+rect 870 6850 880 7010
+rect 130 6845 880 6850
+rect 140 6155 870 6845
+rect 990 6775 1730 7455
+rect 980 6770 1740 6775
+rect 980 6610 990 6770
+rect 1730 6610 1740 6770
+rect 980 6605 1740 6610
+rect 990 6395 1730 6605
+rect 980 6390 1740 6395
+rect 980 6230 990 6390
+rect 1730 6230 1740 6390
+rect 980 6225 1740 6230
+rect 130 6150 880 6155
+rect 130 5990 140 6150
+rect 870 5990 880 6150
+rect 130 5985 880 5990
+rect 140 5775 870 5985
+rect 130 5770 880 5775
+rect 130 5610 140 5770
+rect 870 5610 880 5770
+rect 130 5605 880 5610
+rect 140 4705 870 5605
+rect 990 5535 1730 6225
+rect 980 5530 1740 5535
+rect 980 5370 990 5530
+rect 1730 5370 1740 5530
+rect 980 5365 1740 5370
+rect 1000 4940 1910 4945
+rect 1000 4780 1010 4940
+rect 1900 4780 1910 4940
+rect 1000 4775 1910 4780
+rect 130 4700 880 4705
+rect 130 4540 140 4700
+rect 870 4540 880 4700
+rect 130 4535 880 4540
+rect 140 4325 870 4535
+rect 130 4320 880 4325
+rect 130 4160 140 4320
+rect 870 4160 880 4320
+rect 130 4155 880 4160
+rect 140 3465 870 4155
+rect 1010 4085 1900 4775
+rect 1000 4080 1910 4085
+rect 1000 3920 1010 4080
+rect 1900 3920 1910 4080
+rect 1000 3915 1910 3920
+rect 1010 3705 1900 3915
+rect 1000 3700 1910 3705
+rect 1000 3540 1010 3700
+rect 1900 3540 1910 3700
+rect 1000 3535 1910 3540
+rect 130 3460 880 3465
+rect 130 3300 140 3460
+rect 870 3300 880 3460
+rect 130 3295 880 3300
+rect 140 3085 870 3295
+rect 130 3080 880 3085
+rect 130 2920 140 3080
+rect 870 2920 880 3080
+rect 130 2915 880 2920
+rect 140 2225 870 2915
+rect 1010 2845 1900 3535
+rect 1000 2840 1910 2845
+rect 1000 2680 1010 2840
+rect 1900 2680 1910 2840
+rect 1000 2675 1910 2680
+rect 1010 2465 1900 2675
+rect 1000 2460 1910 2465
+rect 1000 2300 1010 2460
+rect 1900 2300 1910 2460
+rect 1000 2295 1910 2300
+rect 130 2220 880 2225
+rect 130 2060 140 2220
+rect 870 2060 880 2220
+rect 130 2055 880 2060
+rect 140 1855 870 2055
+rect 130 1850 880 1855
+rect 130 1690 140 1850
+rect 870 1690 880 1850
+rect 130 1685 880 1690
+rect 140 995 870 1685
+rect 1010 1615 1900 2295
+rect 1000 1610 1910 1615
+rect 1000 1450 1010 1610
+rect 1900 1450 1910 1610
+rect 1000 1445 1910 1450
+rect 1010 1235 1900 1445
+rect 1000 1230 1910 1235
+rect 1000 1070 1010 1230
+rect 1900 1070 1910 1230
+rect 1000 1065 1910 1070
+rect 130 990 880 995
+rect 130 830 140 990
+rect 870 830 880 990
+rect 130 825 880 830
+rect 140 615 870 825
+rect 130 610 880 615
+rect 130 450 140 610
+rect 870 450 880 610
+rect 130 445 880 450
+rect 1010 375 1900 1065
+rect 1000 370 1910 375
+rect 1000 210 1010 370
+rect 1900 210 1910 370
+rect 1000 205 1910 210
+use outd_cmirror_transistors  outd_cmirror_transistors_0
+timestamp 1647868710
+transform 1 0 180 0 1 5340
+box -180 -5340 2682 2494
+<< end >>
diff --git a/mag/outd/outd_cmirror_transistors.ext b/mag/outd/outd_cmirror_transistors.ext
new file mode 100644
index 0000000..b6beca2
--- /dev/null
+++ b/mag/outd/outd_cmirror_transistors.ext
@@ -0,0 +1,375 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_ED72KE sky130_fd_pr__nfet_01v8_ED72KE_0 1 0 755 0 1 1157
+use sky130_fd_pr__nfet_01v8_A574RZ sky130_fd_pr__nfet_01v8_A574RZ_0 1 0 1251 0 1 -2767
+node "a_2_n58#" 1671 924.627 2 -58 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_452#" 1671 529.433 2 452 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_560#" 1671 529.839 2 560 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_1070#" 1671 529.433 2 1070 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_1178#" 1671 529.839 2 1178 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_1688#" 1671 529.433 2 1688 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_1796#" 1671 529.839 2 1796 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+node "a_2_2306#" 1671 928.458 2 2306 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 99396 3144 0 0 51204 3080 69276 3104 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_2_452#" "a_2_n58#" 266.016
+cap "a_2_1070#" "a_2_560#" 266.016
+cap "a_2_1178#" "a_2_1070#" 2075.72
+cap "a_2_1688#" "a_2_1178#" 266.016
+cap "a_2_452#" "a_2_560#" 2075.72
+cap "a_2_1796#" "a_2_1688#" 2075.72
+cap "a_2_2306#" "a_2_1796#" 266.016
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 37.8146
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" 0.829213
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n503_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" 392.405
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n919_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#" 7.29787
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" 3.91106
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 4.6125
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n761_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" 4.6125
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" 70.1717
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" 113.584
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875#" 14.3656
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 10.2847
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#" 0.148936
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_287_1963#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" 0.170046
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" 10.8721
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#" 4.24852
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#" 10.3057
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_345_1875#" 4.31915
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" -6.58824
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_1963#" 4.76798
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_129_1963#" 1.85938
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_29_1875#" 7.44681
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 0.980023
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" -500.931
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 37.8146
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" 9.13307
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n287_1875#" 2.15406
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" -1.6208
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" 9.13307
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n603_1875#" 2.15406
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" -0.786201
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_1963#" 0.980023
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n129_1875#" 2.15406
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 3.92308
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" -1.35413
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n661_1963#" 0.980023
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" -582.232
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" 10.8721
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" 10.8721
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" 5.81235
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n977_1963#" 0.980023
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_n509#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1077_1875#" 2.15406
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" -10.6988
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_187_1875#" 1.5453
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 134.084
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109#" 12.8142
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" -5.16627
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 3.92308
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 3.92308
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" -10.6988
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" -83.9001
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -0.3391
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_n1127#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_n1127#" 63.9121
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" 105.358
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 10.2847
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n509#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_n1127#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" -165.201
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" -5.95248
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" 96.225
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_n1127#" 4.6125
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" -500.931
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" -1.6208
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" 10.8721
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 39.6482
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 307.515
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n417_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" 10.8721
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n609_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 3.92308
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_351_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_727#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n513_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n225_727#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n321_727#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_159_109#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 134.084
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_727#" 15.4846
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -7
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 8.45106
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" -6.58824
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 74.7842
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 63.9121
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_543_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" -165.201
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_639_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 149.568
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_727#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_447_109#" -10.6988
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_735_109#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" 4.6125
+cap "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" 91.7985
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_687_n597#" "a_2_560#" -204549 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -56130824 -5378 0 0 -19876104 -3234 -57718104 -3328 0 0 0 0 0 0 0 0 0 0
+merge "a_2_560#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n597#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n597#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_n87#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n87#" "a_2_1070#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_687_n705#" "a_2_n58#" -234699 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -67421288 -5378 0 0 -19876104 -3234 -57718104 -3328 0 0 0 0 0 0 0 0 0 0
+merge "a_2_n58#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_n1215#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_n705#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n1215#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_n1215#" "a_2_452#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "VSUBS"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_21#" "a_2_1178#" -214005 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -58753320 -5378 0 0 -20741328 -3234 -60353304 -3328 0 0 0 0 0 0 0 0 0 0
+merge "a_2_1178#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_687_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_687_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_531#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_21#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_21#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_531#" "a_2_1688#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_687_639#" "a_2_2306#" -206537 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -59686376 -5378 0 0 -16760880 -3234 -50333016 -3328 0 0 0 0 0 0 0 0 0 0
+merge "a_2_2306#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_591_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_495_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_399_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_303_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_207_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_111_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_15_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n81_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n177_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n273_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n369_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n465_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n561_1149#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_639#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n657_639#" "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#"
+merge "sky130_fd_pr__nfet_01v8_ED72KE_0/a_n753_1149#" "a_2_1796#"
diff --git a/mag/outd/outd_cmirror_transistors.mag b/mag/outd/outd_cmirror_transistors.mag
new file mode 100644
index 0000000..cb38b18
--- /dev/null
+++ b/mag/outd/outd_cmirror_transistors.mag
@@ -0,0 +1,403 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect 2 2306 1508 2372
+rect 2 1796 1508 1862
+rect 2 1688 1508 1754
+rect 2 1178 1508 1244
+rect 2 1070 1508 1136
+rect 2 560 1508 626
+rect 2 452 1508 518
+rect 2 -58 1508 8
+<< poly >>
+rect 2 2356 1508 2372
+rect 2 2322 114 2356
+rect 148 2322 306 2356
+rect 340 2322 498 2356
+rect 532 2322 690 2356
+rect 724 2322 882 2356
+rect 916 2322 1074 2356
+rect 1108 2322 1266 2356
+rect 1300 2322 1458 2356
+rect 1492 2322 1508 2356
+rect 2 2306 1508 2322
+rect 2 1846 1508 1862
+rect 2 1812 18 1846
+rect 52 1812 210 1846
+rect 244 1812 402 1846
+rect 436 1812 594 1846
+rect 628 1812 786 1846
+rect 820 1812 978 1846
+rect 1012 1812 1170 1846
+rect 1204 1812 1362 1846
+rect 1396 1812 1508 1846
+rect 2 1796 1508 1812
+rect 2 1738 1508 1754
+rect 2 1704 18 1738
+rect 52 1704 210 1738
+rect 244 1704 402 1738
+rect 436 1704 594 1738
+rect 628 1704 786 1738
+rect 820 1704 978 1738
+rect 1012 1704 1170 1738
+rect 1204 1704 1362 1738
+rect 1396 1704 1508 1738
+rect 2 1688 1508 1704
+rect 2 1228 1508 1244
+rect 2 1194 114 1228
+rect 148 1194 306 1228
+rect 340 1194 498 1228
+rect 532 1194 690 1228
+rect 724 1194 882 1228
+rect 916 1194 1074 1228
+rect 1108 1194 1266 1228
+rect 1300 1194 1458 1228
+rect 1492 1194 1508 1228
+rect 2 1178 1508 1194
+rect 2 1120 1508 1136
+rect 2 1086 114 1120
+rect 148 1086 306 1120
+rect 340 1086 498 1120
+rect 532 1086 690 1120
+rect 724 1086 882 1120
+rect 916 1086 1074 1120
+rect 1108 1086 1266 1120
+rect 1300 1086 1458 1120
+rect 1492 1086 1508 1120
+rect 2 1070 1508 1086
+rect 2 610 1508 626
+rect 2 576 18 610
+rect 52 576 210 610
+rect 244 576 402 610
+rect 436 576 594 610
+rect 628 576 786 610
+rect 820 576 978 610
+rect 1012 576 1170 610
+rect 1204 576 1362 610
+rect 1396 576 1508 610
+rect 2 560 1508 576
+rect 2 502 1508 518
+rect 2 468 18 502
+rect 52 468 210 502
+rect 244 468 402 502
+rect 436 468 594 502
+rect 628 468 786 502
+rect 820 468 978 502
+rect 1012 468 1170 502
+rect 1204 468 1362 502
+rect 1396 468 1508 502
+rect 2 452 1508 468
+rect 2 -8 1508 8
+rect 2 -42 114 -8
+rect 148 -42 306 -8
+rect 340 -42 498 -8
+rect 532 -42 690 -8
+rect 724 -42 882 -8
+rect 916 -42 1074 -8
+rect 1108 -42 1266 -8
+rect 1300 -42 1458 -8
+rect 1492 -42 1508 -8
+rect 2 -58 1508 -42
+<< polycont >>
+rect 114 2322 148 2356
+rect 306 2322 340 2356
+rect 498 2322 532 2356
+rect 690 2322 724 2356
+rect 882 2322 916 2356
+rect 1074 2322 1108 2356
+rect 1266 2322 1300 2356
+rect 1458 2322 1492 2356
+rect 18 1812 52 1846
+rect 210 1812 244 1846
+rect 402 1812 436 1846
+rect 594 1812 628 1846
+rect 786 1812 820 1846
+rect 978 1812 1012 1846
+rect 1170 1812 1204 1846
+rect 1362 1812 1396 1846
+rect 18 1704 52 1738
+rect 210 1704 244 1738
+rect 402 1704 436 1738
+rect 594 1704 628 1738
+rect 786 1704 820 1738
+rect 978 1704 1012 1738
+rect 1170 1704 1204 1738
+rect 1362 1704 1396 1738
+rect 114 1194 148 1228
+rect 306 1194 340 1228
+rect 498 1194 532 1228
+rect 690 1194 724 1228
+rect 882 1194 916 1228
+rect 1074 1194 1108 1228
+rect 1266 1194 1300 1228
+rect 1458 1194 1492 1228
+rect 114 1086 148 1120
+rect 306 1086 340 1120
+rect 498 1086 532 1120
+rect 690 1086 724 1120
+rect 882 1086 916 1120
+rect 1074 1086 1108 1120
+rect 1266 1086 1300 1120
+rect 1458 1086 1492 1120
+rect 18 576 52 610
+rect 210 576 244 610
+rect 402 576 436 610
+rect 594 576 628 610
+rect 786 576 820 610
+rect 978 576 1012 610
+rect 1170 576 1204 610
+rect 1362 576 1396 610
+rect 18 468 52 502
+rect 210 468 244 502
+rect 402 468 436 502
+rect 594 468 628 502
+rect 786 468 820 502
+rect 978 468 1012 502
+rect 1170 468 1204 502
+rect 1362 468 1396 502
+rect 114 -42 148 -8
+rect 306 -42 340 -8
+rect 498 -42 532 -8
+rect 690 -42 724 -8
+rect 882 -42 916 -8
+rect 1074 -42 1108 -8
+rect 1266 -42 1300 -8
+rect 1458 -42 1492 -8
+<< locali >>
+rect 2 2322 114 2356
+rect 148 2322 306 2356
+rect 340 2322 498 2356
+rect 532 2322 690 2356
+rect 724 2322 882 2356
+rect 916 2322 1074 2356
+rect 1108 2322 1266 2356
+rect 1300 2322 1458 2356
+rect 1492 2322 1508 2356
+rect 2 1812 18 1846
+rect 52 1812 210 1846
+rect 244 1812 402 1846
+rect 436 1812 594 1846
+rect 628 1812 786 1846
+rect 820 1812 978 1846
+rect 1012 1812 1170 1846
+rect 1204 1812 1362 1846
+rect 1396 1812 1508 1846
+rect 2 1704 18 1738
+rect 52 1704 210 1738
+rect 244 1704 402 1738
+rect 436 1704 594 1738
+rect 628 1704 786 1738
+rect 820 1704 978 1738
+rect 1012 1704 1170 1738
+rect 1204 1704 1362 1738
+rect 1396 1704 1508 1738
+rect 2 1194 114 1228
+rect 148 1194 306 1228
+rect 340 1194 498 1228
+rect 532 1194 690 1228
+rect 724 1194 882 1228
+rect 916 1194 1074 1228
+rect 1108 1194 1266 1228
+rect 1300 1194 1458 1228
+rect 1492 1194 1508 1228
+rect 2 1086 114 1120
+rect 148 1086 306 1120
+rect 340 1086 498 1120
+rect 532 1086 690 1120
+rect 724 1086 882 1120
+rect 916 1086 1074 1120
+rect 1108 1086 1266 1120
+rect 1300 1086 1458 1120
+rect 1492 1086 1508 1120
+rect 2 576 18 610
+rect 52 576 210 610
+rect 244 576 402 610
+rect 436 576 594 610
+rect 628 576 786 610
+rect 820 576 978 610
+rect 1012 576 1170 610
+rect 1204 576 1362 610
+rect 1396 576 1508 610
+rect 2 468 18 502
+rect 52 468 210 502
+rect 244 468 402 502
+rect 436 468 594 502
+rect 628 468 786 502
+rect 820 468 978 502
+rect 1012 468 1170 502
+rect 1204 468 1362 502
+rect 1396 468 1508 502
+rect 2 -42 114 -8
+rect 148 -42 306 -8
+rect 340 -42 498 -8
+rect 532 -42 690 -8
+rect 724 -42 882 -8
+rect 916 -42 1074 -8
+rect 1108 -42 1266 -8
+rect 1300 -42 1458 -8
+rect 1492 -42 1508 -8
+<< viali >>
+rect 114 2322 148 2356
+rect 306 2322 340 2356
+rect 498 2322 532 2356
+rect 690 2322 724 2356
+rect 882 2322 916 2356
+rect 1074 2322 1108 2356
+rect 1266 2322 1300 2356
+rect 1458 2322 1492 2356
+rect 18 1812 52 1846
+rect 210 1812 244 1846
+rect 402 1812 436 1846
+rect 594 1812 628 1846
+rect 786 1812 820 1846
+rect 978 1812 1012 1846
+rect 1170 1812 1204 1846
+rect 1362 1812 1396 1846
+rect 18 1704 52 1738
+rect 210 1704 244 1738
+rect 402 1704 436 1738
+rect 594 1704 628 1738
+rect 786 1704 820 1738
+rect 978 1704 1012 1738
+rect 1170 1704 1204 1738
+rect 1362 1704 1396 1738
+rect 114 1194 148 1228
+rect 306 1194 340 1228
+rect 498 1194 532 1228
+rect 690 1194 724 1228
+rect 882 1194 916 1228
+rect 1074 1194 1108 1228
+rect 1266 1194 1300 1228
+rect 1458 1194 1492 1228
+rect 114 1086 148 1120
+rect 306 1086 340 1120
+rect 498 1086 532 1120
+rect 690 1086 724 1120
+rect 882 1086 916 1120
+rect 1074 1086 1108 1120
+rect 1266 1086 1300 1120
+rect 1458 1086 1492 1120
+rect 18 576 52 610
+rect 210 576 244 610
+rect 402 576 436 610
+rect 594 576 628 610
+rect 786 576 820 610
+rect 978 576 1012 610
+rect 1170 576 1204 610
+rect 1362 576 1396 610
+rect 18 468 52 502
+rect 210 468 244 502
+rect 402 468 436 502
+rect 594 468 628 502
+rect 786 468 820 502
+rect 978 468 1012 502
+rect 1170 468 1204 502
+rect 1362 468 1396 502
+rect 114 -42 148 -8
+rect 306 -42 340 -8
+rect 498 -42 532 -8
+rect 690 -42 724 -8
+rect 882 -42 916 -8
+rect 1074 -42 1108 -8
+rect 1266 -42 1300 -8
+rect 1458 -42 1492 -8
+<< metal1 >>
+rect 2 2356 1508 2362
+rect 2 2322 114 2356
+rect 148 2322 306 2356
+rect 340 2322 498 2356
+rect 532 2322 690 2356
+rect 724 2322 882 2356
+rect 916 2322 1074 2356
+rect 1108 2322 1266 2356
+rect 1300 2322 1458 2356
+rect 1492 2322 1508 2356
+rect 2 2316 1508 2322
+rect 2 1846 1508 1852
+rect 2 1812 18 1846
+rect 52 1812 210 1846
+rect 244 1812 402 1846
+rect 436 1812 594 1846
+rect 628 1812 786 1846
+rect 820 1812 978 1846
+rect 1012 1812 1170 1846
+rect 1204 1812 1362 1846
+rect 1396 1812 1508 1846
+rect 2 1806 1508 1812
+rect 2 1738 1508 1744
+rect 2 1704 18 1738
+rect 52 1704 210 1738
+rect 244 1704 402 1738
+rect 436 1704 594 1738
+rect 628 1704 786 1738
+rect 820 1704 978 1738
+rect 1012 1704 1170 1738
+rect 1204 1704 1362 1738
+rect 1396 1704 1508 1738
+rect 2 1698 1508 1704
+rect 2 1228 1508 1234
+rect 2 1194 114 1228
+rect 148 1194 306 1228
+rect 340 1194 498 1228
+rect 532 1194 690 1228
+rect 724 1194 882 1228
+rect 916 1194 1074 1228
+rect 1108 1194 1266 1228
+rect 1300 1194 1458 1228
+rect 1492 1194 1508 1228
+rect 2 1188 1508 1194
+rect 2 1120 1508 1126
+rect 2 1086 114 1120
+rect 148 1086 306 1120
+rect 340 1086 498 1120
+rect 532 1086 690 1120
+rect 724 1086 882 1120
+rect 916 1086 1074 1120
+rect 1108 1086 1266 1120
+rect 1300 1086 1458 1120
+rect 1492 1086 1508 1120
+rect 2 1080 1508 1086
+rect 2 610 1508 616
+rect 2 576 18 610
+rect 52 576 210 610
+rect 244 576 402 610
+rect 436 576 594 610
+rect 628 576 786 610
+rect 820 576 978 610
+rect 1012 576 1170 610
+rect 1204 576 1362 610
+rect 1396 576 1508 610
+rect 2 570 1508 576
+rect 2 502 1508 508
+rect 2 468 18 502
+rect 52 468 210 502
+rect 244 468 402 502
+rect 436 468 594 502
+rect 628 468 786 502
+rect 820 468 978 502
+rect 1012 468 1170 502
+rect 1204 468 1362 502
+rect 1396 468 1508 502
+rect 2 462 1508 468
+rect 2 -8 1508 -2
+rect 2 -42 114 -8
+rect 148 -42 306 -8
+rect 340 -42 498 -8
+rect 532 -42 690 -8
+rect 724 -42 882 -8
+rect 916 -42 1074 -8
+rect 1108 -42 1266 -8
+rect 1300 -42 1458 -8
+rect 1492 -42 1508 -8
+rect 2 -48 1508 -42
+use sky130_fd_pr__nfet_01v8_A574RZ  sky130_fd_pr__nfet_01v8_A574RZ_0
+timestamp 1647868710
+transform 1 0 1251 0 1 -2767
+box -1431 -2573 1431 2573
+use sky130_fd_pr__nfet_01v8_ED72KE  sky130_fd_pr__nfet_01v8_ED72KE_0
+timestamp 1647868710
+transform 1 0 755 0 1 1157
+box -935 -1337 935 1337
+<< end >>
diff --git a/mag/outd/outd_diffamp.ext b/mag/outd/outd_diffamp.ext
new file mode 100644
index 0000000..45dccbd
--- /dev/null
+++ b/mag/outd/outd_diffamp.ext
@@ -0,0 +1,581 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_lvt_324MKY sky130_fd_pr__nfet_01v8_lvt_324MKY_2 -1 0 2073 0 1 8649
+use sky130_fd_pr__nfet_01v8_lvt_324MKY sky130_fd_pr__nfet_01v8_lvt_324MKY_0 1 0 695 0 1 8649
+node "m1_2564_8140#" 1 81.1203 2564 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2372_8140#" 1 37.9391 2372 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2180_8140#" 1 37.9382 2180 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1988_8140#" 1 37.9382 1988 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1796_8140#" 1 37.9382 1796 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1604_8140#" 1 48.9138 1604 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1090_8140#" 1 48.8862 1090 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_898_8140#" 1 37.9382 898 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_706_8140#" 1 37.9382 706 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_514_8140#" 1 37.9382 514 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_322_8140#" 1 37.9391 322 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_130_8140#" 1 81.4366 130 8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2468_8380#" 1 65.2615 2468 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2276_8380#" 1 33.608 2276 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2084_8380#" 1 33.608 2084 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1892_8380#" 1 33.608 1892 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1700_8380#" 1 33.608 1700 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1508_8380#" 1 46.0449 1508 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1186_8380#" 1 46.0374 1186 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_994_8380#" 1 33.608 994 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_802_8380#" 1 33.608 802 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_610_8380#" 1 33.608 610 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_418_8380#" 1 33.608 418 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_226_8380#" 1 65.5779 226 8380 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2468_8758#" 1 65.3627 2468 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2276_8758#" 1 33.7091 2276 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2084_8758#" 1 33.7091 2084 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1892_8758#" 1 33.7091 1892 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1700_8758#" 1 33.7091 1700 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1508_8758#" 1 46.9096 1508 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1186_8758#" 1 46.9021 1186 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_994_8758#" 1 33.7091 994 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_802_8758#" 1 33.7091 802 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_610_8758#" 1 33.7091 610 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_418_8758#" 1 33.7091 418 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_226_8758#" 1 65.6791 226 8758 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2564_8998#" 1 82.7786 2564 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2372_8998#" 1 38.0135 2372 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_2180_8998#" 1 38.0135 2180 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1988_8998#" 1 38.0135 1988 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1796_8998#" 1 38.0135 1796 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1604_8998#" 1 48.9892 1604 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_1090_8998#" 1 48.9616 1090 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_898_8998#" 1 38.0135 898 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_706_8998#" 1 38.0135 706 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_514_8998#" 1 38.0135 514 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_322_8998#" 1 38.0135 322 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "m1_130_8998#" 1 83.0949 130 8998 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11840 468 9720 468 0 0 0 0 0 0 0 0
+node "a_1560_8052#" 1138 629.106 1560 8052 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_182_8052#" 1138 631.455 182 8052 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_1560_8562#" 1138 359.901 1560 8562 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_182_8562#" 1138 360.243 182 8562 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_1560_8670#" 1138 360.182 1560 8670 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_182_8670#" 1138 360.524 182 8670 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_1560_9180#" 1138 631.748 1560 9180 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+node "a_182_9180#" 1138 634.097 182 9180 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67716 2184 0 0 34884 2120 47196 2144 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_994_8380#" "m1_802_8380#" 101.034
+cap "m1_1186_8380#" "m1_1186_8758#" 21.4967
+cap "m1_514_8998#" "m1_322_8998#" 101.034
+cap "m1_1700_8380#" "a_1560_8052#" 10.039
+cap "m1_994_8380#" "m1_1186_8380#" 101.034
+cap "m1_418_8380#" "m1_226_8380#" 101.034
+cap "m1_130_8140#" "m1_130_8998#" 6.49754
+cap "m1_514_8998#" "a_182_9180#" 85.3312
+cap "a_1560_9180#" "m1_2468_8758#" 10.039
+cap "m1_2372_8998#" "m1_2372_8140#" 3.11416
+cap "m1_2276_8758#" "m1_2276_8380#" 10.6636
+cap "m1_1892_8758#" "m1_1892_8380#" 10.6636
+cap "m1_898_8998#" "a_182_8670#" 10.039
+cap "m1_2468_8380#" "m1_2468_8758#" 10.6636
+cap "m1_1988_8998#" "m1_2180_8998#" 101.034
+cap "m1_1508_8380#" "m1_1508_8758#" 21.4967
+cap "m1_1604_8140#" "m1_1090_8140#" 28.7182
+cap "m1_514_8140#" "a_182_8052#" 85.3312
+cap "a_1560_8670#" "m1_2180_8998#" 10.039
+cap "m1_898_8998#" "m1_1090_8998#" 101.034
+cap "a_182_8052#" "a_1560_8052#" 10.7142
+cap "a_1560_8562#" "a_1560_8670#" 1414.14
+cap "m1_1604_8998#" "m1_1090_8998#" 28.7182
+cap "m1_1796_8998#" "m1_1988_8998#" 101.034
+cap "m1_1796_8998#" "a_1560_8670#" 10.039
+cap "a_1560_9180#" "a_182_9180#" 10.7142
+cap "a_1560_8562#" "m1_1700_8380#" 85.3312
+cap "m1_514_8998#" "m1_706_8998#" 101.034
+cap "a_182_8052#" "m1_418_8380#" 10.039
+cap "a_1560_8670#" "m1_1988_8998#" 10.039
+cap "m1_226_8758#" "m1_226_8380#" 10.6636
+cap "a_182_8562#" "m1_1090_8140#" 10.039
+cap "m1_802_8758#" "a_182_8670#" 85.3312
+cap "m1_1892_8758#" "m1_1700_8758#" 101.034
+cap "m1_130_8140#" "m1_322_8140#" 101.034
+cap "m1_1604_8140#" "a_1560_8052#" 85.3312
+cap "a_182_8052#" "m1_322_8140#" 85.3312
+cap "a_182_8670#" "m1_418_8758#" 85.3312
+cap "m1_1796_8140#" "m1_1988_8140#" 101.034
+cap "a_1560_9180#" "m1_1700_8758#" 10.039
+cap "a_182_9180#" "m1_322_8998#" 85.3312
+cap "m1_802_8758#" "m1_994_8758#" 101.034
+cap "m1_1796_8998#" "m1_1604_8998#" 101.034
+cap "m1_2084_8380#" "m1_1892_8380#" 101.034
+cap "m1_514_8140#" "a_182_8562#" 10.039
+cap "m1_418_8380#" "m1_418_8758#" 10.6636
+cap "a_182_8052#" "m1_226_8380#" 10.039
+cap "a_182_8562#" "a_182_8670#" 1414.14
+cap "a_1560_8670#" "m1_1604_8998#" 10.039
+cap "m1_802_8380#" "m1_610_8380#" 101.034
+cap "m1_1186_8758#" "a_182_8670#" 25.3687
+cap "a_1560_8670#" "m1_1508_8758#" 25.3687
+cap "a_182_8052#" "m1_706_8140#" 85.3312
+cap "m1_802_8758#" "m1_610_8758#" 101.034
+cap "a_1560_8562#" "m1_1604_8140#" 10.039
+cap "a_182_8562#" "m1_418_8380#" 85.3312
+cap "m1_514_8140#" "m1_514_8998#" 3.11416
+cap "m1_2468_8380#" "m1_2276_8380#" 101.034
+cap "m1_2084_8758#" "a_1560_8670#" 85.3312
+cap "m1_514_8998#" "a_182_8670#" 10.039
+cap "m1_2276_8758#" "a_1560_8670#" 85.3312
+cap "m1_610_8758#" "m1_418_8758#" 101.034
+cap "m1_1186_8758#" "m1_994_8758#" 101.034
+cap "m1_2564_8998#" "m1_2564_8140#" 6.49754
+cap "a_182_8562#" "m1_322_8140#" 10.039
+cap "a_182_9180#" "m1_706_8998#" 85.3312
+cap "m1_898_8140#" "m1_1090_8140#" 101.034
+cap "m1_130_8140#" "a_182_8052#" 25.3687
+cap "m1_994_8380#" "m1_994_8758#" 10.6636
+cap "a_1560_8562#" "a_182_8562#" 10.7142
+cap "m1_226_8758#" "m1_418_8758#" 101.034
+cap "m1_2372_8998#" "m1_2180_8998#" 101.034
+cap "a_182_8562#" "m1_226_8380#" 85.3312
+cap "m1_2084_8380#" "m1_2276_8380#" 101.034
+cap "m1_2180_8140#" "m1_1988_8140#" 101.034
+cap "m1_1988_8140#" "a_1560_8052#" 85.3312
+cap "a_182_8562#" "m1_706_8140#" 10.039
+cap "m1_130_8998#" "m1_322_8998#" 101.034
+cap "m1_2468_8380#" "a_1560_8052#" 10.039
+cap "m1_2564_8998#" "a_1560_8670#" 2.98456
+cap "m1_1604_8140#" "m1_1604_8998#" 3.11416
+cap "m1_2372_8998#" "a_1560_8670#" 10.039
+cap "m1_130_8998#" "a_182_9180#" 25.3687
+cap "a_1560_9180#" "m1_2180_8998#" 85.3312
+cap "m1_2276_8758#" "m1_2084_8758#" 101.034
+cap "a_182_8670#" "m1_322_8998#" 10.039
+cap "m1_1508_8380#" "m1_1186_8380#" 50.0676
+cap "m1_130_8140#" "a_182_8562#" 2.98456
+cap "m1_1892_8758#" "a_1560_8670#" 85.3312
+cap "a_182_8052#" "a_182_8562#" 181.23
+cap "m1_1892_8380#" "a_1560_8052#" 10.039
+cap "a_182_9180#" "a_182_8670#" 181.23
+cap "m1_2084_8380#" "a_1560_8052#" 10.039
+cap "a_1560_8562#" "m1_1988_8140#" 10.039
+cap "m1_2468_8380#" "a_1560_8562#" 85.3312
+cap "a_1560_9180#" "m1_1796_8998#" 85.3312
+cap "m1_1186_8758#" "m1_1508_8758#" 50.0676
+cap "a_182_9180#" "m1_1090_8998#" 85.3312
+cap "a_182_8052#" "m1_994_8380#" 10.039
+cap "a_1560_9180#" "m1_1988_8998#" 85.3312
+cap "a_1560_9180#" "a_1560_8670#" 181.23
+cap "m1_2180_8140#" "m1_2372_8140#" 101.034
+cap "m1_1988_8140#" "m1_1988_8998#" 3.11416
+cap "m1_2372_8140#" "a_1560_8052#" 85.3312
+cap "m1_610_8380#" "m1_418_8380#" 101.034
+cap "m1_1796_8140#" "a_1560_8052#" 85.3312
+cap "m1_322_8140#" "m1_322_8998#" 3.11416
+cap "a_182_9180#" "m1_994_8758#" 10.039
+cap "m1_2468_8758#" "a_1560_8670#" 85.3312
+cap "m1_2564_8140#" "m1_2372_8140#" 101.034
+cap "a_182_8670#" "m1_706_8998#" 10.039
+cap "m1_706_8140#" "m1_898_8140#" 101.034
+cap "a_1560_8562#" "m1_1892_8380#" 85.3312
+cap "a_1560_8562#" "m1_2084_8380#" 85.3312
+cap "m1_610_8758#" "a_182_9180#" 10.039
+cap "m1_610_8380#" "m1_610_8758#" 10.6636
+cap "a_1560_9180#" "m1_1604_8998#" 85.3312
+cap "m1_898_8998#" "m1_898_8140#" 3.11416
+cap "a_1560_8562#" "m1_2372_8140#" 10.039
+cap "m1_1892_8758#" "m1_2084_8758#" 101.034
+cap "a_1560_9180#" "m1_1508_8758#" 2.98456
+cap "m1_226_8758#" "a_182_9180#" 10.039
+cap "a_1560_8562#" "m1_1796_8140#" 10.039
+cap "m1_2276_8380#" "a_1560_8052#" 10.039
+cap "m1_1892_8380#" "m1_1700_8380#" 101.034
+cap "m1_994_8380#" "a_182_8562#" 85.3312
+cap "a_182_8052#" "m1_898_8140#" 85.3312
+cap "m1_1796_8140#" "m1_1796_8998#" 3.11416
+cap "m1_1090_8998#" "m1_1090_8140#" 3.11416
+cap "m1_2372_8998#" "m1_2564_8998#" 101.034
+cap "m1_130_8998#" "a_182_8670#" 2.98456
+cap "m1_2276_8758#" "a_1560_9180#" 10.039
+cap "m1_2084_8758#" "a_1560_9180#" 10.039
+cap "a_182_9180#" "m1_898_8998#" 85.3312
+cap "m1_1508_8380#" "a_1560_8052#" 2.98456
+cap "a_1560_8670#" "m1_1700_8758#" 85.3312
+cap "a_182_8052#" "m1_802_8380#" 10.039
+cap "m1_2276_8758#" "m1_2468_8758#" 101.034
+cap "m1_706_8140#" "m1_706_8998#" 3.11416
+cap "a_1560_8562#" "m1_2276_8380#" 85.3312
+cap "m1_1700_8758#" "m1_1700_8380#" 10.6636
+cap "a_182_8052#" "m1_1186_8380#" 2.98456
+cap "a_182_8052#" "m1_610_8380#" 10.039
+cap "m1_2180_8140#" "a_1560_8052#" 85.3312
+cap "a_182_8670#" "m1_1090_8998#" 10.039
+cap "m1_802_8758#" "m1_802_8380#" 10.6636
+cap "m1_898_8998#" "m1_706_8998#" 101.034
+cap "m1_802_8758#" "a_182_9180#" 10.039
+cap "a_1560_9180#" "m1_2564_8998#" 25.3687
+cap "m1_2084_8380#" "m1_2084_8758#" 10.6636
+cap "m1_2564_8140#" "a_1560_8052#" 25.3687
+cap "a_182_8562#" "m1_898_8140#" 10.039
+cap "m1_2372_8998#" "a_1560_9180#" 85.3312
+cap "a_182_8670#" "m1_994_8758#" 85.3312
+cap "a_1560_8562#" "m1_1508_8380#" 25.3687
+cap "m1_514_8140#" "m1_322_8140#" 101.034
+cap "a_182_9180#" "m1_418_8758#" 10.039
+cap "m1_2180_8140#" "m1_2180_8998#" 3.11416
+cap "m1_1508_8758#" "m1_1700_8758#" 101.034
+cap "a_1560_8562#" "m1_2180_8140#" 10.039
+cap "m1_1892_8758#" "a_1560_9180#" 10.039
+cap "a_1560_8562#" "a_1560_8052#" 181.23
+cap "m1_610_8758#" "a_182_8670#" 85.3312
+cap "m1_1796_8140#" "m1_1604_8140#" 101.034
+cap "m1_802_8380#" "a_182_8562#" 85.3312
+cap "m1_1508_8380#" "m1_1700_8380#" 101.034
+cap "m1_1186_8380#" "a_182_8562#" 25.3687
+cap "a_182_8562#" "m1_610_8380#" 85.3312
+cap "m1_1186_8758#" "a_182_9180#" 2.98456
+cap "a_1560_8670#" "a_182_8670#" 10.7142
+cap "a_1560_8562#" "m1_2564_8140#" 2.98456
+cap "a_182_8052#" "m1_1090_8140#" 85.3312
+cap "m1_514_8140#" "m1_706_8140#" 101.034
+cap "m1_226_8758#" "a_182_8670#" 85.3312
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" 7.75642
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" 16.0435
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -6.70909
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 4.62136
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 261.106
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 32.8276
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -2.64327
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" -5.89205
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 7.93056
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_109#" 7.94568
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" 16.0435
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" -6.70909
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" -385.769
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 32.8276
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" -5.89205
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" 7.75742
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 261.106
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" 95.6231
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 4.62136
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" -2.64327
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" -5.89205
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" 261.106
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" -385.769
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" 16.0435
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" -6.70909
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" 4.62136
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" -5.89205
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" 7.93056
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" 32.8276
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" 32.8276
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" 7.75642
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" 95.6231
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 7.75742
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" 4.62136
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" 95.6226
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" 16.0435
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -6.70909
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" 7.94568
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" 91.84
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 261.106
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 95.6388
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" -50.0339
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" 80.6262
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" 80.6262
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_n509#" "m1_1796_8140#" 577.008 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 936084 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "VSUBS"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_n509#" "m1_1090_8140#" 337.703 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 580884 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" "m1_1988_8998#" 354.091 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 590712 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_n509#" "m1_2276_8380#" 1255.66 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1995156 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_351_21#" "a_182_8670#" -22934.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6273492 -3652 0 0 -1985256 -2200 -6644736 -2288 0 0 0 0 0 0 0 0 0 0
+merge "a_182_8670#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_447_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_447_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_159_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_159_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_255_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_255_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n33_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n33_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_63_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_63_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n225_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n225_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n129_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n129_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n321_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n321_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_531#" "a_182_9180#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n513_n597#" "a_1560_8052#" -67274.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -18523900 -3652 0 0 -6075216 -2200 -19148136 -2288 0 0 0 0 0 0 0 0 0 0
+merge "a_1560_8052#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n321_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n321_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n417_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n417_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n129_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n129_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n225_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n225_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_63_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_63_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n33_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n33_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_255_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_255_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_159_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_159_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_n87#" "a_1560_8562#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_109#" "m1_2180_8998#" 475.855 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 779640 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_207_109#" "m1_1796_8998#" 232.327 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 401784 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_109#" "m1_2468_8758#" 628.885 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1069560 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_n509#" "m1_898_8140#" 622.794 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1007124 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "m1_130_8140#" 1720.39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2712084 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_447_n597#" "a_182_8052#" -71004.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -19556796 -3652 0 0 -6413904 -2200 -20193768 -2288 0 0 0 0 0 0 0 0 0 0
+merge "a_182_8052#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_255_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_255_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_351_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_351_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_63_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_63_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_159_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_159_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n129_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n129_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n33_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n33_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n321_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n321_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n225_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n225_n87#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n513_n597#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n417_n87#" "a_182_8562#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_109#" "m1_322_8998#" 617.913 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000056 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_109#" "m1_226_8758#" 648.863 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1101048 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_109#" "m1_1508_8758#" 52.0762 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 124920 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_n509#" "m1_1700_8380#" 431.529 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 716436 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_n509#" "m1_1892_8380#" 706.241 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1142676 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_n509#" "m1_1988_8140#" 851.72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1362324 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n177_n509#" "m1_2180_8140#" 1126.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1788564 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_n509#" "m1_802_8380#" 752.026 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1213716 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_111_109#" "m1_1892_8758#" 293.614 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 502776 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_n509#" "m1_418_8380#" 1301.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2066196 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n417_21#" "a_1560_8670#" -21733.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5942036 -3652 0 0 -1880424 -2200 -6300672 -2288 0 0 0 0 0 0 0 0 0 0
+merge "a_1560_8670#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n513_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n513_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n225_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n225_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n321_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n321_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n33_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n33_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n129_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n129_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_159_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_159_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_63_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_63_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_351_21#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_255_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_255_531#" "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_447_531#" "a_1560_9180#"
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_109#" "m1_994_8758#" 192.144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 345336 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_207_109#" "m1_898_8998#" 252.621 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 433272 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n465_n509#" "m1_2468_8380#" 1500.36 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2421396 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n273_109#" "m1_2276_8758#" 537.142 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 880632 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_109#" "m1_2372_8998#" 597.619 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 968568 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_n509#" "m1_706_8140#" 897.505 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1433364 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_109#" "m1_1604_8998#" 100.156 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 212856 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n369_n509#" "m1_322_8140#" 1446.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2285844 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n273_109#" "m1_418_8758#" 557.436 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 912120 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_109#" "m1_2084_8758#" 415.378 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 691704 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_109#" "m1_514_8998#" 496.149 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 811128 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_495_n509#" "m1_1508_8380#" 158.992 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 290196 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n369_n509#" "m1_2372_8140#" 1401.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2214804 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_303_n509#" "m1_994_8380#" 477.315 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 787476 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_303_109#" "m1_1700_8758#" 171.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 313848 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_399_109#" "m1_1090_8998#" 120.478 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 244344 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_15_109#" "m1_706_8998#" 374.385 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 622200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_109#" "m1_610_8758#" 435.672 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 723192 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_109#" "m1_2564_8998#" 717.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1157496 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n177_n509#" "m1_514_8140#" 1172.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1859604 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_109#" "m1_1186_8758#" 72.6652 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 156408 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_495_n509#" "m1_1186_8380#" 205.072 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 361236 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_109#" "m1_130_8998#" 737.297 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1188984 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "m1_1604_8140#" 291.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 509844 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n81_n509#" "m1_2084_8380#" 980.953 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1568916 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n557_n509#" "m1_2564_8140#" 1674.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2641044 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n81_n509#" "m1_610_8380#" 1026.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1639956 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n465_n509#" "m1_226_8380#" 1545.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2492436 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_111_109#" "m1_802_8758#" 313.908 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 534264 -412 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/outd/outd_diffamp.mag b/mag/outd/outd_diffamp.mag
new file mode 100644
index 0000000..76e1fe9
--- /dev/null
+++ b/mag/outd/outd_diffamp.mag
@@ -0,0 +1,536 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< poly >>
+rect 182 9230 1208 9246
+rect 182 9196 294 9230
+rect 328 9196 486 9230
+rect 520 9196 678 9230
+rect 712 9196 870 9230
+rect 904 9196 1062 9230
+rect 1096 9196 1208 9230
+rect 182 9180 1208 9196
+rect 1560 9230 2586 9246
+rect 1560 9196 1672 9230
+rect 1706 9196 1864 9230
+rect 1898 9196 2056 9230
+rect 2090 9196 2248 9230
+rect 2282 9196 2440 9230
+rect 2474 9196 2586 9230
+rect 1560 9180 2586 9196
+rect 182 8720 1208 8736
+rect 182 8686 198 8720
+rect 232 8686 390 8720
+rect 424 8686 582 8720
+rect 616 8686 774 8720
+rect 808 8686 966 8720
+rect 1000 8686 1158 8720
+rect 1192 8686 1208 8720
+rect 182 8670 1208 8686
+rect 1560 8720 2586 8736
+rect 1560 8686 1576 8720
+rect 1610 8686 1768 8720
+rect 1802 8686 1960 8720
+rect 1994 8686 2152 8720
+rect 2186 8686 2344 8720
+rect 2378 8686 2536 8720
+rect 2570 8686 2586 8720
+rect 1560 8670 2586 8686
+rect 182 8612 1208 8628
+rect 182 8578 198 8612
+rect 232 8578 390 8612
+rect 424 8578 582 8612
+rect 616 8578 774 8612
+rect 808 8578 966 8612
+rect 1000 8578 1158 8612
+rect 1192 8578 1208 8612
+rect 182 8562 1208 8578
+rect 1560 8612 2586 8628
+rect 1560 8578 1576 8612
+rect 1610 8578 1768 8612
+rect 1802 8578 1960 8612
+rect 1994 8578 2152 8612
+rect 2186 8578 2344 8612
+rect 2378 8578 2536 8612
+rect 2570 8578 2586 8612
+rect 1560 8562 2586 8578
+rect 182 8102 1208 8118
+rect 182 8068 296 8102
+rect 330 8068 486 8102
+rect 520 8068 678 8102
+rect 712 8068 870 8102
+rect 904 8068 1062 8102
+rect 1096 8068 1208 8102
+rect 182 8052 1208 8068
+rect 1560 8102 2586 8118
+rect 1560 8068 1672 8102
+rect 1706 8068 1864 8102
+rect 1898 8068 2056 8102
+rect 2090 8068 2248 8102
+rect 2282 8068 2438 8102
+rect 2472 8068 2586 8102
+rect 1560 8052 2586 8068
+<< polycont >>
+rect 294 9196 328 9230
+rect 486 9196 520 9230
+rect 678 9196 712 9230
+rect 870 9196 904 9230
+rect 1062 9196 1096 9230
+rect 1672 9196 1706 9230
+rect 1864 9196 1898 9230
+rect 2056 9196 2090 9230
+rect 2248 9196 2282 9230
+rect 2440 9196 2474 9230
+rect 198 8686 232 8720
+rect 390 8686 424 8720
+rect 582 8686 616 8720
+rect 774 8686 808 8720
+rect 966 8686 1000 8720
+rect 1158 8686 1192 8720
+rect 1576 8686 1610 8720
+rect 1768 8686 1802 8720
+rect 1960 8686 1994 8720
+rect 2152 8686 2186 8720
+rect 2344 8686 2378 8720
+rect 2536 8686 2570 8720
+rect 198 8578 232 8612
+rect 390 8578 424 8612
+rect 582 8578 616 8612
+rect 774 8578 808 8612
+rect 966 8578 1000 8612
+rect 1158 8578 1192 8612
+rect 1576 8578 1610 8612
+rect 1768 8578 1802 8612
+rect 1960 8578 1994 8612
+rect 2152 8578 2186 8612
+rect 2344 8578 2378 8612
+rect 2536 8578 2570 8612
+rect 296 8068 330 8102
+rect 486 8068 520 8102
+rect 678 8068 712 8102
+rect 870 8068 904 8102
+rect 1062 8068 1096 8102
+rect 1672 8068 1706 8102
+rect 1864 8068 1898 8102
+rect 2056 8068 2090 8102
+rect 2248 8068 2282 8102
+rect 2438 8068 2472 8102
+<< locali >>
+rect 182 9196 294 9230
+rect 328 9196 486 9230
+rect 520 9196 678 9230
+rect 712 9196 870 9230
+rect 904 9196 1062 9230
+rect 1096 9196 1208 9230
+rect 1560 9196 1672 9230
+rect 1706 9196 1864 9230
+rect 1898 9196 2056 9230
+rect 2090 9196 2248 9230
+rect 2282 9196 2440 9230
+rect 2474 9196 2586 9230
+rect 182 8686 198 8720
+rect 232 8686 390 8720
+rect 424 8686 582 8720
+rect 616 8686 774 8720
+rect 808 8686 966 8720
+rect 1000 8686 1158 8720
+rect 1192 8686 1208 8720
+rect 1560 8686 1576 8720
+rect 1610 8686 1768 8720
+rect 1802 8686 1960 8720
+rect 1994 8686 2152 8720
+rect 2186 8686 2344 8720
+rect 2378 8686 2536 8720
+rect 2570 8686 2586 8720
+rect 182 8578 198 8612
+rect 232 8578 390 8612
+rect 424 8578 582 8612
+rect 616 8578 774 8612
+rect 808 8578 966 8612
+rect 1000 8578 1158 8612
+rect 1192 8578 1208 8612
+rect 1560 8578 1576 8612
+rect 1610 8578 1768 8612
+rect 1802 8578 1960 8612
+rect 1994 8578 2152 8612
+rect 2186 8578 2344 8612
+rect 2378 8578 2536 8612
+rect 2570 8578 2586 8612
+rect 182 8068 296 8102
+rect 330 8068 486 8102
+rect 520 8068 678 8102
+rect 712 8068 870 8102
+rect 904 8068 1062 8102
+rect 1096 8068 1208 8102
+rect 1560 8068 1672 8102
+rect 1706 8068 1864 8102
+rect 1898 8068 2056 8102
+rect 2090 8068 2248 8102
+rect 2282 8068 2438 8102
+rect 2472 8068 2586 8102
+<< viali >>
+rect 294 9196 328 9230
+rect 486 9196 520 9230
+rect 678 9196 712 9230
+rect 870 9196 904 9230
+rect 1062 9196 1096 9230
+rect 1672 9196 1706 9230
+rect 1864 9196 1898 9230
+rect 2056 9196 2090 9230
+rect 2248 9196 2282 9230
+rect 2440 9196 2474 9230
+rect 198 8686 232 8720
+rect 390 8686 424 8720
+rect 582 8686 616 8720
+rect 774 8686 808 8720
+rect 966 8686 1000 8720
+rect 1158 8686 1192 8720
+rect 1576 8686 1610 8720
+rect 1768 8686 1802 8720
+rect 1960 8686 1994 8720
+rect 2152 8686 2186 8720
+rect 2344 8686 2378 8720
+rect 2536 8686 2570 8720
+rect 198 8578 232 8612
+rect 390 8578 424 8612
+rect 582 8578 616 8612
+rect 774 8578 808 8612
+rect 966 8578 1000 8612
+rect 1158 8578 1192 8612
+rect 1576 8578 1610 8612
+rect 1768 8578 1802 8612
+rect 1960 8578 1994 8612
+rect 2152 8578 2186 8612
+rect 2344 8578 2378 8612
+rect 2536 8578 2570 8612
+rect 296 8068 330 8102
+rect 486 8068 520 8102
+rect 678 8068 712 8102
+rect 870 8068 904 8102
+rect 1062 8068 1096 8102
+rect 1672 8068 1706 8102
+rect 1864 8068 1898 8102
+rect 2056 8068 2090 8102
+rect 2248 8068 2282 8102
+rect 2438 8068 2472 8102
+<< metal1 >>
+rect 182 9230 1208 9236
+rect 182 9196 294 9230
+rect 328 9196 486 9230
+rect 520 9196 678 9230
+rect 712 9196 870 9230
+rect 904 9196 1062 9230
+rect 1096 9196 1208 9230
+rect 182 9190 1208 9196
+rect 1560 9230 2586 9236
+rect 1560 9196 1672 9230
+rect 1706 9196 1864 9230
+rect 1898 9196 2056 9230
+rect 2090 9196 2248 9230
+rect 2282 9196 2440 9230
+rect 2474 9196 2586 9230
+rect 1560 9190 2586 9196
+rect 130 8998 140 9158
+rect 194 8998 204 9158
+rect 322 8998 332 9158
+rect 386 8998 396 9158
+rect 514 8998 524 9158
+rect 578 8998 588 9158
+rect 706 8998 716 9158
+rect 770 8998 780 9158
+rect 898 8998 908 9158
+rect 962 8998 972 9158
+rect 1090 8998 1100 9158
+rect 1154 8998 1164 9158
+rect 1604 8998 1614 9158
+rect 1668 8998 1678 9158
+rect 1796 8998 1806 9158
+rect 1860 8998 1870 9158
+rect 1988 8998 1998 9158
+rect 2052 8998 2062 9158
+rect 2180 8998 2190 9158
+rect 2244 8998 2254 9158
+rect 2372 8998 2382 9158
+rect 2436 8998 2446 9158
+rect 2564 8998 2574 9158
+rect 2628 8998 2638 9158
+rect 226 8758 236 8918
+rect 290 8758 300 8918
+rect 418 8758 428 8918
+rect 482 8758 492 8918
+rect 610 8758 620 8918
+rect 674 8758 684 8918
+rect 802 8758 812 8918
+rect 866 8758 876 8918
+rect 994 8758 1004 8918
+rect 1058 8758 1068 8918
+rect 1186 8758 1196 8918
+rect 1250 8758 1260 8918
+rect 1508 8758 1518 8918
+rect 1572 8758 1582 8918
+rect 1700 8758 1710 8918
+rect 1764 8758 1774 8918
+rect 1892 8758 1902 8918
+rect 1956 8758 1966 8918
+rect 2084 8758 2094 8918
+rect 2148 8758 2158 8918
+rect 2276 8758 2286 8918
+rect 2340 8758 2350 8918
+rect 2468 8758 2478 8918
+rect 2532 8758 2542 8918
+rect 182 8720 1208 8726
+rect 182 8686 198 8720
+rect 232 8686 390 8720
+rect 424 8686 582 8720
+rect 616 8686 774 8720
+rect 808 8686 966 8720
+rect 1000 8686 1158 8720
+rect 1192 8686 1208 8720
+rect 182 8680 1208 8686
+rect 1560 8720 2586 8726
+rect 1560 8686 1576 8720
+rect 1610 8686 1768 8720
+rect 1802 8686 1960 8720
+rect 1994 8686 2152 8720
+rect 2186 8686 2344 8720
+rect 2378 8686 2536 8720
+rect 2570 8686 2586 8720
+rect 1560 8680 2586 8686
+rect 182 8612 1208 8618
+rect 182 8578 198 8612
+rect 232 8578 390 8612
+rect 424 8578 582 8612
+rect 616 8578 774 8612
+rect 808 8578 966 8612
+rect 1000 8578 1158 8612
+rect 1192 8578 1208 8612
+rect 182 8572 1208 8578
+rect 1560 8612 2586 8618
+rect 1560 8578 1576 8612
+rect 1610 8578 1768 8612
+rect 1802 8578 1960 8612
+rect 1994 8578 2152 8612
+rect 2186 8578 2344 8612
+rect 2378 8578 2536 8612
+rect 2570 8578 2586 8612
+rect 1560 8572 2586 8578
+rect 226 8380 236 8540
+rect 290 8380 300 8540
+rect 418 8380 428 8540
+rect 482 8380 492 8540
+rect 610 8380 620 8540
+rect 674 8380 684 8540
+rect 802 8380 812 8540
+rect 866 8380 876 8540
+rect 994 8380 1004 8540
+rect 1058 8380 1068 8540
+rect 1186 8380 1196 8540
+rect 1250 8380 1260 8540
+rect 1508 8380 1518 8540
+rect 1572 8380 1582 8540
+rect 1700 8380 1710 8540
+rect 1764 8380 1774 8540
+rect 1892 8380 1902 8540
+rect 1956 8380 1966 8540
+rect 2084 8380 2094 8540
+rect 2148 8380 2158 8540
+rect 2276 8380 2286 8540
+rect 2340 8380 2350 8540
+rect 2468 8380 2478 8540
+rect 2532 8380 2542 8540
+rect 130 8140 140 8300
+rect 194 8140 204 8300
+rect 322 8140 332 8300
+rect 386 8140 396 8300
+rect 514 8140 524 8300
+rect 578 8140 588 8300
+rect 706 8140 716 8300
+rect 770 8140 780 8300
+rect 898 8140 908 8300
+rect 962 8140 972 8300
+rect 1090 8140 1100 8300
+rect 1154 8140 1164 8300
+rect 1604 8140 1614 8300
+rect 1668 8140 1678 8300
+rect 1796 8140 1806 8300
+rect 1860 8140 1870 8300
+rect 1988 8140 1998 8300
+rect 2052 8140 2062 8300
+rect 2180 8140 2190 8300
+rect 2244 8140 2254 8300
+rect 2372 8140 2382 8300
+rect 2436 8140 2446 8300
+rect 2564 8140 2574 8300
+rect 2628 8140 2638 8300
+rect 182 8102 1208 8108
+rect 182 8068 296 8102
+rect 330 8068 486 8102
+rect 520 8068 678 8102
+rect 712 8068 870 8102
+rect 904 8068 1062 8102
+rect 1096 8068 1208 8102
+rect 182 8062 1208 8068
+rect 1560 8102 2586 8108
+rect 1560 8068 1672 8102
+rect 1706 8068 1864 8102
+rect 1898 8068 2056 8102
+rect 2090 8068 2248 8102
+rect 2282 8068 2438 8102
+rect 2472 8068 2586 8102
+rect 1560 8062 2586 8068
+<< via1 >>
+rect 140 8998 194 9158
+rect 332 8998 386 9158
+rect 524 8998 578 9158
+rect 716 8998 770 9158
+rect 908 8998 962 9158
+rect 1100 8998 1154 9158
+rect 1614 8998 1668 9158
+rect 1806 8998 1860 9158
+rect 1998 8998 2052 9158
+rect 2190 8998 2244 9158
+rect 2382 8998 2436 9158
+rect 2574 8998 2628 9158
+rect 236 8758 290 8918
+rect 428 8758 482 8918
+rect 620 8758 674 8918
+rect 812 8758 866 8918
+rect 1004 8758 1058 8918
+rect 1196 8758 1250 8918
+rect 1518 8758 1572 8918
+rect 1710 8758 1764 8918
+rect 1902 8758 1956 8918
+rect 2094 8758 2148 8918
+rect 2286 8758 2340 8918
+rect 2478 8758 2532 8918
+rect 236 8380 290 8540
+rect 428 8380 482 8540
+rect 620 8380 674 8540
+rect 812 8380 866 8540
+rect 1004 8380 1058 8540
+rect 1196 8380 1250 8540
+rect 1518 8380 1572 8540
+rect 1710 8380 1764 8540
+rect 1902 8380 1956 8540
+rect 2094 8380 2148 8540
+rect 2286 8380 2340 8540
+rect 2478 8380 2532 8540
+rect 140 8140 194 8300
+rect 332 8140 386 8300
+rect 524 8140 578 8300
+rect 716 8140 770 8300
+rect 908 8140 962 8300
+rect 1100 8140 1154 8300
+rect 1614 8140 1668 8300
+rect 1806 8140 1860 8300
+rect 1998 8140 2052 8300
+rect 2190 8140 2244 8300
+rect 2382 8140 2436 8300
+rect 2574 8140 2628 8300
+<< metal2 >>
+rect 140 9158 194 9168
+rect 140 8988 194 8998
+rect 332 9158 386 9168
+rect 332 8988 386 8998
+rect 524 9158 578 9168
+rect 524 8988 578 8998
+rect 716 9158 770 9168
+rect 716 8988 770 8998
+rect 908 9158 962 9168
+rect 908 8988 962 8998
+rect 1100 9158 1154 9168
+rect 1100 8988 1154 8998
+rect 1614 9158 1668 9168
+rect 1614 8988 1668 8998
+rect 1806 9158 1860 9168
+rect 1806 8988 1860 8998
+rect 1998 9158 2052 9168
+rect 1998 8988 2052 8998
+rect 2190 9158 2244 9168
+rect 2190 8988 2244 8998
+rect 2382 9158 2436 9168
+rect 2382 8988 2436 8998
+rect 2574 9158 2628 9168
+rect 2574 8988 2628 8998
+rect 236 8918 290 8928
+rect 236 8748 290 8758
+rect 428 8918 482 8928
+rect 428 8748 482 8758
+rect 620 8918 674 8928
+rect 620 8748 674 8758
+rect 812 8918 866 8928
+rect 812 8748 866 8758
+rect 1004 8918 1058 8928
+rect 1004 8748 1058 8758
+rect 1196 8918 1250 8928
+rect 1196 8748 1250 8758
+rect 1518 8918 1572 8928
+rect 1518 8748 1572 8758
+rect 1710 8918 1764 8928
+rect 1710 8748 1764 8758
+rect 1902 8918 1956 8928
+rect 1902 8748 1956 8758
+rect 2094 8918 2148 8928
+rect 2094 8748 2148 8758
+rect 2286 8918 2340 8928
+rect 2286 8748 2340 8758
+rect 2478 8918 2532 8928
+rect 2478 8748 2532 8758
+rect 236 8540 290 8550
+rect 236 8370 290 8380
+rect 428 8540 482 8550
+rect 428 8370 482 8380
+rect 620 8540 674 8550
+rect 620 8370 674 8380
+rect 812 8540 866 8550
+rect 812 8370 866 8380
+rect 1004 8540 1058 8550
+rect 1004 8370 1058 8380
+rect 1196 8540 1250 8550
+rect 1196 8370 1250 8380
+rect 1518 8540 1572 8550
+rect 1518 8370 1572 8380
+rect 1710 8540 1764 8550
+rect 1710 8370 1764 8380
+rect 1902 8540 1956 8550
+rect 1902 8370 1956 8380
+rect 2094 8540 2148 8550
+rect 2094 8370 2148 8380
+rect 2286 8540 2340 8550
+rect 2286 8370 2340 8380
+rect 2478 8540 2532 8550
+rect 2478 8370 2532 8380
+rect 140 8300 194 8310
+rect 140 8130 194 8140
+rect 332 8300 386 8310
+rect 332 8130 386 8140
+rect 524 8300 578 8310
+rect 524 8130 578 8140
+rect 716 8300 770 8310
+rect 716 8130 770 8140
+rect 908 8300 962 8310
+rect 908 8130 962 8140
+rect 1100 8300 1154 8310
+rect 1100 8130 1154 8140
+rect 1614 8300 1668 8310
+rect 1614 8130 1668 8140
+rect 1806 8300 1860 8310
+rect 1806 8130 1860 8140
+rect 1998 8300 2052 8310
+rect 1998 8130 2052 8140
+rect 2190 8300 2244 8310
+rect 2190 8130 2244 8140
+rect 2382 8300 2436 8310
+rect 2382 8130 2436 8140
+rect 2574 8300 2628 8310
+rect 2574 8130 2628 8140
+use sky130_fd_pr__nfet_01v8_lvt_324MKY  sky130_fd_pr__nfet_01v8_lvt_324MKY_0
+timestamp 1647868710
+transform 1 0 695 0 1 8649
+box -695 -719 695 719
+use sky130_fd_pr__nfet_01v8_lvt_324MKY  sky130_fd_pr__nfet_01v8_lvt_324MKY_2
+timestamp 1647868710
+transform -1 0 2073 0 1 8649
+box -695 -719 695 719
+<< end >>
diff --git a/mag/outd/outd_flat.ext b/mag/outd/outd_flat.ext
new file mode 100644
index 0000000..507e851
--- /dev/null
+++ b/mag/outd/outd_flat.ext
@@ -0,0 +1,6203 @@
+timestamp 0
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__res_high_po l=l w=w
+parameters sky130_fd_pr__res_high_po_5p73 l=l
+parameters sky130_fd_pr__res_high_po_2p85 l=l
+parameters sky130_fd_pr__res_high_po_1p41 l=l
+parameters sky130_fd_pr__res_high_po_0p69 l=l
+parameters sky130_fd_pr__res_high_po_0p35 l=l
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "a_230_6326#" 133 2.46367e+06 230 6326 ndif 0 0 0 0 0 0 0 0 46592000 1768960 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26634240 1697280 45905280 1848960 90552160 1200420 102213000 316600 0 0 0 0 0 0
+node "a_n14090_6326#" 133 623362 -14090 6326 ndif 0 0 0 0 0 0 0 0 11648000 442240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6658560 424320 11476320 462240 22476040 298320 25553250 79150 0 0 0 0 0 0
+node "a_n19260_7126#" 134 140888 -19260 7126 ndif 0 0 0 0 0 0 0 0 2329600 88448 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1331712 84864 2295264 92448 4322400 57760 5110650 15830 0 0 0 0 0 0
+node "a_n19882_7120#" 4690 5365.62 -19882 7120 ndif 0 0 0 0 0 0 0 0 96000 3680 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55488 3536 91520 3792 297000 3780 0 0 0 0 0 0 0 0
+node "I_Bias" 794 4.18704e+06 -19944 5592 p 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 234810072 6539176 0 0 33332920 2428260 157796068 2187608 123200 1860 36921800 43616 801792 17088 0 0 0 0
+node "a_53416_11478#" 458 0 53416 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_51948_11478#" 458 0 51948 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_50486_11478#" 458 0 50486 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_49018_11478#" 458 0 49018 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_47556_11478#" 458 0 47556 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_46088_11478#" 458 0 46088 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_44626_11478#" 458 0 44626 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_43158_11478#" 458 0 43158 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_39166_11478#" 458 0 39166 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_37698_11478#" 458 0 37698 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_36236_11478#" 458 0 36236 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_34768_11478#" 458 0 34768 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_33306_11478#" 458 0 33306 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_31838_11478#" 458 0 31838 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_30376_11478#" 458 0 30376 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_28908_11478#" 458 0 28908 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_24916_11478#" 458 0 24916 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_23448_11478#" 458 0 23448 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_21986_11478#" 458 0 21986 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_20518_11478#" 458 0 20518 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_19056_11478#" 458 0 19056 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_17588_11478#" 458 0 17588 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_16126_11478#" 458 0 16126 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_14658_11478#" 458 0 14658 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_10666_11478#" 458 0 10666 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_9198_11478#" 458 0 9198 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_7736_11478#" 458 0 7736 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_6268_11478#" 458 0 6268 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_4806_11478#" 458 0 4806 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_3338_11478#" 458 0 3338 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_1876_11478#" 458 0 1876 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_408_11478#" 458 0 408 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n3654_11478#" 458 0 -3654 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n5122_11478#" 458 0 -5122 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n6584_11478#" 458 0 -6584 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n8052_11478#" 458 0 -8052 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n9514_11478#" 458 0 -9514 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n10982_11478#" 458 0 -10982 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n12444_11478#" 458 0 -12444 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n13912_11478#" 458 0 -13912 11478 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "InputRef" 17061 155116 -17620 10052 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 563904 26952 0 0 139536 8480 464600 9460 869000 13100 84000 1160 76504 1108 71746088 49772 0 0
+node "InputSignal" 17060 -2466.93 -18998 10052 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 563904 26952 0 0 139536 8480 464600 9460 702000 11060 0 0 0 0 0 0 0 0
+node "a_53416_13458#" 458 0 53416 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_51948_13458#" 458 0 51948 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_50486_13458#" 458 0 50486 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_49018_13458#" 458 0 49018 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_47556_13458#" 458 0 47556 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_46088_13458#" 458 0 46088 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_44626_13458#" 458 0 44626 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_43158_13458#" 458 0 43158 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_39166_13458#" 458 0 39166 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_37698_13458#" 458 0 37698 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_36236_13458#" 458 0 36236 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_34768_13458#" 458 0 34768 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_33306_13458#" 458 0 33306 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_31838_13458#" 458 0 31838 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_30376_13458#" 458 0 30376 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_28908_13458#" 458 0 28908 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_24916_13458#" 458 0 24916 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_23448_13458#" 458 0 23448 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_21986_13458#" 458 0 21986 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_20518_13458#" 458 0 20518 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_19056_13458#" 458 0 19056 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_17588_13458#" 458 0 17588 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_16126_13458#" 458 0 16126 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_14658_13458#" 458 0 14658 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_10666_13458#" 458 0 10666 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_9198_13458#" 458 0 9198 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_7736_13458#" 458 0 7736 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_6268_13458#" 458 0 6268 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_4806_13458#" 458 0 4806 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_3338_13458#" 458 0 3338 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "OutputP" 208 12722 1876 12278 xpc 0 0 0 0 0 0 0 0 5017600 178688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34348032 371712 23208960 272576 17525760 141760 39182600 152800 31057600 112040 0 0 0 0
+node "a_1876_13458#" 458 0 1876 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "OutputN" 208 6331.63 408 12278 xpc 0 0 0 0 0 0 0 0 5017600 178688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34348032 371712 23208960 272576 17495040 141376 39143200 152800 31057600 112040 0 0 0 0
+node "a_408_13458#" 458 0 408 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n3654_13458#" 458 0 -3654 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n5122_13458#" 458 0 -5122 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n6584_13458#" 458 0 -6584 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n8052_13458#" 458 0 -8052 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n9514_13458#" 458 0 -9514 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n10982_13458#" 458 0 -10982 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "V_da2_P" 47561 -54623 -12444 12278 xpc 0 0 0 0 0 0 0 0 1254400 44672 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9022464 431232 0 0 10819584 228608 11724736 254896 27256240 175020 9936250 39700 7056724 27424 0 0 0 0
+node "a_n12444_13458#" 458 0 -12444 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "V_da2_N" 47561 -69710.7 -13912 12278 xpc 0 0 0 0 0 0 0 0 1254400 44672 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9022464 431232 0 0 10819584 228608 11584640 253424 26649860 171544 9926400 39700 7364324 29144 0 0 0 0
+node "a_n13912_13458#" 458 0 -13912 13458 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n15180_12288#" 673 0 -15180 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n15998_12288#" 673 0 -15998 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n16816_12288#" 673 0 -16816 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "V_da1_N" 11765 -15175.9 -17634 11856 xpc 0 0 0 0 0 0 0 0 313600 11168 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2255616 107808 0 0 2694528 60560 3092660 64696 4794720 44552 1195350 5450 1840000 10000 0 0 0 0
+node "a_n17634_12288#" 673 0 -17634 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n18520_12288#" 673 0 -18520 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n19338_12288#" 673 0 -19338 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n20156_12288#" 673 0 -20156 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "V_da1_P" 11752 -9511.31 -20974 11856 xpc 0 0 0 0 0 0 0 0 313600 11168 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2255616 107808 0 0 2694528 60560 3092784 65024 5194240 48436 1321150 6870 1840000 10000 0 0 0 0
+node "a_n20974_12288#" 673 0 -20974 12288 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "outd_stage3_0/outd_stage2_0/cmirror_out" 4754 17035.9 296 9116 pw 68279616 104768 0 0 0 0 0 0 28787200 1027136 5692416 334848 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29998208 1243072 27365808 1079440 34759040 472704 87300350 231380 0 0 0 0 0 0
+node "outd_stage2_0/cmirror_out" 35228 9687.36 -14024 9116 pw 17069904 26192 0 0 0 0 0 0 7196800 256784 1423104 83712 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7499552 310768 6841452 269860 8689760 118176 21580710 54930 0 0 0 0 0 0
+node "outd_stage1_0/isource_out" 68728 6844.71 -19204 9906 pw 4193184 8612 0 0 0 0 0 0 1564800 55824 355776 20928 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1272292 71364 1492596 58776 1896160 25828 3378060 10378 0 0 0 0 0 0
+node "VP" 3283 1.6561e+06 -19410 9700 dnw 0 0 119313000 149460 41880696 292872 0 0 11081352 299496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90003370 838054 59050588 276860 32615200 145560 157993000 262500 425331344 370004 276489872 321012 0 0
+substrate "outd_stage3_0/outd_stage2_0/VN" 0 0 -21140 11690 pw 762908452 499272 0 0 0 0 0 0 43523200 1718416 40145704 2361512 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118124028 3361492 49694536 1906980 103842360 1232312 190416292 414416 189659716 225154 579495736 394336 0 0
+cap "outd_stage2_0/cmirror_out" "a_n14090_6326#" 420678
+cap "V_da1_N" "VP" 10697.8
+cap "I_Bias" "a_n19882_7120#" 4395.71
+cap "outd_stage2_0/cmirror_out" "V_da1_N" 90328.3
+cap "outd_stage1_0/isource_out" "VP" 14234.3
+cap "V_da2_N" "VP" 144699
+cap "a_n19882_7120#" "InputRef" 671.36
+cap "outd_stage1_0/isource_out" "a_n19260_7126#" 83158.7
+cap "VP" "InputSignal" 1192.79
+cap "V_da2_P" "VP" 147109
+cap "V_da2_N" "outd_stage2_0/cmirror_out" 138702
+cap "OutputP" "VP" 274184
+cap "outd_stage2_0/cmirror_out" "V_da2_P" 139342
+cap "VP" "V_da1_P" 14527.3
+cap "VP" "I_Bias" 243762
+cap "outd_stage2_0/cmirror_out" "V_da1_P" 99268.2
+cap "I_Bias" "a_230_6326#" 1.01105e+06
+cap "V_da2_N" "OutputN" 147455
+cap "outd_stage2_0/cmirror_out" "I_Bias" 108049
+cap "V_da2_P" "OutputN" 24188
+cap "outd_stage1_0/isource_out" "V_da1_N" 34476.4
+cap "OutputP" "OutputN" 119721
+cap "I_Bias" "a_n19260_7126#" 50486.5
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "VP" 620999
+cap "VP" "InputRef" 2369.07
+cap "V_da2_N" "V_da1_N" 35320.5
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "a_230_6326#" 1.68661e+06
+cap "V_da2_P" "V_da1_N" 8252.46
+cap "V_da1_N" "InputSignal" 857.309
+cap "a_n14090_6326#" "I_Bias" 252481
+cap "outd_stage1_0/isource_out" "InputSignal" 21422.4
+cap "V_da1_N" "V_da1_P" 20388.7
+cap "a_n19260_7126#" "InputRef" 11117.7
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "OutputN" 554679
+cap "outd_stage1_0/isource_out" "V_da1_P" 35297.7
+cap "V_da2_N" "V_da2_P" 84461.6
+cap "outd_stage1_0/isource_out" "I_Bias" 21054.3
+cap "V_da2_N" "OutputP" 38863.4
+cap "OutputP" "V_da2_P" 136677
+cap "a_n19882_7120#" "a_n19260_7126#" 94.7036
+cap "V_da2_N" "V_da1_P" 6047.01
+cap "V_da2_P" "V_da1_P" 34169.2
+cap "V_da1_P" "InputSignal" 8533.73
+cap "V_da1_N" "InputRef" 6801.11
+cap "outd_stage1_0/isource_out" "InputRef" 26567.1
+cap "V_da2_N" "outd_stage3_0/outd_stage2_0/cmirror_out" 349002
+cap "VP" "a_230_6326#" 358753
+cap "outd_stage2_0/cmirror_out" "VP" 173616
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 411624
+cap "InputRef" "InputSignal" 76.3594
+cap "outd_stage1_0/isource_out" "a_n19882_7120#" 137.992
+cap "OutputP" "outd_stage3_0/outd_stage2_0/cmirror_out" 557238
+cap "VP" "a_n19260_7126#" 32.5217
+cap "V_da1_P" "InputRef" 544.085
+cap "outd_stage3_0/outd_stage2_0/cmirror_out" "I_Bias" 433237
+cap "VP" "OutputN" 280270
+cap "I_Bias" "InputRef" 10531.7
+cap "VP" "a_n14090_6326#" 102639
+device csubckt sky130_fd_pr__cap_mim_m3_2 47901 3560 47902 3561 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 30781 3520 30782 3521 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 23261 3520 23262 3521 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 15501 3500 15502 3501 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 8001 3500 8002 3501 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 421 3520 422 3521 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -6999 3540 -6998 3541 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -14199 3540 -14198 3541 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 39561 3580 39562 3581 w=6000 l=6000 "None" "outd_stage3_0/outd_stage2_0/VN" 23680 0 "VP" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -21659 4044 -21658 4045 w=6000 l=6000 "None" "InputRef" 23680 0 "outd_stage3_0/outd_stage2_0/VN" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -28439 4064 -28438 4065 w=6000 l=6000 "None" "InputRef" 23680 0 "outd_stage3_0/outd_stage2_0/VN" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_1 -25680 10690 -25679 10691 w=4000 l=4000 "None" "outd_stage3_0/outd_stage2_0/VN" 15680 0 "I_Bias" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_1 -30120 10700 -30119 10701 w=4000 l=4000 "None" "outd_stage3_0/outd_stage2_0/VN" 15680 0 "I_Bias" 0 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 1166 56717 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 1166 56559 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 1166 56401 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 1166 56243 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 1166 56085 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 1166 55927 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 1166 55769 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 1166 55611 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 1166 55453 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 1166 55295 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 1166 55137 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 1166 54979 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 1166 54821 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 1166 54663 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 1166 54505 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 1166 54347 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 1784 56717 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 1784 56559 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 1784 56401 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 1784 56243 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 1784 56085 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 1784 55927 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 1784 55769 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 1784 55611 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 1784 55453 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 1784 55295 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 1784 55137 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 1784 54979 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 1784 54821 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 1784 54663 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 1784 54505 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 1784 54347 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 2402 56717 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 2402 56559 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 2402 56401 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 2402 56243 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 2402 56085 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 2402 55927 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 2402 55769 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 2402 55611 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 2402 55453 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 2402 55295 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 2402 55137 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 2402 54979 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 2402 54821 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 2402 54663 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 2402 54505 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 2402 54347 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 3020 56717 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 3020 56559 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 3020 56401 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 3020 56243 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 3020 56085 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 3020 55927 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 3020 55769 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 3020 55611 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 3020 55453 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 3020 55295 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 3020 55137 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 3020 54979 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 3020 54821 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 3020 54663 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 3020 54505 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 3020 54347 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 3638 56717 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 3638 56559 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 3638 56401 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 3638 56243 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 3638 56085 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 3638 55927 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 3638 55769 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 3638 55611 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 3638 55453 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 3638 55295 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 3638 55137 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 3638 54979 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 3638 54821 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 3638 54663 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 3638 54505 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 3638 54347 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 4256 56717 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 4256 56559 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 4256 56401 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 4256 56243 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 4256 56085 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 4256 55927 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 4256 55769 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 4256 55611 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 4256 55453 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 4256 55295 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 4256 55137 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 4256 54979 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 4256 54821 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 4256 54663 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 4256 54505 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 4256 54347 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 4874 56717 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 4874 56559 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 4874 56401 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 4874 56243 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 4874 56085 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 4874 55927 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 4874 55769 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 4874 55611 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 4874 55453 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 4874 55295 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 4874 55137 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 4874 54979 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 4874 54821 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 4874 54663 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 4874 54505 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 4874 54347 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56716 5492 56717 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56558 5492 56559 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56400 5492 56401 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56242 5492 56243 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 56084 5492 56085 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55926 5492 55927 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55768 5492 55769 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55610 5492 55611 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55452 5492 55453 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55294 5492 55295 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55136 5492 55137 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54978 5492 54979 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54820 5492 54821 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54662 5492 54663 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54504 5492 54505 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54346 5492 54347 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 1166 53867 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 1166 53709 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 1166 53551 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 1166 53393 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 1166 53235 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 1166 53077 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 1166 52919 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 1166 52761 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 1166 52603 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 1166 52445 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 1166 52287 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 1166 52129 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 1166 51971 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 1166 51813 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 1166 51655 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 1166 51497 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 1784 53867 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 1784 53709 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 1784 53551 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 1784 53393 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 1784 53235 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 1784 53077 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 1784 52919 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 1784 52761 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 1784 52603 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 1784 52445 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 1784 52287 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 1784 52129 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 1784 51971 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 1784 51813 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 1784 51655 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 1784 51497 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 2402 53867 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 2402 53709 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 2402 53551 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 2402 53393 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 2402 53235 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 2402 53077 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 2402 52919 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 2402 52761 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 2402 52603 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 2402 52445 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 2402 52287 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 2402 52129 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 2402 51971 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 2402 51813 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 2402 51655 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 2402 51497 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 3020 53867 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 3020 53709 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 3020 53551 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 3020 53393 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 3020 53235 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 3020 53077 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 3020 52919 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 3020 52761 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 3020 52603 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 3020 52445 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 3020 52287 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 3020 52129 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 3020 51971 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 3020 51813 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 3020 51655 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 3020 51497 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 3638 53867 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 3638 53709 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 3638 53551 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 3638 53393 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 3638 53235 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 3638 53077 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 3638 52919 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 3638 52761 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 3638 52603 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 3638 52445 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 3638 52287 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 3638 52129 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 3638 51971 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 3638 51813 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 3638 51655 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 3638 51497 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 4256 53867 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 4256 53709 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 4256 53551 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 4256 53393 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 4256 53235 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 4256 53077 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 4256 52919 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 4256 52761 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 4256 52603 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 4256 52445 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 4256 52287 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 4256 52129 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 4256 51971 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 4256 51813 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 4256 51655 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 4256 51497 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 4874 53867 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 4874 53709 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 4874 53551 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 4874 53393 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 4874 53235 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 4874 53077 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 4874 52919 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 4874 52761 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 4874 52603 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 4874 52445 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 4874 52287 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 4874 52129 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 4874 51971 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 4874 51813 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 4874 51655 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 4874 51497 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53866 5492 53867 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53708 5492 53709 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53550 5492 53551 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53392 5492 53393 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53234 5492 53235 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 53076 5492 53077 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52918 5492 52919 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52760 5492 52761 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52602 5492 52603 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52444 5492 52445 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52286 5492 52287 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52128 5492 52129 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51970 5492 51971 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51812 5492 51813 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51654 5492 51655 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51496 5492 51497 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 1166 51017 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 1166 50859 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 1166 50701 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 1166 50543 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 1166 50385 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 1166 50227 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 1166 50069 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 1166 49911 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 1166 49753 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 1166 49595 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 1166 49437 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 1166 49279 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 1166 49121 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 1166 48963 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 1166 48805 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 1166 48647 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 1784 51017 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 1784 50859 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 1784 50701 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 1784 50543 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 1784 50385 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 1784 50227 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 1784 50069 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 1784 49911 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 1784 49753 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 1784 49595 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 1784 49437 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 1784 49279 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 1784 49121 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 1784 48963 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 1784 48805 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 1784 48647 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 2402 51017 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 2402 50859 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 2402 50701 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 2402 50543 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 2402 50385 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 2402 50227 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 2402 50069 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 2402 49911 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 2402 49753 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 2402 49595 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 2402 49437 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 2402 49279 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 2402 49121 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 2402 48963 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 2402 48805 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 2402 48647 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 3020 51017 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 3020 50859 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 3020 50701 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 3020 50543 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 3020 50385 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 3020 50227 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 3020 50069 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 3020 49911 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 3020 49753 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 3020 49595 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 3020 49437 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 3020 49279 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 3020 49121 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 3020 48963 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 3020 48805 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 3020 48647 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 3638 51017 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 3638 50859 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 3638 50701 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 3638 50543 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 3638 50385 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 3638 50227 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 3638 50069 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 3638 49911 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 3638 49753 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 3638 49595 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 3638 49437 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 3638 49279 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 3638 49121 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 3638 48963 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 3638 48805 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 3638 48647 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 4256 51017 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 4256 50859 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 4256 50701 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 4256 50543 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 4256 50385 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 4256 50227 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 4256 50069 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 4256 49911 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 4256 49753 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 4256 49595 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 4256 49437 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 4256 49279 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 4256 49121 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 4256 48963 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 4256 48805 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 4256 48647 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 4874 51017 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 4874 50859 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 4874 50701 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 4874 50543 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 4874 50385 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 4874 50227 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 4874 50069 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 4874 49911 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 4874 49753 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 4874 49595 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 4874 49437 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 4874 49279 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 4874 49121 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 4874 48963 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 4874 48805 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 4874 48647 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51016 5492 51017 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50858 5492 50859 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50700 5492 50701 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50542 5492 50543 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50384 5492 50385 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50226 5492 50227 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50068 5492 50069 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49910 5492 49911 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49752 5492 49753 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49594 5492 49595 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49436 5492 49437 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49278 5492 49279 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49120 5492 49121 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48962 5492 48963 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48804 5492 48805 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48646 5492 48647 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 1166 48167 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 1166 48009 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 1166 47851 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 1166 47693 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 1166 47535 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 1166 47377 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 1166 47219 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 1166 47061 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 1166 46903 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 1166 46745 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 1166 46587 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 1166 46429 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 1166 46271 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 1166 46113 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 1166 45955 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 1166 45797 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 1784 48167 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 1784 48009 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 1784 47851 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 1784 47693 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 1784 47535 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 1784 47377 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 1784 47219 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 1784 47061 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 1784 46903 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 1784 46745 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 1784 46587 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 1784 46429 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 1784 46271 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 1784 46113 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 1784 45955 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 1784 45797 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 2402 48167 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 2402 48009 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 2402 47851 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 2402 47693 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 2402 47535 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 2402 47377 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 2402 47219 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 2402 47061 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 2402 46903 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 2402 46745 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 2402 46587 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 2402 46429 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 2402 46271 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 2402 46113 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 2402 45955 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 2402 45797 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 3020 48167 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 3020 48009 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 3020 47851 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 3020 47693 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 3020 47535 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 3020 47377 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 3020 47219 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 3020 47061 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 3020 46903 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 3020 46745 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 3020 46587 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 3020 46429 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 3020 46271 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 3020 46113 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 3020 45955 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 3020 45797 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 3638 48167 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 3638 48009 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 3638 47851 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 3638 47693 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 3638 47535 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 3638 47377 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 3638 47219 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 3638 47061 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 3638 46903 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 3638 46745 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 3638 46587 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 3638 46429 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 3638 46271 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 3638 46113 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 3638 45955 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 3638 45797 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 4256 48167 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 4256 48009 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 4256 47851 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 4256 47693 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 4256 47535 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 4256 47377 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 4256 47219 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 4256 47061 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 4256 46903 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 4256 46745 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 4256 46587 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 4256 46429 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 4256 46271 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 4256 46113 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 4256 45955 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 4256 45797 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 4874 48167 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 4874 48009 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 4874 47851 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 4874 47693 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 4874 47535 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 4874 47377 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 4874 47219 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 4874 47061 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 4874 46903 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 4874 46745 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 4874 46587 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 4874 46429 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 4874 46271 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 4874 46113 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 4874 45955 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 4874 45797 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48166 5492 48167 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48008 5492 48009 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47850 5492 47851 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47692 5492 47693 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47534 5492 47535 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47376 5492 47377 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47218 5492 47219 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47060 5492 47061 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46902 5492 46903 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46744 5492 46745 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46586 5492 46587 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46428 5492 46429 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46270 5492 46271 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46112 5492 46113 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45954 5492 45955 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45796 5492 45797 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 1166 45317 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 1166 45159 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 1166 45001 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 1166 44843 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 1166 44685 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 1166 44527 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 1166 44369 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 1166 44211 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 1166 44053 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 1166 43895 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 1166 43737 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 1166 43579 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 1166 43421 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 1166 43263 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 1166 43105 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 1166 42947 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 1784 45317 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 1784 45159 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 1784 45001 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 1784 44843 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 1784 44685 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 1784 44527 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 1784 44369 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 1784 44211 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 1784 44053 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 1784 43895 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 1784 43737 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 1784 43579 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 1784 43421 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 1784 43263 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 1784 43105 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 1784 42947 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 2402 45317 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 2402 45159 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 2402 45001 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 2402 44843 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 2402 44685 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 2402 44527 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 2402 44369 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 2402 44211 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 2402 44053 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 2402 43895 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 2402 43737 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 2402 43579 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 2402 43421 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 2402 43263 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 2402 43105 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 2402 42947 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 3020 45317 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 3020 45159 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 3020 45001 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 3020 44843 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 3020 44685 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 3020 44527 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 3020 44369 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 3020 44211 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 3020 44053 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 3020 43895 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 3020 43737 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 3020 43579 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 3020 43421 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 3020 43263 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 3020 43105 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 3020 42947 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 3638 45317 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 3638 45159 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 3638 45001 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 3638 44843 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 3638 44685 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 3638 44527 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 3638 44369 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 3638 44211 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 3638 44053 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 3638 43895 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 3638 43737 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 3638 43579 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 3638 43421 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 3638 43263 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 3638 43105 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 3638 42947 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 4256 45317 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 4256 45159 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 4256 45001 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 4256 44843 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 4256 44685 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 4256 44527 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 4256 44369 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 4256 44211 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 4256 44053 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 4256 43895 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 4256 43737 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 4256 43579 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 4256 43421 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 4256 43263 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 4256 43105 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 4256 42947 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 4874 45317 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 4874 45159 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 4874 45001 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 4874 44843 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 4874 44685 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 4874 44527 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 4874 44369 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 4874 44211 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 4874 44053 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 4874 43895 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 4874 43737 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 4874 43579 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 4874 43421 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 4874 43263 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 4874 43105 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 4874 42947 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45316 5492 45317 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45158 5492 45159 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45000 5492 45001 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44842 5492 44843 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44684 5492 44685 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44526 5492 44527 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44368 5492 44369 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44210 5492 44211 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44052 5492 44053 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43894 5492 43895 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43736 5492 43737 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43578 5492 43579 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43420 5492 43421 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43262 5492 43263 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43104 5492 43105 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42946 5492 42947 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 1166 42467 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 1166 42309 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 1166 42151 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 1166 41993 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 1166 41835 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 1166 41677 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 1166 41519 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 1166 41361 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 1166 41203 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 1166 41045 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 1166 40887 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 1166 40729 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 1166 40571 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 1166 40413 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 1166 40255 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 1166 40097 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 1784 42467 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 1784 42309 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 1784 42151 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 1784 41993 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 1784 41835 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 1784 41677 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 1784 41519 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 1784 41361 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 1784 41203 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 1784 41045 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 1784 40887 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 1784 40729 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 1784 40571 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 1784 40413 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 1784 40255 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 1784 40097 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 2402 42467 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 2402 42309 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 2402 42151 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 2402 41993 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 2402 41835 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 2402 41677 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 2402 41519 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 2402 41361 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 2402 41203 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 2402 41045 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 2402 40887 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 2402 40729 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 2402 40571 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 2402 40413 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 2402 40255 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 2402 40097 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 3020 42467 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 3020 42309 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 3020 42151 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 3020 41993 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 3020 41835 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 3020 41677 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 3020 41519 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 3020 41361 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 3020 41203 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 3020 41045 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 3020 40887 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 3020 40729 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 3020 40571 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 3020 40413 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 3020 40255 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 3020 40097 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 3638 42467 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 3638 42309 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 3638 42151 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 3638 41993 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 3638 41835 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 3638 41677 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 3638 41519 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 3638 41361 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 3638 41203 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 3638 41045 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 3638 40887 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 3638 40729 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 3638 40571 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 3638 40413 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 3638 40255 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 3638 40097 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 4256 42467 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 4256 42309 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 4256 42151 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 4256 41993 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 4256 41835 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 4256 41677 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 4256 41519 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 4256 41361 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 4256 41203 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 4256 41045 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 4256 40887 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 4256 40729 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 4256 40571 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 4256 40413 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 4256 40255 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 4256 40097 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 4874 42467 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 4874 42309 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 4874 42151 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 4874 41993 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 4874 41835 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 4874 41677 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 4874 41519 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 4874 41361 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 4874 41203 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 4874 41045 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 4874 40887 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 4874 40729 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 4874 40571 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 4874 40413 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 4874 40255 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 4874 40097 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42466 5492 42467 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42308 5492 42309 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42150 5492 42151 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41992 5492 41993 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41834 5492 41835 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41676 5492 41677 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41518 5492 41519 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41360 5492 41361 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41202 5492 41203 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41044 5492 41045 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40886 5492 40887 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40728 5492 40729 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40570 5492 40571 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40412 5492 40413 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40254 5492 40255 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40096 5492 40097 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 1166 39617 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 1166 39459 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 1166 39301 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 1166 39143 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 1166 38985 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 1166 38827 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 1166 38669 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 1166 38511 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 1166 38353 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 1166 38195 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 1166 38037 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 1166 37879 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 1166 37721 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 1166 37563 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 1166 37405 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 1166 37247 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 1784 39617 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 1784 39459 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 1784 39301 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 1784 39143 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 1784 38985 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 1784 38827 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 1784 38669 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 1784 38511 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 1784 38353 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 1784 38195 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 1784 38037 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 1784 37879 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 1784 37721 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 1784 37563 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 1784 37405 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 1784 37247 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 2402 39617 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 2402 39459 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 2402 39301 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 2402 39143 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 2402 38985 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 2402 38827 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 2402 38669 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 2402 38511 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 2402 38353 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 2402 38195 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 2402 38037 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 2402 37879 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 2402 37721 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 2402 37563 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 2402 37405 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 2402 37247 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 3020 39617 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 3020 39459 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 3020 39301 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 3020 39143 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 3020 38985 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 3020 38827 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 3020 38669 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 3020 38511 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 3020 38353 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 3020 38195 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 3020 38037 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 3020 37879 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 3020 37721 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 3020 37563 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 3020 37405 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 3020 37247 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 3638 39617 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 3638 39459 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 3638 39301 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 3638 39143 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 3638 38985 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 3638 38827 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 3638 38669 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 3638 38511 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 3638 38353 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 3638 38195 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 3638 38037 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 3638 37879 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 3638 37721 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 3638 37563 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 3638 37405 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 3638 37247 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 4256 39617 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 4256 39459 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 4256 39301 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 4256 39143 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 4256 38985 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 4256 38827 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 4256 38669 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 4256 38511 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 4256 38353 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 4256 38195 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 4256 38037 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 4256 37879 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 4256 37721 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 4256 37563 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 4256 37405 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 4256 37247 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 4874 39617 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 4874 39459 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 4874 39301 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 4874 39143 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 4874 38985 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 4874 38827 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 4874 38669 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 4874 38511 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 4874 38353 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 4874 38195 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 4874 38037 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 4874 37879 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 4874 37721 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 4874 37563 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 4874 37405 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 4874 37247 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39616 5492 39617 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39458 5492 39459 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39300 5492 39301 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 39142 5492 39143 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38984 5492 38985 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38826 5492 38827 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38668 5492 38669 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38510 5492 38511 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38352 5492 38353 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38194 5492 38195 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38036 5492 38037 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37878 5492 37879 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37720 5492 37721 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37562 5492 37563 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37404 5492 37405 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37246 5492 37247 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 1166 36767 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 1166 36609 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 1166 36451 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 1166 36293 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 1166 36135 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 1166 35977 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 1166 35819 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 1166 35661 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 1166 35503 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 1166 35345 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 1166 35187 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 1166 35029 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 1166 34871 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 1166 34713 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 1166 34555 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 1166 34397 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 1784 36767 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 1784 36609 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 1784 36451 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 1784 36293 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 1784 36135 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 1784 35977 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 1784 35819 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 1784 35661 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 1784 35503 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 1784 35345 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 1784 35187 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 1784 35029 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 1784 34871 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 1784 34713 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 1784 34555 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 1784 34397 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 2402 36767 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 2402 36609 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 2402 36451 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 2402 36293 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 2402 36135 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 2402 35977 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 2402 35819 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 2402 35661 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 2402 35503 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 2402 35345 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 2402 35187 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 2402 35029 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 2402 34871 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 2402 34713 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 2402 34555 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 2402 34397 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 3020 36767 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 3020 36609 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 3020 36451 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 3020 36293 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 3020 36135 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 3020 35977 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 3020 35819 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 3020 35661 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 3020 35503 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 3020 35345 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 3020 35187 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 3020 35029 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 3020 34871 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 3020 34713 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 3020 34555 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 3020 34397 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 3638 36767 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 3638 36609 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 3638 36451 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 3638 36293 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 3638 36135 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 3638 35977 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 3638 35819 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 3638 35661 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 3638 35503 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 3638 35345 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 3638 35187 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 3638 35029 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 3638 34871 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 3638 34713 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 3638 34555 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 3638 34397 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 4256 36767 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 4256 36609 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 4256 36451 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 4256 36293 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 4256 36135 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 4256 35977 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 4256 35819 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 4256 35661 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 4256 35503 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 4256 35345 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 4256 35187 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 4256 35029 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 4256 34871 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 4256 34713 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 4256 34555 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 4256 34397 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 4874 36767 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 4874 36609 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 4874 36451 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 4874 36293 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 4874 36135 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 4874 35977 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 4874 35819 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 4874 35661 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 4874 35503 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 4874 35345 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 4874 35187 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 4874 35029 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 4874 34871 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 4874 34713 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 4874 34555 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 4874 34397 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36766 5492 36767 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36608 5492 36609 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36450 5492 36451 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36292 5492 36293 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 36134 5492 36135 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35976 5492 35977 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35818 5492 35819 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35660 5492 35661 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35502 5492 35503 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35344 5492 35345 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35186 5492 35187 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35028 5492 35029 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34870 5492 34871 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34712 5492 34713 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34554 5492 34555 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34396 5492 34397 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 1166 33917 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 1166 33759 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 1166 33601 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 1166 33443 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 1166 33285 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 1166 33127 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 1166 32969 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 1166 32811 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 1166 32653 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 1166 32495 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 1166 32337 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 1166 32179 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 1166 32021 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 1166 31863 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 1166 31705 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 1166 31547 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 1784 33917 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 1784 33759 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 1784 33601 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 1784 33443 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 1784 33285 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 1784 33127 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 1784 32969 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 1784 32811 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 1784 32653 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 1784 32495 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 1784 32337 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 1784 32179 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 1784 32021 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 1784 31863 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 1784 31705 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 1784 31547 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 2402 33917 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 2402 33759 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 2402 33601 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 2402 33443 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 2402 33285 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 2402 33127 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 2402 32969 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 2402 32811 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 2402 32653 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 2402 32495 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 2402 32337 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 2402 32179 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 2402 32021 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 2402 31863 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 2402 31705 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 2402 31547 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 3020 33917 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 3020 33759 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 3020 33601 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 3020 33443 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 3020 33285 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 3020 33127 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 3020 32969 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 3020 32811 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 3020 32653 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 3020 32495 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 3020 32337 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 3020 32179 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 3020 32021 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 3020 31863 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 3020 31705 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 3020 31547 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 3638 33917 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 3638 33759 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 3638 33601 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 3638 33443 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 3638 33285 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 3638 33127 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 3638 32969 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 3638 32811 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 3638 32653 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 3638 32495 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 3638 32337 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 3638 32179 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 3638 32021 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 3638 31863 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 3638 31705 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 3638 31547 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 4256 33917 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 4256 33759 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 4256 33601 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 4256 33443 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 4256 33285 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 4256 33127 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 4256 32969 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 4256 32811 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 4256 32653 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 4256 32495 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 4256 32337 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 4256 32179 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 4256 32021 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 4256 31863 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 4256 31705 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 4256 31547 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 4874 33917 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 4874 33759 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 4874 33601 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 4874 33443 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 4874 33285 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 4874 33127 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 4874 32969 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 4874 32811 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 4874 32653 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 4874 32495 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 4874 32337 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 4874 32179 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 4874 32021 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 4874 31863 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 4874 31705 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 4874 31547 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33916 5492 33917 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33758 5492 33759 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33600 5492 33601 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33442 5492 33443 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33284 5492 33285 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33126 5492 33127 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32968 5492 32969 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32810 5492 32811 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32652 5492 32653 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32494 5492 32495 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32336 5492 32337 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32178 5492 32179 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32020 5492 32021 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31862 5492 31863 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31704 5492 31705 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31546 5492 31547 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 1166 31067 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 1166 30909 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 1166 30751 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 1166 30593 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 1166 30435 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 1166 30277 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 1166 30119 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 1166 29961 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 1166 29803 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 1166 29645 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 1166 29487 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 1166 29329 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 1166 29171 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 1166 29013 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 1166 28855 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 1166 28697 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 1784 31067 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 1784 30909 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 1784 30751 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 1784 30593 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 1784 30435 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 1784 30277 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 1784 30119 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 1784 29961 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 1784 29803 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 1784 29645 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 1784 29487 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 1784 29329 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 1784 29171 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 1784 29013 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 1784 28855 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 1784 28697 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 2402 31067 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 2402 30909 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 2402 30751 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 2402 30593 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 2402 30435 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 2402 30277 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 2402 30119 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 2402 29961 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 2402 29803 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 2402 29645 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 2402 29487 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 2402 29329 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 2402 29171 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 2402 29013 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 2402 28855 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 2402 28697 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 3020 31067 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 3020 30909 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 3020 30751 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 3020 30593 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 3020 30435 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 3020 30277 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 3020 30119 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 3020 29961 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 3020 29803 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 3020 29645 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 3020 29487 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 3020 29329 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 3020 29171 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 3020 29013 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 3020 28855 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 3020 28697 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 3638 31067 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 3638 30909 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 3638 30751 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 3638 30593 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 3638 30435 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 3638 30277 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 3638 30119 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 3638 29961 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 3638 29803 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 3638 29645 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 3638 29487 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 3638 29329 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 3638 29171 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 3638 29013 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 3638 28855 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 3638 28697 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 4256 31067 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 4256 30909 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 4256 30751 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 4256 30593 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 4256 30435 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 4256 30277 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 4256 30119 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 4256 29961 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 4256 29803 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 4256 29645 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 4256 29487 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 4256 29329 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 4256 29171 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 4256 29013 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 4256 28855 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 4256 28697 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 4874 31067 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 4874 30909 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 4874 30751 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 4874 30593 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 4874 30435 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 4874 30277 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 4874 30119 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 4874 29961 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 4874 29803 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 4874 29645 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 4874 29487 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 4874 29329 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 4874 29171 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 4874 29013 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 4874 28855 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 4874 28697 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31066 5492 31067 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30908 5492 30909 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30750 5492 30751 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30592 5492 30593 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30434 5492 30435 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30276 5492 30277 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30118 5492 30119 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29960 5492 29961 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29802 5492 29803 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29644 5492 29645 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29486 5492 29487 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29328 5492 29329 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29170 5492 29171 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29012 5492 29013 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28854 5492 28855 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28696 5492 28697 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 1166 28217 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 1166 28059 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 1166 27901 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 1166 27743 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 1166 27585 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 1166 27427 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 1166 27269 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 1166 27111 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 1166 26953 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 1166 26795 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 1166 26637 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 1166 26479 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 1166 26321 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 1166 26163 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 1166 26005 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 1166 25847 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 1784 28217 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 1784 28059 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 1784 27901 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 1784 27743 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 1784 27585 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 1784 27427 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 1784 27269 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 1784 27111 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 1784 26953 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 1784 26795 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 1784 26637 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 1784 26479 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 1784 26321 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 1784 26163 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 1784 26005 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 1784 25847 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 2402 28217 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 2402 28059 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 2402 27901 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 2402 27743 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 2402 27585 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 2402 27427 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 2402 27269 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 2402 27111 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 2402 26953 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 2402 26795 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 2402 26637 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 2402 26479 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 2402 26321 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 2402 26163 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 2402 26005 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 2402 25847 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 3020 28217 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 3020 28059 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 3020 27901 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 3020 27743 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 3020 27585 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 3020 27427 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 3020 27269 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 3020 27111 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 3020 26953 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 3020 26795 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 3020 26637 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 3020 26479 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 3020 26321 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 3020 26163 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 3020 26005 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 3020 25847 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 3638 28217 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 3638 28059 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 3638 27901 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 3638 27743 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 3638 27585 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 3638 27427 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 3638 27269 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 3638 27111 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 3638 26953 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 3638 26795 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 3638 26637 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 3638 26479 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 3638 26321 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 3638 26163 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 3638 26005 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 3638 25847 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 4256 28217 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 4256 28059 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 4256 27901 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 4256 27743 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 4256 27585 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 4256 27427 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 4256 27269 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 4256 27111 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 4256 26953 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 4256 26795 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 4256 26637 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 4256 26479 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 4256 26321 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 4256 26163 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 4256 26005 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 4256 25847 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 4874 28217 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 4874 28059 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 4874 27901 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 4874 27743 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 4874 27585 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 4874 27427 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 4874 27269 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 4874 27111 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 4874 26953 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 4874 26795 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 4874 26637 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 4874 26479 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 4874 26321 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 4874 26163 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 4874 26005 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 4874 25847 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28216 5492 28217 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28058 5492 28059 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27900 5492 27901 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27742 5492 27743 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27584 5492 27585 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27426 5492 27427 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27268 5492 27269 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27110 5492 27111 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26952 5492 26953 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26794 5492 26795 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26636 5492 26637 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26478 5492 26479 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26320 5492 26321 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26162 5492 26163 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26004 5492 26005 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25846 5492 25847 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 1166 25367 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 1166 25209 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 1166 25051 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 1166 24893 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 1166 24735 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 1166 24577 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 1166 24419 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 1166 24261 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 1166 24103 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 1166 23945 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 1166 23787 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 1166 23629 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 1166 23471 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 1166 23313 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 1166 23155 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 1166 22997 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 1784 25367 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 1784 25209 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 1784 25051 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 1784 24893 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 1784 24735 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 1784 24577 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 1784 24419 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 1784 24261 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 1784 24103 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 1784 23945 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 1784 23787 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 1784 23629 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 1784 23471 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 1784 23313 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 1784 23155 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 1784 22997 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 2402 25367 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 2402 25209 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 2402 25051 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 2402 24893 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 2402 24735 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 2402 24577 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 2402 24419 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 2402 24261 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 2402 24103 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 2402 23945 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 2402 23787 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 2402 23629 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 2402 23471 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 2402 23313 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 2402 23155 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 2402 22997 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 3020 25367 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 3020 25209 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 3020 25051 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 3020 24893 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 3020 24735 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 3020 24577 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 3020 24419 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 3020 24261 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 3020 24103 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 3020 23945 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 3020 23787 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 3020 23629 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 3020 23471 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 3020 23313 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 3020 23155 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 3020 22997 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 3638 25367 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 3638 25209 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 3638 25051 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 3638 24893 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 3638 24735 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 3638 24577 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 3638 24419 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 3638 24261 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 3638 24103 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 3638 23945 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 3638 23787 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 3638 23629 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 3638 23471 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 3638 23313 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 3638 23155 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 3638 22997 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 4256 25367 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 4256 25209 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 4256 25051 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 4256 24893 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 4256 24735 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 4256 24577 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 4256 24419 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 4256 24261 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 4256 24103 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 4256 23945 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 4256 23787 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 4256 23629 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 4256 23471 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 4256 23313 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 4256 23155 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 4256 22997 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 4874 25367 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 4874 25209 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 4874 25051 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 4874 24893 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 4874 24735 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 4874 24577 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 4874 24419 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 4874 24261 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 4874 24103 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 4874 23945 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 4874 23787 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 4874 23629 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 4874 23471 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 4874 23313 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 4874 23155 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 4874 22997 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25366 5492 25367 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25208 5492 25209 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25050 5492 25051 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24892 5492 24893 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24734 5492 24735 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24576 5492 24577 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24418 5492 24419 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24260 5492 24261 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24102 5492 24103 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23944 5492 23945 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23786 5492 23787 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23628 5492 23629 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23470 5492 23471 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23312 5492 23313 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23154 5492 23155 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22996 5492 22997 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 1166 22517 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 1166 22359 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 1166 22201 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 1166 22043 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 1166 21885 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 1166 21727 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 1166 21569 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 1166 21411 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 1166 21253 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 1166 21095 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 1166 20937 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 1166 20779 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 1166 20621 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 1166 20463 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 1166 20305 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 1166 20147 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 1784 22517 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 1784 22359 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 1784 22201 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 1784 22043 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 1784 21885 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 1784 21727 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 1784 21569 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 1784 21411 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 1784 21253 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 1784 21095 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 1784 20937 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 1784 20779 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 1784 20621 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 1784 20463 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 1784 20305 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 1784 20147 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 2402 22517 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 2402 22359 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 2402 22201 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 2402 22043 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 2402 21885 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 2402 21727 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 2402 21569 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 2402 21411 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 2402 21253 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 2402 21095 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 2402 20937 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 2402 20779 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 2402 20621 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 2402 20463 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 2402 20305 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 2402 20147 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 3020 22517 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 3020 22359 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 3020 22201 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 3020 22043 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 3020 21885 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 3020 21727 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 3020 21569 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 3020 21411 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 3020 21253 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 3020 21095 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 3020 20937 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 3020 20779 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 3020 20621 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 3020 20463 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 3020 20305 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 3020 20147 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 3638 22517 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 3638 22359 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 3638 22201 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 3638 22043 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 3638 21885 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 3638 21727 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 3638 21569 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 3638 21411 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 3638 21253 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 3638 21095 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 3638 20937 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 3638 20779 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 3638 20621 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 3638 20463 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 3638 20305 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 3638 20147 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 4256 22517 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 4256 22359 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 4256 22201 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 4256 22043 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 4256 21885 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 4256 21727 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 4256 21569 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 4256 21411 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 4256 21253 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 4256 21095 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 4256 20937 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 4256 20779 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 4256 20621 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 4256 20463 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 4256 20305 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 4256 20147 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 4874 22517 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 4874 22359 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 4874 22201 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 4874 22043 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 4874 21885 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 4874 21727 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 4874 21569 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 4874 21411 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 4874 21253 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 4874 21095 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 4874 20937 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 4874 20779 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 4874 20621 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 4874 20463 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 4874 20305 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 4874 20147 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22516 5492 22517 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22358 5492 22359 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22200 5492 22201 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 22042 5492 22043 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21884 5492 21885 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21726 5492 21727 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21568 5492 21569 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21410 5492 21411 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21252 5492 21253 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21094 5492 21095 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20936 5492 20937 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20778 5492 20779 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20620 5492 20621 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20462 5492 20463 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20304 5492 20305 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20146 5492 20147 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 1166 19667 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 1166 19509 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 1166 19351 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 1166 19193 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 1166 19035 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 1166 18877 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 1166 18719 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 1166 18561 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 1166 18403 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 1166 18245 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 1166 18087 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 1166 17929 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 1166 17771 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 1166 17613 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 1166 17455 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 1166 17297 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 1784 19667 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 1784 19509 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 1784 19351 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 1784 19193 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 1784 19035 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 1784 18877 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 1784 18719 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 1784 18561 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 1784 18403 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 1784 18245 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 1784 18087 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 1784 17929 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 1784 17771 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 1784 17613 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 1784 17455 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 1784 17297 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 2402 19667 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 2402 19509 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 2402 19351 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 2402 19193 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 2402 19035 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 2402 18877 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 2402 18719 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 2402 18561 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 2402 18403 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 2402 18245 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 2402 18087 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 2402 17929 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 2402 17771 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 2402 17613 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 2402 17455 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 2402 17297 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 3020 19667 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 3020 19509 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 3020 19351 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 3020 19193 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 3020 19035 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 3020 18877 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 3020 18719 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 3020 18561 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 3020 18403 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 3020 18245 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 3020 18087 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 3020 17929 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 3020 17771 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 3020 17613 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 3020 17455 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 3020 17297 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 3638 19667 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 3638 19509 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 3638 19351 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 3638 19193 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 3638 19035 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 3638 18877 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 3638 18719 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 3638 18561 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 3638 18403 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 3638 18245 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 3638 18087 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 3638 17929 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 3638 17771 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 3638 17613 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 3638 17455 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 3638 17297 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 4256 19667 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 4256 19509 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 4256 19351 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 4256 19193 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 4256 19035 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 4256 18877 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 4256 18719 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 4256 18561 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 4256 18403 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 4256 18245 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 4256 18087 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 4256 17929 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 4256 17771 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 4256 17613 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 4256 17455 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 4256 17297 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 4874 19667 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 4874 19509 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 4874 19351 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 4874 19193 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 4874 19035 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 4874 18877 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 4874 18719 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 4874 18561 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 4874 18403 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 4874 18245 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 4874 18087 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 4874 17929 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 4874 17771 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 4874 17613 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 4874 17455 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 4874 17297 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19666 5492 19667 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19508 5492 19509 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19350 5492 19351 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19192 5492 19193 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 19034 5492 19035 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18876 5492 18877 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18718 5492 18719 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18560 5492 18561 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18402 5492 18403 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18244 5492 18245 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18086 5492 18087 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17928 5492 17929 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17770 5492 17771 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17612 5492 17613 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17454 5492 17455 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17296 5492 17297 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 1166 16817 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 1166 16659 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 1166 16501 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 1166 16343 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 1166 16185 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 1166 16027 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 1166 15869 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 1166 15711 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 1166 15553 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 1166 15395 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 1166 15237 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 1166 15079 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 1166 14921 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 1166 14763 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 1166 14605 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 1166 14447 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 1784 16817 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 1784 16659 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 1784 16501 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 1784 16343 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 1784 16185 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 1784 16027 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 1784 15869 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 1784 15711 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 1784 15553 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 1784 15395 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 1784 15237 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 1784 15079 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 1784 14921 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 1784 14763 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 1784 14605 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 1784 14447 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 2402 16817 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 2402 16659 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 2402 16501 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 2402 16343 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 2402 16185 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 2402 16027 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 2402 15869 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 2402 15711 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 2402 15553 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 2402 15395 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 2402 15237 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 2402 15079 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 2402 14921 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 2402 14763 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 2402 14605 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 2402 14447 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 3020 16817 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 3020 16659 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 3020 16501 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 3020 16343 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 3020 16185 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 3020 16027 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 3020 15869 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 3020 15711 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 3020 15553 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 3020 15395 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 3020 15237 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 3020 15079 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 3020 14921 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 3020 14763 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 3020 14605 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 3020 14447 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 3638 16817 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 3638 16659 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 3638 16501 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 3638 16343 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 3638 16185 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 3638 16027 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 3638 15869 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 3638 15711 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 3638 15553 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 3638 15395 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 3638 15237 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 3638 15079 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 3638 14921 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 3638 14763 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 3638 14605 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 3638 14447 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 4256 16817 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 4256 16659 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 4256 16501 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 4256 16343 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 4256 16185 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 4256 16027 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 4256 15869 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 4256 15711 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 4256 15553 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 4256 15395 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 4256 15237 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 4256 15079 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 4256 14921 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 4256 14763 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 4256 14605 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 4256 14447 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 4874 16817 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 4874 16659 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 4874 16501 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 4874 16343 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 4874 16185 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 4874 16027 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 4874 15869 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 4874 15711 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 4874 15553 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 4874 15395 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 4874 15237 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 4874 15079 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 4874 14921 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 4874 14763 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 4874 14605 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 4874 14447 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16816 5492 16817 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16658 5492 16659 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16500 5492 16501 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16342 5492 16343 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16184 5492 16185 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 16026 5492 16027 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15868 5492 15869 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15710 5492 15711 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15552 5492 15553 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15394 5492 15395 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15236 5492 15237 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15078 5492 15079 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14920 5492 14921 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14762 5492 14763 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14604 5492 14605 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14446 5492 14447 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 1166 13967 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 1166 13809 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 1166 13651 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 1166 13493 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 1166 13335 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 1166 13177 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 1166 13019 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 1166 12861 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 1166 12703 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 1166 12545 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 1166 12387 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 1166 12229 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 1166 12071 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 1166 11913 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 1166 11755 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 1166 11597 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 1784 13967 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 1784 13809 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 1784 13651 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 1784 13493 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 1784 13335 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 1784 13177 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 1784 13019 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 1784 12861 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 1784 12703 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 1784 12545 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 1784 12387 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 1784 12229 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 1784 12071 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 1784 11913 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 1784 11755 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 1784 11597 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 2402 13967 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 2402 13809 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 2402 13651 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 2402 13493 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 2402 13335 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 2402 13177 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 2402 13019 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 2402 12861 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 2402 12703 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 2402 12545 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 2402 12387 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 2402 12229 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 2402 12071 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 2402 11913 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 2402 11755 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 2402 11597 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 3020 13967 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 3020 13809 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 3020 13651 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 3020 13493 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 3020 13335 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 3020 13177 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 3020 13019 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 3020 12861 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 3020 12703 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 3020 12545 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 3020 12387 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 3020 12229 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 3020 12071 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 3020 11913 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 3020 11755 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 3020 11597 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 3638 13967 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 3638 13809 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 3638 13651 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 3638 13493 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 3638 13335 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 3638 13177 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 3638 13019 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 3638 12861 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 3638 12703 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 3638 12545 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 3638 12387 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 3638 12229 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 3638 12071 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 3638 11913 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 3638 11755 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 3638 11597 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 4256 13967 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 4256 13809 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 4256 13651 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 4256 13493 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 4256 13335 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 4256 13177 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 4256 13019 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 4256 12861 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 4256 12703 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 4256 12545 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 4256 12387 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 4256 12229 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 4256 12071 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 4256 11913 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 4256 11755 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 4256 11597 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 4874 13967 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 4874 13809 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 4874 13651 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 4874 13493 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 4874 13335 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 4874 13177 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 4874 13019 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 4874 12861 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 4874 12703 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 4874 12545 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 4874 12387 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 4874 12229 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 4874 12071 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 4874 11913 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 4874 11755 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 4874 11597 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13966 5492 13967 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13808 5492 13809 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13650 5492 13651 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13492 5492 13493 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13334 5492 13335 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13176 5492 13177 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13018 5492 13019 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12860 5492 12861 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12702 5492 12703 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12544 5492 12545 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12386 5492 12387 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12228 5492 12229 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12070 5492 12071 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11912 5492 11913 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11754 5492 11755 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11596 5492 11597 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 1166 11117 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 1166 10959 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 1166 10801 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 1166 10643 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 1166 10485 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 1166 10327 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 1166 10169 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 1166 10011 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 1166 9853 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 1166 9695 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 1166 9537 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 1166 9379 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 1166 9221 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 1166 9063 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 1166 8905 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 1166 8747 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 1784 11117 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 1784 10959 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 1784 10801 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 1784 10643 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 1784 10485 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 1784 10327 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 1784 10169 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 1784 10011 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 1784 9853 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 1784 9695 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 1784 9537 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 1784 9379 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 1784 9221 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 1784 9063 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 1784 8905 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 1784 8747 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 2402 11117 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 2402 10959 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 2402 10801 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 2402 10643 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 2402 10485 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 2402 10327 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 2402 10169 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 2402 10011 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 2402 9853 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 2402 9695 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 2402 9537 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 2402 9379 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 2402 9221 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 2402 9063 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 2402 8905 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 2402 8747 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 3020 11117 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 3020 10959 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 3020 10801 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 3020 10643 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 3020 10485 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 3020 10327 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 3020 10169 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 3020 10011 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 3020 9853 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 3020 9695 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 3020 9537 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 3020 9379 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 3020 9221 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 3020 9063 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 3020 8905 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 3020 8747 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 3638 11117 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 3638 10959 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 3638 10801 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 3638 10643 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 3638 10485 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 3638 10327 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 3638 10169 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 3638 10011 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 3638 9853 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 3638 9695 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 3638 9537 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 3638 9379 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 3638 9221 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 3638 9063 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 3638 8905 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 3638 8747 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 4256 11117 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 4256 10959 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 4256 10801 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 4256 10643 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 4256 10485 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 4256 10327 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 4256 10169 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 4256 10011 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 4256 9853 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 4256 9695 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 4256 9537 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 4256 9379 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 4256 9221 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 4256 9063 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 4256 8905 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 4256 8747 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 4874 11117 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 4874 10959 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 4874 10801 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 4874 10643 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 4874 10485 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 4874 10327 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 4874 10169 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 4874 10011 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 4874 9853 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 4874 9695 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 4874 9537 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 4874 9379 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 4874 9221 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 4874 9063 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 4874 8905 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 4874 8747 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11116 5492 11117 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10958 5492 10959 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10800 5492 10801 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10642 5492 10643 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10484 5492 10485 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10326 5492 10327 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10168 5492 10169 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10010 5492 10011 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9852 5492 9853 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9694 5492 9695 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9536 5492 9537 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9378 5492 9379 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9220 5492 9221 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9062 5492 9063 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8904 5492 8905 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8746 5492 8747 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 1166 8267 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 1166 8109 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 1166 7951 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 1166 7793 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 1166 7635 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 1166 7477 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 1166 7319 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 1166 7161 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 1166 7003 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 1166 6845 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 1166 6687 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 1166 6529 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 1166 6371 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 1166 6213 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 1166 6055 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 1166 5897 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 1784 8267 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 1784 8109 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 1784 7951 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 1784 7793 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 1784 7635 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 1784 7477 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 1784 7319 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 1784 7161 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 1784 7003 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 1784 6845 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 1784 6687 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 1784 6529 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 1784 6371 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 1784 6213 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 1784 6055 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 1784 5897 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 2402 8267 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 2402 8109 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 2402 7951 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 2402 7793 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 2402 7635 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 2402 7477 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 2402 7319 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 2402 7161 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 2402 7003 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 2402 6845 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 2402 6687 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 2402 6529 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 2402 6371 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 2402 6213 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 2402 6055 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 2402 5897 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 3020 8267 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 3020 8109 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 3020 7951 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 3020 7793 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 3020 7635 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 3020 7477 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 3020 7319 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 3020 7161 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 3020 7003 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 3020 6845 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 3020 6687 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 3020 6529 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 3020 6371 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 3020 6213 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 3020 6055 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 3020 5897 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 3638 8267 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 3638 8109 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 3638 7951 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 3638 7793 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 3638 7635 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 3638 7477 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 3638 7319 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 3638 7161 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 3638 7003 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 3638 6845 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 3638 6687 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 3638 6529 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 3638 6371 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 3638 6213 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 3638 6055 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 3638 5897 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 4256 8267 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 4256 8109 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 4256 7951 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 4256 7793 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 4256 7635 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 4256 7477 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 4256 7319 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 4256 7161 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 4256 7003 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 4256 6845 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 4256 6687 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 4256 6529 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 4256 6371 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 4256 6213 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 4256 6055 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 4256 5897 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 4874 8267 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 4874 8109 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 4874 7951 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 4874 7793 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 4874 7635 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 4874 7477 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 4874 7319 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 4874 7161 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 4874 7003 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 4874 6845 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 4874 6687 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 4874 6529 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 4874 6371 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 4874 6213 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 4874 6055 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 4874 5897 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8266 5492 8267 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8108 5492 8109 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7950 5492 7951 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7792 5492 7793 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7634 5492 7635 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7476 5492 7477 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7318 5492 7319 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7160 5492 7161 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7002 5492 7003 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6844 5492 6845 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6686 5492 6687 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6528 5492 6529 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6370 5492 6371 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6212 5492 6213 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6054 5492 6055 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5896 5492 5897 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 1166 5417 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 1166 5259 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 1166 5101 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 1166 4943 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 1166 4785 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 1166 4627 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 1166 4469 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 1166 4311 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 1166 4153 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 1166 3995 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 1166 3837 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 1166 3679 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 1166 3521 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 1166 3363 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 1166 3205 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 1166 3047 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 1784 5417 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 1784 5259 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 1784 5101 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 1784 4943 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 1784 4785 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 1784 4627 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 1784 4469 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 1784 4311 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 1784 4153 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 1784 3995 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 1784 3837 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 1784 3679 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 1784 3521 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 1784 3363 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 1784 3205 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 1784 3047 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 2402 5417 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 2402 5259 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 2402 5101 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 2402 4943 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 2402 4785 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 2402 4627 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 2402 4469 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 2402 4311 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 2402 4153 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 2402 3995 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 2402 3837 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 2402 3679 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 2402 3521 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 2402 3363 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 2402 3205 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 2402 3047 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 3020 5417 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 3020 5259 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 3020 5101 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 3020 4943 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 3020 4785 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 3020 4627 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 3020 4469 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 3020 4311 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 3020 4153 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 3020 3995 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 3020 3837 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 3020 3679 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 3020 3521 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 3020 3363 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 3020 3205 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 3020 3047 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 3638 5417 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 3638 5259 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 3638 5101 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 3638 4943 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 3638 4785 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 3638 4627 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 3638 4469 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 3638 4311 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 3638 4153 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 3638 3995 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 3638 3837 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 3638 3679 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 3638 3521 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 3638 3363 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 3638 3205 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 3638 3047 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 4256 5417 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 4256 5259 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 4256 5101 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 4256 4943 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 4256 4785 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 4256 4627 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 4256 4469 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 4256 4311 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 4256 4153 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 4256 3995 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 4256 3837 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 4256 3679 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 4256 3521 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 4256 3363 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 4256 3205 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 4256 3047 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 4874 5417 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 4874 5259 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 4874 5101 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 4874 4943 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 4874 4785 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 4874 4627 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 4874 4469 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 4874 4311 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 4874 4153 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 4874 3995 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 4874 3837 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 4874 3679 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 4874 3521 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 4874 3363 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 4874 3205 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 4874 3047 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5416 5492 5417 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5258 5492 5259 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5100 5492 5101 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4942 5492 4943 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4784 5492 4785 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4626 5492 4627 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4468 5492 4469 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4310 5492 4311 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4152 5492 4153 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3994 5492 3995 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3836 5492 3837 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3678 5492 3679 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3520 5492 3521 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3362 5492 3363 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3204 5492 3205 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3046 5492 3047 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 1166 2567 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 1166 2409 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 1166 2251 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 1166 2093 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 1166 1935 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 1166 1777 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 1166 1619 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 1166 1461 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 1166 1303 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 1166 1145 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 1166 987 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 1166 829 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 1166 671 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 1166 513 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 1166 355 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 1166 197 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 1784 2567 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 1784 2409 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 1784 2251 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 1784 2093 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 1784 1935 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 1784 1777 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 1784 1619 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 1784 1461 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 1784 1303 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 1784 1145 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 1784 987 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 1784 829 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 1784 671 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 1784 513 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 1784 355 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 1784 197 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 2402 2567 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 2402 2409 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 2402 2251 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 2402 2093 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 2402 1935 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 2402 1777 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 2402 1619 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 2402 1461 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 2402 1303 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 2402 1145 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 2402 987 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 2402 829 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 2402 671 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 2402 513 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 2402 355 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 2402 197 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 3020 2567 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 3020 2409 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 3020 2251 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 3020 2093 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 3020 1935 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 3020 1777 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 3020 1619 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 3020 1461 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 3020 1303 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 3020 1145 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 3020 987 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 3020 829 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 3020 671 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 3020 513 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 3020 355 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 3020 197 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 3638 2567 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 3638 2409 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 3638 2251 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 3638 2093 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 3638 1935 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 3638 1777 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 3638 1619 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 3638 1461 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 3638 1303 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 3638 1145 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 3638 987 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 3638 829 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 3638 671 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 3638 513 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 3638 355 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 3638 197 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 4256 2567 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 4256 2409 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 4256 2251 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 4256 2093 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 4256 1935 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 4256 1777 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 4256 1619 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 4256 1461 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 4256 1303 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 4256 1145 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 4256 987 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 4256 829 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 4256 671 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 4256 513 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 4256 355 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 4256 197 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 4874 2567 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 4874 2409 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 4874 2251 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 4874 2093 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 4874 1935 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 4874 1777 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 4874 1619 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 4874 1461 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 4874 1303 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 4874 1145 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 4874 987 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 4874 829 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 4874 671 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 4874 513 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 4874 355 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 4874 197 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2566 5492 2567 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2408 5492 2409 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2250 5492 2251 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2092 5492 2093 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1934 5492 1935 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1776 5492 1777 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1618 5492 1619 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1460 5492 1461 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1302 5492 1303 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1144 5492 1145 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 986 5492 987 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 828 5492 829 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 670 5492 671 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 512 5492 513 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 354 5492 355 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 196 5492 197 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 1166 -353 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 1166 -511 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 1166 -669 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 1166 -827 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 1166 -985 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 1166 -1143 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 1166 -1301 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 1166 -1459 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 1166 -1617 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 1166 -1775 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 1166 -1933 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 1166 -2091 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 1166 -2249 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 1166 -2407 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 1166 -2565 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 1166 -2723 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 1784 -353 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 1784 -511 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 1784 -669 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 1784 -827 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 1784 -985 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 1784 -1143 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 1784 -1301 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 1784 -1459 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 1784 -1617 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 1784 -1775 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 1784 -1933 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 1784 -2091 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 1784 -2249 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 1784 -2407 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 1784 -2565 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 1784 -2723 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 2402 -353 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 2402 -511 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 2402 -669 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 2402 -827 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 2402 -985 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 2402 -1143 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 2402 -1301 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 2402 -1459 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 2402 -1617 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 2402 -1775 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 2402 -1933 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 2402 -2091 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 2402 -2249 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 2402 -2407 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 2402 -2565 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 2402 -2723 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 3020 -353 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 3020 -511 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 3020 -669 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 3020 -827 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 3020 -985 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 3020 -1143 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 3020 -1301 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 3020 -1459 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 3020 -1617 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 3020 -1775 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 3020 -1933 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 3020 -2091 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 3020 -2249 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 3020 -2407 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 3020 -2565 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 3020 -2723 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 3638 -353 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 3638 -511 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 3638 -669 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 3638 -827 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 3638 -985 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 3638 -1143 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 3638 -1301 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 3638 -1459 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 3638 -1617 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 3638 -1775 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 3638 -1933 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 3638 -2091 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 3638 -2249 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 3638 -2407 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 3638 -2565 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 3638 -2723 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 4256 -353 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 4256 -511 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 4256 -669 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 4256 -827 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 4256 -985 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 4256 -1143 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 4256 -1301 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 4256 -1459 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 4256 -1617 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 4256 -1775 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 4256 -1933 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 4256 -2091 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 4256 -2249 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 4256 -2407 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 4256 -2565 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 4256 -2723 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 4874 -353 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 4874 -511 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 4874 -669 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 4874 -827 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 4874 -985 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 4874 -1143 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 4874 -1301 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 4874 -1459 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 4874 -1617 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 4874 -1775 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 4874 -1933 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 4874 -2091 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 4874 -2249 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 4874 -2407 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 4874 -2565 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 4874 -2723 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -354 5492 -353 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -512 5492 -511 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -670 5492 -669 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -828 5492 -827 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -986 5492 -985 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1144 5492 -1143 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1302 5492 -1301 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1460 5492 -1459 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1618 5492 -1617 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1776 5492 -1775 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1934 5492 -1933 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2092 5492 -2091 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2250 5492 -2249 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2408 5492 -2407 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2566 5492 -2565 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2724 5492 -2723 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 1166 -3203 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 1166 -3361 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 1166 -3519 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 1166 -3677 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 1166 -3835 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 1166 -3993 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 1166 -4151 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 1166 -4309 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 1166 -4467 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 1166 -4625 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 1166 -4783 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 1166 -4941 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 1166 -5099 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 1166 -5257 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 1166 -5415 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 1166 -5573 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 1784 -3203 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 1784 -3361 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 1784 -3519 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 1784 -3677 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 1784 -3835 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 1784 -3993 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 1784 -4151 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 1784 -4309 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 1784 -4467 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 1784 -4625 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 1784 -4783 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 1784 -4941 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 1784 -5099 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 1784 -5257 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 1784 -5415 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 1784 -5573 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 2402 -3203 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 2402 -3361 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 2402 -3519 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 2402 -3677 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 2402 -3835 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 2402 -3993 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 2402 -4151 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 2402 -4309 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 2402 -4467 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 2402 -4625 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 2402 -4783 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 2402 -4941 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 2402 -5099 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 2402 -5257 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 2402 -5415 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 2402 -5573 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 3020 -3203 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 3020 -3361 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 3020 -3519 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 3020 -3677 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 3020 -3835 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 3020 -3993 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 3020 -4151 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 3020 -4309 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 3020 -4467 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 3020 -4625 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 3020 -4783 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 3020 -4941 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 3020 -5099 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 3020 -5257 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 3020 -5415 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 3020 -5573 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 3638 -3203 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 3638 -3361 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 3638 -3519 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 3638 -3677 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 3638 -3835 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 3638 -3993 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 3638 -4151 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 3638 -4309 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 3638 -4467 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 3638 -4625 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 3638 -4783 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 3638 -4941 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 3638 -5099 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 3638 -5257 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 3638 -5415 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 3638 -5573 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 4256 -3203 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 4256 -3361 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 4256 -3519 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 4256 -3677 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 4256 -3835 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 4256 -3993 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 4256 -4151 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 4256 -4309 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 4256 -4467 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 4256 -4625 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 4256 -4783 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 4256 -4941 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 4256 -5099 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 4256 -5257 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 4256 -5415 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 4256 -5573 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 4874 -3203 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 4874 -3361 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 4874 -3519 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 4874 -3677 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 4874 -3835 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 4874 -3993 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 4874 -4151 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 4874 -4309 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 4874 -4467 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 4874 -4625 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 4874 -4783 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 4874 -4941 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 4874 -5099 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 4874 -5257 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 4874 -5415 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 4874 -5573 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3204 5492 -3203 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3362 5492 -3361 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3520 5492 -3519 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3678 5492 -3677 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3836 5492 -3835 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -3994 5492 -3993 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4152 5492 -4151 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4310 5492 -4309 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4468 5492 -4467 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4626 5492 -4625 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4784 5492 -4783 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4942 5492 -4941 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5100 5492 -5099 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5258 5492 -5257 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5416 5492 -5415 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5574 5492 -5573 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 1166 -6053 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 1166 -6211 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 1166 -6369 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 1166 -6527 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 1166 -6685 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 1166 -6843 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 1166 -7001 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 1166 -7159 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 1166 -7317 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 1166 -7475 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 1166 -7633 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 1166 -7791 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 1166 -7949 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 1166 -8107 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 1166 -8265 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 1166 -8423 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 1784 -6053 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 1784 -6211 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 1784 -6369 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 1784 -6527 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 1784 -6685 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 1784 -6843 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 1784 -7001 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 1784 -7159 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 1784 -7317 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 1784 -7475 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 1784 -7633 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 1784 -7791 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 1784 -7949 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 1784 -8107 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 1784 -8265 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 1784 -8423 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 2402 -6053 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 2402 -6211 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 2402 -6369 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 2402 -6527 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 2402 -6685 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 2402 -6843 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 2402 -7001 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 2402 -7159 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 2402 -7317 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 2402 -7475 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 2402 -7633 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 2402 -7791 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 2402 -7949 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 2402 -8107 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 2402 -8265 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 2402 -8423 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 3020 -6053 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 3020 -6211 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 3020 -6369 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 3020 -6527 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 3020 -6685 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 3020 -6843 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 3020 -7001 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 3020 -7159 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 3020 -7317 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 3020 -7475 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 3020 -7633 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 3020 -7791 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 3020 -7949 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 3020 -8107 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 3020 -8265 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 3020 -8423 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 3638 -6053 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 3638 -6211 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 3638 -6369 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 3638 -6527 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 3638 -6685 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 3638 -6843 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 3638 -7001 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 3638 -7159 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 3638 -7317 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 3638 -7475 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 3638 -7633 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 3638 -7791 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 3638 -7949 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 3638 -8107 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 3638 -8265 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 3638 -8423 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 4256 -6053 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 4256 -6211 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 4256 -6369 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 4256 -6527 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 4256 -6685 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 4256 -6843 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 4256 -7001 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 4256 -7159 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 4256 -7317 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 4256 -7475 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 4256 -7633 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 4256 -7791 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 4256 -7949 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 4256 -8107 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 4256 -8265 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 4256 -8423 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 4874 -6053 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 4874 -6211 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 4874 -6369 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 4874 -6527 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 4874 -6685 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 4874 -6843 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 4874 -7001 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 4874 -7159 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 4874 -7317 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 4874 -7475 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 4874 -7633 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 4874 -7791 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 4874 -7949 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 4874 -8107 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 4874 -8265 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 4874 -8423 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6054 5492 -6053 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6212 5492 -6211 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6370 5492 -6369 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6528 5492 -6527 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6686 5492 -6685 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6844 5492 -6843 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7002 5492 -7001 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7160 5492 -7159 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7318 5492 -7317 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7476 5492 -7475 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7634 5492 -7633 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7792 5492 -7791 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7950 5492 -7949 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8108 5492 -8107 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8266 5492 -8265 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8424 5492 -8423 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 1166 -8903 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 1166 -9061 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 1166 -9219 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 1166 -9377 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 1166 -9535 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 1166 -9693 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 1166 -9851 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 1166 -10009 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 1166 -10167 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 1166 -10325 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 1166 -10483 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 1166 -10641 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 1166 -10799 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 1166 -10957 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 1166 -11115 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 1166 -11273 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 1784 -8903 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 1784 -9061 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 1784 -9219 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 1784 -9377 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 1784 -9535 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 1784 -9693 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 1784 -9851 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 1784 -10009 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 1784 -10167 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 1784 -10325 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 1784 -10483 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 1784 -10641 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 1784 -10799 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 1784 -10957 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 1784 -11115 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 1784 -11273 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 2402 -8903 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 2402 -9061 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 2402 -9219 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 2402 -9377 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 2402 -9535 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 2402 -9693 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 2402 -9851 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 2402 -10009 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 2402 -10167 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 2402 -10325 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 2402 -10483 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 2402 -10641 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 2402 -10799 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 2402 -10957 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 2402 -11115 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 2402 -11273 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 3020 -8903 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 3020 -9061 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 3020 -9219 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 3020 -9377 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 3020 -9535 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 3020 -9693 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 3020 -9851 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 3020 -10009 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 3020 -10167 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 3020 -10325 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 3020 -10483 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 3020 -10641 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 3020 -10799 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 3020 -10957 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 3020 -11115 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 3020 -11273 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 3638 -8903 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 3638 -9061 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 3638 -9219 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 3638 -9377 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 3638 -9535 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 3638 -9693 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 3638 -9851 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 3638 -10009 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 3638 -10167 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 3638 -10325 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 3638 -10483 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 3638 -10641 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 3638 -10799 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 3638 -10957 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 3638 -11115 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 3638 -11273 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 4256 -8903 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 4256 -9061 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 4256 -9219 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 4256 -9377 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 4256 -9535 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 4256 -9693 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 4256 -9851 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 4256 -10009 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 4256 -10167 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 4256 -10325 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 4256 -10483 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 4256 -10641 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 4256 -10799 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 4256 -10957 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 4256 -11115 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 4256 -11273 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 4874 -8903 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 4874 -9061 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 4874 -9219 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 4874 -9377 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 4874 -9535 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 4874 -9693 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 4874 -9851 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 4874 -10009 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 4874 -10167 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 4874 -10325 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 4874 -10483 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 4874 -10641 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 4874 -10799 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 4874 -10957 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 4874 -11115 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 4874 -11273 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8904 5492 -8903 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9062 5492 -9061 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9220 5492 -9219 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9378 5492 -9377 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9536 5492 -9535 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9694 5492 -9693 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9852 5492 -9851 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10010 5492 -10009 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10168 5492 -10167 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10326 5492 -10325 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10484 5492 -10483 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10642 5492 -10641 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10800 5492 -10799 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10958 5492 -10957 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11116 5492 -11115 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11274 5492 -11273 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 1166 -11753 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 1166 -11911 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 1166 -12069 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 1166 -12227 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 1166 -12385 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 1166 -12543 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 1166 -12701 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 1166 -12859 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 1166 -13017 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 1166 -13175 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 1166 -13333 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 1166 -13491 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 1166 -13649 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 1166 -13807 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 1166 -13965 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 1166 -14123 1167 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 1784 -11753 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 1784 -11911 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 1784 -12069 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 1784 -12227 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 1784 -12385 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 1784 -12543 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 1784 -12701 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 1784 -12859 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 1784 -13017 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 1784 -13175 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 1784 -13333 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 1784 -13491 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 1784 -13649 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 1784 -13807 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 1784 -13965 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 1784 -14123 1785 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 2402 -11753 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 2402 -11911 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 2402 -12069 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 2402 -12227 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 2402 -12385 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 2402 -12543 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 2402 -12701 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 2402 -12859 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 2402 -13017 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 2402 -13175 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 2402 -13333 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 2402 -13491 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 2402 -13649 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 2402 -13807 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 2402 -13965 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 2402 -14123 2403 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 3020 -11753 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 3020 -11911 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 3020 -12069 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 3020 -12227 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 3020 -12385 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 3020 -12543 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 3020 -12701 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 3020 -12859 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 3020 -13017 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 3020 -13175 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 3020 -13333 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 3020 -13491 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 3020 -13649 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 3020 -13807 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 3020 -13965 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 3020 -14123 3021 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 3638 -11753 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 3638 -11911 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 3638 -12069 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 3638 -12227 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 3638 -12385 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 3638 -12543 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 3638 -12701 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 3638 -12859 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 3638 -13017 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 3638 -13175 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 3638 -13333 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 3638 -13491 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 3638 -13649 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 3638 -13807 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 3638 -13965 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 3638 -14123 3639 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 4256 -11753 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 4256 -11911 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 4256 -12069 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 4256 -12227 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 4256 -12385 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 4256 -12543 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 4256 -12701 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 4256 -12859 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 4256 -13017 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 4256 -13175 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 4256 -13333 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 4256 -13491 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 4256 -13649 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 4256 -13807 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 4256 -13965 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 4256 -14123 4257 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 4874 -11753 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 4874 -11911 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 4874 -12069 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 4874 -12227 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 4874 -12385 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 4874 -12543 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 4874 -12701 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 4874 -12859 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 4874 -13017 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 4874 -13175 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 4874 -13333 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 4874 -13491 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 4874 -13649 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 4874 -13807 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 4874 -13965 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 4874 -14123 4875 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11754 5492 -11753 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11912 5492 -11911 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12070 5492 -12069 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12228 5492 -12227 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12386 5492 -12385 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12544 5492 -12543 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12702 5492 -12701 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12860 5492 -12859 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13018 5492 -13017 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13176 5492 -13175 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13334 5492 -13333 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13492 5492 -13491 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13650 5492 -13649 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13808 5492 -13807 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13966 5492 -13965 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n14090_6326#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14124 5492 -14123 5493 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55790 6326 55791 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55694 6326 55695 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55598 6326 55599 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55502 6326 55503 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55406 6326 55407 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55310 6326 55311 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55214 6326 55215 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55118 6326 55119 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55022 6326 55023 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54926 6326 54927 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54830 6326 54831 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54734 6326 54735 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54638 6326 54639 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54542 6326 54543 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54446 6326 54447 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54350 6326 54351 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55790 6944 55791 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55694 6944 55695 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55598 6944 55599 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55502 6944 55503 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55406 6944 55407 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55310 6944 55311 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55214 6944 55215 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55118 6944 55119 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55022 6944 55023 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54926 6944 54927 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54830 6944 54831 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54734 6944 54735 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54638 6944 54639 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54542 6944 54543 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54446 6944 54447 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54350 6944 54351 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55790 7562 55791 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55694 7562 55695 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55598 7562 55599 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55502 7562 55503 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55406 7562 55407 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55310 7562 55311 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55214 7562 55215 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55118 7562 55119 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55022 7562 55023 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54926 7562 54927 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54830 7562 54831 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54734 7562 54735 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54638 7562 54639 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54542 7562 54543 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54446 7562 54447 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54350 7562 54351 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55790 8180 55791 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55694 8180 55695 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55598 8180 55599 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55502 8180 55503 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55406 8180 55407 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55310 8180 55311 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55214 8180 55215 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55118 8180 55119 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 55022 8180 55023 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54926 8180 54927 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54830 8180 54831 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54734 8180 54735 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54638 8180 54639 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54542 8180 54543 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54446 8180 54447 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 54350 8180 54351 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52940 6326 52941 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52844 6326 52845 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52748 6326 52749 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52652 6326 52653 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52556 6326 52557 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52460 6326 52461 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52364 6326 52365 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52268 6326 52269 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52172 6326 52173 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52076 6326 52077 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51980 6326 51981 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51884 6326 51885 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51788 6326 51789 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51692 6326 51693 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51596 6326 51597 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51500 6326 51501 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52940 6944 52941 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52844 6944 52845 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52748 6944 52749 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52652 6944 52653 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52556 6944 52557 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52460 6944 52461 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52364 6944 52365 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52268 6944 52269 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52172 6944 52173 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52076 6944 52077 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51980 6944 51981 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51884 6944 51885 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51788 6944 51789 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51692 6944 51693 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51596 6944 51597 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51500 6944 51501 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52940 7562 52941 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52844 7562 52845 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52748 7562 52749 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52652 7562 52653 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52556 7562 52557 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52460 7562 52461 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52364 7562 52365 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52268 7562 52269 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52172 7562 52173 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52076 7562 52077 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51980 7562 51981 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51884 7562 51885 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51788 7562 51789 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51692 7562 51693 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51596 7562 51597 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51500 7562 51501 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52940 8180 52941 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52844 8180 52845 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52748 8180 52749 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52652 8180 52653 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52556 8180 52557 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52460 8180 52461 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52364 8180 52365 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52268 8180 52269 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52172 8180 52173 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 52076 8180 52077 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51980 8180 51981 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51884 8180 51885 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51788 8180 51789 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51692 8180 51693 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51596 8180 51597 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 51500 8180 51501 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50090 6326 50091 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49994 6326 49995 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49898 6326 49899 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49802 6326 49803 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49706 6326 49707 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49610 6326 49611 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49514 6326 49515 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49418 6326 49419 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49322 6326 49323 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49226 6326 49227 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49130 6326 49131 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49034 6326 49035 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48938 6326 48939 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48842 6326 48843 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48746 6326 48747 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48650 6326 48651 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50090 6944 50091 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49994 6944 49995 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49898 6944 49899 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49802 6944 49803 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49706 6944 49707 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49610 6944 49611 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49514 6944 49515 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49418 6944 49419 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49322 6944 49323 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49226 6944 49227 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49130 6944 49131 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49034 6944 49035 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48938 6944 48939 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48842 6944 48843 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48746 6944 48747 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48650 6944 48651 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50090 7562 50091 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49994 7562 49995 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49898 7562 49899 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49802 7562 49803 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49706 7562 49707 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49610 7562 49611 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49514 7562 49515 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49418 7562 49419 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49322 7562 49323 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49226 7562 49227 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49130 7562 49131 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49034 7562 49035 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48938 7562 48939 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48842 7562 48843 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48746 7562 48747 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48650 7562 48651 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 50090 8180 50091 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49994 8180 49995 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49898 8180 49899 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49802 8180 49803 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49706 8180 49707 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49610 8180 49611 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49514 8180 49515 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49418 8180 49419 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49322 8180 49323 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49226 8180 49227 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49130 8180 49131 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 49034 8180 49035 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48938 8180 48939 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48842 8180 48843 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48746 8180 48747 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 48650 8180 48651 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47240 6326 47241 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47144 6326 47145 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47048 6326 47049 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46952 6326 46953 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46856 6326 46857 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46760 6326 46761 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46664 6326 46665 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46568 6326 46569 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46472 6326 46473 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46376 6326 46377 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46280 6326 46281 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46184 6326 46185 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46088 6326 46089 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45992 6326 45993 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45896 6326 45897 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45800 6326 45801 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47240 6944 47241 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47144 6944 47145 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47048 6944 47049 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46952 6944 46953 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46856 6944 46857 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46760 6944 46761 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46664 6944 46665 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46568 6944 46569 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46472 6944 46473 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46376 6944 46377 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46280 6944 46281 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46184 6944 46185 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46088 6944 46089 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45992 6944 45993 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45896 6944 45897 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45800 6944 45801 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47240 7562 47241 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47144 7562 47145 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47048 7562 47049 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46952 7562 46953 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46856 7562 46857 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46760 7562 46761 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46664 7562 46665 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46568 7562 46569 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46472 7562 46473 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46376 7562 46377 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46280 7562 46281 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46184 7562 46185 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46088 7562 46089 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45992 7562 45993 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45896 7562 45897 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45800 7562 45801 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47240 8180 47241 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47144 8180 47145 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 47048 8180 47049 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46952 8180 46953 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46856 8180 46857 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46760 8180 46761 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46664 8180 46665 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46568 8180 46569 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46472 8180 46473 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46376 8180 46377 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46280 8180 46281 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46184 8180 46185 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 46088 8180 46089 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45992 8180 45993 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45896 8180 45897 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 45800 8180 45801 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44390 6326 44391 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44294 6326 44295 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44198 6326 44199 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44102 6326 44103 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44006 6326 44007 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43910 6326 43911 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43814 6326 43815 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43718 6326 43719 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43622 6326 43623 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43526 6326 43527 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43430 6326 43431 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43334 6326 43335 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43238 6326 43239 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43142 6326 43143 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43046 6326 43047 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42950 6326 42951 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44390 6944 44391 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44294 6944 44295 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44198 6944 44199 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44102 6944 44103 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44006 6944 44007 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43910 6944 43911 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43814 6944 43815 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43718 6944 43719 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43622 6944 43623 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43526 6944 43527 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43430 6944 43431 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43334 6944 43335 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43238 6944 43239 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43142 6944 43143 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43046 6944 43047 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42950 6944 42951 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44390 7562 44391 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44294 7562 44295 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44198 7562 44199 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44102 7562 44103 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44006 7562 44007 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43910 7562 43911 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43814 7562 43815 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43718 7562 43719 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43622 7562 43623 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43526 7562 43527 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43430 7562 43431 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43334 7562 43335 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43238 7562 43239 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43142 7562 43143 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43046 7562 43047 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42950 7562 42951 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44390 8180 44391 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44294 8180 44295 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44198 8180 44199 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44102 8180 44103 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 44006 8180 44007 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43910 8180 43911 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43814 8180 43815 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43718 8180 43719 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43622 8180 43623 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43526 8180 43527 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43430 8180 43431 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43334 8180 43335 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43238 8180 43239 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43142 8180 43143 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 43046 8180 43047 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 42950 8180 42951 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41540 6326 41541 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41444 6326 41445 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41348 6326 41349 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41252 6326 41253 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41156 6326 41157 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41060 6326 41061 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40964 6326 40965 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40868 6326 40869 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40772 6326 40773 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40676 6326 40677 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40580 6326 40581 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40484 6326 40485 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40388 6326 40389 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40292 6326 40293 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40196 6326 40197 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40100 6326 40101 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41540 6944 41541 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41444 6944 41445 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41348 6944 41349 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41252 6944 41253 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41156 6944 41157 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41060 6944 41061 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40964 6944 40965 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40868 6944 40869 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40772 6944 40773 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40676 6944 40677 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40580 6944 40581 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40484 6944 40485 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40388 6944 40389 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40292 6944 40293 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40196 6944 40197 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40100 6944 40101 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41540 7562 41541 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41444 7562 41445 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41348 7562 41349 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41252 7562 41253 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41156 7562 41157 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41060 7562 41061 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40964 7562 40965 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40868 7562 40869 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40772 7562 40773 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40676 7562 40677 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40580 7562 40581 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40484 7562 40485 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40388 7562 40389 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40292 7562 40293 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40196 7562 40197 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40100 7562 40101 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41540 8180 41541 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41444 8180 41445 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41348 8180 41349 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41252 8180 41253 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41156 8180 41157 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 41060 8180 41061 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40964 8180 40965 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40868 8180 40869 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40772 8180 40773 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40676 8180 40677 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40580 8180 40581 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40484 8180 40485 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40388 8180 40389 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40292 8180 40293 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40196 8180 40197 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 40100 8180 40101 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38690 6326 38691 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38594 6326 38595 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38498 6326 38499 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38402 6326 38403 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38306 6326 38307 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38210 6326 38211 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38114 6326 38115 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38018 6326 38019 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37922 6326 37923 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37826 6326 37827 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37730 6326 37731 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37634 6326 37635 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37538 6326 37539 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37442 6326 37443 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37346 6326 37347 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37250 6326 37251 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38690 6944 38691 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38594 6944 38595 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38498 6944 38499 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38402 6944 38403 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38306 6944 38307 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38210 6944 38211 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38114 6944 38115 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38018 6944 38019 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37922 6944 37923 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37826 6944 37827 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37730 6944 37731 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37634 6944 37635 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37538 6944 37539 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37442 6944 37443 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37346 6944 37347 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37250 6944 37251 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38690 7562 38691 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38594 7562 38595 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38498 7562 38499 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38402 7562 38403 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38306 7562 38307 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38210 7562 38211 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38114 7562 38115 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38018 7562 38019 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37922 7562 37923 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37826 7562 37827 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37730 7562 37731 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37634 7562 37635 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37538 7562 37539 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37442 7562 37443 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37346 7562 37347 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37250 7562 37251 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38690 8180 38691 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38594 8180 38595 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38498 8180 38499 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38402 8180 38403 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38306 8180 38307 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38210 8180 38211 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38114 8180 38115 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 38018 8180 38019 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37922 8180 37923 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37826 8180 37827 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37730 8180 37731 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37634 8180 37635 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37538 8180 37539 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37442 8180 37443 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37346 8180 37347 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 37250 8180 37251 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35840 6326 35841 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35744 6326 35745 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35648 6326 35649 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35552 6326 35553 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35456 6326 35457 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35360 6326 35361 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35264 6326 35265 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35168 6326 35169 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35072 6326 35073 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34976 6326 34977 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34880 6326 34881 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34784 6326 34785 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34688 6326 34689 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34592 6326 34593 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34496 6326 34497 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34400 6326 34401 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35840 6944 35841 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35744 6944 35745 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35648 6944 35649 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35552 6944 35553 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35456 6944 35457 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35360 6944 35361 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35264 6944 35265 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35168 6944 35169 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35072 6944 35073 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34976 6944 34977 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34880 6944 34881 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34784 6944 34785 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34688 6944 34689 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34592 6944 34593 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34496 6944 34497 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34400 6944 34401 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35840 7562 35841 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35744 7562 35745 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35648 7562 35649 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35552 7562 35553 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35456 7562 35457 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35360 7562 35361 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35264 7562 35265 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35168 7562 35169 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35072 7562 35073 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34976 7562 34977 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34880 7562 34881 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34784 7562 34785 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34688 7562 34689 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34592 7562 34593 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34496 7562 34497 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34400 7562 34401 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35840 8180 35841 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35744 8180 35745 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35648 8180 35649 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35552 8180 35553 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35456 8180 35457 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35360 8180 35361 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35264 8180 35265 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35168 8180 35169 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 35072 8180 35073 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34976 8180 34977 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34880 8180 34881 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34784 8180 34785 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34688 8180 34689 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34592 8180 34593 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34496 8180 34497 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 34400 8180 34401 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32990 6326 32991 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32894 6326 32895 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32798 6326 32799 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32702 6326 32703 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32606 6326 32607 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32510 6326 32511 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32414 6326 32415 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32318 6326 32319 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32222 6326 32223 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32126 6326 32127 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32030 6326 32031 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31934 6326 31935 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31838 6326 31839 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31742 6326 31743 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31646 6326 31647 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31550 6326 31551 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32990 6944 32991 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32894 6944 32895 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32798 6944 32799 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32702 6944 32703 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32606 6944 32607 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32510 6944 32511 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32414 6944 32415 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32318 6944 32319 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32222 6944 32223 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32126 6944 32127 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32030 6944 32031 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31934 6944 31935 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31838 6944 31839 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31742 6944 31743 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31646 6944 31647 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31550 6944 31551 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32990 7562 32991 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32894 7562 32895 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32798 7562 32799 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32702 7562 32703 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32606 7562 32607 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32510 7562 32511 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32414 7562 32415 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32318 7562 32319 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32222 7562 32223 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32126 7562 32127 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32030 7562 32031 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31934 7562 31935 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31838 7562 31839 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31742 7562 31743 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31646 7562 31647 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31550 7562 31551 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32990 8180 32991 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32894 8180 32895 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32798 8180 32799 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32702 8180 32703 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32606 8180 32607 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32510 8180 32511 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32414 8180 32415 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32318 8180 32319 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32222 8180 32223 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32126 8180 32127 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 32030 8180 32031 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31934 8180 31935 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31838 8180 31839 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31742 8180 31743 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31646 8180 31647 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 31550 8180 31551 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30140 6326 30141 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30044 6326 30045 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29948 6326 29949 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29852 6326 29853 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29756 6326 29757 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29660 6326 29661 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29564 6326 29565 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29468 6326 29469 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29372 6326 29373 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29276 6326 29277 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29180 6326 29181 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29084 6326 29085 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28988 6326 28989 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28892 6326 28893 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28796 6326 28797 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28700 6326 28701 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30140 6944 30141 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30044 6944 30045 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29948 6944 29949 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29852 6944 29853 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29756 6944 29757 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29660 6944 29661 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29564 6944 29565 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29468 6944 29469 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29372 6944 29373 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29276 6944 29277 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29180 6944 29181 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29084 6944 29085 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28988 6944 28989 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28892 6944 28893 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28796 6944 28797 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28700 6944 28701 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30140 7562 30141 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30044 7562 30045 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29948 7562 29949 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29852 7562 29853 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29756 7562 29757 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29660 7562 29661 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29564 7562 29565 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29468 7562 29469 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29372 7562 29373 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29276 7562 29277 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29180 7562 29181 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29084 7562 29085 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28988 7562 28989 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28892 7562 28893 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28796 7562 28797 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28700 7562 28701 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30140 8180 30141 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 30044 8180 30045 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29948 8180 29949 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29852 8180 29853 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29756 8180 29757 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29660 8180 29661 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29564 8180 29565 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29468 8180 29469 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29372 8180 29373 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29276 8180 29277 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29180 8180 29181 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29084 8180 29085 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28988 8180 28989 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28892 8180 28893 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28796 8180 28797 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 28700 8180 28701 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27290 6326 27291 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27194 6326 27195 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27098 6326 27099 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27002 6326 27003 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26906 6326 26907 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26810 6326 26811 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26714 6326 26715 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26618 6326 26619 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26522 6326 26523 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26426 6326 26427 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26330 6326 26331 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26234 6326 26235 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26138 6326 26139 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26042 6326 26043 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25946 6326 25947 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25850 6326 25851 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27290 6944 27291 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27194 6944 27195 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27098 6944 27099 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27002 6944 27003 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26906 6944 26907 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26810 6944 26811 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26714 6944 26715 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26618 6944 26619 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26522 6944 26523 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26426 6944 26427 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26330 6944 26331 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26234 6944 26235 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26138 6944 26139 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26042 6944 26043 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25946 6944 25947 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25850 6944 25851 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27290 7562 27291 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27194 7562 27195 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27098 7562 27099 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27002 7562 27003 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26906 7562 26907 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26810 7562 26811 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26714 7562 26715 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26618 7562 26619 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26522 7562 26523 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26426 7562 26427 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26330 7562 26331 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26234 7562 26235 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26138 7562 26139 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26042 7562 26043 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25946 7562 25947 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25850 7562 25851 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27290 8180 27291 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27194 8180 27195 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27098 8180 27099 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 27002 8180 27003 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26906 8180 26907 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26810 8180 26811 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26714 8180 26715 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26618 8180 26619 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26522 8180 26523 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26426 8180 26427 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26330 8180 26331 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26234 8180 26235 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26138 8180 26139 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 26042 8180 26043 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25946 8180 25947 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 25850 8180 25851 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24440 6326 24441 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24344 6326 24345 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24248 6326 24249 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24152 6326 24153 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24056 6326 24057 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23960 6326 23961 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23864 6326 23865 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23768 6326 23769 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23672 6326 23673 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23576 6326 23577 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23480 6326 23481 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23384 6326 23385 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23288 6326 23289 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23192 6326 23193 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23096 6326 23097 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23000 6326 23001 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24440 6944 24441 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24344 6944 24345 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24248 6944 24249 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24152 6944 24153 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24056 6944 24057 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23960 6944 23961 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23864 6944 23865 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23768 6944 23769 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23672 6944 23673 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23576 6944 23577 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23480 6944 23481 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23384 6944 23385 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23288 6944 23289 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23192 6944 23193 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23096 6944 23097 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23000 6944 23001 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24440 7562 24441 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24344 7562 24345 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24248 7562 24249 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24152 7562 24153 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24056 7562 24057 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23960 7562 23961 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23864 7562 23865 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23768 7562 23769 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23672 7562 23673 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23576 7562 23577 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23480 7562 23481 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23384 7562 23385 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23288 7562 23289 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23192 7562 23193 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23096 7562 23097 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23000 7562 23001 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24440 8180 24441 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24344 8180 24345 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24248 8180 24249 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24152 8180 24153 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 24056 8180 24057 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23960 8180 23961 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23864 8180 23865 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23768 8180 23769 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23672 8180 23673 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23576 8180 23577 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23480 8180 23481 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23384 8180 23385 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23288 8180 23289 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23192 8180 23193 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23096 8180 23097 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 23000 8180 23001 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21590 6326 21591 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21494 6326 21495 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21398 6326 21399 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21302 6326 21303 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21206 6326 21207 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21110 6326 21111 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21014 6326 21015 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20918 6326 20919 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20822 6326 20823 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20726 6326 20727 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20630 6326 20631 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20534 6326 20535 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20438 6326 20439 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20342 6326 20343 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20246 6326 20247 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20150 6326 20151 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21590 6944 21591 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21494 6944 21495 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21398 6944 21399 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21302 6944 21303 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21206 6944 21207 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21110 6944 21111 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21014 6944 21015 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20918 6944 20919 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20822 6944 20823 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20726 6944 20727 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20630 6944 20631 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20534 6944 20535 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20438 6944 20439 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20342 6944 20343 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20246 6944 20247 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20150 6944 20151 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21590 7562 21591 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21494 7562 21495 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21398 7562 21399 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21302 7562 21303 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21206 7562 21207 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21110 7562 21111 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21014 7562 21015 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20918 7562 20919 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20822 7562 20823 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20726 7562 20727 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20630 7562 20631 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20534 7562 20535 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20438 7562 20439 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20342 7562 20343 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20246 7562 20247 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20150 7562 20151 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21590 8180 21591 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21494 8180 21495 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21398 8180 21399 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21302 8180 21303 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21206 8180 21207 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21110 8180 21111 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 21014 8180 21015 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20918 8180 20919 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20822 8180 20823 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20726 8180 20727 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20630 8180 20631 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20534 8180 20535 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20438 8180 20439 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20342 8180 20343 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20246 8180 20247 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 20150 8180 20151 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18740 6326 18741 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18644 6326 18645 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18548 6326 18549 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18452 6326 18453 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18356 6326 18357 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18260 6326 18261 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18164 6326 18165 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18068 6326 18069 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17972 6326 17973 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17876 6326 17877 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17780 6326 17781 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17684 6326 17685 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17588 6326 17589 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17492 6326 17493 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17396 6326 17397 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17300 6326 17301 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18740 6944 18741 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18644 6944 18645 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18548 6944 18549 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18452 6944 18453 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18356 6944 18357 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18260 6944 18261 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18164 6944 18165 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18068 6944 18069 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17972 6944 17973 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17876 6944 17877 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17780 6944 17781 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17684 6944 17685 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17588 6944 17589 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17492 6944 17493 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17396 6944 17397 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17300 6944 17301 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18740 7562 18741 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18644 7562 18645 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18548 7562 18549 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18452 7562 18453 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18356 7562 18357 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18260 7562 18261 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18164 7562 18165 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18068 7562 18069 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17972 7562 17973 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17876 7562 17877 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17780 7562 17781 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17684 7562 17685 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17588 7562 17589 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17492 7562 17493 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17396 7562 17397 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17300 7562 17301 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18740 8180 18741 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18644 8180 18645 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18548 8180 18549 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18452 8180 18453 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18356 8180 18357 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18260 8180 18261 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18164 8180 18165 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 18068 8180 18069 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17972 8180 17973 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17876 8180 17877 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17780 8180 17781 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17684 8180 17685 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17588 8180 17589 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17492 8180 17493 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17396 8180 17397 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 17300 8180 17301 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15890 6326 15891 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15794 6326 15795 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15698 6326 15699 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15602 6326 15603 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15506 6326 15507 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15410 6326 15411 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15314 6326 15315 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15218 6326 15219 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15122 6326 15123 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15026 6326 15027 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14930 6326 14931 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14834 6326 14835 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14738 6326 14739 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14642 6326 14643 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14546 6326 14547 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14450 6326 14451 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15890 6944 15891 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15794 6944 15795 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15698 6944 15699 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15602 6944 15603 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15506 6944 15507 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15410 6944 15411 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15314 6944 15315 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15218 6944 15219 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15122 6944 15123 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15026 6944 15027 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14930 6944 14931 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14834 6944 14835 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14738 6944 14739 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14642 6944 14643 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14546 6944 14547 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14450 6944 14451 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15890 7562 15891 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15794 7562 15795 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15698 7562 15699 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15602 7562 15603 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15506 7562 15507 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15410 7562 15411 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15314 7562 15315 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15218 7562 15219 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15122 7562 15123 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15026 7562 15027 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14930 7562 14931 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14834 7562 14835 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14738 7562 14739 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14642 7562 14643 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14546 7562 14547 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14450 7562 14451 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15890 8180 15891 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15794 8180 15795 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15698 8180 15699 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15602 8180 15603 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15506 8180 15507 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15410 8180 15411 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15314 8180 15315 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15218 8180 15219 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15122 8180 15123 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 15026 8180 15027 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14930 8180 14931 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14834 8180 14835 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14738 8180 14739 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14642 8180 14643 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14546 8180 14547 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 14450 8180 14451 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13040 6326 13041 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12944 6326 12945 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12848 6326 12849 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12752 6326 12753 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12656 6326 12657 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12560 6326 12561 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12464 6326 12465 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12368 6326 12369 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12272 6326 12273 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12176 6326 12177 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12080 6326 12081 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11984 6326 11985 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11888 6326 11889 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11792 6326 11793 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11696 6326 11697 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11600 6326 11601 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13040 6944 13041 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12944 6944 12945 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12848 6944 12849 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12752 6944 12753 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12656 6944 12657 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12560 6944 12561 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12464 6944 12465 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12368 6944 12369 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12272 6944 12273 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12176 6944 12177 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12080 6944 12081 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11984 6944 11985 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11888 6944 11889 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11792 6944 11793 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11696 6944 11697 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11600 6944 11601 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13040 7562 13041 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12944 7562 12945 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12848 7562 12849 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12752 7562 12753 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12656 7562 12657 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12560 7562 12561 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12464 7562 12465 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12368 7562 12369 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12272 7562 12273 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12176 7562 12177 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12080 7562 12081 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11984 7562 11985 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11888 7562 11889 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11792 7562 11793 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11696 7562 11697 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11600 7562 11601 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 13040 8180 13041 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12944 8180 12945 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12848 8180 12849 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12752 8180 12753 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12656 8180 12657 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12560 8180 12561 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12464 8180 12465 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12368 8180 12369 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12272 8180 12273 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12176 8180 12177 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 12080 8180 12081 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11984 8180 11985 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11888 8180 11889 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11792 8180 11793 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11696 8180 11697 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 11600 8180 11601 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10190 6326 10191 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10094 6326 10095 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9998 6326 9999 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9902 6326 9903 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9806 6326 9807 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9710 6326 9711 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9614 6326 9615 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9518 6326 9519 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9422 6326 9423 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9326 6326 9327 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9230 6326 9231 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9134 6326 9135 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9038 6326 9039 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8942 6326 8943 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8846 6326 8847 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8750 6326 8751 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10190 6944 10191 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10094 6944 10095 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9998 6944 9999 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9902 6944 9903 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9806 6944 9807 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9710 6944 9711 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9614 6944 9615 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9518 6944 9519 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9422 6944 9423 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9326 6944 9327 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9230 6944 9231 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9134 6944 9135 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9038 6944 9039 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8942 6944 8943 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8846 6944 8847 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8750 6944 8751 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10190 7562 10191 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10094 7562 10095 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9998 7562 9999 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9902 7562 9903 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9806 7562 9807 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9710 7562 9711 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9614 7562 9615 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9518 7562 9519 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9422 7562 9423 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9326 7562 9327 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9230 7562 9231 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9134 7562 9135 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9038 7562 9039 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8942 7562 8943 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8846 7562 8847 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8750 7562 8751 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10190 8180 10191 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 10094 8180 10095 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9998 8180 9999 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9902 8180 9903 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9806 8180 9807 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9710 8180 9711 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9614 8180 9615 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9518 8180 9519 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9422 8180 9423 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9326 8180 9327 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9230 8180 9231 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9134 8180 9135 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 9038 8180 9039 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8942 8180 8943 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8846 8180 8847 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 8750 8180 8751 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7340 6326 7341 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7244 6326 7245 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7148 6326 7149 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7052 6326 7053 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6956 6326 6957 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6860 6326 6861 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6764 6326 6765 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6668 6326 6669 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6572 6326 6573 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6476 6326 6477 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6380 6326 6381 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6284 6326 6285 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6188 6326 6189 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6092 6326 6093 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5996 6326 5997 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5900 6326 5901 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7340 6944 7341 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7244 6944 7245 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7148 6944 7149 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7052 6944 7053 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6956 6944 6957 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6860 6944 6861 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6764 6944 6765 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6668 6944 6669 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6572 6944 6573 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6476 6944 6477 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6380 6944 6381 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6284 6944 6285 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6188 6944 6189 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6092 6944 6093 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5996 6944 5997 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5900 6944 5901 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7340 7562 7341 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7244 7562 7245 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7148 7562 7149 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7052 7562 7053 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6956 7562 6957 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6860 7562 6861 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6764 7562 6765 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6668 7562 6669 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6572 7562 6573 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6476 7562 6477 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6380 7562 6381 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6284 7562 6285 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6188 7562 6189 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6092 7562 6093 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5996 7562 5997 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5900 7562 5901 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7340 8180 7341 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7244 8180 7245 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7148 8180 7149 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 7052 8180 7053 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6956 8180 6957 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6860 8180 6861 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6764 8180 6765 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6668 8180 6669 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6572 8180 6573 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6476 8180 6477 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6380 8180 6381 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6284 8180 6285 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6188 8180 6189 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6092 8180 6093 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5996 8180 5997 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5900 8180 5901 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4490 6326 4491 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4394 6326 4395 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4298 6326 4299 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4202 6326 4203 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4106 6326 4107 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4010 6326 4011 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3914 6326 3915 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3818 6326 3819 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3722 6326 3723 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3626 6326 3627 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3530 6326 3531 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3434 6326 3435 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3338 6326 3339 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3242 6326 3243 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3146 6326 3147 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3050 6326 3051 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4490 6944 4491 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4394 6944 4395 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4298 6944 4299 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4202 6944 4203 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4106 6944 4107 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4010 6944 4011 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3914 6944 3915 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3818 6944 3819 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3722 6944 3723 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3626 6944 3627 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3530 6944 3531 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3434 6944 3435 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3338 6944 3339 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3242 6944 3243 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3146 6944 3147 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3050 6944 3051 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4490 7562 4491 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4394 7562 4395 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4298 7562 4299 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4202 7562 4203 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4106 7562 4107 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4010 7562 4011 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3914 7562 3915 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3818 7562 3819 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3722 7562 3723 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3626 7562 3627 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3530 7562 3531 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3434 7562 3435 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3338 7562 3339 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3242 7562 3243 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3146 7562 3147 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3050 7562 3051 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4490 8180 4491 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4394 8180 4395 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4298 8180 4299 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4202 8180 4203 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4106 8180 4107 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4010 8180 4011 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3914 8180 3915 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3818 8180 3819 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3722 8180 3723 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3626 8180 3627 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3530 8180 3531 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3434 8180 3435 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3338 8180 3339 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3242 8180 3243 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3146 8180 3147 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3050 8180 3051 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1640 6326 1641 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1544 6326 1545 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1448 6326 1449 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1352 6326 1353 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1256 6326 1257 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1160 6326 1161 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1064 6326 1065 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 968 6326 969 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 872 6326 873 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 776 6326 777 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 680 6326 681 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 584 6326 585 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 488 6326 489 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 392 6326 393 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 296 6326 297 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 200 6326 201 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1640 6944 1641 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1544 6944 1545 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1448 6944 1449 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1352 6944 1353 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1256 6944 1257 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1160 6944 1161 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1064 6944 1065 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 968 6944 969 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 872 6944 873 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 776 6944 777 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 680 6944 681 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 584 6944 585 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 488 6944 489 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 392 6944 393 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 296 6944 297 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 200 6944 201 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1640 7562 1641 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1544 7562 1545 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1448 7562 1449 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1352 7562 1353 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1256 7562 1257 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1160 7562 1161 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1064 7562 1065 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 968 7562 969 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 872 7562 873 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 776 7562 777 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 680 7562 681 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 584 7562 585 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 488 7562 489 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 392 7562 393 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 296 7562 297 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 200 7562 201 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1640 8180 1641 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1544 8180 1545 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1448 8180 1449 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1352 8180 1353 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1256 8180 1257 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1160 8180 1161 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1064 8180 1065 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 968 8180 969 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 872 8180 873 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 776 8180 777 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 680 8180 681 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 584 8180 585 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 488 8180 489 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 392 8180 393 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 296 8180 297 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_230_6326#" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 200 8180 201 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "a_230_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1280 6326 -1279 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1376 6326 -1375 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1472 6326 -1471 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1568 6326 -1567 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1664 6326 -1663 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1760 6326 -1759 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1856 6326 -1855 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1952 6326 -1951 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2048 6326 -2047 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2144 6326 -2143 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2240 6326 -2239 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2336 6326 -2335 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2432 6326 -2431 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2528 6326 -2527 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2624 6326 -2623 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2720 6326 -2719 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1280 6944 -1279 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1376 6944 -1375 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1472 6944 -1471 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1568 6944 -1567 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1664 6944 -1663 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1760 6944 -1759 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1856 6944 -1855 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1952 6944 -1951 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2048 6944 -2047 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2144 6944 -2143 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2240 6944 -2239 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2336 6944 -2335 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2432 6944 -2431 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2528 6944 -2527 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2624 6944 -2623 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2720 6944 -2719 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1280 7562 -1279 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1376 7562 -1375 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1472 7562 -1471 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1568 7562 -1567 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1664 7562 -1663 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1760 7562 -1759 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1856 7562 -1855 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1952 7562 -1951 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2048 7562 -2047 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2144 7562 -2143 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2240 7562 -2239 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2336 7562 -2335 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2432 7562 -2431 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2528 7562 -2527 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2624 7562 -2623 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2720 7562 -2719 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1280 8180 -1279 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1376 8180 -1375 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1472 8180 -1471 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1568 8180 -1567 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1664 8180 -1663 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1760 8180 -1759 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1856 8180 -1855 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1952 8180 -1951 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2048 8180 -2047 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2144 8180 -2143 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2240 8180 -2239 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2336 8180 -2335 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2432 8180 -2431 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2528 8180 -2527 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2624 8180 -2623 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -2720 8180 -2719 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4130 6326 -4129 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4226 6326 -4225 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4322 6326 -4321 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4418 6326 -4417 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4514 6326 -4513 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4610 6326 -4609 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4706 6326 -4705 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4802 6326 -4801 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4898 6326 -4897 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4994 6326 -4993 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5090 6326 -5089 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5186 6326 -5185 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5282 6326 -5281 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5378 6326 -5377 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5474 6326 -5473 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5570 6326 -5569 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4130 6944 -4129 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4226 6944 -4225 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4322 6944 -4321 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4418 6944 -4417 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4514 6944 -4513 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4610 6944 -4609 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4706 6944 -4705 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4802 6944 -4801 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4898 6944 -4897 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4994 6944 -4993 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5090 6944 -5089 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5186 6944 -5185 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5282 6944 -5281 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5378 6944 -5377 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5474 6944 -5473 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5570 6944 -5569 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4130 7562 -4129 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4226 7562 -4225 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4322 7562 -4321 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4418 7562 -4417 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4514 7562 -4513 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4610 7562 -4609 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4706 7562 -4705 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4802 7562 -4801 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4898 7562 -4897 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4994 7562 -4993 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5090 7562 -5089 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5186 7562 -5185 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5282 7562 -5281 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5378 7562 -5377 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5474 7562 -5473 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5570 7562 -5569 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4130 8180 -4129 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4226 8180 -4225 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4322 8180 -4321 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4418 8180 -4417 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4514 8180 -4513 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4610 8180 -4609 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4706 8180 -4705 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4802 8180 -4801 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4898 8180 -4897 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -4994 8180 -4993 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5090 8180 -5089 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5186 8180 -5185 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5282 8180 -5281 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5378 8180 -5377 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5474 8180 -5473 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -5570 8180 -5569 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6980 6326 -6979 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7076 6326 -7075 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7172 6326 -7171 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7268 6326 -7267 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7364 6326 -7363 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7460 6326 -7459 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7556 6326 -7555 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7652 6326 -7651 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7748 6326 -7747 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7844 6326 -7843 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7940 6326 -7939 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8036 6326 -8035 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8132 6326 -8131 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8228 6326 -8227 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8324 6326 -8323 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8420 6326 -8419 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6980 6944 -6979 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7076 6944 -7075 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7172 6944 -7171 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7268 6944 -7267 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7364 6944 -7363 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7460 6944 -7459 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7556 6944 -7555 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7652 6944 -7651 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7748 6944 -7747 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7844 6944 -7843 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7940 6944 -7939 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8036 6944 -8035 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8132 6944 -8131 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8228 6944 -8227 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8324 6944 -8323 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8420 6944 -8419 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6980 7562 -6979 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7076 7562 -7075 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7172 7562 -7171 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7268 7562 -7267 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7364 7562 -7363 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7460 7562 -7459 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7556 7562 -7555 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7652 7562 -7651 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7748 7562 -7747 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7844 7562 -7843 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7940 7562 -7939 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8036 7562 -8035 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8132 7562 -8131 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8228 7562 -8227 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8324 7562 -8323 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8420 7562 -8419 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -6980 8180 -6979 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7076 8180 -7075 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7172 8180 -7171 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7268 8180 -7267 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7364 8180 -7363 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7460 8180 -7459 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7556 8180 -7555 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7652 8180 -7651 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7748 8180 -7747 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7844 8180 -7843 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -7940 8180 -7939 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8036 8180 -8035 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8132 8180 -8131 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8228 8180 -8227 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8324 8180 -8323 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -8420 8180 -8419 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9830 6326 -9829 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9926 6326 -9925 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10022 6326 -10021 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10118 6326 -10117 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10214 6326 -10213 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10310 6326 -10309 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10406 6326 -10405 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10502 6326 -10501 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10598 6326 -10597 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10694 6326 -10693 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10790 6326 -10789 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10886 6326 -10885 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10982 6326 -10981 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11078 6326 -11077 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11174 6326 -11173 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11270 6326 -11269 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9830 6944 -9829 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9926 6944 -9925 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10022 6944 -10021 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10118 6944 -10117 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10214 6944 -10213 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10310 6944 -10309 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10406 6944 -10405 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10502 6944 -10501 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10598 6944 -10597 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10694 6944 -10693 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10790 6944 -10789 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10886 6944 -10885 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10982 6944 -10981 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11078 6944 -11077 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11174 6944 -11173 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11270 6944 -11269 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9830 7562 -9829 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9926 7562 -9925 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10022 7562 -10021 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10118 7562 -10117 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10214 7562 -10213 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10310 7562 -10309 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10406 7562 -10405 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10502 7562 -10501 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10598 7562 -10597 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10694 7562 -10693 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10790 7562 -10789 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10886 7562 -10885 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10982 7562 -10981 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11078 7562 -11077 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11174 7562 -11173 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11270 7562 -11269 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9830 8180 -9829 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -9926 8180 -9925 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10022 8180 -10021 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10118 8180 -10117 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10214 8180 -10213 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10310 8180 -10309 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10406 8180 -10405 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10502 8180 -10501 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10598 8180 -10597 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10694 8180 -10693 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10790 8180 -10789 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10886 8180 -10885 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -10982 8180 -10981 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11078 8180 -11077 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11174 8180 -11173 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -11270 8180 -11269 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12680 6326 -12679 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12776 6326 -12775 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12872 6326 -12871 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12968 6326 -12967 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13064 6326 -13063 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13160 6326 -13159 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13256 6326 -13255 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13352 6326 -13351 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13448 6326 -13447 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13544 6326 -13543 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13640 6326 -13639 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13736 6326 -13735 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13832 6326 -13831 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13928 6326 -13927 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14024 6326 -14023 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14120 6326 -14119 6327 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12680 6944 -12679 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12776 6944 -12775 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12872 6944 -12871 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12968 6944 -12967 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13064 6944 -13063 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13160 6944 -13159 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13256 6944 -13255 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13352 6944 -13351 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13448 6944 -13447 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13544 6944 -13543 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13640 6944 -13639 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13736 6944 -13735 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13832 6944 -13831 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13928 6944 -13927 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14024 6944 -14023 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14120 6944 -14119 6945 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12680 7562 -12679 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12776 7562 -12775 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12872 7562 -12871 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12968 7562 -12967 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13064 7562 -13063 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13160 7562 -13159 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13256 7562 -13255 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13352 7562 -13351 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13448 7562 -13447 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13544 7562 -13543 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13640 7562 -13639 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13736 7562 -13735 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13832 7562 -13831 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13928 7562 -13927 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14024 7562 -14023 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14120 7562 -14119 7563 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12680 8180 -12679 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12776 8180 -12775 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12872 8180 -12871 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -12968 8180 -12967 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13064 8180 -13063 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13160 8180 -13159 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13256 8180 -13255 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13352 8180 -13351 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13448 8180 -13447 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13544 8180 -13543 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13640 8180 -13639 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13736 8180 -13735 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13832 8180 -13831 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -13928 8180 -13927 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14024 8180 -14023 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n14090_6326#" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -14120 8180 -14119 8181 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage2_0/cmirror_out" 400 0 "a_n14090_6326#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 1966 -16923 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 1966 -17081 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 1966 -17239 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 1966 -17397 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 1966 -17555 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 1966 -17713 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 1966 -17871 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 1966 -18029 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 1966 -18187 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 1966 -18345 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 1966 -18503 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 1966 -18661 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 1966 -18819 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 1966 -18977 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 1966 -19135 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 1966 -19293 1967 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 2584 -16923 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 2584 -17081 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 2584 -17239 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 2584 -17397 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 2584 -17555 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 2584 -17713 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 2584 -17871 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 2584 -18029 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 2584 -18187 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 2584 -18345 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 2584 -18503 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 2584 -18661 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 2584 -18819 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 2584 -18977 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 2584 -19135 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 2584 -19293 2585 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 3202 -16923 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 3202 -17081 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 3202 -17239 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 3202 -17397 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 3202 -17555 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 3202 -17713 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 3202 -17871 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 3202 -18029 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 3202 -18187 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 3202 -18345 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 3202 -18503 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 3202 -18661 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 3202 -18819 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 3202 -18977 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 3202 -19135 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 3202 -19293 3203 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 3820 -16923 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 3820 -17081 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 3820 -17239 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 3820 -17397 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 3820 -17555 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 3820 -17713 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 3820 -17871 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 3820 -18029 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 3820 -18187 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 3820 -18345 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 3820 -18503 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 3820 -18661 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 3820 -18819 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 3820 -18977 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 3820 -19135 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 3820 -19293 3821 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 4438 -16923 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 4438 -17081 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 4438 -17239 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 4438 -17397 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 4438 -17555 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 4438 -17713 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 4438 -17871 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 4438 -18029 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 4438 -18187 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 4438 -18345 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 4438 -18503 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 4438 -18661 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 4438 -18819 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 4438 -18977 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 4438 -19135 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 4438 -19293 4439 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 5056 -16923 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 5056 -17081 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 5056 -17239 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 5056 -17397 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 5056 -17555 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 5056 -17713 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 5056 -17871 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 5056 -18029 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 5056 -18187 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 5056 -18345 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 5056 -18503 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 5056 -18661 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 5056 -18819 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 5056 -18977 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 5056 -19135 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 5056 -19293 5057 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 5674 -16923 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 5674 -17081 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 5674 -17239 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 5674 -17397 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 5674 -17555 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 5674 -17713 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 5674 -17871 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 5674 -18029 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 5674 -18187 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 5674 -18345 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 5674 -18503 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 5674 -18661 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 5674 -18819 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 5674 -18977 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 5674 -19135 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 5674 -19293 5675 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -16924 6292 -16923 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17082 6292 -17081 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17240 6292 -17239 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17398 6292 -17397 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17556 6292 -17555 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17714 6292 -17713 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17872 6292 -17871 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18030 6292 -18029 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18188 6292 -18187 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18346 6292 -18345 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18504 6292 -18503 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18662 6292 -18661 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18820 6292 -18819 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18978 6292 -18977 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19136 6292 -19135 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19260_7126#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19294 6292 -19293 6293 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19786 5680 -19785 5681 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19882_7120#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19944 5680 -19943 5681 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19882_7120#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19786 6298 -19785 6299 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "a_n19882_7120#" 400 0 "outd_stage3_0/outd_stage2_0/VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19944 6298 -19943 6299 l=100 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 200 0 "outd_stage3_0/outd_stage2_0/VN" 400 0 "a_n19882_7120#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54408 9340 54409 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54312 9340 54313 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54216 9340 54217 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54120 9340 54121 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54024 9340 54025 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53928 9340 53929 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53832 9340 53833 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53736 9340 53737 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53640 9340 53641 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53544 9340 53545 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53448 9340 53449 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54408 9958 54409 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54312 9958 54313 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54216 9958 54217 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54120 9958 54121 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 54024 9958 54025 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53928 9958 53929 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53832 9958 53833 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53736 9958 53737 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53640 9958 53641 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53544 9958 53545 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53448 9958 53449 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53030 9340 53031 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52934 9340 52935 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52838 9340 52839 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52742 9340 52743 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52646 9340 52647 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52550 9340 52551 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52454 9340 52455 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52358 9340 52359 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52262 9340 52263 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52166 9340 52167 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52070 9340 52071 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 53030 9958 53031 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52934 9958 52935 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52838 9958 52839 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52742 9958 52743 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52646 9958 52647 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52550 9958 52551 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52454 9958 52455 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52358 9958 52359 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52262 9958 52263 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52166 9958 52167 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 52070 9958 52071 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51478 9340 51479 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51382 9340 51383 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51286 9340 51287 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51190 9340 51191 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51094 9340 51095 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50998 9340 50999 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50902 9340 50903 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50806 9340 50807 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50710 9340 50711 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50614 9340 50615 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50518 9340 50519 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51478 9958 51479 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51382 9958 51383 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51286 9958 51287 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51190 9958 51191 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 51094 9958 51095 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50998 9958 50999 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50902 9958 50903 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50806 9958 50807 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50710 9958 50711 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50614 9958 50615 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50518 9958 50519 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50100 9340 50101 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50004 9340 50005 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49908 9340 49909 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49812 9340 49813 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49716 9340 49717 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49620 9340 49621 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49524 9340 49525 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49428 9340 49429 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49332 9340 49333 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49236 9340 49237 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49140 9340 49141 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50100 9958 50101 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 50004 9958 50005 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49908 9958 49909 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49812 9958 49813 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49716 9958 49717 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49620 9958 49621 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49524 9958 49525 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49428 9958 49429 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49332 9958 49333 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49236 9958 49237 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 49140 9958 49141 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48548 9340 48549 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48452 9340 48453 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48356 9340 48357 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48260 9340 48261 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48164 9340 48165 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48068 9340 48069 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47972 9340 47973 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47876 9340 47877 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47780 9340 47781 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47684 9340 47685 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47588 9340 47589 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48548 9958 48549 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48452 9958 48453 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48356 9958 48357 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48260 9958 48261 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48164 9958 48165 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 48068 9958 48069 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47972 9958 47973 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47876 9958 47877 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47780 9958 47781 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47684 9958 47685 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47588 9958 47589 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47170 9340 47171 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47074 9340 47075 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46978 9340 46979 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46882 9340 46883 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46786 9340 46787 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46690 9340 46691 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46594 9340 46595 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46498 9340 46499 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46402 9340 46403 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46306 9340 46307 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46210 9340 46211 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47170 9958 47171 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 47074 9958 47075 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46978 9958 46979 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46882 9958 46883 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46786 9958 46787 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46690 9958 46691 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46594 9958 46595 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46498 9958 46499 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46402 9958 46403 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46306 9958 46307 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46210 9958 46211 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45618 9340 45619 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45522 9340 45523 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45426 9340 45427 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45330 9340 45331 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45234 9340 45235 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45138 9340 45139 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45042 9340 45043 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44946 9340 44947 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44850 9340 44851 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44754 9340 44755 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44658 9340 44659 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45618 9958 45619 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45522 9958 45523 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45426 9958 45427 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45330 9958 45331 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45234 9958 45235 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45138 9958 45139 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 45042 9958 45043 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44946 9958 44947 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44850 9958 44851 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44754 9958 44755 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44658 9958 44659 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44240 9340 44241 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44144 9340 44145 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44048 9340 44049 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43952 9340 43953 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43856 9340 43857 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43760 9340 43761 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43664 9340 43665 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43568 9340 43569 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43472 9340 43473 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43376 9340 43377 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43280 9340 43281 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44240 9958 44241 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44144 9958 44145 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 44048 9958 44049 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43952 9958 43953 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43856 9958 43857 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43760 9958 43761 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43664 9958 43665 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43568 9958 43569 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43472 9958 43473 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43376 9958 43377 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 43280 9958 43281 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 40158 9340 40159 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 40062 9340 40063 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39966 9340 39967 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39870 9340 39871 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39774 9340 39775 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39678 9340 39679 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39582 9340 39583 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39486 9340 39487 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39390 9340 39391 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39294 9340 39295 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39198 9340 39199 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 40158 9958 40159 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 40062 9958 40063 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39966 9958 39967 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39870 9958 39871 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39774 9958 39775 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39678 9958 39679 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39582 9958 39583 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39486 9958 39487 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39390 9958 39391 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39294 9958 39295 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 39198 9958 39199 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38780 9340 38781 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38684 9340 38685 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38588 9340 38589 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38492 9340 38493 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38396 9340 38397 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38300 9340 38301 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38204 9340 38205 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38108 9340 38109 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38012 9340 38013 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37916 9340 37917 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37820 9340 37821 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38780 9958 38781 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38684 9958 38685 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38588 9958 38589 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38492 9958 38493 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38396 9958 38397 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38300 9958 38301 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38204 9958 38205 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38108 9958 38109 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 38012 9958 38013 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37916 9958 37917 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37820 9958 37821 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37228 9340 37229 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37132 9340 37133 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37036 9340 37037 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36940 9340 36941 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36844 9340 36845 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36748 9340 36749 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36652 9340 36653 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36556 9340 36557 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36460 9340 36461 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36364 9340 36365 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36268 9340 36269 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37228 9958 37229 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37132 9958 37133 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 37036 9958 37037 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36940 9958 36941 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36844 9958 36845 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36748 9958 36749 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36652 9958 36653 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36556 9958 36557 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36460 9958 36461 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36364 9958 36365 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 36268 9958 36269 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35850 9340 35851 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35754 9340 35755 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35658 9340 35659 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35562 9340 35563 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35466 9340 35467 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35370 9340 35371 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35274 9340 35275 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35178 9340 35179 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35082 9340 35083 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34986 9340 34987 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34890 9340 34891 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35850 9958 35851 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35754 9958 35755 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35658 9958 35659 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35562 9958 35563 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35466 9958 35467 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35370 9958 35371 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35274 9958 35275 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35178 9958 35179 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 35082 9958 35083 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34986 9958 34987 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34890 9958 34891 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34298 9340 34299 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34202 9340 34203 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34106 9340 34107 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34010 9340 34011 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33914 9340 33915 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33818 9340 33819 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33722 9340 33723 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33626 9340 33627 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33530 9340 33531 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33434 9340 33435 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33338 9340 33339 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34298 9958 34299 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34202 9958 34203 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34106 9958 34107 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 34010 9958 34011 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33914 9958 33915 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33818 9958 33819 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33722 9958 33723 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33626 9958 33627 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33530 9958 33531 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33434 9958 33435 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33338 9958 33339 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32920 9340 32921 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32824 9340 32825 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32728 9340 32729 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32632 9340 32633 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32536 9340 32537 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32440 9340 32441 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32344 9340 32345 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32248 9340 32249 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32152 9340 32153 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32056 9340 32057 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31960 9340 31961 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32920 9958 32921 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32824 9958 32825 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32728 9958 32729 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32632 9958 32633 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32536 9958 32537 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32440 9958 32441 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32344 9958 32345 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32248 9958 32249 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32152 9958 32153 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 32056 9958 32057 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31960 9958 31961 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31368 9340 31369 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31272 9340 31273 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31176 9340 31177 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31080 9340 31081 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30984 9340 30985 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30888 9340 30889 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30792 9340 30793 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30696 9340 30697 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30600 9340 30601 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30504 9340 30505 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30408 9340 30409 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31368 9958 31369 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31272 9958 31273 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31176 9958 31177 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 31080 9958 31081 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30984 9958 30985 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30888 9958 30889 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30792 9958 30793 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30696 9958 30697 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30600 9958 30601 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30504 9958 30505 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 30408 9958 30409 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29990 9340 29991 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29894 9340 29895 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29798 9340 29799 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29702 9340 29703 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29606 9340 29607 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29510 9340 29511 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29414 9340 29415 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29318 9340 29319 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29222 9340 29223 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29126 9340 29127 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29030 9340 29031 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29990 9958 29991 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29894 9958 29895 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29798 9958 29799 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29702 9958 29703 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29606 9958 29607 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29510 9958 29511 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29414 9958 29415 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29318 9958 29319 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29222 9958 29223 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29126 9958 29127 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 29030 9958 29031 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25908 9340 25909 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25812 9340 25813 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25716 9340 25717 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25620 9340 25621 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25524 9340 25525 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25428 9340 25429 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25332 9340 25333 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25236 9340 25237 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25140 9340 25141 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25044 9340 25045 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24948 9340 24949 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25908 9958 25909 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25812 9958 25813 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25716 9958 25717 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25620 9958 25621 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25524 9958 25525 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25428 9958 25429 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25332 9958 25333 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25236 9958 25237 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25140 9958 25141 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 25044 9958 25045 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24948 9958 24949 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24530 9340 24531 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24434 9340 24435 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24338 9340 24339 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24242 9340 24243 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24146 9340 24147 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24050 9340 24051 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23954 9340 23955 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23858 9340 23859 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23762 9340 23763 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23666 9340 23667 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23570 9340 23571 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24530 9958 24531 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24434 9958 24435 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24338 9958 24339 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24242 9958 24243 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24146 9958 24147 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 24050 9958 24051 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23954 9958 23955 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23858 9958 23859 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23762 9958 23763 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23666 9958 23667 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 23570 9958 23571 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22978 9340 22979 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22882 9340 22883 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22786 9340 22787 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22690 9340 22691 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22594 9340 22595 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22498 9340 22499 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22402 9340 22403 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22306 9340 22307 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22210 9340 22211 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22114 9340 22115 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22018 9340 22019 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22978 9958 22979 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22882 9958 22883 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22786 9958 22787 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22690 9958 22691 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22594 9958 22595 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22498 9958 22499 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22402 9958 22403 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22306 9958 22307 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22210 9958 22211 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22114 9958 22115 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 22018 9958 22019 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21600 9340 21601 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21504 9340 21505 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21408 9340 21409 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21312 9340 21313 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21216 9340 21217 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21120 9340 21121 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21024 9340 21025 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20928 9340 20929 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20832 9340 20833 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20736 9340 20737 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20640 9340 20641 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21600 9958 21601 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21504 9958 21505 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21408 9958 21409 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21312 9958 21313 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21216 9958 21217 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21120 9958 21121 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 21024 9958 21025 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20928 9958 20929 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20832 9958 20833 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20736 9958 20737 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20640 9958 20641 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20048 9340 20049 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19952 9340 19953 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19856 9340 19857 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19760 9340 19761 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19664 9340 19665 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19568 9340 19569 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19472 9340 19473 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19376 9340 19377 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19280 9340 19281 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19184 9340 19185 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19088 9340 19089 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 20048 9958 20049 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19952 9958 19953 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19856 9958 19857 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19760 9958 19761 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19664 9958 19665 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19568 9958 19569 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19472 9958 19473 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19376 9958 19377 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19280 9958 19281 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19184 9958 19185 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 19088 9958 19089 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18670 9340 18671 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18574 9340 18575 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18478 9340 18479 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18382 9340 18383 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18286 9340 18287 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18190 9340 18191 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18094 9340 18095 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17998 9340 17999 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17902 9340 17903 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17806 9340 17807 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17710 9340 17711 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18670 9958 18671 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18574 9958 18575 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18478 9958 18479 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18382 9958 18383 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18286 9958 18287 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18190 9958 18191 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 18094 9958 18095 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17998 9958 17999 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17902 9958 17903 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17806 9958 17807 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17710 9958 17711 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17118 9340 17119 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17022 9340 17023 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16926 9340 16927 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16830 9340 16831 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16734 9340 16735 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16638 9340 16639 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16542 9340 16543 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16446 9340 16447 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16350 9340 16351 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16254 9340 16255 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16158 9340 16159 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17118 9958 17119 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 17022 9958 17023 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16926 9958 16927 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16830 9958 16831 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16734 9958 16735 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16638 9958 16639 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16542 9958 16543 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16446 9958 16447 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16350 9958 16351 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16254 9958 16255 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 16158 9958 16159 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15740 9340 15741 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15644 9340 15645 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15548 9340 15549 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15452 9340 15453 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15356 9340 15357 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15260 9340 15261 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15164 9340 15165 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15068 9340 15069 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14972 9340 14973 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14876 9340 14877 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14780 9340 14781 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15740 9958 15741 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15644 9958 15645 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15548 9958 15549 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15452 9958 15453 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15356 9958 15357 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15260 9958 15261 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15164 9958 15165 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 15068 9958 15069 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14972 9958 14973 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14876 9958 14877 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 14780 9958 14781 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11658 9340 11659 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11562 9340 11563 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11466 9340 11467 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11370 9340 11371 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11274 9340 11275 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11178 9340 11179 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11082 9340 11083 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10986 9340 10987 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10890 9340 10891 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10794 9340 10795 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10698 9340 10699 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11658 9958 11659 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11562 9958 11563 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11466 9958 11467 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11370 9958 11371 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11274 9958 11275 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11178 9958 11179 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 11082 9958 11083 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10986 9958 10987 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10890 9958 10891 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10794 9958 10795 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10698 9958 10699 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10280 9340 10281 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10184 9340 10185 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10088 9340 10089 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9992 9340 9993 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9896 9340 9897 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9800 9340 9801 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9704 9340 9705 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9608 9340 9609 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9512 9340 9513 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9416 9340 9417 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9320 9340 9321 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10280 9958 10281 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10184 9958 10185 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 10088 9958 10089 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9992 9958 9993 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9896 9958 9897 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9800 9958 9801 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9704 9958 9705 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9608 9958 9609 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9512 9958 9513 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9416 9958 9417 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 9320 9958 9321 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8728 9340 8729 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8632 9340 8633 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8536 9340 8537 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8440 9340 8441 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8344 9340 8345 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8248 9340 8249 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8152 9340 8153 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8056 9340 8057 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7960 9340 7961 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7864 9340 7865 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7768 9340 7769 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8728 9958 8729 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8632 9958 8633 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8536 9958 8537 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8440 9958 8441 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8344 9958 8345 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8248 9958 8249 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8152 9958 8153 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 8056 9958 8057 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7960 9958 7961 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7864 9958 7865 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7768 9958 7769 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7350 9340 7351 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7254 9340 7255 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7158 9340 7159 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7062 9340 7063 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6966 9340 6967 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6870 9340 6871 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6774 9340 6775 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6678 9340 6679 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6582 9340 6583 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6486 9340 6487 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6390 9340 6391 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7350 9958 7351 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7254 9958 7255 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7158 9958 7159 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 7062 9958 7063 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6966 9958 6967 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6870 9958 6871 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6774 9958 6775 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6678 9958 6679 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6582 9958 6583 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6486 9958 6487 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 6390 9958 6391 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5798 9340 5799 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5702 9340 5703 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5606 9340 5607 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5510 9340 5511 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5414 9340 5415 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5318 9340 5319 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5222 9340 5223 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5126 9340 5127 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5030 9340 5031 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4934 9340 4935 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4838 9340 4839 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5798 9958 5799 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5702 9958 5703 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5606 9958 5607 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5510 9958 5511 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5414 9958 5415 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5318 9958 5319 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5222 9958 5223 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5126 9958 5127 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 5030 9958 5031 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4934 9958 4935 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4838 9958 4839 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4420 9340 4421 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4324 9340 4325 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4228 9340 4229 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4132 9340 4133 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4036 9340 4037 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3940 9340 3941 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3844 9340 3845 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3748 9340 3749 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3652 9340 3653 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3556 9340 3557 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3460 9340 3461 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4420 9958 4421 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4324 9958 4325 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4228 9958 4229 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4132 9958 4133 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 4036 9958 4037 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3940 9958 3941 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3844 9958 3845 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3748 9958 3749 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3652 9958 3653 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3556 9958 3557 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3460 9958 3461 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2868 9340 2869 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2772 9340 2773 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2676 9340 2677 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2580 9340 2581 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2484 9340 2485 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2388 9340 2389 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2292 9340 2293 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2196 9340 2197 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2100 9340 2101 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2004 9340 2005 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1908 9340 1909 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2868 9958 2869 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2772 9958 2773 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2676 9958 2677 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2580 9958 2581 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2484 9958 2485 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2388 9958 2389 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2292 9958 2293 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2196 9958 2197 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2100 9958 2101 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2004 9958 2005 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "OutputP" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1908 9958 1909 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_P" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1490 9340 1491 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1394 9340 1395 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1298 9340 1299 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1202 9340 1203 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1106 9340 1107 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1010 9340 1011 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 914 9340 915 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 818 9340 819 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 722 9340 723 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 626 9340 627 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 530 9340 531 9341 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1490 9958 1491 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1394 9958 1395 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1298 9958 1299 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1202 9958 1203 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1106 9958 1107 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1010 9958 1011 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 914 9958 915 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 818 9958 819 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 722 9958 723 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 626 9958 627 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0 "OutputN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 530 9958 531 9959 l=30 w=400 "outd_stage3_0/outd_stage2_0/cmirror_out" "V_da2_N" 60 0 "OutputN" 400 0 "outd_stage3_0/outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2662 9340 -2661 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2758 9340 -2757 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2854 9340 -2853 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2950 9340 -2949 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3046 9340 -3045 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3142 9340 -3141 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3238 9340 -3237 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3334 9340 -3333 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3430 9340 -3429 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3526 9340 -3525 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3622 9340 -3621 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2662 9958 -2661 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2758 9958 -2757 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2854 9958 -2853 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -2950 9958 -2949 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3046 9958 -3045 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3142 9958 -3141 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3238 9958 -3237 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3334 9958 -3333 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3430 9958 -3429 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3526 9958 -3525 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -3622 9958 -3621 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4040 9340 -4039 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4136 9340 -4135 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4232 9340 -4231 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4328 9340 -4327 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4424 9340 -4423 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4520 9340 -4519 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4616 9340 -4615 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4712 9340 -4711 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4808 9340 -4807 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4904 9340 -4903 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5000 9340 -4999 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4040 9958 -4039 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4136 9958 -4135 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4232 9958 -4231 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4328 9958 -4327 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4424 9958 -4423 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4520 9958 -4519 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4616 9958 -4615 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4712 9958 -4711 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4808 9958 -4807 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -4904 9958 -4903 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5000 9958 -4999 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5592 9340 -5591 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5688 9340 -5687 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5784 9340 -5783 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5880 9340 -5879 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5976 9340 -5975 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6072 9340 -6071 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6168 9340 -6167 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6264 9340 -6263 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6360 9340 -6359 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6456 9340 -6455 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6552 9340 -6551 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5592 9958 -5591 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5688 9958 -5687 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5784 9958 -5783 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5880 9958 -5879 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -5976 9958 -5975 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6072 9958 -6071 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6168 9958 -6167 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6264 9958 -6263 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6360 9958 -6359 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6456 9958 -6455 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6552 9958 -6551 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6970 9340 -6969 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7066 9340 -7065 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7162 9340 -7161 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7258 9340 -7257 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7354 9340 -7353 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7450 9340 -7449 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7546 9340 -7545 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7642 9340 -7641 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7738 9340 -7737 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7834 9340 -7833 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7930 9340 -7929 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -6970 9958 -6969 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7066 9958 -7065 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7162 9958 -7161 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7258 9958 -7257 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7354 9958 -7353 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7450 9958 -7449 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7546 9958 -7545 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7642 9958 -7641 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7738 9958 -7737 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7834 9958 -7833 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -7930 9958 -7929 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8522 9340 -8521 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8618 9340 -8617 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8714 9340 -8713 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8810 9340 -8809 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8906 9340 -8905 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9002 9340 -9001 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9098 9340 -9097 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9194 9340 -9193 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9290 9340 -9289 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9386 9340 -9385 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9482 9340 -9481 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8522 9958 -8521 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8618 9958 -8617 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8714 9958 -8713 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8810 9958 -8809 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -8906 9958 -8905 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9002 9958 -9001 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9098 9958 -9097 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9194 9958 -9193 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9290 9958 -9289 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9386 9958 -9385 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9482 9958 -9481 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9900 9340 -9899 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9996 9340 -9995 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10092 9340 -10091 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10188 9340 -10187 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10284 9340 -10283 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10380 9340 -10379 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10476 9340 -10475 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10572 9340 -10571 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10668 9340 -10667 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10764 9340 -10763 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10860 9340 -10859 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9900 9958 -9899 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -9996 9958 -9995 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10092 9958 -10091 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10188 9958 -10187 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10284 9958 -10283 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10380 9958 -10379 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10476 9958 -10475 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10572 9958 -10571 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10668 9958 -10667 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10764 9958 -10763 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -10860 9958 -10859 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11452 9340 -11451 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11548 9340 -11547 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11644 9340 -11643 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11740 9340 -11739 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11836 9340 -11835 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11932 9340 -11931 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12028 9340 -12027 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12124 9340 -12123 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12220 9340 -12219 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12316 9340 -12315 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12412 9340 -12411 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11452 9958 -11451 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11548 9958 -11547 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11644 9958 -11643 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11740 9958 -11739 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11836 9958 -11835 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -11932 9958 -11931 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12028 9958 -12027 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12124 9958 -12123 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12220 9958 -12219 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12316 9958 -12315 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "V_da2_P" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12412 9958 -12411 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_P" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12830 9340 -12829 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12926 9340 -12925 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13022 9340 -13021 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13118 9340 -13117 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13214 9340 -13213 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13310 9340 -13309 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13406 9340 -13405 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13502 9340 -13501 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13598 9340 -13597 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13694 9340 -13693 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13790 9340 -13789 9341 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12830 9958 -12829 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -12926 9958 -12925 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13022 9958 -13021 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13118 9958 -13117 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13214 9958 -13213 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13310 9958 -13309 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13406 9958 -13405 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13502 9958 -13501 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13598 9958 -13597 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13694 9958 -13693 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "outd_stage2_0/cmirror_out" 400 0 "V_da2_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -13790 9958 -13789 9959 l=30 w=400 "outd_stage2_0/cmirror_out" "V_da1_N" 60 0 "V_da2_N" 400 0 "outd_stage2_0/cmirror_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17850 7126 -17849 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17946 7126 -17945 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18042 7126 -18041 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18138 7126 -18137 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18234 7126 -18233 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18330 7126 -18329 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18426 7126 -18425 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18522 7126 -18521 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18618 7126 -18617 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18714 7126 -18713 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18810 7126 -18809 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18906 7126 -18905 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19002 7126 -19001 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19098 7126 -19097 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19194 7126 -19193 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19290 7126 -19289 7127 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17850 7744 -17849 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17946 7744 -17945 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18042 7744 -18041 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18138 7744 -18137 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18234 7744 -18233 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18330 7744 -18329 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18426 7744 -18425 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18522 7744 -18521 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18618 7744 -18617 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18714 7744 -18713 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18810 7744 -18809 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18906 7744 -18905 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19002 7744 -19001 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19098 7744 -19097 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19194 7744 -19193 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19290 7744 -19289 7745 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17850 8362 -17849 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17946 8362 -17945 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18042 8362 -18041 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18138 8362 -18137 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18234 8362 -18233 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18330 8362 -18329 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18426 8362 -18425 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18522 8362 -18521 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18618 8362 -18617 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18714 8362 -18713 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18810 8362 -18809 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18906 8362 -18905 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19002 8362 -19001 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19098 8362 -19097 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19194 8362 -19193 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19290 8362 -19289 8363 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17850 8980 -17849 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -17946 8980 -17945 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18042 8980 -18041 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18138 8980 -18137 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18234 8980 -18233 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18330 8980 -18329 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18426 8980 -18425 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18522 8980 -18521 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18618 8980 -18617 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18714 8980 -18713 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18810 8980 -18809 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -18906 8980 -18905 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19002 8980 -19001 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19098 8980 -19097 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19194 8980 -19193 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19260_7126#" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19290 8980 -19289 8981 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "outd_stage1_0/isource_out" 400 0 "a_n19260_7126#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19724 7120 -19723 7121 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "I_Bias" 400 0 "a_n19882_7120#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -19820 7120 -19819 7121 l=30 w=400 "outd_stage3_0/outd_stage2_0/VN" "I_Bias" 60 0 "a_n19882_7120#" 400 0 "I_Bias" 400 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 53416 11478 53417 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_53416_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 51948 11478 51949 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_51948_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 50486 11478 50487 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_50486_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 49018 11478 49019 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_49018_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 47556 11478 47557 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_47556_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 46088 11478 46089 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_46088_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 44626 11478 44627 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_44626_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 43158 11478 43159 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_43158_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 39166 11478 39167 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_39166_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 37698 11478 37699 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_37698_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 36236 11478 36237 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_36236_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 34768 11478 34769 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_34768_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 33306 11478 33307 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_33306_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 31838 11478 31839 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_31838_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 30376 11478 30377 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_30376_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 28908 11478 28909 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_28908_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 24916 11478 24917 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_24916_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 23448 11478 23449 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_23448_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 21986 11478 21987 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_21986_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 20518 11478 20519 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_20518_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 19056 11478 19057 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_19056_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 17588 11478 17589 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_17588_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 16126 11478 16127 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_16126_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 14658 11478 14659 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_14658_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 10666 11478 10667 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_10666_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 9198 11478 9199 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_9198_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 7736 11478 7737 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_7736_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 6268 11478 6269 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_6268_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 4806 11478 4807 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_4806_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 3338 11478 3339 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_3338_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 1876 11478 1877 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_1876_11478#" 0 0 "VP" 1146 0 "OutputP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 408 11478 409 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_408_11478#" 0 0 "VP" 1146 0 "OutputN" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -3654 11478 -3653 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n3654_11478#" 0 0 "VP" 1146 0 "V_da2_P" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -5122 11478 -5121 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n5122_11478#" 0 0 "VP" 1146 0 "V_da2_N" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -6584 11478 -6583 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n6584_11478#" 0 0 "VP" 1146 0 "V_da2_P" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -8052 11478 -8051 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n8052_11478#" 0 0 "VP" 1146 0 "V_da2_N" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -9514 11478 -9513 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n9514_11478#" 0 0 "VP" 1146 0 "V_da2_P" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -10982 11478 -10981 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n10982_11478#" 0 0 "VP" 1146 0 "V_da2_N" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -12444 11478 -12443 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n12444_11478#" 0 0 "VP" 1146 0 "V_da2_P" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -13912 11478 -13911 11479 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n13912_11478#" 0 0 "VP" 1146 0 "V_da2_N" 1146 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16642 10140 -16641 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16738 10140 -16737 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16834 10140 -16833 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16930 10140 -16929 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17026 10140 -17025 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17122 10140 -17121 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17218 10140 -17217 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17314 10140 -17313 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17410 10140 -17409 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17506 10140 -17505 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17602 10140 -17601 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16642 10758 -16641 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16738 10758 -16737 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16834 10758 -16833 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -16930 10758 -16929 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17026 10758 -17025 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17122 10758 -17121 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17218 10758 -17217 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17314 10758 -17313 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17410 10758 -17409 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17506 10758 -17505 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "V_da1_N" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -17602 10758 -17601 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputRef" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_N" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18020 10140 -18019 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18116 10140 -18115 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18212 10140 -18211 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18308 10140 -18307 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18404 10140 -18403 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18500 10140 -18499 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18596 10140 -18595 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18692 10140 -18691 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18788 10140 -18787 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18884 10140 -18883 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18980 10140 -18979 10141 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18020 10758 -18019 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18116 10758 -18115 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18212 10758 -18211 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18308 10758 -18307 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18404 10758 -18403 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18500 10758 -18499 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18596 10758 -18595 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18692 10758 -18691 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18788 10758 -18787 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18884 10758 -18883 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "outd_stage1_0/isource_out" 400 0 "V_da1_P" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -18980 10758 -18979 10759 l=30 w=400 "outd_stage1_0/isource_out" "InputSignal" 60 0 "V_da1_P" 400 0 "outd_stage1_0/isource_out" 400 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 53416 13458 53417 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_53416_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 51948 13458 51949 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_51948_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 50486 13458 50487 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_50486_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 49018 13458 49019 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_49018_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 47556 13458 47557 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_47556_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 46088 13458 46089 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_46088_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 44626 13458 44627 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_44626_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 43158 13458 43159 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_43158_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 39166 13458 39167 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_39166_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 37698 13458 37699 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_37698_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 36236 13458 36237 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_36236_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 34768 13458 34769 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_34768_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 33306 13458 33307 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_33306_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 31838 13458 31839 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_31838_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 30376 13458 30377 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_30376_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 28908 13458 28909 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_28908_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 24916 13458 24917 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_24916_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 23448 13458 23449 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_23448_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 21986 13458 21987 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_21986_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 20518 13458 20519 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_20518_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 19056 13458 19057 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_19056_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 17588 13458 17589 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_17588_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 16126 13458 16127 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_16126_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 14658 13458 14659 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_14658_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 10666 13458 10667 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_10666_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 9198 13458 9199 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_9198_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 7736 13458 7737 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_7736_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 6268 13458 6269 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_6268_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 4806 13458 4807 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_4806_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 3338 13458 3339 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_3338_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 1876 13458 1877 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_1876_13458#" 0 0 "OutputP" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 408 13458 409 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_408_13458#" 0 0 "OutputN" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -3654 13458 -3653 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n3654_13458#" 0 0 "V_da2_P" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -5122 13458 -5121 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n5122_13458#" 0 0 "V_da2_N" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -6584 13458 -6583 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n6584_13458#" 0 0 "V_da2_P" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -8052 13458 -8051 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n8052_13458#" 0 0 "V_da2_N" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -9514 13458 -9513 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n9514_13458#" 0 0 "V_da2_P" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -10982 13458 -10981 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n10982_13458#" 0 0 "V_da2_N" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -12444 13458 -12443 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n12444_13458#" 0 0 "V_da2_P" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_5p73 -13912 13458 -13911 13459 l=800 "outd_stage3_0/outd_stage2_0/VN" "a_n13912_13458#" 0 0 "V_da2_N" 1146 0 "VP" 1146 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -15180 12288 -15179 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n15180_12288#" 0 0 "V_da1_N" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -15998 12288 -15997 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n15998_12288#" 0 0 "V_da1_N" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -16816 12288 -16815 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n16816_12288#" 0 0 "V_da1_N" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -17634 12288 -17633 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n17634_12288#" 0 0 "V_da1_N" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -18520 12288 -18519 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n18520_12288#" 0 0 "V_da1_P" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -19338 12288 -19337 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n19338_12288#" 0 0 "V_da1_P" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -20156 12288 -20155 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n20156_12288#" 0 0 "V_da1_P" 570 0 "VP" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -20974 12288 -20973 12289 l=1200 "outd_stage3_0/outd_stage2_0/VN" "a_n20974_12288#" 0 0 "V_da1_P" 570 0 "VP" 570 0
diff --git a/mag/outd/outd_flat.spice b/mag/outd/outd_flat.spice
new file mode 100644
index 0000000..33a7b14
--- /dev/null
+++ b/mag/outd/outd_flat.spice
@@ -0,0 +1,6025 @@
+* SPICE3 file created from outd_flat.ext - technology: sky130A
+
+X0 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X7 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X9 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X10 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X12 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X14 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X15 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X19 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X21 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X22 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X23 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X24 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X26 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X28 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X29 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X33 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X36 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X38 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X39 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X40 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X41 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X42 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X43 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X44 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X45 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X46 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X47 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X51 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X52 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X53 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X54 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X55 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X56 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X57 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X59 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X61 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X62 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X63 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X64 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X65 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X66 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X67 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X70 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X71 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X72 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X75 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X76 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X77 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X80 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X82 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X83 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X84 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X86 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X87 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X90 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X92 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X93 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X94 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X95 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X98 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X99 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X100 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X101 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X102 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X103 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X104 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X105 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X106 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X107 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X108 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X109 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X110 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X111 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X112 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X113 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X114 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X115 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X116 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X117 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X118 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X119 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X120 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X121 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X122 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X123 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X124 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X125 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X126 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X127 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X128 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X129 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X130 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X131 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X132 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X133 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X134 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X135 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X136 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X137 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X138 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X139 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X140 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X141 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X142 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X143 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X144 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X145 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X146 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X147 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X148 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X149 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X150 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X151 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X152 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X153 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X154 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X155 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X156 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X157 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X158 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X159 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X160 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X161 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X162 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X163 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X164 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X165 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X166 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X167 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X168 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X169 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X170 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X171 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X172 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X173 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X174 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X175 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X176 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X177 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X178 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X179 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X180 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X181 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X182 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X183 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X184 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X185 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X186 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X187 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X188 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X189 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X190 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X191 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X192 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X193 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X194 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X195 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X196 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X197 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X198 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X199 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X200 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X201 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X202 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X203 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X204 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X205 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X206 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X207 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X208 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X209 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X210 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X211 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X212 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X213 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X214 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X215 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X216 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X217 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X218 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X219 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X220 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X221 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X222 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X223 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X224 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X225 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X226 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X227 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X228 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X229 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X230 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X231 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X232 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X233 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X234 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X235 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X236 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X237 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X238 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X239 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X240 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X241 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X242 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X243 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X244 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X245 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X246 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X247 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X248 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X249 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X250 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X251 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X252 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X253 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X254 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X255 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X256 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X257 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X258 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X259 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X260 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X261 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X262 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X263 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X264 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X265 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X266 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X267 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X268 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X269 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X270 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X271 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X272 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X273 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X274 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X275 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X276 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X277 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X278 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X279 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X280 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X281 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X282 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X283 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X284 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X285 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X286 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X287 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X288 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X289 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X290 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X291 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X292 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X293 V_da2_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X294 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X295 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X296 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X297 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X298 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X299 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X300 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X301 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X302 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X303 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X304 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X305 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X306 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X307 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X308 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X309 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X310 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X311 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X312 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X313 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X314 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X315 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X316 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X317 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X318 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X319 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X320 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X321 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X322 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X323 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X324 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X325 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X326 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X327 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X328 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X329 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X330 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X331 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X332 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X333 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X334 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X335 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X336 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X337 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X338 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X339 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X340 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X341 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X342 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X343 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X344 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X345 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X346 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X347 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X348 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X349 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X350 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X351 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X352 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X353 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X354 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X355 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X356 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X358 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X359 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X360 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X361 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X362 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X363 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X364 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X365 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X366 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X367 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X368 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X369 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X370 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X371 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X372 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X373 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X374 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X375 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X376 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X377 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X378 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X379 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X380 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X381 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X382 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X383 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X384 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X385 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X386 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X387 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X388 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X389 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X390 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X391 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X392 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X393 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X394 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X395 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X396 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X397 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X398 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X399 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X400 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X401 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X402 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X403 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X404 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X405 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X406 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X407 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X408 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X409 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X410 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X411 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X412 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X413 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X414 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X415 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X416 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X417 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X418 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X419 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X420 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X421 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X422 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X423 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X424 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X425 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X426 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X427 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X428 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X429 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X430 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X431 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X432 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X433 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X434 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X435 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X436 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X437 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X438 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X439 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X440 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X441 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X442 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X443 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X444 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X445 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X446 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X447 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X448 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X449 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X450 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X451 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X452 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X453 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X454 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X455 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X456 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X457 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X458 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X459 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X460 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X461 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X462 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X463 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X464 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X465 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X466 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X467 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X468 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X469 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X470 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X471 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X472 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X473 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X474 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X475 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X476 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X477 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X478 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X479 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X480 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X481 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X482 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X483 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X484 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X485 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X486 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X487 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X488 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X489 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X490 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X491 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X492 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X493 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X494 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X495 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X496 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X497 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X498 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X499 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X500 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X501 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X502 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X503 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X504 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X505 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X506 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X507 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X508 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X509 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X510 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X511 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X512 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X513 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X514 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X515 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X516 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X517 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X518 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X519 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X520 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X521 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X522 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X523 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X524 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X525 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X526 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X527 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X528 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X529 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X530 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X531 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X532 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X533 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X534 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X536 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X537 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X538 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X539 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X540 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X541 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X542 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X543 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X544 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X545 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X546 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X547 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X548 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X549 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X550 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X551 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X552 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X553 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X554 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X555 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X556 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X557 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X558 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X559 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X560 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X561 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X562 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X563 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X564 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X565 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X566 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X567 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X568 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X569 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X570 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X571 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X572 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X573 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X574 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X575 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X576 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X577 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X578 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X579 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X580 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X581 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X582 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X583 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X584 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X585 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X586 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X587 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X588 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X589 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X590 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X591 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X592 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X593 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X594 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X595 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X596 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X597 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X598 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X599 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X600 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X601 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X602 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X603 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X604 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X605 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X606 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X607 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X608 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X609 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X610 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X611 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X612 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X613 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X614 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X615 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X616 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X617 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X618 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X619 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X620 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X621 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X622 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X623 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X624 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X625 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X626 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X627 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X628 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X629 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X630 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X631 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X632 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X633 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X634 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X635 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X636 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X637 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X638 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X639 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X640 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X641 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X642 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X643 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X644 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X645 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X646 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X647 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X648 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X649 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X650 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X651 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X652 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X653 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X654 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X655 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X656 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X657 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X658 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X659 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X660 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X661 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X662 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X663 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X664 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X665 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X666 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X667 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X668 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X669 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X670 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X671 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X672 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X673 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X674 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X675 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X676 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X677 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X678 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X679 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X680 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X681 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X682 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X683 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X684 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X685 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X686 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X687 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X688 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X689 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X690 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X691 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X692 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X693 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X694 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X695 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X696 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X697 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X698 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X699 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X700 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X701 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X702 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X703 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X704 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X705 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X706 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X707 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X708 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X709 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X710 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X711 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X712 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X713 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X714 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X715 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X716 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X717 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X718 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X719 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X720 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X721 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X722 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X723 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X724 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X725 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X726 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X727 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X728 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X729 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X730 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X731 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X732 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X733 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X734 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X735 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X736 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X737 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X738 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X739 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X740 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X741 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X742 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X743 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X744 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X745 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X746 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X747 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X748 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X749 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X750 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X751 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X752 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X753 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X754 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X755 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X756 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X757 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X758 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X759 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X760 V_da2_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X761 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X762 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X763 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X764 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X765 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X766 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X767 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X768 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X769 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X770 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X771 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X772 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X773 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X774 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X775 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X776 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X777 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X778 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X779 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X780 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X781 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X782 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X783 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X784 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X785 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X786 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X787 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X788 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X789 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X790 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X791 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X792 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X793 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X794 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X795 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X796 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X797 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X798 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X799 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X800 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X801 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X802 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X803 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X804 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X805 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X806 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X807 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X808 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X809 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X810 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X811 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X812 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X813 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X814 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X815 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X816 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X817 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X818 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X819 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X820 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X821 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X822 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X823 VP V_da2_N outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X824 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X825 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X826 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X827 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X828 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X829 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X830 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X831 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X832 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X833 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X834 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X835 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X836 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X837 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X838 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X839 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X840 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X841 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X842 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X843 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X844 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X845 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X846 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X847 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X848 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X849 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X850 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X851 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X852 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X853 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X854 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X855 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X856 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X857 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X858 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X859 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X860 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X861 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X862 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X863 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X864 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X865 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X866 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X867 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X868 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X869 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X870 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X871 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X872 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X873 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X874 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X875 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X876 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X877 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X878 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X879 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X880 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X881 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X882 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X883 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X884 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X885 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X886 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X887 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X888 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X889 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X890 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X891 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X892 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X893 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X894 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X895 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X896 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X897 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X898 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X899 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X900 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X901 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X902 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X903 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X904 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X905 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X906 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X907 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X908 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X909 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X910 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X911 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X912 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X913 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X914 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X915 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X916 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X917 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X918 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X919 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X920 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X921 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X922 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X923 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X924 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X925 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X926 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X927 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X928 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X929 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X930 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X931 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X932 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X933 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X934 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X935 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X936 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X937 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X938 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X939 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X940 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X941 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X942 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X943 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X944 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X945 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X946 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X947 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X948 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X949 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X950 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X951 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X952 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X953 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X954 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X955 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X956 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X957 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X958 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X959 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X960 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X961 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X962 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X963 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X964 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X965 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X966 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X967 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X968 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X969 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X970 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X971 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X972 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X973 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X974 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X975 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X976 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X977 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X978 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X979 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X980 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X981 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X982 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X983 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X984 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X985 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X986 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X987 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X988 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X989 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X990 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X991 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X992 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X993 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X994 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X995 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X996 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X997 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X998 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X999 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1000 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1001 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1002 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1003 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1004 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1005 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1006 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1007 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1008 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1009 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1010 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1011 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1012 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1013 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1014 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1015 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1016 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1017 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1018 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1019 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1020 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1021 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1022 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1023 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1024 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1025 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1026 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1027 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1028 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1029 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1030 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1031 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1032 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1033 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1034 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1035 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1036 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1037 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1038 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1039 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1040 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1041 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1042 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1043 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1044 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1045 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1046 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1047 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1048 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1049 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1050 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1051 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1052 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1053 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1054 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1055 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1056 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1057 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1058 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1059 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1060 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1061 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1062 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1063 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1064 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1065 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1066 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1067 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1068 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1069 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1070 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1071 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1072 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1073 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1074 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1075 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1076 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1077 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1078 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1079 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1080 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1081 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1082 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1083 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1084 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1085 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1086 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1087 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1088 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1089 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1090 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1091 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1092 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1093 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1094 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1095 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1096 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1097 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1098 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1099 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1100 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1101 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1102 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1103 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1104 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1105 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1106 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1107 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1108 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1109 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1110 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1111 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1112 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1113 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1114 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1115 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1116 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1117 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1118 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1119 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1120 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1121 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1122 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1123 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1124 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1125 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1126 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1127 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1128 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1129 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1130 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1131 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1132 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1133 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1134 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1135 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1136 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1137 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1138 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1139 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1140 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1141 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1142 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1143 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1144 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1145 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1146 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1147 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1148 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1149 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1150 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1151 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1152 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1153 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1154 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1155 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1156 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1157 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1158 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1159 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1160 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1161 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1162 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1163 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1164 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1165 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1166 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1167 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1168 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1169 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1170 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1171 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1172 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1173 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1174 V_da2_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1175 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1176 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1177 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1178 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X1179 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1180 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1181 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1182 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1183 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1184 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1185 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1186 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1187 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1188 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1189 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1190 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1191 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1192 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1193 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1194 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1195 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1196 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1197 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1198 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1199 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1200 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1201 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1202 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1203 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1204 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1205 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1206 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1207 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1208 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1209 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1210 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1211 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1212 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1213 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1214 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1215 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1216 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1217 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1218 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1219 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1220 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1221 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1222 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1223 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1224 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1225 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1226 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1227 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1228 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1229 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1230 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1231 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1232 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1233 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1234 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1235 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1236 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1237 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1238 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1239 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1240 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1241 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1242 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1243 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1244 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1245 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1246 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1247 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1248 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1249 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1250 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1251 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1252 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1253 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1254 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1255 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1256 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1257 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1258 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1259 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1260 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1261 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1262 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1263 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1264 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1265 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1266 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1267 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1268 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1269 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1270 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1271 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1272 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1273 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1274 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1275 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1276 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1277 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1278 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1279 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1280 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1281 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1282 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1283 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1284 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1285 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1286 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1287 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1288 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1289 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1290 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1291 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1292 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1293 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1294 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1295 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1296 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1297 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1298 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1299 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1300 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1301 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1302 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1303 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1304 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1305 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1306 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1307 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1308 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1309 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1310 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1311 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1312 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1313 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1314 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1315 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1316 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1317 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1318 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1319 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1320 V_da2_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1321 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1322 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1323 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1324 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1325 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1326 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1327 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1328 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1329 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1330 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1331 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1332 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1333 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1334 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1335 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1336 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1337 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1338 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1339 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1340 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1341 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1342 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1343 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1344 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1345 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1346 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1347 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1348 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1349 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1350 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1351 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1352 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1353 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1354 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1355 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1356 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1358 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1359 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1360 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1361 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1362 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1363 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1364 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1365 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1366 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1367 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1368 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1369 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1370 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1371 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1372 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1373 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1374 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1375 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1376 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1377 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1378 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1379 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1380 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1381 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1382 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1383 V_da1_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X1384 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1385 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1386 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1387 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1388 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1389 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1390 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1391 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1392 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1393 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1394 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1395 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1396 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1397 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1398 V_da1_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X1399 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1400 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1401 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1402 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1403 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1404 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1405 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1406 V_da1_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X1407 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1408 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1409 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1410 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1411 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1412 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1413 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1414 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1415 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1416 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1417 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1418 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1419 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1420 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1421 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1422 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1423 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1424 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1425 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1426 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1427 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1428 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1429 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1430 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1431 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1432 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1433 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1434 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1435 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1436 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1437 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1438 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1439 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1440 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1441 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1442 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1443 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1444 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1445 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1446 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1447 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1448 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1449 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1450 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1451 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1452 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1453 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1454 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1455 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1456 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1457 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1458 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1459 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1460 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1461 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1462 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1463 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1464 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1465 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1466 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1467 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1468 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1469 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1470 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1471 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1472 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1473 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1474 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1475 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1476 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1477 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1478 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1479 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1480 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1481 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1482 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1483 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1484 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1485 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1486 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1487 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1488 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1489 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1490 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1491 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1492 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1493 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1494 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1495 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1496 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1497 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1498 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1499 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1500 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1501 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1502 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1503 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1504 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1505 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1506 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1507 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1508 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1509 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1510 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1511 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1512 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1513 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1514 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1515 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1516 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1517 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1518 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1519 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1520 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1521 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1522 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1523 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1524 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1525 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1526 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1527 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1528 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1529 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1530 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1531 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1532 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1533 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1534 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1536 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1537 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1538 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1539 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1540 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1541 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1542 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1543 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1544 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1545 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1546 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1547 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1548 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1549 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1550 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1551 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1552 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1553 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1554 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1555 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1556 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1557 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1558 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1559 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1560 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1561 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1562 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1563 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1564 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1565 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1566 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1567 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1568 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1569 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1570 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1571 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1572 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1573 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1574 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1575 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1576 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1577 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1578 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1579 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1580 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1581 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1582 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1583 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1584 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1585 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1586 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1587 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1588 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1589 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1590 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1591 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1592 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1593 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1594 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1595 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1596 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1597 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1598 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1599 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1600 V_da1_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X1601 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1602 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1603 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1604 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1605 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1606 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1607 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1608 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1609 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1610 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1611 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1612 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1613 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1614 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1615 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19882_7120# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1616 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1617 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1618 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1619 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1620 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1621 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1622 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1623 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1624 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1625 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1626 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1627 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1628 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1629 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1630 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1631 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1632 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1633 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1634 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1635 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1636 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1637 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1638 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1639 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1640 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1641 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1642 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1643 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1644 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1645 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1646 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1647 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1648 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1649 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1650 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1651 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1652 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1653 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1654 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1655 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1656 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1657 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1658 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1659 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1660 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1661 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1662 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1663 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1664 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1665 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1666 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1667 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1668 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1669 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1670 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1671 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1672 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1673 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1674 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1675 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1676 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1677 a_n19882_7120# I_Bias I_Bias outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1678 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1679 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1680 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1681 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1682 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1683 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1684 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1685 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1686 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1687 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1688 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1689 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1690 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1691 VP V_da2_P outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1692 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1693 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1694 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1695 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1696 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1697 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1698 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1699 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1700 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1701 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1702 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1703 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1704 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1705 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1706 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1707 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1708 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1709 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1710 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1711 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1712 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1713 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1714 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1715 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1716 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1717 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1718 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1719 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1720 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1721 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1722 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1723 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1724 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1725 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1726 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1727 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1728 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1729 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1730 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1731 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1732 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1733 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1734 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1735 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1736 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1737 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1738 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1739 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1740 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1741 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1742 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1743 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1744 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1745 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1746 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1747 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1748 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1749 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1750 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1751 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1752 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1753 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1754 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1755 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1756 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1757 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1758 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1759 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1760 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1761 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1762 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1763 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1764 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1765 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1766 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1767 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1768 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1769 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1770 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1771 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1772 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1773 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1774 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1775 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1776 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1777 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1778 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1779 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1780 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1781 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1782 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1783 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1784 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1785 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1786 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1787 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1788 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1789 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1790 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1791 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1792 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1793 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1794 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1795 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1796 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1797 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1798 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1799 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1800 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1801 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1802 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1803 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1804 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1805 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1806 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1807 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1808 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1809 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1810 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1811 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1812 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1813 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1814 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1815 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1816 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1817 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1818 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1819 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1820 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1821 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1822 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1823 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1824 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1825 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1826 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1827 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1828 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1829 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1830 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1831 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1832 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1833 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1834 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1835 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1836 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1837 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1838 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1839 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1840 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1841 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1842 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1843 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1844 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1845 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1846 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1847 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1848 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1849 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1850 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1851 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1852 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1853 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1854 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1855 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1856 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1857 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1858 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1859 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1860 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1861 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1862 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1863 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1864 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1865 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1866 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1867 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1868 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1869 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1870 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1871 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1872 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1873 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1874 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1875 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1876 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1877 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1878 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1879 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1880 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1881 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1882 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1883 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1884 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1885 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1886 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1887 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1888 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1889 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1890 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1891 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1892 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1893 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1894 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1895 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1896 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1897 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1898 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1899 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1900 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1901 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1902 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1903 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1904 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1905 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1906 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1907 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1908 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1909 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1910 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1911 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1912 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1913 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1914 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1915 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1916 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1917 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1918 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1919 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1920 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1921 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1922 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1923 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1924 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1925 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1926 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1927 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1928 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1929 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1930 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1931 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1932 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1933 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1934 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1935 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1936 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1937 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1938 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1939 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1940 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1941 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1942 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1943 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1944 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1945 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1946 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1947 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1948 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1949 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1950 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1951 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1952 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1953 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1954 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1955 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1956 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1957 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1958 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1959 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1960 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1961 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1962 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1963 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1964 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1965 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1966 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1967 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1968 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1969 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1970 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1971 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1972 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1973 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1974 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1975 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1976 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1977 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1978 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1979 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1980 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1981 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1982 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1983 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1984 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1985 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1986 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1987 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1988 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1989 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1990 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1991 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1992 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1993 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1994 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1995 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1996 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1997 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1998 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1999 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2000 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2001 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2002 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2003 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2004 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2005 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2006 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2007 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2008 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2009 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2010 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2011 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2012 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2013 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2014 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2015 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2016 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2017 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2018 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2019 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2020 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2021 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2022 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2023 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2024 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2025 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2026 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2027 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2028 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2029 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2030 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2031 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2032 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2033 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2034 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2035 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2036 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2037 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2038 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2039 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2040 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2041 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2042 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2043 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2044 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2045 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2046 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2047 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2048 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2049 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2050 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2051 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2052 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2053 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2054 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2055 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2056 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2057 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2058 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2059 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2060 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2061 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2062 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2063 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2064 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2065 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2066 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2067 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2068 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2069 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2070 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2071 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2072 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2073 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2074 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2075 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2076 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2077 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2078 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2079 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2080 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2081 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2082 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2083 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2084 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2085 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2086 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2087 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2088 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2089 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2090 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2091 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2092 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2093 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2094 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2095 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2096 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2097 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2098 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2099 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2100 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2101 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2102 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2103 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2104 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2105 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2106 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2107 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2108 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2109 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2110 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2111 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2112 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2113 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2114 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2115 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2116 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2117 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2118 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2119 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2120 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2121 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2122 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2123 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2124 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2125 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2126 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2127 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2128 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2129 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2130 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2131 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2132 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2133 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2134 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2135 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2136 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2137 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2138 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2139 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2140 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2141 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2142 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2143 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2144 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2145 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2146 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2147 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2148 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2149 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2150 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2151 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2152 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2153 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2154 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2155 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2156 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2157 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2158 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2159 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2160 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2161 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2162 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2163 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2164 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2165 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2166 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2167 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2168 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2169 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2170 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2171 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2172 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2173 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2174 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2175 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2176 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2177 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2178 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2179 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2180 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2181 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2182 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2183 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2184 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2185 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2186 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2187 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2188 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2189 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2190 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2191 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2192 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2193 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2194 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2195 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2196 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2197 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2198 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2199 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2200 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2201 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2202 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2203 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2204 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2205 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2206 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2207 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2208 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2209 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2210 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2211 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2212 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2213 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2214 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2215 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2216 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2217 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2218 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2219 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2220 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2221 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2222 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2223 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2224 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2225 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2226 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2227 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2228 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2229 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2230 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2231 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2232 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2233 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2234 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2235 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2236 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2237 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2238 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2239 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2240 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2241 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2242 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2243 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2244 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2245 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2246 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2247 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2248 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2249 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2250 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2251 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2252 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2253 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2254 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2255 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2256 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2257 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2258 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2259 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2260 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2261 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2262 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2263 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2264 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2265 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2266 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2267 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2268 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2269 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2270 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2271 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2272 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2273 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2274 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2275 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2276 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2277 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2278 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2279 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2280 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2281 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2282 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2283 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2284 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2285 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2286 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2287 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2288 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2289 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2290 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2291 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2292 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2293 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2294 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2295 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2296 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2297 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2298 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2299 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2300 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2301 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2302 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2303 VP V_da2_N outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2304 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2305 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2306 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2307 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2308 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2309 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2310 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2311 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2312 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2313 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2314 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2315 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2316 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2317 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2318 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2319 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2320 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2321 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2322 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2323 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2324 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2325 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2326 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2327 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2328 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2329 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2330 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2331 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2332 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2333 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2334 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2335 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2336 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2337 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2338 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2339 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2340 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2341 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2342 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2343 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2344 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2345 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2346 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2347 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2348 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2349 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2350 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2351 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2352 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2353 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2354 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2355 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2356 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2358 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2359 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2360 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2361 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2362 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2363 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2364 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2365 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2366 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2367 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2368 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2369 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2370 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2371 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2372 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2373 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2374 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2375 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2376 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2377 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2378 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2379 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2380 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2381 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2382 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2383 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2384 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2385 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2386 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2387 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2388 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2389 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2390 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2391 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2392 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2393 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2394 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2395 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2396 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2397 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2398 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2399 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2400 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2401 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2402 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2403 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2404 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2405 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2406 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2407 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2408 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2409 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2410 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2411 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2412 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2413 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2414 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2415 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2416 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2417 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2418 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2419 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2420 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2421 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2422 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2423 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2424 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2425 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2426 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2427 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2428 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2429 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2430 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2431 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2432 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2433 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2434 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2435 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2436 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2437 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2438 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2439 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2440 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2441 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2442 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2443 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2444 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2445 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2446 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2447 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2448 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2449 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2450 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2451 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2452 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2453 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2454 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2455 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2456 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2457 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2458 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2459 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2460 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2461 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2462 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2463 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2464 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2465 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2466 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2467 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2468 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2469 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2470 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2471 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2472 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2473 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2474 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2475 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2476 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2477 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2478 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2479 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2480 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2481 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2482 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2483 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2484 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2485 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2486 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2487 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2488 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2489 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2490 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2491 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2492 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2493 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2494 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2495 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2496 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2497 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2498 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2499 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2500 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2501 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2502 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2503 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2504 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2505 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2506 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2507 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2508 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X2509 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2510 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2511 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2512 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2513 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2514 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2515 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2516 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2517 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2518 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2519 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2520 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2521 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2522 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2523 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2524 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2525 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2526 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2527 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2528 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2529 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2530 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2531 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2532 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2533 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2534 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2536 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2537 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2538 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2539 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2540 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2541 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2542 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2543 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2544 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2545 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2546 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2547 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2548 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2549 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2550 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2551 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2552 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2553 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2554 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2555 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2556 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2557 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2558 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2559 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2560 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2561 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2562 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2563 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2564 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2565 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2566 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2567 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2568 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2569 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2570 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2571 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2572 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2573 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2574 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2575 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2576 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2577 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2578 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2579 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2580 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2581 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2582 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2583 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2584 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2585 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2586 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2587 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2588 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2589 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2590 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2591 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2592 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2593 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2594 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2595 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2596 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2597 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2598 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2599 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2600 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2601 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2602 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2603 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2604 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2605 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2606 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2607 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2608 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2609 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2610 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2611 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2612 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2613 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2614 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2615 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2616 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2617 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2618 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2619 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2620 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2621 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2622 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2623 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2624 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2625 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2626 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2627 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2628 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2629 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2630 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2631 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2632 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2633 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2634 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2635 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2636 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2637 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2638 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2639 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2640 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2641 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2642 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2643 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2644 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2645 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2646 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2647 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2648 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2649 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2650 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2651 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2652 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2653 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2654 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2655 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2656 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2657 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2658 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2659 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2660 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2661 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2662 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2663 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2664 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2665 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2666 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2667 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2668 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2669 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2670 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2671 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2672 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2673 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2674 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2675 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2676 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2677 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2678 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2679 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2680 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2681 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2682 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2683 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2684 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2685 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2686 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2687 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2688 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2689 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2690 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2691 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2692 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2693 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2694 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2695 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2696 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2697 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2698 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2699 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2700 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2701 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2702 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2703 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2704 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2705 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2706 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2707 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2708 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2709 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2710 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2711 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2712 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2713 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2714 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2715 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2716 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2717 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2718 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2719 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2720 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2721 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2722 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2723 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2724 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2725 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2726 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2727 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2728 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2729 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2730 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2731 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2732 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2733 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2734 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2735 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2736 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2737 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2738 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2739 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2740 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2741 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2742 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2743 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2744 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2745 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2746 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2747 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2748 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2749 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2750 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2751 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2752 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2753 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2754 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2755 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2756 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2757 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2758 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2759 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2760 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2761 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2762 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2763 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2764 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2765 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2766 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2767 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2768 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2769 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2770 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2771 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2772 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2773 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2774 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2775 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2776 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2777 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2778 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2779 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2780 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2781 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2782 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2783 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2784 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2785 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2786 InputRef outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X2787 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2788 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2789 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2790 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2791 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2792 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2793 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2794 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2795 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2796 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2797 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2798 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2799 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2800 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2801 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2802 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2803 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2804 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2805 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2806 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2807 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2808 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2809 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2810 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2811 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2812 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2813 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2814 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2815 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2816 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2817 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2818 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2819 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2820 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2821 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2822 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2823 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2824 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2825 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2826 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2827 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2828 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2829 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2830 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2831 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2832 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2833 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2834 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2835 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2836 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2837 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2838 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2839 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2840 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2841 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2842 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2843 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2844 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2845 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2846 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2847 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2848 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2849 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2850 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2851 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2852 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2853 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2854 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2855 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2856 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2857 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2858 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2859 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2860 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2861 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2862 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2863 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2864 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2865 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2866 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2867 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2868 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2869 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2870 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2871 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2872 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2873 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2874 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2875 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2876 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2877 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2878 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2879 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2880 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2881 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2882 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2883 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2884 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2885 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2886 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2887 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2888 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2889 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2890 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2891 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2892 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2893 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2894 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2895 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2896 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2897 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2898 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2899 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2900 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2901 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2902 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2903 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2904 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2905 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2906 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2907 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2908 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2909 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2910 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2911 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2912 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2913 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2914 V_da2_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2915 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2916 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2917 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2918 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2919 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2920 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2921 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2922 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2923 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2924 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2925 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2926 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2927 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2928 a_n19882_7120# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2929 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2930 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2931 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2932 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2933 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2934 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2935 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2936 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2937 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2938 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2939 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2940 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2941 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2942 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2943 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2944 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2945 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2946 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2947 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2948 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2949 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2950 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2951 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2952 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2953 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2954 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2955 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2956 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2957 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2958 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2959 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2960 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2961 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2962 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2963 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2964 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2965 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2966 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2967 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2968 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2969 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2970 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2971 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2972 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2973 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2974 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2975 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2976 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2977 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2978 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2979 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2980 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2981 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2982 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2983 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2984 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2985 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2986 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2987 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2988 VP V_da2_N outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2989 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2990 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2991 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2992 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2993 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2994 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2995 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2996 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2997 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2998 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2999 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3000 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3001 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3002 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3003 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3004 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3005 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3006 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3007 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3008 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3009 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3010 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3011 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3012 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3013 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3014 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3015 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3016 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3017 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3018 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3019 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3020 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3021 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3022 V_da1_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X3023 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3024 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3025 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3026 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3027 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3028 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3029 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3030 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3031 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3032 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3033 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3034 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3035 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3036 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3037 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3038 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3039 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3040 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3041 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3042 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3043 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3044 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3045 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3046 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3047 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3048 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3049 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3050 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3051 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3052 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3053 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3054 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3055 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3056 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3057 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3058 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3059 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3060 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3061 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3062 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3063 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3064 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3065 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3066 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3067 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3068 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3069 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3070 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3071 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3072 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3073 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3074 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3075 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3076 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3077 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3078 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3079 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3080 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3081 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3082 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3083 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3084 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3085 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3086 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3087 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3088 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3089 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3090 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3091 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3092 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3093 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3094 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3095 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3096 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3097 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3098 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3099 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3100 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3101 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3102 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3103 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3104 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3105 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3106 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3107 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3108 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3109 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3110 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3111 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3112 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3113 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3114 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3115 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3116 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3117 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3118 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3119 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3120 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3121 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3122 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3123 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3124 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3125 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3126 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3127 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3128 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3129 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3130 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3131 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3132 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3133 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3134 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3135 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3136 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3137 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3138 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3139 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3140 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3141 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3142 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3143 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3144 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3145 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3146 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3147 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3148 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3149 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3150 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3151 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3152 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3153 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3154 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3155 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3156 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3157 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3158 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3159 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3160 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3161 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3162 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3163 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3164 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3165 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3166 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3167 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3168 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3169 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3170 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3171 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3172 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3173 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3174 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3175 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3176 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3177 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3178 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3179 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3180 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3181 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3182 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3183 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3184 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3185 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3186 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3187 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3188 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3189 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3190 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3191 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3192 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3193 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3194 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3195 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3196 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3197 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3198 V_da1_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X3199 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3200 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3201 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3202 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3203 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3204 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3205 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3206 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3207 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3208 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3209 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3210 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3211 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3212 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3213 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3214 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3215 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3216 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3217 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3218 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3219 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3220 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3221 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3222 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3223 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3224 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3225 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3226 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3227 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3228 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3229 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3230 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3231 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3232 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3233 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3234 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3235 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3236 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3237 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3238 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3239 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3240 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3241 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3242 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3243 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3244 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3245 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3246 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3247 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3248 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3249 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3250 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3251 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3252 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3253 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3254 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3255 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3256 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3257 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3258 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3259 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3260 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3261 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3262 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3263 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3264 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3265 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3266 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3267 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3268 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3269 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3270 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3271 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3272 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3273 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3274 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3275 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3276 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3277 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3278 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3279 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3280 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3281 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3282 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3283 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3284 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3285 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3286 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3287 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3288 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3289 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3290 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3291 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3292 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3293 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3294 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3295 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3296 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3297 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3298 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3299 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3300 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3301 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3302 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3303 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3304 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3305 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3306 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3307 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3308 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3309 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3310 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3311 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3312 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3313 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3314 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3315 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3316 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3317 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3318 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3319 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3320 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3321 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3322 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3323 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3324 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3325 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3326 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3327 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3328 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3329 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3330 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3331 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3332 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3333 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3334 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3335 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3336 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3337 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3338 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3339 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3340 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3341 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3342 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3343 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3344 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3345 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3346 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3347 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3348 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3349 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3350 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3351 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3352 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3353 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3354 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3355 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3356 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3358 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3359 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3360 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3361 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3362 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3363 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3364 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3365 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3366 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3367 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3368 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3369 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3370 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3371 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3372 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3373 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3374 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3375 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3376 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3377 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3378 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3379 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3380 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3381 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3382 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3383 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3384 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3385 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3386 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3387 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3388 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3389 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3390 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3391 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3392 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3393 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3394 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3395 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3396 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3397 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3398 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3399 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3400 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3401 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3402 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3403 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3404 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3405 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3406 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3407 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3408 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3409 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3410 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3411 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3412 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3413 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3414 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3415 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3416 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3417 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3418 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3419 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3420 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3421 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3422 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3423 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3424 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3425 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3426 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3427 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3428 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3429 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3430 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3431 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3432 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3433 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3434 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3435 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3436 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3437 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3438 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3439 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3440 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3441 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3442 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3443 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3444 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3445 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3446 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3447 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3448 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3449 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3450 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3451 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3452 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3453 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3454 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3455 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3456 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3457 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3458 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3459 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3460 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3461 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3462 InputRef outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X3463 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3464 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3465 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3466 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3467 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3468 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3469 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3470 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3471 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3472 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3473 VP V_da2_P outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3474 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3475 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3476 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3477 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3478 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3479 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3480 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3481 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3482 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3483 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3484 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3485 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3486 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3487 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3488 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3489 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3490 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3491 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3492 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3493 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3494 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3495 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3496 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3497 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3498 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3499 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3500 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3501 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3502 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3503 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3504 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3505 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3506 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3507 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3508 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3509 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3510 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3511 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3512 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3513 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3514 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3515 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3516 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3517 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3518 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3519 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3520 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3521 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3522 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3523 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3524 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3525 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3526 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3527 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3528 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3529 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3530 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3531 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3532 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3533 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3534 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3536 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3537 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3538 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3539 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3540 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3541 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3542 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3543 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3544 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3545 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3546 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3547 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3548 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3549 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3550 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3551 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3552 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3553 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3554 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3555 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3556 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3557 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3558 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3559 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3560 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3561 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3562 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3563 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3564 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3565 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3566 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3567 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3568 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3569 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3570 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3571 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3572 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3573 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3574 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3575 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3576 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3577 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3578 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3579 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3580 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3581 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3582 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3583 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3584 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3585 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3586 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3587 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3588 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3589 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3590 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3591 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3592 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3593 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3594 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3595 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3596 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3597 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3598 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3599 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3600 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3601 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3602 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3603 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3604 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3605 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3606 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3607 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3608 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3609 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3610 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3611 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3612 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3613 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3614 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3615 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3616 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3617 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3618 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3619 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3620 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3621 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3622 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3623 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3624 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3625 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3626 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3627 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3628 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3629 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3630 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3631 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3632 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3633 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3634 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3635 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3636 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3637 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3638 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3639 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3640 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3641 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3642 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3643 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3644 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3645 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3646 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3647 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3648 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3649 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3650 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3651 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3652 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3653 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3654 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3655 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3656 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3657 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3658 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3659 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3660 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3661 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3662 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3663 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3664 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3665 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3666 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3667 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3668 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3669 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3670 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3671 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3672 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3673 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3674 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3675 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3676 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3677 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3678 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3679 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3680 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3681 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3682 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3683 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3684 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3685 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3686 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3687 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3688 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3689 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3690 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3691 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3692 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3693 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3694 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3695 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3696 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3697 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3698 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3699 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3700 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3701 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3702 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3703 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3704 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3705 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3706 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X3707 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3708 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3709 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3710 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3711 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3712 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3713 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3714 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3715 V_da1_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X3716 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3717 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3718 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3719 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3720 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3721 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3722 V_da1_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X3723 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3724 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3725 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3726 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3727 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3728 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3729 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3730 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3731 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3732 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3733 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3734 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3735 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3736 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3737 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3738 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3739 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3740 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3741 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3742 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3743 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3744 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3745 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3746 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3747 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3748 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3749 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3750 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3751 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3752 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3753 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3754 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3755 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3756 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3757 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3758 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3759 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3760 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3761 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3762 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3763 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3764 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3765 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3766 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3767 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3768 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3769 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3770 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3771 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3772 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3773 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3774 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3775 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3776 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3777 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3778 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3779 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3780 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3781 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3782 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3783 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3784 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3785 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3786 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3787 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3788 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3789 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3790 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3791 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3792 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3793 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3794 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3795 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3796 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3797 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3798 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3799 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3800 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3801 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3802 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3803 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3804 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3805 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3806 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3807 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3808 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3809 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3810 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3811 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3812 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3813 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3814 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3815 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3816 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3817 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3818 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3819 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3820 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3821 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3822 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3823 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3824 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3825 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3826 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3827 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3828 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3829 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3830 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3831 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3832 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3833 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3834 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3835 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3836 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3837 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3838 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3839 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3840 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3841 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3842 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3843 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3844 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3845 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3846 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3847 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3848 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3849 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3850 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3851 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3852 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3853 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3854 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3855 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3856 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3857 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3858 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3859 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3860 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3861 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3862 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3863 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3864 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3865 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3866 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3867 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3868 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3869 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3870 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3871 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3872 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3873 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3874 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3875 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3876 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3877 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3878 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3879 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3880 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3881 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3882 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3883 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3884 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3885 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3886 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3887 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3888 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3889 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3890 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3891 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3892 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3893 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3894 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3895 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3896 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3897 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3898 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3899 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3900 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3901 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3902 VP V_da2_P outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3903 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3904 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3905 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3906 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3907 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3908 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3909 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3910 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3911 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3912 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3913 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3914 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3915 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3916 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3917 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3918 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3919 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3920 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3921 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3922 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3923 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3924 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3925 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3926 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3927 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3928 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3929 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3930 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3931 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3932 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3933 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3934 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3935 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3936 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3937 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3938 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3939 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3940 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3941 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3942 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3943 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3944 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3945 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3946 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3947 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3948 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3949 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3950 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3951 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3952 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3953 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3954 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3955 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3956 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3957 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3958 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3959 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3960 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3961 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3962 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3963 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3964 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3965 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3966 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3967 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3968 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3969 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3970 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19882_7120# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3971 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3972 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3973 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X3974 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3975 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3976 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3977 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3978 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3979 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3980 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3981 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3982 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3983 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3984 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3985 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3986 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3987 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3988 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3989 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3990 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3991 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3992 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3993 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3994 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3995 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3996 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3997 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3998 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3999 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4000 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4001 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4002 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4003 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4004 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4005 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4006 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4007 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4008 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4009 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4010 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4011 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4012 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4013 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4014 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4015 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4016 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4017 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4018 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4019 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4020 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4021 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4022 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4023 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4024 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4025 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4026 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4027 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4028 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4029 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4030 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4031 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4032 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4033 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4034 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4035 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4036 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4037 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4038 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4039 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4040 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4041 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4042 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4043 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4044 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4045 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4046 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4047 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4048 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4049 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4050 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4051 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4052 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4053 V_da2_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4054 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4055 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4056 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4057 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4058 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4059 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4060 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4061 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4062 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4063 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4064 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4065 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4066 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4067 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4068 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4069 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4070 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4071 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4072 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4073 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4074 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4075 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4076 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4077 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4078 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4079 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4080 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4081 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4082 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4083 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4084 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4085 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4086 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4087 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4088 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4089 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4090 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4091 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4092 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4093 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4094 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4095 VP V_da2_N outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4096 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4097 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4098 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4099 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4100 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4101 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4102 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4103 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4104 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4105 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4106 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4107 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4108 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4109 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4110 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4111 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4112 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4113 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4114 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4115 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4116 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4117 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4118 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4119 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4120 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4121 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4122 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4123 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4124 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4125 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4126 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4127 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4128 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4129 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4130 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4131 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4132 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4133 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4134 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4135 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4136 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4137 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4138 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4139 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4140 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4141 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4142 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4143 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4144 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4145 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4146 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4147 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4148 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4149 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4150 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4151 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4152 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4153 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4154 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4155 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4156 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4157 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4158 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4159 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4160 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4161 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4162 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4163 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4164 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4165 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4166 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4167 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4168 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4169 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4170 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4171 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4172 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4173 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4174 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4175 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4176 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4177 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4178 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4179 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4180 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4181 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4182 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4183 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4184 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4185 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4186 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4187 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4188 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4189 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4190 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4191 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4192 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4193 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4194 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4195 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4196 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4197 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4198 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4199 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4200 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4201 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4202 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4203 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4204 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4205 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4206 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4207 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4208 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4209 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4210 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4211 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4212 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4213 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X4214 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4215 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4216 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4217 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4218 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4219 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4220 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4221 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4222 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4223 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4224 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4225 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4226 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4227 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4228 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4229 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4230 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4231 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4232 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4233 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4234 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4235 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4236 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4237 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4238 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4239 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4240 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4241 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4242 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4243 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4244 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4245 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4246 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4247 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4248 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4249 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4250 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4251 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4252 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4253 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4254 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4255 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4256 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4257 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4258 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4259 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4260 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4261 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4262 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4263 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4264 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4265 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4266 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4267 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4268 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4269 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4270 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4271 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4272 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4273 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4274 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4275 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4276 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4277 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4278 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4279 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4280 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4281 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4282 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4283 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4284 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4285 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4286 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4287 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4288 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4289 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4290 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4291 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4292 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4293 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4294 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4295 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4296 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4297 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4298 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4299 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4300 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4301 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4302 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4303 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4304 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4305 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4306 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4307 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4308 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4309 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4310 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4311 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4312 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4313 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4314 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4315 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4316 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4317 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4318 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4319 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4320 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4321 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4322 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4323 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4324 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4325 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4326 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4327 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4328 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4329 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4330 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4331 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4332 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4333 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4334 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4335 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4336 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4337 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4338 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4339 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4340 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4341 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4342 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4343 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4344 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4345 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4346 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4347 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4348 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4349 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4350 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4351 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4352 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4353 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4354 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4355 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4356 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4358 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4359 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4360 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4361 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4362 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4363 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4364 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4365 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4366 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4367 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4368 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4369 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4370 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4371 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4372 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4373 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4374 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4375 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4376 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4377 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4378 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4379 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4380 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4381 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4382 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4383 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4384 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4385 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4386 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4387 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4388 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4389 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4390 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4391 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4392 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4393 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4394 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4395 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4396 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4397 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4398 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4399 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4400 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4401 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4402 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4403 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4404 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4405 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4406 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4407 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4408 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4409 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4410 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4411 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4412 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4413 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4414 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4415 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4416 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4417 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4418 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4419 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4420 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4421 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4422 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4423 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4424 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4425 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4426 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4427 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4428 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4429 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4430 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4431 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4432 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4433 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4434 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4435 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4436 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4437 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4438 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4439 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4440 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4441 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4442 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4443 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4444 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4445 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4446 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4447 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4448 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4449 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4450 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4451 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4452 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4453 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4454 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4455 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4456 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4457 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4458 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4459 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4460 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4461 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4462 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4463 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4464 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4465 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4466 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4467 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4468 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4469 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4470 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4471 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4472 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4473 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4474 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4475 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4476 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4477 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4478 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4479 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4480 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4481 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4482 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4483 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4484 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4485 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4486 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4487 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4488 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4489 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4490 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4491 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4492 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4493 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4494 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4495 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4496 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4497 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4498 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4499 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4500 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4501 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4502 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4503 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4504 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4505 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4506 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4507 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4508 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4509 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4510 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4511 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4512 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4513 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4514 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4515 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4516 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4517 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4518 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4519 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4520 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4521 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4522 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4523 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4524 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4525 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4526 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4527 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4528 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4529 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4530 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4531 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4532 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4533 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4534 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4536 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4537 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4538 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4539 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4540 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4541 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4542 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4543 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4544 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4545 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4546 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4547 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4548 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4549 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4550 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4551 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4552 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4553 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4554 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4555 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4556 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4557 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4558 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4559 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4560 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4561 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4562 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4563 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4564 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4565 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4566 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4567 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4568 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4569 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4570 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4571 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4572 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4573 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4574 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4575 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4576 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4577 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4578 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4579 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4580 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4581 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4582 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4583 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4584 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4585 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4586 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4587 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4588 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4589 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4590 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4591 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4592 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4593 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4594 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4595 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4596 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4597 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4598 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4599 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4600 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4601 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4602 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4603 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4604 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4605 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4606 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4607 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4608 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4609 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4610 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4611 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4612 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4613 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4614 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4615 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4616 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4617 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4618 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4619 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4620 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4621 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4622 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4623 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4624 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4625 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4626 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4627 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4628 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4629 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4630 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4631 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4632 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4633 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4634 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4635 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4636 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4637 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X4638 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4639 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4640 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4641 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4642 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4643 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4644 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4645 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4646 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4647 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4648 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4649 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4650 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4651 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4652 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4653 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4654 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4655 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4656 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4657 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4658 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4659 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4660 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4661 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4662 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4663 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4664 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4665 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4666 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4667 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4668 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4669 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4670 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4671 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4672 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4673 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4674 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4675 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4676 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4677 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4678 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4679 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4680 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4681 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4682 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4683 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4684 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4685 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4686 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4687 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4688 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4689 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4690 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4691 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4692 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4693 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4694 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4695 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4696 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4697 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4698 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4699 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4700 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4701 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4702 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4703 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4704 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4705 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4706 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4707 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4708 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4709 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4710 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4711 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4712 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4713 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4714 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4715 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4716 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4717 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4718 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4719 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4720 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4721 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4722 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4723 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4724 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4725 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4726 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4727 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4728 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4729 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4730 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4731 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4732 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4733 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4734 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4735 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4736 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4737 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4738 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4739 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4740 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4741 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4742 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4743 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4744 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4745 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4746 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4747 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4748 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4749 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4750 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4751 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4752 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4753 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4754 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4755 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4756 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4757 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4758 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4759 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4760 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4761 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4762 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4763 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4764 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4765 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4766 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4767 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4768 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4769 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4770 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4771 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4772 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4773 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4774 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4775 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4776 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4777 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4778 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4779 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4780 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4781 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4782 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4783 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4784 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4785 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4786 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4787 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4788 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4789 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4790 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4791 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4792 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4793 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4794 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4795 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4796 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4797 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4798 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4799 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4800 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4801 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4802 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4803 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4804 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4805 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4806 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4807 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4808 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4809 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4810 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4811 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4812 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4813 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4814 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4815 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4816 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4817 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4818 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4819 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4820 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4821 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4822 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4823 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4824 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4825 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4826 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4827 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4828 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4829 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4830 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4831 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4832 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4833 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4834 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4835 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4836 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4837 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4838 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4839 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4840 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4841 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4842 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4843 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4844 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4845 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4846 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4847 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4848 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4849 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4850 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4851 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4852 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4853 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4854 I_Bias I_Bias a_n19882_7120# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4855 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4856 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4857 outd_stage3_0/outd_stage2_0/VN I_Bias sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X4858 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4859 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4860 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4861 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4862 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4863 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4864 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4865 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4866 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4867 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4868 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4869 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4870 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4871 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4872 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4873 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4874 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4875 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4876 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4877 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4878 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4879 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4880 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4881 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4882 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4883 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4884 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4885 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4886 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4887 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4888 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4889 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4890 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4891 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4892 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4893 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4894 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4895 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4896 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4897 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4898 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4899 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4900 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4901 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4902 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4903 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4904 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4905 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4906 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4907 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4908 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4909 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4910 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X4911 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4912 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4913 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4914 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4915 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4916 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4917 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4918 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4919 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4920 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4921 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4922 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4923 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4924 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4925 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4926 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4927 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4928 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4929 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4930 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4931 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4932 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4933 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4934 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4935 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4936 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4937 outd_stage3_0/outd_stage2_0/VN I_Bias sky130_fd_pr__cap_mim_m3_1 l=2e+07u w=2e+07u
+X4938 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4939 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4940 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4941 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4942 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4943 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4944 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4945 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4946 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4947 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4948 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4949 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4950 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4951 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4952 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4953 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4954 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4955 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4956 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4957 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4958 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4959 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4960 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4961 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4962 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4963 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4964 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4965 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4966 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4967 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4968 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4969 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4970 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4971 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4972 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4973 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4974 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4975 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4976 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4977 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4978 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4979 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4980 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4981 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4982 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4983 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4984 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4985 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4986 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4987 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4988 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4989 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4990 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4991 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4992 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4993 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4994 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4995 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4996 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4997 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4998 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4999 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5000 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5001 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5002 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5003 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5004 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5005 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5006 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5007 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5008 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5009 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5010 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5011 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5012 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5013 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5014 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5015 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5016 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5017 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5018 V_da2_P VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5019 outd_stage1_0/isource_out InputRef V_da1_N outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5020 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5021 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5022 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5023 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5024 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5025 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5026 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5027 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5028 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5029 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5030 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5031 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5032 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5033 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5034 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5035 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5036 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5037 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5038 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5039 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5040 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5041 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5042 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5043 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5044 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5045 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5046 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5047 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5048 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5049 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5050 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5051 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5052 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5053 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5054 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5055 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5056 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5057 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5058 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5059 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5060 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X5061 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5062 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5063 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5064 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5065 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5066 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5067 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5068 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5069 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5070 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5071 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5072 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5073 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5074 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5075 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5076 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5077 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5078 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5079 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5080 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5081 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5082 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5083 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5084 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5085 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5086 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5087 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5088 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5089 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5090 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5091 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5092 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5093 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5094 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5095 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5096 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5097 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5098 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5099 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5100 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5101 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5102 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5103 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5104 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5105 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5106 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5107 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5108 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5109 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5110 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5111 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5112 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5113 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5114 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5115 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5116 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5117 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5118 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5119 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5120 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5121 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5122 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5123 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5124 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5125 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5126 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5127 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5128 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5129 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5130 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5131 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5132 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5133 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5134 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5135 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5136 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5137 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5138 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5139 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5140 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5141 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5142 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5143 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5144 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5145 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5146 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5147 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5148 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5149 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5150 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5151 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5152 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5153 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5154 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5155 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5156 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5157 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5158 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5159 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5160 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5161 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5162 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5163 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5164 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5165 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5166 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5167 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5168 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5169 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5170 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5171 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5172 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5173 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5174 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5175 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5176 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5177 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5178 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5179 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5180 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5181 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5182 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5183 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5184 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5185 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5186 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5187 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5188 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5189 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5190 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5191 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5192 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5193 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5194 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5195 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5196 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5197 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5198 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5199 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5200 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5201 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5202 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5203 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5204 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5205 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5206 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5207 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5208 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5209 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5210 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5211 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5212 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5213 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5214 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5215 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5216 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5217 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5218 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5219 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5220 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5221 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5222 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5223 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5224 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5225 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5226 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5227 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5228 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5229 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5230 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5231 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5232 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5233 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5234 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5235 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5236 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5237 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5238 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5239 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5240 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5241 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5242 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5243 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5244 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5245 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5246 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5247 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5248 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5249 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5250 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5251 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5252 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5253 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5254 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5255 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5256 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5257 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5258 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5259 outd_stage3_0/outd_stage2_0/VN VP sky130_fd_pr__cap_mim_m3_2 l=3e+07u w=3e+07u
+X5260 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5261 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5262 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5263 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5264 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5265 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5266 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5267 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5268 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5269 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5270 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5271 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5272 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5273 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5274 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5275 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5276 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5277 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5278 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5279 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5280 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5281 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5282 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5283 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5284 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5285 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5286 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5287 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5288 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5289 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5290 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5291 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5292 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5293 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5294 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5295 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5296 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5297 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5298 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5299 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5300 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5301 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5302 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5303 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5304 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5305 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5306 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5307 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5308 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5309 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5310 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5311 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5312 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5313 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5314 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5315 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5316 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5317 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5318 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5319 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5320 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5321 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5322 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5323 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5324 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5325 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5326 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5327 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5328 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5329 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5330 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5331 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5332 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5333 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5334 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5335 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5336 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5337 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5338 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5339 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5340 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5341 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5342 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5343 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5344 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5345 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5346 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5347 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5348 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5349 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5350 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5351 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5352 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5353 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5354 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5355 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5356 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5357 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5358 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5359 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5360 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5361 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5362 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5363 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5364 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5365 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5366 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5367 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5368 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5369 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5370 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5371 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5372 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5373 a_n19882_7120# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5374 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5375 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5376 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5377 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5378 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5379 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5380 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5381 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5382 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5383 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5384 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5385 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5386 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5387 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5388 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5389 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5390 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5391 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5392 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5393 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5394 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5395 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5396 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5397 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5398 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5399 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5400 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5401 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5402 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5403 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5404 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5405 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5406 OutputN VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5407 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5408 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5409 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5410 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5411 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5412 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5413 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5414 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5415 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5416 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5417 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5418 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5419 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5420 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5421 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5422 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5423 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5424 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5425 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5426 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5427 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5428 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5429 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5430 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5431 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5432 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5433 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5434 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5435 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5436 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5437 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5438 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5439 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5440 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5441 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5442 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5443 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5444 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5445 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5446 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5447 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5448 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5449 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5450 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5451 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5452 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5453 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5454 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5455 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5456 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5457 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5458 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5459 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5460 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5461 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5462 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5463 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5464 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5465 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5466 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5467 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5468 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5469 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5470 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5471 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5472 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5473 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5474 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5475 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5476 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5477 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5478 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5479 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5480 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5481 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5482 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5483 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5484 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5485 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5486 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5487 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5488 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5489 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5490 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5491 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5492 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5493 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5494 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5495 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5496 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5497 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5498 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5499 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5500 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5501 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5502 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5503 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5504 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5505 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5506 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5507 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5508 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5509 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5510 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5511 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5512 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5513 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5514 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5515 V_da1_N InputRef outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5516 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5517 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5518 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5519 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5520 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5521 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5522 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5523 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5524 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5525 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5526 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5527 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5528 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5529 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5530 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5531 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5532 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5533 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5534 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5535 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5536 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5537 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5538 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5539 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5540 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5541 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5542 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5543 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5544 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5545 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5546 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5547 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5548 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5549 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5550 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5551 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5552 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5553 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5554 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5555 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5556 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5557 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5558 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5559 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5560 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5561 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5562 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5563 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5564 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5565 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5566 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5567 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5568 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5569 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5570 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5571 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5572 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5573 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5574 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5575 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5576 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5577 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5578 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5579 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5580 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5581 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5582 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5583 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5584 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5585 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5586 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5587 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5588 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5589 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5590 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5591 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5592 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5593 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5594 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5595 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5596 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5597 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5598 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5599 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5600 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5601 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5602 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5603 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5604 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5605 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5606 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5607 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5608 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5609 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5610 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5611 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5612 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5613 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5614 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5615 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5616 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5617 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5618 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5619 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5620 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5621 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5622 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5623 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5624 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5625 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5626 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5627 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5628 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5629 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5630 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5631 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5632 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5633 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5634 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5635 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5636 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5637 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5638 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5639 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5640 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5641 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5642 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5643 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5644 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5645 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5646 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5647 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5648 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5649 V_da2_N VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5650 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5651 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5652 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5653 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5654 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5655 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5656 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5657 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5658 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5659 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5660 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5661 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5662 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5663 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5664 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5665 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5666 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5667 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5668 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5669 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5670 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5671 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5672 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5673 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5674 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5675 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5676 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5677 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5678 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5679 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5680 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5681 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5682 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5683 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5684 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5685 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5686 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5687 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5688 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5689 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5690 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5691 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5692 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5693 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5694 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5695 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5696 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5697 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5698 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5699 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5700 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5701 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5702 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5703 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5704 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5705 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5706 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5707 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5708 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5709 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5710 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5711 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5712 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5713 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5714 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5715 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5716 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5717 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5718 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5719 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5720 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5721 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5722 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5723 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5724 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5725 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5726 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5727 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5728 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5729 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5730 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5731 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5732 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5733 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5734 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5735 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5736 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5737 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5738 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5739 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5740 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5741 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5742 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5743 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5744 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5745 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5746 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5747 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5748 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5749 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5750 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5751 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5752 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5753 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5754 VP V_da2_P outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5755 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5756 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5757 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5758 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5759 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5760 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5761 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5762 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5763 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5764 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5765 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5766 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5767 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5768 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5769 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5770 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5771 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5772 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5773 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5774 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5775 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5776 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5777 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5778 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5779 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5780 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5781 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5782 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5783 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5784 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5785 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5786 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5787 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5788 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5789 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5790 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5791 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5792 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5793 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5794 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5795 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5796 V_da2_N V_da1_N outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5797 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5798 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5799 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5800 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5801 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5802 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5803 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5804 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5805 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5806 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5807 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5808 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5809 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5810 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5811 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5812 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5813 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5814 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5815 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5816 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5817 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5818 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5819 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5820 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5821 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5822 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5823 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5824 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5825 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5826 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5827 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5828 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5829 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5830 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5831 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5832 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5833 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5834 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5835 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5836 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5837 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5838 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5839 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5840 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5841 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5842 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5843 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5844 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5845 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5846 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5847 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5848 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5849 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5850 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5851 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5852 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5853 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5854 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5855 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5856 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5857 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5858 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5859 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5860 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5861 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5862 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5863 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5864 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5865 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5866 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5867 VP OutputN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5868 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5869 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5870 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5871 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5872 a_n19260_7126# I_Bias outd_stage1_0/isource_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5873 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5874 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5875 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5876 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5877 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5878 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5879 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5880 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5881 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5882 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5883 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5884 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5885 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5886 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5887 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5888 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5889 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5890 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5891 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5892 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5893 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5894 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5895 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5896 V_da2_P V_da1_P outd_stage2_0/cmirror_out outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5897 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5898 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5899 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5900 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5901 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5902 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5903 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5904 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5905 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5906 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5907 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5908 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5909 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5910 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5911 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5912 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5913 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5914 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5915 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5916 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5917 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5918 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5919 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5920 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5921 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5922 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5923 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5924 V_da1_P InputSignal outd_stage1_0/isource_out outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5925 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5926 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5927 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5928 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5929 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5930 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5931 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5932 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5933 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5934 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5935 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5936 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5937 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5938 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5939 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5940 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5941 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5942 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5943 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5944 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5945 VP OutputP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5946 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5947 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5948 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5949 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5950 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5951 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5952 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5953 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5954 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5955 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5956 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5957 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5958 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5959 OutputN V_da2_N outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5960 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5961 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5962 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5963 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5964 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5965 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5966 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5967 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5968 outd_stage1_0/isource_out InputSignal V_da1_P outd_stage1_0/isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5969 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5970 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5971 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5972 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5973 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5974 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5975 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5976 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5977 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5978 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_N OutputN outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5979 outd_stage3_0/outd_stage2_0/cmirror_out V_da2_P OutputP outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5980 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5981 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5982 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5983 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5984 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5985 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5986 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5987 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5988 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5989 OutputP V_da2_P outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5990 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5991 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5992 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5993 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5994 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5995 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X5996 outd_stage2_0/cmirror_out V_da1_P V_da2_P outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5997 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5998 a_n14090_6326# I_Bias outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5999 outd_stage3_0/outd_stage2_0/VN I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6000 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6001 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6002 OutputP VP outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X6003 outd_stage1_0/isource_out I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6004 a_n14090_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6005 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6006 a_n19260_7126# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6007 outd_stage2_0/cmirror_out I_Bias a_n14090_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6008 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6009 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/cmirror_out outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6010 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6011 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6012 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6013 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6014 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6015 outd_stage2_0/cmirror_out V_da1_N V_da2_N outd_stage2_0/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6016 outd_stage3_0/outd_stage2_0/VN I_Bias a_n19260_7126# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6017 a_230_6326# I_Bias outd_stage3_0/outd_stage2_0/VN outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6018 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6019 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X6020 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6021 outd_stage3_0/outd_stage2_0/cmirror_out I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6022 outd_stage3_0/outd_stage2_0/VN I_Bias a_230_6326# outd_stage3_0/outd_stage2_0/VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
diff --git a/mag/outd/outd_stage1.ext b/mag/outd/outd_stage1.ext
new file mode 100644
index 0000000..6d77eda
--- /dev/null
+++ b/mag/outd/outd_stage1.ext
@@ -0,0 +1,275 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__res_high_po_2p85_8GE2XM sky130_fd_pr__res_high_po_2p85_8GE2XM_1 1 0 3358 0 1 11208
+use sky130_fd_pr__res_high_po_2p85_8GE2XM sky130_fd_pr__res_high_po_2p85_8GE2XM_0 1 0 18 0 1 11208
+use outd_diffamp outd_diffamp_0 1 0 300 0 1 320
+use outd_cmirror_64t outd_cmirror_64t_0 1 0 -10 0 1 76
+node "m1_1860_8350#" 11 501.837 1860 8350 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 464600 9460 725400 11420 0 0 0 0 0 0 0 0
+node "m1_260_8900#" 11 482.73 260 8900 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 464600 9460 702000 11060 0 0 0 0 0 0 0 0
+node "m1_1830_10170#" 4 3332.46 1830 10170 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1372500 7000 1747300 11680 1195350 5450 1840000 10000 0 0 0 0
+node "m1_n1500_10180#" 4 3478.18 -1500 10180 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1337600 6960 1717800 11660 1195350 5450 1840000 10000 0 0 0 0
+node "VN" 449 13254.2 930 -280 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5392800 28240 100368 2172 403200 2760 3381300 8800 0 0 0 0 0 0
+node "isource_out" 138 170.825 1620 8290 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 176800 2980 84408 1428 767200 10060 1537400 5280 0 0 0 0 0 0
+node "li_n520_7520#" 179 1535.24 -520 7520 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 589900 6160 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_1630_10090#" 273 1207.12 1630 10090 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 255100 4880 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_276_8226#" 8333 0 276 8226 pw 4193184 8612 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "dw_70_8020#" 52500 26034.3 70 8020 dnw 0 0 6137000 10260 2790216 19512 0 0 762792 20616 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750300 20720 3247468 17640 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "dw_70_8020#" "w_276_8226#" 12579.6
+cap "li_n520_7520#" "m1_1860_8350#" 118.887
+cap "w_276_8226#" "isource_out" 2077.29
+cap "dw_70_8020#" "m1_1860_8350#" 1326.07
+cap "w_276_8226#" "m1_1830_10170#" 705.541
+cap "isource_out" "m1_1860_8350#" 1344.44
+cap "m1_1830_10170#" "m1_1860_8350#" 726.931
+cap "dw_70_8020#" "m1_n1500_10180#" 1100.73
+cap "m1_n1500_10180#" "isource_out" 2171.39
+cap "m1_n1500_10180#" "m1_1830_10170#" 3481.09
+cap "dw_70_8020#" "VN" 436.617
+cap "w_276_8226#" "m1_1860_8350#" 1677.41
+cap "li_n520_7520#" "m1_260_8900#" 115.349
+cap "dw_70_8020#" "m1_260_8900#" 595.601
+cap "isource_out" "m1_260_8900#" 411.349
+cap "w_276_8226#" "m1_n1500_10180#" 783.18
+cap "m1_1830_10170#" "m1_260_8900#" 737.236
+cap "m1_n1500_10180#" "m1_1860_8350#" 313.357
+cap "dw_70_8020#" "li_n520_7520#" 168
+cap "w_276_8226#" "m1_260_8900#" 1941.23
+cap "m1_260_8900#" "m1_1860_8350#" 55.1831
+cap "dw_70_8020#" "isource_out" 302.759
+cap "m1_n1500_10180#" "VN" 100.146
+cap "dw_70_8020#" "m1_1830_10170#" 828.076
+cap "dw_70_8020#" "li_1630_10090#" 1528.3
+cap "isource_out" "m1_1830_10170#" 2192.13
+cap "m1_n1500_10180#" "m1_260_8900#" 1914.93
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 55.315
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -607.534
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -800.099
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 108.29
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -736.488
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -1.93769
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" 1.13406
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -13.4155
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" -483.061
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 416.5
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1235_n2451#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -737.8
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n445_n2451#" 416.5
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -461.125
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" 416.5
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" -368.9
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n33_n1127#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 6.01101
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 133.958
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -9.17521
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -13.3734
+cap "outd_diffamp_0/m1_130_8140#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 12.3598
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -0.0658606
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" 0.969149
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_n58#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 1.69697
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 12.5872
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" 0.987552
+cap "outd_diffamp_0/m1_226_8758#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" 0.435556
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 460.746
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 0.790088
+cap "m1_1860_8350#" "dw_70_8020#" -82.2267
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -49.6652
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_diffamp_0/a_182_9180#" 583.042
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "dw_70_8020#" 147.824
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" -50.3885
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 41.4504
+cap "m1_1860_8350#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 1.20308
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "dw_70_8020#" 490
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 331.083
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -2.6279
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -1.3325
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n509#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 12.1545
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_182_9180#" 155.413
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/a_182_9180#" 60.1664
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" -4074.36
+cap "m1_1860_8350#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 95.2534
+cap "dw_70_8020#" "outd_diffamp_0/a_182_9180#" -0.348963
+cap "dw_70_8020#" "outd_diffamp_0/a_1560_9180#" -93.2061
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -7.75739
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" 1.1808
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 293.631
+cap "dw_70_8020#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 313.069
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "outd_diffamp_0/a_182_9180#" 44.2398
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/a_182_9180#" 26.0553
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 42.1952
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 3.68247
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_182_9180#" -704.99
+cap "dw_70_8020#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 106.666
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" 779.708
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" -43.2766
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -1.47753
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -11.4406
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 442.769
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -0.930831
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" 0.595077
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_802_8758#" -247.548
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 533.115
+cap "outd_diffamp_0/m1_802_8758#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 214.898
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "m1_260_8900#" 1.06636
+cap "dw_70_8020#" "outd_diffamp_0/a_1560_9180#" 6.44925
+cap "dw_70_8020#" "outd_diffamp_0/m1_802_8758#" 127.711
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -15.3334
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 4.41138
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/a_1560_9180#" -1.64
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_182_9180#" 168.702
+cap "outd_diffamp_0/a_182_9180#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_2306#" 0.843236
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -2.57712
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "m1_1860_8350#" 0.944275
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 364.651
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 49.0919
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 231.72
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 175.266
+cap "outd_diffamp_0/a_182_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -2.69859
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_diffamp_0/a_182_9180#" 593.171
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_1560_9180#" -3712.01
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -89.4777
+cap "outd_diffamp_0/a_182_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -0.614172
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_2306#" 1.84434
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "outd_diffamp_0/a_182_9180#" 26.5856
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/a_1560_9180#" -11.5312
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -26.6065
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_182_9180#" -43.5556
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -76.5696
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -654.405
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -365.549
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 146.172
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 363.641
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 407.105
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -155.159
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" 234.713
+cap "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/a_1560_9180#" 174.951
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_802_8758#" -661.093
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/a_1560_9180#" -116.823
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" "outd_diffamp_0/m1_802_8758#" 5.26749
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "outd_diffamp_0/m1_802_8758#" 137.83
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/m1_802_8758#" 41.1415
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" -30.0844
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" 0.631081
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -57.3208
+cap "outd_diffamp_0/m1_802_8758#" "m1_260_8900#" 357.311
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" "m1_260_8900#" -0.801688
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "m1_260_8900#" -0.199567
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" 260.465
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -43.5813
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -1.14537
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" -11.5936
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 13.7249
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 8.82276
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -14.7056
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" 12.0333
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -9.66265
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -13.4072
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_diffamp_0/a_182_9180#" -21.6981
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -5.82791
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 0.219121
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/a_1560_9180#" -17.1863
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "outd_diffamp_0/a_182_9180#" -9.35137
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -8.50488
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" -885.52
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" -72.1178
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" 0.219121
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/a_1560_9180#" -13.8632
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -15.3398
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 12.9846
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" 33.9375
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" -10.1158
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" 13.2341
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -14.7056
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" -13.4072
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 18.1499
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" -5.82791
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" -72.2944
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -8.48519
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" 19.6065
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" -15.3398
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" 13.2341
+cap "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" -10.1158
+merge "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/a_182_8562#" -3566.37 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4696096 -8576 -410400 -1170 0 0 0 0 0 0 0 0
+merge "outd_diffamp_0/a_182_8562#" "outd_diffamp_0/a_182_8670#"
+merge "outd_diffamp_0/a_182_8670#" "m1_260_8900#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1642_n1162#" "li_1630_10090#" -9022.21 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4045676 -31352 0 0 -234080 -2168 -226060 -2518 0 0 0 0 0 0
+merge "li_1630_10090#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1642_n1162#" "outd_cmirror_64t_0/VSUBS"
+merge "outd_cmirror_64t_0/VSUBS" "VSUBS"
+merge "VSUBS" "outd_cmirror_64t_0/li_0_0#"
+merge "outd_cmirror_64t_0/li_0_0#" "li_n520_7520#"
+merge "li_n520_7520#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#"
+merge "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "VN"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_600#" -26845.7 0 0 252000 0 -533900 0 0 0 -3861220 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3864831 0 -35063100 -15536 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_600#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_600#" "dw_70_8020#"
+merge "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "outd_diffamp_0/m1_2468_8380#" 144372 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11686384 -5584 0 0 307733952 -10264 -1832160 -1492 0 0 0 0 0 0
+merge "outd_diffamp_0/m1_2468_8380#" "outd_diffamp_0/m1_2468_8758#"
+merge "outd_diffamp_0/m1_2468_8758#" "outd_diffamp_0/m1_2276_8380#"
+merge "outd_diffamp_0/m1_2276_8380#" "outd_diffamp_0/m1_2084_8380#"
+merge "outd_diffamp_0/m1_2084_8380#" "outd_diffamp_0/m1_1892_8380#"
+merge "outd_diffamp_0/m1_1892_8380#" "outd_diffamp_0/m1_1700_8380#"
+merge "outd_diffamp_0/m1_1700_8380#" "outd_diffamp_0/m1_1508_8380#"
+merge "outd_diffamp_0/m1_1508_8380#" "outd_diffamp_0/m1_1186_8380#"
+merge "outd_diffamp_0/m1_1186_8380#" "outd_diffamp_0/m1_2276_8758#"
+merge "outd_diffamp_0/m1_2276_8758#" "outd_diffamp_0/m1_2084_8758#"
+merge "outd_diffamp_0/m1_2084_8758#" "outd_diffamp_0/m1_1892_8758#"
+merge "outd_diffamp_0/m1_1892_8758#" "outd_diffamp_0/m1_1700_8758#"
+merge "outd_diffamp_0/m1_1700_8758#" "outd_diffamp_0/m1_1508_8758#"
+merge "outd_diffamp_0/m1_1508_8758#" "outd_diffamp_0/m1_1186_8758#"
+merge "outd_diffamp_0/m1_1186_8758#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#"
+merge "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "w_276_8226#"
+merge "w_276_8226#" "outd_cmirror_64t_0/m1_130_5370#"
+merge "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/m1_994_8380#"
+merge "outd_diffamp_0/m1_994_8380#" "outd_diffamp_0/m1_802_8380#"
+merge "outd_diffamp_0/m1_802_8380#" "outd_diffamp_0/m1_610_8380#"
+merge "outd_diffamp_0/m1_610_8380#" "outd_diffamp_0/m1_418_8380#"
+merge "outd_diffamp_0/m1_418_8380#" "outd_diffamp_0/m1_226_8380#"
+merge "outd_diffamp_0/m1_226_8380#" "outd_diffamp_0/m1_994_8758#"
+merge "outd_diffamp_0/m1_994_8758#" "outd_diffamp_0/m1_802_8758#"
+merge "outd_diffamp_0/m1_802_8758#" "outd_diffamp_0/m1_610_8758#"
+merge "outd_diffamp_0/m1_610_8758#" "outd_diffamp_0/m1_418_8758#"
+merge "outd_diffamp_0/m1_418_8758#" "outd_diffamp_0/m1_226_8758#"
+merge "outd_diffamp_0/m1_226_8758#" "isource_out"
+merge "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_1560_8562#" -7530.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9157396 -8576 -3475500 -5630 0 0 0 0 0 0 0 0
+merge "outd_diffamp_0/a_1560_8562#" "outd_diffamp_0/a_1560_8670#"
+merge "outd_diffamp_0/a_1560_8670#" "m1_1860_8350#"
+merge "outd_diffamp_0/m1_1090_8998#" "outd_diffamp_0/m1_898_8998#" 9874.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -26017028 -7768 65973696 -5120 0 0 660000 -2600 0 0 0 0
+merge "outd_diffamp_0/m1_898_8998#" "outd_diffamp_0/m1_706_8998#"
+merge "outd_diffamp_0/m1_706_8998#" "outd_diffamp_0/m1_514_8998#"
+merge "outd_diffamp_0/m1_514_8998#" "outd_diffamp_0/m1_322_8998#"
+merge "outd_diffamp_0/m1_322_8998#" "outd_diffamp_0/m1_130_8998#"
+merge "outd_diffamp_0/m1_130_8998#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_942_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_124_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n694_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_0/a_n1512_n1032#" "outd_diffamp_0/m1_1090_8140#"
+merge "outd_diffamp_0/m1_1090_8140#" "outd_diffamp_0/m1_898_8140#"
+merge "outd_diffamp_0/m1_898_8140#" "outd_diffamp_0/m1_706_8140#"
+merge "outd_diffamp_0/m1_706_8140#" "outd_diffamp_0/m1_514_8140#"
+merge "outd_diffamp_0/m1_514_8140#" "outd_diffamp_0/m1_322_8140#"
+merge "outd_diffamp_0/m1_322_8140#" "outd_diffamp_0/m1_130_8140#"
+merge "outd_diffamp_0/m1_130_8140#" "m1_n1500_10180#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_942_n1032#" "outd_diffamp_0/m1_2564_8998#" 20819.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -34012132 -7768 101850640 -5104 0 0 -1400000 0 0 0 0 0
+merge "outd_diffamp_0/m1_2564_8998#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_124_n1032#" "outd_diffamp_0/m1_2372_8998#"
+merge "outd_diffamp_0/m1_2372_8998#" "outd_diffamp_0/m1_2180_8998#"
+merge "outd_diffamp_0/m1_2180_8998#" "outd_diffamp_0/m1_1988_8998#"
+merge "outd_diffamp_0/m1_1988_8998#" "outd_diffamp_0/m1_1796_8998#"
+merge "outd_diffamp_0/m1_1796_8998#" "outd_diffamp_0/m1_1604_8998#"
+merge "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n694_n1032#" "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#"
+merge "sky130_fd_pr__res_high_po_2p85_8GE2XM_1/a_n1512_n1032#" "outd_diffamp_0/m1_2564_8140#"
+merge "outd_diffamp_0/m1_2564_8140#" "outd_diffamp_0/m1_2372_8140#"
+merge "outd_diffamp_0/m1_2372_8140#" "outd_diffamp_0/m1_2180_8140#"
+merge "outd_diffamp_0/m1_2180_8140#" "outd_diffamp_0/m1_1988_8140#"
+merge "outd_diffamp_0/m1_1988_8140#" "outd_diffamp_0/m1_1796_8140#"
+merge "outd_diffamp_0/m1_1796_8140#" "outd_diffamp_0/m1_1604_8140#"
+merge "outd_diffamp_0/m1_1604_8140#" "m1_1830_10170#"
diff --git a/mag/outd/outd_stage1.mag b/mag/outd/outd_stage1.mag
new file mode 100644
index 0000000..74ae1fe
--- /dev/null
+++ b/mag/outd/outd_stage1.mag
@@ -0,0 +1,251 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< dnwell >>
+rect 70 8020 3300 9920
+<< nwell >>
+rect -10 9714 3380 10000
+rect -10 8226 276 9714
+rect 3094 8226 3380 9714
+rect -10 7940 3380 8226
+<< nsubdiff >>
+rect 27 9943 3343 9963
+rect 27 9909 107 9943
+rect 3263 9909 3343 9943
+rect 27 9889 3343 9909
+rect 27 9883 101 9889
+rect 27 8057 47 9883
+rect 81 8057 101 9883
+rect 27 8051 101 8057
+rect 3269 9883 3343 9889
+rect 3269 8057 3289 9883
+rect 3323 8057 3343 9883
+rect 3269 8051 3343 8057
+rect 27 8031 3343 8051
+rect 27 7997 107 8031
+rect 3263 7997 3343 8031
+rect 27 7977 3343 7997
+<< nsubdiffcont >>
+rect 107 9909 3263 9943
+rect 47 8057 81 9883
+rect 3289 8057 3323 9883
+rect 107 7997 3263 8031
+<< locali >>
+rect 1640 11620 1730 12370
+rect 1630 10090 1750 11620
+rect -520 7690 -310 10070
+rect 1640 10050 1740 10090
+rect 20 9950 3340 9960
+rect 20 9943 1600 9950
+rect 1790 9943 3340 9950
+rect 20 9909 107 9943
+rect 3263 9909 3340 9943
+rect 20 9890 1600 9909
+rect 20 9883 100 9890
+rect 20 8057 47 9883
+rect 81 8057 100 9883
+rect 1790 9890 3340 9909
+rect 3270 9883 3340 9890
+rect 1620 9240 1750 9650
+rect 1620 8290 1750 8700
+rect 20 8050 100 8057
+rect 3270 8057 3289 9883
+rect 3323 8057 3340 9883
+rect 3270 8050 3340 8057
+rect 20 8031 3340 8050
+rect 20 7997 107 8031
+rect 3263 7997 3340 8031
+rect 20 7980 3340 7997
+rect 3530 7690 3740 10070
+rect -520 7520 10 7690
+rect 1840 7520 3740 7690
+rect 2800 120 3290 7520
+rect 930 -190 3290 120
+rect 930 -280 980 -190
+rect 1940 -280 3290 -190
+<< viali >>
+rect 1600 9943 1790 9950
+rect 1600 9909 1790 9943
+rect 1600 9840 1790 9909
+rect 1620 8700 1750 9240
+rect 980 -280 1940 -190
+<< metal1 >>
+rect -1510 11800 4870 12250
+rect -1500 10180 -1490 10620
+rect 1530 10180 1540 10620
+rect 1600 9956 1790 11800
+rect 1830 10170 1840 10620
+rect 4870 10170 4880 10620
+rect 1588 9950 1802 9956
+rect 1588 9840 1600 9950
+rect 1790 9840 1802 9950
+rect 1588 9834 1802 9840
+rect 310 9510 1510 9590
+rect 1860 9510 3060 9590
+rect 310 9050 390 9510
+rect 1614 9240 1756 9252
+rect 310 9040 1510 9050
+rect 260 8900 270 9040
+rect 380 8900 1510 9040
+rect 310 8890 1510 8900
+rect 310 8430 390 8890
+rect 1610 8700 1620 9240
+rect 1750 8700 1760 9240
+rect 2980 9050 3060 9510
+rect 1860 9040 3060 9050
+rect 1860 8900 2990 9040
+rect 3100 8900 3110 9040
+rect 1860 8890 3060 8900
+rect 1614 8688 1756 8700
+rect 2980 8430 3060 8890
+rect 310 8350 1510 8430
+rect 1860 8350 3060 8430
+rect 968 -190 1952 -184
+rect 968 -280 980 -190
+rect 1940 -280 1952 -190
+rect 968 -286 1952 -280
+<< via1 >>
+rect -1490 10180 1530 10620
+rect 1840 10170 4870 10620
+rect 270 8900 380 9040
+rect 1620 8700 1750 9240
+rect 2990 8900 3100 9040
+rect 980 -280 1940 -190
+<< metal2 >>
+rect -1490 10620 1530 10630
+rect -1490 10170 450 10180
+rect 990 10170 1530 10180
+rect 1840 10620 4870 10630
+rect 450 10160 990 10170
+rect 1840 10160 4870 10170
+rect -1610 9620 3060 9750
+rect 260 9040 390 9620
+rect 440 9470 1450 9480
+rect 440 9330 450 9470
+rect 980 9330 1450 9470
+rect 440 9320 1450 9330
+rect 1910 9470 2920 9480
+rect 1910 9330 2380 9470
+rect 2910 9330 2920 9470
+rect 1910 9320 2920 9330
+rect 1620 9240 1750 9250
+rect 530 9230 1620 9240
+rect 1750 9230 2830 9240
+rect 530 9090 1090 9230
+rect 2280 9090 2830 9230
+rect 530 9080 1620 9090
+rect 260 8900 270 9040
+rect 380 8900 390 9040
+rect 260 8890 390 8900
+rect 530 8850 1620 8860
+rect 1750 9080 2830 9090
+rect 2980 9040 3110 9050
+rect 2980 8900 2990 9040
+rect 3100 8900 3110 9040
+rect 1750 8850 2830 8860
+rect 530 8710 1090 8850
+rect 2280 8710 2830 8850
+rect 530 8700 1620 8710
+rect 1750 8700 2830 8710
+rect 1620 8690 1750 8700
+rect 440 8610 1450 8620
+rect 440 8470 450 8610
+rect 980 8470 1450 8610
+rect 440 8460 1450 8470
+rect 1910 8610 2920 8620
+rect 1910 8470 2380 8610
+rect 2910 8470 2920 8610
+rect 1910 8460 2920 8470
+rect 2980 8190 3110 8900
+rect -1610 8060 3110 8190
+rect 980 120 1940 130
+rect 980 -290 1940 -280
+<< via2 >>
+rect 450 10180 990 10620
+rect 450 10170 990 10180
+rect 2370 10170 2910 10620
+rect 450 9330 980 9470
+rect 2380 9330 2910 9470
+rect 1090 9090 1620 9230
+rect 1620 9090 1750 9230
+rect 1750 9090 2280 9230
+rect 1090 8710 1620 8850
+rect 1620 8710 1750 8850
+rect 1750 8710 2280 8850
+rect 450 8470 980 8610
+rect 2380 8470 2910 8610
+rect 980 -190 1940 120
+rect 980 -280 1940 -190
+<< metal3 >>
+rect 440 10620 1000 10625
+rect 440 10170 450 10620
+rect 990 10170 1000 10620
+rect 440 10165 1000 10170
+rect 2360 10620 2920 10625
+rect 2360 10170 2370 10620
+rect 2910 10170 2920 10620
+rect 2360 10165 2920 10170
+rect 440 9980 990 10165
+rect 440 9600 450 9980
+rect 980 9600 990 9980
+rect 440 9470 990 9600
+rect 440 9330 450 9470
+rect 980 9330 990 9470
+rect 440 8610 990 9330
+rect 2370 9470 2920 10165
+rect 2370 9330 2380 9470
+rect 2910 9330 2920 9470
+rect 440 8470 450 8610
+rect 980 8470 990 8610
+rect 440 8460 990 8470
+rect 1080 9230 2290 9240
+rect 1080 9090 1090 9230
+rect 2280 9090 2290 9230
+rect 1080 8850 2290 9090
+rect 1080 8710 1090 8850
+rect 2280 8710 2290 8850
+rect 1080 8160 2290 8710
+rect 2370 8610 2920 9330
+rect 2370 8470 2380 8610
+rect 2910 8470 2920 8610
+rect 2370 8460 2920 8470
+rect 980 8080 2290 8160
+rect 980 7910 1720 8080
+rect 990 140 1880 650
+rect -20 120 2850 140
+rect -20 -280 980 120
+rect 1940 -280 2850 120
+rect -20 -880 2850 -280
+<< via3 >>
+rect 2380 10210 2910 10590
+rect 450 9600 980 9980
+<< metal4 >>
+rect 440 10590 5040 10600
+rect 440 10210 2380 10590
+rect 2910 10210 5040 10590
+rect 440 10200 5040 10210
+rect 440 9980 5040 9990
+rect 440 9600 450 9980
+rect 980 9600 5040 9980
+rect 440 9590 5040 9600
+use outd_cmirror_64t  outd_cmirror_64t_0
+timestamp 1647868710
+transform 1 0 -10 0 1 76
+box 0 -76 2862 7840
+use outd_diffamp  outd_diffamp_0
+timestamp 1647868710
+transform 1 0 300 0 1 320
+box 0 7930 2768 9368
+use sky130_fd_pr__res_high_po_2p85_8GE2XM  sky130_fd_pr__res_high_po_2p85_8GE2XM_0
+timestamp 1647868710
+transform 1 0 18 0 1 11208
+box -1678 -1198 1678 1198
+use sky130_fd_pr__res_high_po_2p85_8GE2XM  sky130_fd_pr__res_high_po_2p85_8GE2XM_1
+timestamp 1647868710
+transform 1 0 3358 0 1 11208
+box -1678 -1198 1678 1198
+<< labels >>
+rlabel metal3 420 -570 630 -300 1 VN
+rlabel metal3 1630 8200 1730 8310 1 isource_out
+<< end >>
diff --git a/mag/outd/outd_stage1.spice b/mag/outd/outd_stage1.spice
new file mode 100644
index 0000000..622bc45
--- /dev/null
+++ b/mag/outd/outd_stage1.spice
@@ -0,0 +1,246 @@
+* SPICE3 file created from outd_stage1.ext - technology: sky130A
+
+X0 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X5 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X6 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X7 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X8 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X9 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X10 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X11 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X12 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X13 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X14 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X15 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X16 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 isource_out m1_260_8900# m1_n1500_10180# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 m1_n1500_10180# m1_260_8900# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X38 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X40 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 isource_out m1_1860_8350# m1_1830_10170# isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 m1_1830_10170# m1_1860_8350# isource_out isource_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 m1_n1500_10180# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X45 m1_n1500_10180# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X46 m1_n1500_10180# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X47 m1_n1500_10180# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X48 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X51 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X53 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X55 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X59 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X61 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X62 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X63 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X64 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X65 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X66 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X67 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X72 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X77 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X83 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X90 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X92 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X93 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X94 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X95 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X98 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X99 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X100 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X101 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X102 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X103 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X104 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X105 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X106 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X107 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X108 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X109 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X110 isource_out outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X111 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# isource_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X112 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X113 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X114 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X115 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X116 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X117 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X118 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X119 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X120 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X121 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X122 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X123 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X124 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X125 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X126 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X127 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X128 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X129 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X130 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X131 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X132 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X133 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X134 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X135 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X136 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X137 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X138 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X139 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X140 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X141 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X142 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X143 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X144 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X145 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X146 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X147 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X148 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X149 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X150 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X151 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X152 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X153 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X154 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X155 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X156 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X157 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X158 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X159 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X160 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X161 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X162 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X163 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X164 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X165 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X166 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X167 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X168 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X169 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X170 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X171 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X172 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X173 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X174 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X175 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X176 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X177 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X178 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X179 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X180 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X181 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X182 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X183 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X184 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X185 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X186 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X187 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X188 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X189 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X190 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X191 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X192 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X193 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X194 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X195 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X196 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X197 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X198 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X199 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X200 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X201 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X202 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X203 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X204 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X205 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X206 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X207 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X208 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X209 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X210 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X211 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X212 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X213 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X214 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X215 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X216 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X217 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X218 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X219 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X220 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X221 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X222 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X223 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X224 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X225 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X226 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X227 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X228 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X229 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X230 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X231 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X232 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X233 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X234 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X235 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X236 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X237 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X238 VN outd_cmirror_64t_0/m1_0_80# outd_cmirror_64t_0/m1_220_5610# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X239 outd_cmirror_64t_0/m1_220_5610# outd_cmirror_64t_0/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X240 m1_1830_10170# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X241 m1_1830_10170# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X242 m1_1830_10170# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
+X243 m1_1830_10170# dw_70_8020# VN sky130_fd_pr__res_high_po_2p85 l=6e+06u
diff --git a/mag/outd/outd_stage2.ext b/mag/outd/outd_stage2.ext
new file mode 100644
index 0000000..9301aa6
--- /dev/null
+++ b/mag/outd/outd_stage2.ext
@@ -0,0 +1,1326 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use outd_cmirror_64t outd_cmirror_64t_0 1 0 -30 0 1 76
+use outd_cmirror_64t outd_cmirror_64t_1 1 0 2820 0 1 76
+use outd_diffamp outd_diffamp_0 1 0 300 0 1 320
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_0 1 0 951 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_1 1 0 2419 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_2 1 0 951 0 1 12978
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_3 1 0 2419 0 1 12978
+use outd_cmirror_64t outd_cmirror_64t_2 1 0 5670 0 1 76
+use outd_diffamp outd_diffamp_1 1 0 3230 0 1 320
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_4 1 0 5349 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_5 1 0 3881 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_6 1 0 3881 0 1 12978
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_7 1 0 5349 0 1 12978
+use outd_cmirror_64t outd_cmirror_64t_3 1 0 8520 0 1 76
+use outd_diffamp outd_diffamp_2 1 0 6160 0 1 320
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_8 1 0 8279 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_9 1 0 6811 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_10 1 0 6811 0 1 12978
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_11 1 0 8279 0 1 12978
+use outd_cmirror_64t outd_cmirror_64t_4 1 0 11370 0 1 76
+use outd_diffamp outd_diffamp_3 1 0 9090 0 1 320
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_12 1 0 11209 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_13 1 0 9741 0 1 10998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_14 1 0 9741 0 1 12978
+use sky130_fd_pr__res_high_po_5p73_PA2QZX sky130_fd_pr__res_high_po_5p73_PA2QZX_15 1 0 11209 0 1 12978
+node "VN" 1 11825.3 -20 -880 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15944400 33640 0 0 0 0 0 0
+node "m2_10150_7300#" 1 631.284 10150 7300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 235200 3260 0 0 0 0 0 0 0 0
+node "m2_7240_7300#" 1 630.38 7240 7300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 235200 3260 0 0 0 0 0 0 0 0
+node "m2_4420_7300#" 1 629.986 4420 7300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 235200 3260 0 0 0 0 0 0 0 0
+node "m2_1580_7300#" 1 630.89 1580 7300 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 235200 3260 0 0 0 0 0 0 0 0
+node "m1_1850_8370#" 11 32.096 1850 8370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1456000 46640 2405300 29240 0 0 0 0 0 0 0 0
+node "m1_250_8900#" 57 32.096 250 8900 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1445600 46320 2404600 29220 0 0 0 0 0 0 0 0
+node "m1_2350_11400#" 12 8270.13 2350 11400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068000 14640 4329600 33520 9795650 38200 6496000 24320 0 0 0 0
+node "m1_370_11400#" 12 8052.94 370 11400 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068000 14640 4316800 33360 9785800 38200 6496000 24320 0 0 0 0
+node "cmirror_out" 40 4305.69 300 8250 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3349600 67600 349632 5872 3066400 40240 13682300 33120 0 0 0 0 0 0
+node "li_250_11940#" 23 24556.4 250 11940 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6072900 97140 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_266_8236#" 34852 0 266 8236 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "dw_60_8030#" 15182 95056.3 60 8030 dnw 0 0 22635200 27840 7818096 54672 0 0 2063712 55776 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1220342 56062 4739512 28240 4232000 25760 28199600 47020 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_266_8236#" "m1_250_8900#" 7718.16
+cap "m1_2350_11400#" "cmirror_out" 9679.29
+cap "m2_7240_7300#" "m2_10150_7300#" 4.34444
+cap "dw_60_8030#" "cmirror_out" 6266.41
+cap "w_266_8236#" "cmirror_out" 17404
+cap "m1_250_8900#" "m1_1850_8370#" 5496.87
+cap "m2_1580_7300#" "m1_1850_8370#" 72.7557
+cap "m1_1850_8370#" "cmirror_out" 11862.5
+cap "m2_4420_7300#" "m1_1850_8370#" 72.7557
+cap "m1_250_8900#" "cmirror_out" 5635.22
+cap "li_250_11940#" "cmirror_out" 295.251
+cap "m2_4420_7300#" "m2_1580_7300#" 4.56642
+cap "m1_1850_8370#" "m2_10150_7300#" 72.7557
+cap "m1_2350_11400#" "m1_370_11400#" 18070.8
+cap "m2_7240_7300#" "m1_1850_8370#" 72.7557
+cap "dw_60_8030#" "m1_370_11400#" 15020
+cap "w_266_8236#" "m1_370_11400#" 2044.17
+cap "m1_370_11400#" "m1_1850_8370#" 4024.17
+cap "m1_2350_11400#" "dw_60_8030#" 14992.3
+cap "w_266_8236#" "m1_2350_11400#" 1922.58
+cap "w_266_8236#" "dw_60_8030#" 51209.7
+cap "m2_4420_7300#" "m2_7240_7300#" 4.63407
+cap "m1_250_8900#" "m1_370_11400#" 7327.85
+cap "li_250_11940#" "m1_370_11400#" 2336.69
+cap "m1_2350_11400#" "m1_1850_8370#" 5692.98
+cap "dw_60_8030#" "m1_1850_8370#" 507.069
+cap "w_266_8236#" "m1_1850_8370#" 8090.02
+cap "m1_370_11400#" "cmirror_out" 9444.53
+cap "m1_250_8900#" "m1_2350_11400#" 5734.3
+cap "li_250_11940#" "m1_2350_11400#" 2226.39
+cap "m1_250_8900#" "dw_60_8030#" 912.091
+cap "li_250_11940#" "dw_60_8030#" 8381.56
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.245912
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" 34.259
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" -425.86
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 7.47085
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.0168451
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.19696
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.42272
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" -964.243
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_0/li_0_0#" 7.47085
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" 54.8411
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.302266
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" -148.819
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.0168451
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.25574
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.42272
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_0_80#" 364.477
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" 0.264189
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 7.47085
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/m1_0_80#" -519.459
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 54.8411
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.302266
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 7.47085
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.42272
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/m1_0_80#" 0.0168451
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" "outd_cmirror_64t_1/li_0_0#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/li_0_0#" 1.19696
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/li_0_0#" 7.27511
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/m1_0_80#" 615.816
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/li_0_0#" 62.312
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_2/li_0_0#" -559.11
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.302266
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_2/li_0_0#" 7.47085
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.42272
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_2/li_0_0#" 632.828
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.0168451
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" 0.283333
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.19696
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" 0.0511111
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_0_80#" -601.14
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/li_0_0#" 62.312
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.250819
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_3/li_0_0#" 7.47085
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" 0.293985
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.0514474
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_0_80#" 1476.37
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/m1_220_5610#" 19.1249
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 0.521566
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" -2.02595
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745#" "outd_cmirror_64t_0/li_0_0#" 0.245912
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" "outd_cmirror_64t_0/li_0_0#" 0.245912
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" -2081.57
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 26.9249
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" -21.9739
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_0_80#" 90.8849
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" 67.0286
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.193718
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_0/li_0_0#" 12.8072
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.95895
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" 17.4634
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 514.364
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 12.6188
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 5.33632
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -12.1123
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 7.924
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 8.65668
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" "outd_cmirror_64t_0/li_0_0#" 0.264189
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" 67.0286
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" 0.264189
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.193718
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/li_0_0#" -21.9739
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 26.9249
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 1104
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/m1_0_80#" -12.1123
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 7.924
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 5.33632
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 8.65668
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 12.8072
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/li_0_0#" 17.4634
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 8.95895
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/m1_0_80#" -39.5054
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_1/li_0_0#" 12.6188
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/li_0_0#" 66.2226
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 26.9249
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/li_0_0#" -21.9739
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" "outd_cmirror_64t_1/li_0_0#" 0.273427
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/li_0_0#" 1070.65
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.193718
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" "outd_cmirror_64t_1/li_0_0#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.65668
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.95895
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 7.924
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -12.1123
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_2/li_0_0#" 5.33632
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_2/li_0_0#" 12.8072
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 12.6188
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/li_0_0#" 48.2258
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_2/li_0_0#" -39.5054
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.127778
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.204444
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" 1037.3
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.255556
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" "outd_cmirror_64t_2/li_0_0#" 0.283333
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 26.9249
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" "outd_cmirror_64t_2/li_0_0#" 0.283333
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -21.9739
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/li_0_0#" 36.2662
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/m1_0_80#" 0.193718
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.45089
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_3/li_0_0#" 12.6188
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.70171
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_3/li_0_0#" -39.5054
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 7.79538
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -12.1123
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_cmirror_64t_3/li_0_0#" 5.33632
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/li_0_0#" 48.2258
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_cmirror_64t_3/li_0_0#" 12.8072
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.257237
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" 0.205789
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" "outd_cmirror_64t_3/li_0_0#" 0.293985
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/li_0_0#" 0.335079
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" "outd_cmirror_64t_3/li_0_0#" 0.293985
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" 0.128618
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_3/li_0_0#" 1866.4
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.245912
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -1777.92
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/m1_220_5610#" 19.1261
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.0886748
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#" 0.245912
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/m1_0_80#" -11.6833
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -16.9172
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 36.2567
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.210563
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.447273
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 29.0013
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 78.8299
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 20.4585
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -55.3973
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" 846.221
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.95895
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 8.95895
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.03495
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -14.5916
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 28.9698
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 36.2567
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/m1_0_80#" 1760.08
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" 0.264189
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 20.4585
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 29.0013
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -16.9172
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" 0.264189
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_0/m1_0_80#" 0.210563
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 28.9698
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 8.95895
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.03495
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -14.5916
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 8.95895
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_1/m1_0_80#" -39.97
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -55.3973
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 27.2036
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -16.9172
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/m1_0_80#" 1706.72
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.210563
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 20.4585
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 1.03495
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 55.0365
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/m1_0_80#" -14.5916
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 8.95895
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 8.95895
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -55.3973
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_2/m1_0_80#" -39.97
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 36.2567
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.255556
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.283333
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" 0.127778
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.255556
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.210563
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 20.4585
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 2.9346
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.283333
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1653.36
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -16.9172
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 55.0365
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -55.3973
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 8.70171
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/m1_0_80#" -14.5916
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n345_n2363#" 36.2567
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 8.70171
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_cmirror_64t_3/m1_0_80#" -39.97
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.906332
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.257237
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/m1_0_80#" 2986.24
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.257237
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" 0.293985
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" 0.293985
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.128618
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_0_80#" 0.0633391
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#" 0.245912
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" 0.245912
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -1777.92
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/m1_220_5610#" 19.137
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_0/li_0_0#" 65.4101
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_0/m1_0_80#" 0.210563
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_0/m1_0_80#" 0.111818
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 85.3015
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 25.0202
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_0/li_0_0#" -20.2477
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 513.899
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_64t_0/li_0_0#" 12.8072
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -31.6206
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 3.5157
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_64t_0/li_0_0#" 12.8072
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.95895
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 5.59662
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.95895
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" "outd_cmirror_64t_1/li_0_0#" 0.264189
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" 0.264189
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.210563
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -20.2477
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/li_0_0#" 1103.93
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 25.0202
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_1/li_0_0#" 65.4101
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 3.5157
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.95895
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" 12.8072
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.95895
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/m1_0_80#" -10.6243
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 5.59662
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -31.6206
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" 12.8072
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" -39.97
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" "outd_cmirror_64t_2/li_0_0#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/li_0_0#" -20.2477
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" 0.273427
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 25.0202
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/li_0_0#" 64.6469
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/m1_0_80#" 0.210563
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" 1070.58
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" 8.95895
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" 8.95895
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -2.4906
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_3/m1_0_80#" -39.97
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_2/li_0_0#" 3.5157
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" 12.8072
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" 12.8072
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 5.59662
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.255556
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" 0.127778
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/li_0_0#" -20.2477
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 25.0202
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.210563
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" 0.283333
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/li_0_0#" 36.2801
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.255556
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" "outd_cmirror_64t_3/li_0_0#" 0.283333
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_3/li_0_0#" 1037.23
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_64t_3/li_0_0#" 12.8072
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_64t_3/li_0_0#" 12.8072
+cap "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 5.468
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/li_0_0#" -2.4906
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.70171
+cap "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_3/li_0_0#" -39.97
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_3/li_0_0#" 3.5157
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.70171
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" "outd_cmirror_64t_4/li_0_0#" 0.293985
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.257237
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" "outd_cmirror_64t_4/li_0_0#" 0.293985
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#" 0.257237
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_4/m1_0_80#" 1866.4
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" 0.128618
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" -18.2644
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_220_5610#" -552.518
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_0_80#" 0.0209019
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/m1_220_5610#" -33.9708
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" "outd_cmirror_64t_0/li_0_0#" 0.245912
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_cmirror_64t_0/m1_130_5370#" 0.245912
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/m1_220_5610#" 7.15797
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_0_80#" 9.71442
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_0_80#" 5.10034
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_220_5610#" 13.4009
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" 20.5911
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_130_5370#" 5.79823
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" 2.60667
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_0/li_0_0#" 5.79823
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/li_0_0#" -7.51014
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_0/m1_220_5610#" 3.36233
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 0.926815
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_0/li_0_0#" 9.29148
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/m1_0_80#" 7.51818
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_1/m1_0_80#" -2.41784
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" 10.4553
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_1/m1_0_80#" 444.627
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/li_0_0#" 1652.93
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/m1_220_5610#" 20.5911
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" "outd_cmirror_64t_1/li_0_0#" 0.264189
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/li_0_0#" 13.4009
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/m1_220_5610#" 7.15797
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/li_0_0#" 5.79823
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/m1_130_5370#" 5.10034
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" "outd_cmirror_64t_1/m1_220_5610#" 2.60667
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_1/m1_220_5610#" 3.36233
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" "outd_cmirror_64t_1/m1_220_5610#" 0.926815
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_2/m1_130_5370#" 5.79823
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/m1_0_80#" 7.51818
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_2/m1_130_5370#" 10.4553
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" 72.1283
+cap "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_1/m1_220_5610#" -7.51014
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_2/m1_0_80#" -2.41784
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_1/li_0_0#" 9.29148
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" 0.273427
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/m1_0_80#" 5.10034
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/m1_130_5370#" 5.79823
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" 1603.19
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/m1_130_5370#" 20.5911
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/m1_0_80#" 7.15797
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/li_0_0#" 13.1574
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/li_0_0#" 1.78134
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_2/li_0_0#" 5.79823
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_3/m1_0_80#" -2.41784
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_0_80#" 7.51818
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" 2.60667
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" 3.36233
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_2/li_0_0#" 32.1648
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_2/li_0_0#" 9.29148
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" "outd_cmirror_64t_2/m1_220_5610#" 0.926815
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_2/m1_220_5610#" 10.4553
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_220_5610#" 4.10941
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" 0.283333
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_0_80#" 5.10034
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/m1_130_5370#" 20.5911
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/m1_0_80#" 7.15797
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_130_5370#" 5.79823
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" 0.127778
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_0_80#" 1553.44
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_3/m1_220_5610#" 10.4553
+cap "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_3/m1_220_5610#" -2.41784
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_3/m1_220_5610#" 3.23371
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_3/li_0_0#" 5.79823
+cap "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_3/li_0_0#" -1203.44
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/li_0_0#" 1.78134
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n1127#" 2.60667
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_cmirror_64t_3/li_0_0#" 9.29148
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" "outd_cmirror_64t_3/m1_220_5610#" 0.926815
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_4/m1_0_80#" 7.51818
+cap "outd_cmirror_64t_4/m1_220_5610#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" 0.128618
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" 0.293985
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_4/m1_0_80#" 3049.9
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_diffamp_0/m1_130_8140#" 11.7944
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" 0.245912
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" 0.245912
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/m1_0_80#" -50.5599
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_0_80#" -73.0141
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" -262.188
+cap "outd_diffamp_0/a_182_8670#" "outd_cmirror_64t_0/m1_0_80#" 17.412
+cap "outd_diffamp_0/a_1560_8670#" "outd_cmirror_64t_0/m1_220_5610#" -0.742405
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_130_5370#" 12.1416
+cap "outd_cmirror_64t_0/li_0_0#" "outd_cmirror_64t_0/m1_220_5610#" 15.2497
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/m1_130_5370#" 9.19057
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/m1_220_5610#" 159.166
+cap "outd_cmirror_64t_0/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 1.63855
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" 195.207
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 1.67985
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_0/li_0_0#" 12.1416
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "outd_cmirror_64t_0/m1_220_5610#" 2.60667
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "outd_cmirror_64t_1/m1_0_80#" 0.0615
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_diffamp_1/a_182_8670#" 15.2355
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_diffamp_0/a_1560_8670#" -2.22722
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_1/m1_0_80#" 53.5811
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/li_0_0#" 14.2697
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_1/m1_130_5370#" -109.779
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_0/li_0_0#" 1.63855
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/m1_0_80#" -65.1229
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/m1_220_5610#" 158.871
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/m1_130_5370#" 8.66693
+cap "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_1/li_0_0#" 1.63855
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/m1_220_5610#" 194.747
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/li_0_0#" 15.2497
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_1/li_0_0#" 12.1416
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_diffamp_1/a_1560_8670#" -0.989873
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 1.67985
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_diffamp_1/a_1560_8670#" -1.97975
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/li_0_0#" 14.2697
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_2/m1_0_80#" 54.4651
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 2.60667
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_2/m1_130_5370#" -144.72
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_1/li_0_0#" 1.63855
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_1/li_0_0#" 12.1416
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 0.0615
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_2/m1_130_5370#" -70.1592
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/li_0_0#" 12.1416
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/m1_220_5610#" 194.064
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/li_0_0#" 15.2497
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/m1_0_80#" 7.79426
+cap "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_2/m1_0_80#" 1.63855
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/m1_0_80#" 158.903
+cap "outd_diffamp_1/a_1560_8670#" "outd_cmirror_64t_2/m1_220_5610#" -1.73228
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 2.60667
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_2/li_0_0#" 1.63855
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_2/li_0_0#" 12.1416
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_0_80#" 15.8724
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" 0.0615
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 1.67985
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_diffamp_2/a_1560_8670#" -1.23734
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_2/li_0_0#" 14.2697
+cap "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_2/m1_220_5610#" 54.654
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_2/m1_220_5610#" -179.629
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/m1_0_80#" 158.198
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/li_0_0#" 12.1416
+cap "outd_diffamp_2/a_1560_8670#" "outd_cmirror_64t_3/m1_220_5610#" -0.247468
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_0_80#" 7.85184
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_220_5610#" 194.474
+cap "outd_diffamp_3/a_182_8670#" "outd_cmirror_64t_3/m1_0_80#" 7.33312
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_0_80#" 1.63855
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_220_5610#" 15.2497
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "outd_cmirror_64t_4/m1_0_80#" 0.0615
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_4/m1_0_80#" 54.7077
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_3/m1_220_5610#" 14.2697
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_4/m1_0_80#" 15.9227
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_4/m1_130_5370#" 12.1416
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_109#" "outd_cmirror_64t_3/m1_220_5610#" 2.60667
+cap "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_4/m1_0_80#" -1194.31
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_255_n509#" 1.67985
+cap "outd_diffamp_3/a_1560_8670#" "outd_cmirror_64t_3/m1_220_5610#" -2.72215
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_4/m1_130_5370#" 155.838
+cap "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_4/li_0_0#" 416.5
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_0/m1_130_5370#" 194.77
+cap "m1_1850_8370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -14.6007
+cap "m1_1850_8370#" "outd_diffamp_0/m1_130_8998#" 87.975
+cap "outd_diffamp_0/m1_1604_8998#" "outd_cmirror_64t_0/m1_130_5370#" 539.272
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/m1_220_5610#" -37.1702
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_182_9180#" 432.569
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -9.013
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 410.154
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_cmirror_64t_0/m1_130_5370#" 0.245912
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_0/m1_130_8998#" -3.75846
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/a_182_9180#" 73.2927
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" -4.36739
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_0/m1_130_5370#" 63.1226
+cap "outd_cmirror_64t_0/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -38.8381
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_diffamp_0/m1_130_8998#" 11.5891
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/m1_130_8998#" 213.193
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/m1_130_8998#" 691.546
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_1/m1_0_80#" 0.763448
+cap "outd_cmirror_64t_0/m1_130_5370#" "m1_1850_8370#" -73.6579
+cap "m1_1850_8370#" "outd_diffamp_0/a_182_9180#" -79.0556
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/a_1560_9180#" -1.98463
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_1560_9180#" -3029.47
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -1430.18
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" 0.409639
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_cmirror_64t_0/m1_130_5370#" -60.4755
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_182_9180#" -1703.41
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_0/m1_130_5370#" 16.1355
+cap "outd_diffamp_0/a_1560_9180#" "outd_cmirror_64t_0/m1_130_5370#" -17.8761
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/m1_130_8998#" 15.995
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_diffamp_0/a_1560_9180#" -0.742405
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_130_8998#" 21.505
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/a_182_9180#" 9.49632
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_1604_8998#" 204.74
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_0/m1_130_5370#" 110.937
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" -7.04361
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/m1_130_8998#" 954.758
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_diffamp_0/m1_1604_8998#" "outd_cmirror_64t_0/m1_130_5370#" 396.143
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" -2.53817
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 144.615
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_0/m1_130_8998#" -11.7219
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 37.9732
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -8.35835
+cap "outd_diffamp_1/m1_130_8998#" "outd_cmirror_64t_1/m1_130_5370#" 405.173
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_0/a_1560_9180#" 17.6714
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "outd_cmirror_64t_1/m1_130_5370#" -100.928
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_1/m1_130_5370#" 305.731
+cap "outd_diffamp_0/m1_1604_8998#" "outd_cmirror_64t_1/m1_130_5370#" 427.583
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 415.385
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_1/m1_130_5370#" 384.678
+cap "outd_diffamp_1/m1_1604_8998#" "outd_cmirror_64t_1/m1_130_5370#" 657.857
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 0.409639
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_1/a_182_9180#" -81.2689
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_diffamp_0/a_1560_9180#" -6.92911
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_1/m1_130_8998#" -2.6541
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_1/a_182_9180#" -1.56401
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -9.09755
+cap "outd_diffamp_0/m1_898_8140#" "outd_diffamp_0/m1_1604_8998#" -0.02086
+cap "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_diffamp_1/a_182_9180#" "outd_cmirror_64t_1/m1_130_5370#" 189.134
+cap "outd_cmirror_64t_0/m1_220_5610#" "outd_cmirror_64t_1/m1_130_5370#" 188.472
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/m1_130_8998#" 651.988
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "outd_diffamp_1/a_182_9180#" -2.08306
+cap "outd_diffamp_0/a_1560_9180#" "outd_cmirror_64t_1/m1_130_5370#" -823.833
+cap "outd_diffamp_1/a_1560_8562#" "outd_cmirror_64t_1/m1_130_5370#" -3595.25
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_1/m1_130_8998#" 86.2935
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_1/a_182_9180#" -2.24593
+cap "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" 0.738
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_8052#" -0.761011
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_1/a_182_9180#" 64.4747
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_1604_8998#" 229.801
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_1/a_1560_9180#" 455.404
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 160
+cap "outd_diffamp_1/m1_130_8998#" "outd_diffamp_1/m1_1604_8998#" -11.4406
+cap "outd_diffamp_1/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -5.95412
+cap "outd_diffamp_1/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -8.7031
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" -8.28136
+cap "outd_cmirror_64t_1/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -60.9967
+cap "outd_diffamp_1/m1_130_8998#" "outd_diffamp_1/a_1560_9180#" 28.9965
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/m1_130_8998#" 27.6888
+cap "outd_diffamp_1/a_182_9180#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" 22.9962
+cap "outd_diffamp_1/m1_130_8998#" "outd_cmirror_64t_1/m1_130_5370#" 539.424
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_1/m1_130_5370#" 1374.39
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" 0.409639
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_1/a_1560_9180#" 127.317
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_diffamp_1/a_1560_9180#" -0.989873
+cap "outd_diffamp_1/m1_1604_8998#" "outd_cmirror_64t_1/m1_130_5370#" 452.143
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_1/m1_130_5370#" 14.9157
+cap "outd_cmirror_64t_1/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 477.886
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/a_1560_9180#" 227.496
+cap "outd_diffamp_1/a_182_9180#" "outd_cmirror_64t_1/m1_130_5370#" -982.191
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_cmirror_64t_2/m1_130_5370#" -100.441
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_diffamp_1/a_1560_9180#" -7.91899
+cap "outd_diffamp_1/m1_1604_8998#" "outd_cmirror_64t_2/m1_130_5370#" 159.131
+cap "outd_diffamp_2/a_1560_8562#" "outd_cmirror_64t_2/m1_130_5370#" -4160.83
+cap "outd_cmirror_64t_1/m1_220_5610#" "outd_cmirror_64t_2/m1_130_5370#" 188.472
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_2/a_182_9180#" -83.0561
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 0.409639
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_2/a_182_9180#" 55.6567
+cap "outd_diffamp_1/m1_898_8140#" "outd_diffamp_1/m1_1604_8998#" 0.265185
+cap "outd_diffamp_2/a_182_9180#" "outd_cmirror_64t_2/m1_130_5370#" -35.5384
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -8.94844
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_1/a_1560_9180#" 27.0861
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/m1_130_8998#" 650.421
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_2/a_182_9180#" -0.14879
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "outd_cmirror_64t_2/m1_130_5370#" 335.392
+cap "outd_diffamp_1/a_1560_9180#" "outd_cmirror_64t_2/m1_130_5370#" -619.726
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_1/a_182_8562#" -0.848507
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_2/m1_130_8998#" 75.4827
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_2/a_182_9180#" 1.22962
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_3/m1_0_80#" 0.714194
+cap "outd_diffamp_2/m1_1604_8998#" "outd_cmirror_64t_2/m1_130_5370#" 776.271
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_2/m1_130_5370#" 415.952
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 400
+cap "outd_diffamp_2/m1_130_8998#" "outd_diffamp_2/m1_1604_8998#" -2.47556
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/a_1560_8562#" -1.2905
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_1/m1_1604_8998#" 576.918
+cap "outd_diffamp_2/m1_130_8998#" "outd_cmirror_64t_2/m1_130_5370#" 510.23
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_2/m1_1604_8998#" 56.6765
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_2/m1_130_5370#" 1265.42
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_2/a_182_9180#" 27.1324
+cap "outd_diffamp_1/a_1560_8562#" "outd_cmirror_64t_2/m1_130_5370#" 155.116
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_2/a_182_9180#" 223.912
+cap "outd_diffamp_1/a_1560_8562#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -8.53073
+cap "outd_diffamp_2/m1_1604_8998#" "outd_cmirror_64t_2/m1_130_5370#" 468.522
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -9.04374
+cap "outd_diffamp_2/a_182_9180#" "outd_cmirror_64t_2/m1_130_5370#" -505.434
+cap "outd_diffamp_2/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -8.06077
+cap "outd_cmirror_64t_2/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -64.9484
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_2/m1_130_8998#" 39.3822
+cap "outd_diffamp_1/a_1560_8562#" "outd_cmirror_64t_2/m1_220_5610#" -1.48481
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 0.409639
+cap "outd_cmirror_64t_2/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 444.306
+cap "outd_diffamp_2/m1_130_8998#" "outd_diffamp_2/m1_1604_8998#" -11.4406
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 175.385
+cap "outd_diffamp_2/m1_130_8998#" "outd_cmirror_64t_2/m1_130_5370#" 649.846
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/m1_130_8998#" 40.1375
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_2/m1_220_5610#" 13.6183
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_2/m1_1604_8998#" 343.894
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/a_1560_9180#" -80.8198
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_diffamp_2/a_1560_9180#" -8.41392
+cap "outd_diffamp_3/m1_130_8998#" "outd_cmirror_64t_3/m1_130_5370#" 459.159
+cap "outd_cmirror_64t_3/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -99.7324
+cap "outd_diffamp_2/a_1560_9180#" "outd_diffamp_2/m1_1604_8998#" 646.296
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 384.615
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_cmirror_64t_3/m1_130_5370#" 365.12
+cap "outd_diffamp_3/m1_130_8998#" "outd_diffamp_2/a_1560_9180#" 57.4143
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/m1_1604_8998#" 1.22962
+cap "outd_diffamp_2/a_182_8052#" "outd_diffamp_2/a_1560_9180#" -0.958737
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 0.409639
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_3/m1_130_5370#" 477.91
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_3/m1_130_8998#" 615.956
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -8.82999
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_2/a_1560_9180#" -415.928
+cap "outd_diffamp_3/a_182_9180#" "outd_cmirror_64t_3/m1_130_5370#" -273.634
+cap "outd_diffamp_2/m1_706_8998#" "outd_diffamp_2/m1_1604_8998#" 0.595153
+cap "outd_diffamp_3/m1_130_8998#" "outd_diffamp_3/m1_1604_8998#" 0.550739
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_2/a_1560_9180#" 28.5243
+cap "outd_cmirror_64t_2/m1_220_5610#" "outd_cmirror_64t_3/m1_130_5370#" 188.472
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "outd_diffamp_3/a_182_9180#" 46.8133
+cap "outd_diffamp_3/a_1560_8562#" "outd_diffamp_3/a_182_9180#" -1.09842
+cap "outd_diffamp_3/a_182_9180#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 35.9504
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_3/m1_1604_8998#" 539.631
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 1155.51
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 190.769
+cap "outd_diffamp_3/m1_130_8998#" "outd_diffamp_2/a_1560_9180#" 57.3807
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_2/a_1560_9180#" -8.35835
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 0.409639
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_diffamp_2/a_1560_9180#" -0.247468
+cap "outd_diffamp_3/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -8.38194
+cap "outd_diffamp_3/m1_130_8998#" "outd_diffamp_3/a_182_9180#" -189.537
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_3/m1_130_8998#" 187.362
+cap "outd_diffamp_3/m1_130_8998#" "outd_diffamp_3/m1_1604_8998#" -11.3548
+cap "outd_cmirror_64t_3/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -73.3482
+cap "outd_cmirror_64t_3/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 410.727
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" -9.65984
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/a_1560_9180#" 1269.76
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_3/m1_220_5610#" 139.159
+cap "outd_diffamp_3/m1_1604_8998#" "outd_diffamp_2/a_1560_9180#" -46.5621
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_2/a_1560_9180#" 140.414
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_3/a_182_9180#" 38.0194
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_diffamp_3/a_1560_9180#" "outd_diffamp_3/a_182_8052#" -1.10188
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_diffamp_3/a_1560_9180#" -11.1361
+cap "outd_cmirror_64t_3/m1_220_5610#" "outd_cmirror_64t_4/m1_130_5370#" 207.168
+cap "outd_diffamp_3/m1_1604_8998#" "m1_250_8900#" 1.22962
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_4/li_0_0#" 65.7424
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_560#" 0.409639
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_diffamp_3/a_1560_9180#" 225.572
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_cmirror_64t_4/li_0_0#" 231.692
+cap "outd_diffamp_3/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -0.639795
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -604.145
+cap "outd_diffamp_3/m1_1604_8998#" "outd_diffamp_3/m1_514_8998#" 0.550739
+cap "outd_diffamp_3/a_1560_9180#" "outd_diffamp_3/m1_1604_8998#" 684.167
+cap "outd_cmirror_64t_4/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -73.5822
+cap "outd_diffamp_3/a_1560_9180#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 33.9508
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_diffamp_3/m1_1604_8998#" 241.776
+cap "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 325.988
+cap "outd_cmirror_64t_4/m1_220_5610#" "outd_cmirror_64t_4/m1_130_5370#" 217.514
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_4/li_0_0#" 91.035
+cap "outd_cmirror_64t_4/li_0_0#" "outd_cmirror_64t_4/m1_130_5370#" 550.089
+cap "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_cmirror_64t_4/m1_130_5370#" 1994.7
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_cmirror_64t_0/m1_130_5370#" -8.49329
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" 34.3365
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_182_9180#" 527.271
+cap "outd_diffamp_0/m1_130_8998#" "outd_diffamp_0/m1_1604_8998#" -3.68605
+cap "outd_diffamp_0/a_182_9180#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/m1_130_8998#" 132.548
+cap "outd_diffamp_0/m1_130_8998#" "outd_cmirror_64t_0/m1_130_5370#" 243.166
+cap "outd_diffamp_0/m1_130_8998#" "m1_1850_8370#" 1.18885
+cap "outd_diffamp_0/m1_130_8998#" "outd_diffamp_0/a_182_9180#" 829.559
+cap "outd_diffamp_0/a_1560_9180#" "outd_cmirror_64t_0/m1_130_5370#" -2595.59
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -2.43647
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 365.302
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_diffamp_0/m1_130_8998#" 34.1864
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/m1_1604_8998#" 373.563
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 489.842
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" -2.86826
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/m1_130_8998#" 0.154501
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/m1_1604_8998#" -45.8416
+cap "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -18.1295
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_1560_9180#" 655.756
+cap "outd_diffamp_0/m1_130_8998#" "outd_diffamp_0/a_182_9180#" -105.966
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/m1_1604_8998#" 63.1003
+cap "outd_diffamp_0/m1_130_8998#" "outd_diffamp_0/m1_1604_8998#" -11.7219
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_1560_9180#" 15.4806
+cap "outd_diffamp_0/a_182_9180#" "outd_diffamp_0/a_1560_9180#" -55.1954
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_2306#" 1.54961
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_1604_8998#" 80.1537
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_cmirror_64t_0/m1_130_5370#" -2.96701
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/a_182_9180#" -2474.91
+cap "outd_cmirror_64t_0/m1_130_5370#" "outd_diffamp_0/m1_130_8998#" 268.912
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_1/m1_130_8998#" 1.18885
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_1/m1_130_8998#" -2.59574
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_0/m1_1604_8998#" 12.7432
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_1/a_182_9180#" 217.996
+cap "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -173.573
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_0/m1_898_8998#" 0.00885124
+cap "outd_diffamp_0/a_1560_9180#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "outd_diffamp_1/a_1560_9180#" "outd_cmirror_64t_1/m1_130_5370#" -2326.1
+cap "outd_cmirror_64t_1/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -9.00684
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/a_1560_8562#" -0.178548
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_9180#" -0.848729
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_0/m1_1604_8998#" -16.5112
+cap "outd_diffamp_0/a_1560_9180#" "outd_cmirror_64t_1/m1_130_5370#" -1586.13
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 13.2306
+cap "outd_diffamp_1/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 29.5929
+cap "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -254.522
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/m1_130_8998#" 783.352
+cap "outd_diffamp_1/a_182_9180#" "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/a_182_8052#" -0.0877179
+cap "outd_diffamp_1/a_1560_8562#" "outd_cmirror_64t_1/m1_130_5370#" -873.799
+cap "outd_diffamp_0/a_1560_9180#" "outd_diffamp_0/m1_1604_8998#" -1800.76
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_1/m1_130_8998#" 270.29
+cap "outd_diffamp_1/a_182_9180#" "outd_cmirror_64t_1/m1_130_5370#" 208.226
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/a_1560_9180#" -1.74255
+cap "outd_diffamp_1/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 39.1142
+cap "outd_diffamp_1/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 111.811
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" 423.893
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 465.545
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_1/a_1560_9180#" 7.38339
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_1/a_182_9180#" -896.343
+cap "outd_diffamp_1/m1_130_8998#" "outd_diffamp_0/m1_2372_8998#" -11.4406
+cap "outd_diffamp_1/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 0.15343
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_0/m1_2372_8998#" -190.1
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_1/a_182_9180#" -69.6648
+cap "outd_diffamp_0/m1_2372_8998#" "outd_diffamp_1/a_182_9180#" 46.4604
+cap "outd_diffamp_1/m1_130_8998#" "outd_diffamp_1/a_182_9180#" 73.2985
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_1/a_1560_9180#" 285.852
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_1/a_182_9180#" -4.32055
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" 0.164732
+cap "outd_cmirror_64t_1/m1_130_5370#" "outd_diffamp_0/m1_2372_8998#" 344.089
+cap "outd_diffamp_1/m1_130_8998#" "outd_cmirror_64t_1/m1_130_5370#" -164.534
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_2306#" "outd_diffamp_1/a_182_9180#" 4.27964
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_diffamp_0/m1_2372_8998#" -67.5055
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_cmirror_64t_1/m1_130_5370#" 1.78509
+cap "outd_diffamp_0/m1_2372_8998#" "outd_diffamp_1/a_1560_9180#" -110.535
+cap "outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_64t_1/m1_130_5370#" 1.07805
+cap "outd_diffamp_1/a_1560_9180#" "outd_diffamp_2/m1_130_8998#" 1.18885
+cap "outd_diffamp_2/m1_130_8998#" "outd_cmirror_64t_2/m1_130_5370#" 269.784
+cap "outd_diffamp_2/a_1560_9180#" "outd_cmirror_64t_2/m1_130_5370#" -2765.24
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_2/m1_130_8998#" -2.42669
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/m1_130_8998#" 775.754
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/a_1560_9180#" -1.4381
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_2306#" "outd_diffamp_1/a_1560_9180#" 5.02639
+cap "outd_diffamp_1/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 25.1298
+cap "outd_diffamp_2/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 29.6267
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_cmirror_64t_2/m1_130_5370#" -9.00684
+cap "outd_diffamp_2/a_182_9180#" "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "outd_diffamp_2/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 43.2573
+cap "outd_diffamp_1/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -104.618
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_1/m1_898_8998#" 0.298153
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 420.781
+cap "outd_diffamp_2/a_1560_8562#" "outd_cmirror_64t_2/m1_130_5370#" -1038.76
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/a_1560_8562#" -0.1476
+cap "outd_diffamp_1/a_1560_9180#" "outd_cmirror_64t_2/m1_130_5370#" -1196.55
+cap "outd_diffamp_2/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 113.477
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_1/a_1560_9180#" -491.999
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_1/a_1560_9180#" 205.061
+cap "outd_diffamp_1/m1_1604_8998#" "outd_cmirror_64t_2/m1_130_5370#" -294.089
+cap "outd_diffamp_2/a_182_9180#" "outd_cmirror_64t_2/m1_130_5370#" -74.4502
+cap "outd_diffamp_1/a_182_8562#" "outd_diffamp_1/a_1560_9180#" -0.0977915
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_1/m1_1604_8998#" 23.0979
+cap "outd_diffamp_1/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -111.582
+cap "outd_diffamp_1/a_182_9180#" "outd_diffamp_1/a_1560_9180#" -0.946299
+cap "outd_diffamp_1/a_1560_8562#" "outd_cmirror_64t_2/m1_130_5370#" -23.615
+cap "outd_diffamp_2/a_182_9180#" "outd_cmirror_64t_2/m1_130_5370#" -514.213
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 0.13803
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" 465.41
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_2/a_182_9180#" -67.1369
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_cmirror_64t_2/m1_130_5370#" 1.78509
+cap "outd_diffamp_2/m1_130_8998#" "outd_cmirror_64t_2/m1_130_5370#" 315.608
+cap "outd_diffamp_1/a_1560_8562#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -0.402726
+cap "outd_diffamp_2/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -14.305
+cap "outd_diffamp_1/m1_2180_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -126.799
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_2/m1_130_8998#" 103.752
+cap "outd_cmirror_64t_2/m1_130_5370#" "outd_diffamp_1/m1_2180_8998#" 282.321
+cap "outd_diffamp_2/a_182_9180#" "outd_diffamp_1/m1_2180_8998#" 41.4687
+cap "outd_cmirror_64t_2/outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_64t_2/m1_130_5370#" 1.01059
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_diffamp_2/m1_130_8998#" 0.15343
+cap "outd_diffamp_1/a_1560_8562#" "outd_diffamp_1/m1_2180_8998#" -302.4
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "outd_diffamp_1/m1_2180_8998#" -361.301
+cap "outd_diffamp_2/m1_130_8998#" "outd_diffamp_1/m1_2180_8998#" -11.4406
+cap "outd_diffamp_2/a_182_8052#" "outd_diffamp_2/a_1560_9180#" -0.110479
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_3/a_1560_8562#" -0.125795
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/m1_1604_8998#" 31.0036
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_3/m1_130_8998#" 652.015
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_3/a_1560_9180#" -1.22422
+cap "outd_diffamp_2/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 7.4537
+cap "outd_diffamp_3/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 99.307
+cap "outd_diffamp_2/a_1560_9180#" "outd_cmirror_64t_3/m1_130_5370#" -874.034
+cap "outd_diffamp_2/m1_1604_8998#" "outd_diffamp_3/m1_130_8998#" 0.592782
+cap "outd_diffamp_3/a_182_9180#" "outd_cmirror_64t_3/m1_130_5370#" -456.335
+cap "outd_diffamp_2/m1_706_8998#" "outd_diffamp_2/m1_1604_8998#" 0.63218
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_2306#" "outd_diffamp_2/a_1560_9180#" 1.34918
+cap "outd_cmirror_64t_3/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -9.00684
+cap "outd_diffamp_2/a_182_8670#" "outd_diffamp_2/a_1560_9180#" -1.06922
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/a_1560_9180#" 197.756
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_2/m1_1604_8998#" 144.83
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 420.781
+cap "outd_diffamp_3/a_182_9180#" "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "outd_cmirror_64t_3/m1_130_5370#" "outd_diffamp_3/m1_130_8998#" 198.856
+cap "outd_diffamp_2/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 29.0102
+cap "outd_diffamp_2/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -49.2645
+cap "outd_diffamp_3/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 7.96237
+cap "outd_diffamp_2/a_1560_9180#" "outd_diffamp_2/m1_1604_8998#" -36.3544
+cap "outd_diffamp_2/a_1560_9180#" "outd_diffamp_3/m1_130_8998#" 1.18885
+cap "outd_diffamp_3/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 36.2931
+cap "outd_diffamp_2/m1_2180_8998#" "outd_diffamp_2/a_1560_9180#" -625.146
+cap "outd_diffamp_2/m1_2180_8998#" "outd_diffamp_3/m1_130_8998#" -11.3548
+cap "outd_diffamp_2/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -8.18884
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_3/m1_130_8998#" -629.062
+cap "outd_diffamp_2/m1_2180_8998#" "outd_cmirror_64t_3/m1_130_5370#" 314.732
+cap "outd_diffamp_2/m1_2180_8998#" "outd_diffamp_3/a_182_9180#" 39.0283
+cap "outd_cmirror_64t_3/outd_cmirror_transistors_0/a_2_2306#" "outd_cmirror_64t_3/m1_130_5370#" 0.943131
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_cmirror_64t_3/m1_130_5370#" -3.08963
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_3/a_182_9180#" -7.44569
+cap "outd_diffamp_2/m1_2180_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -236.239
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 465.052
+cap "outd_diffamp_3/m1_130_8998#" "outd_cmirror_64t_3/m1_130_5370#" -341.108
+cap "outd_diffamp_2/a_1560_9180#" "outd_cmirror_64t_3/m1_130_5370#" -672.193
+cap "outd_diffamp_2/a_1560_9180#" "outd_diffamp_3/a_182_9180#" -64.0332
+cap "outd_diffamp_3/a_182_9180#" "outd_diffamp_3/m1_130_8998#" -1586.77
+cap "outd_diffamp_2/m1_2180_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -671.262
+cap "outd_diffamp_3/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -188.311
+cap "outd_diffamp_3/a_182_9180#" "outd_cmirror_64t_3/m1_130_5370#" 370.018
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 0.120065
+cap "outd_cmirror_64t_4/m1_130_5370#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -5.12407
+cap "outd_diffamp_3/a_1560_9180#" "outd_diffamp_3/a_182_9180#" -1.22883
+cap "m1_250_8900#" "outd_diffamp_3/m1_1604_8998#" 33.7658
+cap "outd_diffamp_3/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 109.328
+cap "outd_diffamp_3/m1_1604_8998#" "outd_cmirror_64t_4/m1_130_5370#" 165.073
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_cmirror_64t_4/li_0_0#" 231.626
+cap "outd_diffamp_3/m1_1604_8998#" "outd_cmirror_64t_4/li_0_0#" 17.2642
+cap "m1_250_8900#" "outd_diffamp_3/a_1560_9180#" 932.446
+cap "outd_diffamp_3/a_182_8052#" "outd_diffamp_3/a_1560_9180#" -0.12695
+cap "outd_diffamp_3/a_1560_9180#" "outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_2306#" 1.34918
+cap "outd_diffamp_3/m1_1604_8998#" "outd_diffamp_3/m1_514_8998#" 0.592964
+cap "outd_diffamp_3/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 36.5778
+cap "outd_diffamp_3/a_1560_9180#" "outd_cmirror_64t_4/m1_130_5370#" -537.392
+cap "outd_diffamp_3/m1_1604_8998#" "outd_diffamp_3/a_1560_9180#" 237.316
+cap "m1_250_8900#" "outd_cmirror_64t_4/m1_130_5370#" 417.58
+cap "m1_250_8900#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -0.143966
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/m1_130_8998#" 402.458
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/m1_1604_8998#" -906.547
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" -6.642
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_0/m1_130_8998#" -21.621
+cap "outd_diffamp_0/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -7.872
+cap "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 255.543
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -86.1046
+cap "outd_diffamp_0/m1_130_8998#" "outd_diffamp_0/m1_1604_8998#" -1037
+cap "outd_diffamp_0/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -91.7908
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "outd_diffamp_0/a_182_9180#" -2.214
+cap "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_1/m1_130_8998#" -35.5136
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "outd_diffamp_1/m1_130_8998#" 280.953
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "outd_diffamp_0/m1_1604_8998#" -20.9683
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -3.78378
+cap "outd_diffamp_0/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -1324.18
+cap "outd_diffamp_1/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -3.444
+cap "outd_diffamp_0/m1_2372_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 80.0515
+cap "outd_diffamp_1/m1_130_8998#" "outd_diffamp_0/m1_2372_8998#" -4.84822
+cap "outd_diffamp_1/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -7.38
+cap "outd_diffamp_1/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -4.428
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -96.0711
+cap "outd_diffamp_1/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 50.3274
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_2/m1_130_8998#" 192.023
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_2/a_182_9180#" -0.246
+cap "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_2/m1_130_8998#" -51.8004
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -4.16216
+cap "outd_diffamp_1/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" -20.9051
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "outd_diffamp_1/m1_1604_8998#" -25.1241
+cap "outd_diffamp_2/m1_130_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 200.413
+cap "outd_diffamp_2/a_1560_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -7.626
+cap "outd_diffamp_2/a_182_9180#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -7.38
+cap "outd_diffamp_2/m1_130_8998#" "outd_diffamp_1/m1_2180_8998#" 3.50472
+cap "outd_diffamp_1/m1_2180_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -122.483
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" -100.302
+cap "outd_diffamp_2/m1_706_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 210.061
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -4.16216
+cap "outd_diffamp_2/m1_706_8998#" "outd_diffamp_2/m1_1604_8998#" -16.9491
+cap "outd_diffamp_2/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -23.9992
+cap "outd_diffamp_2/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" 116.467
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" -102.114
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_3/a_1560_9180#" -7.872
+cap "outd_diffamp_2/m1_2180_8998#" "outd_diffamp_3/m1_130_8998#" 1.59955
+cap "outd_diffamp_2/m1_2180_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" -463.719
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 0.120065
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_3/m1_130_8998#" -418.026
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "outd_diffamp_3/a_182_9180#" -7.38
+cap "outd_diffamp_3/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" -13.6212
+cap "outd_diffamp_3/m1_1604_8998#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 261.846
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" -110.435
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -2184.05
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" 170.221
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -72.5128
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -616.25
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -1026.9
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -174.773
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -136.543
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 380.713
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" -304.627
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" -210.701
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 200.01
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -2700.52
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -2.78033
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" -815.893
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" 741.656
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" -401.818
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" -235.11
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -170.691
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 380.666
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" 38.9484
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" -3.39069
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 19.3457
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" -318.6
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" -199.827
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 260.483
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 6.71515
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 867.175
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" 0.125516
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" -6.40258
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 380.619
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" -314.965
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 380.278
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" 38.953
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" -165.623
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -144.229
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 3.95905
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -75.4033
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" -235.308
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 136.261
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 0.172404
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" -372.735
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" -519.42
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -24.0706
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" -165.65
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 382.43
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 380.573
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 0.476528
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -135.363
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" 0.219292
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 123.504
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 865.925
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 0.2972
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 231.69
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_n832#" 0.255843
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" 0.0372707
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" -446.264
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" 0.0786278
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" 238.584
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" 0.264898
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_n832#" 0.208955
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_n832#" 0.069572
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" 210.008
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" 0.125516
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" 238.584
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" 0.232597
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 0.162066
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_n832#" 0.101873
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" 184.033
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 0.215685
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 0.172404
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 231.946
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_n832#" 0.118785
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 281.608
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_n832#" 0.115178
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 0.24013
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_n832#" 0.219292
+cap "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" 544.037
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_n832#" 148256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 92087096 -16752 239775208 -20480 -2974450 0 1054200 -2140 0 0 0 0
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_diffamp_3/m1_1090_8998#"
+merge "outd_diffamp_3/m1_1090_8998#" "outd_diffamp_3/m1_898_8998#"
+merge "outd_diffamp_3/m1_898_8998#" "outd_diffamp_3/m1_706_8998#"
+merge "outd_diffamp_3/m1_706_8998#" "outd_diffamp_3/m1_514_8998#"
+merge "outd_diffamp_3/m1_514_8998#" "outd_diffamp_3/m1_322_8998#"
+merge "outd_diffamp_3/m1_322_8998#" "outd_diffamp_3/m1_130_8998#"
+merge "outd_diffamp_3/m1_130_8998#" "outd_diffamp_2/m1_1090_8998#"
+merge "outd_diffamp_2/m1_1090_8998#" "outd_diffamp_2/m1_898_8998#"
+merge "outd_diffamp_2/m1_898_8998#" "outd_diffamp_2/m1_706_8998#"
+merge "outd_diffamp_2/m1_706_8998#" "outd_diffamp_2/m1_514_8998#"
+merge "outd_diffamp_2/m1_514_8998#" "outd_diffamp_2/m1_322_8998#"
+merge "outd_diffamp_2/m1_322_8998#" "outd_diffamp_2/m1_130_8998#"
+merge "outd_diffamp_2/m1_130_8998#" "outd_diffamp_1/m1_1090_8998#"
+merge "outd_diffamp_1/m1_1090_8998#" "outd_diffamp_1/m1_898_8998#"
+merge "outd_diffamp_1/m1_898_8998#" "outd_diffamp_1/m1_706_8998#"
+merge "outd_diffamp_1/m1_706_8998#" "outd_diffamp_1/m1_514_8998#"
+merge "outd_diffamp_1/m1_514_8998#" "outd_diffamp_1/m1_322_8998#"
+merge "outd_diffamp_1/m1_322_8998#" "outd_diffamp_1/m1_130_8998#"
+merge "outd_diffamp_1/m1_130_8998#" "outd_diffamp_0/m1_1090_8998#"
+merge "outd_diffamp_0/m1_1090_8998#" "outd_diffamp_0/m1_898_8998#"
+merge "outd_diffamp_0/m1_898_8998#" "outd_diffamp_0/m1_706_8998#"
+merge "outd_diffamp_0/m1_706_8998#" "outd_diffamp_0/m1_514_8998#"
+merge "outd_diffamp_0/m1_514_8998#" "outd_diffamp_0/m1_322_8998#"
+merge "outd_diffamp_0/m1_322_8998#" "outd_diffamp_0/m1_130_8998#"
+merge "outd_diffamp_0/m1_130_8998#" "outd_diffamp_3/m1_1090_8140#"
+merge "outd_diffamp_3/m1_1090_8140#" "outd_diffamp_3/m1_898_8140#"
+merge "outd_diffamp_3/m1_898_8140#" "outd_diffamp_3/m1_706_8140#"
+merge "outd_diffamp_3/m1_706_8140#" "outd_diffamp_3/m1_514_8140#"
+merge "outd_diffamp_3/m1_514_8140#" "outd_diffamp_3/m1_322_8140#"
+merge "outd_diffamp_3/m1_322_8140#" "outd_diffamp_3/m1_130_8140#"
+merge "outd_diffamp_3/m1_130_8140#" "outd_diffamp_2/m1_1090_8140#"
+merge "outd_diffamp_2/m1_1090_8140#" "outd_diffamp_2/m1_898_8140#"
+merge "outd_diffamp_2/m1_898_8140#" "outd_diffamp_2/m1_706_8140#"
+merge "outd_diffamp_2/m1_706_8140#" "outd_diffamp_2/m1_514_8140#"
+merge "outd_diffamp_2/m1_514_8140#" "outd_diffamp_2/m1_322_8140#"
+merge "outd_diffamp_2/m1_322_8140#" "outd_diffamp_2/m1_130_8140#"
+merge "outd_diffamp_2/m1_130_8140#" "outd_diffamp_1/m1_1090_8140#"
+merge "outd_diffamp_1/m1_1090_8140#" "outd_diffamp_1/m1_898_8140#"
+merge "outd_diffamp_1/m1_898_8140#" "outd_diffamp_1/m1_706_8140#"
+merge "outd_diffamp_1/m1_706_8140#" "outd_diffamp_1/m1_514_8140#"
+merge "outd_diffamp_1/m1_514_8140#" "outd_diffamp_1/m1_322_8140#"
+merge "outd_diffamp_1/m1_322_8140#" "outd_diffamp_1/m1_130_8140#"
+merge "outd_diffamp_1/m1_130_8140#" "outd_diffamp_0/m1_1090_8140#"
+merge "outd_diffamp_0/m1_1090_8140#" "outd_diffamp_0/m1_898_8140#"
+merge "outd_diffamp_0/m1_898_8140#" "outd_diffamp_0/m1_706_8140#"
+merge "outd_diffamp_0/m1_706_8140#" "outd_diffamp_0/m1_514_8140#"
+merge "outd_diffamp_0/m1_514_8140#" "outd_diffamp_0/m1_322_8140#"
+merge "outd_diffamp_0/m1_322_8140#" "outd_diffamp_0/m1_130_8140#"
+merge "outd_diffamp_0/m1_130_8140#" "m1_370_11400#"
+merge "outd_diffamp_3/a_1560_9180#" "outd_diffamp_2/a_1560_9180#" -32070.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -40251196 -34256 -17321600 -2950 0 0 0 0 0 0 0 0
+merge "outd_diffamp_2/a_1560_9180#" "outd_diffamp_1/a_1560_9180#"
+merge "outd_diffamp_1/a_1560_9180#" "outd_diffamp_0/a_1560_9180#"
+merge "outd_diffamp_0/a_1560_9180#" "outd_diffamp_3/a_1560_8562#"
+merge "outd_diffamp_3/a_1560_8562#" "outd_diffamp_3/a_1560_8670#"
+merge "outd_diffamp_3/a_1560_8670#" "outd_diffamp_2/a_1560_8562#"
+merge "outd_diffamp_2/a_1560_8562#" "outd_diffamp_2/a_1560_8670#"
+merge "outd_diffamp_2/a_1560_8670#" "outd_diffamp_1/a_1560_8562#"
+merge "outd_diffamp_1/a_1560_8562#" "outd_diffamp_1/a_1560_8670#"
+merge "outd_diffamp_1/a_1560_8670#" "outd_diffamp_0/a_1560_8562#"
+merge "outd_diffamp_0/a_1560_8562#" "outd_diffamp_0/a_1560_8670#"
+merge "outd_diffamp_0/a_1560_8670#" "m1_1850_8370#"
+merge "outd_diffamp_3/a_182_9180#" "outd_diffamp_2/a_182_9180#" -5346.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8358992 -34304 84800 -1650 0 0 0 0 0 0 0 0
+merge "outd_diffamp_2/a_182_9180#" "outd_diffamp_1/a_182_9180#"
+merge "outd_diffamp_1/a_182_9180#" "outd_diffamp_0/a_182_9180#"
+merge "outd_diffamp_0/a_182_9180#" "outd_diffamp_3/a_182_8562#"
+merge "outd_diffamp_3/a_182_8562#" "outd_diffamp_3/a_182_8670#"
+merge "outd_diffamp_3/a_182_8670#" "outd_diffamp_2/a_182_8562#"
+merge "outd_diffamp_2/a_182_8562#" "outd_diffamp_2/a_182_8670#"
+merge "outd_diffamp_2/a_182_8670#" "outd_diffamp_1/a_182_8562#"
+merge "outd_diffamp_1/a_182_8562#" "outd_diffamp_1/a_182_8670#"
+merge "outd_diffamp_1/a_182_8670#" "outd_diffamp_0/a_182_8562#"
+merge "outd_diffamp_0/a_182_8562#" "outd_diffamp_0/a_182_8670#"
+merge "outd_diffamp_0/a_182_8670#" "m1_250_8900#"
+merge "outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "outd_diffamp_3/m1_2468_8380#" 449622 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -19757440 -84528 0 0 1159929168 -41312 -47632850 -11140 0 0 0 0 0 0
+merge "outd_diffamp_3/m1_2468_8380#" "outd_diffamp_3/m1_2276_8380#"
+merge "outd_diffamp_3/m1_2276_8380#" "outd_diffamp_3/m1_2468_8758#"
+merge "outd_diffamp_3/m1_2468_8758#" "outd_diffamp_3/m1_2276_8758#"
+merge "outd_diffamp_3/m1_2276_8758#" "outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#"
+merge "outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "outd_diffamp_3/m1_2084_8380#"
+merge "outd_diffamp_3/m1_2084_8380#" "outd_diffamp_3/m1_1892_8380#"
+merge "outd_diffamp_3/m1_1892_8380#" "outd_diffamp_3/m1_1700_8380#"
+merge "outd_diffamp_3/m1_1700_8380#" "outd_diffamp_3/m1_1508_8380#"
+merge "outd_diffamp_3/m1_1508_8380#" "outd_diffamp_3/m1_1186_8380#"
+merge "outd_diffamp_3/m1_1186_8380#" "outd_diffamp_3/m1_994_8380#"
+merge "outd_diffamp_3/m1_994_8380#" "outd_diffamp_3/m1_2084_8758#"
+merge "outd_diffamp_3/m1_2084_8758#" "outd_diffamp_3/m1_1892_8758#"
+merge "outd_diffamp_3/m1_1892_8758#" "outd_diffamp_3/m1_1700_8758#"
+merge "outd_diffamp_3/m1_1700_8758#" "outd_diffamp_3/m1_1508_8758#"
+merge "outd_diffamp_3/m1_1508_8758#" "outd_diffamp_3/m1_1186_8758#"
+merge "outd_diffamp_3/m1_1186_8758#" "outd_diffamp_3/m1_994_8758#"
+merge "outd_diffamp_3/m1_994_8758#" "outd_diffamp_3/m1_802_8380#"
+merge "outd_diffamp_3/m1_802_8380#" "outd_diffamp_3/m1_610_8380#"
+merge "outd_diffamp_3/m1_610_8380#" "outd_diffamp_3/m1_418_8380#"
+merge "outd_diffamp_3/m1_418_8380#" "outd_diffamp_3/m1_226_8380#"
+merge "outd_diffamp_3/m1_226_8380#" "outd_diffamp_3/m1_802_8758#"
+merge "outd_diffamp_3/m1_802_8758#" "outd_diffamp_3/m1_610_8758#"
+merge "outd_diffamp_3/m1_610_8758#" "outd_diffamp_3/m1_418_8758#"
+merge "outd_diffamp_3/m1_418_8758#" "outd_diffamp_3/m1_226_8758#"
+merge "outd_diffamp_3/m1_226_8758#" "outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#"
+merge "outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_2/m1_2468_8380#"
+merge "outd_diffamp_2/m1_2468_8380#" "outd_diffamp_2/m1_2468_8758#"
+merge "outd_diffamp_2/m1_2468_8758#" "outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#"
+merge "outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "outd_diffamp_2/m1_2276_8380#"
+merge "outd_diffamp_2/m1_2276_8380#" "outd_diffamp_2/m1_2084_8380#"
+merge "outd_diffamp_2/m1_2084_8380#" "outd_diffamp_2/m1_1892_8380#"
+merge "outd_diffamp_2/m1_1892_8380#" "outd_diffamp_2/m1_1700_8380#"
+merge "outd_diffamp_2/m1_1700_8380#" "outd_diffamp_2/m1_1508_8380#"
+merge "outd_diffamp_2/m1_1508_8380#" "outd_diffamp_2/m1_1186_8380#"
+merge "outd_diffamp_2/m1_1186_8380#" "outd_diffamp_2/m1_2276_8758#"
+merge "outd_diffamp_2/m1_2276_8758#" "outd_diffamp_2/m1_2084_8758#"
+merge "outd_diffamp_2/m1_2084_8758#" "outd_diffamp_2/m1_1892_8758#"
+merge "outd_diffamp_2/m1_1892_8758#" "outd_diffamp_2/m1_1700_8758#"
+merge "outd_diffamp_2/m1_1700_8758#" "outd_diffamp_2/m1_1508_8758#"
+merge "outd_diffamp_2/m1_1508_8758#" "outd_diffamp_2/m1_1186_8758#"
+merge "outd_diffamp_2/m1_1186_8758#" "outd_diffamp_2/m1_994_8380#"
+merge "outd_diffamp_2/m1_994_8380#" "outd_diffamp_2/m1_802_8380#"
+merge "outd_diffamp_2/m1_802_8380#" "outd_diffamp_2/m1_610_8380#"
+merge "outd_diffamp_2/m1_610_8380#" "outd_diffamp_2/m1_418_8380#"
+merge "outd_diffamp_2/m1_418_8380#" "outd_diffamp_2/m1_226_8380#"
+merge "outd_diffamp_2/m1_226_8380#" "outd_diffamp_2/m1_994_8758#"
+merge "outd_diffamp_2/m1_994_8758#" "outd_diffamp_2/m1_802_8758#"
+merge "outd_diffamp_2/m1_802_8758#" "outd_diffamp_2/m1_610_8758#"
+merge "outd_diffamp_2/m1_610_8758#" "outd_diffamp_2/m1_418_8758#"
+merge "outd_diffamp_2/m1_418_8758#" "outd_diffamp_2/m1_226_8758#"
+merge "outd_diffamp_2/m1_226_8758#" "outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#"
+merge "outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#"
+merge "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_n659_n683#" "outd_diffamp_1/m1_2468_8380#"
+merge "outd_diffamp_1/m1_2468_8380#" "outd_diffamp_1/m1_2276_8380#"
+merge "outd_diffamp_1/m1_2276_8380#" "outd_diffamp_1/m1_2084_8380#"
+merge "outd_diffamp_1/m1_2084_8380#" "outd_diffamp_1/m1_1892_8380#"
+merge "outd_diffamp_1/m1_1892_8380#" "outd_diffamp_1/m1_1700_8380#"
+merge "outd_diffamp_1/m1_1700_8380#" "outd_diffamp_1/m1_1508_8380#"
+merge "outd_diffamp_1/m1_1508_8380#" "outd_diffamp_1/m1_1186_8380#"
+merge "outd_diffamp_1/m1_1186_8380#" "outd_diffamp_1/m1_2468_8758#"
+merge "outd_diffamp_1/m1_2468_8758#" "outd_diffamp_1/m1_2276_8758#"
+merge "outd_diffamp_1/m1_2276_8758#" "outd_diffamp_1/m1_2084_8758#"
+merge "outd_diffamp_1/m1_2084_8758#" "outd_diffamp_1/m1_1892_8758#"
+merge "outd_diffamp_1/m1_1892_8758#" "outd_diffamp_1/m1_1700_8758#"
+merge "outd_diffamp_1/m1_1700_8758#" "outd_diffamp_1/m1_1508_8758#"
+merge "outd_diffamp_1/m1_1508_8758#" "outd_diffamp_1/m1_1186_8758#"
+merge "outd_diffamp_1/m1_1186_8758#" "outd_diffamp_1/m1_994_8380#"
+merge "outd_diffamp_1/m1_994_8380#" "outd_diffamp_1/m1_802_8380#"
+merge "outd_diffamp_1/m1_802_8380#" "outd_diffamp_1/m1_610_8380#"
+merge "outd_diffamp_1/m1_610_8380#" "outd_diffamp_1/m1_418_8380#"
+merge "outd_diffamp_1/m1_418_8380#" "outd_diffamp_1/m1_226_8380#"
+merge "outd_diffamp_1/m1_226_8380#" "outd_diffamp_1/m1_994_8758#"
+merge "outd_diffamp_1/m1_994_8758#" "outd_diffamp_1/m1_802_8758#"
+merge "outd_diffamp_1/m1_802_8758#" "outd_diffamp_1/m1_610_8758#"
+merge "outd_diffamp_1/m1_610_8758#" "outd_diffamp_1/m1_418_8758#"
+merge "outd_diffamp_1/m1_418_8758#" "outd_diffamp_1/m1_226_8758#"
+merge "outd_diffamp_1/m1_226_8758#" "outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#"
+merge "outd_diffamp_1/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "outd_diffamp_0/m1_2468_8380#"
+merge "outd_diffamp_0/m1_2468_8380#" "outd_diffamp_0/m1_2276_8380#"
+merge "outd_diffamp_0/m1_2276_8380#" "outd_diffamp_0/m1_2084_8380#"
+merge "outd_diffamp_0/m1_2084_8380#" "outd_diffamp_0/m1_1892_8380#"
+merge "outd_diffamp_0/m1_1892_8380#" "outd_diffamp_0/m1_1700_8380#"
+merge "outd_diffamp_0/m1_1700_8380#" "outd_diffamp_0/m1_1508_8380#"
+merge "outd_diffamp_0/m1_1508_8380#" "outd_diffamp_0/m1_1186_8380#"
+merge "outd_diffamp_0/m1_1186_8380#" "outd_diffamp_0/m1_994_8380#"
+merge "outd_diffamp_0/m1_994_8380#" "outd_diffamp_0/m1_802_8380#"
+merge "outd_diffamp_0/m1_802_8380#" "outd_diffamp_0/m1_610_8380#"
+merge "outd_diffamp_0/m1_610_8380#" "outd_diffamp_0/m1_418_8380#"
+merge "outd_diffamp_0/m1_418_8380#" "outd_diffamp_0/m1_226_8380#"
+merge "outd_diffamp_0/m1_226_8380#" "outd_diffamp_0/m1_2468_8758#"
+merge "outd_diffamp_0/m1_2468_8758#" "outd_diffamp_0/m1_2276_8758#"
+merge "outd_diffamp_0/m1_2276_8758#" "outd_diffamp_0/m1_2084_8758#"
+merge "outd_diffamp_0/m1_2084_8758#" "outd_diffamp_0/m1_1892_8758#"
+merge "outd_diffamp_0/m1_1892_8758#" "outd_diffamp_0/m1_1700_8758#"
+merge "outd_diffamp_0/m1_1700_8758#" "outd_diffamp_0/m1_1508_8758#"
+merge "outd_diffamp_0/m1_1508_8758#" "outd_diffamp_0/m1_1186_8758#"
+merge "outd_diffamp_0/m1_1186_8758#" "outd_diffamp_0/m1_994_8758#"
+merge "outd_diffamp_0/m1_994_8758#" "outd_diffamp_0/m1_802_8758#"
+merge "outd_diffamp_0/m1_802_8758#" "outd_diffamp_0/m1_610_8758#"
+merge "outd_diffamp_0/m1_610_8758#" "outd_diffamp_0/m1_418_8758#"
+merge "outd_diffamp_0/m1_418_8758#" "outd_diffamp_0/m1_226_8758#"
+merge "outd_diffamp_0/m1_226_8758#" "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#"
+merge "outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n659_n683#" "w_266_8236#"
+merge "w_266_8236#" "outd_cmirror_64t_4/m1_130_5370#"
+merge "outd_cmirror_64t_4/m1_130_5370#" "outd_cmirror_64t_3/m1_130_5370#"
+merge "outd_cmirror_64t_3/m1_130_5370#" "outd_cmirror_64t_2/m1_130_5370#"
+merge "outd_cmirror_64t_2/m1_130_5370#" "outd_cmirror_64t_1/m1_130_5370#"
+merge "outd_cmirror_64t_1/m1_130_5370#" "outd_cmirror_64t_0/m1_130_5370#"
+merge "outd_cmirror_64t_0/m1_130_5370#" "cmirror_out"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n703_n962#" -165278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -132120572 -197640 0 0 0 0 -5325960 -10810 0 0 0 0 0 0
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n703_n962#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_cmirror_64t_4/VSUBS"
+merge "outd_cmirror_64t_4/VSUBS" "outd_cmirror_64t_3/VSUBS"
+merge "outd_cmirror_64t_3/VSUBS" "outd_cmirror_64t_2/VSUBS"
+merge "outd_cmirror_64t_2/VSUBS" "outd_cmirror_64t_1/VSUBS"
+merge "outd_cmirror_64t_1/VSUBS" "outd_cmirror_64t_0/VSUBS"
+merge "outd_cmirror_64t_0/VSUBS" "VSUBS"
+merge "VSUBS" "outd_cmirror_64t_4/li_0_0#"
+merge "outd_cmirror_64t_4/li_0_0#" "li_250_11940#"
+merge "li_250_11940#" "outd_cmirror_64t_3/li_0_0#"
+merge "outd_cmirror_64t_3/li_0_0#" "outd_cmirror_64t_2/li_0_0#"
+merge "outd_cmirror_64t_2/li_0_0#" "outd_cmirror_64t_1/li_0_0#"
+merge "outd_cmirror_64t_1/li_0_0#" "outd_cmirror_64t_0/li_0_0#"
+merge "outd_cmirror_64t_0/li_0_0#" "VN"
+merge "outd_cmirror_64t_4/m1_220_5610#" "outd_cmirror_64t_3/m1_220_5610#" -3492.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7481560 -3520 0 0 0 0 0 0 0 0
+merge "outd_cmirror_64t_3/m1_220_5610#" "m2_10150_7300#"
+merge "m2_10150_7300#" "outd_cmirror_64t_2/m1_220_5610#"
+merge "outd_cmirror_64t_2/m1_220_5610#" "m2_7240_7300#"
+merge "m2_7240_7300#" "outd_cmirror_64t_1/m1_220_5610#"
+merge "outd_cmirror_64t_1/m1_220_5610#" "m2_4420_7300#"
+merge "m2_4420_7300#" "outd_cmirror_64t_0/m1_220_5610#"
+merge "outd_cmirror_64t_0/m1_220_5610#" "m2_1580_7300#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_n832#" 226673 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 98443996 -16752 382250384 -20544 -3427250 0 -3986400 0 0 0 0 0
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_400#" "outd_diffamp_3/m1_2564_8998#"
+merge "outd_diffamp_3/m1_2564_8998#" "outd_diffamp_3/m1_2372_8998#"
+merge "outd_diffamp_3/m1_2372_8998#" "outd_diffamp_3/m1_2180_8998#"
+merge "outd_diffamp_3/m1_2180_8998#" "outd_diffamp_3/m1_1988_8998#"
+merge "outd_diffamp_3/m1_1988_8998#" "outd_diffamp_3/m1_1796_8998#"
+merge "outd_diffamp_3/m1_1796_8998#" "outd_diffamp_3/m1_1604_8998#"
+merge "outd_diffamp_3/m1_1604_8998#" "outd_diffamp_2/m1_2564_8998#"
+merge "outd_diffamp_2/m1_2564_8998#" "outd_diffamp_2/m1_2372_8998#"
+merge "outd_diffamp_2/m1_2372_8998#" "outd_diffamp_2/m1_2180_8998#"
+merge "outd_diffamp_2/m1_2180_8998#" "outd_diffamp_2/m1_1988_8998#"
+merge "outd_diffamp_2/m1_1988_8998#" "outd_diffamp_2/m1_1796_8998#"
+merge "outd_diffamp_2/m1_1796_8998#" "outd_diffamp_2/m1_1604_8998#"
+merge "outd_diffamp_2/m1_1604_8998#" "outd_diffamp_1/m1_2564_8998#"
+merge "outd_diffamp_1/m1_2564_8998#" "outd_diffamp_1/m1_2372_8998#"
+merge "outd_diffamp_1/m1_2372_8998#" "outd_diffamp_1/m1_2180_8998#"
+merge "outd_diffamp_1/m1_2180_8998#" "outd_diffamp_1/m1_1988_8998#"
+merge "outd_diffamp_1/m1_1988_8998#" "outd_diffamp_1/m1_1796_8998#"
+merge "outd_diffamp_1/m1_1796_8998#" "outd_diffamp_1/m1_1604_8998#"
+merge "outd_diffamp_1/m1_1604_8998#" "outd_diffamp_0/m1_2564_8998#"
+merge "outd_diffamp_0/m1_2564_8998#" "outd_diffamp_0/m1_2372_8998#"
+merge "outd_diffamp_0/m1_2372_8998#" "outd_diffamp_0/m1_2180_8998#"
+merge "outd_diffamp_0/m1_2180_8998#" "outd_diffamp_0/m1_1988_8998#"
+merge "outd_diffamp_0/m1_1988_8998#" "outd_diffamp_0/m1_1796_8998#"
+merge "outd_diffamp_0/m1_1796_8998#" "outd_diffamp_0/m1_1604_8998#"
+merge "outd_diffamp_0/m1_1604_8998#" "outd_diffamp_3/m1_2564_8140#"
+merge "outd_diffamp_3/m1_2564_8140#" "outd_diffamp_3/m1_2372_8140#"
+merge "outd_diffamp_3/m1_2372_8140#" "outd_diffamp_3/m1_2180_8140#"
+merge "outd_diffamp_3/m1_2180_8140#" "outd_diffamp_3/m1_1988_8140#"
+merge "outd_diffamp_3/m1_1988_8140#" "outd_diffamp_3/m1_1796_8140#"
+merge "outd_diffamp_3/m1_1796_8140#" "outd_diffamp_3/m1_1604_8140#"
+merge "outd_diffamp_3/m1_1604_8140#" "outd_diffamp_2/m1_2564_8140#"
+merge "outd_diffamp_2/m1_2564_8140#" "outd_diffamp_2/m1_2372_8140#"
+merge "outd_diffamp_2/m1_2372_8140#" "outd_diffamp_2/m1_2180_8140#"
+merge "outd_diffamp_2/m1_2180_8140#" "outd_diffamp_2/m1_1988_8140#"
+merge "outd_diffamp_2/m1_1988_8140#" "outd_diffamp_2/m1_1796_8140#"
+merge "outd_diffamp_2/m1_1796_8140#" "outd_diffamp_2/m1_1604_8140#"
+merge "outd_diffamp_2/m1_1604_8140#" "outd_diffamp_1/m1_2564_8140#"
+merge "outd_diffamp_1/m1_2564_8140#" "outd_diffamp_1/m1_2372_8140#"
+merge "outd_diffamp_1/m1_2372_8140#" "outd_diffamp_1/m1_2180_8140#"
+merge "outd_diffamp_1/m1_2180_8140#" "outd_diffamp_1/m1_1988_8140#"
+merge "outd_diffamp_1/m1_1988_8140#" "outd_diffamp_1/m1_1796_8140#"
+merge "outd_diffamp_1/m1_1796_8140#" "outd_diffamp_1/m1_1604_8140#"
+merge "outd_diffamp_1/m1_1604_8140#" "outd_diffamp_0/m1_2564_8140#"
+merge "outd_diffamp_0/m1_2564_8140#" "outd_diffamp_0/m1_2372_8140#"
+merge "outd_diffamp_0/m1_2372_8140#" "outd_diffamp_0/m1_2180_8140#"
+merge "outd_diffamp_0/m1_2180_8140#" "outd_diffamp_0/m1_1988_8140#"
+merge "outd_diffamp_0/m1_1988_8140#" "outd_diffamp_0/m1_1796_8140#"
+merge "outd_diffamp_0/m1_1796_8140#" "outd_diffamp_0/m1_1604_8140#"
+merge "outd_diffamp_0/m1_1604_8140#" "m1_2350_11400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_15/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 38342.9 0 0 690900 0 -145860 0 0 0 -3047222 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3056310 0 87148140 -26528 -10624800 0 -10253000 0 0 0 0 0 0 0
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_10/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_7/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_6/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_3/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_2/a_n573_400#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_9/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_4/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_5/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_1/a_n573_n832#" "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#"
+merge "sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_n832#" "dw_60_8030#"
+merge "outd_cmirror_64t_4/m1_0_80#" "outd_cmirror_64t_3/m1_0_80#" -305811 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -479144440 -40160 0 0 0 0 0 0 0 0 0 0
+merge "outd_cmirror_64t_3/m1_0_80#" "outd_cmirror_64t_2/m1_0_80#"
+merge "outd_cmirror_64t_2/m1_0_80#" "outd_cmirror_64t_1/m1_0_80#"
+merge "outd_cmirror_64t_1/m1_0_80#" "outd_cmirror_64t_0/m1_0_80#"
diff --git a/mag/outd/outd_stage2.mag b/mag/outd/outd_stage2.mag
new file mode 100644
index 0000000..e870eee
--- /dev/null
+++ b/mag/outd/outd_stage2.mag
@@ -0,0 +1,820 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< dnwell >>
+rect 60 8030 12100 9910
+<< nwell >>
+rect -20 9704 12180 9990
+rect -20 8236 266 9704
+rect 11894 8236 12180 9704
+rect -20 7950 12180 8236
+<< pwell >>
+rect 3000 11360 3030 11440
+<< nsubdiff >>
+rect 17 9933 12143 9953
+rect 17 9899 97 9933
+rect 12063 9899 12143 9933
+rect 17 9879 12143 9899
+rect 17 9873 91 9879
+rect 17 8067 37 9873
+rect 71 8067 91 9873
+rect 17 8061 91 8067
+rect 12069 9873 12143 9879
+rect 12069 8067 12089 9873
+rect 12123 8067 12143 9873
+rect 12069 8061 12143 8067
+rect 17 8041 12143 8061
+rect 17 8007 97 8041
+rect 12063 8007 12143 8041
+rect 17 7987 12143 8007
+<< nsubdiffcont >>
+rect 97 9899 12063 9933
+rect 37 8067 71 9873
+rect 12089 8067 12123 9873
+rect 97 8007 12063 8041
+<< locali >>
+rect 1640 12030 1740 13940
+rect 3100 12030 3200 13940
+rect 4570 12030 4670 13940
+rect 6030 12030 6130 13940
+rect 7490 12030 7600 13940
+rect 8960 12030 9070 13940
+rect 10430 12030 10540 13940
+rect 11880 12030 12160 13940
+rect 250 11940 12160 12030
+rect 1640 10740 1740 11940
+rect 1630 10700 1740 10740
+rect 1630 10040 1730 10700
+rect 3100 10040 3200 11940
+rect 4570 10750 4670 11940
+rect 4560 10040 4670 10750
+rect 6030 10750 6130 11940
+rect 6030 10040 6140 10750
+rect 7490 10040 7600 11940
+rect 8960 10040 9070 11940
+rect 10430 10750 10540 11940
+rect 10420 10700 10540 10750
+rect 10420 10040 10530 10700
+rect 11880 10300 12160 11940
+rect 11880 10040 12510 10300
+rect 50 9933 1460 9950
+rect 1950 9933 4350 9950
+rect 4900 9933 7270 9950
+rect 7820 9933 10190 9950
+rect 10740 9933 12120 9950
+rect 37 9899 97 9933
+rect 12063 9899 12123 9933
+rect 37 9873 71 9899
+rect 12089 9873 12123 9899
+rect 300 9620 11860 9690
+rect 300 8320 350 9620
+rect 1630 9250 1730 9620
+rect 1630 8320 1730 8690
+rect 3020 8320 3280 9620
+rect 4560 9250 4660 9620
+rect 4560 8320 4660 8690
+rect 5950 8320 6210 9620
+rect 7490 9250 7590 9620
+rect 7490 8320 7590 8690
+rect 8880 8320 9140 9620
+rect 10420 9250 10520 9620
+rect 10420 8320 10520 8690
+rect 11810 8320 11860 9620
+rect 300 8250 11860 8320
+rect 37 8041 71 8067
+rect 12089 8041 12123 8067
+rect 37 8007 97 8041
+rect 12063 8007 12123 8041
+rect 12250 7990 12510 10040
+rect 12250 7900 13370 7990
+rect 12420 7890 13370 7900
+rect 13210 5200 13360 7890
+<< viali >>
+rect 1460 9933 1950 9970
+rect 4350 9933 4900 9960
+rect 7270 9933 7820 9960
+rect 10190 9933 10740 9960
+rect 1460 9899 1950 9933
+rect 4350 9899 4900 9933
+rect 7270 9899 7820 9933
+rect 10190 9899 10740 9933
+rect 1460 9880 1950 9899
+rect 4350 9880 4900 9899
+rect 7270 9880 7820 9899
+rect 10190 9880 10740 9899
+rect 1620 8690 1750 9250
+rect 4550 8690 4680 9250
+rect 7480 8690 7610 9250
+rect 10410 8690 10540 9250
+<< metal1 >>
+rect 1100 13380 1110 13820
+rect 2260 13380 2270 13820
+rect 4030 13380 4040 13820
+rect 5190 13380 5200 13820
+rect 6960 13380 6970 13820
+rect 8120 13380 8130 13820
+rect 9890 13380 9900 13820
+rect 11050 13380 11060 13820
+rect 370 11400 380 12580
+rect 1010 11400 1020 12580
+rect 2350 11400 2360 12580
+rect 2990 11400 3000 12580
+rect 3300 11400 3310 12580
+rect 3940 11400 3950 12580
+rect 5280 11400 5290 12580
+rect 5920 11400 5930 12580
+rect 6230 11400 6240 12580
+rect 6870 11400 6880 12580
+rect 8210 11400 8220 12580
+rect 8850 11400 8860 12580
+rect 9160 11400 9170 12580
+rect 9800 11400 9810 12580
+rect 11140 11400 11150 12580
+rect 11780 11400 11790 12580
+rect 1100 10160 1110 10600
+rect 2260 10160 2270 10600
+rect 4030 10160 4040 10600
+rect 5190 10160 5200 10600
+rect 6960 10160 6970 10600
+rect 8120 10160 8130 10600
+rect 9890 10160 9900 10600
+rect 11050 10160 11060 10600
+rect 1460 9976 1950 10160
+rect 1448 9970 1962 9976
+rect 1448 9880 1460 9970
+rect 1950 9880 1962 9970
+rect 4350 9966 4900 10160
+rect 7270 9966 7820 10160
+rect 10190 9966 10740 10160
+rect 1448 9874 1962 9880
+rect 4338 9960 4912 9966
+rect 4338 9880 4350 9960
+rect 4900 9880 4912 9960
+rect 4338 9874 4912 9880
+rect 7258 9960 7832 9966
+rect 7258 9880 7270 9960
+rect 7820 9880 7832 9960
+rect 7258 9874 7832 9880
+rect 10178 9960 10752 9966
+rect 10178 9880 10190 9960
+rect 10740 9880 10752 9960
+rect 10178 9874 10752 9880
+rect 330 9510 1510 9570
+rect 1850 9510 3040 9570
+rect 330 9050 400 9510
+rect 1614 9250 1756 9262
+rect 330 9040 1510 9050
+rect 250 8900 260 9040
+rect 390 8990 1510 9040
+rect 390 8950 400 8990
+rect 390 8900 1510 8950
+rect 330 8890 1510 8900
+rect 330 8430 400 8890
+rect 1610 8690 1620 9250
+rect 1750 8690 1760 9250
+rect 2970 9040 3040 9510
+rect 3260 9510 4440 9570
+rect 4780 9510 5970 9570
+rect 3260 9050 3330 9510
+rect 4544 9250 4686 9262
+rect 3260 9040 4440 9050
+rect 1850 8980 2980 9040
+rect 2970 8950 2980 8980
+rect 1850 8900 2980 8950
+rect 3110 8900 3120 9040
+rect 3180 8900 3190 9040
+rect 3320 8990 4440 9040
+rect 3320 8950 3330 8990
+rect 3320 8900 4440 8950
+rect 1850 8890 3040 8900
+rect 1614 8678 1756 8690
+rect 2970 8430 3040 8890
+rect 330 8370 1510 8430
+rect 1850 8370 3040 8430
+rect 3260 8890 4440 8900
+rect 3260 8430 3330 8890
+rect 4540 8690 4550 9250
+rect 4680 8690 4690 9250
+rect 5900 9040 5970 9510
+rect 6190 9510 7370 9570
+rect 7710 9510 8900 9570
+rect 6190 9050 6260 9510
+rect 7474 9250 7616 9262
+rect 6190 9040 7370 9050
+rect 4780 8980 5910 9040
+rect 5900 8950 5910 8980
+rect 4780 8900 5910 8950
+rect 6040 8900 6050 9040
+rect 6110 8900 6120 9040
+rect 6250 8990 7370 9040
+rect 6250 8950 6260 8990
+rect 6250 8900 7370 8950
+rect 4780 8890 5970 8900
+rect 4544 8678 4686 8690
+rect 5900 8430 5970 8890
+rect 3260 8370 4440 8430
+rect 4780 8370 5970 8430
+rect 6190 8890 7370 8900
+rect 6190 8430 6260 8890
+rect 7470 8690 7480 9250
+rect 7610 8690 7620 9250
+rect 8830 9040 8900 9510
+rect 9120 9510 10300 9570
+rect 10640 9510 11830 9570
+rect 9120 9050 9190 9510
+rect 10404 9250 10546 9262
+rect 9120 9040 10300 9050
+rect 7710 8980 8840 9040
+rect 8830 8950 8840 8980
+rect 7710 8900 8840 8950
+rect 8970 8900 8980 9040
+rect 9040 8910 9050 9040
+rect 9180 8990 10300 9040
+rect 9180 8950 9190 8990
+rect 9180 8910 10300 8950
+rect 7710 8890 8900 8900
+rect 7474 8678 7616 8690
+rect 8830 8430 8900 8890
+rect 6190 8370 7370 8430
+rect 7710 8370 8900 8430
+rect 9120 8890 10300 8910
+rect 9120 8430 9190 8890
+rect 10400 8690 10410 9250
+rect 10540 8690 10550 9250
+rect 11760 9040 11830 9510
+rect 10640 8980 11770 9040
+rect 11760 8950 11770 8980
+rect 10640 8900 11770 8950
+rect 11900 8900 11910 9040
+rect 10640 8890 11830 8900
+rect 10404 8678 10546 8690
+rect 11760 8430 11830 8890
+rect 9120 8370 10300 8430
+rect 10640 8370 11830 8430
+<< via1 >>
+rect 1110 13380 2260 13820
+rect 4040 13380 5190 13820
+rect 6970 13380 8120 13820
+rect 9900 13380 11050 13820
+rect 380 11400 1010 12580
+rect 2360 11400 2990 12580
+rect 3310 11400 3940 12580
+rect 5290 11400 5920 12580
+rect 6240 11400 6870 12580
+rect 8220 11400 8850 12580
+rect 9170 11400 9800 12580
+rect 11150 11400 11780 12580
+rect 1110 10160 2260 10600
+rect 4040 10160 5190 10600
+rect 6970 10160 8120 10600
+rect 9900 10160 11050 10600
+rect 260 8900 390 9040
+rect 1620 8690 1750 9250
+rect 2980 8900 3110 9040
+rect 3190 8900 3320 9040
+rect 4550 8690 4680 9250
+rect 5910 8900 6040 9040
+rect 6120 8900 6250 9040
+rect 7480 8690 7610 9250
+rect 8840 8900 8970 9040
+rect 9050 8910 9180 9040
+rect 10410 8690 10540 9250
+rect 11770 8900 11900 9040
+<< metal2 >>
+rect 1110 13820 2260 13830
+rect 1110 13370 2260 13380
+rect 4040 13820 5190 13830
+rect 4040 13370 5190 13380
+rect 6970 13820 8120 13830
+rect 6970 13370 8120 13380
+rect 9900 13820 11050 13830
+rect 9900 13370 11050 13380
+rect 380 12580 1010 12590
+rect 380 11390 1010 11400
+rect 2360 12580 2990 12590
+rect 2360 11390 2990 11400
+rect 3310 12580 3940 12590
+rect 3310 11390 3940 11400
+rect 5290 12580 5920 12590
+rect 5290 11390 5920 11400
+rect 6240 12580 6870 12590
+rect 6240 11390 6870 11400
+rect 8220 12580 8850 12590
+rect 8220 11390 8850 11400
+rect 9170 12580 9800 12590
+rect 9170 11390 9800 11400
+rect 11150 12580 11780 12590
+rect 11150 11390 11780 11400
+rect 1110 10600 2260 10610
+rect 1110 10150 2260 10160
+rect 4040 10600 5190 10610
+rect 4040 10150 5190 10160
+rect 6970 10600 8120 10610
+rect 6970 10150 8120 10160
+rect 9900 10600 11050 10610
+rect 9900 10150 11050 10160
+rect -20 9520 11910 9690
+rect 250 9040 400 9520
+rect 440 9470 1450 9480
+rect 440 9330 450 9470
+rect 1000 9330 1450 9470
+rect 440 9320 1450 9330
+rect 1910 9470 2930 9480
+rect 1910 9330 2370 9470
+rect 2920 9330 2930 9470
+rect 1910 9320 2930 9330
+rect 1620 9250 1750 9260
+rect 540 9230 1620 9240
+rect 1750 9230 2830 9240
+rect 540 9090 1100 9230
+rect 2270 9090 2830 9230
+rect 540 9080 1620 9090
+rect 250 8900 260 9040
+rect 390 8900 400 9040
+rect 250 8890 400 8900
+rect 540 8850 1620 8860
+rect 1750 9080 2830 9090
+rect 2980 9040 3110 9050
+rect 3180 9040 3330 9520
+rect 3370 9470 4380 9480
+rect 3370 9330 3380 9470
+rect 3930 9330 4380 9470
+rect 3370 9320 4380 9330
+rect 4840 9470 5860 9480
+rect 4840 9330 5300 9470
+rect 5850 9330 5860 9470
+rect 4840 9320 5860 9330
+rect 4550 9250 4680 9260
+rect 3470 9230 4550 9240
+rect 4680 9230 5760 9240
+rect 3470 9090 4030 9230
+rect 5200 9090 5760 9230
+rect 3470 9080 4550 9090
+rect 2970 8900 2980 9040
+rect 3110 8900 3120 9040
+rect 1750 8850 2830 8860
+rect 540 8710 1100 8850
+rect 2270 8710 2830 8850
+rect 540 8700 1620 8710
+rect 1750 8700 2830 8710
+rect 1620 8680 1750 8690
+rect 440 8610 1450 8620
+rect 440 8470 450 8610
+rect 1000 8470 1450 8610
+rect 440 8460 1450 8470
+rect 1910 8610 2930 8620
+rect 1910 8470 2370 8610
+rect 2920 8470 2930 8610
+rect 1910 8460 2930 8470
+rect 2970 8420 3120 8900
+rect 3180 8900 3190 9040
+rect 3320 8900 3330 9040
+rect 3180 8890 3330 8900
+rect 3470 8850 4550 8860
+rect 4680 9080 5760 9090
+rect 5910 9040 6040 9050
+rect 6110 9040 6260 9520
+rect 6300 9470 7310 9480
+rect 6300 9330 6310 9470
+rect 6860 9330 7310 9470
+rect 6300 9320 7310 9330
+rect 7770 9470 8790 9480
+rect 7770 9330 8230 9470
+rect 8780 9330 8790 9470
+rect 7770 9320 8790 9330
+rect 7480 9250 7610 9260
+rect 6400 9230 7480 9240
+rect 7610 9230 8690 9240
+rect 6400 9090 6960 9230
+rect 8130 9090 8690 9230
+rect 6400 9080 7480 9090
+rect 5900 8900 5910 9040
+rect 6040 8900 6050 9040
+rect 4680 8850 5760 8860
+rect 3470 8710 4030 8850
+rect 5200 8710 5760 8850
+rect 3470 8700 4550 8710
+rect 4680 8700 5760 8710
+rect 4550 8680 4680 8690
+rect 3370 8610 4380 8620
+rect 3370 8470 3380 8610
+rect 3930 8470 4380 8610
+rect 3370 8460 4380 8470
+rect 4840 8610 5860 8620
+rect 4840 8470 5300 8610
+rect 5850 8470 5860 8610
+rect 4840 8460 5860 8470
+rect 5900 8420 6050 8900
+rect 6110 8900 6120 9040
+rect 6250 8900 6260 9040
+rect 6110 8890 6260 8900
+rect 6400 8850 7480 8860
+rect 7610 9080 8690 9090
+rect 8840 9040 8970 9050
+rect 9040 9040 9190 9520
+rect 9230 9470 10240 9480
+rect 9230 9330 9240 9470
+rect 9790 9330 10240 9470
+rect 9230 9320 10240 9330
+rect 10700 9470 11720 9480
+rect 10700 9330 11160 9470
+rect 11710 9330 11720 9470
+rect 10700 9320 11720 9330
+rect 10410 9250 10540 9260
+rect 9330 9230 10410 9240
+rect 10540 9230 11620 9240
+rect 9330 9090 9890 9230
+rect 11060 9090 11620 9230
+rect 9330 9080 10410 9090
+rect 8830 8900 8840 9040
+rect 8970 8900 8980 9040
+rect 9040 8910 9050 9040
+rect 9180 8910 9190 9040
+rect 9040 8900 9190 8910
+rect 7610 8850 8690 8860
+rect 6400 8710 6960 8850
+rect 8130 8710 8690 8850
+rect 6400 8700 7480 8710
+rect 7610 8700 8690 8710
+rect 7480 8680 7610 8690
+rect 6300 8610 7310 8620
+rect 6300 8470 6310 8610
+rect 6860 8470 7310 8610
+rect 6300 8460 7310 8470
+rect 7770 8610 8790 8620
+rect 7770 8470 8230 8610
+rect 8780 8470 8790 8610
+rect 7770 8460 8790 8470
+rect 8830 8420 8980 8900
+rect 9330 8850 10410 8860
+rect 10540 9080 11620 9090
+rect 11770 9040 11900 9050
+rect 11760 8900 11770 9040
+rect 11900 8900 11910 9040
+rect 10540 8850 11620 8860
+rect 9330 8710 9890 8850
+rect 11060 8710 11620 8850
+rect 9330 8700 10410 8710
+rect 10540 8700 11620 8710
+rect 10410 8680 10540 8690
+rect 9230 8610 10240 8620
+rect 9230 8470 9240 8610
+rect 9790 8470 10240 8610
+rect 9230 8460 10240 8470
+rect 10700 8610 11720 8620
+rect 10700 8470 11160 8610
+rect 11710 8470 11720 8610
+rect 10700 8460 11720 8470
+rect 11760 8420 11910 8900
+rect -20 8250 11910 8420
+rect 1580 7300 3050 7460
+rect 4420 7300 5890 7460
+rect 7240 7300 8710 7460
+rect 10150 7300 11620 7460
+<< via2 >>
+rect 1110 13380 2260 13820
+rect 4040 13380 5190 13820
+rect 6970 13380 8120 13820
+rect 9900 13380 11050 13820
+rect 380 11400 1010 12580
+rect 2360 11400 2990 12580
+rect 3310 11400 3940 12580
+rect 5290 11400 5920 12580
+rect 6240 11400 6870 12580
+rect 8220 11400 8850 12580
+rect 9170 11400 9800 12580
+rect 11150 11400 11780 12580
+rect 1110 10160 2260 10600
+rect 4040 10160 5190 10600
+rect 6970 10160 8120 10600
+rect 9900 10160 11050 10600
+rect 450 9330 1000 9470
+rect 2370 9330 2920 9470
+rect 1100 9090 1620 9230
+rect 1620 9090 1750 9230
+rect 1750 9090 2270 9230
+rect 3380 9330 3930 9470
+rect 5300 9330 5850 9470
+rect 4030 9090 4550 9230
+rect 4550 9090 4680 9230
+rect 4680 9090 5200 9230
+rect 1100 8710 1620 8850
+rect 1620 8710 1750 8850
+rect 1750 8710 2270 8850
+rect 450 8470 1000 8610
+rect 2370 8470 2920 8610
+rect 6310 9330 6860 9470
+rect 8230 9330 8780 9470
+rect 6960 9090 7480 9230
+rect 7480 9090 7610 9230
+rect 7610 9090 8130 9230
+rect 4030 8710 4550 8850
+rect 4550 8710 4680 8850
+rect 4680 8710 5200 8850
+rect 3380 8470 3930 8610
+rect 5300 8470 5850 8610
+rect 9240 9330 9790 9470
+rect 11160 9330 11710 9470
+rect 9890 9090 10410 9230
+rect 10410 9090 10540 9230
+rect 10540 9090 11060 9230
+rect 6960 8710 7480 8850
+rect 7480 8710 7610 8850
+rect 7610 8710 8130 8850
+rect 6310 8470 6860 8610
+rect 8230 8470 8780 8610
+rect 9890 8710 10410 8850
+rect 10410 8710 10540 8850
+rect 10540 8710 11060 8850
+rect 9240 8470 9790 8610
+rect 11160 8470 11710 8610
+<< metal3 >>
+rect 210 13820 11950 14120
+rect 210 13380 1110 13820
+rect 2260 13380 4040 13820
+rect 5190 13380 6970 13820
+rect 8120 13380 9900 13820
+rect 11050 13380 11950 13820
+rect 210 12730 11950 13380
+rect 370 12580 1020 12585
+rect 370 11400 380 12580
+rect 1010 11400 1020 12580
+rect 370 11395 1020 11400
+rect 440 9470 1010 11395
+rect 1110 10605 2260 12730
+rect 2350 12580 3000 12585
+rect 2350 11400 2360 12580
+rect 2350 11390 2380 11400
+rect 2360 11360 2380 11390
+rect 2990 11360 3000 12580
+rect 3300 12580 3950 12585
+rect 3300 11400 3310 12580
+rect 3940 11400 3950 12580
+rect 3300 11395 3950 11400
+rect 1100 10600 2270 10605
+rect 1100 10160 1110 10600
+rect 2260 10160 2270 10600
+rect 1100 10155 2270 10160
+rect 440 9330 450 9470
+rect 1000 9330 1010 9470
+rect 440 8610 1010 9330
+rect 2360 9470 2930 11360
+rect 2360 9330 2370 9470
+rect 2920 9330 2930 9470
+rect 440 8470 450 8610
+rect 1000 8470 1010 8610
+rect 440 8460 1010 8470
+rect 1090 9230 2280 9240
+rect 1090 9090 1100 9230
+rect 2270 9090 2280 9230
+rect 1090 8850 2280 9090
+rect 1090 8710 1100 8850
+rect 2270 8710 2280 8850
+rect 1090 8330 2280 8710
+rect 2360 8610 2930 9330
+rect 2360 8470 2370 8610
+rect 2920 8470 2930 8610
+rect 2360 8460 2930 8470
+rect 3370 9470 3940 11395
+rect 4040 10605 5190 12730
+rect 5280 12580 5930 12585
+rect 5280 11400 5290 12580
+rect 5280 11395 5300 11400
+rect 5290 11360 5300 11395
+rect 5920 11360 5930 12580
+rect 6230 12580 6880 12585
+rect 6230 11400 6240 12580
+rect 6870 11400 6880 12580
+rect 6230 11395 6880 11400
+rect 4030 10600 5200 10605
+rect 4030 10160 4040 10600
+rect 5190 10160 5200 10600
+rect 4030 10155 5200 10160
+rect 3370 9330 3380 9470
+rect 3930 9330 3940 9470
+rect 3370 8610 3940 9330
+rect 5290 9470 5860 11360
+rect 5290 9330 5300 9470
+rect 5850 9330 5860 9470
+rect 3370 8470 3380 8610
+rect 3930 8470 3940 8610
+rect 3370 8460 3940 8470
+rect 4020 9230 5210 9240
+rect 4020 9090 4030 9230
+rect 5200 9090 5210 9230
+rect 4020 8850 5210 9090
+rect 4020 8710 4030 8850
+rect 5200 8710 5210 8850
+rect 4020 8330 5210 8710
+rect 5290 8610 5860 9330
+rect 5290 8470 5300 8610
+rect 5850 8470 5860 8610
+rect 5290 8460 5860 8470
+rect 6300 9470 6870 11395
+rect 6970 10605 8120 12730
+rect 8210 12580 8860 12585
+rect 8210 11360 8220 12580
+rect 8850 11400 8860 12580
+rect 8840 11395 8860 11400
+rect 9160 12580 9810 12585
+rect 9160 11400 9170 12580
+rect 9800 11400 9810 12580
+rect 9160 11395 9810 11400
+rect 8840 11360 8850 11395
+rect 6960 10600 8130 10605
+rect 6960 10160 6970 10600
+rect 8120 10160 8130 10600
+rect 6960 10155 8130 10160
+rect 6300 9330 6310 9470
+rect 6860 9330 6870 9470
+rect 6300 8610 6870 9330
+rect 8220 9470 8790 11360
+rect 8220 9330 8230 9470
+rect 8780 9330 8790 9470
+rect 6300 8470 6310 8610
+rect 6860 8470 6870 8610
+rect 6300 8460 6870 8470
+rect 6950 9230 8140 9240
+rect 6950 9090 6960 9230
+rect 8130 9090 8140 9230
+rect 6950 8850 8140 9090
+rect 6950 8710 6960 8850
+rect 8130 8710 8140 8850
+rect 6950 8330 8140 8710
+rect 8220 8610 8790 9330
+rect 8220 8470 8230 8610
+rect 8780 8470 8790 8610
+rect 8220 8460 8790 8470
+rect 9230 9470 9800 11395
+rect 9900 10605 11050 12730
+rect 11140 12580 11790 12585
+rect 11140 11400 11150 12580
+rect 11140 11395 11160 11400
+rect 11150 11360 11160 11395
+rect 11780 11360 11790 12580
+rect 9890 10600 11060 10605
+rect 9890 10160 9900 10600
+rect 11050 10160 11060 10600
+rect 9890 10155 11060 10160
+rect 9230 9330 9240 9470
+rect 9790 9330 9800 9470
+rect 9230 8610 9800 9330
+rect 11150 9470 11720 11360
+rect 11150 9330 11160 9470
+rect 11710 9330 11720 9470
+rect 9230 8470 9240 8610
+rect 9790 8470 9800 8610
+rect 9230 8460 9800 8470
+rect 9880 9230 11070 9240
+rect 9880 9090 9890 9230
+rect 11060 9090 11070 9230
+rect 9880 8850 11070 9090
+rect 9880 8710 9890 8850
+rect 11060 8710 11070 8850
+rect 9880 8330 11070 8710
+rect 11150 8610 11720 9330
+rect 11150 8470 11160 8610
+rect 11710 8470 11720 8610
+rect 11150 8460 11720 8470
+rect 960 8130 13100 8330
+rect 950 7840 13100 8130
+rect 950 7560 13090 7840
+rect 970 140 1880 450
+rect 3820 140 4730 460
+rect 6670 140 7580 450
+rect 9520 140 10430 450
+rect 12370 140 13280 450
+rect -20 -880 14220 140
+<< via3 >>
+rect 380 12040 1000 12560
+rect 2380 11400 2990 11880
+rect 2380 11360 2990 11400
+rect 3320 12040 3940 12560
+rect 5300 11400 5920 11880
+rect 5300 11360 5920 11400
+rect 6240 12040 6860 12560
+rect 8220 11400 8840 11880
+rect 8220 11360 8840 11400
+rect 9180 12040 9800 12560
+rect 11160 11400 11780 11880
+rect 11160 11360 11780 11400
+<< metal4 >>
+rect 360 12560 11960 12580
+rect 360 12040 380 12560
+rect 1000 12040 3320 12560
+rect 3940 12040 6240 12560
+rect 6860 12040 9180 12560
+rect 9800 12040 11960 12560
+rect 360 12020 11960 12040
+rect 360 11880 11960 11900
+rect 360 11360 2380 11880
+rect 2990 11360 5300 11880
+rect 5920 11360 8220 11880
+rect 8840 11360 11160 11880
+rect 11780 11360 11960 11880
+rect 360 11340 11960 11360
+use outd_cmirror_64t  outd_cmirror_64t_0
+timestamp 1647868710
+transform 1 0 -30 0 1 76
+box 0 -76 2862 7840
+use outd_cmirror_64t  outd_cmirror_64t_1
+timestamp 1647868710
+transform 1 0 2820 0 1 76
+box 0 -76 2862 7840
+use outd_cmirror_64t  outd_cmirror_64t_2
+timestamp 1647868710
+transform 1 0 5670 0 1 76
+box 0 -76 2862 7840
+use outd_cmirror_64t  outd_cmirror_64t_3
+timestamp 1647868710
+transform 1 0 8520 0 1 76
+box 0 -76 2862 7840
+use outd_cmirror_64t  outd_cmirror_64t_4
+timestamp 1647868710
+transform 1 0 11370 0 1 76
+box 0 -76 2862 7840
+use outd_diffamp  outd_diffamp_0
+timestamp 1647868710
+transform 1 0 300 0 1 320
+box 0 7930 2768 9368
+use outd_diffamp  outd_diffamp_1
+timestamp 1647868710
+transform 1 0 3230 0 1 320
+box 0 7930 2768 9368
+use outd_diffamp  outd_diffamp_2
+timestamp 1647868710
+transform 1 0 6160 0 1 320
+box 0 7930 2768 9368
+use outd_diffamp  outd_diffamp_3
+timestamp 1647868710
+transform 1 0 9090 0 1 320
+box 0 7930 2768 9368
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_0
+timestamp 1647868710
+transform 1 0 951 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_1
+timestamp 1647868710
+transform 1 0 2419 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_2
+timestamp 1647868710
+transform 1 0 951 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_3
+timestamp 1647868710
+transform 1 0 2419 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_4
+timestamp 1647868710
+transform 1 0 5349 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_5
+timestamp 1647868710
+transform 1 0 3881 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_6
+timestamp 1647868710
+transform 1 0 3881 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_7
+timestamp 1647868710
+transform 1 0 5349 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_8
+timestamp 1647868710
+transform 1 0 8279 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_9
+timestamp 1647868710
+transform 1 0 6811 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_10
+timestamp 1647868710
+transform 1 0 6811 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_11
+timestamp 1647868710
+transform 1 0 8279 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_12
+timestamp 1647868710
+transform 1 0 11209 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_13
+timestamp 1647868710
+transform 1 0 9741 0 1 10998
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_14
+timestamp 1647868710
+transform 1 0 9741 0 1 12978
+box -739 -998 739 998
+use sky130_fd_pr__res_high_po_5p73_PA2QZX  sky130_fd_pr__res_high_po_5p73_PA2QZX_15
+timestamp 1647868710
+transform 1 0 11209 0 1 12978
+box -739 -998 739 998
+<< labels >>
+rlabel metal3 2384 7668 2640 7832 1 cmirror_out
+rlabel metal3 240 -442 496 -278 1 VN
+<< end >>
diff --git a/mag/outd/outd_stage2.spice b/mag/outd/outd_stage2.spice
new file mode 100644
index 0000000..c8c95c1
--- /dev/null
+++ b/mag/outd/outd_stage2.spice
@@ -0,0 +1,1154 @@
+* SPICE3 file created from outd_stage2.ext - technology: sky130A
+
+X0 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X6 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X7 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X8 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X9 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X10 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X11 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X12 dw_60_8030# m1_2350_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X13 dw_60_8030# m1_370_11400# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X14 m1_370_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X15 m1_2350_11400# dw_60_8030# VN sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X16 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X38 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X40 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X51 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X53 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X55 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X59 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X61 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X62 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X63 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X64 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X65 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X66 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X67 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X72 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X77 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X83 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X90 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X92 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X93 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X94 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X95 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X98 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X99 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X100 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X101 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X102 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X103 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X104 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X105 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X106 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X107 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X108 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X109 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X110 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X111 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X112 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X113 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X114 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X115 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X116 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X117 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X118 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X119 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X120 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X121 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X122 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X123 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X124 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X125 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X126 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X127 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X128 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X129 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X130 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X131 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X132 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X133 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X134 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X135 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X136 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X137 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X138 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X139 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X140 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X141 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X142 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X143 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X144 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X145 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X146 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X147 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X148 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X149 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X150 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X151 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X152 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X153 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X154 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X155 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X156 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X157 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X158 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X159 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X160 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X161 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X162 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X163 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X164 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X165 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X166 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X167 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X168 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X169 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X170 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X171 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X172 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X173 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X174 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X175 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X176 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X177 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X178 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X179 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X180 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X181 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X182 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X183 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X184 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X185 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X186 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X187 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X188 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X189 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X190 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X191 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X192 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X193 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X194 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X195 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X196 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X197 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X198 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X199 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X200 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X201 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X202 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X203 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X204 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X205 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X206 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X207 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X208 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X209 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X210 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X211 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X212 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X213 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X214 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X215 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X216 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X217 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X218 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X219 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X220 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X221 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X222 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X223 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X224 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X225 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X226 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X227 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X228 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X229 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X230 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X231 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X232 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X233 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X234 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X235 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X236 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X237 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X238 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X239 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X240 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X241 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X242 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X243 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X244 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X245 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X246 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X247 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X248 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X249 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X250 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X251 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X252 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X253 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X254 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X255 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X256 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X257 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X258 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X259 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X260 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X261 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X262 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X263 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X264 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X265 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X266 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X267 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X268 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X269 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X270 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X271 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X272 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X273 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X274 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X275 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X276 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X277 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X278 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X279 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X280 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X281 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X282 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X283 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X284 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X285 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X286 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X287 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X288 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X289 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X290 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X291 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X292 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X293 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X294 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X295 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X296 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X297 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X298 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X299 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X300 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X301 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X302 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X303 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X304 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X305 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X306 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X307 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X308 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X309 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X310 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X311 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X312 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X313 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X314 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X315 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X316 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X317 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X318 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X319 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X320 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X321 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X322 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X323 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X324 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X325 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X326 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X327 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X328 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X329 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X330 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X331 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X332 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X333 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X334 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X335 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X336 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X337 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X338 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X339 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X340 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X341 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X342 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X343 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X344 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X345 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X346 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X347 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X348 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X349 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X350 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X351 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X352 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X353 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X354 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X355 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X356 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X357 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X358 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X359 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X360 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X361 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X362 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X363 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X364 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X365 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X366 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X367 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X368 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X369 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X370 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X371 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X372 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X373 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X374 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X375 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X376 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X377 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X378 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X379 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X380 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X381 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X382 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X383 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X384 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X385 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X386 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X387 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X388 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X389 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X390 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X391 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X392 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X393 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X394 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X395 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X396 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X397 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X398 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X399 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X400 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X401 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X402 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X403 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X404 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X405 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X406 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X407 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X408 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X409 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X410 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X411 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X412 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X413 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X414 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X415 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X416 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X417 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X418 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X419 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X420 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X421 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X422 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X423 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X424 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X425 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X426 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X427 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X428 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X429 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X430 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X431 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X432 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X433 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X434 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X435 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X436 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X437 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X438 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X439 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X440 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X441 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X442 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X443 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X444 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X445 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X446 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X447 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X448 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X449 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X450 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X451 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X452 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X453 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X454 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X455 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X456 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X457 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X458 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X459 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X460 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X461 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X462 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X463 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X464 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X465 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X466 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X467 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X468 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X469 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X470 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X471 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X472 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X473 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X474 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X475 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X476 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X477 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X478 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X479 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X480 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X481 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X482 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X483 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X484 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X485 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X486 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X487 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X488 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X489 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X490 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X491 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X492 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X493 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X494 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X495 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X496 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X497 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X498 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X499 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X500 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X501 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X502 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X503 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X504 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X505 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X506 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X507 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X508 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X509 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X510 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X511 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X512 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X513 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X514 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X515 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X516 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X517 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X518 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X519 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X520 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X521 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X522 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X523 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X524 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X525 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X526 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X527 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X528 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X529 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X530 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X531 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X532 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X533 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X534 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X535 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X536 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X537 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X538 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X539 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X540 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X541 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X542 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X543 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X544 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X545 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X546 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X547 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X548 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X549 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X550 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X551 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X552 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X553 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X554 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X555 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X556 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X557 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X558 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X559 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X560 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X561 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X562 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X563 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X564 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X565 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X566 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X567 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X568 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X569 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X570 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X571 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X572 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X573 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X574 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X575 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X576 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X577 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X578 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X579 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X580 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X581 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X582 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X583 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X584 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X585 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X586 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X587 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X588 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X589 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X590 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X591 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X592 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X593 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X594 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X595 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X596 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X597 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X598 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X599 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X600 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X601 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X602 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X603 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X604 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X605 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X606 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X607 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X608 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X609 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X610 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X611 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X612 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X613 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X614 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X615 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X616 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X617 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X618 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X619 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X620 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X621 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X622 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X623 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X624 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X625 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X626 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X627 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X628 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X629 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X630 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X631 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X632 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X633 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X634 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X635 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X636 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X637 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X638 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X639 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X640 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X641 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X642 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X643 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X644 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X645 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X646 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X647 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X648 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X649 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X650 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X651 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X652 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X653 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X654 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X655 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X656 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X657 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X658 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X659 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X660 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X661 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X662 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X663 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X664 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X665 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X666 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X667 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X668 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X669 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X670 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X671 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X672 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X673 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X674 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X675 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X676 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X677 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X678 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X679 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X680 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X681 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X682 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X683 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X684 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X685 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X686 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X687 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X688 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X689 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X690 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X691 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X692 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X693 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X694 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X695 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X696 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X697 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X698 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X699 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X700 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X701 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X702 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X703 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X704 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X705 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X706 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X707 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X708 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X709 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X710 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X711 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X712 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X713 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X714 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X715 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X716 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X717 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X718 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X719 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X720 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X721 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X722 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X723 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X724 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X725 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X726 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X727 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X728 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X729 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X730 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X731 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X732 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X733 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X734 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X735 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X736 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X737 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X738 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X739 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X740 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X741 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X742 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X743 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X744 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X745 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X746 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X747 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X748 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X749 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X750 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X751 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X752 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X753 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X754 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X755 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X756 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X757 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X758 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X759 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X760 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X761 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X762 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X763 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X764 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X765 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X766 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X767 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X768 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X769 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X770 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X771 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X772 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X773 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X774 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X775 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X776 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X777 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X778 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X779 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X780 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X781 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X782 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X783 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X784 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X785 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X786 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X787 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X788 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X789 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X790 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X791 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X792 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X793 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X794 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X795 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X796 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X797 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X798 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X799 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X800 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X801 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X802 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X803 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X804 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X805 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X806 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X807 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X808 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X809 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X810 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X811 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X812 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X813 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X814 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X815 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X816 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X817 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X818 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X819 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X820 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X821 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X822 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X823 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X824 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X825 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X826 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X827 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X828 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X829 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X830 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X831 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X832 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X833 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X834 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X835 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X836 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X837 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X838 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X839 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X840 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X841 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X842 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X843 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X844 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X845 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X846 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X847 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X848 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X849 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X850 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X851 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X852 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X853 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X854 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X855 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X856 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X857 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X858 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X859 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X860 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X861 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X862 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X863 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X864 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X865 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X866 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X867 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X868 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X869 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X870 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X871 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X872 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X873 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X874 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X875 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X876 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X877 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X878 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X879 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X880 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X881 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X882 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X883 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X884 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X885 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X886 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X887 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X888 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X889 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X890 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X891 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X892 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X893 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X894 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X895 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X896 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X897 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X898 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X899 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X900 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X901 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X902 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X903 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X904 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X905 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X906 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X907 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X908 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X909 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X910 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X911 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X912 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X913 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X914 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X915 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X916 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X917 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X918 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X919 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X920 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X921 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X922 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X923 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X924 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X925 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X926 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X927 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X928 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X929 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X930 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X931 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X932 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X933 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X934 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X935 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X936 cmirror_out m1_250_8900# m1_370_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X937 m1_370_11400# m1_250_8900# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X938 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X939 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X940 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X941 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X942 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X943 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X944 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X945 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X946 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X947 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X948 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X949 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X950 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X951 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X952 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X953 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X954 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X955 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X956 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X957 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X958 cmirror_out m1_1850_8370# m1_2350_11400# cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X959 m1_2350_11400# m1_1850_8370# cmirror_out cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X960 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X961 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X962 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X963 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X964 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X965 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X966 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X967 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X968 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X969 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X970 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X971 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X972 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X973 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X974 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X975 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X976 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X977 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X978 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X979 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X980 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X981 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X982 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X983 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X984 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X985 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X986 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X987 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X988 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X989 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X990 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X991 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X992 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X993 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X994 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X995 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X996 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X997 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X998 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X999 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1000 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1001 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1002 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1003 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1004 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1005 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1006 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1007 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1008 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1009 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1010 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1011 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1012 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1013 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1014 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1015 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1016 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1017 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1018 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1019 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1020 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1021 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1022 cmirror_out outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1023 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# cmirror_out VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1024 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1025 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1026 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1027 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1028 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1029 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1030 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1031 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1032 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1033 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1034 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1035 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1036 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1037 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1038 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1039 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1040 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1041 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1042 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1043 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1044 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1045 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1046 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1047 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1048 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1049 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1050 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1051 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1052 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1053 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1054 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1055 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1056 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1057 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1058 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1059 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1060 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1061 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1062 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1063 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1064 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1065 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1066 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1067 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1068 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1069 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1070 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1071 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1072 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1073 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1074 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1075 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1076 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1077 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1078 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1079 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1080 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1081 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1082 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1083 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1084 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1085 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1086 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1087 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1088 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1089 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1090 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1091 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1092 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1093 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1094 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1095 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1096 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1097 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1098 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1099 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1100 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1101 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1102 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1103 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1104 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1105 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1106 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1107 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1108 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1109 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1110 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1111 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1112 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1113 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1114 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1115 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1116 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1117 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1118 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1119 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1120 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1121 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1122 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1123 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1124 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1125 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1126 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1127 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1128 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1129 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1130 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1131 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1132 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1133 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1134 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1135 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1136 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1137 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1138 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1139 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1140 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1141 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1142 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1143 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1144 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1145 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1146 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1147 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1148 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1149 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1150 VN outd_cmirror_64t_4/m1_0_80# m2_7240_7300# VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1151 m2_7240_7300# outd_cmirror_64t_4/m1_0_80# VN VN sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
diff --git a/mag/outd/outd_stage3.ext b/mag/outd/outd_stage3.ext
new file mode 100644
index 0000000..d429ede
--- /dev/null
+++ b/mag/outd/outd_stage3.ext
@@ -0,0 +1,741 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use outd_stage2 outd_stage2_3 1 0 42760 0 1 860
+use outd_stage2 outd_stage2_2 1 0 28510 0 1 860
+use outd_stage2 outd_stage2_1 1 0 14260 0 1 860
+use outd_stage2 outd_stage2_0 1 0 10 0 1 860
+node "m4_40470_12200#" 0 1351.49 40470 12200 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1988000 8220 0 0 0 0
+node "m4_26220_12200#" 0 1351.49 26220 12200 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1988000 8220 0 0 0 0
+node "m4_11970_12200#" 0 1403.14 11970 12200 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2077600 8540 0 0 0 0
+node "m4_40470_12880#" 0 1351.49 40470 12880 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1988000 8220 0 0 0 0
+node "m4_26220_12880#" 0 1351.49 26220 12880 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1988000 8220 0 0 0 0
+node "m4_11970_12880#" 0 1403.14 11970 12880 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2077600 8540 0 0 0 0
+node "m3_42660_n20#" 0 526.898 42660 -20 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153000 2340 0 0 0 0 0 0
+node "m3_28410_n20#" 0 526.898 28410 -20 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153000 2340 0 0 0 0 0 0
+node "m3_14160_n20#" 0 526.898 14160 -20 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153000 2340 0 0 0 0 0 0
+node "m3_41480_8400#" 1 1171.12 41480 8400 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386200 5140 0 0 0 0 0 0
+node "m3_27210_8390#" 1 1171.12 27210 8390 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386200 5140 0 0 0 0 0 0
+node "m3_13010_8400#" 1 1138.65 13010 8400 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 344100 5040 0 0 0 0 0 0
+node "m3_2080_8490#" 0 143.307 2080 8490 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 26000 660 0 0 0 0 0 0
+node "m3_11690_14240#" 0 27782.1 11690 14240 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31834800 87520 0 0 0 0 0 0
+node "m2_41490_8160#" 1 632.298 41490 8160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 233600 3240 0 0 0 0 0 0 0 0
+node "m2_27240_8160#" 1 632.298 27240 8160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 233600 3240 0 0 0 0 0 0 0 0
+node "m2_12980_8160#" 1 631.166 12980 8160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 233600 3240 0 0 0 0 0 0 0 0
+node "m2_40400_9110#" 2 1007.45 40400 9110 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "m2_26150_9110#" 2 1007.45 26150 9110 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "m2_11910_9110#" 2 1040.89 11910 9110 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "m2_40400_10380#" 2 1085.43 40400 10380 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "m2_26150_10380#" 2 1085.43 26150 10380 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "m2_11870_10380#" 2 1073.5 11870 10380 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 419900 5280 0 0 0 0 0 0 0 0
+node "w_43026_9096#" 34852 0 43026 9096 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_28776_9096#" 34852 0 28776 9096 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_14526_9096#" 34852 0 14526 9096 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_276_9096#" 34852 0 276 9096 pw 17069904 26192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m2_26150_10380#" "m2_26150_9110#" 87.7973
+cap "m4_11970_12880#" "m4_11970_12200#" 1824.08
+cap "m4_40470_12200#" "m4_40470_12880#" 1745.42
+cap "m2_40400_9110#" "m2_40400_10380#" 87.7973
+cap "m2_11910_9110#" "m2_11870_10380#" 86.3755
+cap "w_276_9096#" "m2_11870_10380#" 46.6312
+cap "m2_27240_8160#" "m2_26150_9110#" 68.3013
+cap "m2_11910_9110#" "m2_12980_8160#" 69.2911
+cap "m2_40400_10380#" "w_28776_9096#" 33.8046
+cap "m2_40400_9110#" "w_28776_9096#" 33.6781
+cap "m4_26220_12200#" "m4_26220_12880#" 1745.42
+cap "m2_40400_9110#" "m2_41490_8160#" 68.3013
+cap "w_14526_9096#" "m2_26150_9110#" 33.6781
+cap "m2_26150_10380#" "w_14526_9096#" 33.8046
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.42272
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/VN" 3.7456
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_1/VN" 1.19696
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.0168451
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/VN" -14.7602
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.250819
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_1/VN" 7.47085
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/VN" 6.997
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/VN" 1458.03
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" 0.0514474
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n2363#" 0.305469
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 0.510827
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/VN" 1.19696
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.23653
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/VN" 0.676115
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.372381
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/VN" -10.2977
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/VN" 7.47085
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -0.493982
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/VN" 6.997
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363#" 0.116075
+cap "outd_stage2_2/VN" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n2363#" 0.346045
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/VN" 0.434229
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.17134
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/VN" 0.849972
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.130854
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.801783
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" -0.154495
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 0.478057
+cap "outd_stage2_3/VN" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 7.47085
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/VN" -10.2977
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 6.997
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#" 0.200161
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 0.0421126
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 8.22513
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 0.0673802
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 9.1385
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_stage2_1/VN" -8.05627
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" -7.49348
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_1/VN" -6.75922
+cap "outd_stage2_1/VN" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -3.35168
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/VN" 36.2662
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 0.0842253
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 9.56122
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_1/VN" 12.6188
+cap "outd_stage2_1/VN" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -39.97
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 8.70171
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 8.45089
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 12.8072
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 5.33632
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/VN" -7.5596
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 7.79538
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -10.0863
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.128618
+cap "outd_stage2_1/VN" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 1298.93
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n2363#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.205789
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1745#" 0.257237
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1745#" 0.305469
+cap "outd_stage2_1/VN" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n1127#" 0.305469
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/VN" -9.50329
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 2.04331
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 2.55414
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.591324
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/VN" 36.2662
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.946118
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 1.18265
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/VN" -7.49348
+cap "outd_stage2_2/VN" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" -8.05627
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/VN" -6.75922
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 1.27707
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -2.46991
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" 16.3848
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" "outd_stage2_2/VN" 12.8072
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 15.2676
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/VN" -33.8184
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 16.7571
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" -1.97593
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -10.0863
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -1.23496
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_2/VN" 5.33632
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/VN" -7.5596
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/VN" 12.6188
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#" 0.290189
+cap "outd_stage2_2/VN" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1127#" 0.342982
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1745#" 0.580377
+cap "outd_stage2_2/VN" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n1745#" 0.342982
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.464302
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2662
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 0.654269
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.327135
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.523416
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -9.50329
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1745#" 0.79316
+cap "outd_stage2_3/VN" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n1127#" 0.79316
+cap "outd_stage2_3/VN" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" -8.07507
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 0.42835
+cap "outd_stage2_3/VN" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" -8.45116
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 0.8567
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/VN" -6.75922
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 0.68536
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 15.5318
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/VN" -7.5596
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_3/VN" 12.6188
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 16.8075
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 17.2855
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -10.0863
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -0.386237
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" "outd_stage2_3/VN" 5.33632
+cap "outd_stage2_3/VN" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" 12.8072
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/VN" -33.8184
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1745#" -0.772475
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n2363#" -0.61798
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.500404
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n2363#" 0.800646
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 1339.17
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/VN" 6.02436
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1745#" 1.00081
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -8.2891
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 2.9346
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -0.17697
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" -8.45116
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 9.56122
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 36.2567
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 0.0842253
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 1.33609
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 9.56122
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -11.6833
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 0.0421126
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 0.0842253
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 8.70171
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 55.0365
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -39.97
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 8.70171
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -14.5916
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 0.906332
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 36.2567
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -55.3973
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 2078.28
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_n509#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.305469
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n1127#" 0.128618
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_109#" 0.305469
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_109#" 0.257237
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_n509#" 0.257237
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 2.55414
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.591324
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -14.1251
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.18265
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 1.27707
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -8.2891
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 2.55414
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -0.17697
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 1.18265
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 1.58632
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" -8.45116
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" -1.23496
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 2.44179
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -14.5916
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 16.7571
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 55.6988
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -39.97
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 16.7571
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" -55.3973
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 1.48952
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 36.2567
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" -2.46991
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" -2.46991
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_109#" 0.580377
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_n509#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.342982
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_109#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.342982
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n509#" 0.580377
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_n1127#" 0.290189
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 36.2567
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n509#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 0.79316
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" -8.2891
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -14.1251
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 0.654269
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -8.45116
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" -0.17697
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" 0.8567
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 0.327135
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 0.654269
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_109#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" 0.79316
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 0.8567
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 0.42835
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -0.386237
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 54.8299
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 36.2567
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n1127#" 1.75371
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" -0.772475
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -0.772475
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -14.5916
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1395_n2537#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -39.97
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_109#" 17.2855
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" -55.3973
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_n509#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 17.2855
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n29_n2363#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 2.44179
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n509#" 1.00081
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#" 6.00881
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 0.0155543
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_n1127#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" 0.500404
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n2363#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_n2363#" 1.55485
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_109#" 1.00081
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1135_n2363#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 2142.66
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 25.0202
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.210563
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 36.2801
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" -3.41912
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" -20.2477
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" -39.97
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 12.8072
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_727#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.70171
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 5.468
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 3.5157
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -2.4906
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 8.70171
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1345#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 12.8072
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1345#" 0.257237
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_727#" 0.305469
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 1834.88
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1345#" 0.305469
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_727#" 0.257237
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.128618
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.95662
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 36.2801
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -20.2477
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -9.57073
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 6.38534
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" -2.4906
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 29.13
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" -6.17478
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n1127#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 44.1271
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" -33.8184
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 0.290189
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_727#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 0.342982
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1345#" 0.342982
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_727#" 0.580377
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1345#" 0.580377
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1345#" 0.79316
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 2.14175
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -9.57073
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_727#" 0.79316
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 36.2801
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.63567
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -21.2027
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -1.93119
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 29.13
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n819_n1127#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 45.4481
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" -33.8184
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" -10.6243
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" -2.4906
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 6.00881
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1345#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1.00081
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 0.0155543
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" 1384.42
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_n509#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 1.55485
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_727#" 1.00081
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n705_n1127#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#" 0.500404
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 4.10941
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" -1312.26
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 6.48713
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 7.15797
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 20.5911
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 5.10034
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 10.4553
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -2.41784
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 1.78134
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 3.23371
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" 0.926815
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 7.51818
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 5.79823
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" -46.738
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n1127#" 2.60667
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n187_1963#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 9.29148
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1077_1963#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 0.128618
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 1452.75
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_1235_1963#" 0.305469
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 6.48713
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -658.281
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 4.10941
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 5.10034
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 20.5911
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 7.16429
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 11.0728
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" -230.565
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -2.42416
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 5.79823
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 10.4553
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 7.51818
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_761_1963#" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" 0.290189
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" 620.831
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_919_1963#" 0.342982
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -275.752
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 6.59896
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -574.938
+cap "outd_stage2_2/outd_cmirror_64t_4/m1_130_5370#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -2.41784
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 0.919217
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -75.7581
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_n1293_1963#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 0.79316
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 5.65545
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n1127#" "outd_stage2_2/outd_cmirror_64t_4/m1_130_5370#" 2.79286
+cap "outd_stage2_2/outd_cmirror_64t_4/m1_130_5370#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 20.5911
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 0.831683
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -0.888451
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" -393.827
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 7.51818
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" -40.3082
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_cmirror_64t_0/m1_130_5370#" 10.4553
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 5.79823
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_445_1963#" 0.500404
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -3.61664
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 3.0044
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 256.181
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_A574RZ_0/a_603_727#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 0.777427
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 492.581
+cap "w_276_9096#" "outd_stage2_0/outd_cmirror_64t_4/m1_220_5610#" -369.819
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 13.5842
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" -41.4789
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 73.493
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" 8.22887
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" -0.989873
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 193.375
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 157.812
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" -0.247468
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 1.63855
+cap "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/cmirror_out" 12.1416
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/cmirror_out" 190.735
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" 66.6097
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_n509#" 1.67985
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" 13.0019
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" 0.0615
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_63_109#" 2.60667
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_1/cmirror_out" 15.9227
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -11.7944
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 155.136
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" 71.5739
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 190.885
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" -41.4789
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 7.84942
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 13.5842
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/m1_1850_8370#" -0.742405
+cap "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" -11.7944
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 15.9227
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 66.6712
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/w_266_8236#" 12.1416
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" 13.0019
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/w_266_8236#" 190.27
+cap "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#" 1.63855
+cap "outd_stage2_2/cmirror_out" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" 0.46529
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 67.8335
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" 3.61121
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 5.65545
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" "w_28776_9096#" 2.79286
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" -41.4789
+cap "outd_stage2_3/m1_1850_8370#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -0.742405
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "w_28776_9096#" 186.481
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" 5.71257
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" 3.10495
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" "w_28776_9096#" 2.79286
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 149.919
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "w_28776_9096#" -8.00539
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_n509#" 4.82376
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_109#" 6.59896
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 87.6274
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 15.9227
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" 1.63855
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 106.057
+cap "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 13.0019
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -5.08853
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" 12.1416
+cap "outd_stage2_3/cmirror_out" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 57.4909
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -21.4608
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -6.70586
+cap "outd_stage2_0/outd_diffamp_3/a_182_8052#" "outd_stage2_0/m1_1850_8370#" -1407.16
+cap "outd_stage2_0/m1_1850_8370#" "w_276_9096#" -982.938
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/m1_1850_8370#" 139.712
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "w_276_9096#" -21.0382
+cap "outd_stage2_0/m1_1850_8370#" "w_276_9096#" -661.191
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/m1_1850_8370#" 79.8738
+cap "outd_stage2_0/m1_1850_8370#" "outd_stage2_0/w_266_8236#" 156.795
+cap "outd_stage2_0/dw_60_8030#" "w_276_9096#" -35.3045
+cap "w_276_9096#" "outd_stage2_0/w_266_8236#" -45.4111
+cap "outd_stage2_0/outd_cmirror_64t_4/m1_220_5610#" "w_276_9096#" -18.6963
+cap "m2_11870_10380#" "outd_stage2_0/m1_1850_8370#" -0.177727
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 772.145
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/m1_1850_8370#" -0.989873
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 77.258
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 0.456814
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -15.3825
+cap "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 63.0614
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" 13.9924
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -11.5891
+cap "outd_stage2_1/cmirror_out" "outd_stage2_1/m1_1850_8370#" 9.66229
+cap "outd_stage2_1/cmirror_out" "outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 30.111
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/m1_250_8900#" 25.993
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_1/m1_250_8900#" "outd_stage2_1/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -5.61259
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/m1_1850_8370#" 4.66563
+cap "outd_stage2_1/cmirror_out" "outd_stage2_1/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 52.0914
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/cmirror_out" 249.98
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 0.409639
+cap "outd_stage2_0/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_stage2_1/cmirror_out" 10.1711
+cap "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/m1_1850_8370#" -9.89873
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/m1_250_8900#" 1905.7
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/cmirror_out" 1875.98
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/dw_60_8030#" 186.912
+cap "outd_stage2_1/m1_1850_8370#" "w_14526_9096#" -672.159
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/outd_diffamp_3/a_182_8052#" -1094.12
+cap "outd_stage2_1/w_266_8236#" "w_14526_9096#" -10.3831
+cap "w_14526_9096#" "outd_stage2_1/m1_1850_8370#" -1404.85
+cap "outd_stage2_1/dw_60_8030#" "w_14526_9096#" -31.8282
+cap "outd_stage2_1/outd_cmirror_64t_4/m1_220_5610#" "outd_stage2_1/m1_1850_8370#" -14.6006
+cap "outd_stage2_1/w_266_8236#" "outd_stage2_1/m1_1850_8370#" 19.7623
+cap "w_14526_9096#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -11.9325
+cap "m2_26150_10380#" "outd_stage2_1/m1_1850_8370#" -0.355455
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/m1_1850_8370#" 82.5833
+cap "outd_stage2_1/outd_cmirror_64t_4/m1_220_5610#" "w_14526_9096#" -18.6963
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_1/w_266_8236#" 188.084
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/m1_1850_8370#" -0.742405
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" -448.863
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 56.4662
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/w_266_8236#" 0.456814
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/w_266_8236#" -707.676
+cap "outd_stage2_1/w_266_8236#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -15.3825
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 14.2711
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" 1067.81
+cap "outd_stage2_2/m1_250_8900#" "outd_stage2_2/m1_1850_8370#" 24.0375
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/m1_1850_8370#" 11.6561
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 11.8621
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -11.5891
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/m1_1850_8370#" 9.16833
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" 282.695
+cap "outd_stage2_2/m1_250_8900#" "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" -3.90012
+cap "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" 0.409639
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 142.586
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 10.834
+cap "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/m1_1850_8370#" -15.838
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_1/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_2/cmirror_out" "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 194.035
+cap "outd_stage2_2/cmirror_out" "outd_stage2_2/m1_1850_8370#" 1019.33
+cap "outd_stage2_2/m1_250_8900#" "outd_stage2_2/m1_1850_8370#" 1577.18
+cap "outd_stage2_2/cmirror_out" "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" 9.44249
+cap "outd_stage2_2/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_2/m1_250_8900#" 2.92808
+cap "outd_stage2_2/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n129_n509#" "outd_stage2_2/cmirror_out" -0.0301832
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" -352.592
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_2/dw_60_8030#" 234.112
+cap "outd_stage2_2/m1_1850_8370#" "w_28776_9096#" -287.971
+cap "outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "w_28776_9096#" -0.326404
+cap "w_28776_9096#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -4.97188
+cap "outd_stage2_2/outd_diffamp_3/a_182_8052#" "outd_stage2_2/m1_1850_8370#" -0.355455
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/m1_1850_8370#" 27.2715
+cap "outd_stage2_2/m1_1850_8370#" "w_28776_9096#" -1872.93
+cap "outd_stage2_2/dw_60_8030#" "w_28776_9096#" -13.6423
+cap "outd_stage2_2/outd_cmirror_64t_4/m1_220_5610#" "w_28776_9096#" -9.34815
+cap "outd_stage2_2/outd_diffamp_3/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_399_n509#" "outd_stage2_2/m1_1850_8370#" -0.252627
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/m1_1850_8370#" -0.742405
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "w_28776_9096#" -219.24
+cap "outd_stage2_3/m1_1850_8370#" "w_28776_9096#" 1336.47
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" -15.3825
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "w_28776_9096#" 2.79286
+cap "outd_stage2_2/w_266_8236#" "w_28776_9096#" -357.286
+cap "outd_stage2_2/dw_60_8030#" "w_28776_9096#" -29.4966
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "w_28776_9096#" -630.427
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_2/w_266_8236#" 0.456814
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_3/m1_1850_8370#" 156.992
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "w_28776_9096#" 5.41995
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_3/m1_1850_8370#" 173.608
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n797_727#" "outd_stage2_2/w_266_8236#" 2.5505
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/m1_250_8900#" -1.75408
+cap "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_3/w_266_8236#" 156.26
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 119.373
+cap "outd_stage2_3/m1_250_8900#" "outd_stage2_3/m1_1850_8370#" 22.8145
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" 5.82443
+cap "outd_stage2_3/m1_1850_8370#" "outd_stage2_3/dw_60_8030#" 14.0849
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/w_266_8236#" 11.1406
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_2/w_266_8236#" 11.8621
+cap "outd_stage2_2/outd_cmirror_64t_4/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_2/w_266_8236#" 0.409639
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -5.08853
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/m1_1850_8370#" 5.20143
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" -6.5006
+cap "outd_stage2_3/m1_1850_8370#" "outd_stage2_3/cmirror_out" 807.003
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_stage2_3/cmirror_out" -2.84217e-14
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/m1_250_8900#" -3.91591
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_3/cmirror_out" 19.2541
+cap "outd_stage2_3/cmirror_out" "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" 1045.4
+cap "outd_stage2_3/m1_1850_8370#" "outd_stage2_3/m1_250_8900#" 1248.65
+cap "outd_stage2_3/outd_diffamp_0/sky130_fd_pr__nfet_01v8_lvt_324MKY_0/a_n557_n509#" "outd_stage2_3/cmirror_out" 19.8849
+cap "outd_stage2_3/outd_cmirror_64t_0/outd_cmirror_transistors_0/sky130_fd_pr__nfet_01v8_ED72KE_0/a_n899_n1301#" "outd_stage2_2/li_250_11940#" 0.391011
+cap "outd_stage2_3/outd_cmirror_64t_1/outd_cmirror_transistors_0/a_2_560#" "outd_stage2_3/cmirror_out" -0.547951
+cap "outd_stage2_0/dw_60_8030#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" 139.712
+cap "w_276_9096#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" -909.447
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/outd_diffamp_3/a_182_8052#" -237.883
+cap "outd_stage2_0/m1_1850_8370#" "m2_11870_10380#" -1012.14
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "m2_11870_10380#" -173.001
+cap "m2_11870_10380#" "outd_stage2_0/w_266_8236#" 131.32
+cap "m2_11870_10380#" "w_276_9096#" -687.126
+cap "outd_stage2_0/dw_60_8030#" "m2_11870_10380#" 57.4696
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" "outd_stage2_1/m1_250_8900#" 0.228857
+cap "outd_stage2_1/m1_1850_8370#" "outd_stage2_1/m1_250_8900#" -1.77727
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/m1_250_8900#" 0.100852
+cap "outd_stage2_1/cmirror_out" "outd_stage2_1/m1_250_8900#" 0.291408
+cap "outd_stage2_1/m1_250_8900#" "outd_stage2_1/cmirror_out" 1231.65
+cap "outd_stage2_1/outd_diffamp_3/a_182_8052#" "w_14526_9096#" -707.126
+cap "outd_stage2_1/outd_diffamp_3/a_182_8052#" "outd_stage2_1/dw_60_8030#" 186.912
+cap "outd_stage2_1/outd_diffamp_3/a_182_8052#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -184.962
+cap "outd_stage2_1/m1_1850_8370#" "m2_26150_10380#" -1346.92
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "m2_26150_10380#" 1.10045
+cap "w_14526_9096#" "m2_26150_10380#" -886.919
+cap "outd_stage2_1/w_266_8236#" "m2_26150_10380#" 10.1901
+cap "outd_stage2_1/dw_60_8030#" "m2_26150_10380#" 51.5889
+cap "outd_stage2_1/w_266_8236#" "outd_stage2_2/m1_250_8900#" 201.537
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_2/m1_250_8900#" -2.31045
+cap "outd_stage2_2/m1_250_8900#" "outd_stage2_2/cmirror_out" 1019.33
+cap "outd_stage2_2/m1_250_8900#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 266.624
+cap "w_28776_9096#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" -446.616
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" 234.112
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" -116.821
+cap "w_28776_9096#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" -1039.78
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" 2.34723
+cap "outd_stage2_2/m1_1850_8370#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" -1573.18
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/outd_diffamp_3/a_182_8052#" 5.29912
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_3/m1_250_8900#" 176.383
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_3/m1_250_8900#" 180.753
+cap "outd_stage2_3/m1_250_8900#" "outd_stage2_3/m1_1850_8370#" -2.31045
+cap "outd_stage2_3/m1_250_8900#" "outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n573_400#" 211.086
+cap "outd_stage2_3/cmirror_out" "outd_stage2_3/m1_250_8900#" 807.003
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" -362.969
+cap "outd_stage2_0/w_266_8236#" "outd_stage2_0/outd_diffamp_2/sky130_fd_pr__nfet_01v8_lvt_324MKY_2/a_15_109#" 156.854
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -59.9833
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/w_266_8236#" 5.7
+cap "outd_stage2_1/m1_370_11400#" "outd_stage2_1/m1_2350_11400#" -137.667
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/w_266_8236#" 34.4923
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/m1_370_11400#" -137.667
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/m1_370_11400#" 2273.33
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/dw_60_8030#" 1178.71
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -273.687
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_1/w_266_8236#" 206.492
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_1/w_266_8236#" 5.7
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -371.989
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -35.4
+cap "outd_stage2_2/m1_2350_11400#" "outd_stage2_2/m1_370_11400#" -137.667
+cap "outd_stage2_2/m1_370_11400#" "outd_stage2_2/m1_2350_11400#" -137.667
+cap "outd_stage2_2/m1_2350_11400#" "outd_stage2_2/w_266_8236#" 34.4923
+cap "outd_stage2_2/m1_370_11400#" "outd_stage2_2/m1_2350_11400#" 5586.16
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 256.129
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -161.439
+cap "outd_stage2_2/w_266_8236#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -50.5393
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -10.8167
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -429.222
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/m1_2350_11400#" 108.703
+cap "outd_stage2_3/m1_2350_11400#" "outd_stage2_3/m1_370_11400#" -137.667
+cap "outd_stage2_3/w_266_8236#" "outd_stage2_3/m1_2350_11400#" 38.3065
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_3/m1_2350_11400#" 1.77062
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_3/m1_2350_11400#" 4805.37
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 386.509
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 156.854
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -820.748
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -318.508
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -1942.27
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -11.442
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_1/m1_370_11400#" 49.0174
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/m1_370_11400#" -373.667
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_1/m1_2350_11400#" 15.8823
+cap "outd_stage2_1/m1_370_11400#" "outd_stage2_1/dw_60_8030#" 754.703
+cap "outd_stage2_1/m1_370_11400#" "outd_stage2_1/m1_2350_11400#" 2155.33
+cap "outd_stage2_1/m1_370_11400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 413.524
+cap "outd_stage2_1/m1_2350_11400#" "outd_stage2_1/dw_60_8030#" 1178.71
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 732.537
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" 206.492
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" -618.862
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -371.989
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -1069.09
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -412.863
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -11.442
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -744.003
+cap "outd_stage2_2/m1_370_11400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 49.02
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_2/m1_2350_11400#" 15.8823
+cap "outd_stage2_2/m1_370_11400#" "outd_stage2_2/m1_2350_11400#" -250.75
+cap "outd_stage2_2/m1_2350_11400#" "outd_stage2_2/m1_370_11400#" 3825.11
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_2/m1_370_11400#" 316.924
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -365.046
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n573_400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" 256.129
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" 1103.73
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -1233.48
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -429.222
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n573_400#" -41.0839
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -858.47
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n573_400#" -561.697
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage2_3/m1_370_11400#" 737.164
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage2_3/m1_2350_11400#" 58.1196
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" "outd_stage2_3/m1_2350_11400#" 29.0199
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_3/m1_2350_11400#" -127.833
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" 48.5986
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_3/m1_2350_11400#" 3081.78
+cap "outd_stage2_3/m1_370_11400#" "outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 220.324
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" 728.676
+cap "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_14/a_n573_400#" "outd_stage2_0/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" 37.4381
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 542.744
+cap "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 371.304
+cap "outd_stage2_1/dw_60_8030#" "outd_stage2_1/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -428.14
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" 431.544
+cap "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_8/a_n703_n962#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_11/a_n573_400#" 687.061
+cap "outd_stage2_2/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_13/a_n703_n962#" -625.262
+cap "outd_stage2_3/dw_60_8030#" "outd_stage2_2/sky130_fd_pr__res_high_po_5p73_PA2QZX_12/a_n703_n962#" 299.122
+cap "outd_stage2_3/sky130_fd_pr__res_high_po_5p73_PA2QZX_0/a_n703_n962#" "outd_stage2_3/dw_60_8030#" 320.344
+merge "outd_stage2_3/m1_2350_11400#" "outd_stage2_2/m1_2350_11400#" -21649.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -41972400 -12920 0 0 0 0
+merge "outd_stage2_2/m1_2350_11400#" "m4_40470_12200#"
+merge "m4_40470_12200#" "outd_stage2_1/m1_2350_11400#"
+merge "outd_stage2_1/m1_2350_11400#" "m4_26220_12200#"
+merge "m4_26220_12200#" "outd_stage2_0/m1_2350_11400#"
+merge "outd_stage2_0/m1_2350_11400#" "m4_11970_12200#"
+merge "outd_stage2_1/outd_cmirror_64t_3/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_4/m1_0_80#" -70345 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -105848760 -10040 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage2_1/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_0/m1_0_80#"
+merge "outd_stage2_2/li_250_11940#" "outd_stage2_2/outd_cmirror_64t_4/li_0_0#" -6443.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3728440 -7520 0 0 0 0 1612800 -4360 0 0 0 0 0 0
+merge "outd_stage2_2/outd_cmirror_64t_4/li_0_0#" "outd_stage2_3/outd_cmirror_64t_0/li_0_0#"
+merge "outd_stage2_3/outd_cmirror_64t_0/li_0_0#" "outd_stage2_3/VN"
+merge "outd_stage2_3/VN" "m3_42660_n20#"
+merge "outd_stage2_3/VSUBS" "outd_stage2_2/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage2_2/VSUBS" "outd_stage2_1/VSUBS"
+merge "outd_stage2_1/VSUBS" "outd_stage2_0/VSUBS"
+merge "outd_stage2_0/VSUBS" "VSUBS"
+merge "outd_stage2_3/m1_370_11400#" "outd_stage2_2/m1_370_11400#" -6073.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -27743060 -12920 0 0 0 0
+merge "outd_stage2_2/m1_370_11400#" "m4_40470_12880#"
+merge "m4_40470_12880#" "outd_stage2_1/m1_370_11400#"
+merge "outd_stage2_1/m1_370_11400#" "m4_26220_12880#"
+merge "m4_26220_12880#" "outd_stage2_0/m1_370_11400#"
+merge "outd_stage2_0/m1_370_11400#" "m4_11970_12880#"
+merge "outd_stage2_0/outd_cmirror_64t_3/m1_0_80#" "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" -71391.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -105848760 -10040 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage2_0/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_1/outd_cmirror_64t_0/m1_0_80#"
+merge "outd_stage2_3/m1_250_8900#" "outd_stage2_2/m1_250_8900#" -4553.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6466000 -8690 0 0 0 0 0 0 0 0
+merge "outd_stage2_2/m1_250_8900#" "m2_40400_10380#"
+merge "m2_40400_10380#" "outd_stage2_1/m1_250_8900#"
+merge "outd_stage2_1/m1_250_8900#" "m2_26150_10380#"
+merge "m2_26150_10380#" "outd_stage2_0/m1_250_8900#"
+merge "outd_stage2_0/m1_250_8900#" "m2_11870_10380#"
+merge "outd_stage2_1/li_250_11940#" "outd_stage2_0/li_250_11940#" -16170.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9592440 -14142 0 0 0 0 3420800 -4360 0 0 0 0 0 0
+merge "outd_stage2_0/li_250_11940#" "outd_stage2_0/outd_cmirror_64t_4/li_0_0#"
+merge "outd_stage2_0/outd_cmirror_64t_4/li_0_0#" "outd_stage2_2/outd_cmirror_64t_0/li_0_0#"
+merge "outd_stage2_2/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_0/li_0_0#"
+merge "outd_stage2_1/outd_cmirror_64t_0/li_0_0#" "outd_stage2_1/outd_cmirror_64t_4/li_0_0#"
+merge "outd_stage2_1/outd_cmirror_64t_4/li_0_0#" "outd_stage2_2/VN"
+merge "outd_stage2_2/VN" "m3_28410_n20#"
+merge "m3_28410_n20#" "outd_stage2_1/VN"
+merge "outd_stage2_1/VN" "outd_stage2_0/VN"
+merge "outd_stage2_0/VN" "m3_14160_n20#"
+merge "outd_stage2_3/m1_1850_8370#" "outd_stage2_2/m1_1850_8370#" -1042.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -7419600 -2940 0 0 0 0 0 0 0 0
+merge "outd_stage2_2/m1_1850_8370#" "m2_40400_9110#"
+merge "m2_40400_9110#" "outd_stage2_1/m1_1850_8370#"
+merge "outd_stage2_1/m1_1850_8370#" "m2_26150_9110#"
+merge "m2_26150_9110#" "outd_stage2_0/m1_1850_8370#"
+merge "outd_stage2_0/m1_1850_8370#" "m2_11910_9110#"
+merge "outd_stage2_3/cmirror_out" "outd_stage2_3/w_266_8236#" -1.46235e+07 2822896 -167032 0 0 0 0 0 0 -1273947280 -437966 -480936692 -200632 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 418107912 -575224 934114596 -463456 1106506436 -207544 -345033520 -109225 0 0 0 0 0 0
+merge "outd_stage2_3/w_266_8236#" "w_43026_9096#"
+merge "w_43026_9096#" "outd_stage2_2/cmirror_out"
+merge "outd_stage2_2/cmirror_out" "outd_stage2_3/outd_cmirror_64t_0/m1_130_5370#"
+merge "outd_stage2_3/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_2/outd_cmirror_64t_4/m1_130_5370#"
+merge "outd_stage2_2/outd_cmirror_64t_4/m1_130_5370#" "m3_41480_8400#"
+merge "m3_41480_8400#" "outd_stage2_2/w_266_8236#"
+merge "outd_stage2_2/w_266_8236#" "w_28776_9096#"
+merge "w_28776_9096#" "outd_stage2_1/cmirror_out"
+merge "outd_stage2_1/cmirror_out" "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#"
+merge "outd_stage2_2/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_1/outd_cmirror_64t_4/m1_130_5370#"
+merge "outd_stage2_1/outd_cmirror_64t_4/m1_130_5370#" "m3_27210_8390#"
+merge "m3_27210_8390#" "outd_stage2_1/w_266_8236#"
+merge "outd_stage2_1/w_266_8236#" "w_14526_9096#"
+merge "w_14526_9096#" "outd_stage2_0/w_266_8236#"
+merge "outd_stage2_0/w_266_8236#" "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#"
+merge "outd_stage2_1/outd_cmirror_64t_0/m1_130_5370#" "outd_stage2_0/outd_cmirror_64t_4/m1_130_5370#"
+merge "outd_stage2_0/outd_cmirror_64t_4/m1_130_5370#" "m3_13010_8400#"
+merge "m3_13010_8400#" "outd_stage2_0/cmirror_out"
+merge "outd_stage2_0/cmirror_out" "w_276_9096#"
+merge "w_276_9096#" "m3_2080_8490#"
+merge "outd_stage2_2/outd_cmirror_64t_3/m1_0_80#" "outd_stage2_2/outd_cmirror_64t_4/m1_0_80#" -56797.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -105848760 -10040 0 0 0 0 0 0 0 0 0 0
+merge "outd_stage2_2/outd_cmirror_64t_4/m1_0_80#" "outd_stage2_3/outd_cmirror_64t_0/m1_0_80#"
+merge "outd_stage2_3/dw_60_8030#" "outd_stage2_2/dw_60_8030#" -30702.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -17497100 -77400 0 0 0 0 0 0
+merge "outd_stage2_2/dw_60_8030#" "outd_stage2_1/dw_60_8030#"
+merge "outd_stage2_1/dw_60_8030#" "outd_stage2_0/dw_60_8030#"
+merge "outd_stage2_0/dw_60_8030#" "m3_11690_14240#"
+merge "outd_stage2_3/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_2/outd_cmirror_64t_4/m1_220_5610#" -1930.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5682960 -860 0 0 0 0 0 0 0 0
+merge "outd_stage2_2/outd_cmirror_64t_4/m1_220_5610#" "m2_41490_8160#"
+merge "outd_stage2_1/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_0/outd_cmirror_64t_4/m1_220_5610#" -2145.03 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4850160 -860 0 0 0 0 0 0 0 0
+merge "outd_stage2_0/outd_cmirror_64t_4/m1_220_5610#" "m2_12980_8160#"
+merge "outd_stage2_2/outd_cmirror_64t_0/m1_220_5610#" "outd_stage2_1/outd_cmirror_64t_4/m1_220_5610#" -2388.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5581160 -860 0 0 0 0 0 0 0 0
+merge "outd_stage2_1/outd_cmirror_64t_4/m1_220_5610#" "m2_27240_8160#"
diff --git a/mag/outd/outd_stage3.mag b/mag/outd/outd_stage3.mag
new file mode 100644
index 0000000..1156c97
--- /dev/null
+++ b/mag/outd/outd_stage3.mag
@@ -0,0 +1,52 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< metal2 >>
+rect 5935 5190 7170 5275
+rect 13075 5190 14310 5275
+rect 20200 5190 21435 5275
+rect 5955 4555 7190 4640
+rect 13075 4555 14310 4640
+rect 20200 4555 21435 4640
+rect 6490 4080 7220 4160
+rect 13620 4080 14350 4160
+rect 20745 4080 21475 4160
+<< metal3 >>
+rect 5845 7120 27355 7490
+rect 1040 4245 1140 4310
+rect 6505 4205 7685 4275
+rect 6505 4200 7110 4205
+rect 7605 4200 7685 4205
+rect 13605 4205 14795 4280
+rect 13605 4195 14265 4205
+rect 14725 4195 14795 4205
+rect 20740 4210 21930 4285
+rect 20740 4200 21390 4210
+rect 21850 4200 21930 4210
+rect 7080 -10 7155 500
+rect 14205 -10 14280 500
+rect 21330 -10 21405 500
+<< metal4 >>
+rect 5985 6440 7840 6720
+rect 13110 6440 14885 6720
+rect 20235 6440 22010 6720
+rect 5985 6100 7840 6380
+rect 13110 6100 14885 6380
+rect 20235 6100 22010 6380
+use outd_stage2  outd_stage2_0
+timestamp 1647868710
+transform 1 0 5 0 1 430
+box -15 -440 7116 7060
+use outd_stage2  outd_stage2_1
+timestamp 1647868710
+transform 1 0 7130 0 1 430
+box -15 -440 7116 7060
+use outd_stage2  outd_stage2_2
+timestamp 1647868710
+transform 1 0 14255 0 1 430
+box -15 -440 7116 7060
+use outd_stage2  outd_stage2_3
+timestamp 1647868710
+transform 1 0 21380 0 1 430
+box -15 -440 7116 7060
+<< end >>
diff --git a/mag/outd/outd_stage3.spice b/mag/outd/outd_stage3.spice
new file mode 100644
index 0000000..7acc0bf
--- /dev/null
+++ b/mag/outd/outd_stage3.spice
@@ -0,0 +1,4610 @@
+* SPICE3 file created from outd_stage3.ext - technology: sky130A
+
+X0 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X4 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X5 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X6 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X7 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X8 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X9 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X10 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X11 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X12 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X13 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X14 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X15 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X16 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X17 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X18 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X19 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X20 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X21 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X22 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X23 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X24 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X25 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X26 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X27 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X28 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X29 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X30 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X31 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X32 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X33 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X34 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X35 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X36 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X37 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X38 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X39 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X40 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X41 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X42 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X43 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X44 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X45 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X46 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X47 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X48 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X49 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X50 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X51 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X52 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X53 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X54 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X55 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X56 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X57 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X58 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X59 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X60 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X61 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X62 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X63 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X64 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X65 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X66 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X67 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X68 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X69 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X70 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X71 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X72 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X73 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X74 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X75 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X76 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X77 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X78 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X79 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X80 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X81 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X82 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X83 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X84 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X85 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X86 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X87 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X88 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X89 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X90 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X91 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X92 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X93 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X94 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X95 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X96 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X97 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X98 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X99 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X100 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X101 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X102 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X103 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X104 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X105 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X106 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X107 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X108 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X109 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X110 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X111 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X112 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X113 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X114 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X115 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X116 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X117 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X118 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X119 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X120 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X121 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X122 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X123 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X124 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X125 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X126 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X127 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X128 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X129 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X130 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X131 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X132 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X133 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X134 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X135 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X136 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X137 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X138 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X139 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X140 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X141 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X142 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X143 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X144 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X145 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X146 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X147 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X148 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X149 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X150 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X151 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X152 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X153 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X154 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X155 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X156 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X157 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X158 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X159 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X160 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X161 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X162 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X163 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X164 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X165 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X166 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X167 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X168 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X169 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X170 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X171 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X172 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X173 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X174 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X175 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X176 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X177 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X178 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X179 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X180 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X181 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X182 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X183 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X184 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X185 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X186 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X187 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X188 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X189 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X190 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X191 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X192 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X193 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X194 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X195 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X196 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X197 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X198 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X199 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X200 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X201 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X202 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X203 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X204 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X205 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X206 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X207 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X208 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X209 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X210 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X211 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X212 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X213 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X214 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X215 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X216 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X217 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X218 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X219 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X220 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X221 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X222 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X223 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X224 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X225 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X226 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X227 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X228 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X229 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X230 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X231 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X232 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X233 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X234 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X235 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X236 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X237 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X238 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X239 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X240 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X241 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X242 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X243 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X244 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X245 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X246 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X247 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X248 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X249 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X250 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X251 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X252 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X253 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X254 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X255 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X256 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X257 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X258 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X259 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X260 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X261 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X262 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X263 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X264 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X265 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X266 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X267 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X268 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X269 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X270 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X271 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X272 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X273 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X274 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X275 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X276 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X277 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X278 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X279 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X280 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X281 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X282 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X283 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X284 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X285 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X286 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X287 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X288 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X289 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X290 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X291 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X292 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X293 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X294 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X295 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X296 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X297 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X298 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X299 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X300 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X301 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X302 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X303 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X304 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X305 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X306 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X307 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X308 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X309 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X310 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X311 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X312 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X313 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X314 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X315 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X316 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X317 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X318 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X319 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X320 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X321 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X322 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X323 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X324 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X325 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X326 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X327 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X328 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X329 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X330 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X331 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X332 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X333 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X334 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X335 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X336 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X337 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X338 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X339 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X340 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X341 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X342 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X343 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X344 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X345 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X346 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X347 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X348 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X349 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X350 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X351 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X352 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X353 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X354 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X355 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X356 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X357 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X358 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X359 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X360 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X361 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X362 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X363 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X364 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X365 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X366 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X367 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X368 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X369 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X370 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X371 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X372 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X373 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X374 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X375 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X376 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X377 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X378 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X379 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X380 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X381 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X382 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X383 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X384 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X385 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X386 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X387 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X388 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X389 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X390 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X391 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X392 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X393 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X394 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X395 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X396 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X397 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X398 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X399 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X400 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X401 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X402 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X403 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X404 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X405 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X406 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X407 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X408 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X409 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X410 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X411 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X412 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X413 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X414 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X415 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X416 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X417 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X418 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X419 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X420 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X421 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X422 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X423 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X424 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X425 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X426 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X427 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X428 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X429 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X430 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X431 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X432 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X433 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X434 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X435 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X436 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X437 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X438 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X439 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X440 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X441 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X442 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X443 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X444 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X445 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X446 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X447 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X448 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X449 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X450 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X451 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X452 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X453 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X454 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X455 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X456 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X457 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X458 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X459 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X460 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X461 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X462 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X463 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X464 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X465 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X466 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X467 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X468 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X469 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X470 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X471 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X472 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X473 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X474 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X475 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X476 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X477 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X478 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X479 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X480 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X481 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X482 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X483 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X484 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X485 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X486 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X487 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X488 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X489 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X490 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X491 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X492 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X493 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X494 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X495 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X496 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X497 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X498 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X499 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X500 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X501 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X502 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X503 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X504 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X505 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X506 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X507 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X508 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X509 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X510 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X511 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X512 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X513 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X514 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X515 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X516 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X517 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X518 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X519 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X520 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X521 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X522 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X523 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X524 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X525 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X526 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X527 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X528 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X529 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X530 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X531 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X532 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X533 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X534 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X535 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X536 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X537 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X538 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X539 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X540 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X541 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X542 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X543 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X544 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X545 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X546 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X547 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X548 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X549 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X550 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X551 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X552 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X553 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X554 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X555 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X556 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X557 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X558 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X559 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X560 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X561 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X562 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X563 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X564 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X565 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X566 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X567 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X568 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X569 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X570 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X571 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X572 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X573 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X574 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X575 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X576 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X577 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X578 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X579 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X580 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X581 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X582 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X583 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X584 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X585 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X586 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X587 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X588 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X589 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X590 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X591 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X592 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X593 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X594 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X595 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X596 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X597 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X598 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X599 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X600 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X601 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X602 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X603 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X604 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X605 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X606 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X607 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X608 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X609 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X610 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X611 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X612 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X613 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X614 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X615 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X616 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X617 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X618 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X619 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X620 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X621 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X622 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X623 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X624 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X625 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X626 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X627 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X628 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X629 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X630 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X631 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X632 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X633 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X634 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X635 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X636 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X637 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X638 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X639 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X640 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X641 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X642 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X643 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X644 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X645 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X646 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X647 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X648 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X649 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X650 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X651 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X652 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X653 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X654 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X655 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X656 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X657 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X658 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X659 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X660 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X661 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X662 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X663 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X664 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X665 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X666 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X667 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X668 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X669 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X670 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X671 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X672 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X673 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X674 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X675 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X676 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X677 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X678 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X679 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X680 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X681 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X682 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X683 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X684 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X685 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X686 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X687 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X688 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X689 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X690 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X691 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X692 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X693 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X694 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X695 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X696 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X697 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X698 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X699 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X700 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X701 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X702 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X703 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X704 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X705 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X706 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X707 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X708 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X709 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X710 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X711 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X712 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X713 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X714 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X715 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X716 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X717 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X718 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X719 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X720 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X721 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X722 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X723 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X724 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X725 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X726 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X727 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X728 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X729 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X730 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X731 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X732 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X733 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X734 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X735 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X736 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X737 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X738 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X739 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X740 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X741 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X742 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X743 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X744 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X745 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X746 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X747 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X748 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X749 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X750 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X751 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X752 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X753 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X754 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X755 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X756 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X757 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X758 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X759 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X760 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X761 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X762 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X763 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X764 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X765 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X766 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X767 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X768 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X769 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X770 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X771 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X772 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X773 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X774 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X775 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X776 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X777 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X778 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X779 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X780 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X781 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X782 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X783 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X784 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X785 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X786 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X787 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X788 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X789 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X790 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X791 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X792 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X793 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X794 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X795 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X796 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X797 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X798 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X799 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X800 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X801 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X802 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X803 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X804 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X805 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X806 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X807 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X808 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X809 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X810 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X811 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X812 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X813 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X814 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X815 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X816 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X817 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X818 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X819 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X820 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X821 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X822 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X823 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X824 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X825 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X826 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X827 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X828 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X829 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X830 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X831 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X832 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X833 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X834 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X835 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X836 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X837 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X838 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X839 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X840 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X841 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X842 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X843 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X844 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X845 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X846 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X847 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X848 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X849 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X850 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X851 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X852 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X853 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X854 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X855 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X856 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X857 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X858 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X859 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X860 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X861 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X862 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X863 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X864 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X865 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X866 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X867 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X868 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X869 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X870 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X871 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X872 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X873 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X874 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X875 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X876 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X877 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X878 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X879 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X880 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X881 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X882 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X883 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X884 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X885 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X886 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X887 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X888 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X889 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X890 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X891 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X892 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X893 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X894 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X895 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X896 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X897 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X898 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X899 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X900 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X901 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X902 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X903 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X904 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X905 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X906 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X907 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X908 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X909 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X910 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X911 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X912 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X913 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X914 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X915 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X916 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X917 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X918 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X919 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X920 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X921 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X922 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X923 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X924 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X925 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X926 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X927 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X928 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X929 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X930 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X931 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X932 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X933 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X934 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X935 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X936 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X937 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X938 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X939 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X940 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X941 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X942 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X943 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X944 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X945 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X946 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X947 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X948 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X949 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X950 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X951 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X952 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X953 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X954 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X955 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X956 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X957 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X958 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X959 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X960 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X961 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X962 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X963 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X964 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X965 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X966 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X967 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X968 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X969 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X970 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X971 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X972 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X973 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X974 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X975 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X976 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X977 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X978 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X979 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X980 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X981 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X982 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X983 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X984 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X985 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X986 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X987 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X988 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X989 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X990 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X991 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X992 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X993 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X994 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X995 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X996 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X997 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X998 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X999 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1000 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1001 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1002 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1003 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1004 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1005 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1006 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1007 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1008 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1009 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1010 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1011 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1012 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1013 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1014 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1015 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1016 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1017 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1018 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1019 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1020 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1021 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1022 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1023 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1024 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1025 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1026 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1027 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1028 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1029 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1030 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1031 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1032 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1033 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1034 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1035 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1036 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1037 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1038 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1039 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1040 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1041 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1042 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1043 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1044 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1045 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1046 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1047 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1048 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1049 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1050 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1051 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1052 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1053 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1054 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1055 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1056 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1057 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1058 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1059 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1060 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1061 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1062 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1063 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1064 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1065 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1066 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1067 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1068 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1069 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1070 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1071 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1072 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1073 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1074 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1075 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1076 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1077 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1078 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1079 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1080 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1081 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1082 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1083 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1084 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1085 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1086 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1087 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1088 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1089 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1090 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1091 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1092 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1093 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1094 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1095 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1096 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1097 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1098 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1099 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1100 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1101 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1102 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1103 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1104 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1105 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1106 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1107 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1108 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1109 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1110 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1111 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1112 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1113 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1114 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1115 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1116 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1117 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1118 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1119 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1120 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1121 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1122 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1123 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1124 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1125 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1126 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1127 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1128 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1129 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1130 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1131 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1132 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1133 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1134 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1135 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1136 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1137 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1138 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1139 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1140 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1141 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1142 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1143 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1144 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1145 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1146 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1147 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1148 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1149 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1150 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1151 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1152 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1153 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1154 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1155 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1156 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1157 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1158 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1159 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1160 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1161 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1162 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1163 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1164 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1165 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1166 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1167 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X1168 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1169 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1170 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1171 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1172 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1173 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1174 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1175 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1176 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1177 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1178 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1179 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1180 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1181 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1182 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1183 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1184 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1185 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1186 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1187 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1188 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1189 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1190 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1191 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1192 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1193 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1194 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1195 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1196 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1197 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1198 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1199 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1200 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1201 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1202 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1203 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1204 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1205 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1206 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1207 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1208 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1209 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1210 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1211 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1212 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1213 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1214 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1215 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1216 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1217 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1218 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1219 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1220 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1221 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1222 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1223 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1224 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1225 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1226 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1227 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1228 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1229 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1230 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1231 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1232 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1233 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1234 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1235 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1236 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1237 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1238 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1239 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1240 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1241 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1242 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1243 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1244 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1245 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1246 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1247 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1248 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1249 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1250 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1251 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1252 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1253 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1254 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1255 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1256 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1257 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1258 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1259 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1260 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1261 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1262 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1263 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1264 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1265 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1266 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1267 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1268 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1269 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1270 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1271 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1272 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1273 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1274 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1275 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1276 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1277 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1278 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1279 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1280 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1281 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1282 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1283 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1284 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1285 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1286 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1287 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1288 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1289 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1290 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1291 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1292 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1293 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1294 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1295 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1296 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1297 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1298 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1299 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1300 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1301 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1302 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1303 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1304 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1305 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1306 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1307 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1308 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1309 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1310 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1311 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1312 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1313 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1314 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1315 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1316 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1317 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1318 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1319 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1320 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1321 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1322 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1323 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1324 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1325 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1326 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1327 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1328 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1329 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1330 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1331 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1332 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1333 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1334 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1335 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1336 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1337 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1338 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1339 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1340 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1341 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1342 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1343 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1344 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1345 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1346 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1347 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1348 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1349 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1350 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1351 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1352 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1353 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1354 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1355 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1356 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1357 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1358 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1359 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1360 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1361 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1362 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1363 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1364 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1365 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1366 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1367 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1368 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1369 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1370 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1371 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1372 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1373 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1374 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1375 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1376 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1377 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1378 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1379 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1380 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1381 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1382 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1383 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1384 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1385 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1386 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1387 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1388 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1389 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1390 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1391 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1392 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1393 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1394 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1395 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1396 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1397 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1398 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1399 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1400 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1401 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1402 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1403 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1404 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1405 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1406 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1407 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1408 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1409 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1410 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1411 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1412 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1413 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1414 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1415 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1416 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1417 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1418 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1419 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1420 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1421 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1422 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1423 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1424 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1425 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1426 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1427 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1428 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1429 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1430 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1431 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1432 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1433 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1434 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1435 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1436 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1437 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1438 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1439 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1440 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1441 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1442 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1443 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1444 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1445 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1446 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1447 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1448 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1449 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1450 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1451 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1452 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1453 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1454 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1455 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1456 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1457 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1458 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1459 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1460 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1461 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1462 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1463 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1464 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1465 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1466 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1467 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1468 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1469 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1470 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1471 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1472 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1473 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1474 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1475 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1476 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1477 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1478 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1479 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1480 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1481 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1482 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1483 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1484 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1485 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1486 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1487 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1488 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1489 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1490 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1491 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1492 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1493 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1494 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1495 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1496 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1497 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1498 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1499 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1500 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1501 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1502 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1503 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1504 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1505 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1506 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1507 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1508 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1509 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1510 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1511 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1512 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1513 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1514 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1515 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1516 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1517 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1518 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1519 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1520 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1521 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1522 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1523 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1524 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1525 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1526 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1527 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1528 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1529 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1530 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1531 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1532 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1533 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1534 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1535 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1536 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1537 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1538 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1539 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1540 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1541 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1542 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1543 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1544 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1545 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1546 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1547 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1548 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1549 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1550 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1551 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1552 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1553 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1554 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1555 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1556 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1557 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1558 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1559 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1560 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1561 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1562 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1563 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1564 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1565 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1566 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1567 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1568 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1569 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1570 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1571 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1572 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1573 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1574 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1575 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1576 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1577 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1578 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1579 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1580 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1581 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1582 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1583 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1584 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1585 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1586 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1587 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1588 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1589 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1590 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1591 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1592 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1593 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1594 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1595 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1596 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1597 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1598 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1599 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1600 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1601 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1602 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1603 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1604 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1605 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1606 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1607 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1608 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1609 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1610 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1611 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1612 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1613 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1614 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1615 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1616 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1617 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1618 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1619 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1620 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1621 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1622 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1623 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1624 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1625 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1626 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1627 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1628 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1629 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1630 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1631 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1632 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1633 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1634 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1635 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1636 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1637 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1638 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1639 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1640 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1641 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1642 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1643 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1644 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1645 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1646 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1647 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1648 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1649 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1650 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1651 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1652 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1653 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1654 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1655 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1656 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1657 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1658 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1659 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1660 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1661 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1662 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1663 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1664 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1665 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1666 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1667 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1668 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1669 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1670 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1671 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1672 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1673 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1674 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1675 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1676 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1677 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1678 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1679 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1680 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1681 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1682 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1683 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1684 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1685 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1686 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1687 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1688 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1689 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1690 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1691 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1692 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1693 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1694 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1695 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1696 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1697 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1698 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1699 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1700 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1701 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1702 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1703 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1704 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1705 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1706 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1707 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1708 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1709 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1710 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1711 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1712 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1713 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1714 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1715 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1716 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1717 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1718 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1719 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1720 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1721 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1722 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1723 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1724 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1725 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1726 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1727 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1728 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1729 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1730 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1731 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1732 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1733 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1734 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1735 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1736 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1737 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1738 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1739 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1740 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1741 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1742 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1743 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1744 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1745 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1746 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1747 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1748 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1749 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1750 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1751 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1752 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1753 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1754 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1755 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1756 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1757 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1758 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1759 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1760 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1761 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1762 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1763 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1764 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1765 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1766 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1767 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1768 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1769 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1770 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1771 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1772 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1773 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1774 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1775 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1776 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1777 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1778 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1779 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1780 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1781 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1782 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1783 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1784 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1785 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1786 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1787 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1788 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1789 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1790 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1791 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1792 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1793 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1794 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1795 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1796 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1797 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1798 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1799 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1800 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1801 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1802 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1803 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1804 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1805 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1806 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1807 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1808 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1809 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1810 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1811 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1812 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1813 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1814 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1815 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1816 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1817 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1818 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1819 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1820 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1821 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1822 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1823 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1824 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1825 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1826 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1827 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1828 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1829 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1830 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1831 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1832 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1833 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1834 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1835 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1836 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1837 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1838 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1839 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1840 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1841 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1842 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1843 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1844 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1845 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1846 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1847 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1848 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1849 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1850 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1851 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1852 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1853 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1854 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1855 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1856 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1857 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1858 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1859 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1860 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1861 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1862 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1863 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1864 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1865 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1866 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1867 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1868 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1869 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1870 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1871 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1872 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1873 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1874 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1875 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1876 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1877 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1878 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1879 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1880 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1881 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1882 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1883 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1884 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1885 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1886 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1887 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1888 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1889 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1890 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1891 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1892 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1893 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1894 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1895 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1896 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1897 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1898 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1899 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1900 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1901 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1902 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1903 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1904 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1905 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1906 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1907 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1908 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1909 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1910 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1911 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1912 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1913 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1914 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1915 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1916 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1917 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1918 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1919 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1920 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1921 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1922 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1923 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1924 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1925 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1926 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1927 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1928 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1929 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1930 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1931 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1932 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1933 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1934 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1935 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1936 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1937 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1938 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1939 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X1940 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1941 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1942 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1943 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1944 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1945 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1946 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1947 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1948 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1949 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1950 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1951 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1952 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1953 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1954 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1955 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1956 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1957 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1958 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1959 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1960 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1961 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1962 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1963 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1964 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1965 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1966 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1967 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1968 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1969 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1970 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1971 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1972 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1973 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1974 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1975 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1976 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1977 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1978 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1979 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1980 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1981 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1982 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1983 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1984 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1985 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1986 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1987 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1988 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1989 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1990 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1991 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1992 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1993 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1994 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1995 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1996 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1997 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1998 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X1999 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2000 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2001 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2002 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2003 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2004 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2005 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2006 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2007 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2008 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2009 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2010 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2011 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2012 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2013 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2014 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2015 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2016 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2017 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2018 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2019 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2020 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2021 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2022 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2023 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2024 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2025 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2026 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2027 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2028 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2029 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2030 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2031 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2032 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2033 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2034 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2035 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2036 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2037 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2038 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2039 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2040 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2041 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2042 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2043 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2044 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2045 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2046 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2047 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2048 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2049 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2050 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2051 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2052 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2053 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2054 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2055 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2056 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2057 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2058 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2059 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2060 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2061 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2062 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2063 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2064 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2065 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2066 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2067 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2068 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2069 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2070 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2071 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2072 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2073 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2074 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2075 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2076 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2077 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2078 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2079 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2080 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2081 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2082 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2083 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2084 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2085 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2086 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2087 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2088 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2089 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2090 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2091 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2092 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2093 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2094 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2095 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2096 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2097 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2098 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2099 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2100 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2101 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2102 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2103 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2104 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2105 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2106 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2107 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2108 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2109 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2110 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2111 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2112 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2113 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2114 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2115 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2116 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2117 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2118 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2119 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2120 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2121 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2122 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2123 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2124 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2125 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2126 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2127 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2128 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2129 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2130 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2131 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2132 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2133 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2134 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2135 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2136 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2137 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2138 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2139 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2140 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2141 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2142 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2143 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2144 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2145 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2146 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2147 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2148 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2149 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2150 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2151 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2152 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2153 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2154 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2155 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2156 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2157 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2158 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2159 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2160 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2161 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2162 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2163 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2164 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2165 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2166 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2167 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2168 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2169 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2170 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2171 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2172 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2173 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2174 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2175 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2176 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2177 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2178 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2179 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2180 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2181 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2182 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2183 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2184 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2185 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2186 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2187 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2188 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2189 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2190 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2191 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2192 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2193 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2194 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2195 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2196 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2197 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2198 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2199 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2200 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2201 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2202 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2203 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2204 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2205 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2206 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2207 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2208 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2209 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2210 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2211 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2212 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2213 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2214 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2215 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2216 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2217 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2218 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2219 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2220 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2221 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2222 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2223 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2224 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2225 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2226 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2227 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2228 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2229 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2230 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2231 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2232 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2233 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2234 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2235 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2236 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2237 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2238 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2239 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2240 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2241 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2242 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2243 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2244 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2245 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2246 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2247 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2248 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2249 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2250 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2251 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2252 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2253 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2254 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2255 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2256 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2257 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2258 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2259 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2260 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2261 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2262 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2263 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2264 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2265 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2266 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2267 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2268 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2269 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2270 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2271 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2272 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2273 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2274 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2275 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2276 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2277 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2278 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2279 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2280 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2281 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2282 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2283 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2284 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2285 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2286 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2287 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2288 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2289 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2290 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2291 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2292 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2293 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2294 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2295 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2296 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2297 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2298 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2299 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2300 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2301 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2302 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2303 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2304 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2305 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2306 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2307 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2308 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2309 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2310 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2311 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2312 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2313 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2314 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2315 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2316 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2317 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2318 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2319 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X2320 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2321 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2322 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2323 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2324 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2325 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2326 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2327 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2328 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2329 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2330 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2331 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2332 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2333 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2334 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2335 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2336 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2337 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2338 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2339 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2340 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2341 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2342 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2343 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2344 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2345 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2346 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2347 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2348 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2349 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2350 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2351 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2352 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2353 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2354 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2355 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2356 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2357 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2358 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2359 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2360 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2361 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2362 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2363 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2364 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2365 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2366 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2367 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2368 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2369 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2370 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2371 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2372 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2373 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2374 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2375 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2376 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2377 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2378 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2379 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2380 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2381 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2382 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2383 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2384 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2385 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2386 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2387 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2388 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2389 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2390 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2391 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2392 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2393 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2394 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2395 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2396 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2397 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2398 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2399 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2400 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2401 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2402 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2403 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2404 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2405 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2406 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2407 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2408 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2409 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2410 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2411 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2412 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2413 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2414 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2415 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2416 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2417 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2418 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2419 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2420 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2421 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2422 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2423 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2424 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2425 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2426 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2427 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2428 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2429 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2430 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2431 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2432 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2433 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2434 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2435 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2436 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2437 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2438 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2439 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2440 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2441 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2442 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2443 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2444 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2445 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2446 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2447 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2448 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2449 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2450 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2451 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2452 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2453 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2454 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2455 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2456 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2457 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2458 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2459 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2460 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2461 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2462 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2463 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2464 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2465 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2466 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2467 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2468 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2469 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2470 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2471 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2472 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2473 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2474 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2475 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2476 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2477 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2478 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2479 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2480 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2481 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2482 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2483 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2484 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2485 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2486 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2487 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2488 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2489 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2490 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2491 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2492 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2493 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2494 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2495 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2496 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2497 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2498 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2499 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2500 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2501 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2502 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2503 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2504 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2505 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2506 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2507 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2508 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2509 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2510 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2511 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2512 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2513 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2514 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2515 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2516 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2517 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2518 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2519 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2520 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2521 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2522 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2523 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2524 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2525 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2526 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2527 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2528 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2529 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2530 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2531 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2532 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2533 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2534 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2535 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2536 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2537 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2538 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2539 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2540 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2541 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2542 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2543 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2544 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2545 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2546 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2547 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2548 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2549 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2550 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2551 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2552 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2553 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2554 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2555 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2556 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2557 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2558 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2559 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2560 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2561 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2562 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2563 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2564 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2565 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2566 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2567 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2568 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2569 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2570 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2571 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2572 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2573 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2574 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2575 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2576 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2577 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2578 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2579 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2580 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2581 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2582 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2583 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2584 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2585 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2586 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2587 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2588 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2589 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2590 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2591 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2592 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2593 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2594 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2595 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2596 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2597 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2598 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2599 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2600 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2601 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2602 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2603 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2604 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2605 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2606 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2607 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2608 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2609 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2610 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2611 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2612 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2613 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2614 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2615 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2616 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2617 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2618 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2619 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2620 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2621 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2622 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2623 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2624 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2625 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2626 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2627 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2628 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2629 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2630 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2631 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2632 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2633 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2634 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2635 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2636 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2637 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2638 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2639 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2640 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2641 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2642 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2643 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2644 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2645 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2646 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2647 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2648 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2649 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2650 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2651 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2652 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2653 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2654 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2655 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2656 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2657 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2658 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2659 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2660 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2661 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2662 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2663 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2664 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2665 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2666 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2667 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2668 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2669 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2670 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2671 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2672 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2673 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2674 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2675 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2676 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2677 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2678 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2679 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2680 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2681 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2682 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2683 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2684 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2685 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2686 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2687 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2688 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2689 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2690 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2691 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2692 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2693 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2694 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2695 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2696 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2697 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2698 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2699 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2700 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2701 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2702 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2703 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2704 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2705 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2706 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2707 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2708 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2709 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2710 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2711 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2712 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2713 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2714 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2715 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2716 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2717 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2718 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2719 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2720 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2721 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2722 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2723 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2724 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2725 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2726 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2727 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2728 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2729 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2730 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2731 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2732 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2733 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2734 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2735 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2736 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2737 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2738 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2739 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2740 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2741 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2742 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2743 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2744 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2745 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2746 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2747 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2748 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2749 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2750 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2751 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2752 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2753 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2754 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2755 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2756 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2757 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2758 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2759 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2760 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2761 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2762 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2763 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2764 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2765 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2766 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2767 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2768 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2769 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2770 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2771 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2772 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2773 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2774 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2775 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2776 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2777 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2778 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2779 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2780 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2781 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2782 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2783 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2784 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2785 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2786 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2787 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2788 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2789 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2790 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2791 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2792 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2793 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2794 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2795 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2796 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2797 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2798 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2799 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2800 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2801 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2802 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2803 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2804 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2805 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2806 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2807 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2808 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2809 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2810 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2811 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2812 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2813 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2814 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2815 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2816 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2817 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2818 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2819 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2820 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2821 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2822 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2823 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2824 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2825 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2826 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2827 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2828 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2829 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2830 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2831 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2832 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2833 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2834 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2835 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2836 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2837 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2838 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2839 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2840 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2841 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2842 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2843 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2844 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2845 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2846 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2847 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2848 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2849 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2850 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2851 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2852 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2853 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2854 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2855 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2856 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2857 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2858 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2859 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2860 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2861 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2862 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2863 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2864 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2865 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2866 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2867 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2868 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2869 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2870 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2871 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2872 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2873 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2874 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2875 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2876 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2877 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2878 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2879 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2880 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2881 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2882 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2883 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2884 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2885 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2886 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2887 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2888 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2889 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2890 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2891 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2892 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2893 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2894 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2895 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2896 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2897 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2898 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2899 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2900 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2901 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2902 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2903 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2904 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2905 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2906 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2907 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2908 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2909 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2910 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2911 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2912 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2913 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2914 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2915 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2916 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2917 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2918 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2919 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2920 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2921 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2922 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2923 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2924 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2925 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2926 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2927 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2928 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2929 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2930 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2931 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2932 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2933 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2934 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2935 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2936 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2937 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2938 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2939 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2940 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2941 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2942 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2943 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2944 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2945 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2946 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2947 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2948 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2949 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2950 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2951 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2952 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2953 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2954 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2955 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2956 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2957 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2958 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2959 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2960 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2961 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2962 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2963 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2964 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2965 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2966 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2967 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2968 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2969 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2970 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2971 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2972 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2973 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2974 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2975 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2976 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2977 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2978 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2979 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2980 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2981 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2982 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2983 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X2984 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2985 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2986 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2987 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2988 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2989 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2990 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2991 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2992 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2993 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2994 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2995 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2996 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2997 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2998 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X2999 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3000 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3001 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3002 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3003 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3004 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3005 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3006 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3007 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3008 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3009 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3010 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3011 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3012 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3013 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3014 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3015 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3016 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3017 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3018 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3019 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3020 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3021 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3022 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3023 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3024 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3025 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3026 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3027 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3028 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3029 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3030 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3031 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3032 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3033 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3034 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3035 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3036 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3037 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3038 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3039 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3040 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3041 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3042 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3043 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3044 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3045 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3046 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3047 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3048 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3049 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3050 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3051 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3052 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3053 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3054 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3055 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3056 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3057 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3058 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3059 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3060 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3061 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3062 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3063 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3064 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3065 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3066 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3067 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3068 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3069 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3070 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3071 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3072 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3073 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3074 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3075 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3076 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3077 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3078 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3079 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3080 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3081 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3082 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3083 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3084 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3085 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3086 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3087 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3088 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3089 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3090 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3091 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3092 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3093 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3094 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3095 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3096 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3097 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3098 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3099 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3100 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3101 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3102 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3103 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3104 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3105 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3106 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3107 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3108 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3109 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3110 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3111 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3112 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3113 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3114 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3115 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3116 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3117 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3118 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3119 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3120 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3121 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3122 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3123 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3124 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3125 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3126 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3127 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3128 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3129 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3130 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3131 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3132 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3133 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3134 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3135 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3136 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3137 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3138 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3139 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3140 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3141 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3142 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3143 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3144 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3145 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3146 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3147 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3148 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3149 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3150 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3151 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3152 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3153 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3154 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3155 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3156 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3157 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3158 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3159 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3160 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3161 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3162 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3163 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3164 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3165 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3166 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3167 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3168 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3169 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3170 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3171 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3172 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3173 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3174 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3175 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3176 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3177 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3178 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3179 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3180 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3181 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3182 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3183 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3184 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3185 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3186 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3187 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3188 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3189 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3190 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3191 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3192 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3193 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3194 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3195 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3196 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3197 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3198 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3199 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3200 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3201 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3202 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3203 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3204 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3205 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3206 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3207 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3208 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3209 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3210 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3211 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3212 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3213 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3214 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3215 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3216 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3217 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3218 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3219 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3220 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3221 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3222 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3223 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3224 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3225 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3226 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3227 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3228 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3229 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3230 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3231 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3232 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3233 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3234 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3235 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3236 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3237 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3238 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3239 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3240 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3241 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3242 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3243 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3244 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3245 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3246 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3247 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3248 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3249 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3250 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3251 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3252 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3253 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3254 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3255 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3256 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3257 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3258 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3259 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3260 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3261 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3262 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3263 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3264 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3265 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3266 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3267 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3268 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3269 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3270 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3271 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3272 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3273 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3274 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3275 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3276 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3277 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3278 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3279 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3280 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3281 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3282 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3283 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3284 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3285 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3286 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3287 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3288 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3289 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3290 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3291 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3292 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3293 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3294 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3295 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3296 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3297 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3298 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3299 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3300 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3301 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3302 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3303 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3304 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3305 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3306 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3307 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3308 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3309 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3310 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3311 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3312 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3313 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3314 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3315 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3316 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3317 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3318 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3319 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3320 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3321 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3322 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3323 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3324 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3325 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3326 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3327 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3328 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3329 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3330 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3331 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3332 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3333 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3334 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3335 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3336 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3337 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3338 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3339 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3340 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3341 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3342 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3343 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3344 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3345 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3346 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3347 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3348 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3349 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3350 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3351 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3352 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3353 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3354 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3355 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3356 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3357 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3358 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3359 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3360 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3361 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3362 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3363 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3364 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3365 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3366 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3367 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3368 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3369 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3370 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3371 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3372 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3373 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3374 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3375 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3376 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3377 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3378 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3379 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3380 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3381 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3382 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3383 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3384 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3385 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3386 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3387 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3388 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3389 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3390 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3391 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3392 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3393 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3394 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3395 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3396 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3397 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3398 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3399 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3400 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3401 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3402 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3403 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3404 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3405 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3406 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3407 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3408 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3409 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3410 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3411 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3412 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3413 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3414 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3415 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3416 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3417 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3418 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3419 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3420 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3421 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3422 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3423 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3424 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3425 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3426 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3427 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3428 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3429 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3430 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3431 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3432 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3433 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3434 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3435 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3436 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3437 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3438 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3439 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3440 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3441 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3442 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3443 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3444 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3445 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3446 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3447 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3448 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3449 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3450 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3451 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3452 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3453 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3454 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3455 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3456 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3457 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3458 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3459 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3460 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3461 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3462 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3463 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3464 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3465 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3466 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3467 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3468 m3_11690_14240# m4_40470_12200# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3469 m3_11690_14240# m4_40470_12880# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3470 m4_40470_12880# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3471 m4_40470_12200# m3_11690_14240# VSUBS sky130_fd_pr__res_high_po_5p73 l=4e+06u
+X3472 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3473 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3474 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3475 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3476 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3477 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3478 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3479 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3480 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3481 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3482 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3483 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3484 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3485 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3486 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3487 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3488 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3489 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3490 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3491 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3492 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3493 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3494 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3495 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3496 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3497 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3498 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3499 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3500 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3501 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3502 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3503 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3504 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3505 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3506 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3507 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3508 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3509 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3510 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3511 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3512 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3513 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3514 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3515 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3516 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3517 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3518 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3519 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3520 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3521 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3522 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3523 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3524 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3525 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3526 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3527 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3528 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3529 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3530 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3531 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3532 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3533 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3534 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3535 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3536 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3537 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3538 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3539 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3540 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3541 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3542 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3543 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3544 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3545 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3546 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3547 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3548 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3549 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3550 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3551 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3552 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3553 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3554 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3555 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3556 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3557 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3558 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3559 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3560 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3561 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3562 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3563 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3564 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3565 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3566 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3567 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3568 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3569 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3570 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3571 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3572 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3573 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3574 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3575 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3576 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3577 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3578 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3579 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3580 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3581 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3582 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3583 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3584 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3585 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3586 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3587 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3588 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3589 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3590 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3591 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3592 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3593 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3594 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3595 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3596 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3597 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3598 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3599 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3600 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3601 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3602 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3603 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3604 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3605 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3606 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3607 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3608 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3609 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3610 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3611 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3612 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3613 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3614 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3615 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3616 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3617 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3618 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3619 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3620 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3621 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3622 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3623 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3624 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3625 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3626 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3627 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3628 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3629 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3630 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3631 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3632 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3633 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3634 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3635 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3636 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3637 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3638 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3639 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3640 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3641 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3642 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3643 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3644 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3645 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3646 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3647 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3648 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3649 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3650 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3651 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3652 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3653 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3654 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3655 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3656 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3657 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3658 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3659 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3660 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3661 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3662 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3663 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3664 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3665 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3666 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3667 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3668 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3669 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3670 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3671 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3672 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3673 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3674 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3675 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3676 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3677 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3678 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3679 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3680 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3681 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3682 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3683 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3684 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3685 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3686 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3687 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3688 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3689 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3690 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3691 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3692 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3693 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3694 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3695 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3696 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3697 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3698 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3699 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3700 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3701 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3702 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3703 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3704 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3705 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3706 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3707 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3708 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3709 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3710 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3711 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3712 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3713 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3714 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3715 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3716 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3717 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3718 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3719 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3720 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3721 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3722 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3723 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3724 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3725 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3726 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3727 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3728 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3729 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3730 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3731 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3732 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3733 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3734 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3735 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3736 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3737 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3738 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3739 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3740 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3741 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3742 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3743 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3744 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3745 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3746 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3747 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3748 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3749 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3750 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3751 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3752 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3753 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3754 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3755 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3756 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3757 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3758 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3759 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3760 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3761 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3762 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3763 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3764 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3765 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3766 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3767 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3768 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3769 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3770 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3771 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3772 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3773 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3774 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3775 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3776 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3777 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3778 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3779 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3780 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3781 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3782 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3783 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3784 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3785 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3786 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3787 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3788 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3789 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3790 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3791 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3792 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3793 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3794 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3795 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3796 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3797 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3798 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3799 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3800 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3801 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3802 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3803 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3804 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3805 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3806 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3807 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3808 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3809 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3810 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3811 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3812 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3813 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3814 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3815 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3816 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3817 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3818 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3819 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3820 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3821 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3822 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3823 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3824 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3825 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3826 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3827 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3828 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3829 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3830 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3831 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3832 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3833 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3834 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3835 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3836 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3837 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3838 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3839 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3840 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3841 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3842 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3843 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3844 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3845 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3846 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3847 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3848 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3849 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3850 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3851 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3852 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3853 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3854 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3855 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3856 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3857 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3858 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3859 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3860 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3861 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3862 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3863 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3864 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3865 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3866 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3867 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3868 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3869 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3870 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3871 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3872 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3873 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3874 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3875 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3876 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3877 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3878 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3879 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3880 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3881 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3882 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3883 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3884 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3885 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3886 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3887 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3888 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3889 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3890 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3891 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3892 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3893 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3894 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3895 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3896 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3897 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3898 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3899 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3900 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3901 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3902 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3903 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3904 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3905 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3906 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3907 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3908 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3909 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3910 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3911 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3912 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3913 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3914 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3915 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3916 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3917 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3918 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3919 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3920 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3921 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3922 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3923 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3924 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3925 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3926 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3927 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3928 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3929 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3930 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3931 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3932 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3933 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3934 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3935 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3936 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3937 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3938 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3939 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3940 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3941 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3942 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3943 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X3944 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3945 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3946 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3947 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3948 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3949 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3950 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3951 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3952 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3953 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3954 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3955 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3956 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3957 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3958 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3959 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3960 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3961 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3962 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3963 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3964 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3965 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3966 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3967 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3968 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3969 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3970 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3971 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3972 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3973 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3974 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3975 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3976 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3977 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3978 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3979 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3980 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3981 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3982 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3983 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3984 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3985 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3986 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3987 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3988 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3989 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3990 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3991 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3992 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3993 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3994 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3995 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3996 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3997 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3998 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X3999 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4000 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4001 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4002 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4003 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4004 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4005 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4006 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4007 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4008 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4009 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4010 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4011 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4012 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4013 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4014 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4015 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4016 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4017 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4018 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4019 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4020 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4021 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4022 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4023 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4024 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4025 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4026 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4027 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4028 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4029 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4030 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4031 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4032 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4033 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4034 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4035 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4036 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4037 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4038 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4039 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4040 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4041 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4042 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4043 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4044 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4045 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4046 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4047 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4048 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4049 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4050 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4051 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4052 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4053 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4054 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4055 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4056 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4057 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4058 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4059 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4060 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4061 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4062 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4063 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4064 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4065 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4066 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4067 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4068 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4069 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4070 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4071 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4072 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4073 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4074 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4075 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4076 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4077 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4078 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4079 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4080 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4081 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4082 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4083 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4084 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4085 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4086 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4087 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4088 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4089 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4090 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4091 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4092 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4093 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4094 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4095 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4096 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4097 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4098 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4099 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4100 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4101 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4102 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4103 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4104 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4105 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4106 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4107 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4108 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4109 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4110 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4111 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4112 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4113 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4114 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4115 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4116 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4117 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4118 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4119 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4120 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4121 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4122 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4123 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4124 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4125 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4126 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4127 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4128 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4129 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4130 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4131 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4132 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4133 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4134 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4135 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4136 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4137 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4138 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4139 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4140 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4141 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4142 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4143 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4144 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4145 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4146 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4147 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4148 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4149 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4150 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4151 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4152 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4153 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4154 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4155 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4156 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4157 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4158 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4159 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4160 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4161 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4162 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4163 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4164 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4165 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4166 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4167 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4168 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4169 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4170 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4171 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4172 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4173 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4174 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4175 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4176 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4177 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4178 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4179 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4180 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4181 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4182 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4183 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4184 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4185 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4186 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4187 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4188 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4189 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4190 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4191 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4192 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4193 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4194 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4195 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4196 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4197 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4198 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4199 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4200 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4201 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4202 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4203 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4204 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4205 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4206 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4207 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4208 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4209 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4210 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4211 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4212 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4213 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4214 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4215 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4216 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4217 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4218 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4219 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4220 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4221 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4222 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4223 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4224 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4225 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4226 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4227 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4228 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4229 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4230 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4231 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4232 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4233 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4234 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4235 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4236 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4237 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4238 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4239 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4240 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4241 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4242 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4243 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4244 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4245 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4246 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4247 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4248 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4249 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4250 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4251 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4252 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4253 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4254 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4255 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4256 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4257 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4258 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4259 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4260 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4261 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4262 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4263 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4264 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4265 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4266 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4267 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4268 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4269 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4270 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4271 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4272 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4273 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4274 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4275 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4276 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4277 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4278 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4279 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4280 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4281 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4282 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4283 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4284 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4285 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4286 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4287 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4288 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4289 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4290 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4291 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4292 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4293 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4294 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4295 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4296 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4297 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4298 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4299 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4300 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4301 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4302 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4303 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4304 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4305 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4306 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4307 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4308 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4309 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4310 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4311 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4312 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4313 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4314 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4315 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4316 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4317 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4318 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4319 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4320 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4321 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4322 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4323 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4324 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4325 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4326 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4327 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4328 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4329 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4330 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4331 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4332 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4333 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4334 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4335 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4336 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4337 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4338 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4339 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4340 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4341 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4342 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4343 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4344 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4345 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4346 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4347 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4348 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4349 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4350 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4351 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4352 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4353 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4354 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4355 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4356 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4357 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4358 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4359 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4360 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4361 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4362 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4363 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4364 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4365 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4366 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4367 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4368 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4369 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4370 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4371 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4372 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4373 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4374 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4375 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4376 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4377 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4378 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4379 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4380 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4381 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4382 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4383 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4384 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4385 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4386 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4387 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4388 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4389 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4390 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4391 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4392 outd_stage2_3/cmirror_out m2_40400_10380# m4_40470_12880# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4393 m4_40470_12880# m2_40400_10380# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4394 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4395 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4396 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4397 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4398 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4399 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4400 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4401 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4402 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4403 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4404 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4405 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4406 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4407 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4408 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4409 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4410 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4411 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4412 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4413 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4414 outd_stage2_3/cmirror_out m2_40400_9110# m4_40470_12200# outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4415 m4_40470_12200# m2_40400_9110# outd_stage2_3/cmirror_out outd_stage2_3/cmirror_out sky130_fd_pr__nfet_01v8_lvt ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4416 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4417 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4418 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4419 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4420 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4421 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4422 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4423 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4424 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4425 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4426 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4427 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4428 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4429 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4430 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4431 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4432 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4433 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4434 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4435 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4436 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4437 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4438 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4439 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4440 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4441 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4442 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4443 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4444 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4445 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4446 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4447 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4448 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4449 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4450 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4451 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4452 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4453 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4454 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4455 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4456 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4457 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4458 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4459 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4460 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4461 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4462 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4463 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4464 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4465 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4466 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4467 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4468 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4469 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4470 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4471 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4472 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4473 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4474 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4475 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4476 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4477 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4478 outd_stage2_3/cmirror_out outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4479 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# outd_stage2_3/cmirror_out VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=150000u
+X4480 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4481 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4482 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4483 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4484 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4485 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4486 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4487 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4488 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4489 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4490 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4491 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4492 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4493 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4494 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4495 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4496 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4497 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4498 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4499 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4500 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4501 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4502 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4503 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4504 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4505 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4506 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4507 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4508 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4509 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4510 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4511 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4512 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4513 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4514 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4515 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4516 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4517 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4518 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4519 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4520 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4521 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4522 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4523 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4524 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4525 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4526 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4527 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4528 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4529 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4530 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4531 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4532 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4533 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4534 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4535 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4536 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4537 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4538 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4539 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4540 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4541 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4542 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4543 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4544 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4545 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4546 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4547 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4548 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4549 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4550 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4551 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4552 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4553 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4554 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4555 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4556 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4557 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4558 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4559 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4560 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4561 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4562 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4563 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4564 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4565 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4566 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4567 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4568 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4569 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4570 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4571 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4572 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4573 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4574 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4575 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4576 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4577 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4578 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4579 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4580 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4581 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4582 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4583 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4584 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4585 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4586 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4587 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4588 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4589 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4590 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4591 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4592 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4593 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4594 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4595 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4596 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4597 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4598 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4599 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4600 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4601 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4602 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4603 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4604 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4605 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4606 VSUBS outd_stage2_3/outd_cmirror_64t_4/m1_0_80# m2_41490_8160# VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
+X4607 m2_41490_8160# outd_stage2_3/outd_cmirror_64t_4/m1_0_80# VSUBS VSUBS sky130_fd_pr__nfet_01v8 ad=0p pd=0u as=0p ps=0u w=2e+06u l=500000u
diff --git a/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.ext b/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.ext
new file mode 100644
index 0000000..63bdc5a
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.ext
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+node "c1_n2050_n2000#" 0 0 -2050 -2000 mim 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15382084 15688 0 0 0 0
+node "m3_n2150_n2100#" 2 9067.5 -2150 -2100 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18055800 16998 400896 8544 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m3_n2150_n2100#" "c1_n2050_n2000#" 38347.7
+device csubckt sky130_fd_pr__cap_mim_m3_1 -2050 -2000 -2049 -1999 w=4000 l=4000 "None" "c1_n2050_n2000#" 15680 0 "m3_n2150_n2100#" 400 0
diff --git a/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag b/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag
new file mode 100644
index 0000000..d246348
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__cap_mim_m3_1_WXTTNJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal3 >>
+rect -2150 2072 2149 2100
+rect -2150 -2072 2065 2072
+rect 2129 -2072 2149 2072
+rect -2150 -2100 2149 -2072
+<< via3 >>
+rect 2065 -2072 2129 2072
+<< mimcap >>
+rect -2050 1960 1950 2000
+rect -2050 -1960 -2010 1960
+rect 1910 -1960 1950 1960
+rect -2050 -2000 1950 -1960
+<< mimcapcontact >>
+rect -2010 -1960 1910 1960
+<< metal4 >>
+rect 2049 2072 2145 2088
+rect -2011 1960 1911 1961
+rect -2011 -1960 -2010 1960
+rect 1910 -1960 1911 1960
+rect -2011 -1961 1911 -1960
+rect 2049 -2072 2065 2072
+rect 2129 -2072 2145 2072
+rect 2049 -2088 2145 -2072
+<< properties >>
+string FIXED_BBOX -2150 -2100 2050 2100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 20 l 20 val 815.2 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.ext" "b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.ext"
new file mode 100644
index 0000000..fd3443f
--- /dev/null
+++ "b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.ext"
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n3100#" "c2_n3251_n3000#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git "a/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag" "b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag"
new file mode 100644
index 0000000..c2006ac
--- /dev/null
+++ "b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
new file mode 100644
index 0000000..738151a
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.ext
@@ -0,0 +1,12 @@
+timestamp 1646921651
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14439.4 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "SUB" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "c2_n3251_n3000#" "m4_n3351_n3100#" 72824.4
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 570 0
diff --git a/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..caa3dbd
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_3NMJLQ.mag b/mag/outd/sky130_fd_pr__nfet_01v8_3NMJLQ.mag
new file mode 100644
index 0000000..06d787e
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_3NMJLQ.mag
@@ -0,0 +1,2767 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646299314
+<< error_p >>
+rect -2141 581 -2083 587
+rect -1949 581 -1891 587
+rect -1757 581 -1699 587
+rect -1565 581 -1507 587
+rect -1373 581 -1315 587
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect 1315 581 1373 587
+rect 1507 581 1565 587
+rect 1699 581 1757 587
+rect 1891 581 1949 587
+rect 2083 581 2141 587
+rect -2141 547 -2129 581
+rect -1949 547 -1937 581
+rect -1757 547 -1745 581
+rect -1565 547 -1553 581
+rect -1373 547 -1361 581
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect 1315 547 1327 581
+rect 1507 547 1519 581
+rect 1699 547 1711 581
+rect 1891 547 1903 581
+rect 2083 547 2095 581
+rect -2141 541 -2083 547
+rect -1949 541 -1891 547
+rect -1757 541 -1699 547
+rect -1565 541 -1507 547
+rect -1373 541 -1315 547
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect 1315 541 1373 547
+rect 1507 541 1565 547
+rect 1699 541 1757 547
+rect 1891 541 1949 547
+rect 2083 541 2141 547
+rect -2045 71 -1987 77
+rect -1853 71 -1795 77
+rect -1661 71 -1603 77
+rect -1469 71 -1411 77
+rect -1277 71 -1219 77
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect 1219 71 1277 77
+rect 1411 71 1469 77
+rect 1603 71 1661 77
+rect 1795 71 1853 77
+rect 1987 71 2045 77
+rect -2045 37 -2033 71
+rect -1853 37 -1841 71
+rect -1661 37 -1649 71
+rect -1469 37 -1457 71
+rect -1277 37 -1265 71
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect 1219 37 1231 71
+rect 1411 37 1423 71
+rect 1603 37 1615 71
+rect 1795 37 1807 71
+rect 1987 37 1999 71
+rect -2045 31 -1987 37
+rect -1853 31 -1795 37
+rect -1661 31 -1603 37
+rect -1469 31 -1411 37
+rect -1277 31 -1219 37
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect 1219 31 1277 37
+rect 1411 31 1469 37
+rect 1603 31 1661 37
+rect 1795 31 1853 37
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -1853 -37 -1795 -31
+rect -1661 -37 -1603 -31
+rect -1469 -37 -1411 -31
+rect -1277 -37 -1219 -31
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect 1219 -37 1277 -31
+rect 1411 -37 1469 -31
+rect 1603 -37 1661 -31
+rect 1795 -37 1853 -31
+rect 1987 -37 2045 -31
+rect -2045 -71 -2033 -37
+rect -1853 -71 -1841 -37
+rect -1661 -71 -1649 -37
+rect -1469 -71 -1457 -37
+rect -1277 -71 -1265 -37
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect 1219 -71 1231 -37
+rect 1411 -71 1423 -37
+rect 1603 -71 1615 -37
+rect 1795 -71 1807 -37
+rect 1987 -71 1999 -37
+rect -2045 -77 -1987 -71
+rect -1853 -77 -1795 -71
+rect -1661 -77 -1603 -71
+rect -1469 -77 -1411 -71
+rect -1277 -77 -1219 -71
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect 1219 -77 1277 -71
+rect 1411 -77 1469 -71
+rect 1603 -77 1661 -71
+rect 1795 -77 1853 -71
+rect 1987 -77 2045 -71
+rect -2141 -547 -2083 -541
+rect -1949 -547 -1891 -541
+rect -1757 -547 -1699 -541
+rect -1565 -547 -1507 -541
+rect -1373 -547 -1315 -541
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect 1315 -547 1373 -541
+rect 1507 -547 1565 -541
+rect 1699 -547 1757 -541
+rect 1891 -547 1949 -541
+rect 2083 -547 2141 -541
+rect -2141 -581 -2129 -547
+rect -1949 -581 -1937 -547
+rect -1757 -581 -1745 -547
+rect -1565 -581 -1553 -547
+rect -1373 -581 -1361 -547
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect 1315 -581 1327 -547
+rect 1507 -581 1519 -547
+rect 1699 -581 1711 -547
+rect 1891 -581 1903 -547
+rect 2083 -581 2095 -547
+rect -2141 -587 -2083 -581
+rect -1949 -587 -1891 -581
+rect -1757 -587 -1699 -581
+rect -1565 -587 -1507 -581
+rect -1373 -587 -1315 -581
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+rect 1315 -587 1373 -581
+rect 1507 -587 1565 -581
+rect 1699 -587 1757 -581
+rect 1891 -587 1949 -581
+rect 2083 -587 2141 -581
+<< pwell >>
+rect -2327 -719 2327 719
+<< nmos >>
+rect -2127 109 -2097 509
+rect -2031 109 -2001 509
+rect -1935 109 -1905 509
+rect -1839 109 -1809 509
+rect -1743 109 -1713 509
+rect -1647 109 -1617 509
+rect -1551 109 -1521 509
+rect -1455 109 -1425 509
+rect -1359 109 -1329 509
+rect -1263 109 -1233 509
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect 1233 109 1263 509
+rect 1329 109 1359 509
+rect 1425 109 1455 509
+rect 1521 109 1551 509
+rect 1617 109 1647 509
+rect 1713 109 1743 509
+rect 1809 109 1839 509
+rect 1905 109 1935 509
+rect 2001 109 2031 509
+rect 2097 109 2127 509
+rect -2127 -509 -2097 -109
+rect -2031 -509 -2001 -109
+rect -1935 -509 -1905 -109
+rect -1839 -509 -1809 -109
+rect -1743 -509 -1713 -109
+rect -1647 -509 -1617 -109
+rect -1551 -509 -1521 -109
+rect -1455 -509 -1425 -109
+rect -1359 -509 -1329 -109
+rect -1263 -509 -1233 -109
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+rect 1233 -509 1263 -109
+rect 1329 -509 1359 -109
+rect 1425 -509 1455 -109
+rect 1521 -509 1551 -109
+rect 1617 -509 1647 -109
+rect 1713 -509 1743 -109
+rect 1809 -509 1839 -109
+rect 1905 -509 1935 -109
+rect 2001 -509 2031 -109
+rect 2097 -509 2127 -109
+<< ndiff >>
+rect -2189 497 -2127 509
+rect -2189 121 -2177 497
+rect -2143 121 -2127 497
+rect -2189 109 -2127 121
+rect -2097 497 -2031 509
+rect -2097 121 -2081 497
+rect -2047 121 -2031 497
+rect -2097 109 -2031 121
+rect -2001 497 -1935 509
+rect -2001 121 -1985 497
+rect -1951 121 -1935 497
+rect -2001 109 -1935 121
+rect -1905 497 -1839 509
+rect -1905 121 -1889 497
+rect -1855 121 -1839 497
+rect -1905 109 -1839 121
+rect -1809 497 -1743 509
+rect -1809 121 -1793 497
+rect -1759 121 -1743 497
+rect -1809 109 -1743 121
+rect -1713 497 -1647 509
+rect -1713 121 -1697 497
+rect -1663 121 -1647 497
+rect -1713 109 -1647 121
+rect -1617 497 -1551 509
+rect -1617 121 -1601 497
+rect -1567 121 -1551 497
+rect -1617 109 -1551 121
+rect -1521 497 -1455 509
+rect -1521 121 -1505 497
+rect -1471 121 -1455 497
+rect -1521 109 -1455 121
+rect -1425 497 -1359 509
+rect -1425 121 -1409 497
+rect -1375 121 -1359 497
+rect -1425 109 -1359 121
+rect -1329 497 -1263 509
+rect -1329 121 -1313 497
+rect -1279 121 -1263 497
+rect -1329 109 -1263 121
+rect -1233 497 -1167 509
+rect -1233 121 -1217 497
+rect -1183 121 -1167 497
+rect -1233 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1233 509
+rect 1167 121 1183 497
+rect 1217 121 1233 497
+rect 1167 109 1233 121
+rect 1263 497 1329 509
+rect 1263 121 1279 497
+rect 1313 121 1329 497
+rect 1263 109 1329 121
+rect 1359 497 1425 509
+rect 1359 121 1375 497
+rect 1409 121 1425 497
+rect 1359 109 1425 121
+rect 1455 497 1521 509
+rect 1455 121 1471 497
+rect 1505 121 1521 497
+rect 1455 109 1521 121
+rect 1551 497 1617 509
+rect 1551 121 1567 497
+rect 1601 121 1617 497
+rect 1551 109 1617 121
+rect 1647 497 1713 509
+rect 1647 121 1663 497
+rect 1697 121 1713 497
+rect 1647 109 1713 121
+rect 1743 497 1809 509
+rect 1743 121 1759 497
+rect 1793 121 1809 497
+rect 1743 109 1809 121
+rect 1839 497 1905 509
+rect 1839 121 1855 497
+rect 1889 121 1905 497
+rect 1839 109 1905 121
+rect 1935 497 2001 509
+rect 1935 121 1951 497
+rect 1985 121 2001 497
+rect 1935 109 2001 121
+rect 2031 497 2097 509
+rect 2031 121 2047 497
+rect 2081 121 2097 497
+rect 2031 109 2097 121
+rect 2127 497 2189 509
+rect 2127 121 2143 497
+rect 2177 121 2189 497
+rect 2127 109 2189 121
+rect -2189 -121 -2127 -109
+rect -2189 -497 -2177 -121
+rect -2143 -497 -2127 -121
+rect -2189 -509 -2127 -497
+rect -2097 -121 -2031 -109
+rect -2097 -497 -2081 -121
+rect -2047 -497 -2031 -121
+rect -2097 -509 -2031 -497
+rect -2001 -121 -1935 -109
+rect -2001 -497 -1985 -121
+rect -1951 -497 -1935 -121
+rect -2001 -509 -1935 -497
+rect -1905 -121 -1839 -109
+rect -1905 -497 -1889 -121
+rect -1855 -497 -1839 -121
+rect -1905 -509 -1839 -497
+rect -1809 -121 -1743 -109
+rect -1809 -497 -1793 -121
+rect -1759 -497 -1743 -121
+rect -1809 -509 -1743 -497
+rect -1713 -121 -1647 -109
+rect -1713 -497 -1697 -121
+rect -1663 -497 -1647 -121
+rect -1713 -509 -1647 -497
+rect -1617 -121 -1551 -109
+rect -1617 -497 -1601 -121
+rect -1567 -497 -1551 -121
+rect -1617 -509 -1551 -497
+rect -1521 -121 -1455 -109
+rect -1521 -497 -1505 -121
+rect -1471 -497 -1455 -121
+rect -1521 -509 -1455 -497
+rect -1425 -121 -1359 -109
+rect -1425 -497 -1409 -121
+rect -1375 -497 -1359 -121
+rect -1425 -509 -1359 -497
+rect -1329 -121 -1263 -109
+rect -1329 -497 -1313 -121
+rect -1279 -497 -1263 -121
+rect -1329 -509 -1263 -497
+rect -1233 -121 -1167 -109
+rect -1233 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1233 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1233 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1233 -121
+rect 1167 -509 1233 -497
+rect 1263 -121 1329 -109
+rect 1263 -497 1279 -121
+rect 1313 -497 1329 -121
+rect 1263 -509 1329 -497
+rect 1359 -121 1425 -109
+rect 1359 -497 1375 -121
+rect 1409 -497 1425 -121
+rect 1359 -509 1425 -497
+rect 1455 -121 1521 -109
+rect 1455 -497 1471 -121
+rect 1505 -497 1521 -121
+rect 1455 -509 1521 -497
+rect 1551 -121 1617 -109
+rect 1551 -497 1567 -121
+rect 1601 -497 1617 -121
+rect 1551 -509 1617 -497
+rect 1647 -121 1713 -109
+rect 1647 -497 1663 -121
+rect 1697 -497 1713 -121
+rect 1647 -509 1713 -497
+rect 1743 -121 1809 -109
+rect 1743 -497 1759 -121
+rect 1793 -497 1809 -121
+rect 1743 -509 1809 -497
+rect 1839 -121 1905 -109
+rect 1839 -497 1855 -121
+rect 1889 -497 1905 -121
+rect 1839 -509 1905 -497
+rect 1935 -121 2001 -109
+rect 1935 -497 1951 -121
+rect 1985 -497 2001 -121
+rect 1935 -509 2001 -497
+rect 2031 -121 2097 -109
+rect 2031 -497 2047 -121
+rect 2081 -497 2097 -121
+rect 2031 -509 2097 -497
+rect 2127 -121 2189 -109
+rect 2127 -497 2143 -121
+rect 2177 -497 2189 -121
+rect 2127 -509 2189 -497
+<< ndiffc >>
+rect -2177 121 -2143 497
+rect -2081 121 -2047 497
+rect -1985 121 -1951 497
+rect -1889 121 -1855 497
+rect -1793 121 -1759 497
+rect -1697 121 -1663 497
+rect -1601 121 -1567 497
+rect -1505 121 -1471 497
+rect -1409 121 -1375 497
+rect -1313 121 -1279 497
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect 1279 121 1313 497
+rect 1375 121 1409 497
+rect 1471 121 1505 497
+rect 1567 121 1601 497
+rect 1663 121 1697 497
+rect 1759 121 1793 497
+rect 1855 121 1889 497
+rect 1951 121 1985 497
+rect 2047 121 2081 497
+rect 2143 121 2177 497
+rect -2177 -497 -2143 -121
+rect -2081 -497 -2047 -121
+rect -1985 -497 -1951 -121
+rect -1889 -497 -1855 -121
+rect -1793 -497 -1759 -121
+rect -1697 -497 -1663 -121
+rect -1601 -497 -1567 -121
+rect -1505 -497 -1471 -121
+rect -1409 -497 -1375 -121
+rect -1313 -497 -1279 -121
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect 1279 -497 1313 -121
+rect 1375 -497 1409 -121
+rect 1471 -497 1505 -121
+rect 1567 -497 1601 -121
+rect 1663 -497 1697 -121
+rect 1759 -497 1793 -121
+rect 1855 -497 1889 -121
+rect 1951 -497 1985 -121
+rect 2047 -497 2081 -121
+rect 2143 -497 2177 -121
+<< psubdiff >>
+rect -2291 649 -2195 683
+rect 2195 649 2291 683
+rect -2291 587 -2257 649
+rect 2257 587 2291 649
+rect -2291 -649 -2257 -587
+rect 2257 -649 2291 -587
+rect -2291 -683 -2195 -649
+rect 2195 -683 2291 -649
+<< psubdiffcont >>
+rect -2195 649 2195 683
+rect -2291 -587 -2257 587
+rect 2257 -587 2291 587
+rect -2195 -683 2195 -649
+<< poly >>
+rect -2145 581 -2079 597
+rect -2145 547 -2129 581
+rect -2095 547 -2079 581
+rect -2145 531 -2079 547
+rect -1953 581 -1887 597
+rect -1953 547 -1937 581
+rect -1903 547 -1887 581
+rect -2127 509 -2097 531
+rect -2031 509 -2001 535
+rect -1953 531 -1887 547
+rect -1761 581 -1695 597
+rect -1761 547 -1745 581
+rect -1711 547 -1695 581
+rect -1935 509 -1905 531
+rect -1839 509 -1809 535
+rect -1761 531 -1695 547
+rect -1569 581 -1503 597
+rect -1569 547 -1553 581
+rect -1519 547 -1503 581
+rect -1743 509 -1713 531
+rect -1647 509 -1617 535
+rect -1569 531 -1503 547
+rect -1377 581 -1311 597
+rect -1377 547 -1361 581
+rect -1327 547 -1311 581
+rect -1551 509 -1521 531
+rect -1455 509 -1425 535
+rect -1377 531 -1311 547
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1359 509 -1329 531
+rect -1263 509 -1233 535
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1311 581 1377 597
+rect 1311 547 1327 581
+rect 1361 547 1377 581
+rect 1137 509 1167 531
+rect 1233 509 1263 535
+rect 1311 531 1377 547
+rect 1503 581 1569 597
+rect 1503 547 1519 581
+rect 1553 547 1569 581
+rect 1329 509 1359 531
+rect 1425 509 1455 535
+rect 1503 531 1569 547
+rect 1695 581 1761 597
+rect 1695 547 1711 581
+rect 1745 547 1761 581
+rect 1521 509 1551 531
+rect 1617 509 1647 535
+rect 1695 531 1761 547
+rect 1887 581 1953 597
+rect 1887 547 1903 581
+rect 1937 547 1953 581
+rect 1713 509 1743 531
+rect 1809 509 1839 535
+rect 1887 531 1953 547
+rect 2079 581 2145 597
+rect 2079 547 2095 581
+rect 2129 547 2145 581
+rect 1905 509 1935 531
+rect 2001 509 2031 535
+rect 2079 531 2145 547
+rect 2097 509 2127 531
+rect -2127 83 -2097 109
+rect -2031 87 -2001 109
+rect -2049 71 -1983 87
+rect -1935 83 -1905 109
+rect -1839 87 -1809 109
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -2049 21 -1983 37
+rect -1857 71 -1791 87
+rect -1743 83 -1713 109
+rect -1647 87 -1617 109
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1857 21 -1791 37
+rect -1665 71 -1599 87
+rect -1551 83 -1521 109
+rect -1455 87 -1425 109
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1665 21 -1599 37
+rect -1473 71 -1407 87
+rect -1359 83 -1329 109
+rect -1263 87 -1233 109
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1473 21 -1407 37
+rect -1281 71 -1215 87
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1281 21 -1215 37
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1233 87 1263 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect 1215 71 1281 87
+rect 1329 83 1359 109
+rect 1425 87 1455 109
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1215 21 1281 37
+rect 1407 71 1473 87
+rect 1521 83 1551 109
+rect 1617 87 1647 109
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1407 21 1473 37
+rect 1599 71 1665 87
+rect 1713 83 1743 109
+rect 1809 87 1839 109
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1599 21 1665 37
+rect 1791 71 1857 87
+rect 1905 83 1935 109
+rect 2001 87 2031 109
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1791 21 1857 37
+rect 1983 71 2049 87
+rect 2097 83 2127 109
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect 1983 21 2049 37
+rect -2049 -37 -1983 -21
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -2127 -109 -2097 -83
+rect -2049 -87 -1983 -71
+rect -1857 -37 -1791 -21
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -2031 -109 -2001 -87
+rect -1935 -109 -1905 -83
+rect -1857 -87 -1791 -71
+rect -1665 -37 -1599 -21
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1839 -109 -1809 -87
+rect -1743 -109 -1713 -83
+rect -1665 -87 -1599 -71
+rect -1473 -37 -1407 -21
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1647 -109 -1617 -87
+rect -1551 -109 -1521 -83
+rect -1473 -87 -1407 -71
+rect -1281 -37 -1215 -21
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1455 -109 -1425 -87
+rect -1359 -109 -1329 -83
+rect -1281 -87 -1215 -71
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1263 -109 -1233 -87
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1215 -37 1281 -21
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect 1215 -87 1281 -71
+rect 1407 -37 1473 -21
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1233 -109 1263 -87
+rect 1329 -109 1359 -83
+rect 1407 -87 1473 -71
+rect 1599 -37 1665 -21
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1425 -109 1455 -87
+rect 1521 -109 1551 -83
+rect 1599 -87 1665 -71
+rect 1791 -37 1857 -21
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1617 -109 1647 -87
+rect 1713 -109 1743 -83
+rect 1791 -87 1857 -71
+rect 1983 -37 2049 -21
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect 1809 -109 1839 -87
+rect 1905 -109 1935 -83
+rect 1983 -87 2049 -71
+rect 2001 -109 2031 -87
+rect 2097 -109 2127 -83
+rect -2127 -531 -2097 -509
+rect -2145 -547 -2079 -531
+rect -2031 -535 -2001 -509
+rect -1935 -531 -1905 -509
+rect -2145 -581 -2129 -547
+rect -2095 -581 -2079 -547
+rect -2145 -597 -2079 -581
+rect -1953 -547 -1887 -531
+rect -1839 -535 -1809 -509
+rect -1743 -531 -1713 -509
+rect -1953 -581 -1937 -547
+rect -1903 -581 -1887 -547
+rect -1953 -597 -1887 -581
+rect -1761 -547 -1695 -531
+rect -1647 -535 -1617 -509
+rect -1551 -531 -1521 -509
+rect -1761 -581 -1745 -547
+rect -1711 -581 -1695 -547
+rect -1761 -597 -1695 -581
+rect -1569 -547 -1503 -531
+rect -1455 -535 -1425 -509
+rect -1359 -531 -1329 -509
+rect -1569 -581 -1553 -547
+rect -1519 -581 -1503 -547
+rect -1569 -597 -1503 -581
+rect -1377 -547 -1311 -531
+rect -1263 -535 -1233 -509
+rect -1167 -531 -1137 -509
+rect -1377 -581 -1361 -547
+rect -1327 -581 -1311 -547
+rect -1377 -597 -1311 -581
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1233 -535 1263 -509
+rect 1329 -531 1359 -509
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+rect 1311 -547 1377 -531
+rect 1425 -535 1455 -509
+rect 1521 -531 1551 -509
+rect 1311 -581 1327 -547
+rect 1361 -581 1377 -547
+rect 1311 -597 1377 -581
+rect 1503 -547 1569 -531
+rect 1617 -535 1647 -509
+rect 1713 -531 1743 -509
+rect 1503 -581 1519 -547
+rect 1553 -581 1569 -547
+rect 1503 -597 1569 -581
+rect 1695 -547 1761 -531
+rect 1809 -535 1839 -509
+rect 1905 -531 1935 -509
+rect 1695 -581 1711 -547
+rect 1745 -581 1761 -547
+rect 1695 -597 1761 -581
+rect 1887 -547 1953 -531
+rect 2001 -535 2031 -509
+rect 2097 -531 2127 -509
+rect 1887 -581 1903 -547
+rect 1937 -581 1953 -547
+rect 1887 -597 1953 -581
+rect 2079 -547 2145 -531
+rect 2079 -581 2095 -547
+rect 2129 -581 2145 -547
+rect 2079 -597 2145 -581
+<< polycont >>
+rect -2129 547 -2095 581
+rect -1937 547 -1903 581
+rect -1745 547 -1711 581
+rect -1553 547 -1519 581
+rect -1361 547 -1327 581
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect 1327 547 1361 581
+rect 1519 547 1553 581
+rect 1711 547 1745 581
+rect 1903 547 1937 581
+rect 2095 547 2129 581
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2129 -581 -2095 -547
+rect -1937 -581 -1903 -547
+rect -1745 -581 -1711 -547
+rect -1553 -581 -1519 -547
+rect -1361 -581 -1327 -547
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+rect 1327 -581 1361 -547
+rect 1519 -581 1553 -547
+rect 1711 -581 1745 -547
+rect 1903 -581 1937 -547
+rect 2095 -581 2129 -547
+<< locali >>
+rect -2291 649 -2195 683
+rect 2195 649 2291 683
+rect -2291 587 -2257 649
+rect 2257 587 2291 649
+rect -2145 547 -2129 581
+rect -2095 547 -2079 581
+rect -1953 547 -1937 581
+rect -1903 547 -1887 581
+rect -1761 547 -1745 581
+rect -1711 547 -1695 581
+rect -1569 547 -1553 581
+rect -1519 547 -1503 581
+rect -1377 547 -1361 581
+rect -1327 547 -1311 581
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 1311 547 1327 581
+rect 1361 547 1377 581
+rect 1503 547 1519 581
+rect 1553 547 1569 581
+rect 1695 547 1711 581
+rect 1745 547 1761 581
+rect 1887 547 1903 581
+rect 1937 547 1953 581
+rect 2079 547 2095 581
+rect 2129 547 2145 581
+rect -2177 497 -2143 513
+rect -2177 105 -2143 121
+rect -2081 497 -2047 513
+rect -2081 105 -2047 121
+rect -1985 497 -1951 513
+rect -1985 105 -1951 121
+rect -1889 497 -1855 513
+rect -1889 105 -1855 121
+rect -1793 497 -1759 513
+rect -1793 105 -1759 121
+rect -1697 497 -1663 513
+rect -1697 105 -1663 121
+rect -1601 497 -1567 513
+rect -1601 105 -1567 121
+rect -1505 497 -1471 513
+rect -1505 105 -1471 121
+rect -1409 497 -1375 513
+rect -1409 105 -1375 121
+rect -1313 497 -1279 513
+rect -1313 105 -1279 121
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect 1279 497 1313 513
+rect 1279 105 1313 121
+rect 1375 497 1409 513
+rect 1375 105 1409 121
+rect 1471 497 1505 513
+rect 1471 105 1505 121
+rect 1567 497 1601 513
+rect 1567 105 1601 121
+rect 1663 497 1697 513
+rect 1663 105 1697 121
+rect 1759 497 1793 513
+rect 1759 105 1793 121
+rect 1855 497 1889 513
+rect 1855 105 1889 121
+rect 1951 497 1985 513
+rect 1951 105 1985 121
+rect 2047 497 2081 513
+rect 2047 105 2081 121
+rect 2143 497 2177 513
+rect 2143 105 2177 121
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect -2177 -121 -2143 -105
+rect -2177 -513 -2143 -497
+rect -2081 -121 -2047 -105
+rect -2081 -513 -2047 -497
+rect -1985 -121 -1951 -105
+rect -1985 -513 -1951 -497
+rect -1889 -121 -1855 -105
+rect -1889 -513 -1855 -497
+rect -1793 -121 -1759 -105
+rect -1793 -513 -1759 -497
+rect -1697 -121 -1663 -105
+rect -1697 -513 -1663 -497
+rect -1601 -121 -1567 -105
+rect -1601 -513 -1567 -497
+rect -1505 -121 -1471 -105
+rect -1505 -513 -1471 -497
+rect -1409 -121 -1375 -105
+rect -1409 -513 -1375 -497
+rect -1313 -121 -1279 -105
+rect -1313 -513 -1279 -497
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect 1279 -121 1313 -105
+rect 1279 -513 1313 -497
+rect 1375 -121 1409 -105
+rect 1375 -513 1409 -497
+rect 1471 -121 1505 -105
+rect 1471 -513 1505 -497
+rect 1567 -121 1601 -105
+rect 1567 -513 1601 -497
+rect 1663 -121 1697 -105
+rect 1663 -513 1697 -497
+rect 1759 -121 1793 -105
+rect 1759 -513 1793 -497
+rect 1855 -121 1889 -105
+rect 1855 -513 1889 -497
+rect 1951 -121 1985 -105
+rect 1951 -513 1985 -497
+rect 2047 -121 2081 -105
+rect 2047 -513 2081 -497
+rect 2143 -121 2177 -105
+rect 2143 -513 2177 -497
+rect -2145 -581 -2129 -547
+rect -2095 -581 -2079 -547
+rect -1953 -581 -1937 -547
+rect -1903 -581 -1887 -547
+rect -1761 -581 -1745 -547
+rect -1711 -581 -1695 -547
+rect -1569 -581 -1553 -547
+rect -1519 -581 -1503 -547
+rect -1377 -581 -1361 -547
+rect -1327 -581 -1311 -547
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1311 -581 1327 -547
+rect 1361 -581 1377 -547
+rect 1503 -581 1519 -547
+rect 1553 -581 1569 -547
+rect 1695 -581 1711 -547
+rect 1745 -581 1761 -547
+rect 1887 -581 1903 -547
+rect 1937 -581 1953 -547
+rect 2079 -581 2095 -547
+rect 2129 -581 2145 -547
+rect -2291 -649 -2257 -587
+rect 2257 -649 2291 -587
+rect -2291 -683 -2195 -649
+rect 2195 -683 2291 -649
+<< viali >>
+rect -2129 547 -2095 581
+rect -1937 547 -1903 581
+rect -1745 547 -1711 581
+rect -1553 547 -1519 581
+rect -1361 547 -1327 581
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect 1327 547 1361 581
+rect 1519 547 1553 581
+rect 1711 547 1745 581
+rect 1903 547 1937 581
+rect 2095 547 2129 581
+rect -2177 121 -2143 497
+rect -2081 121 -2047 497
+rect -1985 121 -1951 497
+rect -1889 121 -1855 497
+rect -1793 121 -1759 497
+rect -1697 121 -1663 497
+rect -1601 121 -1567 497
+rect -1505 121 -1471 497
+rect -1409 121 -1375 497
+rect -1313 121 -1279 497
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect 1279 121 1313 497
+rect 1375 121 1409 497
+rect 1471 121 1505 497
+rect 1567 121 1601 497
+rect 1663 121 1697 497
+rect 1759 121 1793 497
+rect 1855 121 1889 497
+rect 1951 121 1985 497
+rect 2047 121 2081 497
+rect 2143 121 2177 497
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2177 -497 -2143 -121
+rect -2081 -497 -2047 -121
+rect -1985 -497 -1951 -121
+rect -1889 -497 -1855 -121
+rect -1793 -497 -1759 -121
+rect -1697 -497 -1663 -121
+rect -1601 -497 -1567 -121
+rect -1505 -497 -1471 -121
+rect -1409 -497 -1375 -121
+rect -1313 -497 -1279 -121
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect 1279 -497 1313 -121
+rect 1375 -497 1409 -121
+rect 1471 -497 1505 -121
+rect 1567 -497 1601 -121
+rect 1663 -497 1697 -121
+rect 1759 -497 1793 -121
+rect 1855 -497 1889 -121
+rect 1951 -497 1985 -121
+rect 2047 -497 2081 -121
+rect 2143 -497 2177 -121
+rect -2129 -581 -2095 -547
+rect -1937 -581 -1903 -547
+rect -1745 -581 -1711 -547
+rect -1553 -581 -1519 -547
+rect -1361 -581 -1327 -547
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+rect 1327 -581 1361 -547
+rect 1519 -581 1553 -547
+rect 1711 -581 1745 -547
+rect 1903 -581 1937 -547
+rect 2095 -581 2129 -547
+<< metal1 >>
+rect -2141 581 -2083 587
+rect -2141 547 -2129 581
+rect -2095 547 -2083 581
+rect -2141 541 -2083 547
+rect -1949 581 -1891 587
+rect -1949 547 -1937 581
+rect -1903 547 -1891 581
+rect -1949 541 -1891 547
+rect -1757 581 -1699 587
+rect -1757 547 -1745 581
+rect -1711 547 -1699 581
+rect -1757 541 -1699 547
+rect -1565 581 -1507 587
+rect -1565 547 -1553 581
+rect -1519 547 -1507 581
+rect -1565 541 -1507 547
+rect -1373 581 -1315 587
+rect -1373 547 -1361 581
+rect -1327 547 -1315 581
+rect -1373 541 -1315 547
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect 1315 581 1373 587
+rect 1315 547 1327 581
+rect 1361 547 1373 581
+rect 1315 541 1373 547
+rect 1507 581 1565 587
+rect 1507 547 1519 581
+rect 1553 547 1565 581
+rect 1507 541 1565 547
+rect 1699 581 1757 587
+rect 1699 547 1711 581
+rect 1745 547 1757 581
+rect 1699 541 1757 547
+rect 1891 581 1949 587
+rect 1891 547 1903 581
+rect 1937 547 1949 581
+rect 1891 541 1949 547
+rect 2083 581 2141 587
+rect 2083 547 2095 581
+rect 2129 547 2141 581
+rect 2083 541 2141 547
+rect -2183 497 -2137 509
+rect -2183 121 -2177 497
+rect -2143 121 -2137 497
+rect -2183 109 -2137 121
+rect -2087 497 -2041 509
+rect -2087 121 -2081 497
+rect -2047 121 -2041 497
+rect -2087 109 -2041 121
+rect -1991 497 -1945 509
+rect -1991 121 -1985 497
+rect -1951 121 -1945 497
+rect -1991 109 -1945 121
+rect -1895 497 -1849 509
+rect -1895 121 -1889 497
+rect -1855 121 -1849 497
+rect -1895 109 -1849 121
+rect -1799 497 -1753 509
+rect -1799 121 -1793 497
+rect -1759 121 -1753 497
+rect -1799 109 -1753 121
+rect -1703 497 -1657 509
+rect -1703 121 -1697 497
+rect -1663 121 -1657 497
+rect -1703 109 -1657 121
+rect -1607 497 -1561 509
+rect -1607 121 -1601 497
+rect -1567 121 -1561 497
+rect -1607 109 -1561 121
+rect -1511 497 -1465 509
+rect -1511 121 -1505 497
+rect -1471 121 -1465 497
+rect -1511 109 -1465 121
+rect -1415 497 -1369 509
+rect -1415 121 -1409 497
+rect -1375 121 -1369 497
+rect -1415 109 -1369 121
+rect -1319 497 -1273 509
+rect -1319 121 -1313 497
+rect -1279 121 -1273 497
+rect -1319 109 -1273 121
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect 1273 497 1319 509
+rect 1273 121 1279 497
+rect 1313 121 1319 497
+rect 1273 109 1319 121
+rect 1369 497 1415 509
+rect 1369 121 1375 497
+rect 1409 121 1415 497
+rect 1369 109 1415 121
+rect 1465 497 1511 509
+rect 1465 121 1471 497
+rect 1505 121 1511 497
+rect 1465 109 1511 121
+rect 1561 497 1607 509
+rect 1561 121 1567 497
+rect 1601 121 1607 497
+rect 1561 109 1607 121
+rect 1657 497 1703 509
+rect 1657 121 1663 497
+rect 1697 121 1703 497
+rect 1657 109 1703 121
+rect 1753 497 1799 509
+rect 1753 121 1759 497
+rect 1793 121 1799 497
+rect 1753 109 1799 121
+rect 1849 497 1895 509
+rect 1849 121 1855 497
+rect 1889 121 1895 497
+rect 1849 109 1895 121
+rect 1945 497 1991 509
+rect 1945 121 1951 497
+rect 1985 121 1991 497
+rect 1945 109 1991 121
+rect 2041 497 2087 509
+rect 2041 121 2047 497
+rect 2081 121 2087 497
+rect 2041 109 2087 121
+rect 2137 497 2183 509
+rect 2137 121 2143 497
+rect 2177 121 2183 497
+rect 2137 109 2183 121
+rect -2045 71 -1987 77
+rect -2045 37 -2033 71
+rect -1999 37 -1987 71
+rect -2045 31 -1987 37
+rect -1853 71 -1795 77
+rect -1853 37 -1841 71
+rect -1807 37 -1795 71
+rect -1853 31 -1795 37
+rect -1661 71 -1603 77
+rect -1661 37 -1649 71
+rect -1615 37 -1603 71
+rect -1661 31 -1603 37
+rect -1469 71 -1411 77
+rect -1469 37 -1457 71
+rect -1423 37 -1411 71
+rect -1469 31 -1411 37
+rect -1277 71 -1219 77
+rect -1277 37 -1265 71
+rect -1231 37 -1219 71
+rect -1277 31 -1219 37
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect 1219 71 1277 77
+rect 1219 37 1231 71
+rect 1265 37 1277 71
+rect 1219 31 1277 37
+rect 1411 71 1469 77
+rect 1411 37 1423 71
+rect 1457 37 1469 71
+rect 1411 31 1469 37
+rect 1603 71 1661 77
+rect 1603 37 1615 71
+rect 1649 37 1661 71
+rect 1603 31 1661 37
+rect 1795 71 1853 77
+rect 1795 37 1807 71
+rect 1841 37 1853 71
+rect 1795 31 1853 37
+rect 1987 71 2045 77
+rect 1987 37 1999 71
+rect 2033 37 2045 71
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -2045 -71 -2033 -37
+rect -1999 -71 -1987 -37
+rect -2045 -77 -1987 -71
+rect -1853 -37 -1795 -31
+rect -1853 -71 -1841 -37
+rect -1807 -71 -1795 -37
+rect -1853 -77 -1795 -71
+rect -1661 -37 -1603 -31
+rect -1661 -71 -1649 -37
+rect -1615 -71 -1603 -37
+rect -1661 -77 -1603 -71
+rect -1469 -37 -1411 -31
+rect -1469 -71 -1457 -37
+rect -1423 -71 -1411 -37
+rect -1469 -77 -1411 -71
+rect -1277 -37 -1219 -31
+rect -1277 -71 -1265 -37
+rect -1231 -71 -1219 -37
+rect -1277 -77 -1219 -71
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect 1219 -37 1277 -31
+rect 1219 -71 1231 -37
+rect 1265 -71 1277 -37
+rect 1219 -77 1277 -71
+rect 1411 -37 1469 -31
+rect 1411 -71 1423 -37
+rect 1457 -71 1469 -37
+rect 1411 -77 1469 -71
+rect 1603 -37 1661 -31
+rect 1603 -71 1615 -37
+rect 1649 -71 1661 -37
+rect 1603 -77 1661 -71
+rect 1795 -37 1853 -31
+rect 1795 -71 1807 -37
+rect 1841 -71 1853 -37
+rect 1795 -77 1853 -71
+rect 1987 -37 2045 -31
+rect 1987 -71 1999 -37
+rect 2033 -71 2045 -37
+rect 1987 -77 2045 -71
+rect -2183 -121 -2137 -109
+rect -2183 -497 -2177 -121
+rect -2143 -497 -2137 -121
+rect -2183 -509 -2137 -497
+rect -2087 -121 -2041 -109
+rect -2087 -497 -2081 -121
+rect -2047 -497 -2041 -121
+rect -2087 -509 -2041 -497
+rect -1991 -121 -1945 -109
+rect -1991 -497 -1985 -121
+rect -1951 -497 -1945 -121
+rect -1991 -509 -1945 -497
+rect -1895 -121 -1849 -109
+rect -1895 -497 -1889 -121
+rect -1855 -497 -1849 -121
+rect -1895 -509 -1849 -497
+rect -1799 -121 -1753 -109
+rect -1799 -497 -1793 -121
+rect -1759 -497 -1753 -121
+rect -1799 -509 -1753 -497
+rect -1703 -121 -1657 -109
+rect -1703 -497 -1697 -121
+rect -1663 -497 -1657 -121
+rect -1703 -509 -1657 -497
+rect -1607 -121 -1561 -109
+rect -1607 -497 -1601 -121
+rect -1567 -497 -1561 -121
+rect -1607 -509 -1561 -497
+rect -1511 -121 -1465 -109
+rect -1511 -497 -1505 -121
+rect -1471 -497 -1465 -121
+rect -1511 -509 -1465 -497
+rect -1415 -121 -1369 -109
+rect -1415 -497 -1409 -121
+rect -1375 -497 -1369 -121
+rect -1415 -509 -1369 -497
+rect -1319 -121 -1273 -109
+rect -1319 -497 -1313 -121
+rect -1279 -497 -1273 -121
+rect -1319 -509 -1273 -497
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect 1273 -121 1319 -109
+rect 1273 -497 1279 -121
+rect 1313 -497 1319 -121
+rect 1273 -509 1319 -497
+rect 1369 -121 1415 -109
+rect 1369 -497 1375 -121
+rect 1409 -497 1415 -121
+rect 1369 -509 1415 -497
+rect 1465 -121 1511 -109
+rect 1465 -497 1471 -121
+rect 1505 -497 1511 -121
+rect 1465 -509 1511 -497
+rect 1561 -121 1607 -109
+rect 1561 -497 1567 -121
+rect 1601 -497 1607 -121
+rect 1561 -509 1607 -497
+rect 1657 -121 1703 -109
+rect 1657 -497 1663 -121
+rect 1697 -497 1703 -121
+rect 1657 -509 1703 -497
+rect 1753 -121 1799 -109
+rect 1753 -497 1759 -121
+rect 1793 -497 1799 -121
+rect 1753 -509 1799 -497
+rect 1849 -121 1895 -109
+rect 1849 -497 1855 -121
+rect 1889 -497 1895 -121
+rect 1849 -509 1895 -497
+rect 1945 -121 1991 -109
+rect 1945 -497 1951 -121
+rect 1985 -497 1991 -121
+rect 1945 -509 1991 -497
+rect 2041 -121 2087 -109
+rect 2041 -497 2047 -121
+rect 2081 -497 2087 -121
+rect 2041 -509 2087 -497
+rect 2137 -121 2183 -109
+rect 2137 -497 2143 -121
+rect 2177 -497 2183 -121
+rect 2137 -509 2183 -497
+rect -2141 -547 -2083 -541
+rect -2141 -581 -2129 -547
+rect -2095 -581 -2083 -547
+rect -2141 -587 -2083 -581
+rect -1949 -547 -1891 -541
+rect -1949 -581 -1937 -547
+rect -1903 -581 -1891 -547
+rect -1949 -587 -1891 -581
+rect -1757 -547 -1699 -541
+rect -1757 -581 -1745 -547
+rect -1711 -581 -1699 -547
+rect -1757 -587 -1699 -581
+rect -1565 -547 -1507 -541
+rect -1565 -581 -1553 -547
+rect -1519 -581 -1507 -547
+rect -1565 -587 -1507 -581
+rect -1373 -547 -1315 -541
+rect -1373 -581 -1361 -547
+rect -1327 -581 -1315 -547
+rect -1373 -587 -1315 -581
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+rect 1315 -547 1373 -541
+rect 1315 -581 1327 -547
+rect 1361 -581 1373 -547
+rect 1315 -587 1373 -581
+rect 1507 -547 1565 -541
+rect 1507 -581 1519 -547
+rect 1553 -581 1565 -547
+rect 1507 -587 1565 -581
+rect 1699 -547 1757 -541
+rect 1699 -581 1711 -547
+rect 1745 -581 1757 -547
+rect 1699 -587 1757 -581
+rect 1891 -547 1949 -541
+rect 1891 -581 1903 -547
+rect 1937 -581 1949 -547
+rect 1891 -587 1949 -581
+rect 2083 -547 2141 -541
+rect 2083 -581 2095 -547
+rect 2129 -581 2141 -547
+rect 2083 -587 2141 -581
+<< properties >>
+string FIXED_BBOX -2274 -666 2274 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 45 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.ext b/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.ext
new file mode 100644
index 0000000..5634602
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.ext
@@ -0,0 +1,879 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1235_n2363#" 982 155.666 1235 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_n2363#" 982 12.936 1077 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_n2363#" 982 12.936 919 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_n2363#" 982 12.936 761 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_n2363#" 982 12.936 603 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_n2363#" 982 12.936 445 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n2363#" 982 12.936 287 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n2363#" 982 12.936 129 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n2363#" 982 12.936 -29 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n2363#" 982 12.936 -187 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n2363#" 982 12.936 -345 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_n2363#" 982 12.936 -503 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_n2363#" 982 12.936 -661 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_n2363#" 982 12.936 -819 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_n2363#" 982 12.936 -977 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_n2363#" 982 12.936 -1135 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_n2363#" 982 155.666 -1293 -2363 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_n2451#" 387 243.352 1135 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_n2451#" 387 181.964 977 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_n2451#" 387 181.964 819 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_n2451#" 387 181.964 661 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_n2451#" 387 181.964 503 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_n2451#" 387 181.964 345 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_n2451#" 387 181.964 187 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n2451#" 387 181.964 29 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n2451#" 387 181.964 -129 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n2451#" 387 181.964 -287 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_n2451#" 387 181.964 -445 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_n2451#" 387 181.964 -603 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_n2451#" 387 181.964 -761 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_n2451#" 387 181.964 -919 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_n2451#" 387 181.964 -1077 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_n2451#" 387 243.864 -1235 -2451 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_n1745#" 982 147.373 1235 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_n1745#" 982 4.64293 1077 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_n1745#" 982 4.64293 919 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_n1745#" 982 4.64293 761 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_n1745#" 982 4.64293 603 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_n1745#" 982 4.64293 445 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n1745#" 982 4.64293 287 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n1745#" 982 4.64293 129 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n1745#" 982 4.64293 -29 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n1745#" 982 4.64293 -187 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n1745#" 982 4.64293 -345 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_n1745#" 982 4.64293 -503 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_n1745#" 982 4.64293 -661 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_n1745#" 982 4.64293 -819 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_n1745#" 982 4.64293 -977 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_n1745#" 982 4.64293 -1135 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_n1745#" 982 147.373 -1293 -1745 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_n1833#" 387 173.594 1135 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_n1833#" 387 112.205 977 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_n1833#" 387 112.205 819 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_n1833#" 387 112.205 661 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_n1833#" 387 112.205 503 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_n1833#" 387 112.205 345 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_n1833#" 387 112.205 187 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n1833#" 387 112.205 29 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n1833#" 387 112.205 -129 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n1833#" 387 112.205 -287 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_n1833#" 387 112.205 -445 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_n1833#" 387 112.205 -603 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_n1833#" 387 112.205 -761 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_n1833#" 387 112.205 -919 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_n1833#" 387 112.205 -1077 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_n1833#" 387 174.105 -1235 -1833 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_n1127#" 982 147.373 1235 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_n1127#" 982 4.64293 1077 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_n1127#" 982 4.64293 919 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_n1127#" 982 4.64293 761 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_n1127#" 982 4.64293 603 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_n1127#" 982 4.64293 445 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n1127#" 982 4.64293 287 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n1127#" 982 4.64293 129 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n1127#" 982 4.64293 -29 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n1127#" 982 4.64293 -187 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n1127#" 982 4.64293 -345 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_n1127#" 982 4.64293 -503 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_n1127#" 982 4.64293 -661 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_n1127#" 982 4.64293 -819 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_n1127#" 982 4.64293 -977 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_n1127#" 982 4.64293 -1135 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_n1127#" 982 147.373 -1293 -1127 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_n1215#" 387 173.594 1135 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_n1215#" 387 112.205 977 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_n1215#" 387 112.205 819 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_n1215#" 387 112.205 661 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_n1215#" 387 112.205 503 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_n1215#" 387 112.205 345 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_n1215#" 387 112.205 187 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n1215#" 387 112.205 29 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n1215#" 387 112.205 -129 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n1215#" 387 112.205 -287 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_n1215#" 387 112.205 -445 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_n1215#" 387 112.205 -603 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_n1215#" 387 112.205 -761 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_n1215#" 387 112.205 -919 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_n1215#" 387 112.205 -1077 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_n1215#" 387 174.105 -1235 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_n509#" 982 147.373 1235 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_n509#" 982 4.64293 1077 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_n509#" 982 4.64293 919 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_n509#" 982 4.64293 761 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_n509#" 982 4.64293 603 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_n509#" 982 4.64293 445 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n509#" 982 4.64293 287 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n509#" 982 4.64293 129 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n509#" 982 4.64293 -29 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n509#" 982 4.64293 -187 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n509#" 982 4.64293 -345 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_n509#" 982 4.64293 -503 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_n509#" 982 4.64293 -661 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_n509#" 982 4.64293 -819 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_n509#" 982 4.64293 -977 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_n509#" 982 4.64293 -1135 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_n509#" 982 147.373 -1293 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_n597#" 387 173.594 1135 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_n597#" 387 112.205 977 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_n597#" 387 112.205 819 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_n597#" 387 112.205 661 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_n597#" 387 112.205 503 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_n597#" 387 112.205 345 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_n597#" 387 112.205 187 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n597#" 387 112.205 29 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n597#" 387 112.205 -129 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n597#" 387 112.205 -287 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_n597#" 387 112.205 -445 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_n597#" 387 112.205 -603 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_n597#" 387 112.205 -761 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_n597#" 387 112.205 -919 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_n597#" 387 112.205 -1077 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_n597#" 387 174.105 -1235 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_109#" 982 147.373 1235 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_109#" 982 4.64293 1077 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_109#" 982 4.64293 919 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_109#" 982 4.64293 761 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_109#" 982 4.64293 603 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_109#" 982 4.64293 445 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_109#" 982 4.64293 287 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_109#" 982 4.64293 129 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_109#" 982 4.64293 -29 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_109#" 982 4.64293 -187 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_109#" 982 4.64293 -345 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_109#" 982 4.64293 -503 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_109#" 982 4.64293 -661 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_109#" 982 4.64293 -819 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_109#" 982 4.64293 -977 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_109#" 982 4.64293 -1135 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_109#" 982 147.373 -1293 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_21#" 387 173.594 1135 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_21#" 387 112.205 977 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_21#" 387 112.205 819 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_21#" 387 112.205 661 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_21#" 387 112.205 503 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_21#" 387 112.205 345 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_21#" 387 112.205 187 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_21#" 387 112.205 29 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_21#" 387 112.205 -129 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_21#" 387 112.205 -287 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_21#" 387 112.205 -445 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_21#" 387 112.205 -603 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_21#" 387 112.205 -761 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_21#" 387 112.205 -919 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_21#" 387 112.205 -1077 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_21#" 387 174.105 -1235 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_727#" 982 147.373 1235 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_727#" 982 4.64293 1077 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_727#" 982 4.64293 919 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_727#" 982 4.64293 761 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_727#" 982 4.64293 603 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_727#" 982 4.64293 445 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_727#" 982 4.64293 287 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_727#" 982 4.64293 129 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_727#" 982 4.64293 -29 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_727#" 982 4.64293 -187 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_727#" 982 4.64293 -345 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_727#" 982 4.64293 -503 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_727#" 982 4.64293 -661 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_727#" 982 4.64293 -819 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_727#" 982 4.64293 -977 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_727#" 982 4.64293 -1135 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_727#" 982 147.373 -1293 727 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_639#" 387 173.594 1135 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_639#" 387 112.205 977 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_639#" 387 112.205 819 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_639#" 387 112.205 661 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_639#" 387 112.205 503 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_639#" 387 112.205 345 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_639#" 387 112.205 187 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_639#" 387 112.205 29 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_639#" 387 112.205 -129 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_639#" 387 112.205 -287 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_639#" 387 112.205 -445 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_639#" 387 112.205 -603 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_639#" 387 112.205 -761 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_639#" 387 112.205 -919 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_639#" 387 112.205 -1077 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_639#" 387 174.105 -1235 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_1345#" 982 147.373 1235 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_1345#" 982 4.64293 1077 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_1345#" 982 4.64293 919 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_1345#" 982 4.64293 761 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_1345#" 982 4.64293 603 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_1345#" 982 4.64293 445 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_1345#" 982 4.64293 287 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_1345#" 982 4.64293 129 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_1345#" 982 4.64293 -29 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_1345#" 982 4.64293 -187 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_1345#" 982 4.64293 -345 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_1345#" 982 4.64293 -503 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_1345#" 982 4.64293 -661 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_1345#" 982 4.64293 -819 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_1345#" 982 4.64293 -977 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_1345#" 982 4.64293 -1135 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_1345#" 982 147.373 -1293 1345 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_1257#" 387 173.594 1135 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_1257#" 387 112.205 977 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_1257#" 387 112.205 819 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_1257#" 387 112.205 661 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_1257#" 387 112.205 503 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_1257#" 387 112.205 345 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_1257#" 387 112.205 187 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_1257#" 387 112.205 29 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_1257#" 387 112.205 -129 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_1257#" 387 112.205 -287 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_1257#" 387 112.205 -445 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_1257#" 387 112.205 -603 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_1257#" 387 112.205 -761 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_1257#" 387 112.205 -919 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_1257#" 387 112.205 -1077 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_1257#" 387 174.105 -1235 1257 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_1235_1963#" 982 155.795 1235 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1077_1963#" 982 13.0647 1077 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_919_1963#" 982 13.0647 919 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_761_1963#" 982 13.0647 761 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_1963#" 982 13.0647 603 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_1963#" 982 13.0647 445 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_1963#" 982 13.0647 287 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_1963#" 982 13.0647 129 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_1963#" 982 13.0647 -29 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_1963#" 982 13.0647 -187 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_1963#" 982 13.0647 -345 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_1963#" 982 13.0647 -503 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_1963#" 982 13.0647 -661 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_1963#" 982 13.0647 -819 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n977_1963#" 982 13.0647 -977 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1135_1963#" 982 13.0647 -1135 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1293_1963#" 982 155.795 -1293 1963 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1135_1875#" 387 243.688 1135 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_977_1875#" 387 182.299 977 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_819_1875#" 387 182.299 819 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_661_1875#" 387 182.299 661 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_1875#" 387 182.299 503 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_1875#" 387 182.299 345 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_1875#" 387 182.299 187 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_1875#" 387 182.299 29 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_1875#" 387 182.299 -129 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_1875#" 387 182.299 -287 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_1875#" 387 182.299 -445 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_1875#" 387 182.299 -603 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_1875#" 387 182.299 -761 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n919_1875#" 387 182.299 -919 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1077_1875#" 387 182.299 -1077 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n1235_1875#" 387 244.2 -1235 1875 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1395_n2537#" 0 0 -1395 -2537 ppd 0 0 0 0 0 0 0 0 0 0 530128 31184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 530128 31184 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_919_n1745#" "a_919_n1127#" 12.3196
+cap "a_n919_1875#" "a_n761_1875#" 135.85
+cap "a_n1293_n1745#" "a_n1293_n2363#" 12.3196
+cap "a_n819_109#" "a_n819_727#" 12.3196
+cap "a_n661_n2363#" "a_n661_n1745#" 12.3196
+cap "a_n661_727#" "a_n661_109#" 12.3196
+cap "a_n603_1257#" "a_n603_1875#" 143.798
+cap "a_129_n1745#" "a_287_n1745#" 223.915
+cap "a_n345_n509#" "a_n345_n1127#" 12.3196
+cap "a_1235_1345#" "a_1235_727#" 12.3196
+cap "a_n345_1963#" "a_n187_1963#" 223.915
+cap "a_n129_n2451#" "a_29_n2451#" 135.85
+cap "a_n287_n597#" "a_n129_n597#" 135.85
+cap "a_n919_n597#" "a_n919_21#" 143.798
+cap "a_n29_1963#" "a_129_1963#" 223.915
+cap "a_n1077_n1833#" "a_n919_n1833#" 135.85
+cap "a_n603_21#" "a_n603_639#" 143.798
+cap "a_n603_639#" "a_n761_639#" 135.85
+cap "a_n1077_1257#" "a_n1235_1257#" 135.85
+cap "a_1077_n509#" "a_1077_n1127#" 12.3196
+cap "a_n129_639#" "a_n129_1257#" 143.798
+cap "a_287_n1745#" "a_287_n2363#" 12.3196
+cap "a_n919_n1833#" "a_n919_n1215#" 143.798
+cap "a_603_n1745#" "a_761_n1745#" 223.915
+cap "a_n919_n1215#" "a_n761_n1215#" 135.85
+cap "a_1077_n509#" "a_1077_109#" 12.3196
+cap "a_129_727#" "a_129_109#" 12.3196
+cap "a_977_n1833#" "a_977_n1215#" 143.798
+cap "a_287_n2363#" "a_445_n2363#" 223.915
+cap "a_445_n509#" "a_603_n509#" 223.915
+cap "a_n1135_1963#" "a_n1135_1345#" 12.3196
+cap "a_661_1257#" "a_503_1257#" 135.85
+cap "a_603_1963#" "a_603_1345#" 12.3196
+cap "a_661_639#" "a_661_21#" 143.798
+cap "a_n1135_n509#" "a_n977_n509#" 223.915
+cap "a_n661_n2363#" "a_n503_n2363#" 223.915
+cap "a_187_n1215#" "a_187_n597#" 143.798
+cap "a_345_21#" "a_345_n597#" 143.798
+cap "a_977_639#" "a_977_1257#" 143.798
+cap "a_n187_109#" "a_n29_109#" 223.915
+cap "a_819_n2451#" "a_977_n2451#" 135.85
+cap "a_661_n1833#" "a_661_n2451#" 143.798
+cap "a_345_n1833#" "a_503_n1833#" 135.85
+cap "a_n919_n597#" "a_n919_n1215#" 143.798
+cap "a_919_727#" "a_1077_727#" 223.915
+cap "a_661_1257#" "a_819_1257#" 135.85
+cap "a_n819_n1127#" "a_n661_n1127#" 223.915
+cap "a_n345_109#" "a_n503_109#" 223.915
+cap "a_n345_727#" "a_n345_1345#" 12.3196
+cap "a_187_21#" "a_187_n597#" 143.798
+cap "a_n819_n1127#" "a_n819_n1745#" 12.3196
+cap "a_n129_n1833#" "a_29_n1833#" 135.85
+cap "a_n603_1257#" "a_n761_1257#" 135.85
+cap "a_n977_n1745#" "a_n819_n1745#" 223.915
+cap "a_977_n597#" "a_977_n1215#" 143.798
+cap "a_187_1875#" "a_345_1875#" 135.85
+cap "a_n345_1345#" "a_n187_1345#" 223.915
+cap "a_29_n1833#" "a_29_n1215#" 143.798
+cap "a_n1293_727#" "a_n1293_109#" 12.3196
+cap "a_n1077_n2451#" "a_n919_n2451#" 135.85
+cap "a_919_n1127#" "a_1077_n1127#" 223.915
+cap "a_919_n509#" "a_1077_n509#" 223.915
+cap "a_n1077_n597#" "a_n919_n597#" 135.85
+cap "a_n1135_1963#" "a_n1293_1963#" 223.915
+cap "a_n977_1963#" "a_n819_1963#" 223.915
+cap "a_345_n1215#" "a_503_n1215#" 135.85
+cap "a_n129_n1833#" "a_n129_n2451#" 143.798
+cap "a_n445_1257#" "a_n287_1257#" 135.85
+cap "a_n1235_1257#" "a_n1235_1875#" 143.798
+cap "a_n1135_n509#" "a_n1135_109#" 12.3196
+cap "a_287_727#" "a_129_727#" 223.915
+cap "a_n977_727#" "a_n819_727#" 223.915
+cap "a_603_727#" "a_603_109#" 12.3196
+cap "a_n1077_n1833#" "a_n1077_n2451#" 143.798
+cap "a_n129_n597#" "a_n129_n1215#" 143.798
+cap "a_345_1257#" "a_503_1257#" 135.85
+cap "a_n1293_n1745#" "a_n1135_n1745#" 223.915
+cap "a_761_n1745#" "a_761_n1127#" 12.3196
+cap "a_1135_n1833#" "a_1135_n2451#" 143.798
+cap "a_n1077_1257#" "a_n1077_639#" 143.798
+cap "a_29_n597#" "a_29_21#" 143.798
+cap "a_n29_n1745#" "a_129_n1745#" 223.915
+cap "a_n819_n2363#" "a_n819_n1745#" 12.3196
+cap "a_761_n509#" "a_603_n509#" 223.915
+cap "a_n287_n2451#" "a_n129_n2451#" 135.85
+cap "a_n503_n509#" "a_n503_n1127#" 12.3196
+cap "a_n445_n597#" "a_n287_n597#" 135.85
+cap "a_n1235_n1833#" "a_n1077_n1833#" 135.85
+cap "a_n819_1345#" "a_n819_727#" 12.3196
+cap "a_n445_1257#" "a_n445_639#" 143.798
+cap "a_n1293_109#" "a_n1135_109#" 223.915
+cap "a_129_727#" "a_n29_727#" 223.915
+cap "a_n1135_1345#" "a_n977_1345#" 223.915
+cap "a_129_n1745#" "a_129_n2363#" 12.3196
+cap "a_919_n509#" "a_919_n1127#" 12.3196
+cap "a_345_21#" "a_345_639#" 143.798
+cap "a_503_639#" "a_503_21#" 143.798
+cap "a_n977_727#" "a_n1135_727#" 223.915
+cap "a_603_1345#" "a_761_1345#" 223.915
+cap "a_187_1257#" "a_187_639#" 143.798
+cap "a_n287_1875#" "a_n445_1875#" 135.85
+cap "a_187_1875#" "a_29_1875#" 135.85
+cap "a_445_n1745#" "a_445_n1127#" 12.3196
+cap "a_287_n509#" "a_445_n509#" 223.915
+cap "a_819_n1833#" "a_819_n1215#" 143.798
+cap "a_129_n2363#" "a_287_n2363#" 223.915
+cap "a_n603_1875#" "a_n445_1875#" 135.85
+cap "a_977_1875#" "a_1135_1875#" 135.85
+cap "a_n1293_n509#" "a_n1135_n509#" 223.915
+cap "a_n819_n2363#" "a_n661_n2363#" 223.915
+cap "a_445_109#" "a_445_n509#" 12.3196
+cap "a_n345_109#" "a_n187_109#" 223.915
+cap "a_n977_1963#" "a_n1135_1963#" 223.915
+cap "a_661_n2451#" "a_819_n2451#" 135.85
+cap "a_503_n1833#" "a_503_n2451#" 143.798
+cap "a_187_n1833#" "a_345_n1833#" 135.85
+cap "a_n287_21#" "a_n129_21#" 135.85
+cap "a_29_1257#" "a_n129_1257#" 135.85
+cap "a_n977_n1127#" "a_n819_n1127#" 223.915
+cap "a_603_n1127#" "a_603_n509#" 12.3196
+cap "a_n29_727#" "a_n29_1345#" 12.3196
+cap "a_n819_1345#" "a_n819_1963#" 12.3196
+cap "a_n977_n1127#" "a_n977_n1745#" 12.3196
+cap "a_n345_n509#" "a_n187_n509#" 223.915
+cap "a_819_1257#" "a_977_1257#" 135.85
+cap "a_n287_n1833#" "a_n129_n1833#" 135.85
+cap "a_661_21#" "a_819_21#" 135.85
+cap "a_n129_639#" "a_n129_21#" 143.798
+cap "a_n661_727#" "a_n819_727#" 223.915
+cap "a_29_639#" "a_29_21#" 143.798
+cap "a_n287_1257#" "a_n287_639#" 143.798
+cap "a_661_n597#" "a_819_n597#" 135.85
+cap "a_603_1345#" "a_603_727#" 12.3196
+cap "a_n129_n1833#" "a_n129_n1215#" 143.798
+cap "a_761_n1127#" "a_919_n1127#" 223.915
+cap "a_n1235_n2451#" "a_n1077_n2451#" 135.85
+cap "a_761_n509#" "a_919_n509#" 223.915
+cap "a_n919_1875#" "a_n1077_1875#" 135.85
+cap "a_n503_1345#" "a_n661_1345#" 223.915
+cap "a_187_n1215#" "a_345_n1215#" 135.85
+cap "a_187_n1215#" "a_29_n1215#" 135.85
+cap "a_n129_n1215#" "a_29_n1215#" 135.85
+cap "a_n1293_n509#" "a_n1293_109#" 12.3196
+cap "a_n187_727#" "a_n29_727#" 223.915
+cap "a_n287_n1833#" "a_n287_n2451#" 143.798
+cap "a_1077_n2363#" "a_1235_n2363#" 223.915
+cap "a_n603_1257#" "a_n603_639#" 143.798
+cap "a_n1293_727#" "a_n1135_727#" 223.915
+cap "a_129_727#" "a_129_1345#" 12.3196
+cap "a_n1235_n1833#" "a_n1235_n2451#" 143.798
+cap "a_n287_n597#" "a_n287_n1215#" 143.798
+cap "a_819_1875#" "a_977_1875#" 135.85
+cap "a_n29_109#" "a_n29_n509#" 12.3196
+cap "a_603_n1745#" "a_603_n1127#" 12.3196
+cap "a_n445_639#" "a_n287_639#" 135.85
+cap "a_n29_n1127#" "a_n29_n1745#" 12.3196
+cap "a_n187_n1745#" "a_n29_n1745#" 223.915
+cap "a_n977_n2363#" "a_n977_n1745#" 12.3196
+cap "a_n29_109#" "a_129_109#" 223.915
+cap "a_n445_n2451#" "a_n287_n2451#" 135.85
+cap "a_n661_n509#" "a_n661_n1127#" 12.3196
+cap "a_1077_727#" "a_1077_1345#" 12.3196
+cap "a_345_1257#" "a_187_1257#" 135.85
+cap "a_n29_1963#" "a_n187_1963#" 223.915
+cap "a_n1077_n1833#" "a_n1077_n1215#" 143.798
+cap "a_287_1963#" "a_129_1963#" 223.915
+cap "a_761_n509#" "a_761_n1127#" 12.3196
+cap "a_919_1345#" "a_919_727#" 12.3196
+cap "a_919_1963#" "a_1077_1963#" 223.915
+cap "a_819_21#" "a_977_21#" 135.85
+cap "a_503_21#" "a_661_21#" 135.85
+cap "a_445_1345#" "a_287_1345#" 223.915
+cap "a_n1077_n1215#" "a_n919_n1215#" 135.85
+cap "a_503_1875#" "a_661_1875#" 135.85
+cap "a_1235_n2363#" "a_1235_n1745#" 12.3196
+cap "a_n29_1345#" "a_129_1345#" 223.915
+cap "a_n977_1963#" "a_n977_1345#" 12.3196
+cap "a_n919_1257#" "a_n761_1257#" 135.85
+cap "a_29_1875#" "a_n129_1875#" 135.85
+cap "a_287_n1745#" "a_287_n1127#" 12.3196
+cap "a_129_n509#" "a_287_n509#" 223.915
+cap "a_761_109#" "a_761_727#" 12.3196
+cap "a_661_n1833#" "a_661_n1215#" 143.798
+cap "a_n1135_n1127#" "a_n1293_n1127#" 223.915
+cap "a_n1135_727#" "a_n1135_109#" 12.3196
+cap "a_661_639#" "a_819_639#" 135.85
+cap "a_n1077_n597#" "a_n1077_n1215#" 143.798
+cap "a_503_639#" "a_503_1257#" 143.798
+cap "a_n977_n2363#" "a_n819_n2363#" 223.915
+cap "a_n29_n2363#" "a_n29_n1745#" 12.3196
+cap "a_287_109#" "a_287_n509#" 12.3196
+cap "a_n187_1345#" "a_n187_1963#" 12.3196
+cap "a_503_n2451#" "a_661_n2451#" 135.85
+cap "a_345_n1833#" "a_345_n2451#" 143.798
+cap "a_445_n1127#" "a_445_n509#" 12.3196
+cap "a_1135_639#" "a_1135_1257#" 143.798
+cap "a_1135_1875#" "a_1135_1257#" 143.798
+cap "a_n1135_n1127#" "a_n977_n1127#" 223.915
+cap "a_n445_21#" "a_n445_n597#" 143.798
+cap "a_n503_n509#" "a_n345_n509#" 223.915
+cap "a_761_109#" "a_919_109#" 223.915
+cap "a_n445_n1833#" "a_n287_n1833#" 135.85
+cap "a_287_109#" "a_445_109#" 223.915
+cap "a_503_n597#" "a_661_n597#" 135.85
+cap "a_1135_n597#" "a_1135_21#" 143.798
+cap "a_n919_639#" "a_n761_639#" 135.85
+cap "a_n29_n2363#" "a_129_n2363#" 223.915
+cap "a_n287_n1833#" "a_n287_n1215#" 143.798
+cap "a_603_n1127#" "a_761_n1127#" 223.915
+cap "a_29_1257#" "a_187_1257#" 135.85
+cap "a_919_1345#" "a_761_1345#" 223.915
+cap "a_n287_n1215#" "a_n129_n1215#" 135.85
+cap "a_287_1963#" "a_287_1345#" 12.3196
+cap "a_977_21#" "a_1135_21#" 135.85
+cap "a_345_21#" "a_503_21#" 135.85
+cap "a_n919_1257#" "a_n919_1875#" 143.798
+cap "a_n977_727#" "a_n977_1345#" 12.3196
+cap "a_n1077_21#" "a_n1077_639#" 143.798
+cap "a_n445_n1833#" "a_n445_n2451#" 143.798
+cap "a_n1077_1257#" "a_n1077_1875#" 143.798
+cap "a_919_n2363#" "a_1077_n2363#" 223.915
+cap "a_345_21#" "a_187_21#" 135.85
+cap "a_n29_109#" "a_n29_727#" 12.3196
+cap "a_345_1257#" "a_345_1875#" 143.798
+cap "a_n445_21#" "a_n445_639#" 143.798
+cap "a_819_n1215#" "a_819_n597#" 143.798
+cap "a_n445_n597#" "a_n445_n1215#" 143.798
+cap "a_29_21#" "a_187_21#" 135.85
+cap "a_445_727#" "a_445_1345#" 12.3196
+cap "a_977_n1833#" "a_1135_n1833#" 135.85
+cap "a_503_1875#" "a_503_1257#" 143.798
+cap "a_n187_n1127#" "a_n29_n1127#" 223.915
+cap "a_1135_n2451#" "a_977_n2451#" 135.85
+cap "a_n187_n1127#" "a_n187_n1745#" 12.3196
+cap "a_n345_n1745#" "a_n187_n1745#" 223.915
+cap "a_n819_n509#" "a_n819_n1127#" 12.3196
+cap "a_445_1345#" "a_445_1963#" 12.3196
+cap "a_n1077_n597#" "a_n1235_n597#" 135.85
+cap "a_n603_21#" "a_n761_21#" 135.85
+cap "a_977_639#" "a_977_21#" 143.798
+cap "a_n819_1345#" "a_n977_1345#" 223.915
+cap "a_n761_21#" "a_n761_639#" 143.798
+cap "a_n503_1345#" "a_n503_727#" 12.3196
+cap "a_n603_n597#" "a_n445_n597#" 135.85
+cap "a_n1235_639#" "a_n1235_1257#" 143.798
+cap "a_n287_1257#" "a_n129_1257#" 135.85
+cap "a_n1235_n1833#" "a_n1235_n1215#" 143.798
+cap "a_n919_21#" "a_n1077_21#" 135.85
+cap "a_n29_n1127#" "a_n29_n509#" 12.3196
+cap "a_919_1963#" "a_761_1963#" 223.915
+cap "a_n287_1257#" "a_n287_1875#" 143.798
+cap "a_977_n1215#" "a_1135_n1215#" 135.85
+cap "a_n919_639#" "a_n1077_639#" 135.85
+cap "a_1235_1963#" "a_1235_1345#" 12.3196
+cap "a_1077_n2363#" "a_1077_n1745#" 12.3196
+cap "a_n503_1963#" "a_n661_1963#" 223.915
+cap "a_503_n1833#" "a_503_n1215#" 143.798
+cap "a_129_n1745#" "a_129_n1127#" 12.3196
+cap "a_n29_n509#" "a_129_n509#" 223.915
+cap "a_n1135_n2363#" "a_n977_n2363#" 223.915
+cap "a_n187_n2363#" "a_n187_n1745#" 12.3196
+cap "a_129_109#" "a_129_n509#" 12.3196
+cap "a_977_n597#" "a_1135_n597#" 135.85
+cap "a_345_n2451#" "a_503_n2451#" 135.85
+cap "a_187_n1833#" "a_187_n2451#" 143.798
+cap "a_n1235_1875#" "a_n1077_1875#" 135.85
+cap "a_287_n1127#" "a_287_n509#" 12.3196
+cap "a_n129_n597#" "a_n129_21#" 143.798
+cap "a_n819_1345#" "a_n661_1345#" 223.915
+cap "a_819_639#" "a_819_21#" 143.798
+cap "a_n661_n509#" "a_n503_n509#" 223.915
+cap "a_603_109#" "a_761_109#" 223.915
+cap "a_n603_n1833#" "a_n445_n1833#" 135.85
+cap "a_n919_21#" "a_n919_639#" 143.798
+cap "a_129_109#" "a_287_109#" 223.915
+cap "a_287_1963#" "a_445_1963#" 223.915
+cap "a_n603_n2451#" "a_n445_n2451#" 135.85
+cap "a_n1235_21#" "a_n1235_n597#" 143.798
+cap "a_n1135_1345#" "a_n1293_1345#" 223.915
+cap "a_345_n597#" "a_503_n597#" 135.85
+cap "a_977_n597#" "a_977_21#" 143.798
+cap "a_n761_n597#" "a_n761_21#" 143.798
+cap "a_n977_109#" "a_n819_109#" 223.915
+cap "a_n445_n1833#" "a_n445_n1215#" 143.798
+cap "a_1135_639#" "a_1135_21#" 143.798
+cap "a_1077_n1745#" "a_1235_n1745#" 223.915
+cap "a_445_n1127#" "a_603_n1127#" 223.915
+cap "a_919_1345#" "a_1077_1345#" 223.915
+cap "a_n29_1963#" "a_n29_1345#" 12.3196
+cap "a_603_1963#" "a_445_1963#" 223.915
+cap "a_n445_n1215#" "a_n287_n1215#" 135.85
+cap "a_n1077_n597#" "a_n1077_21#" 143.798
+cap "a_187_639#" "a_345_639#" 135.85
+cap "a_761_n2363#" "a_919_n2363#" 223.915
+cap "a_661_639#" "a_661_1257#" 143.798
+cap "a_n919_1257#" "a_n1077_1257#" 135.85
+cap "a_445_727#" "a_445_109#" 12.3196
+cap "a_n187_n2363#" "a_n29_n2363#" 223.915
+cap "a_661_n1215#" "a_661_n597#" 143.798
+cap "a_819_n1833#" "a_977_n1833#" 135.85
+cap "a_977_639#" "a_1135_639#" 135.85
+cap "a_n1235_639#" "a_n1077_639#" 135.85
+cap "a_n345_n1127#" "a_n187_n1127#" 223.915
+cap "a_n1293_1963#" "a_n1293_1345#" 12.3196
+cap "a_n1135_n1745#" "a_n977_n1745#" 223.915
+cap "a_n345_n1127#" "a_n345_n1745#" 12.3196
+cap "a_n603_21#" "a_n445_21#" 135.85
+cap "a_n503_n1745#" "a_n345_n1745#" 223.915
+cap "a_n661_1345#" "a_n661_727#" 12.3196
+cap "a_n761_21#" "a_n919_21#" 135.85
+cap "a_n445_1257#" "a_n603_1257#" 135.85
+cap "a_1235_1345#" "a_1077_1345#" 223.915
+cap "a_n503_1963#" "a_n345_1963#" 223.915
+cap "a_287_727#" "a_287_109#" 12.3196
+cap "a_n819_109#" "a_n819_n509#" 12.3196
+cap "a_n187_1345#" "a_n29_1345#" 223.915
+cap "a_187_639#" "a_29_639#" 135.85
+cap "a_n1235_n1215#" "a_n1077_n1215#" 135.85
+cap "a_29_1875#" "a_29_1257#" 143.798
+cap "a_n129_639#" "a_29_639#" 135.85
+cap "a_n977_n509#" "a_n977_n1127#" 12.3196
+cap "a_819_n1215#" "a_977_n1215#" 135.85
+cap "a_919_n2363#" "a_919_n1745#" 12.3196
+cap "a_n187_109#" "a_n187_n509#" 12.3196
+cap "a_187_n1833#" "a_29_n1833#" 135.85
+cap "a_n819_1963#" "a_n661_1963#" 223.915
+cap "a_n503_n509#" "a_n503_109#" 12.3196
+cap "a_n187_727#" "a_n345_727#" 223.915
+cap "a_n345_727#" "a_n503_727#" 223.915
+cap "a_n1235_21#" "a_n1077_21#" 135.85
+cap "a_n29_n1127#" "a_129_n1127#" 223.915
+cap "a_819_21#" "a_819_n597#" 143.798
+cap "a_n603_n1833#" "a_n603_n2451#" 143.798
+cap "a_345_n1833#" "a_345_n1215#" 143.798
+cap "a_977_1875#" "a_977_1257#" 143.798
+cap "a_1235_n1745#" "a_1235_n1127#" 12.3196
+cap "a_n187_727#" "a_n187_1345#" 12.3196
+cap "a_819_639#" "a_977_639#" 135.85
+cap "a_n1293_n2363#" "a_n1135_n2363#" 223.915
+cap "a_n345_n2363#" "a_n345_n1745#" 12.3196
+cap "a_919_109#" "a_1077_109#" 223.915
+cap "a_187_n2451#" "a_345_n2451#" 135.85
+cap "a_1077_727#" "a_1235_727#" 223.915
+cap "a_n977_727#" "a_n977_109#" 12.3196
+cap "a_129_n1127#" "a_129_n509#" 12.3196
+cap "a_n287_n597#" "a_n287_21#" 143.798
+cap "a_n819_n509#" "a_n661_n509#" 223.915
+cap "a_n761_n1833#" "a_n603_n1833#" 135.85
+cap "a_n603_21#" "a_n603_n597#" 143.798
+cap "a_345_1257#" "a_345_639#" 143.798
+cap "a_287_727#" "a_287_1345#" 12.3196
+cap "a_187_n597#" "a_345_n597#" 135.85
+cap "a_n603_n1833#" "a_n603_n1215#" 143.798
+cap "a_919_n1745#" "a_1077_n1745#" 223.915
+cap "a_287_n1127#" "a_445_n1127#" 223.915
+cap "a_n345_1345#" "a_n345_1963#" 12.3196
+cap "a_661_1875#" "a_819_1875#" 135.85
+cap "a_n603_n1215#" "a_n445_n1215#" 135.85
+cap "a_n1235_n1215#" "a_n1235_n597#" 143.798
+cap "a_n1293_n1745#" "a_n1293_n1127#" 12.3196
+cap "a_603_n2363#" "a_761_n2363#" 223.915
+cap "a_n819_109#" "a_n661_109#" 223.915
+cap "a_1235_727#" "a_1235_109#" 12.3196
+cap "a_919_n509#" "a_919_109#" 12.3196
+cap "a_503_1875#" "a_345_1875#" 135.85
+cap "a_603_727#" "a_445_727#" 223.915
+cap "a_n345_n2363#" "a_n187_n2363#" 223.915
+cap "a_n503_727#" "a_n503_109#" 12.3196
+cap "a_977_n1833#" "a_977_n2451#" 143.798
+cap "a_661_n1833#" "a_819_n1833#" 135.85
+cap "a_503_n1215#" "a_503_n597#" 143.798
+cap "a_n1135_n1745#" "a_n1135_n1127#" 12.3196
+cap "a_n603_n597#" "a_n603_n1215#" 143.798
+cap "a_n503_n1127#" "a_n345_n1127#" 223.915
+cap "a_n503_n1127#" "a_n503_n1745#" 12.3196
+cap "a_n661_n1745#" "a_n503_n1745#" 223.915
+cap "a_n287_21#" "a_n287_639#" 143.798
+cap "a_n1293_n509#" "a_n1293_n1127#" 12.3196
+cap "a_29_n597#" "a_187_n597#" 135.85
+cap "a_761_1963#" "a_603_1963#" 223.915
+cap "a_129_1963#" "a_129_1345#" 12.3196
+cap "a_1077_1963#" "a_1235_1963#" 223.915
+cap "a_n761_n2451#" "a_n603_n2451#" 135.85
+cap "a_n761_n597#" "a_n603_n597#" 135.85
+cap "a_n129_639#" "a_n287_639#" 135.85
+cap "a_603_109#" "a_603_n509#" 12.3196
+cap "a_919_727#" "a_761_727#" 223.915
+cap "a_n503_1345#" "a_n503_1963#" 12.3196
+cap "a_661_n1215#" "a_819_n1215#" 135.85
+cap "a_n1135_n509#" "a_n1135_n1127#" 12.3196
+cap "a_761_n2363#" "a_761_n1745#" 12.3196
+cap "a_n345_109#" "a_n345_n509#" 12.3196
+cap "a_n661_n509#" "a_n661_109#" 12.3196
+cap "a_n977_109#" "a_n977_n509#" 12.3196
+cap "a_n761_1257#" "a_n761_639#" 143.798
+cap "a_661_21#" "a_661_n597#" 143.798
+cap "a_n661_727#" "a_n503_727#" 223.915
+cap "a_n761_n1833#" "a_n761_n2451#" 143.798
+cap "a_187_n1833#" "a_187_n1215#" 143.798
+cap "a_287_727#" "a_445_727#" 223.915
+cap "a_n445_1257#" "a_n445_1875#" 143.798
+cap "a_1077_n1745#" "a_1077_n1127#" 12.3196
+cap "a_919_727#" "a_919_109#" 12.3196
+cap "a_n1135_n1745#" "a_n1135_n2363#" 12.3196
+cap "a_n129_21#" "a_29_21#" 135.85
+cap "a_187_639#" "a_187_21#" 143.798
+cap "a_n445_639#" "a_n603_639#" 135.85
+cap "a_n761_1875#" "a_n603_1875#" 135.85
+cap "a_287_n1745#" "a_445_n1745#" 223.915
+cap "a_n503_n2363#" "a_n503_n1745#" 12.3196
+cap "a_n187_n509#" "a_n187_n1127#" 12.3196
+cap "a_29_n2451#" "a_187_n2451#" 135.85
+cap "a_n1235_639#" "a_n1235_21#" 143.798
+cap "a_977_1257#" "a_1135_1257#" 135.85
+cap "a_29_1257#" "a_29_639#" 143.798
+cap "a_n129_n597#" "a_29_n597#" 135.85
+cap "a_819_639#" "a_819_1257#" 143.798
+cap "a_n919_n1833#" "a_n761_n1833#" 135.85
+cap "a_819_1257#" "a_819_1875#" 143.798
+cap "a_1235_n509#" "a_1235_n1127#" 12.3196
+cap "a_n977_109#" "a_n1135_109#" 223.915
+cap "a_445_n1745#" "a_445_n2363#" 12.3196
+cap "a_n761_n1833#" "a_n761_n1215#" 143.798
+cap "a_761_n1745#" "a_919_n1745#" 223.915
+cap "a_129_n1127#" "a_287_n1127#" 223.915
+cap "a_n187_n509#" "a_n29_n509#" 223.915
+cap "a_129_1345#" "a_287_1345#" 223.915
+cap "a_n977_n509#" "a_n819_n509#" 223.915
+cap "a_n761_n1215#" "a_n603_n1215#" 135.85
+cap "a_1235_n509#" "a_1235_109#" 12.3196
+cap "a_761_1345#" "a_761_727#" 12.3196
+cap "a_977_n597#" "a_819_n597#" 135.85
+cap "a_n503_1345#" "a_n345_1345#" 223.915
+cap "a_1135_n1833#" "a_1135_n1215#" 143.798
+cap "a_445_n2363#" "a_603_n2363#" 223.915
+cap "a_n1293_727#" "a_n1293_1345#" 12.3196
+cap "a_761_n509#" "a_761_109#" 12.3196
+cap "a_n187_109#" "a_n187_727#" 12.3196
+cap "a_n503_n2363#" "a_n345_n2363#" 223.915
+cap "a_345_n1215#" "a_345_n597#" 143.798
+cap "a_503_21#" "a_503_n597#" 143.798
+cap "a_1077_1963#" "a_1077_1345#" 12.3196
+cap "a_819_n1833#" "a_819_n2451#" 143.798
+cap "a_503_n1833#" "a_661_n1833#" 135.85
+cap "a_n761_n597#" "a_n761_n1215#" 143.798
+cap "a_661_639#" "a_503_639#" 135.85
+cap "a_n661_n1127#" "a_n503_n1127#" 223.915
+cap "a_761_1963#" "a_761_1345#" 12.3196
+cap "a_n445_21#" "a_n287_21#" 135.85
+cap "a_n761_1257#" "a_n761_1875#" 143.798
+cap "a_n661_n1127#" "a_n661_n1745#" 12.3196
+cap "a_n819_n1745#" "a_n661_n1745#" 223.915
+cap "a_n661_109#" "a_n503_109#" 223.915
+cap "a_1077_727#" "a_1077_109#" 12.3196
+cap "a_1135_n597#" "a_1135_n1215#" 143.798
+cap "a_661_1257#" "a_661_1875#" 143.798
+cap "a_445_n1745#" "a_603_n1745#" 223.915
+cap "a_n1135_727#" "a_n1135_1345#" 12.3196
+cap "a_603_727#" "a_761_727#" 223.915
+cap "a_n919_1257#" "a_n919_639#" 143.798
+cap "a_n129_1257#" "a_n129_1875#" 143.798
+cap "a_1077_n1127#" "a_1235_n1127#" 223.915
+cap "a_1077_n509#" "a_1235_n509#" 223.915
+cap "a_603_1345#" "a_445_1345#" 223.915
+cap "a_n919_n2451#" "a_n761_n2451#" 135.85
+cap "a_n919_n597#" "a_n761_n597#" 135.85
+cap "a_503_639#" "a_345_639#" 135.85
+cap "a_n129_1875#" "a_n287_1875#" 135.85
+cap "a_503_n1215#" "a_661_n1215#" 135.85
+cap "a_29_n1833#" "a_29_n2451#" 143.798
+cap "a_603_n2363#" "a_603_n1745#" 12.3196
+cap "a_n661_1345#" "a_n661_1963#" 12.3196
+cap "a_445_109#" "a_603_109#" 223.915
+cap "a_187_1875#" "a_187_1257#" 143.798
+cap "a_n345_109#" "a_n345_727#" 12.3196
+cap "a_n919_n1833#" "a_n919_n2451#" 143.798
+cap "a_1077_109#" "a_1235_109#" 223.915
+cap "a_29_n597#" "a_29_n1215#" 143.798
+cap "a_919_1963#" "a_919_1345#" 12.3196
+device msubckt sky130_fd_pr__nfet_01v8 1135 -2363 1136 -2362 l=100 w=400 "a_n1395_n2537#" "a_1135_n2451#" 200 0 "a_1077_n2363#" 400 0 "a_1235_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 -2363 978 -2362 l=100 w=400 "a_n1395_n2537#" "a_977_n2451#" 200 0 "a_919_n2363#" 400 0 "a_1077_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 -2363 820 -2362 l=100 w=400 "a_n1395_n2537#" "a_819_n2451#" 200 0 "a_761_n2363#" 400 0 "a_919_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 -2363 662 -2362 l=100 w=400 "a_n1395_n2537#" "a_661_n2451#" 200 0 "a_603_n2363#" 400 0 "a_761_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 -2363 504 -2362 l=100 w=400 "a_n1395_n2537#" "a_503_n2451#" 200 0 "a_445_n2363#" 400 0 "a_603_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 -2363 346 -2362 l=100 w=400 "a_n1395_n2537#" "a_345_n2451#" 200 0 "a_287_n2363#" 400 0 "a_445_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 -2363 188 -2362 l=100 w=400 "a_n1395_n2537#" "a_187_n2451#" 200 0 "a_129_n2363#" 400 0 "a_287_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -2363 30 -2362 l=100 w=400 "a_n1395_n2537#" "a_29_n2451#" 200 0 "a_n29_n2363#" 400 0 "a_129_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -2363 -128 -2362 l=100 w=400 "a_n1395_n2537#" "a_n129_n2451#" 200 0 "a_n187_n2363#" 400 0 "a_n29_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 -2363 -286 -2362 l=100 w=400 "a_n1395_n2537#" "a_n287_n2451#" 200 0 "a_n345_n2363#" 400 0 "a_n187_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 -2363 -444 -2362 l=100 w=400 "a_n1395_n2537#" "a_n445_n2451#" 200 0 "a_n503_n2363#" 400 0 "a_n345_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 -2363 -602 -2362 l=100 w=400 "a_n1395_n2537#" "a_n603_n2451#" 200 0 "a_n661_n2363#" 400 0 "a_n503_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 -2363 -760 -2362 l=100 w=400 "a_n1395_n2537#" "a_n761_n2451#" 200 0 "a_n819_n2363#" 400 0 "a_n661_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 -2363 -918 -2362 l=100 w=400 "a_n1395_n2537#" "a_n919_n2451#" 200 0 "a_n977_n2363#" 400 0 "a_n819_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 -2363 -1076 -2362 l=100 w=400 "a_n1395_n2537#" "a_n1077_n2451#" 200 0 "a_n1135_n2363#" 400 0 "a_n977_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 -2363 -1234 -2362 l=100 w=400 "a_n1395_n2537#" "a_n1235_n2451#" 200 0 "a_n1293_n2363#" 400 0 "a_n1135_n2363#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 -1745 1136 -1744 l=100 w=400 "a_n1395_n2537#" "a_1135_n1833#" 200 0 "a_1077_n1745#" 400 0 "a_1235_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 -1745 978 -1744 l=100 w=400 "a_n1395_n2537#" "a_977_n1833#" 200 0 "a_919_n1745#" 400 0 "a_1077_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 -1745 820 -1744 l=100 w=400 "a_n1395_n2537#" "a_819_n1833#" 200 0 "a_761_n1745#" 400 0 "a_919_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 -1745 662 -1744 l=100 w=400 "a_n1395_n2537#" "a_661_n1833#" 200 0 "a_603_n1745#" 400 0 "a_761_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 -1745 504 -1744 l=100 w=400 "a_n1395_n2537#" "a_503_n1833#" 200 0 "a_445_n1745#" 400 0 "a_603_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 -1745 346 -1744 l=100 w=400 "a_n1395_n2537#" "a_345_n1833#" 200 0 "a_287_n1745#" 400 0 "a_445_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 -1745 188 -1744 l=100 w=400 "a_n1395_n2537#" "a_187_n1833#" 200 0 "a_129_n1745#" 400 0 "a_287_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -1745 30 -1744 l=100 w=400 "a_n1395_n2537#" "a_29_n1833#" 200 0 "a_n29_n1745#" 400 0 "a_129_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -1745 -128 -1744 l=100 w=400 "a_n1395_n2537#" "a_n129_n1833#" 200 0 "a_n187_n1745#" 400 0 "a_n29_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 -1745 -286 -1744 l=100 w=400 "a_n1395_n2537#" "a_n287_n1833#" 200 0 "a_n345_n1745#" 400 0 "a_n187_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 -1745 -444 -1744 l=100 w=400 "a_n1395_n2537#" "a_n445_n1833#" 200 0 "a_n503_n1745#" 400 0 "a_n345_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 -1745 -602 -1744 l=100 w=400 "a_n1395_n2537#" "a_n603_n1833#" 200 0 "a_n661_n1745#" 400 0 "a_n503_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 -1745 -760 -1744 l=100 w=400 "a_n1395_n2537#" "a_n761_n1833#" 200 0 "a_n819_n1745#" 400 0 "a_n661_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 -1745 -918 -1744 l=100 w=400 "a_n1395_n2537#" "a_n919_n1833#" 200 0 "a_n977_n1745#" 400 0 "a_n819_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 -1745 -1076 -1744 l=100 w=400 "a_n1395_n2537#" "a_n1077_n1833#" 200 0 "a_n1135_n1745#" 400 0 "a_n977_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 -1745 -1234 -1744 l=100 w=400 "a_n1395_n2537#" "a_n1235_n1833#" 200 0 "a_n1293_n1745#" 400 0 "a_n1135_n1745#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 -1127 1136 -1126 l=100 w=400 "a_n1395_n2537#" "a_1135_n1215#" 200 0 "a_1077_n1127#" 400 0 "a_1235_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 -1127 978 -1126 l=100 w=400 "a_n1395_n2537#" "a_977_n1215#" 200 0 "a_919_n1127#" 400 0 "a_1077_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 -1127 820 -1126 l=100 w=400 "a_n1395_n2537#" "a_819_n1215#" 200 0 "a_761_n1127#" 400 0 "a_919_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 -1127 662 -1126 l=100 w=400 "a_n1395_n2537#" "a_661_n1215#" 200 0 "a_603_n1127#" 400 0 "a_761_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 -1127 504 -1126 l=100 w=400 "a_n1395_n2537#" "a_503_n1215#" 200 0 "a_445_n1127#" 400 0 "a_603_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 -1127 346 -1126 l=100 w=400 "a_n1395_n2537#" "a_345_n1215#" 200 0 "a_287_n1127#" 400 0 "a_445_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 -1127 188 -1126 l=100 w=400 "a_n1395_n2537#" "a_187_n1215#" 200 0 "a_129_n1127#" 400 0 "a_287_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -1127 30 -1126 l=100 w=400 "a_n1395_n2537#" "a_29_n1215#" 200 0 "a_n29_n1127#" 400 0 "a_129_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -1127 -128 -1126 l=100 w=400 "a_n1395_n2537#" "a_n129_n1215#" 200 0 "a_n187_n1127#" 400 0 "a_n29_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 -1127 -286 -1126 l=100 w=400 "a_n1395_n2537#" "a_n287_n1215#" 200 0 "a_n345_n1127#" 400 0 "a_n187_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 -1127 -444 -1126 l=100 w=400 "a_n1395_n2537#" "a_n445_n1215#" 200 0 "a_n503_n1127#" 400 0 "a_n345_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 -1127 -602 -1126 l=100 w=400 "a_n1395_n2537#" "a_n603_n1215#" 200 0 "a_n661_n1127#" 400 0 "a_n503_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 -1127 -760 -1126 l=100 w=400 "a_n1395_n2537#" "a_n761_n1215#" 200 0 "a_n819_n1127#" 400 0 "a_n661_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 -1127 -918 -1126 l=100 w=400 "a_n1395_n2537#" "a_n919_n1215#" 200 0 "a_n977_n1127#" 400 0 "a_n819_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 -1127 -1076 -1126 l=100 w=400 "a_n1395_n2537#" "a_n1077_n1215#" 200 0 "a_n1135_n1127#" 400 0 "a_n977_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 -1127 -1234 -1126 l=100 w=400 "a_n1395_n2537#" "a_n1235_n1215#" 200 0 "a_n1293_n1127#" 400 0 "a_n1135_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 -509 1136 -508 l=100 w=400 "a_n1395_n2537#" "a_1135_n597#" 200 0 "a_1077_n509#" 400 0 "a_1235_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 -509 978 -508 l=100 w=400 "a_n1395_n2537#" "a_977_n597#" 200 0 "a_919_n509#" 400 0 "a_1077_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 -509 820 -508 l=100 w=400 "a_n1395_n2537#" "a_819_n597#" 200 0 "a_761_n509#" 400 0 "a_919_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 -509 662 -508 l=100 w=400 "a_n1395_n2537#" "a_661_n597#" 200 0 "a_603_n509#" 400 0 "a_761_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 -509 504 -508 l=100 w=400 "a_n1395_n2537#" "a_503_n597#" 200 0 "a_445_n509#" 400 0 "a_603_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 -509 346 -508 l=100 w=400 "a_n1395_n2537#" "a_345_n597#" 200 0 "a_287_n509#" 400 0 "a_445_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 -509 188 -508 l=100 w=400 "a_n1395_n2537#" "a_187_n597#" 200 0 "a_129_n509#" 400 0 "a_287_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -509 30 -508 l=100 w=400 "a_n1395_n2537#" "a_29_n597#" 200 0 "a_n29_n509#" 400 0 "a_129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -509 -128 -508 l=100 w=400 "a_n1395_n2537#" "a_n129_n597#" 200 0 "a_n187_n509#" 400 0 "a_n29_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 -509 -286 -508 l=100 w=400 "a_n1395_n2537#" "a_n287_n597#" 200 0 "a_n345_n509#" 400 0 "a_n187_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 -509 -444 -508 l=100 w=400 "a_n1395_n2537#" "a_n445_n597#" 200 0 "a_n503_n509#" 400 0 "a_n345_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 -509 -602 -508 l=100 w=400 "a_n1395_n2537#" "a_n603_n597#" 200 0 "a_n661_n509#" 400 0 "a_n503_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 -509 -760 -508 l=100 w=400 "a_n1395_n2537#" "a_n761_n597#" 200 0 "a_n819_n509#" 400 0 "a_n661_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 -509 -918 -508 l=100 w=400 "a_n1395_n2537#" "a_n919_n597#" 200 0 "a_n977_n509#" 400 0 "a_n819_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 -509 -1076 -508 l=100 w=400 "a_n1395_n2537#" "a_n1077_n597#" 200 0 "a_n1135_n509#" 400 0 "a_n977_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 -509 -1234 -508 l=100 w=400 "a_n1395_n2537#" "a_n1235_n597#" 200 0 "a_n1293_n509#" 400 0 "a_n1135_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 109 1136 110 l=100 w=400 "a_n1395_n2537#" "a_1135_21#" 200 0 "a_1077_109#" 400 0 "a_1235_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 109 978 110 l=100 w=400 "a_n1395_n2537#" "a_977_21#" 200 0 "a_919_109#" 400 0 "a_1077_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 109 820 110 l=100 w=400 "a_n1395_n2537#" "a_819_21#" 200 0 "a_761_109#" 400 0 "a_919_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 109 662 110 l=100 w=400 "a_n1395_n2537#" "a_661_21#" 200 0 "a_603_109#" 400 0 "a_761_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 109 504 110 l=100 w=400 "a_n1395_n2537#" "a_503_21#" 200 0 "a_445_109#" 400 0 "a_603_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 109 346 110 l=100 w=400 "a_n1395_n2537#" "a_345_21#" 200 0 "a_287_109#" 400 0 "a_445_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 109 188 110 l=100 w=400 "a_n1395_n2537#" "a_187_21#" 200 0 "a_129_109#" 400 0 "a_287_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 109 30 110 l=100 w=400 "a_n1395_n2537#" "a_29_21#" 200 0 "a_n29_109#" 400 0 "a_129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 109 -128 110 l=100 w=400 "a_n1395_n2537#" "a_n129_21#" 200 0 "a_n187_109#" 400 0 "a_n29_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 109 -286 110 l=100 w=400 "a_n1395_n2537#" "a_n287_21#" 200 0 "a_n345_109#" 400 0 "a_n187_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 109 -444 110 l=100 w=400 "a_n1395_n2537#" "a_n445_21#" 200 0 "a_n503_109#" 400 0 "a_n345_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 109 -602 110 l=100 w=400 "a_n1395_n2537#" "a_n603_21#" 200 0 "a_n661_109#" 400 0 "a_n503_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 109 -760 110 l=100 w=400 "a_n1395_n2537#" "a_n761_21#" 200 0 "a_n819_109#" 400 0 "a_n661_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 109 -918 110 l=100 w=400 "a_n1395_n2537#" "a_n919_21#" 200 0 "a_n977_109#" 400 0 "a_n819_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 109 -1076 110 l=100 w=400 "a_n1395_n2537#" "a_n1077_21#" 200 0 "a_n1135_109#" 400 0 "a_n977_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 109 -1234 110 l=100 w=400 "a_n1395_n2537#" "a_n1235_21#" 200 0 "a_n1293_109#" 400 0 "a_n1135_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 727 1136 728 l=100 w=400 "a_n1395_n2537#" "a_1135_639#" 200 0 "a_1077_727#" 400 0 "a_1235_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 727 978 728 l=100 w=400 "a_n1395_n2537#" "a_977_639#" 200 0 "a_919_727#" 400 0 "a_1077_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 727 820 728 l=100 w=400 "a_n1395_n2537#" "a_819_639#" 200 0 "a_761_727#" 400 0 "a_919_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 727 662 728 l=100 w=400 "a_n1395_n2537#" "a_661_639#" 200 0 "a_603_727#" 400 0 "a_761_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 727 504 728 l=100 w=400 "a_n1395_n2537#" "a_503_639#" 200 0 "a_445_727#" 400 0 "a_603_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 727 346 728 l=100 w=400 "a_n1395_n2537#" "a_345_639#" 200 0 "a_287_727#" 400 0 "a_445_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 727 188 728 l=100 w=400 "a_n1395_n2537#" "a_187_639#" 200 0 "a_129_727#" 400 0 "a_287_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 727 30 728 l=100 w=400 "a_n1395_n2537#" "a_29_639#" 200 0 "a_n29_727#" 400 0 "a_129_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 727 -128 728 l=100 w=400 "a_n1395_n2537#" "a_n129_639#" 200 0 "a_n187_727#" 400 0 "a_n29_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 727 -286 728 l=100 w=400 "a_n1395_n2537#" "a_n287_639#" 200 0 "a_n345_727#" 400 0 "a_n187_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 727 -444 728 l=100 w=400 "a_n1395_n2537#" "a_n445_639#" 200 0 "a_n503_727#" 400 0 "a_n345_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 727 -602 728 l=100 w=400 "a_n1395_n2537#" "a_n603_639#" 200 0 "a_n661_727#" 400 0 "a_n503_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 727 -760 728 l=100 w=400 "a_n1395_n2537#" "a_n761_639#" 200 0 "a_n819_727#" 400 0 "a_n661_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 727 -918 728 l=100 w=400 "a_n1395_n2537#" "a_n919_639#" 200 0 "a_n977_727#" 400 0 "a_n819_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 727 -1076 728 l=100 w=400 "a_n1395_n2537#" "a_n1077_639#" 200 0 "a_n1135_727#" 400 0 "a_n977_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 727 -1234 728 l=100 w=400 "a_n1395_n2537#" "a_n1235_639#" 200 0 "a_n1293_727#" 400 0 "a_n1135_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 1345 1136 1346 l=100 w=400 "a_n1395_n2537#" "a_1135_1257#" 200 0 "a_1077_1345#" 400 0 "a_1235_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 1345 978 1346 l=100 w=400 "a_n1395_n2537#" "a_977_1257#" 200 0 "a_919_1345#" 400 0 "a_1077_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 1345 820 1346 l=100 w=400 "a_n1395_n2537#" "a_819_1257#" 200 0 "a_761_1345#" 400 0 "a_919_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 1345 662 1346 l=100 w=400 "a_n1395_n2537#" "a_661_1257#" 200 0 "a_603_1345#" 400 0 "a_761_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 1345 504 1346 l=100 w=400 "a_n1395_n2537#" "a_503_1257#" 200 0 "a_445_1345#" 400 0 "a_603_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 1345 346 1346 l=100 w=400 "a_n1395_n2537#" "a_345_1257#" 200 0 "a_287_1345#" 400 0 "a_445_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 1345 188 1346 l=100 w=400 "a_n1395_n2537#" "a_187_1257#" 200 0 "a_129_1345#" 400 0 "a_287_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 1345 30 1346 l=100 w=400 "a_n1395_n2537#" "a_29_1257#" 200 0 "a_n29_1345#" 400 0 "a_129_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 1345 -128 1346 l=100 w=400 "a_n1395_n2537#" "a_n129_1257#" 200 0 "a_n187_1345#" 400 0 "a_n29_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 1345 -286 1346 l=100 w=400 "a_n1395_n2537#" "a_n287_1257#" 200 0 "a_n345_1345#" 400 0 "a_n187_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 1345 -444 1346 l=100 w=400 "a_n1395_n2537#" "a_n445_1257#" 200 0 "a_n503_1345#" 400 0 "a_n345_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 1345 -602 1346 l=100 w=400 "a_n1395_n2537#" "a_n603_1257#" 200 0 "a_n661_1345#" 400 0 "a_n503_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 1345 -760 1346 l=100 w=400 "a_n1395_n2537#" "a_n761_1257#" 200 0 "a_n819_1345#" 400 0 "a_n661_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 1345 -918 1346 l=100 w=400 "a_n1395_n2537#" "a_n919_1257#" 200 0 "a_n977_1345#" 400 0 "a_n819_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 1345 -1076 1346 l=100 w=400 "a_n1395_n2537#" "a_n1077_1257#" 200 0 "a_n1135_1345#" 400 0 "a_n977_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 1345 -1234 1346 l=100 w=400 "a_n1395_n2537#" "a_n1235_1257#" 200 0 "a_n1293_1345#" 400 0 "a_n1135_1345#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1135 1963 1136 1964 l=100 w=400 "a_n1395_n2537#" "a_1135_1875#" 200 0 "a_1077_1963#" 400 0 "a_1235_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 977 1963 978 1964 l=100 w=400 "a_n1395_n2537#" "a_977_1875#" 200 0 "a_919_1963#" 400 0 "a_1077_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 819 1963 820 1964 l=100 w=400 "a_n1395_n2537#" "a_819_1875#" 200 0 "a_761_1963#" 400 0 "a_919_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 661 1963 662 1964 l=100 w=400 "a_n1395_n2537#" "a_661_1875#" 200 0 "a_603_1963#" 400 0 "a_761_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 503 1963 504 1964 l=100 w=400 "a_n1395_n2537#" "a_503_1875#" 200 0 "a_445_1963#" 400 0 "a_603_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 345 1963 346 1964 l=100 w=400 "a_n1395_n2537#" "a_345_1875#" 200 0 "a_287_1963#" 400 0 "a_445_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 187 1963 188 1964 l=100 w=400 "a_n1395_n2537#" "a_187_1875#" 200 0 "a_129_1963#" 400 0 "a_287_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 1963 30 1964 l=100 w=400 "a_n1395_n2537#" "a_29_1875#" 200 0 "a_n29_1963#" 400 0 "a_129_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 1963 -128 1964 l=100 w=400 "a_n1395_n2537#" "a_n129_1875#" 200 0 "a_n187_1963#" 400 0 "a_n29_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -287 1963 -286 1964 l=100 w=400 "a_n1395_n2537#" "a_n287_1875#" 200 0 "a_n345_1963#" 400 0 "a_n187_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -445 1963 -444 1964 l=100 w=400 "a_n1395_n2537#" "a_n445_1875#" 200 0 "a_n503_1963#" 400 0 "a_n345_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -603 1963 -602 1964 l=100 w=400 "a_n1395_n2537#" "a_n603_1875#" 200 0 "a_n661_1963#" 400 0 "a_n503_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -761 1963 -760 1964 l=100 w=400 "a_n1395_n2537#" "a_n761_1875#" 200 0 "a_n819_1963#" 400 0 "a_n661_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -919 1963 -918 1964 l=100 w=400 "a_n1395_n2537#" "a_n919_1875#" 200 0 "a_n977_1963#" 400 0 "a_n819_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1077 1963 -1076 1964 l=100 w=400 "a_n1395_n2537#" "a_n1077_1875#" 200 0 "a_n1135_1963#" 400 0 "a_n977_1963#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1235 1963 -1234 1964 l=100 w=400 "a_n1395_n2537#" "a_n1235_1875#" 200 0 "a_n1293_1963#" 400 0 "a_n1135_1963#" 400 0
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.mag b/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.mag
new file mode 100644
index 0000000..35c1f50
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_A574RZ.mag
@@ -0,0 +1,4874 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -1431 -2573 1431 2573
+<< nmos >>
+rect -1235 1963 -1135 2363
+rect -1077 1963 -977 2363
+rect -919 1963 -819 2363
+rect -761 1963 -661 2363
+rect -603 1963 -503 2363
+rect -445 1963 -345 2363
+rect -287 1963 -187 2363
+rect -129 1963 -29 2363
+rect 29 1963 129 2363
+rect 187 1963 287 2363
+rect 345 1963 445 2363
+rect 503 1963 603 2363
+rect 661 1963 761 2363
+rect 819 1963 919 2363
+rect 977 1963 1077 2363
+rect 1135 1963 1235 2363
+rect -1235 1345 -1135 1745
+rect -1077 1345 -977 1745
+rect -919 1345 -819 1745
+rect -761 1345 -661 1745
+rect -603 1345 -503 1745
+rect -445 1345 -345 1745
+rect -287 1345 -187 1745
+rect -129 1345 -29 1745
+rect 29 1345 129 1745
+rect 187 1345 287 1745
+rect 345 1345 445 1745
+rect 503 1345 603 1745
+rect 661 1345 761 1745
+rect 819 1345 919 1745
+rect 977 1345 1077 1745
+rect 1135 1345 1235 1745
+rect -1235 727 -1135 1127
+rect -1077 727 -977 1127
+rect -919 727 -819 1127
+rect -761 727 -661 1127
+rect -603 727 -503 1127
+rect -445 727 -345 1127
+rect -287 727 -187 1127
+rect -129 727 -29 1127
+rect 29 727 129 1127
+rect 187 727 287 1127
+rect 345 727 445 1127
+rect 503 727 603 1127
+rect 661 727 761 1127
+rect 819 727 919 1127
+rect 977 727 1077 1127
+rect 1135 727 1235 1127
+rect -1235 109 -1135 509
+rect -1077 109 -977 509
+rect -919 109 -819 509
+rect -761 109 -661 509
+rect -603 109 -503 509
+rect -445 109 -345 509
+rect -287 109 -187 509
+rect -129 109 -29 509
+rect 29 109 129 509
+rect 187 109 287 509
+rect 345 109 445 509
+rect 503 109 603 509
+rect 661 109 761 509
+rect 819 109 919 509
+rect 977 109 1077 509
+rect 1135 109 1235 509
+rect -1235 -509 -1135 -109
+rect -1077 -509 -977 -109
+rect -919 -509 -819 -109
+rect -761 -509 -661 -109
+rect -603 -509 -503 -109
+rect -445 -509 -345 -109
+rect -287 -509 -187 -109
+rect -129 -509 -29 -109
+rect 29 -509 129 -109
+rect 187 -509 287 -109
+rect 345 -509 445 -109
+rect 503 -509 603 -109
+rect 661 -509 761 -109
+rect 819 -509 919 -109
+rect 977 -509 1077 -109
+rect 1135 -509 1235 -109
+rect -1235 -1127 -1135 -727
+rect -1077 -1127 -977 -727
+rect -919 -1127 -819 -727
+rect -761 -1127 -661 -727
+rect -603 -1127 -503 -727
+rect -445 -1127 -345 -727
+rect -287 -1127 -187 -727
+rect -129 -1127 -29 -727
+rect 29 -1127 129 -727
+rect 187 -1127 287 -727
+rect 345 -1127 445 -727
+rect 503 -1127 603 -727
+rect 661 -1127 761 -727
+rect 819 -1127 919 -727
+rect 977 -1127 1077 -727
+rect 1135 -1127 1235 -727
+rect -1235 -1745 -1135 -1345
+rect -1077 -1745 -977 -1345
+rect -919 -1745 -819 -1345
+rect -761 -1745 -661 -1345
+rect -603 -1745 -503 -1345
+rect -445 -1745 -345 -1345
+rect -287 -1745 -187 -1345
+rect -129 -1745 -29 -1345
+rect 29 -1745 129 -1345
+rect 187 -1745 287 -1345
+rect 345 -1745 445 -1345
+rect 503 -1745 603 -1345
+rect 661 -1745 761 -1345
+rect 819 -1745 919 -1345
+rect 977 -1745 1077 -1345
+rect 1135 -1745 1235 -1345
+rect -1235 -2363 -1135 -1963
+rect -1077 -2363 -977 -1963
+rect -919 -2363 -819 -1963
+rect -761 -2363 -661 -1963
+rect -603 -2363 -503 -1963
+rect -445 -2363 -345 -1963
+rect -287 -2363 -187 -1963
+rect -129 -2363 -29 -1963
+rect 29 -2363 129 -1963
+rect 187 -2363 287 -1963
+rect 345 -2363 445 -1963
+rect 503 -2363 603 -1963
+rect 661 -2363 761 -1963
+rect 819 -2363 919 -1963
+rect 977 -2363 1077 -1963
+rect 1135 -2363 1235 -1963
+<< ndiff >>
+rect -1293 2351 -1235 2363
+rect -1293 1975 -1281 2351
+rect -1247 1975 -1235 2351
+rect -1293 1963 -1235 1975
+rect -1135 2351 -1077 2363
+rect -1135 1975 -1123 2351
+rect -1089 1975 -1077 2351
+rect -1135 1963 -1077 1975
+rect -977 2351 -919 2363
+rect -977 1975 -965 2351
+rect -931 1975 -919 2351
+rect -977 1963 -919 1975
+rect -819 2351 -761 2363
+rect -819 1975 -807 2351
+rect -773 1975 -761 2351
+rect -819 1963 -761 1975
+rect -661 2351 -603 2363
+rect -661 1975 -649 2351
+rect -615 1975 -603 2351
+rect -661 1963 -603 1975
+rect -503 2351 -445 2363
+rect -503 1975 -491 2351
+rect -457 1975 -445 2351
+rect -503 1963 -445 1975
+rect -345 2351 -287 2363
+rect -345 1975 -333 2351
+rect -299 1975 -287 2351
+rect -345 1963 -287 1975
+rect -187 2351 -129 2363
+rect -187 1975 -175 2351
+rect -141 1975 -129 2351
+rect -187 1963 -129 1975
+rect -29 2351 29 2363
+rect -29 1975 -17 2351
+rect 17 1975 29 2351
+rect -29 1963 29 1975
+rect 129 2351 187 2363
+rect 129 1975 141 2351
+rect 175 1975 187 2351
+rect 129 1963 187 1975
+rect 287 2351 345 2363
+rect 287 1975 299 2351
+rect 333 1975 345 2351
+rect 287 1963 345 1975
+rect 445 2351 503 2363
+rect 445 1975 457 2351
+rect 491 1975 503 2351
+rect 445 1963 503 1975
+rect 603 2351 661 2363
+rect 603 1975 615 2351
+rect 649 1975 661 2351
+rect 603 1963 661 1975
+rect 761 2351 819 2363
+rect 761 1975 773 2351
+rect 807 1975 819 2351
+rect 761 1963 819 1975
+rect 919 2351 977 2363
+rect 919 1975 931 2351
+rect 965 1975 977 2351
+rect 919 1963 977 1975
+rect 1077 2351 1135 2363
+rect 1077 1975 1089 2351
+rect 1123 1975 1135 2351
+rect 1077 1963 1135 1975
+rect 1235 2351 1293 2363
+rect 1235 1975 1247 2351
+rect 1281 1975 1293 2351
+rect 1235 1963 1293 1975
+rect -1293 1733 -1235 1745
+rect -1293 1357 -1281 1733
+rect -1247 1357 -1235 1733
+rect -1293 1345 -1235 1357
+rect -1135 1733 -1077 1745
+rect -1135 1357 -1123 1733
+rect -1089 1357 -1077 1733
+rect -1135 1345 -1077 1357
+rect -977 1733 -919 1745
+rect -977 1357 -965 1733
+rect -931 1357 -919 1733
+rect -977 1345 -919 1357
+rect -819 1733 -761 1745
+rect -819 1357 -807 1733
+rect -773 1357 -761 1733
+rect -819 1345 -761 1357
+rect -661 1733 -603 1745
+rect -661 1357 -649 1733
+rect -615 1357 -603 1733
+rect -661 1345 -603 1357
+rect -503 1733 -445 1745
+rect -503 1357 -491 1733
+rect -457 1357 -445 1733
+rect -503 1345 -445 1357
+rect -345 1733 -287 1745
+rect -345 1357 -333 1733
+rect -299 1357 -287 1733
+rect -345 1345 -287 1357
+rect -187 1733 -129 1745
+rect -187 1357 -175 1733
+rect -141 1357 -129 1733
+rect -187 1345 -129 1357
+rect -29 1733 29 1745
+rect -29 1357 -17 1733
+rect 17 1357 29 1733
+rect -29 1345 29 1357
+rect 129 1733 187 1745
+rect 129 1357 141 1733
+rect 175 1357 187 1733
+rect 129 1345 187 1357
+rect 287 1733 345 1745
+rect 287 1357 299 1733
+rect 333 1357 345 1733
+rect 287 1345 345 1357
+rect 445 1733 503 1745
+rect 445 1357 457 1733
+rect 491 1357 503 1733
+rect 445 1345 503 1357
+rect 603 1733 661 1745
+rect 603 1357 615 1733
+rect 649 1357 661 1733
+rect 603 1345 661 1357
+rect 761 1733 819 1745
+rect 761 1357 773 1733
+rect 807 1357 819 1733
+rect 761 1345 819 1357
+rect 919 1733 977 1745
+rect 919 1357 931 1733
+rect 965 1357 977 1733
+rect 919 1345 977 1357
+rect 1077 1733 1135 1745
+rect 1077 1357 1089 1733
+rect 1123 1357 1135 1733
+rect 1077 1345 1135 1357
+rect 1235 1733 1293 1745
+rect 1235 1357 1247 1733
+rect 1281 1357 1293 1733
+rect 1235 1345 1293 1357
+rect -1293 1115 -1235 1127
+rect -1293 739 -1281 1115
+rect -1247 739 -1235 1115
+rect -1293 727 -1235 739
+rect -1135 1115 -1077 1127
+rect -1135 739 -1123 1115
+rect -1089 739 -1077 1115
+rect -1135 727 -1077 739
+rect -977 1115 -919 1127
+rect -977 739 -965 1115
+rect -931 739 -919 1115
+rect -977 727 -919 739
+rect -819 1115 -761 1127
+rect -819 739 -807 1115
+rect -773 739 -761 1115
+rect -819 727 -761 739
+rect -661 1115 -603 1127
+rect -661 739 -649 1115
+rect -615 739 -603 1115
+rect -661 727 -603 739
+rect -503 1115 -445 1127
+rect -503 739 -491 1115
+rect -457 739 -445 1115
+rect -503 727 -445 739
+rect -345 1115 -287 1127
+rect -345 739 -333 1115
+rect -299 739 -287 1115
+rect -345 727 -287 739
+rect -187 1115 -129 1127
+rect -187 739 -175 1115
+rect -141 739 -129 1115
+rect -187 727 -129 739
+rect -29 1115 29 1127
+rect -29 739 -17 1115
+rect 17 739 29 1115
+rect -29 727 29 739
+rect 129 1115 187 1127
+rect 129 739 141 1115
+rect 175 739 187 1115
+rect 129 727 187 739
+rect 287 1115 345 1127
+rect 287 739 299 1115
+rect 333 739 345 1115
+rect 287 727 345 739
+rect 445 1115 503 1127
+rect 445 739 457 1115
+rect 491 739 503 1115
+rect 445 727 503 739
+rect 603 1115 661 1127
+rect 603 739 615 1115
+rect 649 739 661 1115
+rect 603 727 661 739
+rect 761 1115 819 1127
+rect 761 739 773 1115
+rect 807 739 819 1115
+rect 761 727 819 739
+rect 919 1115 977 1127
+rect 919 739 931 1115
+rect 965 739 977 1115
+rect 919 727 977 739
+rect 1077 1115 1135 1127
+rect 1077 739 1089 1115
+rect 1123 739 1135 1115
+rect 1077 727 1135 739
+rect 1235 1115 1293 1127
+rect 1235 739 1247 1115
+rect 1281 739 1293 1115
+rect 1235 727 1293 739
+rect -1293 497 -1235 509
+rect -1293 121 -1281 497
+rect -1247 121 -1235 497
+rect -1293 109 -1235 121
+rect -1135 497 -1077 509
+rect -1135 121 -1123 497
+rect -1089 121 -1077 497
+rect -1135 109 -1077 121
+rect -977 497 -919 509
+rect -977 121 -965 497
+rect -931 121 -919 497
+rect -977 109 -919 121
+rect -819 497 -761 509
+rect -819 121 -807 497
+rect -773 121 -761 497
+rect -819 109 -761 121
+rect -661 497 -603 509
+rect -661 121 -649 497
+rect -615 121 -603 497
+rect -661 109 -603 121
+rect -503 497 -445 509
+rect -503 121 -491 497
+rect -457 121 -445 497
+rect -503 109 -445 121
+rect -345 497 -287 509
+rect -345 121 -333 497
+rect -299 121 -287 497
+rect -345 109 -287 121
+rect -187 497 -129 509
+rect -187 121 -175 497
+rect -141 121 -129 497
+rect -187 109 -129 121
+rect -29 497 29 509
+rect -29 121 -17 497
+rect 17 121 29 497
+rect -29 109 29 121
+rect 129 497 187 509
+rect 129 121 141 497
+rect 175 121 187 497
+rect 129 109 187 121
+rect 287 497 345 509
+rect 287 121 299 497
+rect 333 121 345 497
+rect 287 109 345 121
+rect 445 497 503 509
+rect 445 121 457 497
+rect 491 121 503 497
+rect 445 109 503 121
+rect 603 497 661 509
+rect 603 121 615 497
+rect 649 121 661 497
+rect 603 109 661 121
+rect 761 497 819 509
+rect 761 121 773 497
+rect 807 121 819 497
+rect 761 109 819 121
+rect 919 497 977 509
+rect 919 121 931 497
+rect 965 121 977 497
+rect 919 109 977 121
+rect 1077 497 1135 509
+rect 1077 121 1089 497
+rect 1123 121 1135 497
+rect 1077 109 1135 121
+rect 1235 497 1293 509
+rect 1235 121 1247 497
+rect 1281 121 1293 497
+rect 1235 109 1293 121
+rect -1293 -121 -1235 -109
+rect -1293 -497 -1281 -121
+rect -1247 -497 -1235 -121
+rect -1293 -509 -1235 -497
+rect -1135 -121 -1077 -109
+rect -1135 -497 -1123 -121
+rect -1089 -497 -1077 -121
+rect -1135 -509 -1077 -497
+rect -977 -121 -919 -109
+rect -977 -497 -965 -121
+rect -931 -497 -919 -121
+rect -977 -509 -919 -497
+rect -819 -121 -761 -109
+rect -819 -497 -807 -121
+rect -773 -497 -761 -121
+rect -819 -509 -761 -497
+rect -661 -121 -603 -109
+rect -661 -497 -649 -121
+rect -615 -497 -603 -121
+rect -661 -509 -603 -497
+rect -503 -121 -445 -109
+rect -503 -497 -491 -121
+rect -457 -497 -445 -121
+rect -503 -509 -445 -497
+rect -345 -121 -287 -109
+rect -345 -497 -333 -121
+rect -299 -497 -287 -121
+rect -345 -509 -287 -497
+rect -187 -121 -129 -109
+rect -187 -497 -175 -121
+rect -141 -497 -129 -121
+rect -187 -509 -129 -497
+rect -29 -121 29 -109
+rect -29 -497 -17 -121
+rect 17 -497 29 -121
+rect -29 -509 29 -497
+rect 129 -121 187 -109
+rect 129 -497 141 -121
+rect 175 -497 187 -121
+rect 129 -509 187 -497
+rect 287 -121 345 -109
+rect 287 -497 299 -121
+rect 333 -497 345 -121
+rect 287 -509 345 -497
+rect 445 -121 503 -109
+rect 445 -497 457 -121
+rect 491 -497 503 -121
+rect 445 -509 503 -497
+rect 603 -121 661 -109
+rect 603 -497 615 -121
+rect 649 -497 661 -121
+rect 603 -509 661 -497
+rect 761 -121 819 -109
+rect 761 -497 773 -121
+rect 807 -497 819 -121
+rect 761 -509 819 -497
+rect 919 -121 977 -109
+rect 919 -497 931 -121
+rect 965 -497 977 -121
+rect 919 -509 977 -497
+rect 1077 -121 1135 -109
+rect 1077 -497 1089 -121
+rect 1123 -497 1135 -121
+rect 1077 -509 1135 -497
+rect 1235 -121 1293 -109
+rect 1235 -497 1247 -121
+rect 1281 -497 1293 -121
+rect 1235 -509 1293 -497
+rect -1293 -739 -1235 -727
+rect -1293 -1115 -1281 -739
+rect -1247 -1115 -1235 -739
+rect -1293 -1127 -1235 -1115
+rect -1135 -739 -1077 -727
+rect -1135 -1115 -1123 -739
+rect -1089 -1115 -1077 -739
+rect -1135 -1127 -1077 -1115
+rect -977 -739 -919 -727
+rect -977 -1115 -965 -739
+rect -931 -1115 -919 -739
+rect -977 -1127 -919 -1115
+rect -819 -739 -761 -727
+rect -819 -1115 -807 -739
+rect -773 -1115 -761 -739
+rect -819 -1127 -761 -1115
+rect -661 -739 -603 -727
+rect -661 -1115 -649 -739
+rect -615 -1115 -603 -739
+rect -661 -1127 -603 -1115
+rect -503 -739 -445 -727
+rect -503 -1115 -491 -739
+rect -457 -1115 -445 -739
+rect -503 -1127 -445 -1115
+rect -345 -739 -287 -727
+rect -345 -1115 -333 -739
+rect -299 -1115 -287 -739
+rect -345 -1127 -287 -1115
+rect -187 -739 -129 -727
+rect -187 -1115 -175 -739
+rect -141 -1115 -129 -739
+rect -187 -1127 -129 -1115
+rect -29 -739 29 -727
+rect -29 -1115 -17 -739
+rect 17 -1115 29 -739
+rect -29 -1127 29 -1115
+rect 129 -739 187 -727
+rect 129 -1115 141 -739
+rect 175 -1115 187 -739
+rect 129 -1127 187 -1115
+rect 287 -739 345 -727
+rect 287 -1115 299 -739
+rect 333 -1115 345 -739
+rect 287 -1127 345 -1115
+rect 445 -739 503 -727
+rect 445 -1115 457 -739
+rect 491 -1115 503 -739
+rect 445 -1127 503 -1115
+rect 603 -739 661 -727
+rect 603 -1115 615 -739
+rect 649 -1115 661 -739
+rect 603 -1127 661 -1115
+rect 761 -739 819 -727
+rect 761 -1115 773 -739
+rect 807 -1115 819 -739
+rect 761 -1127 819 -1115
+rect 919 -739 977 -727
+rect 919 -1115 931 -739
+rect 965 -1115 977 -739
+rect 919 -1127 977 -1115
+rect 1077 -739 1135 -727
+rect 1077 -1115 1089 -739
+rect 1123 -1115 1135 -739
+rect 1077 -1127 1135 -1115
+rect 1235 -739 1293 -727
+rect 1235 -1115 1247 -739
+rect 1281 -1115 1293 -739
+rect 1235 -1127 1293 -1115
+rect -1293 -1357 -1235 -1345
+rect -1293 -1733 -1281 -1357
+rect -1247 -1733 -1235 -1357
+rect -1293 -1745 -1235 -1733
+rect -1135 -1357 -1077 -1345
+rect -1135 -1733 -1123 -1357
+rect -1089 -1733 -1077 -1357
+rect -1135 -1745 -1077 -1733
+rect -977 -1357 -919 -1345
+rect -977 -1733 -965 -1357
+rect -931 -1733 -919 -1357
+rect -977 -1745 -919 -1733
+rect -819 -1357 -761 -1345
+rect -819 -1733 -807 -1357
+rect -773 -1733 -761 -1357
+rect -819 -1745 -761 -1733
+rect -661 -1357 -603 -1345
+rect -661 -1733 -649 -1357
+rect -615 -1733 -603 -1357
+rect -661 -1745 -603 -1733
+rect -503 -1357 -445 -1345
+rect -503 -1733 -491 -1357
+rect -457 -1733 -445 -1357
+rect -503 -1745 -445 -1733
+rect -345 -1357 -287 -1345
+rect -345 -1733 -333 -1357
+rect -299 -1733 -287 -1357
+rect -345 -1745 -287 -1733
+rect -187 -1357 -129 -1345
+rect -187 -1733 -175 -1357
+rect -141 -1733 -129 -1357
+rect -187 -1745 -129 -1733
+rect -29 -1357 29 -1345
+rect -29 -1733 -17 -1357
+rect 17 -1733 29 -1357
+rect -29 -1745 29 -1733
+rect 129 -1357 187 -1345
+rect 129 -1733 141 -1357
+rect 175 -1733 187 -1357
+rect 129 -1745 187 -1733
+rect 287 -1357 345 -1345
+rect 287 -1733 299 -1357
+rect 333 -1733 345 -1357
+rect 287 -1745 345 -1733
+rect 445 -1357 503 -1345
+rect 445 -1733 457 -1357
+rect 491 -1733 503 -1357
+rect 445 -1745 503 -1733
+rect 603 -1357 661 -1345
+rect 603 -1733 615 -1357
+rect 649 -1733 661 -1357
+rect 603 -1745 661 -1733
+rect 761 -1357 819 -1345
+rect 761 -1733 773 -1357
+rect 807 -1733 819 -1357
+rect 761 -1745 819 -1733
+rect 919 -1357 977 -1345
+rect 919 -1733 931 -1357
+rect 965 -1733 977 -1357
+rect 919 -1745 977 -1733
+rect 1077 -1357 1135 -1345
+rect 1077 -1733 1089 -1357
+rect 1123 -1733 1135 -1357
+rect 1077 -1745 1135 -1733
+rect 1235 -1357 1293 -1345
+rect 1235 -1733 1247 -1357
+rect 1281 -1733 1293 -1357
+rect 1235 -1745 1293 -1733
+rect -1293 -1975 -1235 -1963
+rect -1293 -2351 -1281 -1975
+rect -1247 -2351 -1235 -1975
+rect -1293 -2363 -1235 -2351
+rect -1135 -1975 -1077 -1963
+rect -1135 -2351 -1123 -1975
+rect -1089 -2351 -1077 -1975
+rect -1135 -2363 -1077 -2351
+rect -977 -1975 -919 -1963
+rect -977 -2351 -965 -1975
+rect -931 -2351 -919 -1975
+rect -977 -2363 -919 -2351
+rect -819 -1975 -761 -1963
+rect -819 -2351 -807 -1975
+rect -773 -2351 -761 -1975
+rect -819 -2363 -761 -2351
+rect -661 -1975 -603 -1963
+rect -661 -2351 -649 -1975
+rect -615 -2351 -603 -1975
+rect -661 -2363 -603 -2351
+rect -503 -1975 -445 -1963
+rect -503 -2351 -491 -1975
+rect -457 -2351 -445 -1975
+rect -503 -2363 -445 -2351
+rect -345 -1975 -287 -1963
+rect -345 -2351 -333 -1975
+rect -299 -2351 -287 -1975
+rect -345 -2363 -287 -2351
+rect -187 -1975 -129 -1963
+rect -187 -2351 -175 -1975
+rect -141 -2351 -129 -1975
+rect -187 -2363 -129 -2351
+rect -29 -1975 29 -1963
+rect -29 -2351 -17 -1975
+rect 17 -2351 29 -1975
+rect -29 -2363 29 -2351
+rect 129 -1975 187 -1963
+rect 129 -2351 141 -1975
+rect 175 -2351 187 -1975
+rect 129 -2363 187 -2351
+rect 287 -1975 345 -1963
+rect 287 -2351 299 -1975
+rect 333 -2351 345 -1975
+rect 287 -2363 345 -2351
+rect 445 -1975 503 -1963
+rect 445 -2351 457 -1975
+rect 491 -2351 503 -1975
+rect 445 -2363 503 -2351
+rect 603 -1975 661 -1963
+rect 603 -2351 615 -1975
+rect 649 -2351 661 -1975
+rect 603 -2363 661 -2351
+rect 761 -1975 819 -1963
+rect 761 -2351 773 -1975
+rect 807 -2351 819 -1975
+rect 761 -2363 819 -2351
+rect 919 -1975 977 -1963
+rect 919 -2351 931 -1975
+rect 965 -2351 977 -1975
+rect 919 -2363 977 -2351
+rect 1077 -1975 1135 -1963
+rect 1077 -2351 1089 -1975
+rect 1123 -2351 1135 -1975
+rect 1077 -2363 1135 -2351
+rect 1235 -1975 1293 -1963
+rect 1235 -2351 1247 -1975
+rect 1281 -2351 1293 -1975
+rect 1235 -2363 1293 -2351
+<< ndiffc >>
+rect -1281 1975 -1247 2351
+rect -1123 1975 -1089 2351
+rect -965 1975 -931 2351
+rect -807 1975 -773 2351
+rect -649 1975 -615 2351
+rect -491 1975 -457 2351
+rect -333 1975 -299 2351
+rect -175 1975 -141 2351
+rect -17 1975 17 2351
+rect 141 1975 175 2351
+rect 299 1975 333 2351
+rect 457 1975 491 2351
+rect 615 1975 649 2351
+rect 773 1975 807 2351
+rect 931 1975 965 2351
+rect 1089 1975 1123 2351
+rect 1247 1975 1281 2351
+rect -1281 1357 -1247 1733
+rect -1123 1357 -1089 1733
+rect -965 1357 -931 1733
+rect -807 1357 -773 1733
+rect -649 1357 -615 1733
+rect -491 1357 -457 1733
+rect -333 1357 -299 1733
+rect -175 1357 -141 1733
+rect -17 1357 17 1733
+rect 141 1357 175 1733
+rect 299 1357 333 1733
+rect 457 1357 491 1733
+rect 615 1357 649 1733
+rect 773 1357 807 1733
+rect 931 1357 965 1733
+rect 1089 1357 1123 1733
+rect 1247 1357 1281 1733
+rect -1281 739 -1247 1115
+rect -1123 739 -1089 1115
+rect -965 739 -931 1115
+rect -807 739 -773 1115
+rect -649 739 -615 1115
+rect -491 739 -457 1115
+rect -333 739 -299 1115
+rect -175 739 -141 1115
+rect -17 739 17 1115
+rect 141 739 175 1115
+rect 299 739 333 1115
+rect 457 739 491 1115
+rect 615 739 649 1115
+rect 773 739 807 1115
+rect 931 739 965 1115
+rect 1089 739 1123 1115
+rect 1247 739 1281 1115
+rect -1281 121 -1247 497
+rect -1123 121 -1089 497
+rect -965 121 -931 497
+rect -807 121 -773 497
+rect -649 121 -615 497
+rect -491 121 -457 497
+rect -333 121 -299 497
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect 299 121 333 497
+rect 457 121 491 497
+rect 615 121 649 497
+rect 773 121 807 497
+rect 931 121 965 497
+rect 1089 121 1123 497
+rect 1247 121 1281 497
+rect -1281 -497 -1247 -121
+rect -1123 -497 -1089 -121
+rect -965 -497 -931 -121
+rect -807 -497 -773 -121
+rect -649 -497 -615 -121
+rect -491 -497 -457 -121
+rect -333 -497 -299 -121
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+rect 299 -497 333 -121
+rect 457 -497 491 -121
+rect 615 -497 649 -121
+rect 773 -497 807 -121
+rect 931 -497 965 -121
+rect 1089 -497 1123 -121
+rect 1247 -497 1281 -121
+rect -1281 -1115 -1247 -739
+rect -1123 -1115 -1089 -739
+rect -965 -1115 -931 -739
+rect -807 -1115 -773 -739
+rect -649 -1115 -615 -739
+rect -491 -1115 -457 -739
+rect -333 -1115 -299 -739
+rect -175 -1115 -141 -739
+rect -17 -1115 17 -739
+rect 141 -1115 175 -739
+rect 299 -1115 333 -739
+rect 457 -1115 491 -739
+rect 615 -1115 649 -739
+rect 773 -1115 807 -739
+rect 931 -1115 965 -739
+rect 1089 -1115 1123 -739
+rect 1247 -1115 1281 -739
+rect -1281 -1733 -1247 -1357
+rect -1123 -1733 -1089 -1357
+rect -965 -1733 -931 -1357
+rect -807 -1733 -773 -1357
+rect -649 -1733 -615 -1357
+rect -491 -1733 -457 -1357
+rect -333 -1733 -299 -1357
+rect -175 -1733 -141 -1357
+rect -17 -1733 17 -1357
+rect 141 -1733 175 -1357
+rect 299 -1733 333 -1357
+rect 457 -1733 491 -1357
+rect 615 -1733 649 -1357
+rect 773 -1733 807 -1357
+rect 931 -1733 965 -1357
+rect 1089 -1733 1123 -1357
+rect 1247 -1733 1281 -1357
+rect -1281 -2351 -1247 -1975
+rect -1123 -2351 -1089 -1975
+rect -965 -2351 -931 -1975
+rect -807 -2351 -773 -1975
+rect -649 -2351 -615 -1975
+rect -491 -2351 -457 -1975
+rect -333 -2351 -299 -1975
+rect -175 -2351 -141 -1975
+rect -17 -2351 17 -1975
+rect 141 -2351 175 -1975
+rect 299 -2351 333 -1975
+rect 457 -2351 491 -1975
+rect 615 -2351 649 -1975
+rect 773 -2351 807 -1975
+rect 931 -2351 965 -1975
+rect 1089 -2351 1123 -1975
+rect 1247 -2351 1281 -1975
+<< psubdiff >>
+rect -1395 2503 -1299 2537
+rect 1299 2503 1395 2537
+rect -1395 2441 -1361 2503
+rect 1361 2441 1395 2503
+rect -1395 -2503 -1361 -2441
+rect 1361 -2503 1395 -2441
+rect -1395 -2537 -1299 -2503
+rect 1299 -2537 1395 -2503
+<< psubdiffcont >>
+rect -1299 2503 1299 2537
+rect -1395 -2441 -1361 2441
+rect 1361 -2441 1395 2441
+rect -1299 -2537 1299 -2503
+<< poly >>
+rect -1235 2435 -1135 2451
+rect -1235 2401 -1219 2435
+rect -1151 2401 -1135 2435
+rect -1235 2363 -1135 2401
+rect -1077 2435 -977 2451
+rect -1077 2401 -1061 2435
+rect -993 2401 -977 2435
+rect -1077 2363 -977 2401
+rect -919 2435 -819 2451
+rect -919 2401 -903 2435
+rect -835 2401 -819 2435
+rect -919 2363 -819 2401
+rect -761 2435 -661 2451
+rect -761 2401 -745 2435
+rect -677 2401 -661 2435
+rect -761 2363 -661 2401
+rect -603 2435 -503 2451
+rect -603 2401 -587 2435
+rect -519 2401 -503 2435
+rect -603 2363 -503 2401
+rect -445 2435 -345 2451
+rect -445 2401 -429 2435
+rect -361 2401 -345 2435
+rect -445 2363 -345 2401
+rect -287 2435 -187 2451
+rect -287 2401 -271 2435
+rect -203 2401 -187 2435
+rect -287 2363 -187 2401
+rect -129 2435 -29 2451
+rect -129 2401 -113 2435
+rect -45 2401 -29 2435
+rect -129 2363 -29 2401
+rect 29 2435 129 2451
+rect 29 2401 45 2435
+rect 113 2401 129 2435
+rect 29 2363 129 2401
+rect 187 2435 287 2451
+rect 187 2401 203 2435
+rect 271 2401 287 2435
+rect 187 2363 287 2401
+rect 345 2435 445 2451
+rect 345 2401 361 2435
+rect 429 2401 445 2435
+rect 345 2363 445 2401
+rect 503 2435 603 2451
+rect 503 2401 519 2435
+rect 587 2401 603 2435
+rect 503 2363 603 2401
+rect 661 2435 761 2451
+rect 661 2401 677 2435
+rect 745 2401 761 2435
+rect 661 2363 761 2401
+rect 819 2435 919 2451
+rect 819 2401 835 2435
+rect 903 2401 919 2435
+rect 819 2363 919 2401
+rect 977 2435 1077 2451
+rect 977 2401 993 2435
+rect 1061 2401 1077 2435
+rect 977 2363 1077 2401
+rect 1135 2435 1235 2451
+rect 1135 2401 1151 2435
+rect 1219 2401 1235 2435
+rect 1135 2363 1235 2401
+rect -1235 1925 -1135 1963
+rect -1235 1891 -1219 1925
+rect -1151 1891 -1135 1925
+rect -1235 1875 -1135 1891
+rect -1077 1925 -977 1963
+rect -1077 1891 -1061 1925
+rect -993 1891 -977 1925
+rect -1077 1875 -977 1891
+rect -919 1925 -819 1963
+rect -919 1891 -903 1925
+rect -835 1891 -819 1925
+rect -919 1875 -819 1891
+rect -761 1925 -661 1963
+rect -761 1891 -745 1925
+rect -677 1891 -661 1925
+rect -761 1875 -661 1891
+rect -603 1925 -503 1963
+rect -603 1891 -587 1925
+rect -519 1891 -503 1925
+rect -603 1875 -503 1891
+rect -445 1925 -345 1963
+rect -445 1891 -429 1925
+rect -361 1891 -345 1925
+rect -445 1875 -345 1891
+rect -287 1925 -187 1963
+rect -287 1891 -271 1925
+rect -203 1891 -187 1925
+rect -287 1875 -187 1891
+rect -129 1925 -29 1963
+rect -129 1891 -113 1925
+rect -45 1891 -29 1925
+rect -129 1875 -29 1891
+rect 29 1925 129 1963
+rect 29 1891 45 1925
+rect 113 1891 129 1925
+rect 29 1875 129 1891
+rect 187 1925 287 1963
+rect 187 1891 203 1925
+rect 271 1891 287 1925
+rect 187 1875 287 1891
+rect 345 1925 445 1963
+rect 345 1891 361 1925
+rect 429 1891 445 1925
+rect 345 1875 445 1891
+rect 503 1925 603 1963
+rect 503 1891 519 1925
+rect 587 1891 603 1925
+rect 503 1875 603 1891
+rect 661 1925 761 1963
+rect 661 1891 677 1925
+rect 745 1891 761 1925
+rect 661 1875 761 1891
+rect 819 1925 919 1963
+rect 819 1891 835 1925
+rect 903 1891 919 1925
+rect 819 1875 919 1891
+rect 977 1925 1077 1963
+rect 977 1891 993 1925
+rect 1061 1891 1077 1925
+rect 977 1875 1077 1891
+rect 1135 1925 1235 1963
+rect 1135 1891 1151 1925
+rect 1219 1891 1235 1925
+rect 1135 1875 1235 1891
+rect -1235 1817 -1135 1833
+rect -1235 1783 -1219 1817
+rect -1151 1783 -1135 1817
+rect -1235 1745 -1135 1783
+rect -1077 1817 -977 1833
+rect -1077 1783 -1061 1817
+rect -993 1783 -977 1817
+rect -1077 1745 -977 1783
+rect -919 1817 -819 1833
+rect -919 1783 -903 1817
+rect -835 1783 -819 1817
+rect -919 1745 -819 1783
+rect -761 1817 -661 1833
+rect -761 1783 -745 1817
+rect -677 1783 -661 1817
+rect -761 1745 -661 1783
+rect -603 1817 -503 1833
+rect -603 1783 -587 1817
+rect -519 1783 -503 1817
+rect -603 1745 -503 1783
+rect -445 1817 -345 1833
+rect -445 1783 -429 1817
+rect -361 1783 -345 1817
+rect -445 1745 -345 1783
+rect -287 1817 -187 1833
+rect -287 1783 -271 1817
+rect -203 1783 -187 1817
+rect -287 1745 -187 1783
+rect -129 1817 -29 1833
+rect -129 1783 -113 1817
+rect -45 1783 -29 1817
+rect -129 1745 -29 1783
+rect 29 1817 129 1833
+rect 29 1783 45 1817
+rect 113 1783 129 1817
+rect 29 1745 129 1783
+rect 187 1817 287 1833
+rect 187 1783 203 1817
+rect 271 1783 287 1817
+rect 187 1745 287 1783
+rect 345 1817 445 1833
+rect 345 1783 361 1817
+rect 429 1783 445 1817
+rect 345 1745 445 1783
+rect 503 1817 603 1833
+rect 503 1783 519 1817
+rect 587 1783 603 1817
+rect 503 1745 603 1783
+rect 661 1817 761 1833
+rect 661 1783 677 1817
+rect 745 1783 761 1817
+rect 661 1745 761 1783
+rect 819 1817 919 1833
+rect 819 1783 835 1817
+rect 903 1783 919 1817
+rect 819 1745 919 1783
+rect 977 1817 1077 1833
+rect 977 1783 993 1817
+rect 1061 1783 1077 1817
+rect 977 1745 1077 1783
+rect 1135 1817 1235 1833
+rect 1135 1783 1151 1817
+rect 1219 1783 1235 1817
+rect 1135 1745 1235 1783
+rect -1235 1307 -1135 1345
+rect -1235 1273 -1219 1307
+rect -1151 1273 -1135 1307
+rect -1235 1257 -1135 1273
+rect -1077 1307 -977 1345
+rect -1077 1273 -1061 1307
+rect -993 1273 -977 1307
+rect -1077 1257 -977 1273
+rect -919 1307 -819 1345
+rect -919 1273 -903 1307
+rect -835 1273 -819 1307
+rect -919 1257 -819 1273
+rect -761 1307 -661 1345
+rect -761 1273 -745 1307
+rect -677 1273 -661 1307
+rect -761 1257 -661 1273
+rect -603 1307 -503 1345
+rect -603 1273 -587 1307
+rect -519 1273 -503 1307
+rect -603 1257 -503 1273
+rect -445 1307 -345 1345
+rect -445 1273 -429 1307
+rect -361 1273 -345 1307
+rect -445 1257 -345 1273
+rect -287 1307 -187 1345
+rect -287 1273 -271 1307
+rect -203 1273 -187 1307
+rect -287 1257 -187 1273
+rect -129 1307 -29 1345
+rect -129 1273 -113 1307
+rect -45 1273 -29 1307
+rect -129 1257 -29 1273
+rect 29 1307 129 1345
+rect 29 1273 45 1307
+rect 113 1273 129 1307
+rect 29 1257 129 1273
+rect 187 1307 287 1345
+rect 187 1273 203 1307
+rect 271 1273 287 1307
+rect 187 1257 287 1273
+rect 345 1307 445 1345
+rect 345 1273 361 1307
+rect 429 1273 445 1307
+rect 345 1257 445 1273
+rect 503 1307 603 1345
+rect 503 1273 519 1307
+rect 587 1273 603 1307
+rect 503 1257 603 1273
+rect 661 1307 761 1345
+rect 661 1273 677 1307
+rect 745 1273 761 1307
+rect 661 1257 761 1273
+rect 819 1307 919 1345
+rect 819 1273 835 1307
+rect 903 1273 919 1307
+rect 819 1257 919 1273
+rect 977 1307 1077 1345
+rect 977 1273 993 1307
+rect 1061 1273 1077 1307
+rect 977 1257 1077 1273
+rect 1135 1307 1235 1345
+rect 1135 1273 1151 1307
+rect 1219 1273 1235 1307
+rect 1135 1257 1235 1273
+rect -1235 1199 -1135 1215
+rect -1235 1165 -1219 1199
+rect -1151 1165 -1135 1199
+rect -1235 1127 -1135 1165
+rect -1077 1199 -977 1215
+rect -1077 1165 -1061 1199
+rect -993 1165 -977 1199
+rect -1077 1127 -977 1165
+rect -919 1199 -819 1215
+rect -919 1165 -903 1199
+rect -835 1165 -819 1199
+rect -919 1127 -819 1165
+rect -761 1199 -661 1215
+rect -761 1165 -745 1199
+rect -677 1165 -661 1199
+rect -761 1127 -661 1165
+rect -603 1199 -503 1215
+rect -603 1165 -587 1199
+rect -519 1165 -503 1199
+rect -603 1127 -503 1165
+rect -445 1199 -345 1215
+rect -445 1165 -429 1199
+rect -361 1165 -345 1199
+rect -445 1127 -345 1165
+rect -287 1199 -187 1215
+rect -287 1165 -271 1199
+rect -203 1165 -187 1199
+rect -287 1127 -187 1165
+rect -129 1199 -29 1215
+rect -129 1165 -113 1199
+rect -45 1165 -29 1199
+rect -129 1127 -29 1165
+rect 29 1199 129 1215
+rect 29 1165 45 1199
+rect 113 1165 129 1199
+rect 29 1127 129 1165
+rect 187 1199 287 1215
+rect 187 1165 203 1199
+rect 271 1165 287 1199
+rect 187 1127 287 1165
+rect 345 1199 445 1215
+rect 345 1165 361 1199
+rect 429 1165 445 1199
+rect 345 1127 445 1165
+rect 503 1199 603 1215
+rect 503 1165 519 1199
+rect 587 1165 603 1199
+rect 503 1127 603 1165
+rect 661 1199 761 1215
+rect 661 1165 677 1199
+rect 745 1165 761 1199
+rect 661 1127 761 1165
+rect 819 1199 919 1215
+rect 819 1165 835 1199
+rect 903 1165 919 1199
+rect 819 1127 919 1165
+rect 977 1199 1077 1215
+rect 977 1165 993 1199
+rect 1061 1165 1077 1199
+rect 977 1127 1077 1165
+rect 1135 1199 1235 1215
+rect 1135 1165 1151 1199
+rect 1219 1165 1235 1199
+rect 1135 1127 1235 1165
+rect -1235 689 -1135 727
+rect -1235 655 -1219 689
+rect -1151 655 -1135 689
+rect -1235 639 -1135 655
+rect -1077 689 -977 727
+rect -1077 655 -1061 689
+rect -993 655 -977 689
+rect -1077 639 -977 655
+rect -919 689 -819 727
+rect -919 655 -903 689
+rect -835 655 -819 689
+rect -919 639 -819 655
+rect -761 689 -661 727
+rect -761 655 -745 689
+rect -677 655 -661 689
+rect -761 639 -661 655
+rect -603 689 -503 727
+rect -603 655 -587 689
+rect -519 655 -503 689
+rect -603 639 -503 655
+rect -445 689 -345 727
+rect -445 655 -429 689
+rect -361 655 -345 689
+rect -445 639 -345 655
+rect -287 689 -187 727
+rect -287 655 -271 689
+rect -203 655 -187 689
+rect -287 639 -187 655
+rect -129 689 -29 727
+rect -129 655 -113 689
+rect -45 655 -29 689
+rect -129 639 -29 655
+rect 29 689 129 727
+rect 29 655 45 689
+rect 113 655 129 689
+rect 29 639 129 655
+rect 187 689 287 727
+rect 187 655 203 689
+rect 271 655 287 689
+rect 187 639 287 655
+rect 345 689 445 727
+rect 345 655 361 689
+rect 429 655 445 689
+rect 345 639 445 655
+rect 503 689 603 727
+rect 503 655 519 689
+rect 587 655 603 689
+rect 503 639 603 655
+rect 661 689 761 727
+rect 661 655 677 689
+rect 745 655 761 689
+rect 661 639 761 655
+rect 819 689 919 727
+rect 819 655 835 689
+rect 903 655 919 689
+rect 819 639 919 655
+rect 977 689 1077 727
+rect 977 655 993 689
+rect 1061 655 1077 689
+rect 977 639 1077 655
+rect 1135 689 1235 727
+rect 1135 655 1151 689
+rect 1219 655 1235 689
+rect 1135 639 1235 655
+rect -1235 581 -1135 597
+rect -1235 547 -1219 581
+rect -1151 547 -1135 581
+rect -1235 509 -1135 547
+rect -1077 581 -977 597
+rect -1077 547 -1061 581
+rect -993 547 -977 581
+rect -1077 509 -977 547
+rect -919 581 -819 597
+rect -919 547 -903 581
+rect -835 547 -819 581
+rect -919 509 -819 547
+rect -761 581 -661 597
+rect -761 547 -745 581
+rect -677 547 -661 581
+rect -761 509 -661 547
+rect -603 581 -503 597
+rect -603 547 -587 581
+rect -519 547 -503 581
+rect -603 509 -503 547
+rect -445 581 -345 597
+rect -445 547 -429 581
+rect -361 547 -345 581
+rect -445 509 -345 547
+rect -287 581 -187 597
+rect -287 547 -271 581
+rect -203 547 -187 581
+rect -287 509 -187 547
+rect -129 581 -29 597
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect -129 509 -29 547
+rect 29 581 129 597
+rect 29 547 45 581
+rect 113 547 129 581
+rect 29 509 129 547
+rect 187 581 287 597
+rect 187 547 203 581
+rect 271 547 287 581
+rect 187 509 287 547
+rect 345 581 445 597
+rect 345 547 361 581
+rect 429 547 445 581
+rect 345 509 445 547
+rect 503 581 603 597
+rect 503 547 519 581
+rect 587 547 603 581
+rect 503 509 603 547
+rect 661 581 761 597
+rect 661 547 677 581
+rect 745 547 761 581
+rect 661 509 761 547
+rect 819 581 919 597
+rect 819 547 835 581
+rect 903 547 919 581
+rect 819 509 919 547
+rect 977 581 1077 597
+rect 977 547 993 581
+rect 1061 547 1077 581
+rect 977 509 1077 547
+rect 1135 581 1235 597
+rect 1135 547 1151 581
+rect 1219 547 1235 581
+rect 1135 509 1235 547
+rect -1235 71 -1135 109
+rect -1235 37 -1219 71
+rect -1151 37 -1135 71
+rect -1235 21 -1135 37
+rect -1077 71 -977 109
+rect -1077 37 -1061 71
+rect -993 37 -977 71
+rect -1077 21 -977 37
+rect -919 71 -819 109
+rect -919 37 -903 71
+rect -835 37 -819 71
+rect -919 21 -819 37
+rect -761 71 -661 109
+rect -761 37 -745 71
+rect -677 37 -661 71
+rect -761 21 -661 37
+rect -603 71 -503 109
+rect -603 37 -587 71
+rect -519 37 -503 71
+rect -603 21 -503 37
+rect -445 71 -345 109
+rect -445 37 -429 71
+rect -361 37 -345 71
+rect -445 21 -345 37
+rect -287 71 -187 109
+rect -287 37 -271 71
+rect -203 37 -187 71
+rect -287 21 -187 37
+rect -129 71 -29 109
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect -129 21 -29 37
+rect 29 71 129 109
+rect 29 37 45 71
+rect 113 37 129 71
+rect 29 21 129 37
+rect 187 71 287 109
+rect 187 37 203 71
+rect 271 37 287 71
+rect 187 21 287 37
+rect 345 71 445 109
+rect 345 37 361 71
+rect 429 37 445 71
+rect 345 21 445 37
+rect 503 71 603 109
+rect 503 37 519 71
+rect 587 37 603 71
+rect 503 21 603 37
+rect 661 71 761 109
+rect 661 37 677 71
+rect 745 37 761 71
+rect 661 21 761 37
+rect 819 71 919 109
+rect 819 37 835 71
+rect 903 37 919 71
+rect 819 21 919 37
+rect 977 71 1077 109
+rect 977 37 993 71
+rect 1061 37 1077 71
+rect 977 21 1077 37
+rect 1135 71 1235 109
+rect 1135 37 1151 71
+rect 1219 37 1235 71
+rect 1135 21 1235 37
+rect -1235 -37 -1135 -21
+rect -1235 -71 -1219 -37
+rect -1151 -71 -1135 -37
+rect -1235 -109 -1135 -71
+rect -1077 -37 -977 -21
+rect -1077 -71 -1061 -37
+rect -993 -71 -977 -37
+rect -1077 -109 -977 -71
+rect -919 -37 -819 -21
+rect -919 -71 -903 -37
+rect -835 -71 -819 -37
+rect -919 -109 -819 -71
+rect -761 -37 -661 -21
+rect -761 -71 -745 -37
+rect -677 -71 -661 -37
+rect -761 -109 -661 -71
+rect -603 -37 -503 -21
+rect -603 -71 -587 -37
+rect -519 -71 -503 -37
+rect -603 -109 -503 -71
+rect -445 -37 -345 -21
+rect -445 -71 -429 -37
+rect -361 -71 -345 -37
+rect -445 -109 -345 -71
+rect -287 -37 -187 -21
+rect -287 -71 -271 -37
+rect -203 -71 -187 -37
+rect -287 -109 -187 -71
+rect -129 -37 -29 -21
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect -129 -109 -29 -71
+rect 29 -37 129 -21
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect 29 -109 129 -71
+rect 187 -37 287 -21
+rect 187 -71 203 -37
+rect 271 -71 287 -37
+rect 187 -109 287 -71
+rect 345 -37 445 -21
+rect 345 -71 361 -37
+rect 429 -71 445 -37
+rect 345 -109 445 -71
+rect 503 -37 603 -21
+rect 503 -71 519 -37
+rect 587 -71 603 -37
+rect 503 -109 603 -71
+rect 661 -37 761 -21
+rect 661 -71 677 -37
+rect 745 -71 761 -37
+rect 661 -109 761 -71
+rect 819 -37 919 -21
+rect 819 -71 835 -37
+rect 903 -71 919 -37
+rect 819 -109 919 -71
+rect 977 -37 1077 -21
+rect 977 -71 993 -37
+rect 1061 -71 1077 -37
+rect 977 -109 1077 -71
+rect 1135 -37 1235 -21
+rect 1135 -71 1151 -37
+rect 1219 -71 1235 -37
+rect 1135 -109 1235 -71
+rect -1235 -547 -1135 -509
+rect -1235 -581 -1219 -547
+rect -1151 -581 -1135 -547
+rect -1235 -597 -1135 -581
+rect -1077 -547 -977 -509
+rect -1077 -581 -1061 -547
+rect -993 -581 -977 -547
+rect -1077 -597 -977 -581
+rect -919 -547 -819 -509
+rect -919 -581 -903 -547
+rect -835 -581 -819 -547
+rect -919 -597 -819 -581
+rect -761 -547 -661 -509
+rect -761 -581 -745 -547
+rect -677 -581 -661 -547
+rect -761 -597 -661 -581
+rect -603 -547 -503 -509
+rect -603 -581 -587 -547
+rect -519 -581 -503 -547
+rect -603 -597 -503 -581
+rect -445 -547 -345 -509
+rect -445 -581 -429 -547
+rect -361 -581 -345 -547
+rect -445 -597 -345 -581
+rect -287 -547 -187 -509
+rect -287 -581 -271 -547
+rect -203 -581 -187 -547
+rect -287 -597 -187 -581
+rect -129 -547 -29 -509
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect -129 -597 -29 -581
+rect 29 -547 129 -509
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect 29 -597 129 -581
+rect 187 -547 287 -509
+rect 187 -581 203 -547
+rect 271 -581 287 -547
+rect 187 -597 287 -581
+rect 345 -547 445 -509
+rect 345 -581 361 -547
+rect 429 -581 445 -547
+rect 345 -597 445 -581
+rect 503 -547 603 -509
+rect 503 -581 519 -547
+rect 587 -581 603 -547
+rect 503 -597 603 -581
+rect 661 -547 761 -509
+rect 661 -581 677 -547
+rect 745 -581 761 -547
+rect 661 -597 761 -581
+rect 819 -547 919 -509
+rect 819 -581 835 -547
+rect 903 -581 919 -547
+rect 819 -597 919 -581
+rect 977 -547 1077 -509
+rect 977 -581 993 -547
+rect 1061 -581 1077 -547
+rect 977 -597 1077 -581
+rect 1135 -547 1235 -509
+rect 1135 -581 1151 -547
+rect 1219 -581 1235 -547
+rect 1135 -597 1235 -581
+rect -1235 -655 -1135 -639
+rect -1235 -689 -1219 -655
+rect -1151 -689 -1135 -655
+rect -1235 -727 -1135 -689
+rect -1077 -655 -977 -639
+rect -1077 -689 -1061 -655
+rect -993 -689 -977 -655
+rect -1077 -727 -977 -689
+rect -919 -655 -819 -639
+rect -919 -689 -903 -655
+rect -835 -689 -819 -655
+rect -919 -727 -819 -689
+rect -761 -655 -661 -639
+rect -761 -689 -745 -655
+rect -677 -689 -661 -655
+rect -761 -727 -661 -689
+rect -603 -655 -503 -639
+rect -603 -689 -587 -655
+rect -519 -689 -503 -655
+rect -603 -727 -503 -689
+rect -445 -655 -345 -639
+rect -445 -689 -429 -655
+rect -361 -689 -345 -655
+rect -445 -727 -345 -689
+rect -287 -655 -187 -639
+rect -287 -689 -271 -655
+rect -203 -689 -187 -655
+rect -287 -727 -187 -689
+rect -129 -655 -29 -639
+rect -129 -689 -113 -655
+rect -45 -689 -29 -655
+rect -129 -727 -29 -689
+rect 29 -655 129 -639
+rect 29 -689 45 -655
+rect 113 -689 129 -655
+rect 29 -727 129 -689
+rect 187 -655 287 -639
+rect 187 -689 203 -655
+rect 271 -689 287 -655
+rect 187 -727 287 -689
+rect 345 -655 445 -639
+rect 345 -689 361 -655
+rect 429 -689 445 -655
+rect 345 -727 445 -689
+rect 503 -655 603 -639
+rect 503 -689 519 -655
+rect 587 -689 603 -655
+rect 503 -727 603 -689
+rect 661 -655 761 -639
+rect 661 -689 677 -655
+rect 745 -689 761 -655
+rect 661 -727 761 -689
+rect 819 -655 919 -639
+rect 819 -689 835 -655
+rect 903 -689 919 -655
+rect 819 -727 919 -689
+rect 977 -655 1077 -639
+rect 977 -689 993 -655
+rect 1061 -689 1077 -655
+rect 977 -727 1077 -689
+rect 1135 -655 1235 -639
+rect 1135 -689 1151 -655
+rect 1219 -689 1235 -655
+rect 1135 -727 1235 -689
+rect -1235 -1165 -1135 -1127
+rect -1235 -1199 -1219 -1165
+rect -1151 -1199 -1135 -1165
+rect -1235 -1215 -1135 -1199
+rect -1077 -1165 -977 -1127
+rect -1077 -1199 -1061 -1165
+rect -993 -1199 -977 -1165
+rect -1077 -1215 -977 -1199
+rect -919 -1165 -819 -1127
+rect -919 -1199 -903 -1165
+rect -835 -1199 -819 -1165
+rect -919 -1215 -819 -1199
+rect -761 -1165 -661 -1127
+rect -761 -1199 -745 -1165
+rect -677 -1199 -661 -1165
+rect -761 -1215 -661 -1199
+rect -603 -1165 -503 -1127
+rect -603 -1199 -587 -1165
+rect -519 -1199 -503 -1165
+rect -603 -1215 -503 -1199
+rect -445 -1165 -345 -1127
+rect -445 -1199 -429 -1165
+rect -361 -1199 -345 -1165
+rect -445 -1215 -345 -1199
+rect -287 -1165 -187 -1127
+rect -287 -1199 -271 -1165
+rect -203 -1199 -187 -1165
+rect -287 -1215 -187 -1199
+rect -129 -1165 -29 -1127
+rect -129 -1199 -113 -1165
+rect -45 -1199 -29 -1165
+rect -129 -1215 -29 -1199
+rect 29 -1165 129 -1127
+rect 29 -1199 45 -1165
+rect 113 -1199 129 -1165
+rect 29 -1215 129 -1199
+rect 187 -1165 287 -1127
+rect 187 -1199 203 -1165
+rect 271 -1199 287 -1165
+rect 187 -1215 287 -1199
+rect 345 -1165 445 -1127
+rect 345 -1199 361 -1165
+rect 429 -1199 445 -1165
+rect 345 -1215 445 -1199
+rect 503 -1165 603 -1127
+rect 503 -1199 519 -1165
+rect 587 -1199 603 -1165
+rect 503 -1215 603 -1199
+rect 661 -1165 761 -1127
+rect 661 -1199 677 -1165
+rect 745 -1199 761 -1165
+rect 661 -1215 761 -1199
+rect 819 -1165 919 -1127
+rect 819 -1199 835 -1165
+rect 903 -1199 919 -1165
+rect 819 -1215 919 -1199
+rect 977 -1165 1077 -1127
+rect 977 -1199 993 -1165
+rect 1061 -1199 1077 -1165
+rect 977 -1215 1077 -1199
+rect 1135 -1165 1235 -1127
+rect 1135 -1199 1151 -1165
+rect 1219 -1199 1235 -1165
+rect 1135 -1215 1235 -1199
+rect -1235 -1273 -1135 -1257
+rect -1235 -1307 -1219 -1273
+rect -1151 -1307 -1135 -1273
+rect -1235 -1345 -1135 -1307
+rect -1077 -1273 -977 -1257
+rect -1077 -1307 -1061 -1273
+rect -993 -1307 -977 -1273
+rect -1077 -1345 -977 -1307
+rect -919 -1273 -819 -1257
+rect -919 -1307 -903 -1273
+rect -835 -1307 -819 -1273
+rect -919 -1345 -819 -1307
+rect -761 -1273 -661 -1257
+rect -761 -1307 -745 -1273
+rect -677 -1307 -661 -1273
+rect -761 -1345 -661 -1307
+rect -603 -1273 -503 -1257
+rect -603 -1307 -587 -1273
+rect -519 -1307 -503 -1273
+rect -603 -1345 -503 -1307
+rect -445 -1273 -345 -1257
+rect -445 -1307 -429 -1273
+rect -361 -1307 -345 -1273
+rect -445 -1345 -345 -1307
+rect -287 -1273 -187 -1257
+rect -287 -1307 -271 -1273
+rect -203 -1307 -187 -1273
+rect -287 -1345 -187 -1307
+rect -129 -1273 -29 -1257
+rect -129 -1307 -113 -1273
+rect -45 -1307 -29 -1273
+rect -129 -1345 -29 -1307
+rect 29 -1273 129 -1257
+rect 29 -1307 45 -1273
+rect 113 -1307 129 -1273
+rect 29 -1345 129 -1307
+rect 187 -1273 287 -1257
+rect 187 -1307 203 -1273
+rect 271 -1307 287 -1273
+rect 187 -1345 287 -1307
+rect 345 -1273 445 -1257
+rect 345 -1307 361 -1273
+rect 429 -1307 445 -1273
+rect 345 -1345 445 -1307
+rect 503 -1273 603 -1257
+rect 503 -1307 519 -1273
+rect 587 -1307 603 -1273
+rect 503 -1345 603 -1307
+rect 661 -1273 761 -1257
+rect 661 -1307 677 -1273
+rect 745 -1307 761 -1273
+rect 661 -1345 761 -1307
+rect 819 -1273 919 -1257
+rect 819 -1307 835 -1273
+rect 903 -1307 919 -1273
+rect 819 -1345 919 -1307
+rect 977 -1273 1077 -1257
+rect 977 -1307 993 -1273
+rect 1061 -1307 1077 -1273
+rect 977 -1345 1077 -1307
+rect 1135 -1273 1235 -1257
+rect 1135 -1307 1151 -1273
+rect 1219 -1307 1235 -1273
+rect 1135 -1345 1235 -1307
+rect -1235 -1783 -1135 -1745
+rect -1235 -1817 -1219 -1783
+rect -1151 -1817 -1135 -1783
+rect -1235 -1833 -1135 -1817
+rect -1077 -1783 -977 -1745
+rect -1077 -1817 -1061 -1783
+rect -993 -1817 -977 -1783
+rect -1077 -1833 -977 -1817
+rect -919 -1783 -819 -1745
+rect -919 -1817 -903 -1783
+rect -835 -1817 -819 -1783
+rect -919 -1833 -819 -1817
+rect -761 -1783 -661 -1745
+rect -761 -1817 -745 -1783
+rect -677 -1817 -661 -1783
+rect -761 -1833 -661 -1817
+rect -603 -1783 -503 -1745
+rect -603 -1817 -587 -1783
+rect -519 -1817 -503 -1783
+rect -603 -1833 -503 -1817
+rect -445 -1783 -345 -1745
+rect -445 -1817 -429 -1783
+rect -361 -1817 -345 -1783
+rect -445 -1833 -345 -1817
+rect -287 -1783 -187 -1745
+rect -287 -1817 -271 -1783
+rect -203 -1817 -187 -1783
+rect -287 -1833 -187 -1817
+rect -129 -1783 -29 -1745
+rect -129 -1817 -113 -1783
+rect -45 -1817 -29 -1783
+rect -129 -1833 -29 -1817
+rect 29 -1783 129 -1745
+rect 29 -1817 45 -1783
+rect 113 -1817 129 -1783
+rect 29 -1833 129 -1817
+rect 187 -1783 287 -1745
+rect 187 -1817 203 -1783
+rect 271 -1817 287 -1783
+rect 187 -1833 287 -1817
+rect 345 -1783 445 -1745
+rect 345 -1817 361 -1783
+rect 429 -1817 445 -1783
+rect 345 -1833 445 -1817
+rect 503 -1783 603 -1745
+rect 503 -1817 519 -1783
+rect 587 -1817 603 -1783
+rect 503 -1833 603 -1817
+rect 661 -1783 761 -1745
+rect 661 -1817 677 -1783
+rect 745 -1817 761 -1783
+rect 661 -1833 761 -1817
+rect 819 -1783 919 -1745
+rect 819 -1817 835 -1783
+rect 903 -1817 919 -1783
+rect 819 -1833 919 -1817
+rect 977 -1783 1077 -1745
+rect 977 -1817 993 -1783
+rect 1061 -1817 1077 -1783
+rect 977 -1833 1077 -1817
+rect 1135 -1783 1235 -1745
+rect 1135 -1817 1151 -1783
+rect 1219 -1817 1235 -1783
+rect 1135 -1833 1235 -1817
+rect -1235 -1891 -1135 -1875
+rect -1235 -1925 -1219 -1891
+rect -1151 -1925 -1135 -1891
+rect -1235 -1963 -1135 -1925
+rect -1077 -1891 -977 -1875
+rect -1077 -1925 -1061 -1891
+rect -993 -1925 -977 -1891
+rect -1077 -1963 -977 -1925
+rect -919 -1891 -819 -1875
+rect -919 -1925 -903 -1891
+rect -835 -1925 -819 -1891
+rect -919 -1963 -819 -1925
+rect -761 -1891 -661 -1875
+rect -761 -1925 -745 -1891
+rect -677 -1925 -661 -1891
+rect -761 -1963 -661 -1925
+rect -603 -1891 -503 -1875
+rect -603 -1925 -587 -1891
+rect -519 -1925 -503 -1891
+rect -603 -1963 -503 -1925
+rect -445 -1891 -345 -1875
+rect -445 -1925 -429 -1891
+rect -361 -1925 -345 -1891
+rect -445 -1963 -345 -1925
+rect -287 -1891 -187 -1875
+rect -287 -1925 -271 -1891
+rect -203 -1925 -187 -1891
+rect -287 -1963 -187 -1925
+rect -129 -1891 -29 -1875
+rect -129 -1925 -113 -1891
+rect -45 -1925 -29 -1891
+rect -129 -1963 -29 -1925
+rect 29 -1891 129 -1875
+rect 29 -1925 45 -1891
+rect 113 -1925 129 -1891
+rect 29 -1963 129 -1925
+rect 187 -1891 287 -1875
+rect 187 -1925 203 -1891
+rect 271 -1925 287 -1891
+rect 187 -1963 287 -1925
+rect 345 -1891 445 -1875
+rect 345 -1925 361 -1891
+rect 429 -1925 445 -1891
+rect 345 -1963 445 -1925
+rect 503 -1891 603 -1875
+rect 503 -1925 519 -1891
+rect 587 -1925 603 -1891
+rect 503 -1963 603 -1925
+rect 661 -1891 761 -1875
+rect 661 -1925 677 -1891
+rect 745 -1925 761 -1891
+rect 661 -1963 761 -1925
+rect 819 -1891 919 -1875
+rect 819 -1925 835 -1891
+rect 903 -1925 919 -1891
+rect 819 -1963 919 -1925
+rect 977 -1891 1077 -1875
+rect 977 -1925 993 -1891
+rect 1061 -1925 1077 -1891
+rect 977 -1963 1077 -1925
+rect 1135 -1891 1235 -1875
+rect 1135 -1925 1151 -1891
+rect 1219 -1925 1235 -1891
+rect 1135 -1963 1235 -1925
+rect -1235 -2401 -1135 -2363
+rect -1235 -2435 -1219 -2401
+rect -1151 -2435 -1135 -2401
+rect -1235 -2451 -1135 -2435
+rect -1077 -2401 -977 -2363
+rect -1077 -2435 -1061 -2401
+rect -993 -2435 -977 -2401
+rect -1077 -2451 -977 -2435
+rect -919 -2401 -819 -2363
+rect -919 -2435 -903 -2401
+rect -835 -2435 -819 -2401
+rect -919 -2451 -819 -2435
+rect -761 -2401 -661 -2363
+rect -761 -2435 -745 -2401
+rect -677 -2435 -661 -2401
+rect -761 -2451 -661 -2435
+rect -603 -2401 -503 -2363
+rect -603 -2435 -587 -2401
+rect -519 -2435 -503 -2401
+rect -603 -2451 -503 -2435
+rect -445 -2401 -345 -2363
+rect -445 -2435 -429 -2401
+rect -361 -2435 -345 -2401
+rect -445 -2451 -345 -2435
+rect -287 -2401 -187 -2363
+rect -287 -2435 -271 -2401
+rect -203 -2435 -187 -2401
+rect -287 -2451 -187 -2435
+rect -129 -2401 -29 -2363
+rect -129 -2435 -113 -2401
+rect -45 -2435 -29 -2401
+rect -129 -2451 -29 -2435
+rect 29 -2401 129 -2363
+rect 29 -2435 45 -2401
+rect 113 -2435 129 -2401
+rect 29 -2451 129 -2435
+rect 187 -2401 287 -2363
+rect 187 -2435 203 -2401
+rect 271 -2435 287 -2401
+rect 187 -2451 287 -2435
+rect 345 -2401 445 -2363
+rect 345 -2435 361 -2401
+rect 429 -2435 445 -2401
+rect 345 -2451 445 -2435
+rect 503 -2401 603 -2363
+rect 503 -2435 519 -2401
+rect 587 -2435 603 -2401
+rect 503 -2451 603 -2435
+rect 661 -2401 761 -2363
+rect 661 -2435 677 -2401
+rect 745 -2435 761 -2401
+rect 661 -2451 761 -2435
+rect 819 -2401 919 -2363
+rect 819 -2435 835 -2401
+rect 903 -2435 919 -2401
+rect 819 -2451 919 -2435
+rect 977 -2401 1077 -2363
+rect 977 -2435 993 -2401
+rect 1061 -2435 1077 -2401
+rect 977 -2451 1077 -2435
+rect 1135 -2401 1235 -2363
+rect 1135 -2435 1151 -2401
+rect 1219 -2435 1235 -2401
+rect 1135 -2451 1235 -2435
+<< polycont >>
+rect -1219 2401 -1151 2435
+rect -1061 2401 -993 2435
+rect -903 2401 -835 2435
+rect -745 2401 -677 2435
+rect -587 2401 -519 2435
+rect -429 2401 -361 2435
+rect -271 2401 -203 2435
+rect -113 2401 -45 2435
+rect 45 2401 113 2435
+rect 203 2401 271 2435
+rect 361 2401 429 2435
+rect 519 2401 587 2435
+rect 677 2401 745 2435
+rect 835 2401 903 2435
+rect 993 2401 1061 2435
+rect 1151 2401 1219 2435
+rect -1219 1891 -1151 1925
+rect -1061 1891 -993 1925
+rect -903 1891 -835 1925
+rect -745 1891 -677 1925
+rect -587 1891 -519 1925
+rect -429 1891 -361 1925
+rect -271 1891 -203 1925
+rect -113 1891 -45 1925
+rect 45 1891 113 1925
+rect 203 1891 271 1925
+rect 361 1891 429 1925
+rect 519 1891 587 1925
+rect 677 1891 745 1925
+rect 835 1891 903 1925
+rect 993 1891 1061 1925
+rect 1151 1891 1219 1925
+rect -1219 1783 -1151 1817
+rect -1061 1783 -993 1817
+rect -903 1783 -835 1817
+rect -745 1783 -677 1817
+rect -587 1783 -519 1817
+rect -429 1783 -361 1817
+rect -271 1783 -203 1817
+rect -113 1783 -45 1817
+rect 45 1783 113 1817
+rect 203 1783 271 1817
+rect 361 1783 429 1817
+rect 519 1783 587 1817
+rect 677 1783 745 1817
+rect 835 1783 903 1817
+rect 993 1783 1061 1817
+rect 1151 1783 1219 1817
+rect -1219 1273 -1151 1307
+rect -1061 1273 -993 1307
+rect -903 1273 -835 1307
+rect -745 1273 -677 1307
+rect -587 1273 -519 1307
+rect -429 1273 -361 1307
+rect -271 1273 -203 1307
+rect -113 1273 -45 1307
+rect 45 1273 113 1307
+rect 203 1273 271 1307
+rect 361 1273 429 1307
+rect 519 1273 587 1307
+rect 677 1273 745 1307
+rect 835 1273 903 1307
+rect 993 1273 1061 1307
+rect 1151 1273 1219 1307
+rect -1219 1165 -1151 1199
+rect -1061 1165 -993 1199
+rect -903 1165 -835 1199
+rect -745 1165 -677 1199
+rect -587 1165 -519 1199
+rect -429 1165 -361 1199
+rect -271 1165 -203 1199
+rect -113 1165 -45 1199
+rect 45 1165 113 1199
+rect 203 1165 271 1199
+rect 361 1165 429 1199
+rect 519 1165 587 1199
+rect 677 1165 745 1199
+rect 835 1165 903 1199
+rect 993 1165 1061 1199
+rect 1151 1165 1219 1199
+rect -1219 655 -1151 689
+rect -1061 655 -993 689
+rect -903 655 -835 689
+rect -745 655 -677 689
+rect -587 655 -519 689
+rect -429 655 -361 689
+rect -271 655 -203 689
+rect -113 655 -45 689
+rect 45 655 113 689
+rect 203 655 271 689
+rect 361 655 429 689
+rect 519 655 587 689
+rect 677 655 745 689
+rect 835 655 903 689
+rect 993 655 1061 689
+rect 1151 655 1219 689
+rect -1219 547 -1151 581
+rect -1061 547 -993 581
+rect -903 547 -835 581
+rect -745 547 -677 581
+rect -587 547 -519 581
+rect -429 547 -361 581
+rect -271 547 -203 581
+rect -113 547 -45 581
+rect 45 547 113 581
+rect 203 547 271 581
+rect 361 547 429 581
+rect 519 547 587 581
+rect 677 547 745 581
+rect 835 547 903 581
+rect 993 547 1061 581
+rect 1151 547 1219 581
+rect -1219 37 -1151 71
+rect -1061 37 -993 71
+rect -903 37 -835 71
+rect -745 37 -677 71
+rect -587 37 -519 71
+rect -429 37 -361 71
+rect -271 37 -203 71
+rect -113 37 -45 71
+rect 45 37 113 71
+rect 203 37 271 71
+rect 361 37 429 71
+rect 519 37 587 71
+rect 677 37 745 71
+rect 835 37 903 71
+rect 993 37 1061 71
+rect 1151 37 1219 71
+rect -1219 -71 -1151 -37
+rect -1061 -71 -993 -37
+rect -903 -71 -835 -37
+rect -745 -71 -677 -37
+rect -587 -71 -519 -37
+rect -429 -71 -361 -37
+rect -271 -71 -203 -37
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect 203 -71 271 -37
+rect 361 -71 429 -37
+rect 519 -71 587 -37
+rect 677 -71 745 -37
+rect 835 -71 903 -37
+rect 993 -71 1061 -37
+rect 1151 -71 1219 -37
+rect -1219 -581 -1151 -547
+rect -1061 -581 -993 -547
+rect -903 -581 -835 -547
+rect -745 -581 -677 -547
+rect -587 -581 -519 -547
+rect -429 -581 -361 -547
+rect -271 -581 -203 -547
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+rect 203 -581 271 -547
+rect 361 -581 429 -547
+rect 519 -581 587 -547
+rect 677 -581 745 -547
+rect 835 -581 903 -547
+rect 993 -581 1061 -547
+rect 1151 -581 1219 -547
+rect -1219 -689 -1151 -655
+rect -1061 -689 -993 -655
+rect -903 -689 -835 -655
+rect -745 -689 -677 -655
+rect -587 -689 -519 -655
+rect -429 -689 -361 -655
+rect -271 -689 -203 -655
+rect -113 -689 -45 -655
+rect 45 -689 113 -655
+rect 203 -689 271 -655
+rect 361 -689 429 -655
+rect 519 -689 587 -655
+rect 677 -689 745 -655
+rect 835 -689 903 -655
+rect 993 -689 1061 -655
+rect 1151 -689 1219 -655
+rect -1219 -1199 -1151 -1165
+rect -1061 -1199 -993 -1165
+rect -903 -1199 -835 -1165
+rect -745 -1199 -677 -1165
+rect -587 -1199 -519 -1165
+rect -429 -1199 -361 -1165
+rect -271 -1199 -203 -1165
+rect -113 -1199 -45 -1165
+rect 45 -1199 113 -1165
+rect 203 -1199 271 -1165
+rect 361 -1199 429 -1165
+rect 519 -1199 587 -1165
+rect 677 -1199 745 -1165
+rect 835 -1199 903 -1165
+rect 993 -1199 1061 -1165
+rect 1151 -1199 1219 -1165
+rect -1219 -1307 -1151 -1273
+rect -1061 -1307 -993 -1273
+rect -903 -1307 -835 -1273
+rect -745 -1307 -677 -1273
+rect -587 -1307 -519 -1273
+rect -429 -1307 -361 -1273
+rect -271 -1307 -203 -1273
+rect -113 -1307 -45 -1273
+rect 45 -1307 113 -1273
+rect 203 -1307 271 -1273
+rect 361 -1307 429 -1273
+rect 519 -1307 587 -1273
+rect 677 -1307 745 -1273
+rect 835 -1307 903 -1273
+rect 993 -1307 1061 -1273
+rect 1151 -1307 1219 -1273
+rect -1219 -1817 -1151 -1783
+rect -1061 -1817 -993 -1783
+rect -903 -1817 -835 -1783
+rect -745 -1817 -677 -1783
+rect -587 -1817 -519 -1783
+rect -429 -1817 -361 -1783
+rect -271 -1817 -203 -1783
+rect -113 -1817 -45 -1783
+rect 45 -1817 113 -1783
+rect 203 -1817 271 -1783
+rect 361 -1817 429 -1783
+rect 519 -1817 587 -1783
+rect 677 -1817 745 -1783
+rect 835 -1817 903 -1783
+rect 993 -1817 1061 -1783
+rect 1151 -1817 1219 -1783
+rect -1219 -1925 -1151 -1891
+rect -1061 -1925 -993 -1891
+rect -903 -1925 -835 -1891
+rect -745 -1925 -677 -1891
+rect -587 -1925 -519 -1891
+rect -429 -1925 -361 -1891
+rect -271 -1925 -203 -1891
+rect -113 -1925 -45 -1891
+rect 45 -1925 113 -1891
+rect 203 -1925 271 -1891
+rect 361 -1925 429 -1891
+rect 519 -1925 587 -1891
+rect 677 -1925 745 -1891
+rect 835 -1925 903 -1891
+rect 993 -1925 1061 -1891
+rect 1151 -1925 1219 -1891
+rect -1219 -2435 -1151 -2401
+rect -1061 -2435 -993 -2401
+rect -903 -2435 -835 -2401
+rect -745 -2435 -677 -2401
+rect -587 -2435 -519 -2401
+rect -429 -2435 -361 -2401
+rect -271 -2435 -203 -2401
+rect -113 -2435 -45 -2401
+rect 45 -2435 113 -2401
+rect 203 -2435 271 -2401
+rect 361 -2435 429 -2401
+rect 519 -2435 587 -2401
+rect 677 -2435 745 -2401
+rect 835 -2435 903 -2401
+rect 993 -2435 1061 -2401
+rect 1151 -2435 1219 -2401
+<< locali >>
+rect -1395 2503 -1299 2537
+rect 1299 2503 1395 2537
+rect -1395 2441 -1361 2503
+rect 1361 2441 1395 2503
+rect -1235 2401 -1219 2435
+rect -1151 2401 -1135 2435
+rect -1077 2401 -1061 2435
+rect -993 2401 -977 2435
+rect -919 2401 -903 2435
+rect -835 2401 -819 2435
+rect -761 2401 -745 2435
+rect -677 2401 -661 2435
+rect -603 2401 -587 2435
+rect -519 2401 -503 2435
+rect -445 2401 -429 2435
+rect -361 2401 -345 2435
+rect -287 2401 -271 2435
+rect -203 2401 -187 2435
+rect -129 2401 -113 2435
+rect -45 2401 -29 2435
+rect 29 2401 45 2435
+rect 113 2401 129 2435
+rect 187 2401 203 2435
+rect 271 2401 287 2435
+rect 345 2401 361 2435
+rect 429 2401 445 2435
+rect 503 2401 519 2435
+rect 587 2401 603 2435
+rect 661 2401 677 2435
+rect 745 2401 761 2435
+rect 819 2401 835 2435
+rect 903 2401 919 2435
+rect 977 2401 993 2435
+rect 1061 2401 1077 2435
+rect 1135 2401 1151 2435
+rect 1219 2401 1235 2435
+rect -1281 2351 -1247 2367
+rect -1281 1959 -1247 1975
+rect -1123 2351 -1089 2367
+rect -1123 1959 -1089 1975
+rect -965 2351 -931 2367
+rect -965 1959 -931 1975
+rect -807 2351 -773 2367
+rect -807 1959 -773 1975
+rect -649 2351 -615 2367
+rect -649 1959 -615 1975
+rect -491 2351 -457 2367
+rect -491 1959 -457 1975
+rect -333 2351 -299 2367
+rect -333 1959 -299 1975
+rect -175 2351 -141 2367
+rect -175 1959 -141 1975
+rect -17 2351 17 2367
+rect -17 1959 17 1975
+rect 141 2351 175 2367
+rect 141 1959 175 1975
+rect 299 2351 333 2367
+rect 299 1959 333 1975
+rect 457 2351 491 2367
+rect 457 1959 491 1975
+rect 615 2351 649 2367
+rect 615 1959 649 1975
+rect 773 2351 807 2367
+rect 773 1959 807 1975
+rect 931 2351 965 2367
+rect 931 1959 965 1975
+rect 1089 2351 1123 2367
+rect 1089 1959 1123 1975
+rect 1247 2351 1281 2367
+rect 1247 1959 1281 1975
+rect -1235 1891 -1219 1925
+rect -1151 1891 -1135 1925
+rect -1077 1891 -1061 1925
+rect -993 1891 -977 1925
+rect -919 1891 -903 1925
+rect -835 1891 -819 1925
+rect -761 1891 -745 1925
+rect -677 1891 -661 1925
+rect -603 1891 -587 1925
+rect -519 1891 -503 1925
+rect -445 1891 -429 1925
+rect -361 1891 -345 1925
+rect -287 1891 -271 1925
+rect -203 1891 -187 1925
+rect -129 1891 -113 1925
+rect -45 1891 -29 1925
+rect 29 1891 45 1925
+rect 113 1891 129 1925
+rect 187 1891 203 1925
+rect 271 1891 287 1925
+rect 345 1891 361 1925
+rect 429 1891 445 1925
+rect 503 1891 519 1925
+rect 587 1891 603 1925
+rect 661 1891 677 1925
+rect 745 1891 761 1925
+rect 819 1891 835 1925
+rect 903 1891 919 1925
+rect 977 1891 993 1925
+rect 1061 1891 1077 1925
+rect 1135 1891 1151 1925
+rect 1219 1891 1235 1925
+rect -1235 1783 -1219 1817
+rect -1151 1783 -1135 1817
+rect -1077 1783 -1061 1817
+rect -993 1783 -977 1817
+rect -919 1783 -903 1817
+rect -835 1783 -819 1817
+rect -761 1783 -745 1817
+rect -677 1783 -661 1817
+rect -603 1783 -587 1817
+rect -519 1783 -503 1817
+rect -445 1783 -429 1817
+rect -361 1783 -345 1817
+rect -287 1783 -271 1817
+rect -203 1783 -187 1817
+rect -129 1783 -113 1817
+rect -45 1783 -29 1817
+rect 29 1783 45 1817
+rect 113 1783 129 1817
+rect 187 1783 203 1817
+rect 271 1783 287 1817
+rect 345 1783 361 1817
+rect 429 1783 445 1817
+rect 503 1783 519 1817
+rect 587 1783 603 1817
+rect 661 1783 677 1817
+rect 745 1783 761 1817
+rect 819 1783 835 1817
+rect 903 1783 919 1817
+rect 977 1783 993 1817
+rect 1061 1783 1077 1817
+rect 1135 1783 1151 1817
+rect 1219 1783 1235 1817
+rect -1281 1733 -1247 1749
+rect -1281 1341 -1247 1357
+rect -1123 1733 -1089 1749
+rect -1123 1341 -1089 1357
+rect -965 1733 -931 1749
+rect -965 1341 -931 1357
+rect -807 1733 -773 1749
+rect -807 1341 -773 1357
+rect -649 1733 -615 1749
+rect -649 1341 -615 1357
+rect -491 1733 -457 1749
+rect -491 1341 -457 1357
+rect -333 1733 -299 1749
+rect -333 1341 -299 1357
+rect -175 1733 -141 1749
+rect -175 1341 -141 1357
+rect -17 1733 17 1749
+rect -17 1341 17 1357
+rect 141 1733 175 1749
+rect 141 1341 175 1357
+rect 299 1733 333 1749
+rect 299 1341 333 1357
+rect 457 1733 491 1749
+rect 457 1341 491 1357
+rect 615 1733 649 1749
+rect 615 1341 649 1357
+rect 773 1733 807 1749
+rect 773 1341 807 1357
+rect 931 1733 965 1749
+rect 931 1341 965 1357
+rect 1089 1733 1123 1749
+rect 1089 1341 1123 1357
+rect 1247 1733 1281 1749
+rect 1247 1341 1281 1357
+rect -1235 1273 -1219 1307
+rect -1151 1273 -1135 1307
+rect -1077 1273 -1061 1307
+rect -993 1273 -977 1307
+rect -919 1273 -903 1307
+rect -835 1273 -819 1307
+rect -761 1273 -745 1307
+rect -677 1273 -661 1307
+rect -603 1273 -587 1307
+rect -519 1273 -503 1307
+rect -445 1273 -429 1307
+rect -361 1273 -345 1307
+rect -287 1273 -271 1307
+rect -203 1273 -187 1307
+rect -129 1273 -113 1307
+rect -45 1273 -29 1307
+rect 29 1273 45 1307
+rect 113 1273 129 1307
+rect 187 1273 203 1307
+rect 271 1273 287 1307
+rect 345 1273 361 1307
+rect 429 1273 445 1307
+rect 503 1273 519 1307
+rect 587 1273 603 1307
+rect 661 1273 677 1307
+rect 745 1273 761 1307
+rect 819 1273 835 1307
+rect 903 1273 919 1307
+rect 977 1273 993 1307
+rect 1061 1273 1077 1307
+rect 1135 1273 1151 1307
+rect 1219 1273 1235 1307
+rect -1235 1165 -1219 1199
+rect -1151 1165 -1135 1199
+rect -1077 1165 -1061 1199
+rect -993 1165 -977 1199
+rect -919 1165 -903 1199
+rect -835 1165 -819 1199
+rect -761 1165 -745 1199
+rect -677 1165 -661 1199
+rect -603 1165 -587 1199
+rect -519 1165 -503 1199
+rect -445 1165 -429 1199
+rect -361 1165 -345 1199
+rect -287 1165 -271 1199
+rect -203 1165 -187 1199
+rect -129 1165 -113 1199
+rect -45 1165 -29 1199
+rect 29 1165 45 1199
+rect 113 1165 129 1199
+rect 187 1165 203 1199
+rect 271 1165 287 1199
+rect 345 1165 361 1199
+rect 429 1165 445 1199
+rect 503 1165 519 1199
+rect 587 1165 603 1199
+rect 661 1165 677 1199
+rect 745 1165 761 1199
+rect 819 1165 835 1199
+rect 903 1165 919 1199
+rect 977 1165 993 1199
+rect 1061 1165 1077 1199
+rect 1135 1165 1151 1199
+rect 1219 1165 1235 1199
+rect -1281 1115 -1247 1131
+rect -1281 723 -1247 739
+rect -1123 1115 -1089 1131
+rect -1123 723 -1089 739
+rect -965 1115 -931 1131
+rect -965 723 -931 739
+rect -807 1115 -773 1131
+rect -807 723 -773 739
+rect -649 1115 -615 1131
+rect -649 723 -615 739
+rect -491 1115 -457 1131
+rect -491 723 -457 739
+rect -333 1115 -299 1131
+rect -333 723 -299 739
+rect -175 1115 -141 1131
+rect -175 723 -141 739
+rect -17 1115 17 1131
+rect -17 723 17 739
+rect 141 1115 175 1131
+rect 141 723 175 739
+rect 299 1115 333 1131
+rect 299 723 333 739
+rect 457 1115 491 1131
+rect 457 723 491 739
+rect 615 1115 649 1131
+rect 615 723 649 739
+rect 773 1115 807 1131
+rect 773 723 807 739
+rect 931 1115 965 1131
+rect 931 723 965 739
+rect 1089 1115 1123 1131
+rect 1089 723 1123 739
+rect 1247 1115 1281 1131
+rect 1247 723 1281 739
+rect -1235 655 -1219 689
+rect -1151 655 -1135 689
+rect -1077 655 -1061 689
+rect -993 655 -977 689
+rect -919 655 -903 689
+rect -835 655 -819 689
+rect -761 655 -745 689
+rect -677 655 -661 689
+rect -603 655 -587 689
+rect -519 655 -503 689
+rect -445 655 -429 689
+rect -361 655 -345 689
+rect -287 655 -271 689
+rect -203 655 -187 689
+rect -129 655 -113 689
+rect -45 655 -29 689
+rect 29 655 45 689
+rect 113 655 129 689
+rect 187 655 203 689
+rect 271 655 287 689
+rect 345 655 361 689
+rect 429 655 445 689
+rect 503 655 519 689
+rect 587 655 603 689
+rect 661 655 677 689
+rect 745 655 761 689
+rect 819 655 835 689
+rect 903 655 919 689
+rect 977 655 993 689
+rect 1061 655 1077 689
+rect 1135 655 1151 689
+rect 1219 655 1235 689
+rect -1235 547 -1219 581
+rect -1151 547 -1135 581
+rect -1077 547 -1061 581
+rect -993 547 -977 581
+rect -919 547 -903 581
+rect -835 547 -819 581
+rect -761 547 -745 581
+rect -677 547 -661 581
+rect -603 547 -587 581
+rect -519 547 -503 581
+rect -445 547 -429 581
+rect -361 547 -345 581
+rect -287 547 -271 581
+rect -203 547 -187 581
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect 29 547 45 581
+rect 113 547 129 581
+rect 187 547 203 581
+rect 271 547 287 581
+rect 345 547 361 581
+rect 429 547 445 581
+rect 503 547 519 581
+rect 587 547 603 581
+rect 661 547 677 581
+rect 745 547 761 581
+rect 819 547 835 581
+rect 903 547 919 581
+rect 977 547 993 581
+rect 1061 547 1077 581
+rect 1135 547 1151 581
+rect 1219 547 1235 581
+rect -1281 497 -1247 513
+rect -1281 105 -1247 121
+rect -1123 497 -1089 513
+rect -1123 105 -1089 121
+rect -965 497 -931 513
+rect -965 105 -931 121
+rect -807 497 -773 513
+rect -807 105 -773 121
+rect -649 497 -615 513
+rect -649 105 -615 121
+rect -491 497 -457 513
+rect -491 105 -457 121
+rect -333 497 -299 513
+rect -333 105 -299 121
+rect -175 497 -141 513
+rect -175 105 -141 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 141 497 175 513
+rect 141 105 175 121
+rect 299 497 333 513
+rect 299 105 333 121
+rect 457 497 491 513
+rect 457 105 491 121
+rect 615 497 649 513
+rect 615 105 649 121
+rect 773 497 807 513
+rect 773 105 807 121
+rect 931 497 965 513
+rect 931 105 965 121
+rect 1089 497 1123 513
+rect 1089 105 1123 121
+rect 1247 497 1281 513
+rect 1247 105 1281 121
+rect -1235 37 -1219 71
+rect -1151 37 -1135 71
+rect -1077 37 -1061 71
+rect -993 37 -977 71
+rect -919 37 -903 71
+rect -835 37 -819 71
+rect -761 37 -745 71
+rect -677 37 -661 71
+rect -603 37 -587 71
+rect -519 37 -503 71
+rect -445 37 -429 71
+rect -361 37 -345 71
+rect -287 37 -271 71
+rect -203 37 -187 71
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 113 37 129 71
+rect 187 37 203 71
+rect 271 37 287 71
+rect 345 37 361 71
+rect 429 37 445 71
+rect 503 37 519 71
+rect 587 37 603 71
+rect 661 37 677 71
+rect 745 37 761 71
+rect 819 37 835 71
+rect 903 37 919 71
+rect 977 37 993 71
+rect 1061 37 1077 71
+rect 1135 37 1151 71
+rect 1219 37 1235 71
+rect -1235 -71 -1219 -37
+rect -1151 -71 -1135 -37
+rect -1077 -71 -1061 -37
+rect -993 -71 -977 -37
+rect -919 -71 -903 -37
+rect -835 -71 -819 -37
+rect -761 -71 -745 -37
+rect -677 -71 -661 -37
+rect -603 -71 -587 -37
+rect -519 -71 -503 -37
+rect -445 -71 -429 -37
+rect -361 -71 -345 -37
+rect -287 -71 -271 -37
+rect -203 -71 -187 -37
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect 187 -71 203 -37
+rect 271 -71 287 -37
+rect 345 -71 361 -37
+rect 429 -71 445 -37
+rect 503 -71 519 -37
+rect 587 -71 603 -37
+rect 661 -71 677 -37
+rect 745 -71 761 -37
+rect 819 -71 835 -37
+rect 903 -71 919 -37
+rect 977 -71 993 -37
+rect 1061 -71 1077 -37
+rect 1135 -71 1151 -37
+rect 1219 -71 1235 -37
+rect -1281 -121 -1247 -105
+rect -1281 -513 -1247 -497
+rect -1123 -121 -1089 -105
+rect -1123 -513 -1089 -497
+rect -965 -121 -931 -105
+rect -965 -513 -931 -497
+rect -807 -121 -773 -105
+rect -807 -513 -773 -497
+rect -649 -121 -615 -105
+rect -649 -513 -615 -497
+rect -491 -121 -457 -105
+rect -491 -513 -457 -497
+rect -333 -121 -299 -105
+rect -333 -513 -299 -497
+rect -175 -121 -141 -105
+rect -175 -513 -141 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 141 -121 175 -105
+rect 141 -513 175 -497
+rect 299 -121 333 -105
+rect 299 -513 333 -497
+rect 457 -121 491 -105
+rect 457 -513 491 -497
+rect 615 -121 649 -105
+rect 615 -513 649 -497
+rect 773 -121 807 -105
+rect 773 -513 807 -497
+rect 931 -121 965 -105
+rect 931 -513 965 -497
+rect 1089 -121 1123 -105
+rect 1089 -513 1123 -497
+rect 1247 -121 1281 -105
+rect 1247 -513 1281 -497
+rect -1235 -581 -1219 -547
+rect -1151 -581 -1135 -547
+rect -1077 -581 -1061 -547
+rect -993 -581 -977 -547
+rect -919 -581 -903 -547
+rect -835 -581 -819 -547
+rect -761 -581 -745 -547
+rect -677 -581 -661 -547
+rect -603 -581 -587 -547
+rect -519 -581 -503 -547
+rect -445 -581 -429 -547
+rect -361 -581 -345 -547
+rect -287 -581 -271 -547
+rect -203 -581 -187 -547
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect 187 -581 203 -547
+rect 271 -581 287 -547
+rect 345 -581 361 -547
+rect 429 -581 445 -547
+rect 503 -581 519 -547
+rect 587 -581 603 -547
+rect 661 -581 677 -547
+rect 745 -581 761 -547
+rect 819 -581 835 -547
+rect 903 -581 919 -547
+rect 977 -581 993 -547
+rect 1061 -581 1077 -547
+rect 1135 -581 1151 -547
+rect 1219 -581 1235 -547
+rect -1235 -689 -1219 -655
+rect -1151 -689 -1135 -655
+rect -1077 -689 -1061 -655
+rect -993 -689 -977 -655
+rect -919 -689 -903 -655
+rect -835 -689 -819 -655
+rect -761 -689 -745 -655
+rect -677 -689 -661 -655
+rect -603 -689 -587 -655
+rect -519 -689 -503 -655
+rect -445 -689 -429 -655
+rect -361 -689 -345 -655
+rect -287 -689 -271 -655
+rect -203 -689 -187 -655
+rect -129 -689 -113 -655
+rect -45 -689 -29 -655
+rect 29 -689 45 -655
+rect 113 -689 129 -655
+rect 187 -689 203 -655
+rect 271 -689 287 -655
+rect 345 -689 361 -655
+rect 429 -689 445 -655
+rect 503 -689 519 -655
+rect 587 -689 603 -655
+rect 661 -689 677 -655
+rect 745 -689 761 -655
+rect 819 -689 835 -655
+rect 903 -689 919 -655
+rect 977 -689 993 -655
+rect 1061 -689 1077 -655
+rect 1135 -689 1151 -655
+rect 1219 -689 1235 -655
+rect -1281 -739 -1247 -723
+rect -1281 -1131 -1247 -1115
+rect -1123 -739 -1089 -723
+rect -1123 -1131 -1089 -1115
+rect -965 -739 -931 -723
+rect -965 -1131 -931 -1115
+rect -807 -739 -773 -723
+rect -807 -1131 -773 -1115
+rect -649 -739 -615 -723
+rect -649 -1131 -615 -1115
+rect -491 -739 -457 -723
+rect -491 -1131 -457 -1115
+rect -333 -739 -299 -723
+rect -333 -1131 -299 -1115
+rect -175 -739 -141 -723
+rect -175 -1131 -141 -1115
+rect -17 -739 17 -723
+rect -17 -1131 17 -1115
+rect 141 -739 175 -723
+rect 141 -1131 175 -1115
+rect 299 -739 333 -723
+rect 299 -1131 333 -1115
+rect 457 -739 491 -723
+rect 457 -1131 491 -1115
+rect 615 -739 649 -723
+rect 615 -1131 649 -1115
+rect 773 -739 807 -723
+rect 773 -1131 807 -1115
+rect 931 -739 965 -723
+rect 931 -1131 965 -1115
+rect 1089 -739 1123 -723
+rect 1089 -1131 1123 -1115
+rect 1247 -739 1281 -723
+rect 1247 -1131 1281 -1115
+rect -1235 -1199 -1219 -1165
+rect -1151 -1199 -1135 -1165
+rect -1077 -1199 -1061 -1165
+rect -993 -1199 -977 -1165
+rect -919 -1199 -903 -1165
+rect -835 -1199 -819 -1165
+rect -761 -1199 -745 -1165
+rect -677 -1199 -661 -1165
+rect -603 -1199 -587 -1165
+rect -519 -1199 -503 -1165
+rect -445 -1199 -429 -1165
+rect -361 -1199 -345 -1165
+rect -287 -1199 -271 -1165
+rect -203 -1199 -187 -1165
+rect -129 -1199 -113 -1165
+rect -45 -1199 -29 -1165
+rect 29 -1199 45 -1165
+rect 113 -1199 129 -1165
+rect 187 -1199 203 -1165
+rect 271 -1199 287 -1165
+rect 345 -1199 361 -1165
+rect 429 -1199 445 -1165
+rect 503 -1199 519 -1165
+rect 587 -1199 603 -1165
+rect 661 -1199 677 -1165
+rect 745 -1199 761 -1165
+rect 819 -1199 835 -1165
+rect 903 -1199 919 -1165
+rect 977 -1199 993 -1165
+rect 1061 -1199 1077 -1165
+rect 1135 -1199 1151 -1165
+rect 1219 -1199 1235 -1165
+rect -1235 -1307 -1219 -1273
+rect -1151 -1307 -1135 -1273
+rect -1077 -1307 -1061 -1273
+rect -993 -1307 -977 -1273
+rect -919 -1307 -903 -1273
+rect -835 -1307 -819 -1273
+rect -761 -1307 -745 -1273
+rect -677 -1307 -661 -1273
+rect -603 -1307 -587 -1273
+rect -519 -1307 -503 -1273
+rect -445 -1307 -429 -1273
+rect -361 -1307 -345 -1273
+rect -287 -1307 -271 -1273
+rect -203 -1307 -187 -1273
+rect -129 -1307 -113 -1273
+rect -45 -1307 -29 -1273
+rect 29 -1307 45 -1273
+rect 113 -1307 129 -1273
+rect 187 -1307 203 -1273
+rect 271 -1307 287 -1273
+rect 345 -1307 361 -1273
+rect 429 -1307 445 -1273
+rect 503 -1307 519 -1273
+rect 587 -1307 603 -1273
+rect 661 -1307 677 -1273
+rect 745 -1307 761 -1273
+rect 819 -1307 835 -1273
+rect 903 -1307 919 -1273
+rect 977 -1307 993 -1273
+rect 1061 -1307 1077 -1273
+rect 1135 -1307 1151 -1273
+rect 1219 -1307 1235 -1273
+rect -1281 -1357 -1247 -1341
+rect -1281 -1749 -1247 -1733
+rect -1123 -1357 -1089 -1341
+rect -1123 -1749 -1089 -1733
+rect -965 -1357 -931 -1341
+rect -965 -1749 -931 -1733
+rect -807 -1357 -773 -1341
+rect -807 -1749 -773 -1733
+rect -649 -1357 -615 -1341
+rect -649 -1749 -615 -1733
+rect -491 -1357 -457 -1341
+rect -491 -1749 -457 -1733
+rect -333 -1357 -299 -1341
+rect -333 -1749 -299 -1733
+rect -175 -1357 -141 -1341
+rect -175 -1749 -141 -1733
+rect -17 -1357 17 -1341
+rect -17 -1749 17 -1733
+rect 141 -1357 175 -1341
+rect 141 -1749 175 -1733
+rect 299 -1357 333 -1341
+rect 299 -1749 333 -1733
+rect 457 -1357 491 -1341
+rect 457 -1749 491 -1733
+rect 615 -1357 649 -1341
+rect 615 -1749 649 -1733
+rect 773 -1357 807 -1341
+rect 773 -1749 807 -1733
+rect 931 -1357 965 -1341
+rect 931 -1749 965 -1733
+rect 1089 -1357 1123 -1341
+rect 1089 -1749 1123 -1733
+rect 1247 -1357 1281 -1341
+rect 1247 -1749 1281 -1733
+rect -1235 -1817 -1219 -1783
+rect -1151 -1817 -1135 -1783
+rect -1077 -1817 -1061 -1783
+rect -993 -1817 -977 -1783
+rect -919 -1817 -903 -1783
+rect -835 -1817 -819 -1783
+rect -761 -1817 -745 -1783
+rect -677 -1817 -661 -1783
+rect -603 -1817 -587 -1783
+rect -519 -1817 -503 -1783
+rect -445 -1817 -429 -1783
+rect -361 -1817 -345 -1783
+rect -287 -1817 -271 -1783
+rect -203 -1817 -187 -1783
+rect -129 -1817 -113 -1783
+rect -45 -1817 -29 -1783
+rect 29 -1817 45 -1783
+rect 113 -1817 129 -1783
+rect 187 -1817 203 -1783
+rect 271 -1817 287 -1783
+rect 345 -1817 361 -1783
+rect 429 -1817 445 -1783
+rect 503 -1817 519 -1783
+rect 587 -1817 603 -1783
+rect 661 -1817 677 -1783
+rect 745 -1817 761 -1783
+rect 819 -1817 835 -1783
+rect 903 -1817 919 -1783
+rect 977 -1817 993 -1783
+rect 1061 -1817 1077 -1783
+rect 1135 -1817 1151 -1783
+rect 1219 -1817 1235 -1783
+rect -1235 -1925 -1219 -1891
+rect -1151 -1925 -1135 -1891
+rect -1077 -1925 -1061 -1891
+rect -993 -1925 -977 -1891
+rect -919 -1925 -903 -1891
+rect -835 -1925 -819 -1891
+rect -761 -1925 -745 -1891
+rect -677 -1925 -661 -1891
+rect -603 -1925 -587 -1891
+rect -519 -1925 -503 -1891
+rect -445 -1925 -429 -1891
+rect -361 -1925 -345 -1891
+rect -287 -1925 -271 -1891
+rect -203 -1925 -187 -1891
+rect -129 -1925 -113 -1891
+rect -45 -1925 -29 -1891
+rect 29 -1925 45 -1891
+rect 113 -1925 129 -1891
+rect 187 -1925 203 -1891
+rect 271 -1925 287 -1891
+rect 345 -1925 361 -1891
+rect 429 -1925 445 -1891
+rect 503 -1925 519 -1891
+rect 587 -1925 603 -1891
+rect 661 -1925 677 -1891
+rect 745 -1925 761 -1891
+rect 819 -1925 835 -1891
+rect 903 -1925 919 -1891
+rect 977 -1925 993 -1891
+rect 1061 -1925 1077 -1891
+rect 1135 -1925 1151 -1891
+rect 1219 -1925 1235 -1891
+rect -1281 -1975 -1247 -1959
+rect -1281 -2367 -1247 -2351
+rect -1123 -1975 -1089 -1959
+rect -1123 -2367 -1089 -2351
+rect -965 -1975 -931 -1959
+rect -965 -2367 -931 -2351
+rect -807 -1975 -773 -1959
+rect -807 -2367 -773 -2351
+rect -649 -1975 -615 -1959
+rect -649 -2367 -615 -2351
+rect -491 -1975 -457 -1959
+rect -491 -2367 -457 -2351
+rect -333 -1975 -299 -1959
+rect -333 -2367 -299 -2351
+rect -175 -1975 -141 -1959
+rect -175 -2367 -141 -2351
+rect -17 -1975 17 -1959
+rect -17 -2367 17 -2351
+rect 141 -1975 175 -1959
+rect 141 -2367 175 -2351
+rect 299 -1975 333 -1959
+rect 299 -2367 333 -2351
+rect 457 -1975 491 -1959
+rect 457 -2367 491 -2351
+rect 615 -1975 649 -1959
+rect 615 -2367 649 -2351
+rect 773 -1975 807 -1959
+rect 773 -2367 807 -2351
+rect 931 -1975 965 -1959
+rect 931 -2367 965 -2351
+rect 1089 -1975 1123 -1959
+rect 1089 -2367 1123 -2351
+rect 1247 -1975 1281 -1959
+rect 1247 -2367 1281 -2351
+rect -1235 -2435 -1219 -2401
+rect -1151 -2435 -1135 -2401
+rect -1077 -2435 -1061 -2401
+rect -993 -2435 -977 -2401
+rect -919 -2435 -903 -2401
+rect -835 -2435 -819 -2401
+rect -761 -2435 -745 -2401
+rect -677 -2435 -661 -2401
+rect -603 -2435 -587 -2401
+rect -519 -2435 -503 -2401
+rect -445 -2435 -429 -2401
+rect -361 -2435 -345 -2401
+rect -287 -2435 -271 -2401
+rect -203 -2435 -187 -2401
+rect -129 -2435 -113 -2401
+rect -45 -2435 -29 -2401
+rect 29 -2435 45 -2401
+rect 113 -2435 129 -2401
+rect 187 -2435 203 -2401
+rect 271 -2435 287 -2401
+rect 345 -2435 361 -2401
+rect 429 -2435 445 -2401
+rect 503 -2435 519 -2401
+rect 587 -2435 603 -2401
+rect 661 -2435 677 -2401
+rect 745 -2435 761 -2401
+rect 819 -2435 835 -2401
+rect 903 -2435 919 -2401
+rect 977 -2435 993 -2401
+rect 1061 -2435 1077 -2401
+rect 1135 -2435 1151 -2401
+rect 1219 -2435 1235 -2401
+rect -1395 -2503 -1361 -2441
+rect 1361 -2503 1395 -2441
+rect -1395 -2537 -1299 -2503
+rect 1299 -2537 1395 -2503
+<< viali >>
+rect -1219 2401 -1151 2435
+rect -1061 2401 -993 2435
+rect -903 2401 -835 2435
+rect -745 2401 -677 2435
+rect -587 2401 -519 2435
+rect -429 2401 -361 2435
+rect -271 2401 -203 2435
+rect -113 2401 -45 2435
+rect 45 2401 113 2435
+rect 203 2401 271 2435
+rect 361 2401 429 2435
+rect 519 2401 587 2435
+rect 677 2401 745 2435
+rect 835 2401 903 2435
+rect 993 2401 1061 2435
+rect 1151 2401 1219 2435
+rect -1281 1975 -1247 2351
+rect -1123 1975 -1089 2351
+rect -965 1975 -931 2351
+rect -807 1975 -773 2351
+rect -649 1975 -615 2351
+rect -491 1975 -457 2351
+rect -333 1975 -299 2351
+rect -175 1975 -141 2351
+rect -17 1975 17 2351
+rect 141 1975 175 2351
+rect 299 1975 333 2351
+rect 457 1975 491 2351
+rect 615 1975 649 2351
+rect 773 1975 807 2351
+rect 931 1975 965 2351
+rect 1089 1975 1123 2351
+rect 1247 1975 1281 2351
+rect -1219 1891 -1151 1925
+rect -1061 1891 -993 1925
+rect -903 1891 -835 1925
+rect -745 1891 -677 1925
+rect -587 1891 -519 1925
+rect -429 1891 -361 1925
+rect -271 1891 -203 1925
+rect -113 1891 -45 1925
+rect 45 1891 113 1925
+rect 203 1891 271 1925
+rect 361 1891 429 1925
+rect 519 1891 587 1925
+rect 677 1891 745 1925
+rect 835 1891 903 1925
+rect 993 1891 1061 1925
+rect 1151 1891 1219 1925
+rect -1219 1783 -1151 1817
+rect -1061 1783 -993 1817
+rect -903 1783 -835 1817
+rect -745 1783 -677 1817
+rect -587 1783 -519 1817
+rect -429 1783 -361 1817
+rect -271 1783 -203 1817
+rect -113 1783 -45 1817
+rect 45 1783 113 1817
+rect 203 1783 271 1817
+rect 361 1783 429 1817
+rect 519 1783 587 1817
+rect 677 1783 745 1817
+rect 835 1783 903 1817
+rect 993 1783 1061 1817
+rect 1151 1783 1219 1817
+rect -1281 1357 -1247 1733
+rect -1123 1357 -1089 1733
+rect -965 1357 -931 1733
+rect -807 1357 -773 1733
+rect -649 1357 -615 1733
+rect -491 1357 -457 1733
+rect -333 1357 -299 1733
+rect -175 1357 -141 1733
+rect -17 1357 17 1733
+rect 141 1357 175 1733
+rect 299 1357 333 1733
+rect 457 1357 491 1733
+rect 615 1357 649 1733
+rect 773 1357 807 1733
+rect 931 1357 965 1733
+rect 1089 1357 1123 1733
+rect 1247 1357 1281 1733
+rect -1219 1273 -1151 1307
+rect -1061 1273 -993 1307
+rect -903 1273 -835 1307
+rect -745 1273 -677 1307
+rect -587 1273 -519 1307
+rect -429 1273 -361 1307
+rect -271 1273 -203 1307
+rect -113 1273 -45 1307
+rect 45 1273 113 1307
+rect 203 1273 271 1307
+rect 361 1273 429 1307
+rect 519 1273 587 1307
+rect 677 1273 745 1307
+rect 835 1273 903 1307
+rect 993 1273 1061 1307
+rect 1151 1273 1219 1307
+rect -1219 1165 -1151 1199
+rect -1061 1165 -993 1199
+rect -903 1165 -835 1199
+rect -745 1165 -677 1199
+rect -587 1165 -519 1199
+rect -429 1165 -361 1199
+rect -271 1165 -203 1199
+rect -113 1165 -45 1199
+rect 45 1165 113 1199
+rect 203 1165 271 1199
+rect 361 1165 429 1199
+rect 519 1165 587 1199
+rect 677 1165 745 1199
+rect 835 1165 903 1199
+rect 993 1165 1061 1199
+rect 1151 1165 1219 1199
+rect -1281 739 -1247 1115
+rect -1123 739 -1089 1115
+rect -965 739 -931 1115
+rect -807 739 -773 1115
+rect -649 739 -615 1115
+rect -491 739 -457 1115
+rect -333 739 -299 1115
+rect -175 739 -141 1115
+rect -17 739 17 1115
+rect 141 739 175 1115
+rect 299 739 333 1115
+rect 457 739 491 1115
+rect 615 739 649 1115
+rect 773 739 807 1115
+rect 931 739 965 1115
+rect 1089 739 1123 1115
+rect 1247 739 1281 1115
+rect -1219 655 -1151 689
+rect -1061 655 -993 689
+rect -903 655 -835 689
+rect -745 655 -677 689
+rect -587 655 -519 689
+rect -429 655 -361 689
+rect -271 655 -203 689
+rect -113 655 -45 689
+rect 45 655 113 689
+rect 203 655 271 689
+rect 361 655 429 689
+rect 519 655 587 689
+rect 677 655 745 689
+rect 835 655 903 689
+rect 993 655 1061 689
+rect 1151 655 1219 689
+rect -1219 547 -1151 581
+rect -1061 547 -993 581
+rect -903 547 -835 581
+rect -745 547 -677 581
+rect -587 547 -519 581
+rect -429 547 -361 581
+rect -271 547 -203 581
+rect -113 547 -45 581
+rect 45 547 113 581
+rect 203 547 271 581
+rect 361 547 429 581
+rect 519 547 587 581
+rect 677 547 745 581
+rect 835 547 903 581
+rect 993 547 1061 581
+rect 1151 547 1219 581
+rect -1281 121 -1247 497
+rect -1123 121 -1089 497
+rect -965 121 -931 497
+rect -807 121 -773 497
+rect -649 121 -615 497
+rect -491 121 -457 497
+rect -333 121 -299 497
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect 299 121 333 497
+rect 457 121 491 497
+rect 615 121 649 497
+rect 773 121 807 497
+rect 931 121 965 497
+rect 1089 121 1123 497
+rect 1247 121 1281 497
+rect -1219 37 -1151 71
+rect -1061 37 -993 71
+rect -903 37 -835 71
+rect -745 37 -677 71
+rect -587 37 -519 71
+rect -429 37 -361 71
+rect -271 37 -203 71
+rect -113 37 -45 71
+rect 45 37 113 71
+rect 203 37 271 71
+rect 361 37 429 71
+rect 519 37 587 71
+rect 677 37 745 71
+rect 835 37 903 71
+rect 993 37 1061 71
+rect 1151 37 1219 71
+rect -1219 -71 -1151 -37
+rect -1061 -71 -993 -37
+rect -903 -71 -835 -37
+rect -745 -71 -677 -37
+rect -587 -71 -519 -37
+rect -429 -71 -361 -37
+rect -271 -71 -203 -37
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect 203 -71 271 -37
+rect 361 -71 429 -37
+rect 519 -71 587 -37
+rect 677 -71 745 -37
+rect 835 -71 903 -37
+rect 993 -71 1061 -37
+rect 1151 -71 1219 -37
+rect -1281 -497 -1247 -121
+rect -1123 -497 -1089 -121
+rect -965 -497 -931 -121
+rect -807 -497 -773 -121
+rect -649 -497 -615 -121
+rect -491 -497 -457 -121
+rect -333 -497 -299 -121
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+rect 299 -497 333 -121
+rect 457 -497 491 -121
+rect 615 -497 649 -121
+rect 773 -497 807 -121
+rect 931 -497 965 -121
+rect 1089 -497 1123 -121
+rect 1247 -497 1281 -121
+rect -1219 -581 -1151 -547
+rect -1061 -581 -993 -547
+rect -903 -581 -835 -547
+rect -745 -581 -677 -547
+rect -587 -581 -519 -547
+rect -429 -581 -361 -547
+rect -271 -581 -203 -547
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+rect 203 -581 271 -547
+rect 361 -581 429 -547
+rect 519 -581 587 -547
+rect 677 -581 745 -547
+rect 835 -581 903 -547
+rect 993 -581 1061 -547
+rect 1151 -581 1219 -547
+rect -1219 -689 -1151 -655
+rect -1061 -689 -993 -655
+rect -903 -689 -835 -655
+rect -745 -689 -677 -655
+rect -587 -689 -519 -655
+rect -429 -689 -361 -655
+rect -271 -689 -203 -655
+rect -113 -689 -45 -655
+rect 45 -689 113 -655
+rect 203 -689 271 -655
+rect 361 -689 429 -655
+rect 519 -689 587 -655
+rect 677 -689 745 -655
+rect 835 -689 903 -655
+rect 993 -689 1061 -655
+rect 1151 -689 1219 -655
+rect -1281 -1115 -1247 -739
+rect -1123 -1115 -1089 -739
+rect -965 -1115 -931 -739
+rect -807 -1115 -773 -739
+rect -649 -1115 -615 -739
+rect -491 -1115 -457 -739
+rect -333 -1115 -299 -739
+rect -175 -1115 -141 -739
+rect -17 -1115 17 -739
+rect 141 -1115 175 -739
+rect 299 -1115 333 -739
+rect 457 -1115 491 -739
+rect 615 -1115 649 -739
+rect 773 -1115 807 -739
+rect 931 -1115 965 -739
+rect 1089 -1115 1123 -739
+rect 1247 -1115 1281 -739
+rect -1219 -1199 -1151 -1165
+rect -1061 -1199 -993 -1165
+rect -903 -1199 -835 -1165
+rect -745 -1199 -677 -1165
+rect -587 -1199 -519 -1165
+rect -429 -1199 -361 -1165
+rect -271 -1199 -203 -1165
+rect -113 -1199 -45 -1165
+rect 45 -1199 113 -1165
+rect 203 -1199 271 -1165
+rect 361 -1199 429 -1165
+rect 519 -1199 587 -1165
+rect 677 -1199 745 -1165
+rect 835 -1199 903 -1165
+rect 993 -1199 1061 -1165
+rect 1151 -1199 1219 -1165
+rect -1219 -1307 -1151 -1273
+rect -1061 -1307 -993 -1273
+rect -903 -1307 -835 -1273
+rect -745 -1307 -677 -1273
+rect -587 -1307 -519 -1273
+rect -429 -1307 -361 -1273
+rect -271 -1307 -203 -1273
+rect -113 -1307 -45 -1273
+rect 45 -1307 113 -1273
+rect 203 -1307 271 -1273
+rect 361 -1307 429 -1273
+rect 519 -1307 587 -1273
+rect 677 -1307 745 -1273
+rect 835 -1307 903 -1273
+rect 993 -1307 1061 -1273
+rect 1151 -1307 1219 -1273
+rect -1281 -1733 -1247 -1357
+rect -1123 -1733 -1089 -1357
+rect -965 -1733 -931 -1357
+rect -807 -1733 -773 -1357
+rect -649 -1733 -615 -1357
+rect -491 -1733 -457 -1357
+rect -333 -1733 -299 -1357
+rect -175 -1733 -141 -1357
+rect -17 -1733 17 -1357
+rect 141 -1733 175 -1357
+rect 299 -1733 333 -1357
+rect 457 -1733 491 -1357
+rect 615 -1733 649 -1357
+rect 773 -1733 807 -1357
+rect 931 -1733 965 -1357
+rect 1089 -1733 1123 -1357
+rect 1247 -1733 1281 -1357
+rect -1219 -1817 -1151 -1783
+rect -1061 -1817 -993 -1783
+rect -903 -1817 -835 -1783
+rect -745 -1817 -677 -1783
+rect -587 -1817 -519 -1783
+rect -429 -1817 -361 -1783
+rect -271 -1817 -203 -1783
+rect -113 -1817 -45 -1783
+rect 45 -1817 113 -1783
+rect 203 -1817 271 -1783
+rect 361 -1817 429 -1783
+rect 519 -1817 587 -1783
+rect 677 -1817 745 -1783
+rect 835 -1817 903 -1783
+rect 993 -1817 1061 -1783
+rect 1151 -1817 1219 -1783
+rect -1219 -1925 -1151 -1891
+rect -1061 -1925 -993 -1891
+rect -903 -1925 -835 -1891
+rect -745 -1925 -677 -1891
+rect -587 -1925 -519 -1891
+rect -429 -1925 -361 -1891
+rect -271 -1925 -203 -1891
+rect -113 -1925 -45 -1891
+rect 45 -1925 113 -1891
+rect 203 -1925 271 -1891
+rect 361 -1925 429 -1891
+rect 519 -1925 587 -1891
+rect 677 -1925 745 -1891
+rect 835 -1925 903 -1891
+rect 993 -1925 1061 -1891
+rect 1151 -1925 1219 -1891
+rect -1281 -2351 -1247 -1975
+rect -1123 -2351 -1089 -1975
+rect -965 -2351 -931 -1975
+rect -807 -2351 -773 -1975
+rect -649 -2351 -615 -1975
+rect -491 -2351 -457 -1975
+rect -333 -2351 -299 -1975
+rect -175 -2351 -141 -1975
+rect -17 -2351 17 -1975
+rect 141 -2351 175 -1975
+rect 299 -2351 333 -1975
+rect 457 -2351 491 -1975
+rect 615 -2351 649 -1975
+rect 773 -2351 807 -1975
+rect 931 -2351 965 -1975
+rect 1089 -2351 1123 -1975
+rect 1247 -2351 1281 -1975
+rect -1219 -2435 -1151 -2401
+rect -1061 -2435 -993 -2401
+rect -903 -2435 -835 -2401
+rect -745 -2435 -677 -2401
+rect -587 -2435 -519 -2401
+rect -429 -2435 -361 -2401
+rect -271 -2435 -203 -2401
+rect -113 -2435 -45 -2401
+rect 45 -2435 113 -2401
+rect 203 -2435 271 -2401
+rect 361 -2435 429 -2401
+rect 519 -2435 587 -2401
+rect 677 -2435 745 -2401
+rect 835 -2435 903 -2401
+rect 993 -2435 1061 -2401
+rect 1151 -2435 1219 -2401
+<< metal1 >>
+rect -1231 2435 -1139 2441
+rect -1231 2401 -1219 2435
+rect -1151 2401 -1139 2435
+rect -1231 2395 -1139 2401
+rect -1073 2435 -981 2441
+rect -1073 2401 -1061 2435
+rect -993 2401 -981 2435
+rect -1073 2395 -981 2401
+rect -915 2435 -823 2441
+rect -915 2401 -903 2435
+rect -835 2401 -823 2435
+rect -915 2395 -823 2401
+rect -757 2435 -665 2441
+rect -757 2401 -745 2435
+rect -677 2401 -665 2435
+rect -757 2395 -665 2401
+rect -599 2435 -507 2441
+rect -599 2401 -587 2435
+rect -519 2401 -507 2435
+rect -599 2395 -507 2401
+rect -441 2435 -349 2441
+rect -441 2401 -429 2435
+rect -361 2401 -349 2435
+rect -441 2395 -349 2401
+rect -283 2435 -191 2441
+rect -283 2401 -271 2435
+rect -203 2401 -191 2435
+rect -283 2395 -191 2401
+rect -125 2435 -33 2441
+rect -125 2401 -113 2435
+rect -45 2401 -33 2435
+rect -125 2395 -33 2401
+rect 33 2435 125 2441
+rect 33 2401 45 2435
+rect 113 2401 125 2435
+rect 33 2395 125 2401
+rect 191 2435 283 2441
+rect 191 2401 203 2435
+rect 271 2401 283 2435
+rect 191 2395 283 2401
+rect 349 2435 441 2441
+rect 349 2401 361 2435
+rect 429 2401 441 2435
+rect 349 2395 441 2401
+rect 507 2435 599 2441
+rect 507 2401 519 2435
+rect 587 2401 599 2435
+rect 507 2395 599 2401
+rect 665 2435 757 2441
+rect 665 2401 677 2435
+rect 745 2401 757 2435
+rect 665 2395 757 2401
+rect 823 2435 915 2441
+rect 823 2401 835 2435
+rect 903 2401 915 2435
+rect 823 2395 915 2401
+rect 981 2435 1073 2441
+rect 981 2401 993 2435
+rect 1061 2401 1073 2435
+rect 981 2395 1073 2401
+rect 1139 2435 1231 2441
+rect 1139 2401 1151 2435
+rect 1219 2401 1231 2435
+rect 1139 2395 1231 2401
+rect -1287 2351 -1241 2363
+rect -1287 1975 -1281 2351
+rect -1247 1975 -1241 2351
+rect -1287 1963 -1241 1975
+rect -1129 2351 -1083 2363
+rect -1129 1975 -1123 2351
+rect -1089 1975 -1083 2351
+rect -1129 1963 -1083 1975
+rect -971 2351 -925 2363
+rect -971 1975 -965 2351
+rect -931 1975 -925 2351
+rect -971 1963 -925 1975
+rect -813 2351 -767 2363
+rect -813 1975 -807 2351
+rect -773 1975 -767 2351
+rect -813 1963 -767 1975
+rect -655 2351 -609 2363
+rect -655 1975 -649 2351
+rect -615 1975 -609 2351
+rect -655 1963 -609 1975
+rect -497 2351 -451 2363
+rect -497 1975 -491 2351
+rect -457 1975 -451 2351
+rect -497 1963 -451 1975
+rect -339 2351 -293 2363
+rect -339 1975 -333 2351
+rect -299 1975 -293 2351
+rect -339 1963 -293 1975
+rect -181 2351 -135 2363
+rect -181 1975 -175 2351
+rect -141 1975 -135 2351
+rect -181 1963 -135 1975
+rect -23 2351 23 2363
+rect -23 1975 -17 2351
+rect 17 1975 23 2351
+rect -23 1963 23 1975
+rect 135 2351 181 2363
+rect 135 1975 141 2351
+rect 175 1975 181 2351
+rect 135 1963 181 1975
+rect 293 2351 339 2363
+rect 293 1975 299 2351
+rect 333 1975 339 2351
+rect 293 1963 339 1975
+rect 451 2351 497 2363
+rect 451 1975 457 2351
+rect 491 1975 497 2351
+rect 451 1963 497 1975
+rect 609 2351 655 2363
+rect 609 1975 615 2351
+rect 649 1975 655 2351
+rect 609 1963 655 1975
+rect 767 2351 813 2363
+rect 767 1975 773 2351
+rect 807 1975 813 2351
+rect 767 1963 813 1975
+rect 925 2351 971 2363
+rect 925 1975 931 2351
+rect 965 1975 971 2351
+rect 925 1963 971 1975
+rect 1083 2351 1129 2363
+rect 1083 1975 1089 2351
+rect 1123 1975 1129 2351
+rect 1083 1963 1129 1975
+rect 1241 2351 1287 2363
+rect 1241 1975 1247 2351
+rect 1281 1975 1287 2351
+rect 1241 1963 1287 1975
+rect -1231 1925 -1139 1931
+rect -1231 1891 -1219 1925
+rect -1151 1891 -1139 1925
+rect -1231 1885 -1139 1891
+rect -1073 1925 -981 1931
+rect -1073 1891 -1061 1925
+rect -993 1891 -981 1925
+rect -1073 1885 -981 1891
+rect -915 1925 -823 1931
+rect -915 1891 -903 1925
+rect -835 1891 -823 1925
+rect -915 1885 -823 1891
+rect -757 1925 -665 1931
+rect -757 1891 -745 1925
+rect -677 1891 -665 1925
+rect -757 1885 -665 1891
+rect -599 1925 -507 1931
+rect -599 1891 -587 1925
+rect -519 1891 -507 1925
+rect -599 1885 -507 1891
+rect -441 1925 -349 1931
+rect -441 1891 -429 1925
+rect -361 1891 -349 1925
+rect -441 1885 -349 1891
+rect -283 1925 -191 1931
+rect -283 1891 -271 1925
+rect -203 1891 -191 1925
+rect -283 1885 -191 1891
+rect -125 1925 -33 1931
+rect -125 1891 -113 1925
+rect -45 1891 -33 1925
+rect -125 1885 -33 1891
+rect 33 1925 125 1931
+rect 33 1891 45 1925
+rect 113 1891 125 1925
+rect 33 1885 125 1891
+rect 191 1925 283 1931
+rect 191 1891 203 1925
+rect 271 1891 283 1925
+rect 191 1885 283 1891
+rect 349 1925 441 1931
+rect 349 1891 361 1925
+rect 429 1891 441 1925
+rect 349 1885 441 1891
+rect 507 1925 599 1931
+rect 507 1891 519 1925
+rect 587 1891 599 1925
+rect 507 1885 599 1891
+rect 665 1925 757 1931
+rect 665 1891 677 1925
+rect 745 1891 757 1925
+rect 665 1885 757 1891
+rect 823 1925 915 1931
+rect 823 1891 835 1925
+rect 903 1891 915 1925
+rect 823 1885 915 1891
+rect 981 1925 1073 1931
+rect 981 1891 993 1925
+rect 1061 1891 1073 1925
+rect 981 1885 1073 1891
+rect 1139 1925 1231 1931
+rect 1139 1891 1151 1925
+rect 1219 1891 1231 1925
+rect 1139 1885 1231 1891
+rect -1231 1817 -1139 1823
+rect -1231 1783 -1219 1817
+rect -1151 1783 -1139 1817
+rect -1231 1777 -1139 1783
+rect -1073 1817 -981 1823
+rect -1073 1783 -1061 1817
+rect -993 1783 -981 1817
+rect -1073 1777 -981 1783
+rect -915 1817 -823 1823
+rect -915 1783 -903 1817
+rect -835 1783 -823 1817
+rect -915 1777 -823 1783
+rect -757 1817 -665 1823
+rect -757 1783 -745 1817
+rect -677 1783 -665 1817
+rect -757 1777 -665 1783
+rect -599 1817 -507 1823
+rect -599 1783 -587 1817
+rect -519 1783 -507 1817
+rect -599 1777 -507 1783
+rect -441 1817 -349 1823
+rect -441 1783 -429 1817
+rect -361 1783 -349 1817
+rect -441 1777 -349 1783
+rect -283 1817 -191 1823
+rect -283 1783 -271 1817
+rect -203 1783 -191 1817
+rect -283 1777 -191 1783
+rect -125 1817 -33 1823
+rect -125 1783 -113 1817
+rect -45 1783 -33 1817
+rect -125 1777 -33 1783
+rect 33 1817 125 1823
+rect 33 1783 45 1817
+rect 113 1783 125 1817
+rect 33 1777 125 1783
+rect 191 1817 283 1823
+rect 191 1783 203 1817
+rect 271 1783 283 1817
+rect 191 1777 283 1783
+rect 349 1817 441 1823
+rect 349 1783 361 1817
+rect 429 1783 441 1817
+rect 349 1777 441 1783
+rect 507 1817 599 1823
+rect 507 1783 519 1817
+rect 587 1783 599 1817
+rect 507 1777 599 1783
+rect 665 1817 757 1823
+rect 665 1783 677 1817
+rect 745 1783 757 1817
+rect 665 1777 757 1783
+rect 823 1817 915 1823
+rect 823 1783 835 1817
+rect 903 1783 915 1817
+rect 823 1777 915 1783
+rect 981 1817 1073 1823
+rect 981 1783 993 1817
+rect 1061 1783 1073 1817
+rect 981 1777 1073 1783
+rect 1139 1817 1231 1823
+rect 1139 1783 1151 1817
+rect 1219 1783 1231 1817
+rect 1139 1777 1231 1783
+rect -1287 1733 -1241 1745
+rect -1287 1357 -1281 1733
+rect -1247 1357 -1241 1733
+rect -1287 1345 -1241 1357
+rect -1129 1733 -1083 1745
+rect -1129 1357 -1123 1733
+rect -1089 1357 -1083 1733
+rect -1129 1345 -1083 1357
+rect -971 1733 -925 1745
+rect -971 1357 -965 1733
+rect -931 1357 -925 1733
+rect -971 1345 -925 1357
+rect -813 1733 -767 1745
+rect -813 1357 -807 1733
+rect -773 1357 -767 1733
+rect -813 1345 -767 1357
+rect -655 1733 -609 1745
+rect -655 1357 -649 1733
+rect -615 1357 -609 1733
+rect -655 1345 -609 1357
+rect -497 1733 -451 1745
+rect -497 1357 -491 1733
+rect -457 1357 -451 1733
+rect -497 1345 -451 1357
+rect -339 1733 -293 1745
+rect -339 1357 -333 1733
+rect -299 1357 -293 1733
+rect -339 1345 -293 1357
+rect -181 1733 -135 1745
+rect -181 1357 -175 1733
+rect -141 1357 -135 1733
+rect -181 1345 -135 1357
+rect -23 1733 23 1745
+rect -23 1357 -17 1733
+rect 17 1357 23 1733
+rect -23 1345 23 1357
+rect 135 1733 181 1745
+rect 135 1357 141 1733
+rect 175 1357 181 1733
+rect 135 1345 181 1357
+rect 293 1733 339 1745
+rect 293 1357 299 1733
+rect 333 1357 339 1733
+rect 293 1345 339 1357
+rect 451 1733 497 1745
+rect 451 1357 457 1733
+rect 491 1357 497 1733
+rect 451 1345 497 1357
+rect 609 1733 655 1745
+rect 609 1357 615 1733
+rect 649 1357 655 1733
+rect 609 1345 655 1357
+rect 767 1733 813 1745
+rect 767 1357 773 1733
+rect 807 1357 813 1733
+rect 767 1345 813 1357
+rect 925 1733 971 1745
+rect 925 1357 931 1733
+rect 965 1357 971 1733
+rect 925 1345 971 1357
+rect 1083 1733 1129 1745
+rect 1083 1357 1089 1733
+rect 1123 1357 1129 1733
+rect 1083 1345 1129 1357
+rect 1241 1733 1287 1745
+rect 1241 1357 1247 1733
+rect 1281 1357 1287 1733
+rect 1241 1345 1287 1357
+rect -1231 1307 -1139 1313
+rect -1231 1273 -1219 1307
+rect -1151 1273 -1139 1307
+rect -1231 1267 -1139 1273
+rect -1073 1307 -981 1313
+rect -1073 1273 -1061 1307
+rect -993 1273 -981 1307
+rect -1073 1267 -981 1273
+rect -915 1307 -823 1313
+rect -915 1273 -903 1307
+rect -835 1273 -823 1307
+rect -915 1267 -823 1273
+rect -757 1307 -665 1313
+rect -757 1273 -745 1307
+rect -677 1273 -665 1307
+rect -757 1267 -665 1273
+rect -599 1307 -507 1313
+rect -599 1273 -587 1307
+rect -519 1273 -507 1307
+rect -599 1267 -507 1273
+rect -441 1307 -349 1313
+rect -441 1273 -429 1307
+rect -361 1273 -349 1307
+rect -441 1267 -349 1273
+rect -283 1307 -191 1313
+rect -283 1273 -271 1307
+rect -203 1273 -191 1307
+rect -283 1267 -191 1273
+rect -125 1307 -33 1313
+rect -125 1273 -113 1307
+rect -45 1273 -33 1307
+rect -125 1267 -33 1273
+rect 33 1307 125 1313
+rect 33 1273 45 1307
+rect 113 1273 125 1307
+rect 33 1267 125 1273
+rect 191 1307 283 1313
+rect 191 1273 203 1307
+rect 271 1273 283 1307
+rect 191 1267 283 1273
+rect 349 1307 441 1313
+rect 349 1273 361 1307
+rect 429 1273 441 1307
+rect 349 1267 441 1273
+rect 507 1307 599 1313
+rect 507 1273 519 1307
+rect 587 1273 599 1307
+rect 507 1267 599 1273
+rect 665 1307 757 1313
+rect 665 1273 677 1307
+rect 745 1273 757 1307
+rect 665 1267 757 1273
+rect 823 1307 915 1313
+rect 823 1273 835 1307
+rect 903 1273 915 1307
+rect 823 1267 915 1273
+rect 981 1307 1073 1313
+rect 981 1273 993 1307
+rect 1061 1273 1073 1307
+rect 981 1267 1073 1273
+rect 1139 1307 1231 1313
+rect 1139 1273 1151 1307
+rect 1219 1273 1231 1307
+rect 1139 1267 1231 1273
+rect -1231 1199 -1139 1205
+rect -1231 1165 -1219 1199
+rect -1151 1165 -1139 1199
+rect -1231 1159 -1139 1165
+rect -1073 1199 -981 1205
+rect -1073 1165 -1061 1199
+rect -993 1165 -981 1199
+rect -1073 1159 -981 1165
+rect -915 1199 -823 1205
+rect -915 1165 -903 1199
+rect -835 1165 -823 1199
+rect -915 1159 -823 1165
+rect -757 1199 -665 1205
+rect -757 1165 -745 1199
+rect -677 1165 -665 1199
+rect -757 1159 -665 1165
+rect -599 1199 -507 1205
+rect -599 1165 -587 1199
+rect -519 1165 -507 1199
+rect -599 1159 -507 1165
+rect -441 1199 -349 1205
+rect -441 1165 -429 1199
+rect -361 1165 -349 1199
+rect -441 1159 -349 1165
+rect -283 1199 -191 1205
+rect -283 1165 -271 1199
+rect -203 1165 -191 1199
+rect -283 1159 -191 1165
+rect -125 1199 -33 1205
+rect -125 1165 -113 1199
+rect -45 1165 -33 1199
+rect -125 1159 -33 1165
+rect 33 1199 125 1205
+rect 33 1165 45 1199
+rect 113 1165 125 1199
+rect 33 1159 125 1165
+rect 191 1199 283 1205
+rect 191 1165 203 1199
+rect 271 1165 283 1199
+rect 191 1159 283 1165
+rect 349 1199 441 1205
+rect 349 1165 361 1199
+rect 429 1165 441 1199
+rect 349 1159 441 1165
+rect 507 1199 599 1205
+rect 507 1165 519 1199
+rect 587 1165 599 1199
+rect 507 1159 599 1165
+rect 665 1199 757 1205
+rect 665 1165 677 1199
+rect 745 1165 757 1199
+rect 665 1159 757 1165
+rect 823 1199 915 1205
+rect 823 1165 835 1199
+rect 903 1165 915 1199
+rect 823 1159 915 1165
+rect 981 1199 1073 1205
+rect 981 1165 993 1199
+rect 1061 1165 1073 1199
+rect 981 1159 1073 1165
+rect 1139 1199 1231 1205
+rect 1139 1165 1151 1199
+rect 1219 1165 1231 1199
+rect 1139 1159 1231 1165
+rect -1287 1115 -1241 1127
+rect -1287 739 -1281 1115
+rect -1247 739 -1241 1115
+rect -1287 727 -1241 739
+rect -1129 1115 -1083 1127
+rect -1129 739 -1123 1115
+rect -1089 739 -1083 1115
+rect -1129 727 -1083 739
+rect -971 1115 -925 1127
+rect -971 739 -965 1115
+rect -931 739 -925 1115
+rect -971 727 -925 739
+rect -813 1115 -767 1127
+rect -813 739 -807 1115
+rect -773 739 -767 1115
+rect -813 727 -767 739
+rect -655 1115 -609 1127
+rect -655 739 -649 1115
+rect -615 739 -609 1115
+rect -655 727 -609 739
+rect -497 1115 -451 1127
+rect -497 739 -491 1115
+rect -457 739 -451 1115
+rect -497 727 -451 739
+rect -339 1115 -293 1127
+rect -339 739 -333 1115
+rect -299 739 -293 1115
+rect -339 727 -293 739
+rect -181 1115 -135 1127
+rect -181 739 -175 1115
+rect -141 739 -135 1115
+rect -181 727 -135 739
+rect -23 1115 23 1127
+rect -23 739 -17 1115
+rect 17 739 23 1115
+rect -23 727 23 739
+rect 135 1115 181 1127
+rect 135 739 141 1115
+rect 175 739 181 1115
+rect 135 727 181 739
+rect 293 1115 339 1127
+rect 293 739 299 1115
+rect 333 739 339 1115
+rect 293 727 339 739
+rect 451 1115 497 1127
+rect 451 739 457 1115
+rect 491 739 497 1115
+rect 451 727 497 739
+rect 609 1115 655 1127
+rect 609 739 615 1115
+rect 649 739 655 1115
+rect 609 727 655 739
+rect 767 1115 813 1127
+rect 767 739 773 1115
+rect 807 739 813 1115
+rect 767 727 813 739
+rect 925 1115 971 1127
+rect 925 739 931 1115
+rect 965 739 971 1115
+rect 925 727 971 739
+rect 1083 1115 1129 1127
+rect 1083 739 1089 1115
+rect 1123 739 1129 1115
+rect 1083 727 1129 739
+rect 1241 1115 1287 1127
+rect 1241 739 1247 1115
+rect 1281 739 1287 1115
+rect 1241 727 1287 739
+rect -1231 689 -1139 695
+rect -1231 655 -1219 689
+rect -1151 655 -1139 689
+rect -1231 649 -1139 655
+rect -1073 689 -981 695
+rect -1073 655 -1061 689
+rect -993 655 -981 689
+rect -1073 649 -981 655
+rect -915 689 -823 695
+rect -915 655 -903 689
+rect -835 655 -823 689
+rect -915 649 -823 655
+rect -757 689 -665 695
+rect -757 655 -745 689
+rect -677 655 -665 689
+rect -757 649 -665 655
+rect -599 689 -507 695
+rect -599 655 -587 689
+rect -519 655 -507 689
+rect -599 649 -507 655
+rect -441 689 -349 695
+rect -441 655 -429 689
+rect -361 655 -349 689
+rect -441 649 -349 655
+rect -283 689 -191 695
+rect -283 655 -271 689
+rect -203 655 -191 689
+rect -283 649 -191 655
+rect -125 689 -33 695
+rect -125 655 -113 689
+rect -45 655 -33 689
+rect -125 649 -33 655
+rect 33 689 125 695
+rect 33 655 45 689
+rect 113 655 125 689
+rect 33 649 125 655
+rect 191 689 283 695
+rect 191 655 203 689
+rect 271 655 283 689
+rect 191 649 283 655
+rect 349 689 441 695
+rect 349 655 361 689
+rect 429 655 441 689
+rect 349 649 441 655
+rect 507 689 599 695
+rect 507 655 519 689
+rect 587 655 599 689
+rect 507 649 599 655
+rect 665 689 757 695
+rect 665 655 677 689
+rect 745 655 757 689
+rect 665 649 757 655
+rect 823 689 915 695
+rect 823 655 835 689
+rect 903 655 915 689
+rect 823 649 915 655
+rect 981 689 1073 695
+rect 981 655 993 689
+rect 1061 655 1073 689
+rect 981 649 1073 655
+rect 1139 689 1231 695
+rect 1139 655 1151 689
+rect 1219 655 1231 689
+rect 1139 649 1231 655
+rect -1231 581 -1139 587
+rect -1231 547 -1219 581
+rect -1151 547 -1139 581
+rect -1231 541 -1139 547
+rect -1073 581 -981 587
+rect -1073 547 -1061 581
+rect -993 547 -981 581
+rect -1073 541 -981 547
+rect -915 581 -823 587
+rect -915 547 -903 581
+rect -835 547 -823 581
+rect -915 541 -823 547
+rect -757 581 -665 587
+rect -757 547 -745 581
+rect -677 547 -665 581
+rect -757 541 -665 547
+rect -599 581 -507 587
+rect -599 547 -587 581
+rect -519 547 -507 581
+rect -599 541 -507 547
+rect -441 581 -349 587
+rect -441 547 -429 581
+rect -361 547 -349 581
+rect -441 541 -349 547
+rect -283 581 -191 587
+rect -283 547 -271 581
+rect -203 547 -191 581
+rect -283 541 -191 547
+rect -125 581 -33 587
+rect -125 547 -113 581
+rect -45 547 -33 581
+rect -125 541 -33 547
+rect 33 581 125 587
+rect 33 547 45 581
+rect 113 547 125 581
+rect 33 541 125 547
+rect 191 581 283 587
+rect 191 547 203 581
+rect 271 547 283 581
+rect 191 541 283 547
+rect 349 581 441 587
+rect 349 547 361 581
+rect 429 547 441 581
+rect 349 541 441 547
+rect 507 581 599 587
+rect 507 547 519 581
+rect 587 547 599 581
+rect 507 541 599 547
+rect 665 581 757 587
+rect 665 547 677 581
+rect 745 547 757 581
+rect 665 541 757 547
+rect 823 581 915 587
+rect 823 547 835 581
+rect 903 547 915 581
+rect 823 541 915 547
+rect 981 581 1073 587
+rect 981 547 993 581
+rect 1061 547 1073 581
+rect 981 541 1073 547
+rect 1139 581 1231 587
+rect 1139 547 1151 581
+rect 1219 547 1231 581
+rect 1139 541 1231 547
+rect -1287 497 -1241 509
+rect -1287 121 -1281 497
+rect -1247 121 -1241 497
+rect -1287 109 -1241 121
+rect -1129 497 -1083 509
+rect -1129 121 -1123 497
+rect -1089 121 -1083 497
+rect -1129 109 -1083 121
+rect -971 497 -925 509
+rect -971 121 -965 497
+rect -931 121 -925 497
+rect -971 109 -925 121
+rect -813 497 -767 509
+rect -813 121 -807 497
+rect -773 121 -767 497
+rect -813 109 -767 121
+rect -655 497 -609 509
+rect -655 121 -649 497
+rect -615 121 -609 497
+rect -655 109 -609 121
+rect -497 497 -451 509
+rect -497 121 -491 497
+rect -457 121 -451 497
+rect -497 109 -451 121
+rect -339 497 -293 509
+rect -339 121 -333 497
+rect -299 121 -293 497
+rect -339 109 -293 121
+rect -181 497 -135 509
+rect -181 121 -175 497
+rect -141 121 -135 497
+rect -181 109 -135 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 135 497 181 509
+rect 135 121 141 497
+rect 175 121 181 497
+rect 135 109 181 121
+rect 293 497 339 509
+rect 293 121 299 497
+rect 333 121 339 497
+rect 293 109 339 121
+rect 451 497 497 509
+rect 451 121 457 497
+rect 491 121 497 497
+rect 451 109 497 121
+rect 609 497 655 509
+rect 609 121 615 497
+rect 649 121 655 497
+rect 609 109 655 121
+rect 767 497 813 509
+rect 767 121 773 497
+rect 807 121 813 497
+rect 767 109 813 121
+rect 925 497 971 509
+rect 925 121 931 497
+rect 965 121 971 497
+rect 925 109 971 121
+rect 1083 497 1129 509
+rect 1083 121 1089 497
+rect 1123 121 1129 497
+rect 1083 109 1129 121
+rect 1241 497 1287 509
+rect 1241 121 1247 497
+rect 1281 121 1287 497
+rect 1241 109 1287 121
+rect -1231 71 -1139 77
+rect -1231 37 -1219 71
+rect -1151 37 -1139 71
+rect -1231 31 -1139 37
+rect -1073 71 -981 77
+rect -1073 37 -1061 71
+rect -993 37 -981 71
+rect -1073 31 -981 37
+rect -915 71 -823 77
+rect -915 37 -903 71
+rect -835 37 -823 71
+rect -915 31 -823 37
+rect -757 71 -665 77
+rect -757 37 -745 71
+rect -677 37 -665 71
+rect -757 31 -665 37
+rect -599 71 -507 77
+rect -599 37 -587 71
+rect -519 37 -507 71
+rect -599 31 -507 37
+rect -441 71 -349 77
+rect -441 37 -429 71
+rect -361 37 -349 71
+rect -441 31 -349 37
+rect -283 71 -191 77
+rect -283 37 -271 71
+rect -203 37 -191 71
+rect -283 31 -191 37
+rect -125 71 -33 77
+rect -125 37 -113 71
+rect -45 37 -33 71
+rect -125 31 -33 37
+rect 33 71 125 77
+rect 33 37 45 71
+rect 113 37 125 71
+rect 33 31 125 37
+rect 191 71 283 77
+rect 191 37 203 71
+rect 271 37 283 71
+rect 191 31 283 37
+rect 349 71 441 77
+rect 349 37 361 71
+rect 429 37 441 71
+rect 349 31 441 37
+rect 507 71 599 77
+rect 507 37 519 71
+rect 587 37 599 71
+rect 507 31 599 37
+rect 665 71 757 77
+rect 665 37 677 71
+rect 745 37 757 71
+rect 665 31 757 37
+rect 823 71 915 77
+rect 823 37 835 71
+rect 903 37 915 71
+rect 823 31 915 37
+rect 981 71 1073 77
+rect 981 37 993 71
+rect 1061 37 1073 71
+rect 981 31 1073 37
+rect 1139 71 1231 77
+rect 1139 37 1151 71
+rect 1219 37 1231 71
+rect 1139 31 1231 37
+rect -1231 -37 -1139 -31
+rect -1231 -71 -1219 -37
+rect -1151 -71 -1139 -37
+rect -1231 -77 -1139 -71
+rect -1073 -37 -981 -31
+rect -1073 -71 -1061 -37
+rect -993 -71 -981 -37
+rect -1073 -77 -981 -71
+rect -915 -37 -823 -31
+rect -915 -71 -903 -37
+rect -835 -71 -823 -37
+rect -915 -77 -823 -71
+rect -757 -37 -665 -31
+rect -757 -71 -745 -37
+rect -677 -71 -665 -37
+rect -757 -77 -665 -71
+rect -599 -37 -507 -31
+rect -599 -71 -587 -37
+rect -519 -71 -507 -37
+rect -599 -77 -507 -71
+rect -441 -37 -349 -31
+rect -441 -71 -429 -37
+rect -361 -71 -349 -37
+rect -441 -77 -349 -71
+rect -283 -37 -191 -31
+rect -283 -71 -271 -37
+rect -203 -71 -191 -37
+rect -283 -77 -191 -71
+rect -125 -37 -33 -31
+rect -125 -71 -113 -37
+rect -45 -71 -33 -37
+rect -125 -77 -33 -71
+rect 33 -37 125 -31
+rect 33 -71 45 -37
+rect 113 -71 125 -37
+rect 33 -77 125 -71
+rect 191 -37 283 -31
+rect 191 -71 203 -37
+rect 271 -71 283 -37
+rect 191 -77 283 -71
+rect 349 -37 441 -31
+rect 349 -71 361 -37
+rect 429 -71 441 -37
+rect 349 -77 441 -71
+rect 507 -37 599 -31
+rect 507 -71 519 -37
+rect 587 -71 599 -37
+rect 507 -77 599 -71
+rect 665 -37 757 -31
+rect 665 -71 677 -37
+rect 745 -71 757 -37
+rect 665 -77 757 -71
+rect 823 -37 915 -31
+rect 823 -71 835 -37
+rect 903 -71 915 -37
+rect 823 -77 915 -71
+rect 981 -37 1073 -31
+rect 981 -71 993 -37
+rect 1061 -71 1073 -37
+rect 981 -77 1073 -71
+rect 1139 -37 1231 -31
+rect 1139 -71 1151 -37
+rect 1219 -71 1231 -37
+rect 1139 -77 1231 -71
+rect -1287 -121 -1241 -109
+rect -1287 -497 -1281 -121
+rect -1247 -497 -1241 -121
+rect -1287 -509 -1241 -497
+rect -1129 -121 -1083 -109
+rect -1129 -497 -1123 -121
+rect -1089 -497 -1083 -121
+rect -1129 -509 -1083 -497
+rect -971 -121 -925 -109
+rect -971 -497 -965 -121
+rect -931 -497 -925 -121
+rect -971 -509 -925 -497
+rect -813 -121 -767 -109
+rect -813 -497 -807 -121
+rect -773 -497 -767 -121
+rect -813 -509 -767 -497
+rect -655 -121 -609 -109
+rect -655 -497 -649 -121
+rect -615 -497 -609 -121
+rect -655 -509 -609 -497
+rect -497 -121 -451 -109
+rect -497 -497 -491 -121
+rect -457 -497 -451 -121
+rect -497 -509 -451 -497
+rect -339 -121 -293 -109
+rect -339 -497 -333 -121
+rect -299 -497 -293 -121
+rect -339 -509 -293 -497
+rect -181 -121 -135 -109
+rect -181 -497 -175 -121
+rect -141 -497 -135 -121
+rect -181 -509 -135 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 135 -121 181 -109
+rect 135 -497 141 -121
+rect 175 -497 181 -121
+rect 135 -509 181 -497
+rect 293 -121 339 -109
+rect 293 -497 299 -121
+rect 333 -497 339 -121
+rect 293 -509 339 -497
+rect 451 -121 497 -109
+rect 451 -497 457 -121
+rect 491 -497 497 -121
+rect 451 -509 497 -497
+rect 609 -121 655 -109
+rect 609 -497 615 -121
+rect 649 -497 655 -121
+rect 609 -509 655 -497
+rect 767 -121 813 -109
+rect 767 -497 773 -121
+rect 807 -497 813 -121
+rect 767 -509 813 -497
+rect 925 -121 971 -109
+rect 925 -497 931 -121
+rect 965 -497 971 -121
+rect 925 -509 971 -497
+rect 1083 -121 1129 -109
+rect 1083 -497 1089 -121
+rect 1123 -497 1129 -121
+rect 1083 -509 1129 -497
+rect 1241 -121 1287 -109
+rect 1241 -497 1247 -121
+rect 1281 -497 1287 -121
+rect 1241 -509 1287 -497
+rect -1231 -547 -1139 -541
+rect -1231 -581 -1219 -547
+rect -1151 -581 -1139 -547
+rect -1231 -587 -1139 -581
+rect -1073 -547 -981 -541
+rect -1073 -581 -1061 -547
+rect -993 -581 -981 -547
+rect -1073 -587 -981 -581
+rect -915 -547 -823 -541
+rect -915 -581 -903 -547
+rect -835 -581 -823 -547
+rect -915 -587 -823 -581
+rect -757 -547 -665 -541
+rect -757 -581 -745 -547
+rect -677 -581 -665 -547
+rect -757 -587 -665 -581
+rect -599 -547 -507 -541
+rect -599 -581 -587 -547
+rect -519 -581 -507 -547
+rect -599 -587 -507 -581
+rect -441 -547 -349 -541
+rect -441 -581 -429 -547
+rect -361 -581 -349 -547
+rect -441 -587 -349 -581
+rect -283 -547 -191 -541
+rect -283 -581 -271 -547
+rect -203 -581 -191 -547
+rect -283 -587 -191 -581
+rect -125 -547 -33 -541
+rect -125 -581 -113 -547
+rect -45 -581 -33 -547
+rect -125 -587 -33 -581
+rect 33 -547 125 -541
+rect 33 -581 45 -547
+rect 113 -581 125 -547
+rect 33 -587 125 -581
+rect 191 -547 283 -541
+rect 191 -581 203 -547
+rect 271 -581 283 -547
+rect 191 -587 283 -581
+rect 349 -547 441 -541
+rect 349 -581 361 -547
+rect 429 -581 441 -547
+rect 349 -587 441 -581
+rect 507 -547 599 -541
+rect 507 -581 519 -547
+rect 587 -581 599 -547
+rect 507 -587 599 -581
+rect 665 -547 757 -541
+rect 665 -581 677 -547
+rect 745 -581 757 -547
+rect 665 -587 757 -581
+rect 823 -547 915 -541
+rect 823 -581 835 -547
+rect 903 -581 915 -547
+rect 823 -587 915 -581
+rect 981 -547 1073 -541
+rect 981 -581 993 -547
+rect 1061 -581 1073 -547
+rect 981 -587 1073 -581
+rect 1139 -547 1231 -541
+rect 1139 -581 1151 -547
+rect 1219 -581 1231 -547
+rect 1139 -587 1231 -581
+rect -1231 -655 -1139 -649
+rect -1231 -689 -1219 -655
+rect -1151 -689 -1139 -655
+rect -1231 -695 -1139 -689
+rect -1073 -655 -981 -649
+rect -1073 -689 -1061 -655
+rect -993 -689 -981 -655
+rect -1073 -695 -981 -689
+rect -915 -655 -823 -649
+rect -915 -689 -903 -655
+rect -835 -689 -823 -655
+rect -915 -695 -823 -689
+rect -757 -655 -665 -649
+rect -757 -689 -745 -655
+rect -677 -689 -665 -655
+rect -757 -695 -665 -689
+rect -599 -655 -507 -649
+rect -599 -689 -587 -655
+rect -519 -689 -507 -655
+rect -599 -695 -507 -689
+rect -441 -655 -349 -649
+rect -441 -689 -429 -655
+rect -361 -689 -349 -655
+rect -441 -695 -349 -689
+rect -283 -655 -191 -649
+rect -283 -689 -271 -655
+rect -203 -689 -191 -655
+rect -283 -695 -191 -689
+rect -125 -655 -33 -649
+rect -125 -689 -113 -655
+rect -45 -689 -33 -655
+rect -125 -695 -33 -689
+rect 33 -655 125 -649
+rect 33 -689 45 -655
+rect 113 -689 125 -655
+rect 33 -695 125 -689
+rect 191 -655 283 -649
+rect 191 -689 203 -655
+rect 271 -689 283 -655
+rect 191 -695 283 -689
+rect 349 -655 441 -649
+rect 349 -689 361 -655
+rect 429 -689 441 -655
+rect 349 -695 441 -689
+rect 507 -655 599 -649
+rect 507 -689 519 -655
+rect 587 -689 599 -655
+rect 507 -695 599 -689
+rect 665 -655 757 -649
+rect 665 -689 677 -655
+rect 745 -689 757 -655
+rect 665 -695 757 -689
+rect 823 -655 915 -649
+rect 823 -689 835 -655
+rect 903 -689 915 -655
+rect 823 -695 915 -689
+rect 981 -655 1073 -649
+rect 981 -689 993 -655
+rect 1061 -689 1073 -655
+rect 981 -695 1073 -689
+rect 1139 -655 1231 -649
+rect 1139 -689 1151 -655
+rect 1219 -689 1231 -655
+rect 1139 -695 1231 -689
+rect -1287 -739 -1241 -727
+rect -1287 -1115 -1281 -739
+rect -1247 -1115 -1241 -739
+rect -1287 -1127 -1241 -1115
+rect -1129 -739 -1083 -727
+rect -1129 -1115 -1123 -739
+rect -1089 -1115 -1083 -739
+rect -1129 -1127 -1083 -1115
+rect -971 -739 -925 -727
+rect -971 -1115 -965 -739
+rect -931 -1115 -925 -739
+rect -971 -1127 -925 -1115
+rect -813 -739 -767 -727
+rect -813 -1115 -807 -739
+rect -773 -1115 -767 -739
+rect -813 -1127 -767 -1115
+rect -655 -739 -609 -727
+rect -655 -1115 -649 -739
+rect -615 -1115 -609 -739
+rect -655 -1127 -609 -1115
+rect -497 -739 -451 -727
+rect -497 -1115 -491 -739
+rect -457 -1115 -451 -739
+rect -497 -1127 -451 -1115
+rect -339 -739 -293 -727
+rect -339 -1115 -333 -739
+rect -299 -1115 -293 -739
+rect -339 -1127 -293 -1115
+rect -181 -739 -135 -727
+rect -181 -1115 -175 -739
+rect -141 -1115 -135 -739
+rect -181 -1127 -135 -1115
+rect -23 -739 23 -727
+rect -23 -1115 -17 -739
+rect 17 -1115 23 -739
+rect -23 -1127 23 -1115
+rect 135 -739 181 -727
+rect 135 -1115 141 -739
+rect 175 -1115 181 -739
+rect 135 -1127 181 -1115
+rect 293 -739 339 -727
+rect 293 -1115 299 -739
+rect 333 -1115 339 -739
+rect 293 -1127 339 -1115
+rect 451 -739 497 -727
+rect 451 -1115 457 -739
+rect 491 -1115 497 -739
+rect 451 -1127 497 -1115
+rect 609 -739 655 -727
+rect 609 -1115 615 -739
+rect 649 -1115 655 -739
+rect 609 -1127 655 -1115
+rect 767 -739 813 -727
+rect 767 -1115 773 -739
+rect 807 -1115 813 -739
+rect 767 -1127 813 -1115
+rect 925 -739 971 -727
+rect 925 -1115 931 -739
+rect 965 -1115 971 -739
+rect 925 -1127 971 -1115
+rect 1083 -739 1129 -727
+rect 1083 -1115 1089 -739
+rect 1123 -1115 1129 -739
+rect 1083 -1127 1129 -1115
+rect 1241 -739 1287 -727
+rect 1241 -1115 1247 -739
+rect 1281 -1115 1287 -739
+rect 1241 -1127 1287 -1115
+rect -1231 -1165 -1139 -1159
+rect -1231 -1199 -1219 -1165
+rect -1151 -1199 -1139 -1165
+rect -1231 -1205 -1139 -1199
+rect -1073 -1165 -981 -1159
+rect -1073 -1199 -1061 -1165
+rect -993 -1199 -981 -1165
+rect -1073 -1205 -981 -1199
+rect -915 -1165 -823 -1159
+rect -915 -1199 -903 -1165
+rect -835 -1199 -823 -1165
+rect -915 -1205 -823 -1199
+rect -757 -1165 -665 -1159
+rect -757 -1199 -745 -1165
+rect -677 -1199 -665 -1165
+rect -757 -1205 -665 -1199
+rect -599 -1165 -507 -1159
+rect -599 -1199 -587 -1165
+rect -519 -1199 -507 -1165
+rect -599 -1205 -507 -1199
+rect -441 -1165 -349 -1159
+rect -441 -1199 -429 -1165
+rect -361 -1199 -349 -1165
+rect -441 -1205 -349 -1199
+rect -283 -1165 -191 -1159
+rect -283 -1199 -271 -1165
+rect -203 -1199 -191 -1165
+rect -283 -1205 -191 -1199
+rect -125 -1165 -33 -1159
+rect -125 -1199 -113 -1165
+rect -45 -1199 -33 -1165
+rect -125 -1205 -33 -1199
+rect 33 -1165 125 -1159
+rect 33 -1199 45 -1165
+rect 113 -1199 125 -1165
+rect 33 -1205 125 -1199
+rect 191 -1165 283 -1159
+rect 191 -1199 203 -1165
+rect 271 -1199 283 -1165
+rect 191 -1205 283 -1199
+rect 349 -1165 441 -1159
+rect 349 -1199 361 -1165
+rect 429 -1199 441 -1165
+rect 349 -1205 441 -1199
+rect 507 -1165 599 -1159
+rect 507 -1199 519 -1165
+rect 587 -1199 599 -1165
+rect 507 -1205 599 -1199
+rect 665 -1165 757 -1159
+rect 665 -1199 677 -1165
+rect 745 -1199 757 -1165
+rect 665 -1205 757 -1199
+rect 823 -1165 915 -1159
+rect 823 -1199 835 -1165
+rect 903 -1199 915 -1165
+rect 823 -1205 915 -1199
+rect 981 -1165 1073 -1159
+rect 981 -1199 993 -1165
+rect 1061 -1199 1073 -1165
+rect 981 -1205 1073 -1199
+rect 1139 -1165 1231 -1159
+rect 1139 -1199 1151 -1165
+rect 1219 -1199 1231 -1165
+rect 1139 -1205 1231 -1199
+rect -1231 -1273 -1139 -1267
+rect -1231 -1307 -1219 -1273
+rect -1151 -1307 -1139 -1273
+rect -1231 -1313 -1139 -1307
+rect -1073 -1273 -981 -1267
+rect -1073 -1307 -1061 -1273
+rect -993 -1307 -981 -1273
+rect -1073 -1313 -981 -1307
+rect -915 -1273 -823 -1267
+rect -915 -1307 -903 -1273
+rect -835 -1307 -823 -1273
+rect -915 -1313 -823 -1307
+rect -757 -1273 -665 -1267
+rect -757 -1307 -745 -1273
+rect -677 -1307 -665 -1273
+rect -757 -1313 -665 -1307
+rect -599 -1273 -507 -1267
+rect -599 -1307 -587 -1273
+rect -519 -1307 -507 -1273
+rect -599 -1313 -507 -1307
+rect -441 -1273 -349 -1267
+rect -441 -1307 -429 -1273
+rect -361 -1307 -349 -1273
+rect -441 -1313 -349 -1307
+rect -283 -1273 -191 -1267
+rect -283 -1307 -271 -1273
+rect -203 -1307 -191 -1273
+rect -283 -1313 -191 -1307
+rect -125 -1273 -33 -1267
+rect -125 -1307 -113 -1273
+rect -45 -1307 -33 -1273
+rect -125 -1313 -33 -1307
+rect 33 -1273 125 -1267
+rect 33 -1307 45 -1273
+rect 113 -1307 125 -1273
+rect 33 -1313 125 -1307
+rect 191 -1273 283 -1267
+rect 191 -1307 203 -1273
+rect 271 -1307 283 -1273
+rect 191 -1313 283 -1307
+rect 349 -1273 441 -1267
+rect 349 -1307 361 -1273
+rect 429 -1307 441 -1273
+rect 349 -1313 441 -1307
+rect 507 -1273 599 -1267
+rect 507 -1307 519 -1273
+rect 587 -1307 599 -1273
+rect 507 -1313 599 -1307
+rect 665 -1273 757 -1267
+rect 665 -1307 677 -1273
+rect 745 -1307 757 -1273
+rect 665 -1313 757 -1307
+rect 823 -1273 915 -1267
+rect 823 -1307 835 -1273
+rect 903 -1307 915 -1273
+rect 823 -1313 915 -1307
+rect 981 -1273 1073 -1267
+rect 981 -1307 993 -1273
+rect 1061 -1307 1073 -1273
+rect 981 -1313 1073 -1307
+rect 1139 -1273 1231 -1267
+rect 1139 -1307 1151 -1273
+rect 1219 -1307 1231 -1273
+rect 1139 -1313 1231 -1307
+rect -1287 -1357 -1241 -1345
+rect -1287 -1733 -1281 -1357
+rect -1247 -1733 -1241 -1357
+rect -1287 -1745 -1241 -1733
+rect -1129 -1357 -1083 -1345
+rect -1129 -1733 -1123 -1357
+rect -1089 -1733 -1083 -1357
+rect -1129 -1745 -1083 -1733
+rect -971 -1357 -925 -1345
+rect -971 -1733 -965 -1357
+rect -931 -1733 -925 -1357
+rect -971 -1745 -925 -1733
+rect -813 -1357 -767 -1345
+rect -813 -1733 -807 -1357
+rect -773 -1733 -767 -1357
+rect -813 -1745 -767 -1733
+rect -655 -1357 -609 -1345
+rect -655 -1733 -649 -1357
+rect -615 -1733 -609 -1357
+rect -655 -1745 -609 -1733
+rect -497 -1357 -451 -1345
+rect -497 -1733 -491 -1357
+rect -457 -1733 -451 -1357
+rect -497 -1745 -451 -1733
+rect -339 -1357 -293 -1345
+rect -339 -1733 -333 -1357
+rect -299 -1733 -293 -1357
+rect -339 -1745 -293 -1733
+rect -181 -1357 -135 -1345
+rect -181 -1733 -175 -1357
+rect -141 -1733 -135 -1357
+rect -181 -1745 -135 -1733
+rect -23 -1357 23 -1345
+rect -23 -1733 -17 -1357
+rect 17 -1733 23 -1357
+rect -23 -1745 23 -1733
+rect 135 -1357 181 -1345
+rect 135 -1733 141 -1357
+rect 175 -1733 181 -1357
+rect 135 -1745 181 -1733
+rect 293 -1357 339 -1345
+rect 293 -1733 299 -1357
+rect 333 -1733 339 -1357
+rect 293 -1745 339 -1733
+rect 451 -1357 497 -1345
+rect 451 -1733 457 -1357
+rect 491 -1733 497 -1357
+rect 451 -1745 497 -1733
+rect 609 -1357 655 -1345
+rect 609 -1733 615 -1357
+rect 649 -1733 655 -1357
+rect 609 -1745 655 -1733
+rect 767 -1357 813 -1345
+rect 767 -1733 773 -1357
+rect 807 -1733 813 -1357
+rect 767 -1745 813 -1733
+rect 925 -1357 971 -1345
+rect 925 -1733 931 -1357
+rect 965 -1733 971 -1357
+rect 925 -1745 971 -1733
+rect 1083 -1357 1129 -1345
+rect 1083 -1733 1089 -1357
+rect 1123 -1733 1129 -1357
+rect 1083 -1745 1129 -1733
+rect 1241 -1357 1287 -1345
+rect 1241 -1733 1247 -1357
+rect 1281 -1733 1287 -1357
+rect 1241 -1745 1287 -1733
+rect -1231 -1783 -1139 -1777
+rect -1231 -1817 -1219 -1783
+rect -1151 -1817 -1139 -1783
+rect -1231 -1823 -1139 -1817
+rect -1073 -1783 -981 -1777
+rect -1073 -1817 -1061 -1783
+rect -993 -1817 -981 -1783
+rect -1073 -1823 -981 -1817
+rect -915 -1783 -823 -1777
+rect -915 -1817 -903 -1783
+rect -835 -1817 -823 -1783
+rect -915 -1823 -823 -1817
+rect -757 -1783 -665 -1777
+rect -757 -1817 -745 -1783
+rect -677 -1817 -665 -1783
+rect -757 -1823 -665 -1817
+rect -599 -1783 -507 -1777
+rect -599 -1817 -587 -1783
+rect -519 -1817 -507 -1783
+rect -599 -1823 -507 -1817
+rect -441 -1783 -349 -1777
+rect -441 -1817 -429 -1783
+rect -361 -1817 -349 -1783
+rect -441 -1823 -349 -1817
+rect -283 -1783 -191 -1777
+rect -283 -1817 -271 -1783
+rect -203 -1817 -191 -1783
+rect -283 -1823 -191 -1817
+rect -125 -1783 -33 -1777
+rect -125 -1817 -113 -1783
+rect -45 -1817 -33 -1783
+rect -125 -1823 -33 -1817
+rect 33 -1783 125 -1777
+rect 33 -1817 45 -1783
+rect 113 -1817 125 -1783
+rect 33 -1823 125 -1817
+rect 191 -1783 283 -1777
+rect 191 -1817 203 -1783
+rect 271 -1817 283 -1783
+rect 191 -1823 283 -1817
+rect 349 -1783 441 -1777
+rect 349 -1817 361 -1783
+rect 429 -1817 441 -1783
+rect 349 -1823 441 -1817
+rect 507 -1783 599 -1777
+rect 507 -1817 519 -1783
+rect 587 -1817 599 -1783
+rect 507 -1823 599 -1817
+rect 665 -1783 757 -1777
+rect 665 -1817 677 -1783
+rect 745 -1817 757 -1783
+rect 665 -1823 757 -1817
+rect 823 -1783 915 -1777
+rect 823 -1817 835 -1783
+rect 903 -1817 915 -1783
+rect 823 -1823 915 -1817
+rect 981 -1783 1073 -1777
+rect 981 -1817 993 -1783
+rect 1061 -1817 1073 -1783
+rect 981 -1823 1073 -1817
+rect 1139 -1783 1231 -1777
+rect 1139 -1817 1151 -1783
+rect 1219 -1817 1231 -1783
+rect 1139 -1823 1231 -1817
+rect -1231 -1891 -1139 -1885
+rect -1231 -1925 -1219 -1891
+rect -1151 -1925 -1139 -1891
+rect -1231 -1931 -1139 -1925
+rect -1073 -1891 -981 -1885
+rect -1073 -1925 -1061 -1891
+rect -993 -1925 -981 -1891
+rect -1073 -1931 -981 -1925
+rect -915 -1891 -823 -1885
+rect -915 -1925 -903 -1891
+rect -835 -1925 -823 -1891
+rect -915 -1931 -823 -1925
+rect -757 -1891 -665 -1885
+rect -757 -1925 -745 -1891
+rect -677 -1925 -665 -1891
+rect -757 -1931 -665 -1925
+rect -599 -1891 -507 -1885
+rect -599 -1925 -587 -1891
+rect -519 -1925 -507 -1891
+rect -599 -1931 -507 -1925
+rect -441 -1891 -349 -1885
+rect -441 -1925 -429 -1891
+rect -361 -1925 -349 -1891
+rect -441 -1931 -349 -1925
+rect -283 -1891 -191 -1885
+rect -283 -1925 -271 -1891
+rect -203 -1925 -191 -1891
+rect -283 -1931 -191 -1925
+rect -125 -1891 -33 -1885
+rect -125 -1925 -113 -1891
+rect -45 -1925 -33 -1891
+rect -125 -1931 -33 -1925
+rect 33 -1891 125 -1885
+rect 33 -1925 45 -1891
+rect 113 -1925 125 -1891
+rect 33 -1931 125 -1925
+rect 191 -1891 283 -1885
+rect 191 -1925 203 -1891
+rect 271 -1925 283 -1891
+rect 191 -1931 283 -1925
+rect 349 -1891 441 -1885
+rect 349 -1925 361 -1891
+rect 429 -1925 441 -1891
+rect 349 -1931 441 -1925
+rect 507 -1891 599 -1885
+rect 507 -1925 519 -1891
+rect 587 -1925 599 -1891
+rect 507 -1931 599 -1925
+rect 665 -1891 757 -1885
+rect 665 -1925 677 -1891
+rect 745 -1925 757 -1891
+rect 665 -1931 757 -1925
+rect 823 -1891 915 -1885
+rect 823 -1925 835 -1891
+rect 903 -1925 915 -1891
+rect 823 -1931 915 -1925
+rect 981 -1891 1073 -1885
+rect 981 -1925 993 -1891
+rect 1061 -1925 1073 -1891
+rect 981 -1931 1073 -1925
+rect 1139 -1891 1231 -1885
+rect 1139 -1925 1151 -1891
+rect 1219 -1925 1231 -1891
+rect 1139 -1931 1231 -1925
+rect -1287 -1975 -1241 -1963
+rect -1287 -2351 -1281 -1975
+rect -1247 -2351 -1241 -1975
+rect -1287 -2363 -1241 -2351
+rect -1129 -1975 -1083 -1963
+rect -1129 -2351 -1123 -1975
+rect -1089 -2351 -1083 -1975
+rect -1129 -2363 -1083 -2351
+rect -971 -1975 -925 -1963
+rect -971 -2351 -965 -1975
+rect -931 -2351 -925 -1975
+rect -971 -2363 -925 -2351
+rect -813 -1975 -767 -1963
+rect -813 -2351 -807 -1975
+rect -773 -2351 -767 -1975
+rect -813 -2363 -767 -2351
+rect -655 -1975 -609 -1963
+rect -655 -2351 -649 -1975
+rect -615 -2351 -609 -1975
+rect -655 -2363 -609 -2351
+rect -497 -1975 -451 -1963
+rect -497 -2351 -491 -1975
+rect -457 -2351 -451 -1975
+rect -497 -2363 -451 -2351
+rect -339 -1975 -293 -1963
+rect -339 -2351 -333 -1975
+rect -299 -2351 -293 -1975
+rect -339 -2363 -293 -2351
+rect -181 -1975 -135 -1963
+rect -181 -2351 -175 -1975
+rect -141 -2351 -135 -1975
+rect -181 -2363 -135 -2351
+rect -23 -1975 23 -1963
+rect -23 -2351 -17 -1975
+rect 17 -2351 23 -1975
+rect -23 -2363 23 -2351
+rect 135 -1975 181 -1963
+rect 135 -2351 141 -1975
+rect 175 -2351 181 -1975
+rect 135 -2363 181 -2351
+rect 293 -1975 339 -1963
+rect 293 -2351 299 -1975
+rect 333 -2351 339 -1975
+rect 293 -2363 339 -2351
+rect 451 -1975 497 -1963
+rect 451 -2351 457 -1975
+rect 491 -2351 497 -1975
+rect 451 -2363 497 -2351
+rect 609 -1975 655 -1963
+rect 609 -2351 615 -1975
+rect 649 -2351 655 -1975
+rect 609 -2363 655 -2351
+rect 767 -1975 813 -1963
+rect 767 -2351 773 -1975
+rect 807 -2351 813 -1975
+rect 767 -2363 813 -2351
+rect 925 -1975 971 -1963
+rect 925 -2351 931 -1975
+rect 965 -2351 971 -1975
+rect 925 -2363 971 -2351
+rect 1083 -1975 1129 -1963
+rect 1083 -2351 1089 -1975
+rect 1123 -2351 1129 -1975
+rect 1083 -2363 1129 -2351
+rect 1241 -1975 1287 -1963
+rect 1241 -2351 1247 -1975
+rect 1281 -2351 1287 -1975
+rect 1241 -2363 1287 -2351
+rect -1231 -2401 -1139 -2395
+rect -1231 -2435 -1219 -2401
+rect -1151 -2435 -1139 -2401
+rect -1231 -2441 -1139 -2435
+rect -1073 -2401 -981 -2395
+rect -1073 -2435 -1061 -2401
+rect -993 -2435 -981 -2401
+rect -1073 -2441 -981 -2435
+rect -915 -2401 -823 -2395
+rect -915 -2435 -903 -2401
+rect -835 -2435 -823 -2401
+rect -915 -2441 -823 -2435
+rect -757 -2401 -665 -2395
+rect -757 -2435 -745 -2401
+rect -677 -2435 -665 -2401
+rect -757 -2441 -665 -2435
+rect -599 -2401 -507 -2395
+rect -599 -2435 -587 -2401
+rect -519 -2435 -507 -2401
+rect -599 -2441 -507 -2435
+rect -441 -2401 -349 -2395
+rect -441 -2435 -429 -2401
+rect -361 -2435 -349 -2401
+rect -441 -2441 -349 -2435
+rect -283 -2401 -191 -2395
+rect -283 -2435 -271 -2401
+rect -203 -2435 -191 -2401
+rect -283 -2441 -191 -2435
+rect -125 -2401 -33 -2395
+rect -125 -2435 -113 -2401
+rect -45 -2435 -33 -2401
+rect -125 -2441 -33 -2435
+rect 33 -2401 125 -2395
+rect 33 -2435 45 -2401
+rect 113 -2435 125 -2401
+rect 33 -2441 125 -2435
+rect 191 -2401 283 -2395
+rect 191 -2435 203 -2401
+rect 271 -2435 283 -2401
+rect 191 -2441 283 -2435
+rect 349 -2401 441 -2395
+rect 349 -2435 361 -2401
+rect 429 -2435 441 -2401
+rect 349 -2441 441 -2435
+rect 507 -2401 599 -2395
+rect 507 -2435 519 -2401
+rect 587 -2435 599 -2401
+rect 507 -2441 599 -2435
+rect 665 -2401 757 -2395
+rect 665 -2435 677 -2401
+rect 745 -2435 757 -2401
+rect 665 -2441 757 -2435
+rect 823 -2401 915 -2395
+rect 823 -2435 835 -2401
+rect 903 -2435 915 -2401
+rect 823 -2441 915 -2435
+rect 981 -2401 1073 -2395
+rect 981 -2435 993 -2401
+rect 1061 -2435 1073 -2401
+rect 981 -2441 1073 -2435
+rect 1139 -2401 1231 -2395
+rect 1139 -2435 1151 -2401
+rect 1219 -2435 1231 -2401
+rect 1139 -2441 1231 -2435
+<< properties >>
+string FIXED_BBOX -1378 -2520 1378 2520
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 8 nf 16 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.ext b/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.ext
new file mode 100644
index 0000000..c777cda
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.ext
@@ -0,0 +1,33 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_129_n509#" 982 155.666 129 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n509#" 982 12.936 -29 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n509#" 982 155.666 -187 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_n597#" 387 243.352 29 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n597#" 387 243.864 -129 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_129_109#" 982 155.795 129 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_109#" 982 13.0647 -29 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_109#" 982 155.795 -187 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_29_21#" 387 243.688 29 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_21#" 387 244.2 -129 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57600 1352 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+substrate "a_n289_n683#" 0 0 -289 -683 ppd 0 0 0 0 0 0 0 0 0 0 127568 7504 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127568 7504 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n29_109#" "a_129_109#" 223.915
+cap "a_n29_n509#" "a_n187_n509#" 223.915
+cap "a_129_n509#" "a_129_109#" 12.3196
+cap "a_29_21#" "a_n129_21#" 135.85
+cap "a_n187_n509#" "a_n187_109#" 12.3196
+cap "a_n129_n597#" "a_n129_21#" 143.798
+cap "a_n29_n509#" "a_n29_109#" 12.3196
+cap "a_n29_n509#" "a_129_n509#" 223.915
+cap "a_n29_109#" "a_n187_109#" 223.915
+cap "a_29_21#" "a_29_n597#" 143.798
+cap "a_n129_n597#" "a_29_n597#" 135.85
+device msubckt sky130_fd_pr__nfet_01v8 29 -509 30 -508 l=100 w=400 "a_n289_n683#" "a_29_n597#" 200 0 "a_n29_n509#" 400 0 "a_129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 -509 -128 -508 l=100 w=400 "a_n289_n683#" "a_n129_n597#" 200 0 "a_n187_n509#" 400 0 "a_n29_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 109 30 110 l=100 w=400 "a_n289_n683#" "a_29_21#" 200 0 "a_n29_109#" 400 0 "a_129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -129 109 -128 110 l=100 w=400 "a_n289_n683#" "a_n129_21#" 200 0 "a_n187_109#" 400 0 "a_n29_109#" 400 0
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.mag b/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.mag
new file mode 100644
index 0000000..ed396fb
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_DJG2KN.mag
@@ -0,0 +1,214 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -325 -719 325 719
+<< nmos >>
+rect -129 109 -29 509
+rect 29 109 129 509
+rect -129 -509 -29 -109
+rect 29 -509 129 -109
+<< ndiff >>
+rect -187 497 -129 509
+rect -187 121 -175 497
+rect -141 121 -129 497
+rect -187 109 -129 121
+rect -29 497 29 509
+rect -29 121 -17 497
+rect 17 121 29 497
+rect -29 109 29 121
+rect 129 497 187 509
+rect 129 121 141 497
+rect 175 121 187 497
+rect 129 109 187 121
+rect -187 -121 -129 -109
+rect -187 -497 -175 -121
+rect -141 -497 -129 -121
+rect -187 -509 -129 -497
+rect -29 -121 29 -109
+rect -29 -497 -17 -121
+rect 17 -497 29 -121
+rect -29 -509 29 -497
+rect 129 -121 187 -109
+rect 129 -497 141 -121
+rect 175 -497 187 -121
+rect 129 -509 187 -497
+<< ndiffc >>
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+<< psubdiff >>
+rect -289 649 -193 683
+rect 193 649 289 683
+rect -289 587 -255 649
+rect 255 587 289 649
+rect -289 -649 -255 -587
+rect 255 -649 289 -587
+rect -289 -683 -193 -649
+rect 193 -683 289 -649
+<< psubdiffcont >>
+rect -193 649 193 683
+rect -289 -587 -255 587
+rect 255 -587 289 587
+rect -193 -683 193 -649
+<< poly >>
+rect -129 581 -29 597
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect -129 509 -29 547
+rect 29 581 129 597
+rect 29 547 45 581
+rect 113 547 129 581
+rect 29 509 129 547
+rect -129 71 -29 109
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect -129 21 -29 37
+rect 29 71 129 109
+rect 29 37 45 71
+rect 113 37 129 71
+rect 29 21 129 37
+rect -129 -37 -29 -21
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect -129 -109 -29 -71
+rect 29 -37 129 -21
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect 29 -109 129 -71
+rect -129 -547 -29 -509
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect -129 -597 -29 -581
+rect 29 -547 129 -509
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect 29 -597 129 -581
+<< polycont >>
+rect -113 547 -45 581
+rect 45 547 113 581
+rect -113 37 -45 71
+rect 45 37 113 71
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+<< locali >>
+rect -289 649 -193 683
+rect 193 649 289 683
+rect -289 587 -255 649
+rect 255 587 289 649
+rect -129 547 -113 581
+rect -45 547 -29 581
+rect 29 547 45 581
+rect 113 547 129 581
+rect -175 497 -141 513
+rect -175 105 -141 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 141 497 175 513
+rect 141 105 175 121
+rect -129 37 -113 71
+rect -45 37 -29 71
+rect 29 37 45 71
+rect 113 37 129 71
+rect -129 -71 -113 -37
+rect -45 -71 -29 -37
+rect 29 -71 45 -37
+rect 113 -71 129 -37
+rect -175 -121 -141 -105
+rect -175 -513 -141 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 141 -121 175 -105
+rect 141 -513 175 -497
+rect -129 -581 -113 -547
+rect -45 -581 -29 -547
+rect 29 -581 45 -547
+rect 113 -581 129 -547
+rect -289 -649 -255 -587
+rect 255 -649 289 -587
+rect -289 -683 -193 -649
+rect 193 -683 289 -649
+<< viali >>
+rect -113 547 -45 581
+rect 45 547 113 581
+rect -175 121 -141 497
+rect -17 121 17 497
+rect 141 121 175 497
+rect -113 37 -45 71
+rect 45 37 113 71
+rect -113 -71 -45 -37
+rect 45 -71 113 -37
+rect -175 -497 -141 -121
+rect -17 -497 17 -121
+rect 141 -497 175 -121
+rect -113 -581 -45 -547
+rect 45 -581 113 -547
+<< metal1 >>
+rect -125 581 -33 587
+rect -125 547 -113 581
+rect -45 547 -33 581
+rect -125 541 -33 547
+rect 33 581 125 587
+rect 33 547 45 581
+rect 113 547 125 581
+rect 33 541 125 547
+rect -181 497 -135 509
+rect -181 121 -175 497
+rect -141 121 -135 497
+rect -181 109 -135 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 135 497 181 509
+rect 135 121 141 497
+rect 175 121 181 497
+rect 135 109 181 121
+rect -125 71 -33 77
+rect -125 37 -113 71
+rect -45 37 -33 71
+rect -125 31 -33 37
+rect 33 71 125 77
+rect 33 37 45 71
+rect 113 37 125 71
+rect 33 31 125 37
+rect -125 -37 -33 -31
+rect -125 -71 -113 -37
+rect -45 -71 -33 -37
+rect -125 -77 -33 -71
+rect 33 -37 125 -31
+rect 33 -71 45 -37
+rect 113 -71 125 -37
+rect 33 -77 125 -71
+rect -181 -121 -135 -109
+rect -181 -497 -175 -121
+rect -141 -497 -135 -121
+rect -181 -509 -135 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 135 -121 181 -109
+rect 135 -497 141 -121
+rect 175 -497 181 -121
+rect 135 -509 181 -497
+rect -125 -547 -33 -541
+rect -125 -581 -113 -547
+rect -45 -581 -33 -547
+rect -125 -587 -33 -581
+rect 33 -547 125 -541
+rect 33 -581 45 -547
+rect 113 -581 125 -547
+rect 33 -587 125 -581
+<< properties >>
+string FIXED_BBOX -272 -666 272 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 2 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.ext b/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.ext
new file mode 100644
index 0000000..47eefba
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.ext
@@ -0,0 +1,611 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_735_n1127#" 929 155.425 735 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n1127#" 882 12.2058 639 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n1127#" 882 12.2058 543 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n1127#" 882 12.2058 447 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n1127#" 882 12.2058 351 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n1127#" 882 12.2058 255 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n1127#" 882 12.2058 159 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n1127#" 882 12.2058 63 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1127#" 882 12.2058 -33 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n1127#" 882 12.2058 -129 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n1127#" 882 12.2058 -225 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n1127#" 882 12.2058 -321 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n1127#" 882 12.2058 -417 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n1127#" 882 12.2058 -513 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n1127#" 882 12.2058 -609 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n1127#" 882 12.2058 -705 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n797_n1127#" 929 155.176 -797 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_n1215#" 837 116.534 591 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_n705#" 837 98.7705 687 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n1215#" 837 96.6422 399 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n705#" 837 62.121 495 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n1215#" 837 96.6422 207 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n705#" 837 62.121 303 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n1215#" 837 96.6422 15 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n705#" 837 62.121 111 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n1215#" 837 96.6422 -177 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n705#" 837 62.121 -81 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n1215#" 837 96.6422 -369 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n705#" 837 62.121 -273 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n1215#" 837 96.6422 -561 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n705#" 837 62.121 -465 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n1215#" 837 133.546 -753 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n705#" 837 82.2668 -657 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_n509#" 929 147.273 735 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n509#" 882 4.30285 639 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n509#" 882 4.30285 543 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n509#" 882 4.30285 447 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n509#" 882 4.30285 351 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n509#" 882 4.30285 255 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n509#" 882 4.30285 159 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n509#" 882 4.30285 63 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n509#" 882 4.30285 -33 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n509#" 882 4.30285 -129 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n509#" 882 4.30285 -225 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n509#" 882 4.30285 -321 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n509#" 882 4.30285 -417 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n509#" 882 4.30285 -513 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n509#" 882 4.30285 -609 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n509#" 882 4.30285 -705 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n797_n509#" 929 147.132 -797 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_n597#" 837 88.8346 687 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n597#" 837 52.1851 495 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_n87#" 837 71.8703 591 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n597#" 837 52.1851 303 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n87#" 837 51.9786 399 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n597#" 837 52.1851 111 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n87#" 837 51.9786 207 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n597#" 837 52.1851 -81 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n87#" 837 51.9786 15 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n597#" 837 52.1851 -273 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n87#" 837 51.9786 -177 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n597#" 837 52.1851 -465 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n87#" 837 51.9786 -369 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n597#" 837 72.3309 -657 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n87#" 837 51.9786 -561 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n87#" 837 88.8821 -753 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_109#" 929 147.132 735 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_109#" 882 4.30285 639 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_109#" 882 4.30285 543 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_109#" 882 4.30285 447 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_109#" 882 4.30285 351 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_109#" 882 4.30285 255 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_109#" 882 4.30285 159 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_109#" 882 4.30285 63 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_109#" 882 4.30285 -33 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_109#" 882 4.30285 -129 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_109#" 882 4.30285 -225 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_109#" 882 4.30285 -321 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_109#" 882 4.30285 -417 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_109#" 882 4.30285 -513 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_109#" 882 4.30285 -609 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_109#" 882 4.30285 -705 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n797_109#" 929 147.273 -797 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_21#" 837 72.0768 591 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_531#" 837 88.628 687 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_21#" 837 52.1851 399 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_531#" 837 51.9786 495 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_21#" 837 52.1851 207 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_531#" 837 51.9786 303 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_21#" 837 52.1851 15 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_531#" 837 51.9786 111 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_21#" 837 52.1851 -177 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_531#" 837 51.9786 -81 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_21#" 837 52.1851 -369 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_531#" 837 51.9786 -273 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_21#" 837 52.1851 -561 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_531#" 837 51.9786 -465 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_21#" 837 89.0887 -753 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_531#" 837 72.1243 -657 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_727#" 929 155.695 735 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_727#" 882 12.4348 639 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_727#" 882 12.4348 543 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_727#" 882 12.4348 447 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_727#" 882 12.4348 351 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_727#" 882 12.4348 255 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_727#" 882 12.4348 159 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_727#" 882 12.4348 63 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_727#" 882 12.4348 -33 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_727#" 882 12.4348 -129 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_727#" 882 12.4348 -225 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_727#" 882 12.4348 -321 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_727#" 882 12.4348 -417 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_727#" 882 12.4348 -513 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_727#" 882 12.4348 -609 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_727#" 882 12.4348 -705 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n797_727#" 929 155.264 -797 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_639#" 837 98.977 687 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_639#" 837 62.3276 495 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_1149#" 837 116.534 591 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_639#" 837 62.3276 303 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_1149#" 837 96.6422 399 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_639#" 837 62.3276 111 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_1149#" 837 96.6422 207 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_639#" 837 62.3276 -81 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_1149#" 837 96.6422 15 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_639#" 837 62.3276 -273 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_1149#" 837 96.6422 -177 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_639#" 837 62.3276 -465 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_1149#" 837 96.6422 -369 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_639#" 837 82.4733 -657 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_1149#" 837 96.6422 -561 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_1149#" 837 133.546 -753 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n899_n1301#" 0 0 -899 -1301 ppd 0 0 0 0 0 0 0 0 0 0 294576 17328 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 294576 17328 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_447_n1127#" "a_543_n1127#" 479.458
+cap "a_n321_n1127#" "a_n273_n705#" 6.25956
+cap "a_n561_1149#" "a_n369_1149#" 28.5878
+cap "a_n177_n1215#" "a_n129_n1127#" 6.25956
+cap "a_n177_n87#" "a_n225_n509#" 6.25956
+cap "a_n561_n87#" "a_n465_n597#" 14.1667
+cap "a_n561_n87#" "a_n561_n1215#" 6.73951
+cap "a_351_727#" "a_255_727#" 479.458
+cap "a_207_n1215#" "a_15_n1215#" 28.5878
+cap "a_n705_727#" "a_n753_1149#" 6.25956
+cap "a_591_n1215#" "a_687_n705#" 14.1667
+cap "a_543_109#" "a_495_531#" 6.25956
+cap "a_543_727#" "a_591_1149#" 6.25956
+cap "a_15_n87#" "a_207_n87#" 28.5878
+cap "a_n321_727#" "a_n321_109#" 12.3196
+cap "a_n657_n705#" "a_n465_n705#" 28.5878
+cap "a_591_21#" "a_543_109#" 6.25956
+cap "a_543_109#" "a_447_109#" 479.458
+cap "a_n81_531#" "a_n129_109#" 6.25956
+cap "a_639_727#" "a_639_109#" 12.3196
+cap "a_495_639#" "a_303_639#" 28.5878
+cap "a_639_n509#" "a_639_n1127#" 12.3196
+cap "a_n129_727#" "a_n225_727#" 479.458
+cap "a_303_531#" "a_303_639#" 86.2066
+cap "a_207_n1215#" "a_255_n1127#" 6.25956
+cap "a_n705_109#" "a_n753_21#" 6.25956
+cap "a_n33_727#" "a_n33_109#" 12.3196
+cap "a_n129_727#" "a_n129_109#" 12.3196
+cap "a_n81_n705#" "a_n273_n705#" 28.5878
+cap "a_687_n597#" "a_687_531#" 6.73951
+cap "a_n33_n1127#" "a_63_n1127#" 479.458
+cap "a_111_531#" "a_15_21#" 14.1667
+cap "a_n129_n1127#" "a_n225_n1127#" 479.458
+cap "a_n753_n1215#" "a_n657_n705#" 14.1667
+cap "a_639_727#" "a_543_727#" 479.458
+cap "a_639_n509#" "a_639_109#" 12.3196
+cap "a_n609_109#" "a_n513_109#" 479.458
+cap "a_n369_21#" "a_n177_21#" 28.5878
+cap "a_n705_n509#" "a_n705_n1127#" 12.3196
+cap "a_207_n1215#" "a_207_n87#" 6.73951
+cap "a_495_n705#" "a_399_n1215#" 14.1667
+cap "a_303_n597#" "a_255_n509#" 6.25956
+cap "a_n177_n1215#" "a_15_n1215#" 28.5878
+cap "a_591_n1215#" "a_543_n1127#" 6.25956
+cap "a_n561_n87#" "a_n561_21#" 86.2066
+cap "a_159_n509#" "a_159_n1127#" 12.3196
+cap "a_399_n1215#" "a_303_n705#" 14.1667
+cap "a_303_639#" "a_111_639#" 28.5878
+cap "a_63_n509#" "a_159_n509#" 479.458
+cap "a_n81_531#" "a_n177_21#" 14.1667
+cap "a_n177_n87#" "a_n177_21#" 86.2066
+cap "a_495_531#" "a_447_109#" 6.25956
+cap "a_591_21#" "a_495_531#" 14.1667
+cap "a_n321_727#" "a_n225_727#" 479.458
+cap "a_159_727#" "a_207_1149#" 6.25956
+cap "a_n81_639#" "a_111_639#" 28.5878
+cap "a_207_21#" "a_159_109#" 6.25956
+cap "a_n81_639#" "a_n33_727#" 6.25956
+cap "a_n273_639#" "a_n465_639#" 28.5878
+cap "a_n753_1149#" "a_n657_639#" 14.1667
+cap "a_n129_n1127#" "a_n129_n509#" 12.3196
+cap "a_n33_n1127#" "a_n81_n705#" 6.25956
+cap "a_207_21#" "a_207_n87#" 86.2066
+cap "a_111_n705#" "a_159_n1127#" 6.25956
+cap "a_n81_639#" "a_n177_1149#" 14.1667
+cap "a_n369_n1215#" "a_n321_n1127#" 6.25956
+cap "a_n129_n509#" "a_n81_n597#" 6.25956
+cap "a_399_n1215#" "a_351_n1127#" 6.25956
+cap "a_n561_n87#" "a_n369_n87#" 28.5878
+cap "a_n705_n1127#" "a_n609_n1127#" 479.458
+cap "a_159_n509#" "a_255_n509#" 479.458
+cap "a_n273_531#" "a_n465_531#" 28.5878
+cap "a_63_n509#" "a_63_109#" 12.3196
+cap "a_n609_727#" "a_n561_1149#" 6.25956
+cap "a_n753_21#" "a_n753_1149#" 6.73951
+cap "a_n609_n509#" "a_n513_n509#" 479.458
+cap "a_n513_727#" "a_n561_1149#" 6.25956
+cap "a_207_21#" "a_111_531#" 14.1667
+cap "a_687_n597#" "a_735_n509#" 6.25956
+cap "a_n81_639#" "a_n273_639#" 28.5878
+cap "a_n609_109#" "a_n705_109#" 479.458
+cap "a_639_n1127#" "a_735_n1127#" 479.458
+cap "a_n797_n1127#" "a_n705_n1127#" 479.458
+cap "a_495_n705#" "a_447_n1127#" 6.25956
+cap "a_n417_727#" "a_n369_1149#" 6.25956
+cap "a_n465_n597#" "a_n465_531#" 6.73951
+cap "a_n369_21#" "a_n417_109#" 6.25956
+cap "a_n81_n597#" "a_111_n597#" 28.5878
+cap "a_n81_531#" "a_n33_109#" 6.25956
+cap "a_351_727#" "a_351_109#" 12.3196
+cap "a_n129_n1127#" "a_n33_n1127#" 479.458
+cap "a_15_n87#" "a_111_n597#" 14.1667
+cap "a_207_21#" "a_303_531#" 14.1667
+cap "a_n513_727#" "a_n609_727#" 479.458
+cap "a_495_639#" "a_495_531#" 86.2066
+cap "a_159_109#" "a_111_531#" 6.25956
+cap "a_495_531#" "a_303_531#" 28.5878
+cap "a_n129_n509#" "a_n33_n509#" 479.458
+cap "a_n705_109#" "a_n705_n509#" 12.3196
+cap "a_15_1149#" "a_111_639#" 14.1667
+cap "a_n33_727#" "a_15_1149#" 6.25956
+cap "a_63_727#" "a_15_1149#" 6.25956
+cap "a_n369_1149#" "a_n465_639#" 14.1667
+cap "a_687_n597#" "a_687_n705#" 86.2066
+cap "a_447_n1127#" "a_351_n1127#" 479.458
+cap "a_n561_21#" "a_n513_109#" 6.25956
+cap "a_n465_531#" "a_n657_531#" 28.5878
+cap "a_15_1149#" "a_n177_1149#" 28.5878
+cap "a_111_n705#" "a_63_n1127#" 6.25956
+cap "a_n177_n1215#" "a_n225_n1127#" 6.25956
+cap "a_495_n597#" "a_495_531#" 6.73951
+cap "a_399_21#" "a_399_1149#" 6.73951
+cap "a_n561_n87#" "a_n753_n87#" 28.5878
+cap "a_n657_531#" "a_n657_639#" 86.2066
+cap "a_207_1149#" "a_399_1149#" 28.5878
+cap "a_687_639#" "a_687_531#" 86.2066
+cap "a_n81_n597#" "a_n273_n597#" 28.5878
+cap "a_207_n87#" "a_399_n87#" 28.5878
+cap "a_n513_n509#" "a_n465_n597#" 6.25956
+cap "a_n609_n509#" "a_n609_109#" 12.3196
+cap "a_n753_n1215#" "a_n705_n1127#" 6.25956
+cap "a_n609_n509#" "a_n657_n597#" 6.25956
+cap "a_n705_109#" "a_n657_531#" 6.25956
+cap "a_n81_639#" "a_n81_531#" 86.2066
+cap "a_n321_727#" "a_n417_727#" 479.458
+cap "a_447_727#" "a_399_1149#" 6.25956
+cap "a_111_531#" "a_303_531#" 28.5878
+cap "a_n753_21#" "a_n657_531#" 14.1667
+cap "a_n33_n1127#" "a_n33_n509#" 12.3196
+cap "a_n81_531#" "a_n81_n597#" 6.73951
+cap "a_n129_727#" "a_n81_639#" 6.25956
+cap "a_n177_n87#" "a_n81_n597#" 14.1667
+cap "a_n561_21#" "a_n465_531#" 14.1667
+cap "a_543_109#" "a_543_n509#" 12.3196
+cap "a_495_n705#" "a_591_n1215#" 14.1667
+cap "a_n177_n1215#" "a_n273_n705#" 14.1667
+cap "a_n33_n1127#" "a_15_n1215#" 6.25956
+cap "a_351_109#" "a_447_109#" 479.458
+cap "a_n129_109#" "a_n177_21#" 6.25956
+cap "a_n417_109#" "a_n321_109#" 479.458
+cap "a_n177_n87#" "a_15_n87#" 28.5878
+cap "a_n81_531#" "a_15_21#" 14.1667
+cap "a_n609_n509#" "a_n705_n509#" 479.458
+cap "a_63_109#" "a_n33_109#" 479.458
+cap "a_111_n705#" "a_n81_n705#" 28.5878
+cap "a_447_n509#" "a_447_n1127#" 12.3196
+cap "a_n369_21#" "a_n465_531#" 14.1667
+cap "a_n705_109#" "a_n797_109#" 479.458
+cap "a_447_727#" "a_543_727#" 479.458
+cap "a_n705_n509#" "a_n797_n509#" 479.458
+cap "a_n417_n1127#" "a_n465_n705#" 6.25956
+cap "a_687_n597#" "a_495_n597#" 28.5878
+cap "a_n797_109#" "a_n753_21#" 6.25956
+cap "a_255_109#" "a_255_n509#" 12.3196
+cap "a_591_n1215#" "a_591_n87#" 6.73951
+cap "a_591_21#" "a_591_1149#" 6.73951
+cap "a_63_n1127#" "a_159_n1127#" 479.458
+cap "a_351_n509#" "a_399_n87#" 6.25956
+cap "a_111_531#" "a_111_639#" 86.2066
+cap "a_63_n1127#" "a_63_n509#" 12.3196
+cap "a_n753_21#" "a_n561_21#" 28.5878
+cap "a_n417_n1127#" "a_n369_n1215#" 6.25956
+cap "a_n705_n509#" "a_n657_n597#" 6.25956
+cap "a_111_n597#" "a_207_n87#" 14.1667
+cap "a_495_n597#" "a_399_n87#" 14.1667
+cap "a_n225_n1127#" "a_n273_n705#" 6.25956
+cap "a_n513_727#" "a_n417_727#" 479.458
+cap "a_n561_1149#" "a_n465_639#" 14.1667
+cap "a_n465_n597#" "a_n657_n597#" 28.5878
+cap "a_n609_n509#" "a_n609_n1127#" 12.3196
+cap "a_n417_n509#" "a_n417_109#" 12.3196
+cap "a_n225_109#" "a_n273_531#" 6.25956
+cap "a_n129_109#" "a_n33_109#" 479.458
+cap "a_207_n1215#" "a_303_n705#" 14.1667
+cap "a_351_109#" "a_303_531#" 6.25956
+cap "a_111_n597#" "a_111_531#" 6.73951
+cap "a_735_727#" "a_639_727#" 479.458
+cap "a_n321_n509#" "a_n273_n597#" 6.25956
+cap "a_351_n509#" "a_351_109#" 12.3196
+cap "a_735_727#" "a_687_639#" 6.25956
+cap "a_n513_727#" "a_n465_639#" 6.25956
+cap "a_n609_109#" "a_n657_531#" 6.25956
+cap "a_447_n1127#" "a_399_n1215#" 6.25956
+cap "a_639_n509#" "a_735_n509#" 479.458
+cap "a_n657_n597#" "a_n657_531#" 6.73951
+cap "a_63_109#" "a_15_21#" 6.25956
+cap "a_n797_n1127#" "a_n797_n509#" 12.3196
+cap "a_n797_109#" "a_n797_n509#" 12.3196
+cap "a_495_639#" "a_591_1149#" 14.1667
+cap "a_207_1149#" "a_303_639#" 14.1667
+cap "a_n705_727#" "a_n609_727#" 479.458
+cap "a_n321_n509#" "a_n369_n87#" 6.25956
+cap "a_255_n1127#" "a_303_n705#" 6.25956
+cap "a_63_727#" "a_111_639#" 6.25956
+cap "a_n177_n1215#" "a_n369_n1215#" 28.5878
+cap "a_63_727#" "a_n33_727#" 479.458
+cap "a_n705_727#" "a_n797_727#" 479.458
+cap "a_n273_531#" "a_n273_639#" 86.2066
+cap "a_n177_n1215#" "a_n177_n87#" 6.73951
+cap "a_303_n597#" "a_207_n87#" 14.1667
+cap "a_111_n705#" "a_207_n1215#" 14.1667
+cap "a_n657_n705#" "a_n705_n1127#" 6.25956
+cap "a_n609_109#" "a_n561_21#" 6.25956
+cap "a_n513_727#" "a_n513_109#" 12.3196
+cap "a_495_n705#" "a_687_n705#" 28.5878
+cap "a_111_n705#" "a_15_n1215#" 14.1667
+cap "a_591_n1215#" "a_639_n1127#" 6.25956
+cap "a_255_n1127#" "a_351_n1127#" 479.458
+cap "a_591_21#" "a_591_n87#" 86.2066
+cap "a_n561_n1215#" "a_n609_n1127#" 6.25956
+cap "a_495_639#" "a_687_639#" 28.5878
+cap "a_n753_n87#" "a_n753_21#" 86.2066
+cap "a_n81_531#" "a_111_531#" 28.5878
+cap "a_303_639#" "a_399_1149#" 14.1667
+cap "a_n513_n1127#" "a_n417_n1127#" 479.458
+cap "a_63_n509#" "a_15_n87#" 6.25956
+cap "a_n273_639#" "a_n177_1149#" 14.1667
+cap "a_n561_1149#" "a_n657_639#" 14.1667
+cap "a_n417_n1127#" "a_n417_n509#" 12.3196
+cap "a_735_109#" "a_639_109#" 479.458
+cap "a_639_109#" "a_687_531#" 6.25956
+cap "a_687_n597#" "a_639_n509#" 6.25956
+cap "a_n321_n509#" "a_n321_109#" 12.3196
+cap "a_n273_531#" "a_n273_n597#" 6.73951
+cap "a_n369_21#" "a_n273_531#" 14.1667
+cap "a_543_n1127#" "a_543_n509#" 12.3196
+cap "a_159_n509#" "a_159_109#" 12.3196
+cap "a_159_n509#" "a_207_n87#" 6.25956
+cap "a_495_n597#" "a_543_n509#" 6.25956
+cap "a_447_727#" "a_351_727#" 479.458
+cap "a_303_n597#" "a_303_531#" 6.73951
+cap "a_591_n1215#" "a_399_n1215#" 28.5878
+cap "a_255_727#" "a_159_727#" 479.458
+cap "a_303_n597#" "a_351_n509#" 6.25956
+cap "a_n609_727#" "a_n657_639#" 6.25956
+cap "a_15_1149#" "a_207_1149#" 28.5878
+cap "a_n465_n705#" "a_n273_n705#" 28.5878
+cap "a_n465_n705#" "a_n465_n597#" 86.2066
+cap "a_n465_n597#" "a_n273_n597#" 28.5878
+cap "a_303_n597#" "a_399_n87#" 14.1667
+cap "a_n273_n705#" "a_n273_n597#" 86.2066
+cap "a_n81_531#" "a_n273_531#" 28.5878
+cap "a_735_n509#" "a_735_n1127#" 12.3196
+cap "a_n465_n705#" "a_n561_n1215#" 14.1667
+cap "a_687_n597#" "a_591_n87#" 14.1667
+cap "a_543_109#" "a_639_109#" 479.458
+cap "a_495_n705#" "a_543_n1127#" 6.25956
+cap "a_n513_n1127#" "a_n513_n509#" 12.3196
+cap "a_159_109#" "a_63_109#" 479.458
+cap "a_303_n597#" "a_495_n597#" 28.5878
+cap "a_207_n1215#" "a_159_n1127#" 6.25956
+cap "a_159_727#" "a_159_109#" 12.3196
+cap "a_n417_109#" "a_n417_727#" 12.3196
+cap "a_n417_727#" "a_n465_639#" 6.25956
+cap "a_351_727#" "a_399_1149#" 6.25956
+cap "a_n369_n87#" "a_n465_n597#" 14.1667
+cap "a_n561_21#" "a_n657_531#" 14.1667
+cap "a_447_n509#" "a_447_109#" 12.3196
+cap "a_n369_n1215#" "a_n273_n705#" 14.1667
+cap "a_495_n597#" "a_495_n705#" 86.2066
+cap "a_63_n509#" "a_n33_n509#" 479.458
+cap "a_n417_n509#" "a_n513_n509#" 479.458
+cap "a_207_21#" "a_399_21#" 28.5878
+cap "a_n369_n1215#" "a_n561_n1215#" 28.5878
+cap "a_n177_21#" "a_15_21#" 28.5878
+cap "a_207_21#" "a_207_1149#" 6.73951
+cap "a_n753_n87#" "a_n797_n509#" 6.25956
+cap "a_n177_n87#" "a_n129_n509#" 6.25956
+cap "a_495_531#" "a_399_21#" 14.1667
+cap "a_n321_n509#" "a_n225_n509#" 479.458
+cap "a_n417_n509#" "a_n321_n509#" 479.458
+cap "a_255_727#" "a_207_1149#" 6.25956
+cap "a_591_n87#" "a_399_n87#" 28.5878
+cap "a_351_n509#" "a_351_n1127#" 12.3196
+cap "a_591_21#" "a_399_21#" 28.5878
+cap "a_399_21#" "a_447_109#" 6.25956
+cap "a_639_727#" "a_591_1149#" 6.25956
+cap "a_n753_n1215#" "a_n561_n1215#" 28.5878
+cap "a_111_531#" "a_63_109#" 6.25956
+cap "a_543_109#" "a_543_727#" 12.3196
+cap "a_n369_1149#" "a_n177_1149#" 28.5878
+cap "a_495_n597#" "a_591_n87#" 14.1667
+cap "a_687_639#" "a_591_1149#" 14.1667
+cap "a_735_n1127#" "a_687_n705#" 6.25956
+cap "a_n129_727#" "a_n33_727#" 479.458
+cap "a_207_n1215#" "a_399_n1215#" 28.5878
+cap "a_159_n1127#" "a_255_n1127#" 479.458
+cap "a_n753_n87#" "a_n657_n597#" 14.1667
+cap "a_n321_109#" "a_n273_531#" 6.25956
+cap "a_n129_727#" "a_n177_1149#" 6.25956
+cap "a_447_727#" "a_447_109#" 12.3196
+cap "a_n321_109#" "a_n225_109#" 479.458
+cap "a_303_n597#" "a_111_n597#" 28.5878
+cap "a_n273_639#" "a_n369_1149#" 14.1667
+cap "a_n753_1149#" "a_n561_1149#" 28.5878
+cap "a_n129_n1127#" "a_n81_n705#" 6.25956
+cap "a_n369_21#" "a_n561_21#" 28.5878
+cap "a_255_109#" "a_207_21#" 6.25956
+cap "a_639_n1127#" "a_687_n705#" 6.25956
+cap "a_n705_n509#" "a_n753_n87#" 6.25956
+cap "a_591_21#" "a_639_109#" 6.25956
+cap "a_15_21#" "a_n33_109#" 6.25956
+cap "a_n81_n705#" "a_n81_n597#" 86.2066
+cap "a_n417_n1127#" "a_n321_n1127#" 479.458
+cap "a_687_639#" "a_639_727#" 6.25956
+cap "a_255_109#" "a_255_727#" 12.3196
+cap "a_255_n509#" "a_255_n1127#" 12.3196
+cap "a_n417_109#" "a_n513_109#" 479.458
+cap "a_447_n509#" "a_351_n509#" 479.458
+cap "a_63_n1127#" "a_15_n1215#" 6.25956
+cap "a_n753_n1215#" "a_n797_n1127#" 6.25956
+cap "a_n225_n509#" "a_n225_n1127#" 12.3196
+cap "a_447_n509#" "a_399_n87#" 6.25956
+cap "a_303_531#" "a_399_21#" 14.1667
+cap "a_n465_n705#" "a_n369_n1215#" 14.1667
+cap "a_255_109#" "a_159_109#" 479.458
+cap "a_n369_n87#" "a_n273_n597#" 14.1667
+cap "a_n369_21#" "a_n369_n87#" 86.2066
+cap "a_495_n597#" "a_447_n509#" 6.25956
+cap "a_159_727#" "a_111_639#" 6.25956
+cap "a_111_n597#" "a_159_n509#" 6.25956
+cap "a_n609_109#" "a_n609_727#" 12.3196
+cap "a_n797_727#" "a_n753_1149#" 6.25956
+cap "a_63_727#" "a_63_109#" 12.3196
+cap "a_63_727#" "a_159_727#" 479.458
+cap "a_n177_n87#" "a_n273_n597#" 14.1667
+cap "a_399_21#" "a_399_n87#" 86.2066
+cap "a_255_n509#" "a_207_n87#" 6.25956
+cap "a_n369_21#" "a_n369_1149#" 6.73951
+cap "a_639_n509#" "a_543_n509#" 479.458
+cap "a_n225_109#" "a_n225_n509#" 12.3196
+cap "a_n369_n1215#" "a_n369_n87#" 6.73951
+cap "a_n33_n509#" "a_n33_109#" 12.3196
+cap "a_495_639#" "a_447_727#" 6.25956
+cap "a_n513_n1127#" "a_n561_n1215#" 6.25956
+cap "a_n417_n509#" "a_n465_n597#" 6.25956
+cap "a_735_109#" "a_687_531#" 6.25956
+cap "a_n417_109#" "a_n465_531#" 6.25956
+cap "a_n177_n87#" "a_n369_n87#" 28.5878
+cap "a_n465_531#" "a_n465_639#" 86.2066
+cap "a_111_n705#" "a_111_n597#" 86.2066
+cap "a_n129_n509#" "a_n225_n509#" 479.458
+cap "a_n561_n87#" "a_n513_n509#" 6.25956
+cap "a_351_727#" "a_303_639#" 6.25956
+cap "a_n321_727#" "a_n273_639#" 6.25956
+cap "a_n321_n509#" "a_n321_n1127#" 12.3196
+cap "a_n225_727#" "a_n225_109#" 12.3196
+cap "a_n657_n705#" "a_n657_n597#" 86.2066
+cap "a_n657_639#" "a_n465_639#" 28.5878
+cap "a_543_n1127#" "a_639_n1127#" 479.458
+cap "a_n81_n705#" "a_15_n1215#" 14.1667
+cap "a_15_n87#" "a_n81_n597#" 14.1667
+cap "a_591_n87#" "a_543_n509#" 6.25956
+cap "a_n225_109#" "a_n129_109#" 479.458
+cap "a_207_1149#" "a_111_639#" 14.1667
+cap "a_495_639#" "a_399_1149#" 14.1667
+cap "a_303_n597#" "a_303_n705#" 86.2066
+cap "a_15_n87#" "a_15_21#" 86.2066
+cap "a_255_109#" "a_303_531#" 6.25956
+cap "a_495_n705#" "a_303_n705#" 28.5878
+cap "a_351_109#" "a_399_21#" 6.25956
+cap "a_n129_n509#" "a_n129_109#" 12.3196
+cap "a_n705_727#" "a_n657_639#" 6.25956
+cap "a_n513_n1127#" "a_n609_n1127#" 479.458
+cap "a_n369_21#" "a_n321_109#" 6.25956
+cap "a_n225_727#" "a_n177_1149#" 6.25956
+cap "a_399_n1215#" "a_399_n87#" 6.73951
+cap "a_351_n509#" "a_255_n509#" 479.458
+cap "a_n561_n87#" "a_n609_n509#" 6.25956
+cap "a_495_639#" "a_543_727#" 6.25956
+cap "a_n705_109#" "a_n705_727#" 12.3196
+cap "a_639_n509#" "a_591_n87#" 6.25956
+cap "a_n465_531#" "a_n513_109#" 6.25956
+cap "a_n657_n705#" "a_n561_n1215#" 14.1667
+cap "a_n81_639#" "a_15_1149#" 14.1667
+cap "a_351_n1127#" "a_303_n705#" 6.25956
+cap "a_n81_n597#" "a_n33_n509#" 6.25956
+cap "a_n273_531#" "a_n177_21#" 14.1667
+cap "a_n225_727#" "a_n273_639#" 6.25956
+cap "a_15_n87#" "a_n33_n509#" 6.25956
+cap "a_n177_n1215#" "a_n81_n705#" 14.1667
+cap "a_n561_21#" "a_n561_1149#" 6.73951
+cap "a_n321_n1127#" "a_n225_n1127#" 479.458
+cap "a_255_727#" "a_303_639#" 6.25956
+cap "a_15_n87#" "a_15_n1215#" 6.73951
+cap "a_15_1149#" "a_15_21#" 6.73951
+cap "a_n225_109#" "a_n177_21#" 6.25956
+cap "a_n753_n1215#" "a_n753_n87#" 6.73951
+cap "a_n513_n1127#" "a_n465_n705#" 6.25956
+cap "a_447_n509#" "a_543_n509#" 479.458
+cap "a_n321_727#" "a_n369_1149#" 6.25956
+cap "a_63_n509#" "a_111_n597#" 6.25956
+cap "a_255_109#" "a_351_109#" 479.458
+cap "a_n561_n87#" "a_n657_n597#" 14.1667
+cap "a_n657_n705#" "a_n609_n1127#" 6.25956
+cap "a_735_109#" "a_735_n509#" 12.3196
+cap "a_111_n705#" "a_303_n705#" 28.5878
+cap "a_n225_n509#" "a_n273_n597#" 6.25956
+cap "a_n797_727#" "a_n797_109#" 12.3196
+cap "a_495_531#" "a_687_531#" 28.5878
+cap "a_n513_n509#" "a_n513_109#" 12.3196
+cap "a_591_21#" "a_687_531#" 14.1667
+cap "a_n177_21#" "a_n177_1149#" 6.73951
+cap "a_207_21#" "a_15_21#" 28.5878
+cap "a_399_1149#" "a_591_1149#" 28.5878
+cap "a_n417_n509#" "a_n369_n87#" 6.25956
+cap "a_735_727#" "a_735_109#" 12.3196
+device msubckt sky130_fd_pr__nfet_01v8 705 -1127 706 -1126 l=30 w=400 "a_n899_n1301#" "a_687_n705#" 60 0 "a_639_n1127#" 400 0 "a_735_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 609 -1127 610 -1126 l=30 w=400 "a_n899_n1301#" "a_591_n1215#" 60 0 "a_543_n1127#" 400 0 "a_639_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 -1127 514 -1126 l=30 w=400 "a_n899_n1301#" "a_495_n705#" 60 0 "a_447_n1127#" 400 0 "a_543_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 -1127 418 -1126 l=30 w=400 "a_n899_n1301#" "a_399_n1215#" 60 0 "a_351_n1127#" 400 0 "a_447_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 -1127 322 -1126 l=30 w=400 "a_n899_n1301#" "a_303_n705#" 60 0 "a_255_n1127#" 400 0 "a_351_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -1127 226 -1126 l=30 w=400 "a_n899_n1301#" "a_207_n1215#" 60 0 "a_159_n1127#" 400 0 "a_255_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -1127 130 -1126 l=30 w=400 "a_n899_n1301#" "a_111_n705#" 60 0 "a_63_n1127#" 400 0 "a_159_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -1127 34 -1126 l=30 w=400 "a_n899_n1301#" "a_15_n1215#" 60 0 "a_n33_n1127#" 400 0 "a_63_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -1127 -62 -1126 l=30 w=400 "a_n899_n1301#" "a_n81_n705#" 60 0 "a_n129_n1127#" 400 0 "a_n33_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -1127 -158 -1126 l=30 w=400 "a_n899_n1301#" "a_n177_n1215#" 60 0 "a_n225_n1127#" 400 0 "a_n129_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -1127 -254 -1126 l=30 w=400 "a_n899_n1301#" "a_n273_n705#" 60 0 "a_n321_n1127#" 400 0 "a_n225_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -1127 -350 -1126 l=30 w=400 "a_n899_n1301#" "a_n369_n1215#" 60 0 "a_n417_n1127#" 400 0 "a_n321_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 -1127 -446 -1126 l=30 w=400 "a_n899_n1301#" "a_n465_n705#" 60 0 "a_n513_n1127#" 400 0 "a_n417_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 -1127 -542 -1126 l=30 w=400 "a_n899_n1301#" "a_n561_n1215#" 60 0 "a_n609_n1127#" 400 0 "a_n513_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -639 -1127 -638 -1126 l=30 w=400 "a_n899_n1301#" "a_n657_n705#" 60 0 "a_n705_n1127#" 400 0 "a_n609_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -735 -1127 -734 -1126 l=30 w=400 "a_n899_n1301#" "a_n753_n1215#" 60 0 "a_n797_n1127#" 400 0 "a_n705_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 705 -509 706 -508 l=30 w=400 "a_n899_n1301#" "a_687_n597#" 60 0 "a_639_n509#" 400 0 "a_735_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 609 -509 610 -508 l=30 w=400 "a_n899_n1301#" "a_591_n87#" 60 0 "a_543_n509#" 400 0 "a_639_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 -509 514 -508 l=30 w=400 "a_n899_n1301#" "a_495_n597#" 60 0 "a_447_n509#" 400 0 "a_543_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 -509 418 -508 l=30 w=400 "a_n899_n1301#" "a_399_n87#" 60 0 "a_351_n509#" 400 0 "a_447_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 -509 322 -508 l=30 w=400 "a_n899_n1301#" "a_303_n597#" 60 0 "a_255_n509#" 400 0 "a_351_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -509 226 -508 l=30 w=400 "a_n899_n1301#" "a_207_n87#" 60 0 "a_159_n509#" 400 0 "a_255_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -509 130 -508 l=30 w=400 "a_n899_n1301#" "a_111_n597#" 60 0 "a_63_n509#" 400 0 "a_159_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -509 34 -508 l=30 w=400 "a_n899_n1301#" "a_15_n87#" 60 0 "a_n33_n509#" 400 0 "a_63_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -509 -62 -508 l=30 w=400 "a_n899_n1301#" "a_n81_n597#" 60 0 "a_n129_n509#" 400 0 "a_n33_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -509 -158 -508 l=30 w=400 "a_n899_n1301#" "a_n177_n87#" 60 0 "a_n225_n509#" 400 0 "a_n129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -509 -254 -508 l=30 w=400 "a_n899_n1301#" "a_n273_n597#" 60 0 "a_n321_n509#" 400 0 "a_n225_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -509 -350 -508 l=30 w=400 "a_n899_n1301#" "a_n369_n87#" 60 0 "a_n417_n509#" 400 0 "a_n321_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 -509 -446 -508 l=30 w=400 "a_n899_n1301#" "a_n465_n597#" 60 0 "a_n513_n509#" 400 0 "a_n417_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 -509 -542 -508 l=30 w=400 "a_n899_n1301#" "a_n561_n87#" 60 0 "a_n609_n509#" 400 0 "a_n513_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -639 -509 -638 -508 l=30 w=400 "a_n899_n1301#" "a_n657_n597#" 60 0 "a_n705_n509#" 400 0 "a_n609_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -735 -509 -734 -508 l=30 w=400 "a_n899_n1301#" "a_n753_n87#" 60 0 "a_n797_n509#" 400 0 "a_n705_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 705 109 706 110 l=30 w=400 "a_n899_n1301#" "a_687_531#" 60 0 "a_639_109#" 400 0 "a_735_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 609 109 610 110 l=30 w=400 "a_n899_n1301#" "a_591_21#" 60 0 "a_543_109#" 400 0 "a_639_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 109 514 110 l=30 w=400 "a_n899_n1301#" "a_495_531#" 60 0 "a_447_109#" 400 0 "a_543_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 109 418 110 l=30 w=400 "a_n899_n1301#" "a_399_21#" 60 0 "a_351_109#" 400 0 "a_447_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 109 322 110 l=30 w=400 "a_n899_n1301#" "a_303_531#" 60 0 "a_255_109#" 400 0 "a_351_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 109 226 110 l=30 w=400 "a_n899_n1301#" "a_207_21#" 60 0 "a_159_109#" 400 0 "a_255_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 109 130 110 l=30 w=400 "a_n899_n1301#" "a_111_531#" 60 0 "a_63_109#" 400 0 "a_159_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 109 34 110 l=30 w=400 "a_n899_n1301#" "a_15_21#" 60 0 "a_n33_109#" 400 0 "a_63_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 109 -62 110 l=30 w=400 "a_n899_n1301#" "a_n81_531#" 60 0 "a_n129_109#" 400 0 "a_n33_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 109 -158 110 l=30 w=400 "a_n899_n1301#" "a_n177_21#" 60 0 "a_n225_109#" 400 0 "a_n129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 109 -254 110 l=30 w=400 "a_n899_n1301#" "a_n273_531#" 60 0 "a_n321_109#" 400 0 "a_n225_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 109 -350 110 l=30 w=400 "a_n899_n1301#" "a_n369_21#" 60 0 "a_n417_109#" 400 0 "a_n321_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 109 -446 110 l=30 w=400 "a_n899_n1301#" "a_n465_531#" 60 0 "a_n513_109#" 400 0 "a_n417_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 109 -542 110 l=30 w=400 "a_n899_n1301#" "a_n561_21#" 60 0 "a_n609_109#" 400 0 "a_n513_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -639 109 -638 110 l=30 w=400 "a_n899_n1301#" "a_n657_531#" 60 0 "a_n705_109#" 400 0 "a_n609_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -735 109 -734 110 l=30 w=400 "a_n899_n1301#" "a_n753_21#" 60 0 "a_n797_109#" 400 0 "a_n705_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 705 727 706 728 l=30 w=400 "a_n899_n1301#" "a_687_639#" 60 0 "a_639_727#" 400 0 "a_735_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 609 727 610 728 l=30 w=400 "a_n899_n1301#" "a_591_1149#" 60 0 "a_543_727#" 400 0 "a_639_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 513 727 514 728 l=30 w=400 "a_n899_n1301#" "a_495_639#" 60 0 "a_447_727#" 400 0 "a_543_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 727 418 728 l=30 w=400 "a_n899_n1301#" "a_399_1149#" 60 0 "a_351_727#" 400 0 "a_447_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 727 322 728 l=30 w=400 "a_n899_n1301#" "a_303_639#" 60 0 "a_255_727#" 400 0 "a_351_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 727 226 728 l=30 w=400 "a_n899_n1301#" "a_207_1149#" 60 0 "a_159_727#" 400 0 "a_255_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 727 130 728 l=30 w=400 "a_n899_n1301#" "a_111_639#" 60 0 "a_63_727#" 400 0 "a_159_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 727 34 728 l=30 w=400 "a_n899_n1301#" "a_15_1149#" 60 0 "a_n33_727#" 400 0 "a_63_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 727 -62 728 l=30 w=400 "a_n899_n1301#" "a_n81_639#" 60 0 "a_n129_727#" 400 0 "a_n33_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 727 -158 728 l=30 w=400 "a_n899_n1301#" "a_n177_1149#" 60 0 "a_n225_727#" 400 0 "a_n129_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 727 -254 728 l=30 w=400 "a_n899_n1301#" "a_n273_639#" 60 0 "a_n321_727#" 400 0 "a_n225_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 727 -350 728 l=30 w=400 "a_n899_n1301#" "a_n369_1149#" 60 0 "a_n417_727#" 400 0 "a_n321_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 727 -446 728 l=30 w=400 "a_n899_n1301#" "a_n465_639#" 60 0 "a_n513_727#" 400 0 "a_n417_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 727 -542 728 l=30 w=400 "a_n899_n1301#" "a_n561_1149#" 60 0 "a_n609_727#" 400 0 "a_n513_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -639 727 -638 728 l=30 w=400 "a_n899_n1301#" "a_n657_639#" 60 0 "a_n705_727#" 400 0 "a_n609_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -735 727 -734 728 l=30 w=400 "a_n899_n1301#" "a_n753_1149#" 60 0 "a_n797_727#" 400 0 "a_n705_727#" 400 0
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.mag b/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.mag
new file mode 100644
index 0000000..e3012f1
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_ED72KE.mag
@@ -0,0 +1,2011 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -749 1199 -691 1205
+rect -557 1199 -499 1205
+rect -365 1199 -307 1205
+rect -173 1199 -115 1205
+rect 19 1199 77 1205
+rect 211 1199 269 1205
+rect 403 1199 461 1205
+rect 595 1199 653 1205
+rect -749 1165 -737 1199
+rect -557 1165 -545 1199
+rect -365 1165 -353 1199
+rect -173 1165 -161 1199
+rect 19 1165 31 1199
+rect 211 1165 223 1199
+rect 403 1165 415 1199
+rect 595 1165 607 1199
+rect -749 1159 -691 1165
+rect -557 1159 -499 1165
+rect -365 1159 -307 1165
+rect -173 1159 -115 1165
+rect 19 1159 77 1165
+rect 211 1159 269 1165
+rect 403 1159 461 1165
+rect 595 1159 653 1165
+rect -653 689 -595 695
+rect -461 689 -403 695
+rect -269 689 -211 695
+rect -77 689 -19 695
+rect 115 689 173 695
+rect 307 689 365 695
+rect 499 689 557 695
+rect 691 689 749 695
+rect -653 655 -641 689
+rect -461 655 -449 689
+rect -269 655 -257 689
+rect -77 655 -65 689
+rect 115 655 127 689
+rect 307 655 319 689
+rect 499 655 511 689
+rect 691 655 703 689
+rect -653 649 -595 655
+rect -461 649 -403 655
+rect -269 649 -211 655
+rect -77 649 -19 655
+rect 115 649 173 655
+rect 307 649 365 655
+rect 499 649 557 655
+rect 691 649 749 655
+rect -653 581 -595 587
+rect -461 581 -403 587
+rect -269 581 -211 587
+rect -77 581 -19 587
+rect 115 581 173 587
+rect 307 581 365 587
+rect 499 581 557 587
+rect 691 581 749 587
+rect -653 547 -641 581
+rect -461 547 -449 581
+rect -269 547 -257 581
+rect -77 547 -65 581
+rect 115 547 127 581
+rect 307 547 319 581
+rect 499 547 511 581
+rect 691 547 703 581
+rect -653 541 -595 547
+rect -461 541 -403 547
+rect -269 541 -211 547
+rect -77 541 -19 547
+rect 115 541 173 547
+rect 307 541 365 547
+rect 499 541 557 547
+rect 691 541 749 547
+rect -749 71 -691 77
+rect -557 71 -499 77
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect 595 71 653 77
+rect -749 37 -737 71
+rect -557 37 -545 71
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect 595 37 607 71
+rect -749 31 -691 37
+rect -557 31 -499 37
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect 595 31 653 37
+rect -749 -37 -691 -31
+rect -557 -37 -499 -31
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect 595 -37 653 -31
+rect -749 -71 -737 -37
+rect -557 -71 -545 -37
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect 595 -71 607 -37
+rect -749 -77 -691 -71
+rect -557 -77 -499 -71
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect 595 -77 653 -71
+rect -653 -547 -595 -541
+rect -461 -547 -403 -541
+rect -269 -547 -211 -541
+rect -77 -547 -19 -541
+rect 115 -547 173 -541
+rect 307 -547 365 -541
+rect 499 -547 557 -541
+rect 691 -547 749 -541
+rect -653 -581 -641 -547
+rect -461 -581 -449 -547
+rect -269 -581 -257 -547
+rect -77 -581 -65 -547
+rect 115 -581 127 -547
+rect 307 -581 319 -547
+rect 499 -581 511 -547
+rect 691 -581 703 -547
+rect -653 -587 -595 -581
+rect -461 -587 -403 -581
+rect -269 -587 -211 -581
+rect -77 -587 -19 -581
+rect 115 -587 173 -581
+rect 307 -587 365 -581
+rect 499 -587 557 -581
+rect 691 -587 749 -581
+rect -653 -655 -595 -649
+rect -461 -655 -403 -649
+rect -269 -655 -211 -649
+rect -77 -655 -19 -649
+rect 115 -655 173 -649
+rect 307 -655 365 -649
+rect 499 -655 557 -649
+rect 691 -655 749 -649
+rect -653 -689 -641 -655
+rect -461 -689 -449 -655
+rect -269 -689 -257 -655
+rect -77 -689 -65 -655
+rect 115 -689 127 -655
+rect 307 -689 319 -655
+rect 499 -689 511 -655
+rect 691 -689 703 -655
+rect -653 -695 -595 -689
+rect -461 -695 -403 -689
+rect -269 -695 -211 -689
+rect -77 -695 -19 -689
+rect 115 -695 173 -689
+rect 307 -695 365 -689
+rect 499 -695 557 -689
+rect 691 -695 749 -689
+rect -749 -1165 -691 -1159
+rect -557 -1165 -499 -1159
+rect -365 -1165 -307 -1159
+rect -173 -1165 -115 -1159
+rect 19 -1165 77 -1159
+rect 211 -1165 269 -1159
+rect 403 -1165 461 -1159
+rect 595 -1165 653 -1159
+rect -749 -1199 -737 -1165
+rect -557 -1199 -545 -1165
+rect -365 -1199 -353 -1165
+rect -173 -1199 -161 -1165
+rect 19 -1199 31 -1165
+rect 211 -1199 223 -1165
+rect 403 -1199 415 -1165
+rect 595 -1199 607 -1165
+rect -749 -1205 -691 -1199
+rect -557 -1205 -499 -1199
+rect -365 -1205 -307 -1199
+rect -173 -1205 -115 -1199
+rect 19 -1205 77 -1199
+rect 211 -1205 269 -1199
+rect 403 -1205 461 -1199
+rect 595 -1205 653 -1199
+<< pwell >>
+rect -935 -1337 935 1337
+<< nmos >>
+rect -735 727 -705 1127
+rect -639 727 -609 1127
+rect -543 727 -513 1127
+rect -447 727 -417 1127
+rect -351 727 -321 1127
+rect -255 727 -225 1127
+rect -159 727 -129 1127
+rect -63 727 -33 1127
+rect 33 727 63 1127
+rect 129 727 159 1127
+rect 225 727 255 1127
+rect 321 727 351 1127
+rect 417 727 447 1127
+rect 513 727 543 1127
+rect 609 727 639 1127
+rect 705 727 735 1127
+rect -735 109 -705 509
+rect -639 109 -609 509
+rect -543 109 -513 509
+rect -447 109 -417 509
+rect -351 109 -321 509
+rect -255 109 -225 509
+rect -159 109 -129 509
+rect -63 109 -33 509
+rect 33 109 63 509
+rect 129 109 159 509
+rect 225 109 255 509
+rect 321 109 351 509
+rect 417 109 447 509
+rect 513 109 543 509
+rect 609 109 639 509
+rect 705 109 735 509
+rect -735 -509 -705 -109
+rect -639 -509 -609 -109
+rect -543 -509 -513 -109
+rect -447 -509 -417 -109
+rect -351 -509 -321 -109
+rect -255 -509 -225 -109
+rect -159 -509 -129 -109
+rect -63 -509 -33 -109
+rect 33 -509 63 -109
+rect 129 -509 159 -109
+rect 225 -509 255 -109
+rect 321 -509 351 -109
+rect 417 -509 447 -109
+rect 513 -509 543 -109
+rect 609 -509 639 -109
+rect 705 -509 735 -109
+rect -735 -1127 -705 -727
+rect -639 -1127 -609 -727
+rect -543 -1127 -513 -727
+rect -447 -1127 -417 -727
+rect -351 -1127 -321 -727
+rect -255 -1127 -225 -727
+rect -159 -1127 -129 -727
+rect -63 -1127 -33 -727
+rect 33 -1127 63 -727
+rect 129 -1127 159 -727
+rect 225 -1127 255 -727
+rect 321 -1127 351 -727
+rect 417 -1127 447 -727
+rect 513 -1127 543 -727
+rect 609 -1127 639 -727
+rect 705 -1127 735 -727
+<< ndiff >>
+rect -797 1115 -735 1127
+rect -797 739 -785 1115
+rect -751 739 -735 1115
+rect -797 727 -735 739
+rect -705 1115 -639 1127
+rect -705 739 -689 1115
+rect -655 739 -639 1115
+rect -705 727 -639 739
+rect -609 1115 -543 1127
+rect -609 739 -593 1115
+rect -559 739 -543 1115
+rect -609 727 -543 739
+rect -513 1115 -447 1127
+rect -513 739 -497 1115
+rect -463 739 -447 1115
+rect -513 727 -447 739
+rect -417 1115 -351 1127
+rect -417 739 -401 1115
+rect -367 739 -351 1115
+rect -417 727 -351 739
+rect -321 1115 -255 1127
+rect -321 739 -305 1115
+rect -271 739 -255 1115
+rect -321 727 -255 739
+rect -225 1115 -159 1127
+rect -225 739 -209 1115
+rect -175 739 -159 1115
+rect -225 727 -159 739
+rect -129 1115 -63 1127
+rect -129 739 -113 1115
+rect -79 739 -63 1115
+rect -129 727 -63 739
+rect -33 1115 33 1127
+rect -33 739 -17 1115
+rect 17 739 33 1115
+rect -33 727 33 739
+rect 63 1115 129 1127
+rect 63 739 79 1115
+rect 113 739 129 1115
+rect 63 727 129 739
+rect 159 1115 225 1127
+rect 159 739 175 1115
+rect 209 739 225 1115
+rect 159 727 225 739
+rect 255 1115 321 1127
+rect 255 739 271 1115
+rect 305 739 321 1115
+rect 255 727 321 739
+rect 351 1115 417 1127
+rect 351 739 367 1115
+rect 401 739 417 1115
+rect 351 727 417 739
+rect 447 1115 513 1127
+rect 447 739 463 1115
+rect 497 739 513 1115
+rect 447 727 513 739
+rect 543 1115 609 1127
+rect 543 739 559 1115
+rect 593 739 609 1115
+rect 543 727 609 739
+rect 639 1115 705 1127
+rect 639 739 655 1115
+rect 689 739 705 1115
+rect 639 727 705 739
+rect 735 1115 797 1127
+rect 735 739 751 1115
+rect 785 739 797 1115
+rect 735 727 797 739
+rect -797 497 -735 509
+rect -797 121 -785 497
+rect -751 121 -735 497
+rect -797 109 -735 121
+rect -705 497 -639 509
+rect -705 121 -689 497
+rect -655 121 -639 497
+rect -705 109 -639 121
+rect -609 497 -543 509
+rect -609 121 -593 497
+rect -559 121 -543 497
+rect -609 109 -543 121
+rect -513 497 -447 509
+rect -513 121 -497 497
+rect -463 121 -447 497
+rect -513 109 -447 121
+rect -417 497 -351 509
+rect -417 121 -401 497
+rect -367 121 -351 497
+rect -417 109 -351 121
+rect -321 497 -255 509
+rect -321 121 -305 497
+rect -271 121 -255 497
+rect -321 109 -255 121
+rect -225 497 -159 509
+rect -225 121 -209 497
+rect -175 121 -159 497
+rect -225 109 -159 121
+rect -129 497 -63 509
+rect -129 121 -113 497
+rect -79 121 -63 497
+rect -129 109 -63 121
+rect -33 497 33 509
+rect -33 121 -17 497
+rect 17 121 33 497
+rect -33 109 33 121
+rect 63 497 129 509
+rect 63 121 79 497
+rect 113 121 129 497
+rect 63 109 129 121
+rect 159 497 225 509
+rect 159 121 175 497
+rect 209 121 225 497
+rect 159 109 225 121
+rect 255 497 321 509
+rect 255 121 271 497
+rect 305 121 321 497
+rect 255 109 321 121
+rect 351 497 417 509
+rect 351 121 367 497
+rect 401 121 417 497
+rect 351 109 417 121
+rect 447 497 513 509
+rect 447 121 463 497
+rect 497 121 513 497
+rect 447 109 513 121
+rect 543 497 609 509
+rect 543 121 559 497
+rect 593 121 609 497
+rect 543 109 609 121
+rect 639 497 705 509
+rect 639 121 655 497
+rect 689 121 705 497
+rect 639 109 705 121
+rect 735 497 797 509
+rect 735 121 751 497
+rect 785 121 797 497
+rect 735 109 797 121
+rect -797 -121 -735 -109
+rect -797 -497 -785 -121
+rect -751 -497 -735 -121
+rect -797 -509 -735 -497
+rect -705 -121 -639 -109
+rect -705 -497 -689 -121
+rect -655 -497 -639 -121
+rect -705 -509 -639 -497
+rect -609 -121 -543 -109
+rect -609 -497 -593 -121
+rect -559 -497 -543 -121
+rect -609 -509 -543 -497
+rect -513 -121 -447 -109
+rect -513 -497 -497 -121
+rect -463 -497 -447 -121
+rect -513 -509 -447 -497
+rect -417 -121 -351 -109
+rect -417 -497 -401 -121
+rect -367 -497 -351 -121
+rect -417 -509 -351 -497
+rect -321 -121 -255 -109
+rect -321 -497 -305 -121
+rect -271 -497 -255 -121
+rect -321 -509 -255 -497
+rect -225 -121 -159 -109
+rect -225 -497 -209 -121
+rect -175 -497 -159 -121
+rect -225 -509 -159 -497
+rect -129 -121 -63 -109
+rect -129 -497 -113 -121
+rect -79 -497 -63 -121
+rect -129 -509 -63 -497
+rect -33 -121 33 -109
+rect -33 -497 -17 -121
+rect 17 -497 33 -121
+rect -33 -509 33 -497
+rect 63 -121 129 -109
+rect 63 -497 79 -121
+rect 113 -497 129 -121
+rect 63 -509 129 -497
+rect 159 -121 225 -109
+rect 159 -497 175 -121
+rect 209 -497 225 -121
+rect 159 -509 225 -497
+rect 255 -121 321 -109
+rect 255 -497 271 -121
+rect 305 -497 321 -121
+rect 255 -509 321 -497
+rect 351 -121 417 -109
+rect 351 -497 367 -121
+rect 401 -497 417 -121
+rect 351 -509 417 -497
+rect 447 -121 513 -109
+rect 447 -497 463 -121
+rect 497 -497 513 -121
+rect 447 -509 513 -497
+rect 543 -121 609 -109
+rect 543 -497 559 -121
+rect 593 -497 609 -121
+rect 543 -509 609 -497
+rect 639 -121 705 -109
+rect 639 -497 655 -121
+rect 689 -497 705 -121
+rect 639 -509 705 -497
+rect 735 -121 797 -109
+rect 735 -497 751 -121
+rect 785 -497 797 -121
+rect 735 -509 797 -497
+rect -797 -739 -735 -727
+rect -797 -1115 -785 -739
+rect -751 -1115 -735 -739
+rect -797 -1127 -735 -1115
+rect -705 -739 -639 -727
+rect -705 -1115 -689 -739
+rect -655 -1115 -639 -739
+rect -705 -1127 -639 -1115
+rect -609 -739 -543 -727
+rect -609 -1115 -593 -739
+rect -559 -1115 -543 -739
+rect -609 -1127 -543 -1115
+rect -513 -739 -447 -727
+rect -513 -1115 -497 -739
+rect -463 -1115 -447 -739
+rect -513 -1127 -447 -1115
+rect -417 -739 -351 -727
+rect -417 -1115 -401 -739
+rect -367 -1115 -351 -739
+rect -417 -1127 -351 -1115
+rect -321 -739 -255 -727
+rect -321 -1115 -305 -739
+rect -271 -1115 -255 -739
+rect -321 -1127 -255 -1115
+rect -225 -739 -159 -727
+rect -225 -1115 -209 -739
+rect -175 -1115 -159 -739
+rect -225 -1127 -159 -1115
+rect -129 -739 -63 -727
+rect -129 -1115 -113 -739
+rect -79 -1115 -63 -739
+rect -129 -1127 -63 -1115
+rect -33 -739 33 -727
+rect -33 -1115 -17 -739
+rect 17 -1115 33 -739
+rect -33 -1127 33 -1115
+rect 63 -739 129 -727
+rect 63 -1115 79 -739
+rect 113 -1115 129 -739
+rect 63 -1127 129 -1115
+rect 159 -739 225 -727
+rect 159 -1115 175 -739
+rect 209 -1115 225 -739
+rect 159 -1127 225 -1115
+rect 255 -739 321 -727
+rect 255 -1115 271 -739
+rect 305 -1115 321 -739
+rect 255 -1127 321 -1115
+rect 351 -739 417 -727
+rect 351 -1115 367 -739
+rect 401 -1115 417 -739
+rect 351 -1127 417 -1115
+rect 447 -739 513 -727
+rect 447 -1115 463 -739
+rect 497 -1115 513 -739
+rect 447 -1127 513 -1115
+rect 543 -739 609 -727
+rect 543 -1115 559 -739
+rect 593 -1115 609 -739
+rect 543 -1127 609 -1115
+rect 639 -739 705 -727
+rect 639 -1115 655 -739
+rect 689 -1115 705 -739
+rect 639 -1127 705 -1115
+rect 735 -739 797 -727
+rect 735 -1115 751 -739
+rect 785 -1115 797 -739
+rect 735 -1127 797 -1115
+<< ndiffc >>
+rect -785 739 -751 1115
+rect -689 739 -655 1115
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect 655 739 689 1115
+rect 751 739 785 1115
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect -785 -1115 -751 -739
+rect -689 -1115 -655 -739
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+rect 655 -1115 689 -739
+rect 751 -1115 785 -739
+<< psubdiff >>
+rect -899 1267 -803 1301
+rect 803 1267 899 1301
+rect -899 1205 -865 1267
+rect 865 1205 899 1267
+rect -899 -1267 -865 -1205
+rect 865 -1267 899 -1205
+rect -899 -1301 -803 -1267
+rect 803 -1301 899 -1267
+<< psubdiffcont >>
+rect -803 1267 803 1301
+rect -899 -1205 -865 1205
+rect 865 -1205 899 1205
+rect -803 -1301 803 -1267
+<< poly >>
+rect -753 1199 -687 1215
+rect -753 1165 -737 1199
+rect -703 1165 -687 1199
+rect -753 1149 -687 1165
+rect -561 1199 -495 1215
+rect -561 1165 -545 1199
+rect -511 1165 -495 1199
+rect -735 1127 -705 1149
+rect -639 1127 -609 1153
+rect -561 1149 -495 1165
+rect -369 1199 -303 1215
+rect -369 1165 -353 1199
+rect -319 1165 -303 1199
+rect -543 1127 -513 1149
+rect -447 1127 -417 1153
+rect -369 1149 -303 1165
+rect -177 1199 -111 1215
+rect -177 1165 -161 1199
+rect -127 1165 -111 1199
+rect -351 1127 -321 1149
+rect -255 1127 -225 1153
+rect -177 1149 -111 1165
+rect 15 1199 81 1215
+rect 15 1165 31 1199
+rect 65 1165 81 1199
+rect -159 1127 -129 1149
+rect -63 1127 -33 1153
+rect 15 1149 81 1165
+rect 207 1199 273 1215
+rect 207 1165 223 1199
+rect 257 1165 273 1199
+rect 33 1127 63 1149
+rect 129 1127 159 1153
+rect 207 1149 273 1165
+rect 399 1199 465 1215
+rect 399 1165 415 1199
+rect 449 1165 465 1199
+rect 225 1127 255 1149
+rect 321 1127 351 1153
+rect 399 1149 465 1165
+rect 591 1199 657 1215
+rect 591 1165 607 1199
+rect 641 1165 657 1199
+rect 417 1127 447 1149
+rect 513 1127 543 1153
+rect 591 1149 657 1165
+rect 609 1127 639 1149
+rect 705 1127 735 1153
+rect -735 701 -705 727
+rect -639 705 -609 727
+rect -657 689 -591 705
+rect -543 701 -513 727
+rect -447 705 -417 727
+rect -657 655 -641 689
+rect -607 655 -591 689
+rect -657 639 -591 655
+rect -465 689 -399 705
+rect -351 701 -321 727
+rect -255 705 -225 727
+rect -465 655 -449 689
+rect -415 655 -399 689
+rect -465 639 -399 655
+rect -273 689 -207 705
+rect -159 701 -129 727
+rect -63 705 -33 727
+rect -273 655 -257 689
+rect -223 655 -207 689
+rect -273 639 -207 655
+rect -81 689 -15 705
+rect 33 701 63 727
+rect 129 705 159 727
+rect -81 655 -65 689
+rect -31 655 -15 689
+rect -81 639 -15 655
+rect 111 689 177 705
+rect 225 701 255 727
+rect 321 705 351 727
+rect 111 655 127 689
+rect 161 655 177 689
+rect 111 639 177 655
+rect 303 689 369 705
+rect 417 701 447 727
+rect 513 705 543 727
+rect 303 655 319 689
+rect 353 655 369 689
+rect 303 639 369 655
+rect 495 689 561 705
+rect 609 701 639 727
+rect 705 705 735 727
+rect 495 655 511 689
+rect 545 655 561 689
+rect 495 639 561 655
+rect 687 689 753 705
+rect 687 655 703 689
+rect 737 655 753 689
+rect 687 639 753 655
+rect -657 581 -591 597
+rect -657 547 -641 581
+rect -607 547 -591 581
+rect -735 509 -705 535
+rect -657 531 -591 547
+rect -465 581 -399 597
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -639 509 -609 531
+rect -543 509 -513 535
+rect -465 531 -399 547
+rect -273 581 -207 597
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -447 509 -417 531
+rect -351 509 -321 535
+rect -273 531 -207 547
+rect -81 581 -15 597
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect -255 509 -225 531
+rect -159 509 -129 535
+rect -81 531 -15 547
+rect 111 581 177 597
+rect 111 547 127 581
+rect 161 547 177 581
+rect -63 509 -33 531
+rect 33 509 63 535
+rect 111 531 177 547
+rect 303 581 369 597
+rect 303 547 319 581
+rect 353 547 369 581
+rect 129 509 159 531
+rect 225 509 255 535
+rect 303 531 369 547
+rect 495 581 561 597
+rect 495 547 511 581
+rect 545 547 561 581
+rect 321 509 351 531
+rect 417 509 447 535
+rect 495 531 561 547
+rect 687 581 753 597
+rect 687 547 703 581
+rect 737 547 753 581
+rect 513 509 543 531
+rect 609 509 639 535
+rect 687 531 753 547
+rect 705 509 735 531
+rect -735 87 -705 109
+rect -753 71 -687 87
+rect -639 83 -609 109
+rect -543 87 -513 109
+rect -753 37 -737 71
+rect -703 37 -687 71
+rect -753 21 -687 37
+rect -561 71 -495 87
+rect -447 83 -417 109
+rect -351 87 -321 109
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -561 21 -495 37
+rect -369 71 -303 87
+rect -255 83 -225 109
+rect -159 87 -129 109
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -63 83 -33 109
+rect 33 87 63 109
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 129 83 159 109
+rect 225 87 255 109
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 321 83 351 109
+rect 417 87 447 109
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 513 83 543 109
+rect 609 87 639 109
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect 591 71 657 87
+rect 705 83 735 109
+rect 591 37 607 71
+rect 641 37 657 71
+rect 591 21 657 37
+rect -753 -37 -687 -21
+rect -753 -71 -737 -37
+rect -703 -71 -687 -37
+rect -753 -87 -687 -71
+rect -561 -37 -495 -21
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -735 -109 -705 -87
+rect -639 -109 -609 -83
+rect -561 -87 -495 -71
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -543 -109 -513 -87
+rect -447 -109 -417 -83
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -351 -109 -321 -87
+rect -255 -109 -225 -83
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -159 -109 -129 -87
+rect -63 -109 -33 -83
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 33 -109 63 -87
+rect 129 -109 159 -83
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 225 -109 255 -87
+rect 321 -109 351 -83
+rect 399 -87 465 -71
+rect 591 -37 657 -21
+rect 591 -71 607 -37
+rect 641 -71 657 -37
+rect 417 -109 447 -87
+rect 513 -109 543 -83
+rect 591 -87 657 -71
+rect 609 -109 639 -87
+rect 705 -109 735 -83
+rect -735 -535 -705 -509
+rect -639 -531 -609 -509
+rect -657 -547 -591 -531
+rect -543 -535 -513 -509
+rect -447 -531 -417 -509
+rect -657 -581 -641 -547
+rect -607 -581 -591 -547
+rect -657 -597 -591 -581
+rect -465 -547 -399 -531
+rect -351 -535 -321 -509
+rect -255 -531 -225 -509
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -465 -597 -399 -581
+rect -273 -547 -207 -531
+rect -159 -535 -129 -509
+rect -63 -531 -33 -509
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -273 -597 -207 -581
+rect -81 -547 -15 -531
+rect 33 -535 63 -509
+rect 129 -531 159 -509
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect -81 -597 -15 -581
+rect 111 -547 177 -531
+rect 225 -535 255 -509
+rect 321 -531 351 -509
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 111 -597 177 -581
+rect 303 -547 369 -531
+rect 417 -535 447 -509
+rect 513 -531 543 -509
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 303 -597 369 -581
+rect 495 -547 561 -531
+rect 609 -535 639 -509
+rect 705 -531 735 -509
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect 495 -597 561 -581
+rect 687 -547 753 -531
+rect 687 -581 703 -547
+rect 737 -581 753 -547
+rect 687 -597 753 -581
+rect -657 -655 -591 -639
+rect -657 -689 -641 -655
+rect -607 -689 -591 -655
+rect -735 -727 -705 -701
+rect -657 -705 -591 -689
+rect -465 -655 -399 -639
+rect -465 -689 -449 -655
+rect -415 -689 -399 -655
+rect -639 -727 -609 -705
+rect -543 -727 -513 -701
+rect -465 -705 -399 -689
+rect -273 -655 -207 -639
+rect -273 -689 -257 -655
+rect -223 -689 -207 -655
+rect -447 -727 -417 -705
+rect -351 -727 -321 -701
+rect -273 -705 -207 -689
+rect -81 -655 -15 -639
+rect -81 -689 -65 -655
+rect -31 -689 -15 -655
+rect -255 -727 -225 -705
+rect -159 -727 -129 -701
+rect -81 -705 -15 -689
+rect 111 -655 177 -639
+rect 111 -689 127 -655
+rect 161 -689 177 -655
+rect -63 -727 -33 -705
+rect 33 -727 63 -701
+rect 111 -705 177 -689
+rect 303 -655 369 -639
+rect 303 -689 319 -655
+rect 353 -689 369 -655
+rect 129 -727 159 -705
+rect 225 -727 255 -701
+rect 303 -705 369 -689
+rect 495 -655 561 -639
+rect 495 -689 511 -655
+rect 545 -689 561 -655
+rect 321 -727 351 -705
+rect 417 -727 447 -701
+rect 495 -705 561 -689
+rect 687 -655 753 -639
+rect 687 -689 703 -655
+rect 737 -689 753 -655
+rect 513 -727 543 -705
+rect 609 -727 639 -701
+rect 687 -705 753 -689
+rect 705 -727 735 -705
+rect -735 -1149 -705 -1127
+rect -753 -1165 -687 -1149
+rect -639 -1153 -609 -1127
+rect -543 -1149 -513 -1127
+rect -753 -1199 -737 -1165
+rect -703 -1199 -687 -1165
+rect -753 -1215 -687 -1199
+rect -561 -1165 -495 -1149
+rect -447 -1153 -417 -1127
+rect -351 -1149 -321 -1127
+rect -561 -1199 -545 -1165
+rect -511 -1199 -495 -1165
+rect -561 -1215 -495 -1199
+rect -369 -1165 -303 -1149
+rect -255 -1153 -225 -1127
+rect -159 -1149 -129 -1127
+rect -369 -1199 -353 -1165
+rect -319 -1199 -303 -1165
+rect -369 -1215 -303 -1199
+rect -177 -1165 -111 -1149
+rect -63 -1153 -33 -1127
+rect 33 -1149 63 -1127
+rect -177 -1199 -161 -1165
+rect -127 -1199 -111 -1165
+rect -177 -1215 -111 -1199
+rect 15 -1165 81 -1149
+rect 129 -1153 159 -1127
+rect 225 -1149 255 -1127
+rect 15 -1199 31 -1165
+rect 65 -1199 81 -1165
+rect 15 -1215 81 -1199
+rect 207 -1165 273 -1149
+rect 321 -1153 351 -1127
+rect 417 -1149 447 -1127
+rect 207 -1199 223 -1165
+rect 257 -1199 273 -1165
+rect 207 -1215 273 -1199
+rect 399 -1165 465 -1149
+rect 513 -1153 543 -1127
+rect 609 -1149 639 -1127
+rect 399 -1199 415 -1165
+rect 449 -1199 465 -1165
+rect 399 -1215 465 -1199
+rect 591 -1165 657 -1149
+rect 705 -1153 735 -1127
+rect 591 -1199 607 -1165
+rect 641 -1199 657 -1165
+rect 591 -1215 657 -1199
+<< polycont >>
+rect -737 1165 -703 1199
+rect -545 1165 -511 1199
+rect -353 1165 -319 1199
+rect -161 1165 -127 1199
+rect 31 1165 65 1199
+rect 223 1165 257 1199
+rect 415 1165 449 1199
+rect 607 1165 641 1199
+rect -641 655 -607 689
+rect -449 655 -415 689
+rect -257 655 -223 689
+rect -65 655 -31 689
+rect 127 655 161 689
+rect 319 655 353 689
+rect 511 655 545 689
+rect 703 655 737 689
+rect -641 547 -607 581
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect 703 547 737 581
+rect -737 37 -703 71
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect 607 37 641 71
+rect -737 -71 -703 -37
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect 607 -71 641 -37
+rect -641 -581 -607 -547
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect 703 -581 737 -547
+rect -641 -689 -607 -655
+rect -449 -689 -415 -655
+rect -257 -689 -223 -655
+rect -65 -689 -31 -655
+rect 127 -689 161 -655
+rect 319 -689 353 -655
+rect 511 -689 545 -655
+rect 703 -689 737 -655
+rect -737 -1199 -703 -1165
+rect -545 -1199 -511 -1165
+rect -353 -1199 -319 -1165
+rect -161 -1199 -127 -1165
+rect 31 -1199 65 -1165
+rect 223 -1199 257 -1165
+rect 415 -1199 449 -1165
+rect 607 -1199 641 -1165
+<< locali >>
+rect -899 1267 -803 1301
+rect 803 1267 899 1301
+rect -899 1205 -865 1267
+rect 865 1205 899 1267
+rect -753 1165 -737 1199
+rect -703 1165 -687 1199
+rect -561 1165 -545 1199
+rect -511 1165 -495 1199
+rect -369 1165 -353 1199
+rect -319 1165 -303 1199
+rect -177 1165 -161 1199
+rect -127 1165 -111 1199
+rect 15 1165 31 1199
+rect 65 1165 81 1199
+rect 207 1165 223 1199
+rect 257 1165 273 1199
+rect 399 1165 415 1199
+rect 449 1165 465 1199
+rect 591 1165 607 1199
+rect 641 1165 657 1199
+rect -785 1115 -751 1131
+rect -785 723 -751 739
+rect -689 1115 -655 1131
+rect -689 723 -655 739
+rect -593 1115 -559 1131
+rect -593 723 -559 739
+rect -497 1115 -463 1131
+rect -497 723 -463 739
+rect -401 1115 -367 1131
+rect -401 723 -367 739
+rect -305 1115 -271 1131
+rect -305 723 -271 739
+rect -209 1115 -175 1131
+rect -209 723 -175 739
+rect -113 1115 -79 1131
+rect -113 723 -79 739
+rect -17 1115 17 1131
+rect -17 723 17 739
+rect 79 1115 113 1131
+rect 79 723 113 739
+rect 175 1115 209 1131
+rect 175 723 209 739
+rect 271 1115 305 1131
+rect 271 723 305 739
+rect 367 1115 401 1131
+rect 367 723 401 739
+rect 463 1115 497 1131
+rect 463 723 497 739
+rect 559 1115 593 1131
+rect 559 723 593 739
+rect 655 1115 689 1131
+rect 655 723 689 739
+rect 751 1115 785 1131
+rect 751 723 785 739
+rect -657 655 -641 689
+rect -607 655 -591 689
+rect -465 655 -449 689
+rect -415 655 -399 689
+rect -273 655 -257 689
+rect -223 655 -207 689
+rect -81 655 -65 689
+rect -31 655 -15 689
+rect 111 655 127 689
+rect 161 655 177 689
+rect 303 655 319 689
+rect 353 655 369 689
+rect 495 655 511 689
+rect 545 655 561 689
+rect 687 655 703 689
+rect 737 655 753 689
+rect -657 547 -641 581
+rect -607 547 -591 581
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect 111 547 127 581
+rect 161 547 177 581
+rect 303 547 319 581
+rect 353 547 369 581
+rect 495 547 511 581
+rect 545 547 561 581
+rect 687 547 703 581
+rect 737 547 753 581
+rect -785 497 -751 513
+rect -785 105 -751 121
+rect -689 497 -655 513
+rect -689 105 -655 121
+rect -593 497 -559 513
+rect -593 105 -559 121
+rect -497 497 -463 513
+rect -497 105 -463 121
+rect -401 497 -367 513
+rect -401 105 -367 121
+rect -305 497 -271 513
+rect -305 105 -271 121
+rect -209 497 -175 513
+rect -209 105 -175 121
+rect -113 497 -79 513
+rect -113 105 -79 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 79 497 113 513
+rect 79 105 113 121
+rect 175 497 209 513
+rect 175 105 209 121
+rect 271 497 305 513
+rect 271 105 305 121
+rect 367 497 401 513
+rect 367 105 401 121
+rect 463 497 497 513
+rect 463 105 497 121
+rect 559 497 593 513
+rect 559 105 593 121
+rect 655 497 689 513
+rect 655 105 689 121
+rect 751 497 785 513
+rect 751 105 785 121
+rect -753 37 -737 71
+rect -703 37 -687 71
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect 591 37 607 71
+rect 641 37 657 71
+rect -753 -71 -737 -37
+rect -703 -71 -687 -37
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 591 -71 607 -37
+rect 641 -71 657 -37
+rect -785 -121 -751 -105
+rect -785 -513 -751 -497
+rect -689 -121 -655 -105
+rect -689 -513 -655 -497
+rect -593 -121 -559 -105
+rect -593 -513 -559 -497
+rect -497 -121 -463 -105
+rect -497 -513 -463 -497
+rect -401 -121 -367 -105
+rect -401 -513 -367 -497
+rect -305 -121 -271 -105
+rect -305 -513 -271 -497
+rect -209 -121 -175 -105
+rect -209 -513 -175 -497
+rect -113 -121 -79 -105
+rect -113 -513 -79 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 79 -121 113 -105
+rect 79 -513 113 -497
+rect 175 -121 209 -105
+rect 175 -513 209 -497
+rect 271 -121 305 -105
+rect 271 -513 305 -497
+rect 367 -121 401 -105
+rect 367 -513 401 -497
+rect 463 -121 497 -105
+rect 463 -513 497 -497
+rect 559 -121 593 -105
+rect 559 -513 593 -497
+rect 655 -121 689 -105
+rect 655 -513 689 -497
+rect 751 -121 785 -105
+rect 751 -513 785 -497
+rect -657 -581 -641 -547
+rect -607 -581 -591 -547
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect 687 -581 703 -547
+rect 737 -581 753 -547
+rect -657 -689 -641 -655
+rect -607 -689 -591 -655
+rect -465 -689 -449 -655
+rect -415 -689 -399 -655
+rect -273 -689 -257 -655
+rect -223 -689 -207 -655
+rect -81 -689 -65 -655
+rect -31 -689 -15 -655
+rect 111 -689 127 -655
+rect 161 -689 177 -655
+rect 303 -689 319 -655
+rect 353 -689 369 -655
+rect 495 -689 511 -655
+rect 545 -689 561 -655
+rect 687 -689 703 -655
+rect 737 -689 753 -655
+rect -785 -739 -751 -723
+rect -785 -1131 -751 -1115
+rect -689 -739 -655 -723
+rect -689 -1131 -655 -1115
+rect -593 -739 -559 -723
+rect -593 -1131 -559 -1115
+rect -497 -739 -463 -723
+rect -497 -1131 -463 -1115
+rect -401 -739 -367 -723
+rect -401 -1131 -367 -1115
+rect -305 -739 -271 -723
+rect -305 -1131 -271 -1115
+rect -209 -739 -175 -723
+rect -209 -1131 -175 -1115
+rect -113 -739 -79 -723
+rect -113 -1131 -79 -1115
+rect -17 -739 17 -723
+rect -17 -1131 17 -1115
+rect 79 -739 113 -723
+rect 79 -1131 113 -1115
+rect 175 -739 209 -723
+rect 175 -1131 209 -1115
+rect 271 -739 305 -723
+rect 271 -1131 305 -1115
+rect 367 -739 401 -723
+rect 367 -1131 401 -1115
+rect 463 -739 497 -723
+rect 463 -1131 497 -1115
+rect 559 -739 593 -723
+rect 559 -1131 593 -1115
+rect 655 -739 689 -723
+rect 655 -1131 689 -1115
+rect 751 -739 785 -723
+rect 751 -1131 785 -1115
+rect -753 -1199 -737 -1165
+rect -703 -1199 -687 -1165
+rect -561 -1199 -545 -1165
+rect -511 -1199 -495 -1165
+rect -369 -1199 -353 -1165
+rect -319 -1199 -303 -1165
+rect -177 -1199 -161 -1165
+rect -127 -1199 -111 -1165
+rect 15 -1199 31 -1165
+rect 65 -1199 81 -1165
+rect 207 -1199 223 -1165
+rect 257 -1199 273 -1165
+rect 399 -1199 415 -1165
+rect 449 -1199 465 -1165
+rect 591 -1199 607 -1165
+rect 641 -1199 657 -1165
+rect -899 -1267 -865 -1205
+rect 865 -1267 899 -1205
+rect -899 -1301 -803 -1267
+rect 803 -1301 899 -1267
+<< viali >>
+rect -737 1165 -703 1199
+rect -545 1165 -511 1199
+rect -353 1165 -319 1199
+rect -161 1165 -127 1199
+rect 31 1165 65 1199
+rect 223 1165 257 1199
+rect 415 1165 449 1199
+rect 607 1165 641 1199
+rect -785 739 -751 1115
+rect -689 739 -655 1115
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect 655 739 689 1115
+rect 751 739 785 1115
+rect -641 655 -607 689
+rect -449 655 -415 689
+rect -257 655 -223 689
+rect -65 655 -31 689
+rect 127 655 161 689
+rect 319 655 353 689
+rect 511 655 545 689
+rect 703 655 737 689
+rect -641 547 -607 581
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect 703 547 737 581
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect -737 37 -703 71
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect 607 37 641 71
+rect -737 -71 -703 -37
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect 607 -71 641 -37
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect -641 -581 -607 -547
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect 703 -581 737 -547
+rect -641 -689 -607 -655
+rect -449 -689 -415 -655
+rect -257 -689 -223 -655
+rect -65 -689 -31 -655
+rect 127 -689 161 -655
+rect 319 -689 353 -655
+rect 511 -689 545 -655
+rect 703 -689 737 -655
+rect -785 -1115 -751 -739
+rect -689 -1115 -655 -739
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+rect 655 -1115 689 -739
+rect 751 -1115 785 -739
+rect -737 -1199 -703 -1165
+rect -545 -1199 -511 -1165
+rect -353 -1199 -319 -1165
+rect -161 -1199 -127 -1165
+rect 31 -1199 65 -1165
+rect 223 -1199 257 -1165
+rect 415 -1199 449 -1165
+rect 607 -1199 641 -1165
+<< metal1 >>
+rect -749 1199 -691 1205
+rect -749 1165 -737 1199
+rect -703 1165 -691 1199
+rect -749 1159 -691 1165
+rect -557 1199 -499 1205
+rect -557 1165 -545 1199
+rect -511 1165 -499 1199
+rect -557 1159 -499 1165
+rect -365 1199 -307 1205
+rect -365 1165 -353 1199
+rect -319 1165 -307 1199
+rect -365 1159 -307 1165
+rect -173 1199 -115 1205
+rect -173 1165 -161 1199
+rect -127 1165 -115 1199
+rect -173 1159 -115 1165
+rect 19 1199 77 1205
+rect 19 1165 31 1199
+rect 65 1165 77 1199
+rect 19 1159 77 1165
+rect 211 1199 269 1205
+rect 211 1165 223 1199
+rect 257 1165 269 1199
+rect 211 1159 269 1165
+rect 403 1199 461 1205
+rect 403 1165 415 1199
+rect 449 1165 461 1199
+rect 403 1159 461 1165
+rect 595 1199 653 1205
+rect 595 1165 607 1199
+rect 641 1165 653 1199
+rect 595 1159 653 1165
+rect -791 1115 -745 1127
+rect -791 739 -785 1115
+rect -751 739 -745 1115
+rect -791 727 -745 739
+rect -695 1115 -649 1127
+rect -695 739 -689 1115
+rect -655 739 -649 1115
+rect -695 727 -649 739
+rect -599 1115 -553 1127
+rect -599 739 -593 1115
+rect -559 739 -553 1115
+rect -599 727 -553 739
+rect -503 1115 -457 1127
+rect -503 739 -497 1115
+rect -463 739 -457 1115
+rect -503 727 -457 739
+rect -407 1115 -361 1127
+rect -407 739 -401 1115
+rect -367 739 -361 1115
+rect -407 727 -361 739
+rect -311 1115 -265 1127
+rect -311 739 -305 1115
+rect -271 739 -265 1115
+rect -311 727 -265 739
+rect -215 1115 -169 1127
+rect -215 739 -209 1115
+rect -175 739 -169 1115
+rect -215 727 -169 739
+rect -119 1115 -73 1127
+rect -119 739 -113 1115
+rect -79 739 -73 1115
+rect -119 727 -73 739
+rect -23 1115 23 1127
+rect -23 739 -17 1115
+rect 17 739 23 1115
+rect -23 727 23 739
+rect 73 1115 119 1127
+rect 73 739 79 1115
+rect 113 739 119 1115
+rect 73 727 119 739
+rect 169 1115 215 1127
+rect 169 739 175 1115
+rect 209 739 215 1115
+rect 169 727 215 739
+rect 265 1115 311 1127
+rect 265 739 271 1115
+rect 305 739 311 1115
+rect 265 727 311 739
+rect 361 1115 407 1127
+rect 361 739 367 1115
+rect 401 739 407 1115
+rect 361 727 407 739
+rect 457 1115 503 1127
+rect 457 739 463 1115
+rect 497 739 503 1115
+rect 457 727 503 739
+rect 553 1115 599 1127
+rect 553 739 559 1115
+rect 593 739 599 1115
+rect 553 727 599 739
+rect 649 1115 695 1127
+rect 649 739 655 1115
+rect 689 739 695 1115
+rect 649 727 695 739
+rect 745 1115 791 1127
+rect 745 739 751 1115
+rect 785 739 791 1115
+rect 745 727 791 739
+rect -653 689 -595 695
+rect -653 655 -641 689
+rect -607 655 -595 689
+rect -653 649 -595 655
+rect -461 689 -403 695
+rect -461 655 -449 689
+rect -415 655 -403 689
+rect -461 649 -403 655
+rect -269 689 -211 695
+rect -269 655 -257 689
+rect -223 655 -211 689
+rect -269 649 -211 655
+rect -77 689 -19 695
+rect -77 655 -65 689
+rect -31 655 -19 689
+rect -77 649 -19 655
+rect 115 689 173 695
+rect 115 655 127 689
+rect 161 655 173 689
+rect 115 649 173 655
+rect 307 689 365 695
+rect 307 655 319 689
+rect 353 655 365 689
+rect 307 649 365 655
+rect 499 689 557 695
+rect 499 655 511 689
+rect 545 655 557 689
+rect 499 649 557 655
+rect 691 689 749 695
+rect 691 655 703 689
+rect 737 655 749 689
+rect 691 649 749 655
+rect -653 581 -595 587
+rect -653 547 -641 581
+rect -607 547 -595 581
+rect -653 541 -595 547
+rect -461 581 -403 587
+rect -461 547 -449 581
+rect -415 547 -403 581
+rect -461 541 -403 547
+rect -269 581 -211 587
+rect -269 547 -257 581
+rect -223 547 -211 581
+rect -269 541 -211 547
+rect -77 581 -19 587
+rect -77 547 -65 581
+rect -31 547 -19 581
+rect -77 541 -19 547
+rect 115 581 173 587
+rect 115 547 127 581
+rect 161 547 173 581
+rect 115 541 173 547
+rect 307 581 365 587
+rect 307 547 319 581
+rect 353 547 365 581
+rect 307 541 365 547
+rect 499 581 557 587
+rect 499 547 511 581
+rect 545 547 557 581
+rect 499 541 557 547
+rect 691 581 749 587
+rect 691 547 703 581
+rect 737 547 749 581
+rect 691 541 749 547
+rect -791 497 -745 509
+rect -791 121 -785 497
+rect -751 121 -745 497
+rect -791 109 -745 121
+rect -695 497 -649 509
+rect -695 121 -689 497
+rect -655 121 -649 497
+rect -695 109 -649 121
+rect -599 497 -553 509
+rect -599 121 -593 497
+rect -559 121 -553 497
+rect -599 109 -553 121
+rect -503 497 -457 509
+rect -503 121 -497 497
+rect -463 121 -457 497
+rect -503 109 -457 121
+rect -407 497 -361 509
+rect -407 121 -401 497
+rect -367 121 -361 497
+rect -407 109 -361 121
+rect -311 497 -265 509
+rect -311 121 -305 497
+rect -271 121 -265 497
+rect -311 109 -265 121
+rect -215 497 -169 509
+rect -215 121 -209 497
+rect -175 121 -169 497
+rect -215 109 -169 121
+rect -119 497 -73 509
+rect -119 121 -113 497
+rect -79 121 -73 497
+rect -119 109 -73 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 73 497 119 509
+rect 73 121 79 497
+rect 113 121 119 497
+rect 73 109 119 121
+rect 169 497 215 509
+rect 169 121 175 497
+rect 209 121 215 497
+rect 169 109 215 121
+rect 265 497 311 509
+rect 265 121 271 497
+rect 305 121 311 497
+rect 265 109 311 121
+rect 361 497 407 509
+rect 361 121 367 497
+rect 401 121 407 497
+rect 361 109 407 121
+rect 457 497 503 509
+rect 457 121 463 497
+rect 497 121 503 497
+rect 457 109 503 121
+rect 553 497 599 509
+rect 553 121 559 497
+rect 593 121 599 497
+rect 553 109 599 121
+rect 649 497 695 509
+rect 649 121 655 497
+rect 689 121 695 497
+rect 649 109 695 121
+rect 745 497 791 509
+rect 745 121 751 497
+rect 785 121 791 497
+rect 745 109 791 121
+rect -749 71 -691 77
+rect -749 37 -737 71
+rect -703 37 -691 71
+rect -749 31 -691 37
+rect -557 71 -499 77
+rect -557 37 -545 71
+rect -511 37 -499 71
+rect -557 31 -499 37
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect 595 71 653 77
+rect 595 37 607 71
+rect 641 37 653 71
+rect 595 31 653 37
+rect -749 -37 -691 -31
+rect -749 -71 -737 -37
+rect -703 -71 -691 -37
+rect -749 -77 -691 -71
+rect -557 -37 -499 -31
+rect -557 -71 -545 -37
+rect -511 -71 -499 -37
+rect -557 -77 -499 -71
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect 595 -37 653 -31
+rect 595 -71 607 -37
+rect 641 -71 653 -37
+rect 595 -77 653 -71
+rect -791 -121 -745 -109
+rect -791 -497 -785 -121
+rect -751 -497 -745 -121
+rect -791 -509 -745 -497
+rect -695 -121 -649 -109
+rect -695 -497 -689 -121
+rect -655 -497 -649 -121
+rect -695 -509 -649 -497
+rect -599 -121 -553 -109
+rect -599 -497 -593 -121
+rect -559 -497 -553 -121
+rect -599 -509 -553 -497
+rect -503 -121 -457 -109
+rect -503 -497 -497 -121
+rect -463 -497 -457 -121
+rect -503 -509 -457 -497
+rect -407 -121 -361 -109
+rect -407 -497 -401 -121
+rect -367 -497 -361 -121
+rect -407 -509 -361 -497
+rect -311 -121 -265 -109
+rect -311 -497 -305 -121
+rect -271 -497 -265 -121
+rect -311 -509 -265 -497
+rect -215 -121 -169 -109
+rect -215 -497 -209 -121
+rect -175 -497 -169 -121
+rect -215 -509 -169 -497
+rect -119 -121 -73 -109
+rect -119 -497 -113 -121
+rect -79 -497 -73 -121
+rect -119 -509 -73 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 73 -121 119 -109
+rect 73 -497 79 -121
+rect 113 -497 119 -121
+rect 73 -509 119 -497
+rect 169 -121 215 -109
+rect 169 -497 175 -121
+rect 209 -497 215 -121
+rect 169 -509 215 -497
+rect 265 -121 311 -109
+rect 265 -497 271 -121
+rect 305 -497 311 -121
+rect 265 -509 311 -497
+rect 361 -121 407 -109
+rect 361 -497 367 -121
+rect 401 -497 407 -121
+rect 361 -509 407 -497
+rect 457 -121 503 -109
+rect 457 -497 463 -121
+rect 497 -497 503 -121
+rect 457 -509 503 -497
+rect 553 -121 599 -109
+rect 553 -497 559 -121
+rect 593 -497 599 -121
+rect 553 -509 599 -497
+rect 649 -121 695 -109
+rect 649 -497 655 -121
+rect 689 -497 695 -121
+rect 649 -509 695 -497
+rect 745 -121 791 -109
+rect 745 -497 751 -121
+rect 785 -497 791 -121
+rect 745 -509 791 -497
+rect -653 -547 -595 -541
+rect -653 -581 -641 -547
+rect -607 -581 -595 -547
+rect -653 -587 -595 -581
+rect -461 -547 -403 -541
+rect -461 -581 -449 -547
+rect -415 -581 -403 -547
+rect -461 -587 -403 -581
+rect -269 -547 -211 -541
+rect -269 -581 -257 -547
+rect -223 -581 -211 -547
+rect -269 -587 -211 -581
+rect -77 -547 -19 -541
+rect -77 -581 -65 -547
+rect -31 -581 -19 -547
+rect -77 -587 -19 -581
+rect 115 -547 173 -541
+rect 115 -581 127 -547
+rect 161 -581 173 -547
+rect 115 -587 173 -581
+rect 307 -547 365 -541
+rect 307 -581 319 -547
+rect 353 -581 365 -547
+rect 307 -587 365 -581
+rect 499 -547 557 -541
+rect 499 -581 511 -547
+rect 545 -581 557 -547
+rect 499 -587 557 -581
+rect 691 -547 749 -541
+rect 691 -581 703 -547
+rect 737 -581 749 -547
+rect 691 -587 749 -581
+rect -653 -655 -595 -649
+rect -653 -689 -641 -655
+rect -607 -689 -595 -655
+rect -653 -695 -595 -689
+rect -461 -655 -403 -649
+rect -461 -689 -449 -655
+rect -415 -689 -403 -655
+rect -461 -695 -403 -689
+rect -269 -655 -211 -649
+rect -269 -689 -257 -655
+rect -223 -689 -211 -655
+rect -269 -695 -211 -689
+rect -77 -655 -19 -649
+rect -77 -689 -65 -655
+rect -31 -689 -19 -655
+rect -77 -695 -19 -689
+rect 115 -655 173 -649
+rect 115 -689 127 -655
+rect 161 -689 173 -655
+rect 115 -695 173 -689
+rect 307 -655 365 -649
+rect 307 -689 319 -655
+rect 353 -689 365 -655
+rect 307 -695 365 -689
+rect 499 -655 557 -649
+rect 499 -689 511 -655
+rect 545 -689 557 -655
+rect 499 -695 557 -689
+rect 691 -655 749 -649
+rect 691 -689 703 -655
+rect 737 -689 749 -655
+rect 691 -695 749 -689
+rect -791 -739 -745 -727
+rect -791 -1115 -785 -739
+rect -751 -1115 -745 -739
+rect -791 -1127 -745 -1115
+rect -695 -739 -649 -727
+rect -695 -1115 -689 -739
+rect -655 -1115 -649 -739
+rect -695 -1127 -649 -1115
+rect -599 -739 -553 -727
+rect -599 -1115 -593 -739
+rect -559 -1115 -553 -739
+rect -599 -1127 -553 -1115
+rect -503 -739 -457 -727
+rect -503 -1115 -497 -739
+rect -463 -1115 -457 -739
+rect -503 -1127 -457 -1115
+rect -407 -739 -361 -727
+rect -407 -1115 -401 -739
+rect -367 -1115 -361 -739
+rect -407 -1127 -361 -1115
+rect -311 -739 -265 -727
+rect -311 -1115 -305 -739
+rect -271 -1115 -265 -739
+rect -311 -1127 -265 -1115
+rect -215 -739 -169 -727
+rect -215 -1115 -209 -739
+rect -175 -1115 -169 -739
+rect -215 -1127 -169 -1115
+rect -119 -739 -73 -727
+rect -119 -1115 -113 -739
+rect -79 -1115 -73 -739
+rect -119 -1127 -73 -1115
+rect -23 -739 23 -727
+rect -23 -1115 -17 -739
+rect 17 -1115 23 -739
+rect -23 -1127 23 -1115
+rect 73 -739 119 -727
+rect 73 -1115 79 -739
+rect 113 -1115 119 -739
+rect 73 -1127 119 -1115
+rect 169 -739 215 -727
+rect 169 -1115 175 -739
+rect 209 -1115 215 -739
+rect 169 -1127 215 -1115
+rect 265 -739 311 -727
+rect 265 -1115 271 -739
+rect 305 -1115 311 -739
+rect 265 -1127 311 -1115
+rect 361 -739 407 -727
+rect 361 -1115 367 -739
+rect 401 -1115 407 -739
+rect 361 -1127 407 -1115
+rect 457 -739 503 -727
+rect 457 -1115 463 -739
+rect 497 -1115 503 -739
+rect 457 -1127 503 -1115
+rect 553 -739 599 -727
+rect 553 -1115 559 -739
+rect 593 -1115 599 -739
+rect 553 -1127 599 -1115
+rect 649 -739 695 -727
+rect 649 -1115 655 -739
+rect 689 -1115 695 -739
+rect 649 -1127 695 -1115
+rect 745 -739 791 -727
+rect 745 -1115 751 -739
+rect 785 -1115 791 -739
+rect 745 -1127 791 -1115
+rect -749 -1165 -691 -1159
+rect -749 -1199 -737 -1165
+rect -703 -1199 -691 -1165
+rect -749 -1205 -691 -1199
+rect -557 -1165 -499 -1159
+rect -557 -1199 -545 -1165
+rect -511 -1199 -499 -1165
+rect -557 -1205 -499 -1199
+rect -365 -1165 -307 -1159
+rect -365 -1199 -353 -1165
+rect -319 -1199 -307 -1165
+rect -365 -1205 -307 -1199
+rect -173 -1165 -115 -1159
+rect -173 -1199 -161 -1165
+rect -127 -1199 -115 -1165
+rect -173 -1205 -115 -1199
+rect 19 -1165 77 -1159
+rect 19 -1199 31 -1165
+rect 65 -1199 77 -1165
+rect 19 -1205 77 -1199
+rect 211 -1165 269 -1159
+rect 211 -1199 223 -1165
+rect 257 -1199 269 -1165
+rect 211 -1205 269 -1199
+rect 403 -1165 461 -1159
+rect 403 -1199 415 -1165
+rect 449 -1199 461 -1165
+rect 403 -1205 461 -1199
+rect 595 -1165 653 -1159
+rect 595 -1199 607 -1165
+rect 641 -1199 653 -1165
+rect 595 -1205 653 -1199
+<< properties >>
+string FIXED_BBOX -882 -1284 882 1284
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 4 nf 16 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.ext b/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.ext
new file mode 100644
index 0000000..ce1baed
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.ext
@@ -0,0 +1,22 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_63_n200#" 929 163.557 63 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n125_n200#" 929 163.598 -125 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n288#" 837 163.58 -81 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_222#" 837 163.58 15 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n227_n374#" 0 0 -227 -374 ppd 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 77112 4536 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_15_222#" "a_63_n200#" 6.25956
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_n81_n288#" "a_15_222#" 14.1667
+cap "a_n81_n288#" "a_n33_n200#" 6.25956
+cap "a_15_222#" "a_n33_n200#" 6.25956
+cap "a_n81_n288#" "a_n125_n200#" 6.25956
+cap "a_n33_n200#" "a_n125_n200#" 479.458
+device msubckt sky130_fd_pr__nfet_01v8 33 -200 34 -199 l=30 w=400 "a_n227_n374#" "a_15_222#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -200 -62 -199 l=30 w=400 "a_n227_n374#" "a_n81_n288#" 60 0 "a_n125_n200#" 400 0 "a_n33_n200#" 400 0
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.mag b/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.mag
new file mode 100644
index 0000000..17d78f4
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_LH2JGW.mag
@@ -0,0 +1,115 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 19 232 77 238
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -77 -278 -19 -272
+<< pwell >>
+rect -263 -410 263 410
+<< nmos >>
+rect -63 -200 -33 200
+rect 33 -200 63 200
+<< ndiff >>
+rect -125 188 -63 200
+rect -125 -188 -113 188
+rect -79 -188 -63 188
+rect -125 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 125 200
+rect 63 -188 79 188
+rect 113 -188 125 188
+rect 63 -200 125 -188
+<< ndiffc >>
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+<< psubdiff >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< psubdiffcont >>
+rect -131 340 131 374
+rect -227 -278 -193 278
+rect 193 -278 227 278
+rect -131 -374 131 -340
+<< poly >>
+rect 15 272 81 288
+rect 15 238 31 272
+rect 65 238 81 272
+rect -63 200 -33 226
+rect 15 222 81 238
+rect 33 200 63 222
+rect -63 -222 -33 -200
+rect -81 -238 -15 -222
+rect 33 -226 63 -200
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -81 -288 -15 -272
+<< polycont >>
+rect 31 238 65 272
+rect -65 -272 -31 -238
+<< locali >>
+rect -227 340 -131 374
+rect 131 340 227 374
+rect -227 278 -193 340
+rect 193 278 227 340
+rect 15 238 31 272
+rect 65 238 81 272
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect -81 -272 -65 -238
+rect -31 -272 -15 -238
+rect -227 -340 -193 -278
+rect 193 -340 227 -278
+rect -227 -374 -131 -340
+rect 131 -374 227 -340
+<< viali >>
+rect 31 238 65 272
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect -65 -272 -31 -238
+<< metal1 >>
+rect 19 272 77 278
+rect 19 238 31 272
+rect 65 238 77 272
+rect 19 232 77 238
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect -77 -238 -19 -232
+rect -77 -272 -65 -238
+rect -31 -272 -19 -238
+rect -77 -278 -19 -272
+<< properties >>
+string FIXED_BBOX -210 -357 210 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 2 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_SFR4RZ.mag b/mag/outd/sky130_fd_pr__nfet_01v8_SFR4RZ.mag
new file mode 100644
index 0000000..0697dcc
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_SFR4RZ.mag
@@ -0,0 +1,646 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646234887
+<< pwell >>
+rect -1431 -410 1431 410
+<< nmos >>
+rect -1235 -200 -1135 200
+rect -1077 -200 -977 200
+rect -919 -200 -819 200
+rect -761 -200 -661 200
+rect -603 -200 -503 200
+rect -445 -200 -345 200
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+rect 345 -200 445 200
+rect 503 -200 603 200
+rect 661 -200 761 200
+rect 819 -200 919 200
+rect 977 -200 1077 200
+rect 1135 -200 1235 200
+<< ndiff >>
+rect -1293 188 -1235 200
+rect -1293 -188 -1281 188
+rect -1247 -188 -1235 188
+rect -1293 -200 -1235 -188
+rect -1135 188 -1077 200
+rect -1135 -188 -1123 188
+rect -1089 -188 -1077 188
+rect -1135 -200 -1077 -188
+rect -977 188 -919 200
+rect -977 -188 -965 188
+rect -931 -188 -919 188
+rect -977 -200 -919 -188
+rect -819 188 -761 200
+rect -819 -188 -807 188
+rect -773 -188 -761 188
+rect -819 -200 -761 -188
+rect -661 188 -603 200
+rect -661 -188 -649 188
+rect -615 -188 -603 188
+rect -661 -200 -603 -188
+rect -503 188 -445 200
+rect -503 -188 -491 188
+rect -457 -188 -445 188
+rect -503 -200 -445 -188
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+rect 445 188 503 200
+rect 445 -188 457 188
+rect 491 -188 503 188
+rect 445 -200 503 -188
+rect 603 188 661 200
+rect 603 -188 615 188
+rect 649 -188 661 188
+rect 603 -200 661 -188
+rect 761 188 819 200
+rect 761 -188 773 188
+rect 807 -188 819 188
+rect 761 -200 819 -188
+rect 919 188 977 200
+rect 919 -188 931 188
+rect 965 -188 977 188
+rect 919 -200 977 -188
+rect 1077 188 1135 200
+rect 1077 -188 1089 188
+rect 1123 -188 1135 188
+rect 1077 -200 1135 -188
+rect 1235 188 1293 200
+rect 1235 -188 1247 188
+rect 1281 -188 1293 188
+rect 1235 -200 1293 -188
+<< ndiffc >>
+rect -1281 -188 -1247 188
+rect -1123 -188 -1089 188
+rect -965 -188 -931 188
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect 931 -188 965 188
+rect 1089 -188 1123 188
+rect 1247 -188 1281 188
+<< psubdiff >>
+rect -1395 340 -1299 374
+rect 1299 340 1395 374
+rect -1395 278 -1361 340
+rect 1361 278 1395 340
+rect -1395 -340 -1361 -278
+rect 1361 -340 1395 -278
+rect -1395 -374 -1299 -340
+rect 1299 -374 1395 -340
+<< psubdiffcont >>
+rect -1299 340 1299 374
+rect -1395 -278 -1361 278
+rect 1361 -278 1395 278
+rect -1299 -374 1299 -340
+<< poly >>
+rect -1235 272 -1135 288
+rect -1235 238 -1219 272
+rect -1151 238 -1135 272
+rect -1235 200 -1135 238
+rect -1077 272 -977 288
+rect -1077 238 -1061 272
+rect -993 238 -977 272
+rect -1077 200 -977 238
+rect -919 272 -819 288
+rect -919 238 -903 272
+rect -835 238 -819 272
+rect -919 200 -819 238
+rect -761 272 -661 288
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -761 200 -661 238
+rect -603 272 -503 288
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -603 200 -503 238
+rect -445 272 -345 288
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -445 200 -345 238
+rect -287 272 -187 288
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -287 200 -187 238
+rect -129 272 -29 288
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect -129 200 -29 238
+rect 29 272 129 288
+rect 29 238 45 272
+rect 113 238 129 272
+rect 29 200 129 238
+rect 187 272 287 288
+rect 187 238 203 272
+rect 271 238 287 272
+rect 187 200 287 238
+rect 345 272 445 288
+rect 345 238 361 272
+rect 429 238 445 272
+rect 345 200 445 238
+rect 503 272 603 288
+rect 503 238 519 272
+rect 587 238 603 272
+rect 503 200 603 238
+rect 661 272 761 288
+rect 661 238 677 272
+rect 745 238 761 272
+rect 661 200 761 238
+rect 819 272 919 288
+rect 819 238 835 272
+rect 903 238 919 272
+rect 819 200 919 238
+rect 977 272 1077 288
+rect 977 238 993 272
+rect 1061 238 1077 272
+rect 977 200 1077 238
+rect 1135 272 1235 288
+rect 1135 238 1151 272
+rect 1219 238 1235 272
+rect 1135 200 1235 238
+rect -1235 -238 -1135 -200
+rect -1235 -272 -1219 -238
+rect -1151 -272 -1135 -238
+rect -1235 -288 -1135 -272
+rect -1077 -238 -977 -200
+rect -1077 -272 -1061 -238
+rect -993 -272 -977 -238
+rect -1077 -288 -977 -272
+rect -919 -238 -819 -200
+rect -919 -272 -903 -238
+rect -835 -272 -819 -238
+rect -919 -288 -819 -272
+rect -761 -238 -661 -200
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -761 -288 -661 -272
+rect -603 -238 -503 -200
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -603 -288 -503 -272
+rect -445 -238 -345 -200
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -445 -288 -345 -272
+rect -287 -238 -187 -200
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -287 -288 -187 -272
+rect -129 -238 -29 -200
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect -129 -288 -29 -272
+rect 29 -238 129 -200
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 29 -288 129 -272
+rect 187 -238 287 -200
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 187 -288 287 -272
+rect 345 -238 445 -200
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 345 -288 445 -272
+rect 503 -238 603 -200
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 503 -288 603 -272
+rect 661 -238 761 -200
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect 661 -288 761 -272
+rect 819 -238 919 -200
+rect 819 -272 835 -238
+rect 903 -272 919 -238
+rect 819 -288 919 -272
+rect 977 -238 1077 -200
+rect 977 -272 993 -238
+rect 1061 -272 1077 -238
+rect 977 -288 1077 -272
+rect 1135 -238 1235 -200
+rect 1135 -272 1151 -238
+rect 1219 -272 1235 -238
+rect 1135 -288 1235 -272
+<< polycont >>
+rect -1219 238 -1151 272
+rect -1061 238 -993 272
+rect -903 238 -835 272
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect 835 238 903 272
+rect 993 238 1061 272
+rect 1151 238 1219 272
+rect -1219 -272 -1151 -238
+rect -1061 -272 -993 -238
+rect -903 -272 -835 -238
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+rect 835 -272 903 -238
+rect 993 -272 1061 -238
+rect 1151 -272 1219 -238
+<< locali >>
+rect -1395 340 -1299 374
+rect 1299 340 1395 374
+rect -1395 278 -1361 340
+rect 1361 278 1395 340
+rect -1235 238 -1219 272
+rect -1151 238 -1135 272
+rect -1077 238 -1061 272
+rect -993 238 -977 272
+rect -919 238 -903 272
+rect -835 238 -819 272
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 113 238 129 272
+rect 187 238 203 272
+rect 271 238 287 272
+rect 345 238 361 272
+rect 429 238 445 272
+rect 503 238 519 272
+rect 587 238 603 272
+rect 661 238 677 272
+rect 745 238 761 272
+rect 819 238 835 272
+rect 903 238 919 272
+rect 977 238 993 272
+rect 1061 238 1077 272
+rect 1135 238 1151 272
+rect 1219 238 1235 272
+rect -1281 188 -1247 204
+rect -1281 -204 -1247 -188
+rect -1123 188 -1089 204
+rect -1123 -204 -1089 -188
+rect -965 188 -931 204
+rect -965 -204 -931 -188
+rect -807 188 -773 204
+rect -807 -204 -773 -188
+rect -649 188 -615 204
+rect -649 -204 -615 -188
+rect -491 188 -457 204
+rect -491 -204 -457 -188
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect 457 188 491 204
+rect 457 -204 491 -188
+rect 615 188 649 204
+rect 615 -204 649 -188
+rect 773 188 807 204
+rect 773 -204 807 -188
+rect 931 188 965 204
+rect 931 -204 965 -188
+rect 1089 188 1123 204
+rect 1089 -204 1123 -188
+rect 1247 188 1281 204
+rect 1247 -204 1281 -188
+rect -1235 -272 -1219 -238
+rect -1151 -272 -1135 -238
+rect -1077 -272 -1061 -238
+rect -993 -272 -977 -238
+rect -919 -272 -903 -238
+rect -835 -272 -819 -238
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect 819 -272 835 -238
+rect 903 -272 919 -238
+rect 977 -272 993 -238
+rect 1061 -272 1077 -238
+rect 1135 -272 1151 -238
+rect 1219 -272 1235 -238
+rect -1395 -340 -1361 -278
+rect 1361 -340 1395 -278
+rect -1395 -374 -1299 -340
+rect 1299 -374 1395 -340
+<< viali >>
+rect -1219 238 -1151 272
+rect -1061 238 -993 272
+rect -903 238 -835 272
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect 835 238 903 272
+rect 993 238 1061 272
+rect 1151 238 1219 272
+rect -1281 -188 -1247 188
+rect -1123 -188 -1089 188
+rect -965 -188 -931 188
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect 931 -188 965 188
+rect 1089 -188 1123 188
+rect 1247 -188 1281 188
+rect -1219 -272 -1151 -238
+rect -1061 -272 -993 -238
+rect -903 -272 -835 -238
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+rect 835 -272 903 -238
+rect 993 -272 1061 -238
+rect 1151 -272 1219 -238
+<< metal1 >>
+rect -1231 272 -1139 278
+rect -1231 238 -1219 272
+rect -1151 238 -1139 272
+rect -1231 232 -1139 238
+rect -1073 272 -981 278
+rect -1073 238 -1061 272
+rect -993 238 -981 272
+rect -1073 232 -981 238
+rect -915 272 -823 278
+rect -915 238 -903 272
+rect -835 238 -823 272
+rect -915 232 -823 238
+rect -757 272 -665 278
+rect -757 238 -745 272
+rect -677 238 -665 272
+rect -757 232 -665 238
+rect -599 272 -507 278
+rect -599 238 -587 272
+rect -519 238 -507 272
+rect -599 232 -507 238
+rect -441 272 -349 278
+rect -441 238 -429 272
+rect -361 238 -349 272
+rect -441 232 -349 238
+rect -283 272 -191 278
+rect -283 238 -271 272
+rect -203 238 -191 272
+rect -283 232 -191 238
+rect -125 272 -33 278
+rect -125 238 -113 272
+rect -45 238 -33 272
+rect -125 232 -33 238
+rect 33 272 125 278
+rect 33 238 45 272
+rect 113 238 125 272
+rect 33 232 125 238
+rect 191 272 283 278
+rect 191 238 203 272
+rect 271 238 283 272
+rect 191 232 283 238
+rect 349 272 441 278
+rect 349 238 361 272
+rect 429 238 441 272
+rect 349 232 441 238
+rect 507 272 599 278
+rect 507 238 519 272
+rect 587 238 599 272
+rect 507 232 599 238
+rect 665 272 757 278
+rect 665 238 677 272
+rect 745 238 757 272
+rect 665 232 757 238
+rect 823 272 915 278
+rect 823 238 835 272
+rect 903 238 915 272
+rect 823 232 915 238
+rect 981 272 1073 278
+rect 981 238 993 272
+rect 1061 238 1073 272
+rect 981 232 1073 238
+rect 1139 272 1231 278
+rect 1139 238 1151 272
+rect 1219 238 1231 272
+rect 1139 232 1231 238
+rect -1287 188 -1241 200
+rect -1287 -188 -1281 188
+rect -1247 -188 -1241 188
+rect -1287 -200 -1241 -188
+rect -1129 188 -1083 200
+rect -1129 -188 -1123 188
+rect -1089 -188 -1083 188
+rect -1129 -200 -1083 -188
+rect -971 188 -925 200
+rect -971 -188 -965 188
+rect -931 -188 -925 188
+rect -971 -200 -925 -188
+rect -813 188 -767 200
+rect -813 -188 -807 188
+rect -773 -188 -767 188
+rect -813 -200 -767 -188
+rect -655 188 -609 200
+rect -655 -188 -649 188
+rect -615 -188 -609 188
+rect -655 -200 -609 -188
+rect -497 188 -451 200
+rect -497 -188 -491 188
+rect -457 -188 -451 188
+rect -497 -200 -451 -188
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect 451 188 497 200
+rect 451 -188 457 188
+rect 491 -188 497 188
+rect 451 -200 497 -188
+rect 609 188 655 200
+rect 609 -188 615 188
+rect 649 -188 655 188
+rect 609 -200 655 -188
+rect 767 188 813 200
+rect 767 -188 773 188
+rect 807 -188 813 188
+rect 767 -200 813 -188
+rect 925 188 971 200
+rect 925 -188 931 188
+rect 965 -188 971 188
+rect 925 -200 971 -188
+rect 1083 188 1129 200
+rect 1083 -188 1089 188
+rect 1123 -188 1129 188
+rect 1083 -200 1129 -188
+rect 1241 188 1287 200
+rect 1241 -188 1247 188
+rect 1281 -188 1287 188
+rect 1241 -200 1287 -188
+rect -1231 -238 -1139 -232
+rect -1231 -272 -1219 -238
+rect -1151 -272 -1139 -238
+rect -1231 -278 -1139 -272
+rect -1073 -238 -981 -232
+rect -1073 -272 -1061 -238
+rect -993 -272 -981 -238
+rect -1073 -278 -981 -272
+rect -915 -238 -823 -232
+rect -915 -272 -903 -238
+rect -835 -272 -823 -238
+rect -915 -278 -823 -272
+rect -757 -238 -665 -232
+rect -757 -272 -745 -238
+rect -677 -272 -665 -238
+rect -757 -278 -665 -272
+rect -599 -238 -507 -232
+rect -599 -272 -587 -238
+rect -519 -272 -507 -238
+rect -599 -278 -507 -272
+rect -441 -238 -349 -232
+rect -441 -272 -429 -238
+rect -361 -272 -349 -238
+rect -441 -278 -349 -272
+rect -283 -238 -191 -232
+rect -283 -272 -271 -238
+rect -203 -272 -191 -238
+rect -283 -278 -191 -272
+rect -125 -238 -33 -232
+rect -125 -272 -113 -238
+rect -45 -272 -33 -238
+rect -125 -278 -33 -272
+rect 33 -238 125 -232
+rect 33 -272 45 -238
+rect 113 -272 125 -238
+rect 33 -278 125 -272
+rect 191 -238 283 -232
+rect 191 -272 203 -238
+rect 271 -272 283 -238
+rect 191 -278 283 -272
+rect 349 -238 441 -232
+rect 349 -272 361 -238
+rect 429 -272 441 -238
+rect 349 -278 441 -272
+rect 507 -238 599 -232
+rect 507 -272 519 -238
+rect 587 -272 599 -238
+rect 507 -278 599 -272
+rect 665 -238 757 -232
+rect 665 -272 677 -238
+rect 745 -272 757 -238
+rect 665 -278 757 -272
+rect 823 -238 915 -232
+rect 823 -272 835 -238
+rect 903 -272 915 -238
+rect 823 -278 915 -272
+rect 981 -238 1073 -232
+rect 981 -272 993 -238
+rect 1061 -272 1073 -238
+rect 981 -278 1073 -272
+rect 1139 -238 1231 -232
+rect 1139 -272 1151 -238
+rect 1219 -272 1231 -238
+rect 1139 -278 1231 -272
+<< properties >>
+string FIXED_BBOX -1378 -357 1378 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 16 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_SJF6RZ.mag b/mag/outd/sky130_fd_pr__nfet_01v8_SJF6RZ.mag
new file mode 100644
index 0000000..37ff4f6
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_SJF6RZ.mag
@@ -0,0 +1,1854 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646234887
+<< pwell >>
+rect -1431 -1028 1431 1028
+<< nmos >>
+rect -1235 418 -1135 818
+rect -1077 418 -977 818
+rect -919 418 -819 818
+rect -761 418 -661 818
+rect -603 418 -503 818
+rect -445 418 -345 818
+rect -287 418 -187 818
+rect -129 418 -29 818
+rect 29 418 129 818
+rect 187 418 287 818
+rect 345 418 445 818
+rect 503 418 603 818
+rect 661 418 761 818
+rect 819 418 919 818
+rect 977 418 1077 818
+rect 1135 418 1235 818
+rect -1235 -200 -1135 200
+rect -1077 -200 -977 200
+rect -919 -200 -819 200
+rect -761 -200 -661 200
+rect -603 -200 -503 200
+rect -445 -200 -345 200
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+rect 345 -200 445 200
+rect 503 -200 603 200
+rect 661 -200 761 200
+rect 819 -200 919 200
+rect 977 -200 1077 200
+rect 1135 -200 1235 200
+rect -1235 -818 -1135 -418
+rect -1077 -818 -977 -418
+rect -919 -818 -819 -418
+rect -761 -818 -661 -418
+rect -603 -818 -503 -418
+rect -445 -818 -345 -418
+rect -287 -818 -187 -418
+rect -129 -818 -29 -418
+rect 29 -818 129 -418
+rect 187 -818 287 -418
+rect 345 -818 445 -418
+rect 503 -818 603 -418
+rect 661 -818 761 -418
+rect 819 -818 919 -418
+rect 977 -818 1077 -418
+rect 1135 -818 1235 -418
+<< ndiff >>
+rect -1293 806 -1235 818
+rect -1293 430 -1281 806
+rect -1247 430 -1235 806
+rect -1293 418 -1235 430
+rect -1135 806 -1077 818
+rect -1135 430 -1123 806
+rect -1089 430 -1077 806
+rect -1135 418 -1077 430
+rect -977 806 -919 818
+rect -977 430 -965 806
+rect -931 430 -919 806
+rect -977 418 -919 430
+rect -819 806 -761 818
+rect -819 430 -807 806
+rect -773 430 -761 806
+rect -819 418 -761 430
+rect -661 806 -603 818
+rect -661 430 -649 806
+rect -615 430 -603 806
+rect -661 418 -603 430
+rect -503 806 -445 818
+rect -503 430 -491 806
+rect -457 430 -445 806
+rect -503 418 -445 430
+rect -345 806 -287 818
+rect -345 430 -333 806
+rect -299 430 -287 806
+rect -345 418 -287 430
+rect -187 806 -129 818
+rect -187 430 -175 806
+rect -141 430 -129 806
+rect -187 418 -129 430
+rect -29 806 29 818
+rect -29 430 -17 806
+rect 17 430 29 806
+rect -29 418 29 430
+rect 129 806 187 818
+rect 129 430 141 806
+rect 175 430 187 806
+rect 129 418 187 430
+rect 287 806 345 818
+rect 287 430 299 806
+rect 333 430 345 806
+rect 287 418 345 430
+rect 445 806 503 818
+rect 445 430 457 806
+rect 491 430 503 806
+rect 445 418 503 430
+rect 603 806 661 818
+rect 603 430 615 806
+rect 649 430 661 806
+rect 603 418 661 430
+rect 761 806 819 818
+rect 761 430 773 806
+rect 807 430 819 806
+rect 761 418 819 430
+rect 919 806 977 818
+rect 919 430 931 806
+rect 965 430 977 806
+rect 919 418 977 430
+rect 1077 806 1135 818
+rect 1077 430 1089 806
+rect 1123 430 1135 806
+rect 1077 418 1135 430
+rect 1235 806 1293 818
+rect 1235 430 1247 806
+rect 1281 430 1293 806
+rect 1235 418 1293 430
+rect -1293 188 -1235 200
+rect -1293 -188 -1281 188
+rect -1247 -188 -1235 188
+rect -1293 -200 -1235 -188
+rect -1135 188 -1077 200
+rect -1135 -188 -1123 188
+rect -1089 -188 -1077 188
+rect -1135 -200 -1077 -188
+rect -977 188 -919 200
+rect -977 -188 -965 188
+rect -931 -188 -919 188
+rect -977 -200 -919 -188
+rect -819 188 -761 200
+rect -819 -188 -807 188
+rect -773 -188 -761 188
+rect -819 -200 -761 -188
+rect -661 188 -603 200
+rect -661 -188 -649 188
+rect -615 -188 -603 188
+rect -661 -200 -603 -188
+rect -503 188 -445 200
+rect -503 -188 -491 188
+rect -457 -188 -445 188
+rect -503 -200 -445 -188
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+rect 445 188 503 200
+rect 445 -188 457 188
+rect 491 -188 503 188
+rect 445 -200 503 -188
+rect 603 188 661 200
+rect 603 -188 615 188
+rect 649 -188 661 188
+rect 603 -200 661 -188
+rect 761 188 819 200
+rect 761 -188 773 188
+rect 807 -188 819 188
+rect 761 -200 819 -188
+rect 919 188 977 200
+rect 919 -188 931 188
+rect 965 -188 977 188
+rect 919 -200 977 -188
+rect 1077 188 1135 200
+rect 1077 -188 1089 188
+rect 1123 -188 1135 188
+rect 1077 -200 1135 -188
+rect 1235 188 1293 200
+rect 1235 -188 1247 188
+rect 1281 -188 1293 188
+rect 1235 -200 1293 -188
+rect -1293 -430 -1235 -418
+rect -1293 -806 -1281 -430
+rect -1247 -806 -1235 -430
+rect -1293 -818 -1235 -806
+rect -1135 -430 -1077 -418
+rect -1135 -806 -1123 -430
+rect -1089 -806 -1077 -430
+rect -1135 -818 -1077 -806
+rect -977 -430 -919 -418
+rect -977 -806 -965 -430
+rect -931 -806 -919 -430
+rect -977 -818 -919 -806
+rect -819 -430 -761 -418
+rect -819 -806 -807 -430
+rect -773 -806 -761 -430
+rect -819 -818 -761 -806
+rect -661 -430 -603 -418
+rect -661 -806 -649 -430
+rect -615 -806 -603 -430
+rect -661 -818 -603 -806
+rect -503 -430 -445 -418
+rect -503 -806 -491 -430
+rect -457 -806 -445 -430
+rect -503 -818 -445 -806
+rect -345 -430 -287 -418
+rect -345 -806 -333 -430
+rect -299 -806 -287 -430
+rect -345 -818 -287 -806
+rect -187 -430 -129 -418
+rect -187 -806 -175 -430
+rect -141 -806 -129 -430
+rect -187 -818 -129 -806
+rect -29 -430 29 -418
+rect -29 -806 -17 -430
+rect 17 -806 29 -430
+rect -29 -818 29 -806
+rect 129 -430 187 -418
+rect 129 -806 141 -430
+rect 175 -806 187 -430
+rect 129 -818 187 -806
+rect 287 -430 345 -418
+rect 287 -806 299 -430
+rect 333 -806 345 -430
+rect 287 -818 345 -806
+rect 445 -430 503 -418
+rect 445 -806 457 -430
+rect 491 -806 503 -430
+rect 445 -818 503 -806
+rect 603 -430 661 -418
+rect 603 -806 615 -430
+rect 649 -806 661 -430
+rect 603 -818 661 -806
+rect 761 -430 819 -418
+rect 761 -806 773 -430
+rect 807 -806 819 -430
+rect 761 -818 819 -806
+rect 919 -430 977 -418
+rect 919 -806 931 -430
+rect 965 -806 977 -430
+rect 919 -818 977 -806
+rect 1077 -430 1135 -418
+rect 1077 -806 1089 -430
+rect 1123 -806 1135 -430
+rect 1077 -818 1135 -806
+rect 1235 -430 1293 -418
+rect 1235 -806 1247 -430
+rect 1281 -806 1293 -430
+rect 1235 -818 1293 -806
+<< ndiffc >>
+rect -1281 430 -1247 806
+rect -1123 430 -1089 806
+rect -965 430 -931 806
+rect -807 430 -773 806
+rect -649 430 -615 806
+rect -491 430 -457 806
+rect -333 430 -299 806
+rect -175 430 -141 806
+rect -17 430 17 806
+rect 141 430 175 806
+rect 299 430 333 806
+rect 457 430 491 806
+rect 615 430 649 806
+rect 773 430 807 806
+rect 931 430 965 806
+rect 1089 430 1123 806
+rect 1247 430 1281 806
+rect -1281 -188 -1247 188
+rect -1123 -188 -1089 188
+rect -965 -188 -931 188
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect 931 -188 965 188
+rect 1089 -188 1123 188
+rect 1247 -188 1281 188
+rect -1281 -806 -1247 -430
+rect -1123 -806 -1089 -430
+rect -965 -806 -931 -430
+rect -807 -806 -773 -430
+rect -649 -806 -615 -430
+rect -491 -806 -457 -430
+rect -333 -806 -299 -430
+rect -175 -806 -141 -430
+rect -17 -806 17 -430
+rect 141 -806 175 -430
+rect 299 -806 333 -430
+rect 457 -806 491 -430
+rect 615 -806 649 -430
+rect 773 -806 807 -430
+rect 931 -806 965 -430
+rect 1089 -806 1123 -430
+rect 1247 -806 1281 -430
+<< psubdiff >>
+rect -1395 958 -1299 992
+rect 1299 958 1395 992
+rect -1395 896 -1361 958
+rect 1361 896 1395 958
+rect -1395 -958 -1361 -896
+rect 1361 -958 1395 -896
+rect -1395 -992 -1299 -958
+rect 1299 -992 1395 -958
+<< psubdiffcont >>
+rect -1299 958 1299 992
+rect -1395 -896 -1361 896
+rect 1361 -896 1395 896
+rect -1299 -992 1299 -958
+<< poly >>
+rect -1235 890 -1135 906
+rect -1235 856 -1219 890
+rect -1151 856 -1135 890
+rect -1235 818 -1135 856
+rect -1077 890 -977 906
+rect -1077 856 -1061 890
+rect -993 856 -977 890
+rect -1077 818 -977 856
+rect -919 890 -819 906
+rect -919 856 -903 890
+rect -835 856 -819 890
+rect -919 818 -819 856
+rect -761 890 -661 906
+rect -761 856 -745 890
+rect -677 856 -661 890
+rect -761 818 -661 856
+rect -603 890 -503 906
+rect -603 856 -587 890
+rect -519 856 -503 890
+rect -603 818 -503 856
+rect -445 890 -345 906
+rect -445 856 -429 890
+rect -361 856 -345 890
+rect -445 818 -345 856
+rect -287 890 -187 906
+rect -287 856 -271 890
+rect -203 856 -187 890
+rect -287 818 -187 856
+rect -129 890 -29 906
+rect -129 856 -113 890
+rect -45 856 -29 890
+rect -129 818 -29 856
+rect 29 890 129 906
+rect 29 856 45 890
+rect 113 856 129 890
+rect 29 818 129 856
+rect 187 890 287 906
+rect 187 856 203 890
+rect 271 856 287 890
+rect 187 818 287 856
+rect 345 890 445 906
+rect 345 856 361 890
+rect 429 856 445 890
+rect 345 818 445 856
+rect 503 890 603 906
+rect 503 856 519 890
+rect 587 856 603 890
+rect 503 818 603 856
+rect 661 890 761 906
+rect 661 856 677 890
+rect 745 856 761 890
+rect 661 818 761 856
+rect 819 890 919 906
+rect 819 856 835 890
+rect 903 856 919 890
+rect 819 818 919 856
+rect 977 890 1077 906
+rect 977 856 993 890
+rect 1061 856 1077 890
+rect 977 818 1077 856
+rect 1135 890 1235 906
+rect 1135 856 1151 890
+rect 1219 856 1235 890
+rect 1135 818 1235 856
+rect -1235 380 -1135 418
+rect -1235 346 -1219 380
+rect -1151 346 -1135 380
+rect -1235 330 -1135 346
+rect -1077 380 -977 418
+rect -1077 346 -1061 380
+rect -993 346 -977 380
+rect -1077 330 -977 346
+rect -919 380 -819 418
+rect -919 346 -903 380
+rect -835 346 -819 380
+rect -919 330 -819 346
+rect -761 380 -661 418
+rect -761 346 -745 380
+rect -677 346 -661 380
+rect -761 330 -661 346
+rect -603 380 -503 418
+rect -603 346 -587 380
+rect -519 346 -503 380
+rect -603 330 -503 346
+rect -445 380 -345 418
+rect -445 346 -429 380
+rect -361 346 -345 380
+rect -445 330 -345 346
+rect -287 380 -187 418
+rect -287 346 -271 380
+rect -203 346 -187 380
+rect -287 330 -187 346
+rect -129 380 -29 418
+rect -129 346 -113 380
+rect -45 346 -29 380
+rect -129 330 -29 346
+rect 29 380 129 418
+rect 29 346 45 380
+rect 113 346 129 380
+rect 29 330 129 346
+rect 187 380 287 418
+rect 187 346 203 380
+rect 271 346 287 380
+rect 187 330 287 346
+rect 345 380 445 418
+rect 345 346 361 380
+rect 429 346 445 380
+rect 345 330 445 346
+rect 503 380 603 418
+rect 503 346 519 380
+rect 587 346 603 380
+rect 503 330 603 346
+rect 661 380 761 418
+rect 661 346 677 380
+rect 745 346 761 380
+rect 661 330 761 346
+rect 819 380 919 418
+rect 819 346 835 380
+rect 903 346 919 380
+rect 819 330 919 346
+rect 977 380 1077 418
+rect 977 346 993 380
+rect 1061 346 1077 380
+rect 977 330 1077 346
+rect 1135 380 1235 418
+rect 1135 346 1151 380
+rect 1219 346 1235 380
+rect 1135 330 1235 346
+rect -1235 272 -1135 288
+rect -1235 238 -1219 272
+rect -1151 238 -1135 272
+rect -1235 200 -1135 238
+rect -1077 272 -977 288
+rect -1077 238 -1061 272
+rect -993 238 -977 272
+rect -1077 200 -977 238
+rect -919 272 -819 288
+rect -919 238 -903 272
+rect -835 238 -819 272
+rect -919 200 -819 238
+rect -761 272 -661 288
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -761 200 -661 238
+rect -603 272 -503 288
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -603 200 -503 238
+rect -445 272 -345 288
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -445 200 -345 238
+rect -287 272 -187 288
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -287 200 -187 238
+rect -129 272 -29 288
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect -129 200 -29 238
+rect 29 272 129 288
+rect 29 238 45 272
+rect 113 238 129 272
+rect 29 200 129 238
+rect 187 272 287 288
+rect 187 238 203 272
+rect 271 238 287 272
+rect 187 200 287 238
+rect 345 272 445 288
+rect 345 238 361 272
+rect 429 238 445 272
+rect 345 200 445 238
+rect 503 272 603 288
+rect 503 238 519 272
+rect 587 238 603 272
+rect 503 200 603 238
+rect 661 272 761 288
+rect 661 238 677 272
+rect 745 238 761 272
+rect 661 200 761 238
+rect 819 272 919 288
+rect 819 238 835 272
+rect 903 238 919 272
+rect 819 200 919 238
+rect 977 272 1077 288
+rect 977 238 993 272
+rect 1061 238 1077 272
+rect 977 200 1077 238
+rect 1135 272 1235 288
+rect 1135 238 1151 272
+rect 1219 238 1235 272
+rect 1135 200 1235 238
+rect -1235 -238 -1135 -200
+rect -1235 -272 -1219 -238
+rect -1151 -272 -1135 -238
+rect -1235 -288 -1135 -272
+rect -1077 -238 -977 -200
+rect -1077 -272 -1061 -238
+rect -993 -272 -977 -238
+rect -1077 -288 -977 -272
+rect -919 -238 -819 -200
+rect -919 -272 -903 -238
+rect -835 -272 -819 -238
+rect -919 -288 -819 -272
+rect -761 -238 -661 -200
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -761 -288 -661 -272
+rect -603 -238 -503 -200
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -603 -288 -503 -272
+rect -445 -238 -345 -200
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -445 -288 -345 -272
+rect -287 -238 -187 -200
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -287 -288 -187 -272
+rect -129 -238 -29 -200
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect -129 -288 -29 -272
+rect 29 -238 129 -200
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 29 -288 129 -272
+rect 187 -238 287 -200
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 187 -288 287 -272
+rect 345 -238 445 -200
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 345 -288 445 -272
+rect 503 -238 603 -200
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 503 -288 603 -272
+rect 661 -238 761 -200
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect 661 -288 761 -272
+rect 819 -238 919 -200
+rect 819 -272 835 -238
+rect 903 -272 919 -238
+rect 819 -288 919 -272
+rect 977 -238 1077 -200
+rect 977 -272 993 -238
+rect 1061 -272 1077 -238
+rect 977 -288 1077 -272
+rect 1135 -238 1235 -200
+rect 1135 -272 1151 -238
+rect 1219 -272 1235 -238
+rect 1135 -288 1235 -272
+rect -1235 -346 -1135 -330
+rect -1235 -380 -1219 -346
+rect -1151 -380 -1135 -346
+rect -1235 -418 -1135 -380
+rect -1077 -346 -977 -330
+rect -1077 -380 -1061 -346
+rect -993 -380 -977 -346
+rect -1077 -418 -977 -380
+rect -919 -346 -819 -330
+rect -919 -380 -903 -346
+rect -835 -380 -819 -346
+rect -919 -418 -819 -380
+rect -761 -346 -661 -330
+rect -761 -380 -745 -346
+rect -677 -380 -661 -346
+rect -761 -418 -661 -380
+rect -603 -346 -503 -330
+rect -603 -380 -587 -346
+rect -519 -380 -503 -346
+rect -603 -418 -503 -380
+rect -445 -346 -345 -330
+rect -445 -380 -429 -346
+rect -361 -380 -345 -346
+rect -445 -418 -345 -380
+rect -287 -346 -187 -330
+rect -287 -380 -271 -346
+rect -203 -380 -187 -346
+rect -287 -418 -187 -380
+rect -129 -346 -29 -330
+rect -129 -380 -113 -346
+rect -45 -380 -29 -346
+rect -129 -418 -29 -380
+rect 29 -346 129 -330
+rect 29 -380 45 -346
+rect 113 -380 129 -346
+rect 29 -418 129 -380
+rect 187 -346 287 -330
+rect 187 -380 203 -346
+rect 271 -380 287 -346
+rect 187 -418 287 -380
+rect 345 -346 445 -330
+rect 345 -380 361 -346
+rect 429 -380 445 -346
+rect 345 -418 445 -380
+rect 503 -346 603 -330
+rect 503 -380 519 -346
+rect 587 -380 603 -346
+rect 503 -418 603 -380
+rect 661 -346 761 -330
+rect 661 -380 677 -346
+rect 745 -380 761 -346
+rect 661 -418 761 -380
+rect 819 -346 919 -330
+rect 819 -380 835 -346
+rect 903 -380 919 -346
+rect 819 -418 919 -380
+rect 977 -346 1077 -330
+rect 977 -380 993 -346
+rect 1061 -380 1077 -346
+rect 977 -418 1077 -380
+rect 1135 -346 1235 -330
+rect 1135 -380 1151 -346
+rect 1219 -380 1235 -346
+rect 1135 -418 1235 -380
+rect -1235 -856 -1135 -818
+rect -1235 -890 -1219 -856
+rect -1151 -890 -1135 -856
+rect -1235 -906 -1135 -890
+rect -1077 -856 -977 -818
+rect -1077 -890 -1061 -856
+rect -993 -890 -977 -856
+rect -1077 -906 -977 -890
+rect -919 -856 -819 -818
+rect -919 -890 -903 -856
+rect -835 -890 -819 -856
+rect -919 -906 -819 -890
+rect -761 -856 -661 -818
+rect -761 -890 -745 -856
+rect -677 -890 -661 -856
+rect -761 -906 -661 -890
+rect -603 -856 -503 -818
+rect -603 -890 -587 -856
+rect -519 -890 -503 -856
+rect -603 -906 -503 -890
+rect -445 -856 -345 -818
+rect -445 -890 -429 -856
+rect -361 -890 -345 -856
+rect -445 -906 -345 -890
+rect -287 -856 -187 -818
+rect -287 -890 -271 -856
+rect -203 -890 -187 -856
+rect -287 -906 -187 -890
+rect -129 -856 -29 -818
+rect -129 -890 -113 -856
+rect -45 -890 -29 -856
+rect -129 -906 -29 -890
+rect 29 -856 129 -818
+rect 29 -890 45 -856
+rect 113 -890 129 -856
+rect 29 -906 129 -890
+rect 187 -856 287 -818
+rect 187 -890 203 -856
+rect 271 -890 287 -856
+rect 187 -906 287 -890
+rect 345 -856 445 -818
+rect 345 -890 361 -856
+rect 429 -890 445 -856
+rect 345 -906 445 -890
+rect 503 -856 603 -818
+rect 503 -890 519 -856
+rect 587 -890 603 -856
+rect 503 -906 603 -890
+rect 661 -856 761 -818
+rect 661 -890 677 -856
+rect 745 -890 761 -856
+rect 661 -906 761 -890
+rect 819 -856 919 -818
+rect 819 -890 835 -856
+rect 903 -890 919 -856
+rect 819 -906 919 -890
+rect 977 -856 1077 -818
+rect 977 -890 993 -856
+rect 1061 -890 1077 -856
+rect 977 -906 1077 -890
+rect 1135 -856 1235 -818
+rect 1135 -890 1151 -856
+rect 1219 -890 1235 -856
+rect 1135 -906 1235 -890
+<< polycont >>
+rect -1219 856 -1151 890
+rect -1061 856 -993 890
+rect -903 856 -835 890
+rect -745 856 -677 890
+rect -587 856 -519 890
+rect -429 856 -361 890
+rect -271 856 -203 890
+rect -113 856 -45 890
+rect 45 856 113 890
+rect 203 856 271 890
+rect 361 856 429 890
+rect 519 856 587 890
+rect 677 856 745 890
+rect 835 856 903 890
+rect 993 856 1061 890
+rect 1151 856 1219 890
+rect -1219 346 -1151 380
+rect -1061 346 -993 380
+rect -903 346 -835 380
+rect -745 346 -677 380
+rect -587 346 -519 380
+rect -429 346 -361 380
+rect -271 346 -203 380
+rect -113 346 -45 380
+rect 45 346 113 380
+rect 203 346 271 380
+rect 361 346 429 380
+rect 519 346 587 380
+rect 677 346 745 380
+rect 835 346 903 380
+rect 993 346 1061 380
+rect 1151 346 1219 380
+rect -1219 238 -1151 272
+rect -1061 238 -993 272
+rect -903 238 -835 272
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect 835 238 903 272
+rect 993 238 1061 272
+rect 1151 238 1219 272
+rect -1219 -272 -1151 -238
+rect -1061 -272 -993 -238
+rect -903 -272 -835 -238
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+rect 835 -272 903 -238
+rect 993 -272 1061 -238
+rect 1151 -272 1219 -238
+rect -1219 -380 -1151 -346
+rect -1061 -380 -993 -346
+rect -903 -380 -835 -346
+rect -745 -380 -677 -346
+rect -587 -380 -519 -346
+rect -429 -380 -361 -346
+rect -271 -380 -203 -346
+rect -113 -380 -45 -346
+rect 45 -380 113 -346
+rect 203 -380 271 -346
+rect 361 -380 429 -346
+rect 519 -380 587 -346
+rect 677 -380 745 -346
+rect 835 -380 903 -346
+rect 993 -380 1061 -346
+rect 1151 -380 1219 -346
+rect -1219 -890 -1151 -856
+rect -1061 -890 -993 -856
+rect -903 -890 -835 -856
+rect -745 -890 -677 -856
+rect -587 -890 -519 -856
+rect -429 -890 -361 -856
+rect -271 -890 -203 -856
+rect -113 -890 -45 -856
+rect 45 -890 113 -856
+rect 203 -890 271 -856
+rect 361 -890 429 -856
+rect 519 -890 587 -856
+rect 677 -890 745 -856
+rect 835 -890 903 -856
+rect 993 -890 1061 -856
+rect 1151 -890 1219 -856
+<< locali >>
+rect -1395 958 -1299 992
+rect 1299 958 1395 992
+rect -1395 896 -1361 958
+rect 1361 896 1395 958
+rect -1235 856 -1219 890
+rect -1151 856 -1135 890
+rect -1077 856 -1061 890
+rect -993 856 -977 890
+rect -919 856 -903 890
+rect -835 856 -819 890
+rect -761 856 -745 890
+rect -677 856 -661 890
+rect -603 856 -587 890
+rect -519 856 -503 890
+rect -445 856 -429 890
+rect -361 856 -345 890
+rect -287 856 -271 890
+rect -203 856 -187 890
+rect -129 856 -113 890
+rect -45 856 -29 890
+rect 29 856 45 890
+rect 113 856 129 890
+rect 187 856 203 890
+rect 271 856 287 890
+rect 345 856 361 890
+rect 429 856 445 890
+rect 503 856 519 890
+rect 587 856 603 890
+rect 661 856 677 890
+rect 745 856 761 890
+rect 819 856 835 890
+rect 903 856 919 890
+rect 977 856 993 890
+rect 1061 856 1077 890
+rect 1135 856 1151 890
+rect 1219 856 1235 890
+rect -1281 806 -1247 822
+rect -1281 414 -1247 430
+rect -1123 806 -1089 822
+rect -1123 414 -1089 430
+rect -965 806 -931 822
+rect -965 414 -931 430
+rect -807 806 -773 822
+rect -807 414 -773 430
+rect -649 806 -615 822
+rect -649 414 -615 430
+rect -491 806 -457 822
+rect -491 414 -457 430
+rect -333 806 -299 822
+rect -333 414 -299 430
+rect -175 806 -141 822
+rect -175 414 -141 430
+rect -17 806 17 822
+rect -17 414 17 430
+rect 141 806 175 822
+rect 141 414 175 430
+rect 299 806 333 822
+rect 299 414 333 430
+rect 457 806 491 822
+rect 457 414 491 430
+rect 615 806 649 822
+rect 615 414 649 430
+rect 773 806 807 822
+rect 773 414 807 430
+rect 931 806 965 822
+rect 931 414 965 430
+rect 1089 806 1123 822
+rect 1089 414 1123 430
+rect 1247 806 1281 822
+rect 1247 414 1281 430
+rect -1235 346 -1219 380
+rect -1151 346 -1135 380
+rect -1077 346 -1061 380
+rect -993 346 -977 380
+rect -919 346 -903 380
+rect -835 346 -819 380
+rect -761 346 -745 380
+rect -677 346 -661 380
+rect -603 346 -587 380
+rect -519 346 -503 380
+rect -445 346 -429 380
+rect -361 346 -345 380
+rect -287 346 -271 380
+rect -203 346 -187 380
+rect -129 346 -113 380
+rect -45 346 -29 380
+rect 29 346 45 380
+rect 113 346 129 380
+rect 187 346 203 380
+rect 271 346 287 380
+rect 345 346 361 380
+rect 429 346 445 380
+rect 503 346 519 380
+rect 587 346 603 380
+rect 661 346 677 380
+rect 745 346 761 380
+rect 819 346 835 380
+rect 903 346 919 380
+rect 977 346 993 380
+rect 1061 346 1077 380
+rect 1135 346 1151 380
+rect 1219 346 1235 380
+rect -1235 238 -1219 272
+rect -1151 238 -1135 272
+rect -1077 238 -1061 272
+rect -993 238 -977 272
+rect -919 238 -903 272
+rect -835 238 -819 272
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 113 238 129 272
+rect 187 238 203 272
+rect 271 238 287 272
+rect 345 238 361 272
+rect 429 238 445 272
+rect 503 238 519 272
+rect 587 238 603 272
+rect 661 238 677 272
+rect 745 238 761 272
+rect 819 238 835 272
+rect 903 238 919 272
+rect 977 238 993 272
+rect 1061 238 1077 272
+rect 1135 238 1151 272
+rect 1219 238 1235 272
+rect -1281 188 -1247 204
+rect -1281 -204 -1247 -188
+rect -1123 188 -1089 204
+rect -1123 -204 -1089 -188
+rect -965 188 -931 204
+rect -965 -204 -931 -188
+rect -807 188 -773 204
+rect -807 -204 -773 -188
+rect -649 188 -615 204
+rect -649 -204 -615 -188
+rect -491 188 -457 204
+rect -491 -204 -457 -188
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect 457 188 491 204
+rect 457 -204 491 -188
+rect 615 188 649 204
+rect 615 -204 649 -188
+rect 773 188 807 204
+rect 773 -204 807 -188
+rect 931 188 965 204
+rect 931 -204 965 -188
+rect 1089 188 1123 204
+rect 1089 -204 1123 -188
+rect 1247 188 1281 204
+rect 1247 -204 1281 -188
+rect -1235 -272 -1219 -238
+rect -1151 -272 -1135 -238
+rect -1077 -272 -1061 -238
+rect -993 -272 -977 -238
+rect -919 -272 -903 -238
+rect -835 -272 -819 -238
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect 819 -272 835 -238
+rect 903 -272 919 -238
+rect 977 -272 993 -238
+rect 1061 -272 1077 -238
+rect 1135 -272 1151 -238
+rect 1219 -272 1235 -238
+rect -1235 -380 -1219 -346
+rect -1151 -380 -1135 -346
+rect -1077 -380 -1061 -346
+rect -993 -380 -977 -346
+rect -919 -380 -903 -346
+rect -835 -380 -819 -346
+rect -761 -380 -745 -346
+rect -677 -380 -661 -346
+rect -603 -380 -587 -346
+rect -519 -380 -503 -346
+rect -445 -380 -429 -346
+rect -361 -380 -345 -346
+rect -287 -380 -271 -346
+rect -203 -380 -187 -346
+rect -129 -380 -113 -346
+rect -45 -380 -29 -346
+rect 29 -380 45 -346
+rect 113 -380 129 -346
+rect 187 -380 203 -346
+rect 271 -380 287 -346
+rect 345 -380 361 -346
+rect 429 -380 445 -346
+rect 503 -380 519 -346
+rect 587 -380 603 -346
+rect 661 -380 677 -346
+rect 745 -380 761 -346
+rect 819 -380 835 -346
+rect 903 -380 919 -346
+rect 977 -380 993 -346
+rect 1061 -380 1077 -346
+rect 1135 -380 1151 -346
+rect 1219 -380 1235 -346
+rect -1281 -430 -1247 -414
+rect -1281 -822 -1247 -806
+rect -1123 -430 -1089 -414
+rect -1123 -822 -1089 -806
+rect -965 -430 -931 -414
+rect -965 -822 -931 -806
+rect -807 -430 -773 -414
+rect -807 -822 -773 -806
+rect -649 -430 -615 -414
+rect -649 -822 -615 -806
+rect -491 -430 -457 -414
+rect -491 -822 -457 -806
+rect -333 -430 -299 -414
+rect -333 -822 -299 -806
+rect -175 -430 -141 -414
+rect -175 -822 -141 -806
+rect -17 -430 17 -414
+rect -17 -822 17 -806
+rect 141 -430 175 -414
+rect 141 -822 175 -806
+rect 299 -430 333 -414
+rect 299 -822 333 -806
+rect 457 -430 491 -414
+rect 457 -822 491 -806
+rect 615 -430 649 -414
+rect 615 -822 649 -806
+rect 773 -430 807 -414
+rect 773 -822 807 -806
+rect 931 -430 965 -414
+rect 931 -822 965 -806
+rect 1089 -430 1123 -414
+rect 1089 -822 1123 -806
+rect 1247 -430 1281 -414
+rect 1247 -822 1281 -806
+rect -1235 -890 -1219 -856
+rect -1151 -890 -1135 -856
+rect -1077 -890 -1061 -856
+rect -993 -890 -977 -856
+rect -919 -890 -903 -856
+rect -835 -890 -819 -856
+rect -761 -890 -745 -856
+rect -677 -890 -661 -856
+rect -603 -890 -587 -856
+rect -519 -890 -503 -856
+rect -445 -890 -429 -856
+rect -361 -890 -345 -856
+rect -287 -890 -271 -856
+rect -203 -890 -187 -856
+rect -129 -890 -113 -856
+rect -45 -890 -29 -856
+rect 29 -890 45 -856
+rect 113 -890 129 -856
+rect 187 -890 203 -856
+rect 271 -890 287 -856
+rect 345 -890 361 -856
+rect 429 -890 445 -856
+rect 503 -890 519 -856
+rect 587 -890 603 -856
+rect 661 -890 677 -856
+rect 745 -890 761 -856
+rect 819 -890 835 -856
+rect 903 -890 919 -856
+rect 977 -890 993 -856
+rect 1061 -890 1077 -856
+rect 1135 -890 1151 -856
+rect 1219 -890 1235 -856
+rect -1395 -958 -1361 -896
+rect 1361 -958 1395 -896
+rect -1395 -992 -1299 -958
+rect 1299 -992 1395 -958
+<< viali >>
+rect -1219 856 -1151 890
+rect -1061 856 -993 890
+rect -903 856 -835 890
+rect -745 856 -677 890
+rect -587 856 -519 890
+rect -429 856 -361 890
+rect -271 856 -203 890
+rect -113 856 -45 890
+rect 45 856 113 890
+rect 203 856 271 890
+rect 361 856 429 890
+rect 519 856 587 890
+rect 677 856 745 890
+rect 835 856 903 890
+rect 993 856 1061 890
+rect 1151 856 1219 890
+rect -1281 430 -1247 806
+rect -1123 430 -1089 806
+rect -965 430 -931 806
+rect -807 430 -773 806
+rect -649 430 -615 806
+rect -491 430 -457 806
+rect -333 430 -299 806
+rect -175 430 -141 806
+rect -17 430 17 806
+rect 141 430 175 806
+rect 299 430 333 806
+rect 457 430 491 806
+rect 615 430 649 806
+rect 773 430 807 806
+rect 931 430 965 806
+rect 1089 430 1123 806
+rect 1247 430 1281 806
+rect -1219 346 -1151 380
+rect -1061 346 -993 380
+rect -903 346 -835 380
+rect -745 346 -677 380
+rect -587 346 -519 380
+rect -429 346 -361 380
+rect -271 346 -203 380
+rect -113 346 -45 380
+rect 45 346 113 380
+rect 203 346 271 380
+rect 361 346 429 380
+rect 519 346 587 380
+rect 677 346 745 380
+rect 835 346 903 380
+rect 993 346 1061 380
+rect 1151 346 1219 380
+rect -1219 238 -1151 272
+rect -1061 238 -993 272
+rect -903 238 -835 272
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect 835 238 903 272
+rect 993 238 1061 272
+rect 1151 238 1219 272
+rect -1281 -188 -1247 188
+rect -1123 -188 -1089 188
+rect -965 -188 -931 188
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect 931 -188 965 188
+rect 1089 -188 1123 188
+rect 1247 -188 1281 188
+rect -1219 -272 -1151 -238
+rect -1061 -272 -993 -238
+rect -903 -272 -835 -238
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+rect 835 -272 903 -238
+rect 993 -272 1061 -238
+rect 1151 -272 1219 -238
+rect -1219 -380 -1151 -346
+rect -1061 -380 -993 -346
+rect -903 -380 -835 -346
+rect -745 -380 -677 -346
+rect -587 -380 -519 -346
+rect -429 -380 -361 -346
+rect -271 -380 -203 -346
+rect -113 -380 -45 -346
+rect 45 -380 113 -346
+rect 203 -380 271 -346
+rect 361 -380 429 -346
+rect 519 -380 587 -346
+rect 677 -380 745 -346
+rect 835 -380 903 -346
+rect 993 -380 1061 -346
+rect 1151 -380 1219 -346
+rect -1281 -806 -1247 -430
+rect -1123 -806 -1089 -430
+rect -965 -806 -931 -430
+rect -807 -806 -773 -430
+rect -649 -806 -615 -430
+rect -491 -806 -457 -430
+rect -333 -806 -299 -430
+rect -175 -806 -141 -430
+rect -17 -806 17 -430
+rect 141 -806 175 -430
+rect 299 -806 333 -430
+rect 457 -806 491 -430
+rect 615 -806 649 -430
+rect 773 -806 807 -430
+rect 931 -806 965 -430
+rect 1089 -806 1123 -430
+rect 1247 -806 1281 -430
+rect -1219 -890 -1151 -856
+rect -1061 -890 -993 -856
+rect -903 -890 -835 -856
+rect -745 -890 -677 -856
+rect -587 -890 -519 -856
+rect -429 -890 -361 -856
+rect -271 -890 -203 -856
+rect -113 -890 -45 -856
+rect 45 -890 113 -856
+rect 203 -890 271 -856
+rect 361 -890 429 -856
+rect 519 -890 587 -856
+rect 677 -890 745 -856
+rect 835 -890 903 -856
+rect 993 -890 1061 -856
+rect 1151 -890 1219 -856
+<< metal1 >>
+rect -1231 890 -1139 896
+rect -1231 856 -1219 890
+rect -1151 856 -1139 890
+rect -1231 850 -1139 856
+rect -1073 890 -981 896
+rect -1073 856 -1061 890
+rect -993 856 -981 890
+rect -1073 850 -981 856
+rect -915 890 -823 896
+rect -915 856 -903 890
+rect -835 856 -823 890
+rect -915 850 -823 856
+rect -757 890 -665 896
+rect -757 856 -745 890
+rect -677 856 -665 890
+rect -757 850 -665 856
+rect -599 890 -507 896
+rect -599 856 -587 890
+rect -519 856 -507 890
+rect -599 850 -507 856
+rect -441 890 -349 896
+rect -441 856 -429 890
+rect -361 856 -349 890
+rect -441 850 -349 856
+rect -283 890 -191 896
+rect -283 856 -271 890
+rect -203 856 -191 890
+rect -283 850 -191 856
+rect -125 890 -33 896
+rect -125 856 -113 890
+rect -45 856 -33 890
+rect -125 850 -33 856
+rect 33 890 125 896
+rect 33 856 45 890
+rect 113 856 125 890
+rect 33 850 125 856
+rect 191 890 283 896
+rect 191 856 203 890
+rect 271 856 283 890
+rect 191 850 283 856
+rect 349 890 441 896
+rect 349 856 361 890
+rect 429 856 441 890
+rect 349 850 441 856
+rect 507 890 599 896
+rect 507 856 519 890
+rect 587 856 599 890
+rect 507 850 599 856
+rect 665 890 757 896
+rect 665 856 677 890
+rect 745 856 757 890
+rect 665 850 757 856
+rect 823 890 915 896
+rect 823 856 835 890
+rect 903 856 915 890
+rect 823 850 915 856
+rect 981 890 1073 896
+rect 981 856 993 890
+rect 1061 856 1073 890
+rect 981 850 1073 856
+rect 1139 890 1231 896
+rect 1139 856 1151 890
+rect 1219 856 1231 890
+rect 1139 850 1231 856
+rect -1287 806 -1241 818
+rect -1287 430 -1281 806
+rect -1247 430 -1241 806
+rect -1287 418 -1241 430
+rect -1129 806 -1083 818
+rect -1129 430 -1123 806
+rect -1089 430 -1083 806
+rect -1129 418 -1083 430
+rect -971 806 -925 818
+rect -971 430 -965 806
+rect -931 430 -925 806
+rect -971 418 -925 430
+rect -813 806 -767 818
+rect -813 430 -807 806
+rect -773 430 -767 806
+rect -813 418 -767 430
+rect -655 806 -609 818
+rect -655 430 -649 806
+rect -615 430 -609 806
+rect -655 418 -609 430
+rect -497 806 -451 818
+rect -497 430 -491 806
+rect -457 430 -451 806
+rect -497 418 -451 430
+rect -339 806 -293 818
+rect -339 430 -333 806
+rect -299 430 -293 806
+rect -339 418 -293 430
+rect -181 806 -135 818
+rect -181 430 -175 806
+rect -141 430 -135 806
+rect -181 418 -135 430
+rect -23 806 23 818
+rect -23 430 -17 806
+rect 17 430 23 806
+rect -23 418 23 430
+rect 135 806 181 818
+rect 135 430 141 806
+rect 175 430 181 806
+rect 135 418 181 430
+rect 293 806 339 818
+rect 293 430 299 806
+rect 333 430 339 806
+rect 293 418 339 430
+rect 451 806 497 818
+rect 451 430 457 806
+rect 491 430 497 806
+rect 451 418 497 430
+rect 609 806 655 818
+rect 609 430 615 806
+rect 649 430 655 806
+rect 609 418 655 430
+rect 767 806 813 818
+rect 767 430 773 806
+rect 807 430 813 806
+rect 767 418 813 430
+rect 925 806 971 818
+rect 925 430 931 806
+rect 965 430 971 806
+rect 925 418 971 430
+rect 1083 806 1129 818
+rect 1083 430 1089 806
+rect 1123 430 1129 806
+rect 1083 418 1129 430
+rect 1241 806 1287 818
+rect 1241 430 1247 806
+rect 1281 430 1287 806
+rect 1241 418 1287 430
+rect -1231 380 -1139 386
+rect -1231 346 -1219 380
+rect -1151 346 -1139 380
+rect -1231 340 -1139 346
+rect -1073 380 -981 386
+rect -1073 346 -1061 380
+rect -993 346 -981 380
+rect -1073 340 -981 346
+rect -915 380 -823 386
+rect -915 346 -903 380
+rect -835 346 -823 380
+rect -915 340 -823 346
+rect -757 380 -665 386
+rect -757 346 -745 380
+rect -677 346 -665 380
+rect -757 340 -665 346
+rect -599 380 -507 386
+rect -599 346 -587 380
+rect -519 346 -507 380
+rect -599 340 -507 346
+rect -441 380 -349 386
+rect -441 346 -429 380
+rect -361 346 -349 380
+rect -441 340 -349 346
+rect -283 380 -191 386
+rect -283 346 -271 380
+rect -203 346 -191 380
+rect -283 340 -191 346
+rect -125 380 -33 386
+rect -125 346 -113 380
+rect -45 346 -33 380
+rect -125 340 -33 346
+rect 33 380 125 386
+rect 33 346 45 380
+rect 113 346 125 380
+rect 33 340 125 346
+rect 191 380 283 386
+rect 191 346 203 380
+rect 271 346 283 380
+rect 191 340 283 346
+rect 349 380 441 386
+rect 349 346 361 380
+rect 429 346 441 380
+rect 349 340 441 346
+rect 507 380 599 386
+rect 507 346 519 380
+rect 587 346 599 380
+rect 507 340 599 346
+rect 665 380 757 386
+rect 665 346 677 380
+rect 745 346 757 380
+rect 665 340 757 346
+rect 823 380 915 386
+rect 823 346 835 380
+rect 903 346 915 380
+rect 823 340 915 346
+rect 981 380 1073 386
+rect 981 346 993 380
+rect 1061 346 1073 380
+rect 981 340 1073 346
+rect 1139 380 1231 386
+rect 1139 346 1151 380
+rect 1219 346 1231 380
+rect 1139 340 1231 346
+rect -1231 272 -1139 278
+rect -1231 238 -1219 272
+rect -1151 238 -1139 272
+rect -1231 232 -1139 238
+rect -1073 272 -981 278
+rect -1073 238 -1061 272
+rect -993 238 -981 272
+rect -1073 232 -981 238
+rect -915 272 -823 278
+rect -915 238 -903 272
+rect -835 238 -823 272
+rect -915 232 -823 238
+rect -757 272 -665 278
+rect -757 238 -745 272
+rect -677 238 -665 272
+rect -757 232 -665 238
+rect -599 272 -507 278
+rect -599 238 -587 272
+rect -519 238 -507 272
+rect -599 232 -507 238
+rect -441 272 -349 278
+rect -441 238 -429 272
+rect -361 238 -349 272
+rect -441 232 -349 238
+rect -283 272 -191 278
+rect -283 238 -271 272
+rect -203 238 -191 272
+rect -283 232 -191 238
+rect -125 272 -33 278
+rect -125 238 -113 272
+rect -45 238 -33 272
+rect -125 232 -33 238
+rect 33 272 125 278
+rect 33 238 45 272
+rect 113 238 125 272
+rect 33 232 125 238
+rect 191 272 283 278
+rect 191 238 203 272
+rect 271 238 283 272
+rect 191 232 283 238
+rect 349 272 441 278
+rect 349 238 361 272
+rect 429 238 441 272
+rect 349 232 441 238
+rect 507 272 599 278
+rect 507 238 519 272
+rect 587 238 599 272
+rect 507 232 599 238
+rect 665 272 757 278
+rect 665 238 677 272
+rect 745 238 757 272
+rect 665 232 757 238
+rect 823 272 915 278
+rect 823 238 835 272
+rect 903 238 915 272
+rect 823 232 915 238
+rect 981 272 1073 278
+rect 981 238 993 272
+rect 1061 238 1073 272
+rect 981 232 1073 238
+rect 1139 272 1231 278
+rect 1139 238 1151 272
+rect 1219 238 1231 272
+rect 1139 232 1231 238
+rect -1287 188 -1241 200
+rect -1287 -188 -1281 188
+rect -1247 -188 -1241 188
+rect -1287 -200 -1241 -188
+rect -1129 188 -1083 200
+rect -1129 -188 -1123 188
+rect -1089 -188 -1083 188
+rect -1129 -200 -1083 -188
+rect -971 188 -925 200
+rect -971 -188 -965 188
+rect -931 -188 -925 188
+rect -971 -200 -925 -188
+rect -813 188 -767 200
+rect -813 -188 -807 188
+rect -773 -188 -767 188
+rect -813 -200 -767 -188
+rect -655 188 -609 200
+rect -655 -188 -649 188
+rect -615 -188 -609 188
+rect -655 -200 -609 -188
+rect -497 188 -451 200
+rect -497 -188 -491 188
+rect -457 -188 -451 188
+rect -497 -200 -451 -188
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect 451 188 497 200
+rect 451 -188 457 188
+rect 491 -188 497 188
+rect 451 -200 497 -188
+rect 609 188 655 200
+rect 609 -188 615 188
+rect 649 -188 655 188
+rect 609 -200 655 -188
+rect 767 188 813 200
+rect 767 -188 773 188
+rect 807 -188 813 188
+rect 767 -200 813 -188
+rect 925 188 971 200
+rect 925 -188 931 188
+rect 965 -188 971 188
+rect 925 -200 971 -188
+rect 1083 188 1129 200
+rect 1083 -188 1089 188
+rect 1123 -188 1129 188
+rect 1083 -200 1129 -188
+rect 1241 188 1287 200
+rect 1241 -188 1247 188
+rect 1281 -188 1287 188
+rect 1241 -200 1287 -188
+rect -1231 -238 -1139 -232
+rect -1231 -272 -1219 -238
+rect -1151 -272 -1139 -238
+rect -1231 -278 -1139 -272
+rect -1073 -238 -981 -232
+rect -1073 -272 -1061 -238
+rect -993 -272 -981 -238
+rect -1073 -278 -981 -272
+rect -915 -238 -823 -232
+rect -915 -272 -903 -238
+rect -835 -272 -823 -238
+rect -915 -278 -823 -272
+rect -757 -238 -665 -232
+rect -757 -272 -745 -238
+rect -677 -272 -665 -238
+rect -757 -278 -665 -272
+rect -599 -238 -507 -232
+rect -599 -272 -587 -238
+rect -519 -272 -507 -238
+rect -599 -278 -507 -272
+rect -441 -238 -349 -232
+rect -441 -272 -429 -238
+rect -361 -272 -349 -238
+rect -441 -278 -349 -272
+rect -283 -238 -191 -232
+rect -283 -272 -271 -238
+rect -203 -272 -191 -238
+rect -283 -278 -191 -272
+rect -125 -238 -33 -232
+rect -125 -272 -113 -238
+rect -45 -272 -33 -238
+rect -125 -278 -33 -272
+rect 33 -238 125 -232
+rect 33 -272 45 -238
+rect 113 -272 125 -238
+rect 33 -278 125 -272
+rect 191 -238 283 -232
+rect 191 -272 203 -238
+rect 271 -272 283 -238
+rect 191 -278 283 -272
+rect 349 -238 441 -232
+rect 349 -272 361 -238
+rect 429 -272 441 -238
+rect 349 -278 441 -272
+rect 507 -238 599 -232
+rect 507 -272 519 -238
+rect 587 -272 599 -238
+rect 507 -278 599 -272
+rect 665 -238 757 -232
+rect 665 -272 677 -238
+rect 745 -272 757 -238
+rect 665 -278 757 -272
+rect 823 -238 915 -232
+rect 823 -272 835 -238
+rect 903 -272 915 -238
+rect 823 -278 915 -272
+rect 981 -238 1073 -232
+rect 981 -272 993 -238
+rect 1061 -272 1073 -238
+rect 981 -278 1073 -272
+rect 1139 -238 1231 -232
+rect 1139 -272 1151 -238
+rect 1219 -272 1231 -238
+rect 1139 -278 1231 -272
+rect -1231 -346 -1139 -340
+rect -1231 -380 -1219 -346
+rect -1151 -380 -1139 -346
+rect -1231 -386 -1139 -380
+rect -1073 -346 -981 -340
+rect -1073 -380 -1061 -346
+rect -993 -380 -981 -346
+rect -1073 -386 -981 -380
+rect -915 -346 -823 -340
+rect -915 -380 -903 -346
+rect -835 -380 -823 -346
+rect -915 -386 -823 -380
+rect -757 -346 -665 -340
+rect -757 -380 -745 -346
+rect -677 -380 -665 -346
+rect -757 -386 -665 -380
+rect -599 -346 -507 -340
+rect -599 -380 -587 -346
+rect -519 -380 -507 -346
+rect -599 -386 -507 -380
+rect -441 -346 -349 -340
+rect -441 -380 -429 -346
+rect -361 -380 -349 -346
+rect -441 -386 -349 -380
+rect -283 -346 -191 -340
+rect -283 -380 -271 -346
+rect -203 -380 -191 -346
+rect -283 -386 -191 -380
+rect -125 -346 -33 -340
+rect -125 -380 -113 -346
+rect -45 -380 -33 -346
+rect -125 -386 -33 -380
+rect 33 -346 125 -340
+rect 33 -380 45 -346
+rect 113 -380 125 -346
+rect 33 -386 125 -380
+rect 191 -346 283 -340
+rect 191 -380 203 -346
+rect 271 -380 283 -346
+rect 191 -386 283 -380
+rect 349 -346 441 -340
+rect 349 -380 361 -346
+rect 429 -380 441 -346
+rect 349 -386 441 -380
+rect 507 -346 599 -340
+rect 507 -380 519 -346
+rect 587 -380 599 -346
+rect 507 -386 599 -380
+rect 665 -346 757 -340
+rect 665 -380 677 -346
+rect 745 -380 757 -346
+rect 665 -386 757 -380
+rect 823 -346 915 -340
+rect 823 -380 835 -346
+rect 903 -380 915 -346
+rect 823 -386 915 -380
+rect 981 -346 1073 -340
+rect 981 -380 993 -346
+rect 1061 -380 1073 -346
+rect 981 -386 1073 -380
+rect 1139 -346 1231 -340
+rect 1139 -380 1151 -346
+rect 1219 -380 1231 -346
+rect 1139 -386 1231 -380
+rect -1287 -430 -1241 -418
+rect -1287 -806 -1281 -430
+rect -1247 -806 -1241 -430
+rect -1287 -818 -1241 -806
+rect -1129 -430 -1083 -418
+rect -1129 -806 -1123 -430
+rect -1089 -806 -1083 -430
+rect -1129 -818 -1083 -806
+rect -971 -430 -925 -418
+rect -971 -806 -965 -430
+rect -931 -806 -925 -430
+rect -971 -818 -925 -806
+rect -813 -430 -767 -418
+rect -813 -806 -807 -430
+rect -773 -806 -767 -430
+rect -813 -818 -767 -806
+rect -655 -430 -609 -418
+rect -655 -806 -649 -430
+rect -615 -806 -609 -430
+rect -655 -818 -609 -806
+rect -497 -430 -451 -418
+rect -497 -806 -491 -430
+rect -457 -806 -451 -430
+rect -497 -818 -451 -806
+rect -339 -430 -293 -418
+rect -339 -806 -333 -430
+rect -299 -806 -293 -430
+rect -339 -818 -293 -806
+rect -181 -430 -135 -418
+rect -181 -806 -175 -430
+rect -141 -806 -135 -430
+rect -181 -818 -135 -806
+rect -23 -430 23 -418
+rect -23 -806 -17 -430
+rect 17 -806 23 -430
+rect -23 -818 23 -806
+rect 135 -430 181 -418
+rect 135 -806 141 -430
+rect 175 -806 181 -430
+rect 135 -818 181 -806
+rect 293 -430 339 -418
+rect 293 -806 299 -430
+rect 333 -806 339 -430
+rect 293 -818 339 -806
+rect 451 -430 497 -418
+rect 451 -806 457 -430
+rect 491 -806 497 -430
+rect 451 -818 497 -806
+rect 609 -430 655 -418
+rect 609 -806 615 -430
+rect 649 -806 655 -430
+rect 609 -818 655 -806
+rect 767 -430 813 -418
+rect 767 -806 773 -430
+rect 807 -806 813 -430
+rect 767 -818 813 -806
+rect 925 -430 971 -418
+rect 925 -806 931 -430
+rect 965 -806 971 -430
+rect 925 -818 971 -806
+rect 1083 -430 1129 -418
+rect 1083 -806 1089 -430
+rect 1123 -806 1129 -430
+rect 1083 -818 1129 -806
+rect 1241 -430 1287 -418
+rect 1241 -806 1247 -430
+rect 1281 -806 1287 -430
+rect 1241 -818 1287 -806
+rect -1231 -856 -1139 -850
+rect -1231 -890 -1219 -856
+rect -1151 -890 -1139 -856
+rect -1231 -896 -1139 -890
+rect -1073 -856 -981 -850
+rect -1073 -890 -1061 -856
+rect -993 -890 -981 -856
+rect -1073 -896 -981 -890
+rect -915 -856 -823 -850
+rect -915 -890 -903 -856
+rect -835 -890 -823 -856
+rect -915 -896 -823 -890
+rect -757 -856 -665 -850
+rect -757 -890 -745 -856
+rect -677 -890 -665 -856
+rect -757 -896 -665 -890
+rect -599 -856 -507 -850
+rect -599 -890 -587 -856
+rect -519 -890 -507 -856
+rect -599 -896 -507 -890
+rect -441 -856 -349 -850
+rect -441 -890 -429 -856
+rect -361 -890 -349 -856
+rect -441 -896 -349 -890
+rect -283 -856 -191 -850
+rect -283 -890 -271 -856
+rect -203 -890 -191 -856
+rect -283 -896 -191 -890
+rect -125 -856 -33 -850
+rect -125 -890 -113 -856
+rect -45 -890 -33 -856
+rect -125 -896 -33 -890
+rect 33 -856 125 -850
+rect 33 -890 45 -856
+rect 113 -890 125 -856
+rect 33 -896 125 -890
+rect 191 -856 283 -850
+rect 191 -890 203 -856
+rect 271 -890 283 -856
+rect 191 -896 283 -890
+rect 349 -856 441 -850
+rect 349 -890 361 -856
+rect 429 -890 441 -856
+rect 349 -896 441 -890
+rect 507 -856 599 -850
+rect 507 -890 519 -856
+rect 587 -890 599 -856
+rect 507 -896 599 -890
+rect 665 -856 757 -850
+rect 665 -890 677 -856
+rect 745 -890 757 -856
+rect 665 -896 757 -890
+rect 823 -856 915 -850
+rect 823 -890 835 -856
+rect 903 -890 915 -856
+rect 823 -896 915 -890
+rect 981 -856 1073 -850
+rect 981 -890 993 -856
+rect 1061 -890 1073 -856
+rect 981 -896 1073 -890
+rect 1139 -856 1231 -850
+rect 1139 -890 1151 -856
+rect 1219 -890 1231 -856
+rect 1139 -896 1231 -890
+<< properties >>
+string FIXED_BBOX -1378 -975 1378 975
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 3 nf 16 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_U6R4R5.mag b/mag/outd/sky130_fd_pr__nfet_01v8_U6R4R5.mag
new file mode 100644
index 0000000..a339321
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_U6R4R5.mag
@@ -0,0 +1,424 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646234887
+<< pwell >>
+rect -957 -410 957 410
+<< nmos >>
+rect -761 -200 -661 200
+rect -603 -200 -503 200
+rect -445 -200 -345 200
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+rect 345 -200 445 200
+rect 503 -200 603 200
+rect 661 -200 761 200
+<< ndiff >>
+rect -819 188 -761 200
+rect -819 -188 -807 188
+rect -773 -188 -761 188
+rect -819 -200 -761 -188
+rect -661 188 -603 200
+rect -661 -188 -649 188
+rect -615 -188 -603 188
+rect -661 -200 -603 -188
+rect -503 188 -445 200
+rect -503 -188 -491 188
+rect -457 -188 -445 188
+rect -503 -200 -445 -188
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+rect 445 188 503 200
+rect 445 -188 457 188
+rect 491 -188 503 188
+rect 445 -200 503 -188
+rect 603 188 661 200
+rect 603 -188 615 188
+rect 649 -188 661 188
+rect 603 -200 661 -188
+rect 761 188 819 200
+rect 761 -188 773 188
+rect 807 -188 819 188
+rect 761 -200 819 -188
+<< ndiffc >>
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+<< psubdiff >>
+rect -921 340 -825 374
+rect 825 340 921 374
+rect -921 278 -887 340
+rect 887 278 921 340
+rect -921 -340 -887 -278
+rect 887 -340 921 -278
+rect -921 -374 -825 -340
+rect 825 -374 921 -340
+<< psubdiffcont >>
+rect -825 340 825 374
+rect -921 -278 -887 278
+rect 887 -278 921 278
+rect -825 -374 825 -340
+<< poly >>
+rect -761 272 -661 288
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -761 200 -661 238
+rect -603 272 -503 288
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -603 200 -503 238
+rect -445 272 -345 288
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -445 200 -345 238
+rect -287 272 -187 288
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -287 200 -187 238
+rect -129 272 -29 288
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect -129 200 -29 238
+rect 29 272 129 288
+rect 29 238 45 272
+rect 113 238 129 272
+rect 29 200 129 238
+rect 187 272 287 288
+rect 187 238 203 272
+rect 271 238 287 272
+rect 187 200 287 238
+rect 345 272 445 288
+rect 345 238 361 272
+rect 429 238 445 272
+rect 345 200 445 238
+rect 503 272 603 288
+rect 503 238 519 272
+rect 587 238 603 272
+rect 503 200 603 238
+rect 661 272 761 288
+rect 661 238 677 272
+rect 745 238 761 272
+rect 661 200 761 238
+rect -761 -238 -661 -200
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -761 -288 -661 -272
+rect -603 -238 -503 -200
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -603 -288 -503 -272
+rect -445 -238 -345 -200
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -445 -288 -345 -272
+rect -287 -238 -187 -200
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -287 -288 -187 -272
+rect -129 -238 -29 -200
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect -129 -288 -29 -272
+rect 29 -238 129 -200
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 29 -288 129 -272
+rect 187 -238 287 -200
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 187 -288 287 -272
+rect 345 -238 445 -200
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 345 -288 445 -272
+rect 503 -238 603 -200
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 503 -288 603 -272
+rect 661 -238 761 -200
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect 661 -288 761 -272
+<< polycont >>
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+<< locali >>
+rect -921 340 -825 374
+rect 825 340 921 374
+rect -921 278 -887 340
+rect 887 278 921 340
+rect -761 238 -745 272
+rect -677 238 -661 272
+rect -603 238 -587 272
+rect -519 238 -503 272
+rect -445 238 -429 272
+rect -361 238 -345 272
+rect -287 238 -271 272
+rect -203 238 -187 272
+rect -129 238 -113 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 113 238 129 272
+rect 187 238 203 272
+rect 271 238 287 272
+rect 345 238 361 272
+rect 429 238 445 272
+rect 503 238 519 272
+rect 587 238 603 272
+rect 661 238 677 272
+rect 745 238 761 272
+rect -807 188 -773 204
+rect -807 -204 -773 -188
+rect -649 188 -615 204
+rect -649 -204 -615 -188
+rect -491 188 -457 204
+rect -491 -204 -457 -188
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect 457 188 491 204
+rect 457 -204 491 -188
+rect 615 188 649 204
+rect 615 -204 649 -188
+rect 773 188 807 204
+rect 773 -204 807 -188
+rect -761 -272 -745 -238
+rect -677 -272 -661 -238
+rect -603 -272 -587 -238
+rect -519 -272 -503 -238
+rect -445 -272 -429 -238
+rect -361 -272 -345 -238
+rect -287 -272 -271 -238
+rect -203 -272 -187 -238
+rect -129 -272 -113 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 113 -272 129 -238
+rect 187 -272 203 -238
+rect 271 -272 287 -238
+rect 345 -272 361 -238
+rect 429 -272 445 -238
+rect 503 -272 519 -238
+rect 587 -272 603 -238
+rect 661 -272 677 -238
+rect 745 -272 761 -238
+rect -921 -340 -887 -278
+rect 887 -340 921 -278
+rect -921 -374 -825 -340
+rect 825 -374 921 -340
+<< viali >>
+rect -745 238 -677 272
+rect -587 238 -519 272
+rect -429 238 -361 272
+rect -271 238 -203 272
+rect -113 238 -45 272
+rect 45 238 113 272
+rect 203 238 271 272
+rect 361 238 429 272
+rect 519 238 587 272
+rect 677 238 745 272
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect -745 -272 -677 -238
+rect -587 -272 -519 -238
+rect -429 -272 -361 -238
+rect -271 -272 -203 -238
+rect -113 -272 -45 -238
+rect 45 -272 113 -238
+rect 203 -272 271 -238
+rect 361 -272 429 -238
+rect 519 -272 587 -238
+rect 677 -272 745 -238
+<< metal1 >>
+rect -757 272 -665 278
+rect -757 238 -745 272
+rect -677 238 -665 272
+rect -757 232 -665 238
+rect -599 272 -507 278
+rect -599 238 -587 272
+rect -519 238 -507 272
+rect -599 232 -507 238
+rect -441 272 -349 278
+rect -441 238 -429 272
+rect -361 238 -349 272
+rect -441 232 -349 238
+rect -283 272 -191 278
+rect -283 238 -271 272
+rect -203 238 -191 272
+rect -283 232 -191 238
+rect -125 272 -33 278
+rect -125 238 -113 272
+rect -45 238 -33 272
+rect -125 232 -33 238
+rect 33 272 125 278
+rect 33 238 45 272
+rect 113 238 125 272
+rect 33 232 125 238
+rect 191 272 283 278
+rect 191 238 203 272
+rect 271 238 283 272
+rect 191 232 283 238
+rect 349 272 441 278
+rect 349 238 361 272
+rect 429 238 441 272
+rect 349 232 441 238
+rect 507 272 599 278
+rect 507 238 519 272
+rect 587 238 599 272
+rect 507 232 599 238
+rect 665 272 757 278
+rect 665 238 677 272
+rect 745 238 757 272
+rect 665 232 757 238
+rect -813 188 -767 200
+rect -813 -188 -807 188
+rect -773 -188 -767 188
+rect -813 -200 -767 -188
+rect -655 188 -609 200
+rect -655 -188 -649 188
+rect -615 -188 -609 188
+rect -655 -200 -609 -188
+rect -497 188 -451 200
+rect -497 -188 -491 188
+rect -457 -188 -451 188
+rect -497 -200 -451 -188
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect 451 188 497 200
+rect 451 -188 457 188
+rect 491 -188 497 188
+rect 451 -200 497 -188
+rect 609 188 655 200
+rect 609 -188 615 188
+rect 649 -188 655 188
+rect 609 -200 655 -188
+rect 767 188 813 200
+rect 767 -188 773 188
+rect 807 -188 813 188
+rect 767 -200 813 -188
+rect -757 -238 -665 -232
+rect -757 -272 -745 -238
+rect -677 -272 -665 -238
+rect -757 -278 -665 -272
+rect -599 -238 -507 -232
+rect -599 -272 -587 -238
+rect -519 -272 -507 -238
+rect -599 -278 -507 -272
+rect -441 -238 -349 -232
+rect -441 -272 -429 -238
+rect -361 -272 -349 -238
+rect -441 -278 -349 -272
+rect -283 -238 -191 -232
+rect -283 -272 -271 -238
+rect -203 -272 -191 -238
+rect -283 -278 -191 -272
+rect -125 -238 -33 -232
+rect -125 -272 -113 -238
+rect -45 -272 -33 -238
+rect -125 -278 -33 -272
+rect 33 -238 125 -232
+rect 33 -272 45 -238
+rect 113 -272 125 -238
+rect 33 -278 125 -272
+rect 191 -238 283 -232
+rect 191 -272 203 -238
+rect 271 -272 283 -238
+rect 191 -278 283 -272
+rect 349 -238 441 -232
+rect 349 -272 361 -238
+rect 429 -272 441 -238
+rect 349 -278 441 -272
+rect 507 -238 599 -232
+rect 507 -272 519 -238
+rect 587 -272 599 -238
+rect 507 -278 599 -272
+rect 665 -238 757 -232
+rect 665 -272 677 -238
+rect 745 -272 757 -238
+rect 665 -278 757 -272
+<< properties >>
+string FIXED_BBOX -904 -357 904 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.ext b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.ext
new file mode 100644
index 0000000..e995971
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.ext
@@ -0,0 +1,203 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_495_n509#" 929 155.176 495 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n509#" 882 12.2058 399 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n509#" 882 12.2058 303 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n509#" 882 12.2058 207 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n509#" 882 12.2058 111 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n509#" 882 12.2058 15 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n509#" 882 12.2058 -81 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n509#" 882 12.2058 -177 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n509#" 882 12.2058 -273 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n509#" 882 12.2058 -369 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n509#" 882 12.2058 -465 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n557_n509#" 929 155.176 -557 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n597#" 837 133.292 447 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_n597#" 837 96.6422 255 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_n87#" 837 82.0127 351 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n597#" 837 96.6422 63 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n87#" 837 62.121 159 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n597#" 837 96.6422 -129 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n87#" 837 62.121 -33 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n597#" 837 96.6422 -321 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n87#" 837 62.121 -225 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n597#" 837 133.546 -513 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n87#" 837 82.2668 -417 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_109#" 929 155.264 495 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_109#" 882 12.4348 399 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_109#" 882 12.4348 303 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 882 12.4348 207 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_109#" 882 12.4348 111 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_109#" 882 12.4348 15 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_109#" 882 12.4348 -81 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_109#" 882 12.4348 -177 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_109#" 882 12.4348 -273 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_109#" 882 12.4348 -369 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_109#" 882 12.4348 -465 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n557_109#" 929 155.264 -557 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_21#" 837 82.2192 351 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_531#" 837 133.292 447 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_21#" 837 62.3276 159 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_531#" 837 96.6422 255 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 837 62.3276 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_531#" 837 96.6422 63 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_21#" 837 62.3276 -225 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_531#" 837 96.6422 -129 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_21#" 837 82.4733 -417 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_531#" 837 96.6422 -321 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_531#" 837 133.546 -513 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n659_n683#" 0 0 -659 -683 ppd 0 0 0 0 0 0 0 0 0 0 177888 10464 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 177888 10464 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n369_109#" "a_n465_109#" 479.458
+cap "a_n33_n87#" "a_15_n509#" 6.25956
+cap "a_n417_21#" "a_n369_109#" 6.25956
+cap "a_n369_n509#" "a_n465_n509#" 479.458
+cap "a_n369_109#" "a_n273_109#" 479.458
+cap "a_351_21#" "a_447_531#" 14.1667
+cap "a_n81_109#" "a_n129_531#" 6.25956
+cap "a_n417_n87#" "a_n321_n597#" 14.1667
+cap "a_159_n87#" "a_63_n597#" 14.1667
+cap "a_63_531#" "a_255_531#" 28.5878
+cap "a_n177_109#" "a_n129_531#" 6.25956
+cap "a_255_531#" "a_255_n597#" 6.73951
+cap "a_n513_n597#" "a_n321_n597#" 28.5878
+cap "a_n225_n87#" "a_n321_n597#" 14.1667
+cap "a_255_531#" "a_207_109#" 6.25956
+cap "a_255_n597#" "a_207_n509#" 6.25956
+cap "a_n513_n597#" "a_n417_n87#" 14.1667
+cap "a_255_n597#" "a_447_n597#" 28.5878
+cap "a_n417_n87#" "a_n225_n87#" 28.5878
+cap "a_207_109#" "a_207_n509#" 12.3196
+cap "a_111_n509#" "a_15_n509#" 479.458
+cap "a_n369_n509#" "a_n273_n509#" 479.458
+cap "a_63_531#" "a_63_n597#" 6.73951
+cap "a_63_n597#" "a_255_n597#" 28.5878
+cap "a_n225_21#" "a_n321_531#" 14.1667
+cap "a_n225_21#" "a_n417_21#" 28.5878
+cap "a_63_531#" "a_15_109#" 6.25956
+cap "a_n513_n597#" "a_n513_531#" 6.73951
+cap "a_399_109#" "a_303_109#" 479.458
+cap "a_n225_21#" "a_n273_109#" 6.25956
+cap "a_n129_n597#" "a_n129_531#" 6.73951
+cap "a_63_531#" "a_n33_21#" 14.1667
+cap "a_351_n87#" "a_447_n597#" 14.1667
+cap "a_n225_n87#" "a_n177_n509#" 6.25956
+cap "a_n465_109#" "a_n465_n509#" 12.3196
+cap "a_n81_109#" "a_15_109#" 479.458
+cap "a_n417_21#" "a_n321_531#" 14.1667
+cap "a_n417_21#" "a_n465_109#" 6.25956
+cap "a_351_21#" "a_351_n87#" 86.2066
+cap "a_n81_109#" "a_n33_21#" 6.25956
+cap "a_399_n509#" "a_447_n597#" 6.25956
+cap "a_303_n509#" "a_255_n597#" 6.25956
+cap "a_n273_109#" "a_n321_531#" 6.25956
+cap "a_n465_109#" "a_n557_109#" 479.458
+cap "a_159_n87#" "a_255_n597#" 14.1667
+cap "a_495_n509#" "a_495_109#" 12.3196
+cap "a_495_109#" "a_447_531#" 6.25956
+cap "a_n225_21#" "a_n129_531#" 14.1667
+cap "a_111_109#" "a_15_109#" 479.458
+cap "a_n129_n597#" "a_63_n597#" 28.5878
+cap "a_n33_n87#" "a_63_n597#" 14.1667
+cap "a_n273_109#" "a_n273_n509#" 12.3196
+cap "a_495_n509#" "a_399_n509#" 479.458
+cap "a_303_n509#" "a_351_n87#" 6.25956
+cap "a_n81_n509#" "a_n177_n509#" 479.458
+cap "a_159_n87#" "a_351_n87#" 28.5878
+cap "a_n129_n597#" "a_n321_n597#" 28.5878
+cap "a_n33_n87#" "a_n33_21#" 86.2066
+cap "a_399_109#" "a_351_21#" 6.25956
+cap "a_n177_109#" "a_n177_n509#" 12.3196
+cap "a_399_n509#" "a_303_n509#" 479.458
+cap "a_111_n509#" "a_207_n509#" 479.458
+cap "a_n321_531#" "a_n129_531#" 28.5878
+cap "a_255_531#" "a_159_21#" 14.1667
+cap "a_n369_n509#" "a_n321_n597#" 6.25956
+cap "a_n129_n597#" "a_n225_n87#" 14.1667
+cap "a_n557_n509#" "a_n465_n509#" 479.458
+cap "a_n33_n87#" "a_n225_n87#" 28.5878
+cap "a_n369_n509#" "a_n417_n87#" 6.25956
+cap "a_159_n87#" "a_n33_n87#" 28.5878
+cap "a_111_n509#" "a_63_n597#" 6.25956
+cap "a_n81_109#" "a_n81_n509#" 12.3196
+cap "a_255_n597#" "a_351_n87#" 14.1667
+cap "a_n557_n509#" "a_n557_109#" 12.3196
+cap "a_351_21#" "a_159_21#" 28.5878
+cap "a_n177_109#" "a_n81_109#" 479.458
+cap "a_399_109#" "a_447_531#" 6.25956
+cap "a_n129_n597#" "a_n177_n509#" 6.25956
+cap "a_63_531#" "a_111_109#" 6.25956
+cap "a_n225_21#" "a_n33_21#" 28.5878
+cap "a_159_21#" "a_n33_21#" 28.5878
+cap "a_111_109#" "a_207_109#" 479.458
+cap "a_159_n87#" "a_111_n509#" 6.25956
+cap "a_63_n597#" "a_15_n509#" 6.25956
+cap "a_255_531#" "a_303_109#" 6.25956
+cap "a_n225_21#" "a_n225_n87#" 86.2066
+cap "a_n81_n509#" "a_n129_n597#" 6.25956
+cap "a_n33_n87#" "a_n81_n509#" 6.25956
+cap "a_15_n509#" "a_15_109#" 12.3196
+cap "a_n321_531#" "a_n321_n597#" 6.73951
+cap "a_399_n509#" "a_351_n87#" 6.25956
+cap "a_159_n87#" "a_159_21#" 86.2066
+cap "a_n417_n87#" "a_n465_n509#" 6.25956
+cap "a_n513_n597#" "a_n465_n509#" 6.25956
+cap "a_n417_21#" "a_n417_n87#" 86.2066
+cap "a_351_21#" "a_303_109#" 6.25956
+cap "a_399_109#" "a_495_109#" 479.458
+cap "a_63_531#" "a_159_21#" 14.1667
+cap "a_n321_531#" "a_n513_531#" 28.5878
+cap "a_n465_109#" "a_n513_531#" 6.25956
+cap "a_n321_n597#" "a_n273_n509#" 6.25956
+cap "a_n417_21#" "a_n513_531#" 14.1667
+cap "a_159_21#" "a_207_109#" 6.25956
+cap "a_n557_109#" "a_n513_531#" 6.25956
+cap "a_n33_n87#" "a_n129_n597#" 14.1667
+cap "a_399_109#" "a_399_n509#" 12.3196
+cap "a_n225_n87#" "a_n273_n509#" 6.25956
+cap "a_n225_21#" "a_n177_109#" 6.25956
+cap "a_303_n509#" "a_303_109#" 12.3196
+cap "a_n369_n509#" "a_n369_109#" 12.3196
+cap "a_n129_531#" "a_n33_21#" 14.1667
+cap "a_255_531#" "a_351_21#" 14.1667
+cap "a_n81_n509#" "a_15_n509#" 479.458
+cap "a_111_n509#" "a_111_109#" 12.3196
+cap "a_n177_n509#" "a_n273_n509#" 479.458
+cap "a_n557_n509#" "a_n513_n597#" 6.25956
+cap "a_111_109#" "a_159_21#" 6.25956
+cap "a_n177_109#" "a_n273_109#" 479.458
+cap "a_207_109#" "a_303_109#" 479.458
+cap "a_255_531#" "a_447_531#" 28.5878
+cap "a_495_n509#" "a_447_n597#" 6.25956
+cap "a_63_531#" "a_n129_531#" 28.5878
+cap "a_447_531#" "a_447_n597#" 6.73951
+cap "a_303_n509#" "a_207_n509#" 479.458
+cap "a_n33_21#" "a_15_109#" 6.25956
+cap "a_n369_109#" "a_n321_531#" 6.25956
+cap "a_159_n87#" "a_207_n509#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8_lvt 465 -509 466 -508 l=30 w=400 "a_n659_n683#" "a_447_n597#" 60 0 "a_399_n509#" 400 0 "a_495_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 369 -509 370 -508 l=30 w=400 "a_n659_n683#" "a_351_n87#" 60 0 "a_303_n509#" 400 0 "a_399_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 273 -509 274 -508 l=30 w=400 "a_n659_n683#" "a_255_n597#" 60 0 "a_207_n509#" 400 0 "a_303_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 177 -509 178 -508 l=30 w=400 "a_n659_n683#" "a_159_n87#" 60 0 "a_111_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 81 -509 82 -508 l=30 w=400 "a_n659_n683#" "a_63_n597#" 60 0 "a_15_n509#" 400 0 "a_111_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -15 -509 -14 -508 l=30 w=400 "a_n659_n683#" "a_n33_n87#" 60 0 "a_n81_n509#" 400 0 "a_15_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -111 -509 -110 -508 l=30 w=400 "a_n659_n683#" "a_n129_n597#" 60 0 "a_n177_n509#" 400 0 "a_n81_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 -509 -206 -508 l=30 w=400 "a_n659_n683#" "a_n225_n87#" 60 0 "a_n273_n509#" 400 0 "a_n177_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -303 -509 -302 -508 l=30 w=400 "a_n659_n683#" "a_n321_n597#" 60 0 "a_n369_n509#" 400 0 "a_n273_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -399 -509 -398 -508 l=30 w=400 "a_n659_n683#" "a_n417_n87#" 60 0 "a_n465_n509#" 400 0 "a_n369_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -495 -509 -494 -508 l=30 w=400 "a_n659_n683#" "a_n513_n597#" 60 0 "a_n557_n509#" 400 0 "a_n465_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 465 109 466 110 l=30 w=400 "a_n659_n683#" "a_447_531#" 60 0 "a_399_109#" 400 0 "a_495_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 369 109 370 110 l=30 w=400 "a_n659_n683#" "a_351_21#" 60 0 "a_303_109#" 400 0 "a_399_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 273 109 274 110 l=30 w=400 "a_n659_n683#" "a_255_531#" 60 0 "a_207_109#" 400 0 "a_303_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 177 109 178 110 l=30 w=400 "a_n659_n683#" "a_159_21#" 60 0 "a_111_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 81 109 82 110 l=30 w=400 "a_n659_n683#" "a_63_531#" 60 0 "a_15_109#" 400 0 "a_111_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -15 109 -14 110 l=30 w=400 "a_n659_n683#" "a_n33_21#" 60 0 "a_n81_109#" 400 0 "a_15_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -111 109 -110 110 l=30 w=400 "a_n659_n683#" "a_n129_531#" 60 0 "a_n177_109#" 400 0 "a_n81_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -207 109 -206 110 l=30 w=400 "a_n659_n683#" "a_n225_21#" 60 0 "a_n273_109#" 400 0 "a_n177_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -303 109 -302 110 l=30 w=400 "a_n659_n683#" "a_n321_531#" 60 0 "a_n369_109#" 400 0 "a_n273_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -399 109 -398 110 l=30 w=400 "a_n659_n683#" "a_n417_21#" 60 0 "a_n465_109#" 400 0 "a_n369_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -495 109 -494 110 l=30 w=400 "a_n659_n683#" "a_n513_531#" 60 0 "a_n557_109#" 400 0 "a_n465_109#" 400 0
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.mag b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.mag
new file mode 100644
index 0000000..91cb803
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_324MKY.mag
@@ -0,0 +1,727 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -509 581 -451 587
+rect -317 581 -259 587
+rect -125 581 -67 587
+rect 67 581 125 587
+rect 259 581 317 587
+rect 451 581 509 587
+rect -509 547 -497 581
+rect -317 547 -305 581
+rect -125 547 -113 581
+rect 67 547 79 581
+rect 259 547 271 581
+rect 451 547 463 581
+rect -509 541 -451 547
+rect -317 541 -259 547
+rect -125 541 -67 547
+rect 67 541 125 547
+rect 259 541 317 547
+rect 451 541 509 547
+rect -413 71 -355 77
+rect -221 71 -163 77
+rect -29 71 29 77
+rect 163 71 221 77
+rect 355 71 413 77
+rect -413 37 -401 71
+rect -221 37 -209 71
+rect -29 37 -17 71
+rect 163 37 175 71
+rect 355 37 367 71
+rect -413 31 -355 37
+rect -221 31 -163 37
+rect -29 31 29 37
+rect 163 31 221 37
+rect 355 31 413 37
+rect -413 -37 -355 -31
+rect -221 -37 -163 -31
+rect -29 -37 29 -31
+rect 163 -37 221 -31
+rect 355 -37 413 -31
+rect -413 -71 -401 -37
+rect -221 -71 -209 -37
+rect -29 -71 -17 -37
+rect 163 -71 175 -37
+rect 355 -71 367 -37
+rect -413 -77 -355 -71
+rect -221 -77 -163 -71
+rect -29 -77 29 -71
+rect 163 -77 221 -71
+rect 355 -77 413 -71
+rect -509 -547 -451 -541
+rect -317 -547 -259 -541
+rect -125 -547 -67 -541
+rect 67 -547 125 -541
+rect 259 -547 317 -541
+rect 451 -547 509 -541
+rect -509 -581 -497 -547
+rect -317 -581 -305 -547
+rect -125 -581 -113 -547
+rect 67 -581 79 -547
+rect 259 -581 271 -547
+rect 451 -581 463 -547
+rect -509 -587 -451 -581
+rect -317 -587 -259 -581
+rect -125 -587 -67 -581
+rect 67 -587 125 -581
+rect 259 -587 317 -581
+rect 451 -587 509 -581
+<< pwell >>
+rect -695 -719 695 719
+<< nmoslvt >>
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+<< ndiff >>
+rect -557 497 -495 509
+rect -557 121 -545 497
+rect -511 121 -495 497
+rect -557 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 557 509
+rect 495 121 511 497
+rect 545 121 557 497
+rect 495 109 557 121
+rect -557 -121 -495 -109
+rect -557 -497 -545 -121
+rect -511 -497 -495 -121
+rect -557 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 557 -109
+rect 495 -497 511 -121
+rect 545 -497 557 -121
+rect 495 -509 557 -497
+<< ndiffc >>
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+<< psubdiff >>
+rect -659 649 -563 683
+rect 563 649 659 683
+rect -659 587 -625 649
+rect 625 587 659 649
+rect -659 -649 -625 -587
+rect 625 -649 659 -587
+rect -659 -683 -563 -649
+rect 563 -683 659 -649
+<< psubdiffcont >>
+rect -563 649 563 683
+rect -659 -587 -625 587
+rect 625 -587 659 587
+rect -563 -683 563 -649
+<< poly >>
+rect -513 581 -447 597
+rect -513 547 -497 581
+rect -463 547 -447 581
+rect -513 531 -447 547
+rect -321 581 -255 597
+rect -321 547 -305 581
+rect -271 547 -255 581
+rect -495 509 -465 531
+rect -399 509 -369 535
+rect -321 531 -255 547
+rect -129 581 -63 597
+rect -129 547 -113 581
+rect -79 547 -63 581
+rect -303 509 -273 531
+rect -207 509 -177 535
+rect -129 531 -63 547
+rect 63 581 129 597
+rect 63 547 79 581
+rect 113 547 129 581
+rect -111 509 -81 531
+rect -15 509 15 535
+rect 63 531 129 547
+rect 255 581 321 597
+rect 255 547 271 581
+rect 305 547 321 581
+rect 81 509 111 531
+rect 177 509 207 535
+rect 255 531 321 547
+rect 447 581 513 597
+rect 447 547 463 581
+rect 497 547 513 581
+rect 273 509 303 531
+rect 369 509 399 535
+rect 447 531 513 547
+rect 465 509 495 531
+rect -495 83 -465 109
+rect -399 87 -369 109
+rect -417 71 -351 87
+rect -303 83 -273 109
+rect -207 87 -177 109
+rect -417 37 -401 71
+rect -367 37 -351 71
+rect -417 21 -351 37
+rect -225 71 -159 87
+rect -111 83 -81 109
+rect -15 87 15 109
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -225 21 -159 37
+rect -33 71 33 87
+rect 81 83 111 109
+rect 177 87 207 109
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 159 71 225 87
+rect 273 83 303 109
+rect 369 87 399 109
+rect 159 37 175 71
+rect 209 37 225 71
+rect 159 21 225 37
+rect 351 71 417 87
+rect 465 83 495 109
+rect 351 37 367 71
+rect 401 37 417 71
+rect 351 21 417 37
+rect -417 -37 -351 -21
+rect -417 -71 -401 -37
+rect -367 -71 -351 -37
+rect -495 -109 -465 -83
+rect -417 -87 -351 -71
+rect -225 -37 -159 -21
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -399 -109 -369 -87
+rect -303 -109 -273 -83
+rect -225 -87 -159 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -207 -109 -177 -87
+rect -111 -109 -81 -83
+rect -33 -87 33 -71
+rect 159 -37 225 -21
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect -15 -109 15 -87
+rect 81 -109 111 -83
+rect 159 -87 225 -71
+rect 351 -37 417 -21
+rect 351 -71 367 -37
+rect 401 -71 417 -37
+rect 177 -109 207 -87
+rect 273 -109 303 -83
+rect 351 -87 417 -71
+rect 369 -109 399 -87
+rect 465 -109 495 -83
+rect -495 -531 -465 -509
+rect -513 -547 -447 -531
+rect -399 -535 -369 -509
+rect -303 -531 -273 -509
+rect -513 -581 -497 -547
+rect -463 -581 -447 -547
+rect -513 -597 -447 -581
+rect -321 -547 -255 -531
+rect -207 -535 -177 -509
+rect -111 -531 -81 -509
+rect -321 -581 -305 -547
+rect -271 -581 -255 -547
+rect -321 -597 -255 -581
+rect -129 -547 -63 -531
+rect -15 -535 15 -509
+rect 81 -531 111 -509
+rect -129 -581 -113 -547
+rect -79 -581 -63 -547
+rect -129 -597 -63 -581
+rect 63 -547 129 -531
+rect 177 -535 207 -509
+rect 273 -531 303 -509
+rect 63 -581 79 -547
+rect 113 -581 129 -547
+rect 63 -597 129 -581
+rect 255 -547 321 -531
+rect 369 -535 399 -509
+rect 465 -531 495 -509
+rect 255 -581 271 -547
+rect 305 -581 321 -547
+rect 255 -597 321 -581
+rect 447 -547 513 -531
+rect 447 -581 463 -547
+rect 497 -581 513 -547
+rect 447 -597 513 -581
+<< polycont >>
+rect -497 547 -463 581
+rect -305 547 -271 581
+rect -113 547 -79 581
+rect 79 547 113 581
+rect 271 547 305 581
+rect 463 547 497 581
+rect -401 37 -367 71
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect 367 37 401 71
+rect -401 -71 -367 -37
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect 367 -71 401 -37
+rect -497 -581 -463 -547
+rect -305 -581 -271 -547
+rect -113 -581 -79 -547
+rect 79 -581 113 -547
+rect 271 -581 305 -547
+rect 463 -581 497 -547
+<< locali >>
+rect -659 649 -563 683
+rect 563 649 659 683
+rect -659 587 -625 649
+rect 625 587 659 649
+rect -513 547 -497 581
+rect -463 547 -447 581
+rect -321 547 -305 581
+rect -271 547 -255 581
+rect -129 547 -113 581
+rect -79 547 -63 581
+rect 63 547 79 581
+rect 113 547 129 581
+rect 255 547 271 581
+rect 305 547 321 581
+rect 447 547 463 581
+rect 497 547 513 581
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect -417 37 -401 71
+rect -367 37 -351 71
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 159 37 175 71
+rect 209 37 225 71
+rect 351 37 367 71
+rect 401 37 417 71
+rect -417 -71 -401 -37
+rect -367 -71 -351 -37
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect 351 -71 367 -37
+rect 401 -71 417 -37
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect -513 -581 -497 -547
+rect -463 -581 -447 -547
+rect -321 -581 -305 -547
+rect -271 -581 -255 -547
+rect -129 -581 -113 -547
+rect -79 -581 -63 -547
+rect 63 -581 79 -547
+rect 113 -581 129 -547
+rect 255 -581 271 -547
+rect 305 -581 321 -547
+rect 447 -581 463 -547
+rect 497 -581 513 -547
+rect -659 -649 -625 -587
+rect 625 -649 659 -587
+rect -659 -683 -563 -649
+rect 563 -683 659 -649
+<< viali >>
+rect -497 547 -463 581
+rect -305 547 -271 581
+rect -113 547 -79 581
+rect 79 547 113 581
+rect 271 547 305 581
+rect 463 547 497 581
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect -401 37 -367 71
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect 367 37 401 71
+rect -401 -71 -367 -37
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect 367 -71 401 -37
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect -497 -581 -463 -547
+rect -305 -581 -271 -547
+rect -113 -581 -79 -547
+rect 79 -581 113 -547
+rect 271 -581 305 -547
+rect 463 -581 497 -547
+<< metal1 >>
+rect -509 581 -451 587
+rect -509 547 -497 581
+rect -463 547 -451 581
+rect -509 541 -451 547
+rect -317 581 -259 587
+rect -317 547 -305 581
+rect -271 547 -259 581
+rect -317 541 -259 547
+rect -125 581 -67 587
+rect -125 547 -113 581
+rect -79 547 -67 581
+rect -125 541 -67 547
+rect 67 581 125 587
+rect 67 547 79 581
+rect 113 547 125 581
+rect 67 541 125 547
+rect 259 581 317 587
+rect 259 547 271 581
+rect 305 547 317 581
+rect 259 541 317 547
+rect 451 581 509 587
+rect 451 547 463 581
+rect 497 547 509 581
+rect 451 541 509 547
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect -413 71 -355 77
+rect -413 37 -401 71
+rect -367 37 -355 71
+rect -413 31 -355 37
+rect -221 71 -163 77
+rect -221 37 -209 71
+rect -175 37 -163 71
+rect -221 31 -163 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 163 71 221 77
+rect 163 37 175 71
+rect 209 37 221 71
+rect 163 31 221 37
+rect 355 71 413 77
+rect 355 37 367 71
+rect 401 37 413 71
+rect 355 31 413 37
+rect -413 -37 -355 -31
+rect -413 -71 -401 -37
+rect -367 -71 -355 -37
+rect -413 -77 -355 -71
+rect -221 -37 -163 -31
+rect -221 -71 -209 -37
+rect -175 -71 -163 -37
+rect -221 -77 -163 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 163 -37 221 -31
+rect 163 -71 175 -37
+rect 209 -71 221 -37
+rect 163 -77 221 -71
+rect 355 -37 413 -31
+rect 355 -71 367 -37
+rect 401 -71 413 -37
+rect 355 -77 413 -71
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect -509 -547 -451 -541
+rect -509 -581 -497 -547
+rect -463 -581 -451 -547
+rect -509 -587 -451 -581
+rect -317 -547 -259 -541
+rect -317 -581 -305 -547
+rect -271 -581 -259 -547
+rect -317 -587 -259 -581
+rect -125 -547 -67 -541
+rect -125 -581 -113 -547
+rect -79 -581 -67 -547
+rect -125 -587 -67 -581
+rect 67 -547 125 -541
+rect 67 -581 79 -547
+rect 113 -581 125 -547
+rect 67 -587 125 -581
+rect 259 -547 317 -541
+rect 259 -581 271 -547
+rect 305 -581 317 -547
+rect 259 -587 317 -581
+rect 451 -547 509 -541
+rect 451 -581 463 -547
+rect 497 -581 509 -547
+rect 451 -587 509 -581
+<< properties >>
+string FIXED_BBOX -642 -666 642 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 11 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_lvt_3NMJLQ.mag b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_3NMJLQ.mag
new file mode 100644
index 0000000..1b130a1
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_3NMJLQ.mag
@@ -0,0 +1,2767 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646299314
+<< error_p >>
+rect -2141 581 -2083 587
+rect -1949 581 -1891 587
+rect -1757 581 -1699 587
+rect -1565 581 -1507 587
+rect -1373 581 -1315 587
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect 1315 581 1373 587
+rect 1507 581 1565 587
+rect 1699 581 1757 587
+rect 1891 581 1949 587
+rect 2083 581 2141 587
+rect -2141 547 -2129 581
+rect -1949 547 -1937 581
+rect -1757 547 -1745 581
+rect -1565 547 -1553 581
+rect -1373 547 -1361 581
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect 1315 547 1327 581
+rect 1507 547 1519 581
+rect 1699 547 1711 581
+rect 1891 547 1903 581
+rect 2083 547 2095 581
+rect -2141 541 -2083 547
+rect -1949 541 -1891 547
+rect -1757 541 -1699 547
+rect -1565 541 -1507 547
+rect -1373 541 -1315 547
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect 1315 541 1373 547
+rect 1507 541 1565 547
+rect 1699 541 1757 547
+rect 1891 541 1949 547
+rect 2083 541 2141 547
+rect -2045 71 -1987 77
+rect -1853 71 -1795 77
+rect -1661 71 -1603 77
+rect -1469 71 -1411 77
+rect -1277 71 -1219 77
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect 1219 71 1277 77
+rect 1411 71 1469 77
+rect 1603 71 1661 77
+rect 1795 71 1853 77
+rect 1987 71 2045 77
+rect -2045 37 -2033 71
+rect -1853 37 -1841 71
+rect -1661 37 -1649 71
+rect -1469 37 -1457 71
+rect -1277 37 -1265 71
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect 1219 37 1231 71
+rect 1411 37 1423 71
+rect 1603 37 1615 71
+rect 1795 37 1807 71
+rect 1987 37 1999 71
+rect -2045 31 -1987 37
+rect -1853 31 -1795 37
+rect -1661 31 -1603 37
+rect -1469 31 -1411 37
+rect -1277 31 -1219 37
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect 1219 31 1277 37
+rect 1411 31 1469 37
+rect 1603 31 1661 37
+rect 1795 31 1853 37
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -1853 -37 -1795 -31
+rect -1661 -37 -1603 -31
+rect -1469 -37 -1411 -31
+rect -1277 -37 -1219 -31
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect 1219 -37 1277 -31
+rect 1411 -37 1469 -31
+rect 1603 -37 1661 -31
+rect 1795 -37 1853 -31
+rect 1987 -37 2045 -31
+rect -2045 -71 -2033 -37
+rect -1853 -71 -1841 -37
+rect -1661 -71 -1649 -37
+rect -1469 -71 -1457 -37
+rect -1277 -71 -1265 -37
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect 1219 -71 1231 -37
+rect 1411 -71 1423 -37
+rect 1603 -71 1615 -37
+rect 1795 -71 1807 -37
+rect 1987 -71 1999 -37
+rect -2045 -77 -1987 -71
+rect -1853 -77 -1795 -71
+rect -1661 -77 -1603 -71
+rect -1469 -77 -1411 -71
+rect -1277 -77 -1219 -71
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect 1219 -77 1277 -71
+rect 1411 -77 1469 -71
+rect 1603 -77 1661 -71
+rect 1795 -77 1853 -71
+rect 1987 -77 2045 -71
+rect -2141 -547 -2083 -541
+rect -1949 -547 -1891 -541
+rect -1757 -547 -1699 -541
+rect -1565 -547 -1507 -541
+rect -1373 -547 -1315 -541
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect 1315 -547 1373 -541
+rect 1507 -547 1565 -541
+rect 1699 -547 1757 -541
+rect 1891 -547 1949 -541
+rect 2083 -547 2141 -541
+rect -2141 -581 -2129 -547
+rect -1949 -581 -1937 -547
+rect -1757 -581 -1745 -547
+rect -1565 -581 -1553 -547
+rect -1373 -581 -1361 -547
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect 1315 -581 1327 -547
+rect 1507 -581 1519 -547
+rect 1699 -581 1711 -547
+rect 1891 -581 1903 -547
+rect 2083 -581 2095 -547
+rect -2141 -587 -2083 -581
+rect -1949 -587 -1891 -581
+rect -1757 -587 -1699 -581
+rect -1565 -587 -1507 -581
+rect -1373 -587 -1315 -581
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+rect 1315 -587 1373 -581
+rect 1507 -587 1565 -581
+rect 1699 -587 1757 -581
+rect 1891 -587 1949 -581
+rect 2083 -587 2141 -581
+<< pwell >>
+rect -2327 -719 2327 719
+<< nmoslvt >>
+rect -2127 109 -2097 509
+rect -2031 109 -2001 509
+rect -1935 109 -1905 509
+rect -1839 109 -1809 509
+rect -1743 109 -1713 509
+rect -1647 109 -1617 509
+rect -1551 109 -1521 509
+rect -1455 109 -1425 509
+rect -1359 109 -1329 509
+rect -1263 109 -1233 509
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect 1233 109 1263 509
+rect 1329 109 1359 509
+rect 1425 109 1455 509
+rect 1521 109 1551 509
+rect 1617 109 1647 509
+rect 1713 109 1743 509
+rect 1809 109 1839 509
+rect 1905 109 1935 509
+rect 2001 109 2031 509
+rect 2097 109 2127 509
+rect -2127 -509 -2097 -109
+rect -2031 -509 -2001 -109
+rect -1935 -509 -1905 -109
+rect -1839 -509 -1809 -109
+rect -1743 -509 -1713 -109
+rect -1647 -509 -1617 -109
+rect -1551 -509 -1521 -109
+rect -1455 -509 -1425 -109
+rect -1359 -509 -1329 -109
+rect -1263 -509 -1233 -109
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+rect 1233 -509 1263 -109
+rect 1329 -509 1359 -109
+rect 1425 -509 1455 -109
+rect 1521 -509 1551 -109
+rect 1617 -509 1647 -109
+rect 1713 -509 1743 -109
+rect 1809 -509 1839 -109
+rect 1905 -509 1935 -109
+rect 2001 -509 2031 -109
+rect 2097 -509 2127 -109
+<< ndiff >>
+rect -2189 497 -2127 509
+rect -2189 121 -2177 497
+rect -2143 121 -2127 497
+rect -2189 109 -2127 121
+rect -2097 497 -2031 509
+rect -2097 121 -2081 497
+rect -2047 121 -2031 497
+rect -2097 109 -2031 121
+rect -2001 497 -1935 509
+rect -2001 121 -1985 497
+rect -1951 121 -1935 497
+rect -2001 109 -1935 121
+rect -1905 497 -1839 509
+rect -1905 121 -1889 497
+rect -1855 121 -1839 497
+rect -1905 109 -1839 121
+rect -1809 497 -1743 509
+rect -1809 121 -1793 497
+rect -1759 121 -1743 497
+rect -1809 109 -1743 121
+rect -1713 497 -1647 509
+rect -1713 121 -1697 497
+rect -1663 121 -1647 497
+rect -1713 109 -1647 121
+rect -1617 497 -1551 509
+rect -1617 121 -1601 497
+rect -1567 121 -1551 497
+rect -1617 109 -1551 121
+rect -1521 497 -1455 509
+rect -1521 121 -1505 497
+rect -1471 121 -1455 497
+rect -1521 109 -1455 121
+rect -1425 497 -1359 509
+rect -1425 121 -1409 497
+rect -1375 121 -1359 497
+rect -1425 109 -1359 121
+rect -1329 497 -1263 509
+rect -1329 121 -1313 497
+rect -1279 121 -1263 497
+rect -1329 109 -1263 121
+rect -1233 497 -1167 509
+rect -1233 121 -1217 497
+rect -1183 121 -1167 497
+rect -1233 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1233 509
+rect 1167 121 1183 497
+rect 1217 121 1233 497
+rect 1167 109 1233 121
+rect 1263 497 1329 509
+rect 1263 121 1279 497
+rect 1313 121 1329 497
+rect 1263 109 1329 121
+rect 1359 497 1425 509
+rect 1359 121 1375 497
+rect 1409 121 1425 497
+rect 1359 109 1425 121
+rect 1455 497 1521 509
+rect 1455 121 1471 497
+rect 1505 121 1521 497
+rect 1455 109 1521 121
+rect 1551 497 1617 509
+rect 1551 121 1567 497
+rect 1601 121 1617 497
+rect 1551 109 1617 121
+rect 1647 497 1713 509
+rect 1647 121 1663 497
+rect 1697 121 1713 497
+rect 1647 109 1713 121
+rect 1743 497 1809 509
+rect 1743 121 1759 497
+rect 1793 121 1809 497
+rect 1743 109 1809 121
+rect 1839 497 1905 509
+rect 1839 121 1855 497
+rect 1889 121 1905 497
+rect 1839 109 1905 121
+rect 1935 497 2001 509
+rect 1935 121 1951 497
+rect 1985 121 2001 497
+rect 1935 109 2001 121
+rect 2031 497 2097 509
+rect 2031 121 2047 497
+rect 2081 121 2097 497
+rect 2031 109 2097 121
+rect 2127 497 2189 509
+rect 2127 121 2143 497
+rect 2177 121 2189 497
+rect 2127 109 2189 121
+rect -2189 -121 -2127 -109
+rect -2189 -497 -2177 -121
+rect -2143 -497 -2127 -121
+rect -2189 -509 -2127 -497
+rect -2097 -121 -2031 -109
+rect -2097 -497 -2081 -121
+rect -2047 -497 -2031 -121
+rect -2097 -509 -2031 -497
+rect -2001 -121 -1935 -109
+rect -2001 -497 -1985 -121
+rect -1951 -497 -1935 -121
+rect -2001 -509 -1935 -497
+rect -1905 -121 -1839 -109
+rect -1905 -497 -1889 -121
+rect -1855 -497 -1839 -121
+rect -1905 -509 -1839 -497
+rect -1809 -121 -1743 -109
+rect -1809 -497 -1793 -121
+rect -1759 -497 -1743 -121
+rect -1809 -509 -1743 -497
+rect -1713 -121 -1647 -109
+rect -1713 -497 -1697 -121
+rect -1663 -497 -1647 -121
+rect -1713 -509 -1647 -497
+rect -1617 -121 -1551 -109
+rect -1617 -497 -1601 -121
+rect -1567 -497 -1551 -121
+rect -1617 -509 -1551 -497
+rect -1521 -121 -1455 -109
+rect -1521 -497 -1505 -121
+rect -1471 -497 -1455 -121
+rect -1521 -509 -1455 -497
+rect -1425 -121 -1359 -109
+rect -1425 -497 -1409 -121
+rect -1375 -497 -1359 -121
+rect -1425 -509 -1359 -497
+rect -1329 -121 -1263 -109
+rect -1329 -497 -1313 -121
+rect -1279 -497 -1263 -121
+rect -1329 -509 -1263 -497
+rect -1233 -121 -1167 -109
+rect -1233 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1233 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1233 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1233 -121
+rect 1167 -509 1233 -497
+rect 1263 -121 1329 -109
+rect 1263 -497 1279 -121
+rect 1313 -497 1329 -121
+rect 1263 -509 1329 -497
+rect 1359 -121 1425 -109
+rect 1359 -497 1375 -121
+rect 1409 -497 1425 -121
+rect 1359 -509 1425 -497
+rect 1455 -121 1521 -109
+rect 1455 -497 1471 -121
+rect 1505 -497 1521 -121
+rect 1455 -509 1521 -497
+rect 1551 -121 1617 -109
+rect 1551 -497 1567 -121
+rect 1601 -497 1617 -121
+rect 1551 -509 1617 -497
+rect 1647 -121 1713 -109
+rect 1647 -497 1663 -121
+rect 1697 -497 1713 -121
+rect 1647 -509 1713 -497
+rect 1743 -121 1809 -109
+rect 1743 -497 1759 -121
+rect 1793 -497 1809 -121
+rect 1743 -509 1809 -497
+rect 1839 -121 1905 -109
+rect 1839 -497 1855 -121
+rect 1889 -497 1905 -121
+rect 1839 -509 1905 -497
+rect 1935 -121 2001 -109
+rect 1935 -497 1951 -121
+rect 1985 -497 2001 -121
+rect 1935 -509 2001 -497
+rect 2031 -121 2097 -109
+rect 2031 -497 2047 -121
+rect 2081 -497 2097 -121
+rect 2031 -509 2097 -497
+rect 2127 -121 2189 -109
+rect 2127 -497 2143 -121
+rect 2177 -497 2189 -121
+rect 2127 -509 2189 -497
+<< ndiffc >>
+rect -2177 121 -2143 497
+rect -2081 121 -2047 497
+rect -1985 121 -1951 497
+rect -1889 121 -1855 497
+rect -1793 121 -1759 497
+rect -1697 121 -1663 497
+rect -1601 121 -1567 497
+rect -1505 121 -1471 497
+rect -1409 121 -1375 497
+rect -1313 121 -1279 497
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect 1279 121 1313 497
+rect 1375 121 1409 497
+rect 1471 121 1505 497
+rect 1567 121 1601 497
+rect 1663 121 1697 497
+rect 1759 121 1793 497
+rect 1855 121 1889 497
+rect 1951 121 1985 497
+rect 2047 121 2081 497
+rect 2143 121 2177 497
+rect -2177 -497 -2143 -121
+rect -2081 -497 -2047 -121
+rect -1985 -497 -1951 -121
+rect -1889 -497 -1855 -121
+rect -1793 -497 -1759 -121
+rect -1697 -497 -1663 -121
+rect -1601 -497 -1567 -121
+rect -1505 -497 -1471 -121
+rect -1409 -497 -1375 -121
+rect -1313 -497 -1279 -121
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect 1279 -497 1313 -121
+rect 1375 -497 1409 -121
+rect 1471 -497 1505 -121
+rect 1567 -497 1601 -121
+rect 1663 -497 1697 -121
+rect 1759 -497 1793 -121
+rect 1855 -497 1889 -121
+rect 1951 -497 1985 -121
+rect 2047 -497 2081 -121
+rect 2143 -497 2177 -121
+<< psubdiff >>
+rect -2291 649 -2195 683
+rect 2195 649 2291 683
+rect -2291 587 -2257 649
+rect 2257 587 2291 649
+rect -2291 -649 -2257 -587
+rect 2257 -649 2291 -587
+rect -2291 -683 -2195 -649
+rect 2195 -683 2291 -649
+<< psubdiffcont >>
+rect -2195 649 2195 683
+rect -2291 -587 -2257 587
+rect 2257 -587 2291 587
+rect -2195 -683 2195 -649
+<< poly >>
+rect -2145 581 -2079 597
+rect -2145 547 -2129 581
+rect -2095 547 -2079 581
+rect -2145 531 -2079 547
+rect -1953 581 -1887 597
+rect -1953 547 -1937 581
+rect -1903 547 -1887 581
+rect -2127 509 -2097 531
+rect -2031 509 -2001 535
+rect -1953 531 -1887 547
+rect -1761 581 -1695 597
+rect -1761 547 -1745 581
+rect -1711 547 -1695 581
+rect -1935 509 -1905 531
+rect -1839 509 -1809 535
+rect -1761 531 -1695 547
+rect -1569 581 -1503 597
+rect -1569 547 -1553 581
+rect -1519 547 -1503 581
+rect -1743 509 -1713 531
+rect -1647 509 -1617 535
+rect -1569 531 -1503 547
+rect -1377 581 -1311 597
+rect -1377 547 -1361 581
+rect -1327 547 -1311 581
+rect -1551 509 -1521 531
+rect -1455 509 -1425 535
+rect -1377 531 -1311 547
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1359 509 -1329 531
+rect -1263 509 -1233 535
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1311 581 1377 597
+rect 1311 547 1327 581
+rect 1361 547 1377 581
+rect 1137 509 1167 531
+rect 1233 509 1263 535
+rect 1311 531 1377 547
+rect 1503 581 1569 597
+rect 1503 547 1519 581
+rect 1553 547 1569 581
+rect 1329 509 1359 531
+rect 1425 509 1455 535
+rect 1503 531 1569 547
+rect 1695 581 1761 597
+rect 1695 547 1711 581
+rect 1745 547 1761 581
+rect 1521 509 1551 531
+rect 1617 509 1647 535
+rect 1695 531 1761 547
+rect 1887 581 1953 597
+rect 1887 547 1903 581
+rect 1937 547 1953 581
+rect 1713 509 1743 531
+rect 1809 509 1839 535
+rect 1887 531 1953 547
+rect 2079 581 2145 597
+rect 2079 547 2095 581
+rect 2129 547 2145 581
+rect 1905 509 1935 531
+rect 2001 509 2031 535
+rect 2079 531 2145 547
+rect 2097 509 2127 531
+rect -2127 83 -2097 109
+rect -2031 87 -2001 109
+rect -2049 71 -1983 87
+rect -1935 83 -1905 109
+rect -1839 87 -1809 109
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -2049 21 -1983 37
+rect -1857 71 -1791 87
+rect -1743 83 -1713 109
+rect -1647 87 -1617 109
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1857 21 -1791 37
+rect -1665 71 -1599 87
+rect -1551 83 -1521 109
+rect -1455 87 -1425 109
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1665 21 -1599 37
+rect -1473 71 -1407 87
+rect -1359 83 -1329 109
+rect -1263 87 -1233 109
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1473 21 -1407 37
+rect -1281 71 -1215 87
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1281 21 -1215 37
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1233 87 1263 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect 1215 71 1281 87
+rect 1329 83 1359 109
+rect 1425 87 1455 109
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1215 21 1281 37
+rect 1407 71 1473 87
+rect 1521 83 1551 109
+rect 1617 87 1647 109
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1407 21 1473 37
+rect 1599 71 1665 87
+rect 1713 83 1743 109
+rect 1809 87 1839 109
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1599 21 1665 37
+rect 1791 71 1857 87
+rect 1905 83 1935 109
+rect 2001 87 2031 109
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1791 21 1857 37
+rect 1983 71 2049 87
+rect 2097 83 2127 109
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect 1983 21 2049 37
+rect -2049 -37 -1983 -21
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -2127 -109 -2097 -83
+rect -2049 -87 -1983 -71
+rect -1857 -37 -1791 -21
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -2031 -109 -2001 -87
+rect -1935 -109 -1905 -83
+rect -1857 -87 -1791 -71
+rect -1665 -37 -1599 -21
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1839 -109 -1809 -87
+rect -1743 -109 -1713 -83
+rect -1665 -87 -1599 -71
+rect -1473 -37 -1407 -21
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1647 -109 -1617 -87
+rect -1551 -109 -1521 -83
+rect -1473 -87 -1407 -71
+rect -1281 -37 -1215 -21
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1455 -109 -1425 -87
+rect -1359 -109 -1329 -83
+rect -1281 -87 -1215 -71
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1263 -109 -1233 -87
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1215 -37 1281 -21
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect 1215 -87 1281 -71
+rect 1407 -37 1473 -21
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1233 -109 1263 -87
+rect 1329 -109 1359 -83
+rect 1407 -87 1473 -71
+rect 1599 -37 1665 -21
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1425 -109 1455 -87
+rect 1521 -109 1551 -83
+rect 1599 -87 1665 -71
+rect 1791 -37 1857 -21
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1617 -109 1647 -87
+rect 1713 -109 1743 -83
+rect 1791 -87 1857 -71
+rect 1983 -37 2049 -21
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect 1809 -109 1839 -87
+rect 1905 -109 1935 -83
+rect 1983 -87 2049 -71
+rect 2001 -109 2031 -87
+rect 2097 -109 2127 -83
+rect -2127 -531 -2097 -509
+rect -2145 -547 -2079 -531
+rect -2031 -535 -2001 -509
+rect -1935 -531 -1905 -509
+rect -2145 -581 -2129 -547
+rect -2095 -581 -2079 -547
+rect -2145 -597 -2079 -581
+rect -1953 -547 -1887 -531
+rect -1839 -535 -1809 -509
+rect -1743 -531 -1713 -509
+rect -1953 -581 -1937 -547
+rect -1903 -581 -1887 -547
+rect -1953 -597 -1887 -581
+rect -1761 -547 -1695 -531
+rect -1647 -535 -1617 -509
+rect -1551 -531 -1521 -509
+rect -1761 -581 -1745 -547
+rect -1711 -581 -1695 -547
+rect -1761 -597 -1695 -581
+rect -1569 -547 -1503 -531
+rect -1455 -535 -1425 -509
+rect -1359 -531 -1329 -509
+rect -1569 -581 -1553 -547
+rect -1519 -581 -1503 -547
+rect -1569 -597 -1503 -581
+rect -1377 -547 -1311 -531
+rect -1263 -535 -1233 -509
+rect -1167 -531 -1137 -509
+rect -1377 -581 -1361 -547
+rect -1327 -581 -1311 -547
+rect -1377 -597 -1311 -581
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1233 -535 1263 -509
+rect 1329 -531 1359 -509
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+rect 1311 -547 1377 -531
+rect 1425 -535 1455 -509
+rect 1521 -531 1551 -509
+rect 1311 -581 1327 -547
+rect 1361 -581 1377 -547
+rect 1311 -597 1377 -581
+rect 1503 -547 1569 -531
+rect 1617 -535 1647 -509
+rect 1713 -531 1743 -509
+rect 1503 -581 1519 -547
+rect 1553 -581 1569 -547
+rect 1503 -597 1569 -581
+rect 1695 -547 1761 -531
+rect 1809 -535 1839 -509
+rect 1905 -531 1935 -509
+rect 1695 -581 1711 -547
+rect 1745 -581 1761 -547
+rect 1695 -597 1761 -581
+rect 1887 -547 1953 -531
+rect 2001 -535 2031 -509
+rect 2097 -531 2127 -509
+rect 1887 -581 1903 -547
+rect 1937 -581 1953 -547
+rect 1887 -597 1953 -581
+rect 2079 -547 2145 -531
+rect 2079 -581 2095 -547
+rect 2129 -581 2145 -547
+rect 2079 -597 2145 -581
+<< polycont >>
+rect -2129 547 -2095 581
+rect -1937 547 -1903 581
+rect -1745 547 -1711 581
+rect -1553 547 -1519 581
+rect -1361 547 -1327 581
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect 1327 547 1361 581
+rect 1519 547 1553 581
+rect 1711 547 1745 581
+rect 1903 547 1937 581
+rect 2095 547 2129 581
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2129 -581 -2095 -547
+rect -1937 -581 -1903 -547
+rect -1745 -581 -1711 -547
+rect -1553 -581 -1519 -547
+rect -1361 -581 -1327 -547
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+rect 1327 -581 1361 -547
+rect 1519 -581 1553 -547
+rect 1711 -581 1745 -547
+rect 1903 -581 1937 -547
+rect 2095 -581 2129 -547
+<< locali >>
+rect -2291 649 -2195 683
+rect 2195 649 2291 683
+rect -2291 587 -2257 649
+rect 2257 587 2291 649
+rect -2145 547 -2129 581
+rect -2095 547 -2079 581
+rect -1953 547 -1937 581
+rect -1903 547 -1887 581
+rect -1761 547 -1745 581
+rect -1711 547 -1695 581
+rect -1569 547 -1553 581
+rect -1519 547 -1503 581
+rect -1377 547 -1361 581
+rect -1327 547 -1311 581
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 1311 547 1327 581
+rect 1361 547 1377 581
+rect 1503 547 1519 581
+rect 1553 547 1569 581
+rect 1695 547 1711 581
+rect 1745 547 1761 581
+rect 1887 547 1903 581
+rect 1937 547 1953 581
+rect 2079 547 2095 581
+rect 2129 547 2145 581
+rect -2177 497 -2143 513
+rect -2177 105 -2143 121
+rect -2081 497 -2047 513
+rect -2081 105 -2047 121
+rect -1985 497 -1951 513
+rect -1985 105 -1951 121
+rect -1889 497 -1855 513
+rect -1889 105 -1855 121
+rect -1793 497 -1759 513
+rect -1793 105 -1759 121
+rect -1697 497 -1663 513
+rect -1697 105 -1663 121
+rect -1601 497 -1567 513
+rect -1601 105 -1567 121
+rect -1505 497 -1471 513
+rect -1505 105 -1471 121
+rect -1409 497 -1375 513
+rect -1409 105 -1375 121
+rect -1313 497 -1279 513
+rect -1313 105 -1279 121
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect 1279 497 1313 513
+rect 1279 105 1313 121
+rect 1375 497 1409 513
+rect 1375 105 1409 121
+rect 1471 497 1505 513
+rect 1471 105 1505 121
+rect 1567 497 1601 513
+rect 1567 105 1601 121
+rect 1663 497 1697 513
+rect 1663 105 1697 121
+rect 1759 497 1793 513
+rect 1759 105 1793 121
+rect 1855 497 1889 513
+rect 1855 105 1889 121
+rect 1951 497 1985 513
+rect 1951 105 1985 121
+rect 2047 497 2081 513
+rect 2047 105 2081 121
+rect 2143 497 2177 513
+rect 2143 105 2177 121
+rect -2049 37 -2033 71
+rect -1999 37 -1983 71
+rect -1857 37 -1841 71
+rect -1807 37 -1791 71
+rect -1665 37 -1649 71
+rect -1615 37 -1599 71
+rect -1473 37 -1457 71
+rect -1423 37 -1407 71
+rect -1281 37 -1265 71
+rect -1231 37 -1215 71
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1215 37 1231 71
+rect 1265 37 1281 71
+rect 1407 37 1423 71
+rect 1457 37 1473 71
+rect 1599 37 1615 71
+rect 1649 37 1665 71
+rect 1791 37 1807 71
+rect 1841 37 1857 71
+rect 1983 37 1999 71
+rect 2033 37 2049 71
+rect -2049 -71 -2033 -37
+rect -1999 -71 -1983 -37
+rect -1857 -71 -1841 -37
+rect -1807 -71 -1791 -37
+rect -1665 -71 -1649 -37
+rect -1615 -71 -1599 -37
+rect -1473 -71 -1457 -37
+rect -1423 -71 -1407 -37
+rect -1281 -71 -1265 -37
+rect -1231 -71 -1215 -37
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 1215 -71 1231 -37
+rect 1265 -71 1281 -37
+rect 1407 -71 1423 -37
+rect 1457 -71 1473 -37
+rect 1599 -71 1615 -37
+rect 1649 -71 1665 -37
+rect 1791 -71 1807 -37
+rect 1841 -71 1857 -37
+rect 1983 -71 1999 -37
+rect 2033 -71 2049 -37
+rect -2177 -121 -2143 -105
+rect -2177 -513 -2143 -497
+rect -2081 -121 -2047 -105
+rect -2081 -513 -2047 -497
+rect -1985 -121 -1951 -105
+rect -1985 -513 -1951 -497
+rect -1889 -121 -1855 -105
+rect -1889 -513 -1855 -497
+rect -1793 -121 -1759 -105
+rect -1793 -513 -1759 -497
+rect -1697 -121 -1663 -105
+rect -1697 -513 -1663 -497
+rect -1601 -121 -1567 -105
+rect -1601 -513 -1567 -497
+rect -1505 -121 -1471 -105
+rect -1505 -513 -1471 -497
+rect -1409 -121 -1375 -105
+rect -1409 -513 -1375 -497
+rect -1313 -121 -1279 -105
+rect -1313 -513 -1279 -497
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect 1279 -121 1313 -105
+rect 1279 -513 1313 -497
+rect 1375 -121 1409 -105
+rect 1375 -513 1409 -497
+rect 1471 -121 1505 -105
+rect 1471 -513 1505 -497
+rect 1567 -121 1601 -105
+rect 1567 -513 1601 -497
+rect 1663 -121 1697 -105
+rect 1663 -513 1697 -497
+rect 1759 -121 1793 -105
+rect 1759 -513 1793 -497
+rect 1855 -121 1889 -105
+rect 1855 -513 1889 -497
+rect 1951 -121 1985 -105
+rect 1951 -513 1985 -497
+rect 2047 -121 2081 -105
+rect 2047 -513 2081 -497
+rect 2143 -121 2177 -105
+rect 2143 -513 2177 -497
+rect -2145 -581 -2129 -547
+rect -2095 -581 -2079 -547
+rect -1953 -581 -1937 -547
+rect -1903 -581 -1887 -547
+rect -1761 -581 -1745 -547
+rect -1711 -581 -1695 -547
+rect -1569 -581 -1553 -547
+rect -1519 -581 -1503 -547
+rect -1377 -581 -1361 -547
+rect -1327 -581 -1311 -547
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1311 -581 1327 -547
+rect 1361 -581 1377 -547
+rect 1503 -581 1519 -547
+rect 1553 -581 1569 -547
+rect 1695 -581 1711 -547
+rect 1745 -581 1761 -547
+rect 1887 -581 1903 -547
+rect 1937 -581 1953 -547
+rect 2079 -581 2095 -547
+rect 2129 -581 2145 -547
+rect -2291 -649 -2257 -587
+rect 2257 -649 2291 -587
+rect -2291 -683 -2195 -649
+rect 2195 -683 2291 -649
+<< viali >>
+rect -2129 547 -2095 581
+rect -1937 547 -1903 581
+rect -1745 547 -1711 581
+rect -1553 547 -1519 581
+rect -1361 547 -1327 581
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect 1327 547 1361 581
+rect 1519 547 1553 581
+rect 1711 547 1745 581
+rect 1903 547 1937 581
+rect 2095 547 2129 581
+rect -2177 121 -2143 497
+rect -2081 121 -2047 497
+rect -1985 121 -1951 497
+rect -1889 121 -1855 497
+rect -1793 121 -1759 497
+rect -1697 121 -1663 497
+rect -1601 121 -1567 497
+rect -1505 121 -1471 497
+rect -1409 121 -1375 497
+rect -1313 121 -1279 497
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect 1279 121 1313 497
+rect 1375 121 1409 497
+rect 1471 121 1505 497
+rect 1567 121 1601 497
+rect 1663 121 1697 497
+rect 1759 121 1793 497
+rect 1855 121 1889 497
+rect 1951 121 1985 497
+rect 2047 121 2081 497
+rect 2143 121 2177 497
+rect -2033 37 -1999 71
+rect -1841 37 -1807 71
+rect -1649 37 -1615 71
+rect -1457 37 -1423 71
+rect -1265 37 -1231 71
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect 1231 37 1265 71
+rect 1423 37 1457 71
+rect 1615 37 1649 71
+rect 1807 37 1841 71
+rect 1999 37 2033 71
+rect -2033 -71 -1999 -37
+rect -1841 -71 -1807 -37
+rect -1649 -71 -1615 -37
+rect -1457 -71 -1423 -37
+rect -1265 -71 -1231 -37
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect 1231 -71 1265 -37
+rect 1423 -71 1457 -37
+rect 1615 -71 1649 -37
+rect 1807 -71 1841 -37
+rect 1999 -71 2033 -37
+rect -2177 -497 -2143 -121
+rect -2081 -497 -2047 -121
+rect -1985 -497 -1951 -121
+rect -1889 -497 -1855 -121
+rect -1793 -497 -1759 -121
+rect -1697 -497 -1663 -121
+rect -1601 -497 -1567 -121
+rect -1505 -497 -1471 -121
+rect -1409 -497 -1375 -121
+rect -1313 -497 -1279 -121
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect 1279 -497 1313 -121
+rect 1375 -497 1409 -121
+rect 1471 -497 1505 -121
+rect 1567 -497 1601 -121
+rect 1663 -497 1697 -121
+rect 1759 -497 1793 -121
+rect 1855 -497 1889 -121
+rect 1951 -497 1985 -121
+rect 2047 -497 2081 -121
+rect 2143 -497 2177 -121
+rect -2129 -581 -2095 -547
+rect -1937 -581 -1903 -547
+rect -1745 -581 -1711 -547
+rect -1553 -581 -1519 -547
+rect -1361 -581 -1327 -547
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+rect 1327 -581 1361 -547
+rect 1519 -581 1553 -547
+rect 1711 -581 1745 -547
+rect 1903 -581 1937 -547
+rect 2095 -581 2129 -547
+<< metal1 >>
+rect -2141 581 -2083 587
+rect -2141 547 -2129 581
+rect -2095 547 -2083 581
+rect -2141 541 -2083 547
+rect -1949 581 -1891 587
+rect -1949 547 -1937 581
+rect -1903 547 -1891 581
+rect -1949 541 -1891 547
+rect -1757 581 -1699 587
+rect -1757 547 -1745 581
+rect -1711 547 -1699 581
+rect -1757 541 -1699 547
+rect -1565 581 -1507 587
+rect -1565 547 -1553 581
+rect -1519 547 -1507 581
+rect -1565 541 -1507 547
+rect -1373 581 -1315 587
+rect -1373 547 -1361 581
+rect -1327 547 -1315 581
+rect -1373 541 -1315 547
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect 1315 581 1373 587
+rect 1315 547 1327 581
+rect 1361 547 1373 581
+rect 1315 541 1373 547
+rect 1507 581 1565 587
+rect 1507 547 1519 581
+rect 1553 547 1565 581
+rect 1507 541 1565 547
+rect 1699 581 1757 587
+rect 1699 547 1711 581
+rect 1745 547 1757 581
+rect 1699 541 1757 547
+rect 1891 581 1949 587
+rect 1891 547 1903 581
+rect 1937 547 1949 581
+rect 1891 541 1949 547
+rect 2083 581 2141 587
+rect 2083 547 2095 581
+rect 2129 547 2141 581
+rect 2083 541 2141 547
+rect -2183 497 -2137 509
+rect -2183 121 -2177 497
+rect -2143 121 -2137 497
+rect -2183 109 -2137 121
+rect -2087 497 -2041 509
+rect -2087 121 -2081 497
+rect -2047 121 -2041 497
+rect -2087 109 -2041 121
+rect -1991 497 -1945 509
+rect -1991 121 -1985 497
+rect -1951 121 -1945 497
+rect -1991 109 -1945 121
+rect -1895 497 -1849 509
+rect -1895 121 -1889 497
+rect -1855 121 -1849 497
+rect -1895 109 -1849 121
+rect -1799 497 -1753 509
+rect -1799 121 -1793 497
+rect -1759 121 -1753 497
+rect -1799 109 -1753 121
+rect -1703 497 -1657 509
+rect -1703 121 -1697 497
+rect -1663 121 -1657 497
+rect -1703 109 -1657 121
+rect -1607 497 -1561 509
+rect -1607 121 -1601 497
+rect -1567 121 -1561 497
+rect -1607 109 -1561 121
+rect -1511 497 -1465 509
+rect -1511 121 -1505 497
+rect -1471 121 -1465 497
+rect -1511 109 -1465 121
+rect -1415 497 -1369 509
+rect -1415 121 -1409 497
+rect -1375 121 -1369 497
+rect -1415 109 -1369 121
+rect -1319 497 -1273 509
+rect -1319 121 -1313 497
+rect -1279 121 -1273 497
+rect -1319 109 -1273 121
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect 1273 497 1319 509
+rect 1273 121 1279 497
+rect 1313 121 1319 497
+rect 1273 109 1319 121
+rect 1369 497 1415 509
+rect 1369 121 1375 497
+rect 1409 121 1415 497
+rect 1369 109 1415 121
+rect 1465 497 1511 509
+rect 1465 121 1471 497
+rect 1505 121 1511 497
+rect 1465 109 1511 121
+rect 1561 497 1607 509
+rect 1561 121 1567 497
+rect 1601 121 1607 497
+rect 1561 109 1607 121
+rect 1657 497 1703 509
+rect 1657 121 1663 497
+rect 1697 121 1703 497
+rect 1657 109 1703 121
+rect 1753 497 1799 509
+rect 1753 121 1759 497
+rect 1793 121 1799 497
+rect 1753 109 1799 121
+rect 1849 497 1895 509
+rect 1849 121 1855 497
+rect 1889 121 1895 497
+rect 1849 109 1895 121
+rect 1945 497 1991 509
+rect 1945 121 1951 497
+rect 1985 121 1991 497
+rect 1945 109 1991 121
+rect 2041 497 2087 509
+rect 2041 121 2047 497
+rect 2081 121 2087 497
+rect 2041 109 2087 121
+rect 2137 497 2183 509
+rect 2137 121 2143 497
+rect 2177 121 2183 497
+rect 2137 109 2183 121
+rect -2045 71 -1987 77
+rect -2045 37 -2033 71
+rect -1999 37 -1987 71
+rect -2045 31 -1987 37
+rect -1853 71 -1795 77
+rect -1853 37 -1841 71
+rect -1807 37 -1795 71
+rect -1853 31 -1795 37
+rect -1661 71 -1603 77
+rect -1661 37 -1649 71
+rect -1615 37 -1603 71
+rect -1661 31 -1603 37
+rect -1469 71 -1411 77
+rect -1469 37 -1457 71
+rect -1423 37 -1411 71
+rect -1469 31 -1411 37
+rect -1277 71 -1219 77
+rect -1277 37 -1265 71
+rect -1231 37 -1219 71
+rect -1277 31 -1219 37
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect 1219 71 1277 77
+rect 1219 37 1231 71
+rect 1265 37 1277 71
+rect 1219 31 1277 37
+rect 1411 71 1469 77
+rect 1411 37 1423 71
+rect 1457 37 1469 71
+rect 1411 31 1469 37
+rect 1603 71 1661 77
+rect 1603 37 1615 71
+rect 1649 37 1661 71
+rect 1603 31 1661 37
+rect 1795 71 1853 77
+rect 1795 37 1807 71
+rect 1841 37 1853 71
+rect 1795 31 1853 37
+rect 1987 71 2045 77
+rect 1987 37 1999 71
+rect 2033 37 2045 71
+rect 1987 31 2045 37
+rect -2045 -37 -1987 -31
+rect -2045 -71 -2033 -37
+rect -1999 -71 -1987 -37
+rect -2045 -77 -1987 -71
+rect -1853 -37 -1795 -31
+rect -1853 -71 -1841 -37
+rect -1807 -71 -1795 -37
+rect -1853 -77 -1795 -71
+rect -1661 -37 -1603 -31
+rect -1661 -71 -1649 -37
+rect -1615 -71 -1603 -37
+rect -1661 -77 -1603 -71
+rect -1469 -37 -1411 -31
+rect -1469 -71 -1457 -37
+rect -1423 -71 -1411 -37
+rect -1469 -77 -1411 -71
+rect -1277 -37 -1219 -31
+rect -1277 -71 -1265 -37
+rect -1231 -71 -1219 -37
+rect -1277 -77 -1219 -71
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect 1219 -37 1277 -31
+rect 1219 -71 1231 -37
+rect 1265 -71 1277 -37
+rect 1219 -77 1277 -71
+rect 1411 -37 1469 -31
+rect 1411 -71 1423 -37
+rect 1457 -71 1469 -37
+rect 1411 -77 1469 -71
+rect 1603 -37 1661 -31
+rect 1603 -71 1615 -37
+rect 1649 -71 1661 -37
+rect 1603 -77 1661 -71
+rect 1795 -37 1853 -31
+rect 1795 -71 1807 -37
+rect 1841 -71 1853 -37
+rect 1795 -77 1853 -71
+rect 1987 -37 2045 -31
+rect 1987 -71 1999 -37
+rect 2033 -71 2045 -37
+rect 1987 -77 2045 -71
+rect -2183 -121 -2137 -109
+rect -2183 -497 -2177 -121
+rect -2143 -497 -2137 -121
+rect -2183 -509 -2137 -497
+rect -2087 -121 -2041 -109
+rect -2087 -497 -2081 -121
+rect -2047 -497 -2041 -121
+rect -2087 -509 -2041 -497
+rect -1991 -121 -1945 -109
+rect -1991 -497 -1985 -121
+rect -1951 -497 -1945 -121
+rect -1991 -509 -1945 -497
+rect -1895 -121 -1849 -109
+rect -1895 -497 -1889 -121
+rect -1855 -497 -1849 -121
+rect -1895 -509 -1849 -497
+rect -1799 -121 -1753 -109
+rect -1799 -497 -1793 -121
+rect -1759 -497 -1753 -121
+rect -1799 -509 -1753 -497
+rect -1703 -121 -1657 -109
+rect -1703 -497 -1697 -121
+rect -1663 -497 -1657 -121
+rect -1703 -509 -1657 -497
+rect -1607 -121 -1561 -109
+rect -1607 -497 -1601 -121
+rect -1567 -497 -1561 -121
+rect -1607 -509 -1561 -497
+rect -1511 -121 -1465 -109
+rect -1511 -497 -1505 -121
+rect -1471 -497 -1465 -121
+rect -1511 -509 -1465 -497
+rect -1415 -121 -1369 -109
+rect -1415 -497 -1409 -121
+rect -1375 -497 -1369 -121
+rect -1415 -509 -1369 -497
+rect -1319 -121 -1273 -109
+rect -1319 -497 -1313 -121
+rect -1279 -497 -1273 -121
+rect -1319 -509 -1273 -497
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect 1273 -121 1319 -109
+rect 1273 -497 1279 -121
+rect 1313 -497 1319 -121
+rect 1273 -509 1319 -497
+rect 1369 -121 1415 -109
+rect 1369 -497 1375 -121
+rect 1409 -497 1415 -121
+rect 1369 -509 1415 -497
+rect 1465 -121 1511 -109
+rect 1465 -497 1471 -121
+rect 1505 -497 1511 -121
+rect 1465 -509 1511 -497
+rect 1561 -121 1607 -109
+rect 1561 -497 1567 -121
+rect 1601 -497 1607 -121
+rect 1561 -509 1607 -497
+rect 1657 -121 1703 -109
+rect 1657 -497 1663 -121
+rect 1697 -497 1703 -121
+rect 1657 -509 1703 -497
+rect 1753 -121 1799 -109
+rect 1753 -497 1759 -121
+rect 1793 -497 1799 -121
+rect 1753 -509 1799 -497
+rect 1849 -121 1895 -109
+rect 1849 -497 1855 -121
+rect 1889 -497 1895 -121
+rect 1849 -509 1895 -497
+rect 1945 -121 1991 -109
+rect 1945 -497 1951 -121
+rect 1985 -497 1991 -121
+rect 1945 -509 1991 -497
+rect 2041 -121 2087 -109
+rect 2041 -497 2047 -121
+rect 2081 -497 2087 -121
+rect 2041 -509 2087 -497
+rect 2137 -121 2183 -109
+rect 2137 -497 2143 -121
+rect 2177 -497 2183 -121
+rect 2137 -509 2183 -497
+rect -2141 -547 -2083 -541
+rect -2141 -581 -2129 -547
+rect -2095 -581 -2083 -547
+rect -2141 -587 -2083 -581
+rect -1949 -547 -1891 -541
+rect -1949 -581 -1937 -547
+rect -1903 -581 -1891 -547
+rect -1949 -587 -1891 -581
+rect -1757 -547 -1699 -541
+rect -1757 -581 -1745 -547
+rect -1711 -581 -1699 -547
+rect -1757 -587 -1699 -581
+rect -1565 -547 -1507 -541
+rect -1565 -581 -1553 -547
+rect -1519 -581 -1507 -547
+rect -1565 -587 -1507 -581
+rect -1373 -547 -1315 -541
+rect -1373 -581 -1361 -547
+rect -1327 -581 -1315 -547
+rect -1373 -587 -1315 -581
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+rect 1315 -547 1373 -541
+rect 1315 -581 1327 -547
+rect 1361 -581 1373 -547
+rect 1315 -587 1373 -581
+rect 1507 -547 1565 -541
+rect 1507 -581 1519 -547
+rect 1553 -581 1565 -547
+rect 1507 -587 1565 -581
+rect 1699 -547 1757 -541
+rect 1699 -581 1711 -547
+rect 1745 -581 1757 -547
+rect 1699 -587 1757 -581
+rect 1891 -547 1949 -541
+rect 1891 -581 1903 -547
+rect 1937 -581 1949 -547
+rect 1891 -587 1949 -581
+rect 2083 -547 2141 -541
+rect 2083 -581 2095 -547
+rect 2129 -581 2141 -547
+rect 2083 -587 2141 -581
+<< properties >>
+string FIXED_BBOX -2274 -666 2274 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 45 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__nfet_01v8_lvt_C46MKN.ext b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_C46MKN.ext
new file mode 100644
index 0000000..fc37c6e
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__nfet_01v8_lvt_C46MKN.ext
@@ -0,0 +1,639 @@
+timestamp 1646829484
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1023_n509#" 929 198.942 1023 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_927_n509#" 882 107.142 927 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_n509#" 882 80.1416 831 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_n509#" 882 67.2286 735 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_n509#" 882 30.6416 639 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_n509#" 882 30.6416 543 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n509#" 882 30.6416 447 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n509#" 882 30.6416 351 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n509#" 882 30.6416 255 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n509#" 882 30.6416 159 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n509#" 882 30.6416 63 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n509#" 882 30.6416 -33 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n509#" 882 30.6416 -129 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n509#" 882 30.6416 -225 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n509#" 882 30.6416 -321 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n509#" 882 30.6416 -417 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n509#" 882 30.6416 -513 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n509#" 882 30.6416 -609 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n509#" 882 30.6416 -705 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n509#" 882 67.2286 -801 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n509#" 882 80.1416 -897 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n509#" 882 107.142 -993 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1085_n509#" 929 198.942 -1085 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_n597#" 837 182.223 879 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_975_n87#" 837 154.817 975 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_n597#" 837 176.829 687 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_783_n87#" 837 148.49 783 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_n597#" 837 176.829 495 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_n87#" 837 144.799 591 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_n597#" 837 176.829 303 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_n87#" 837 144.799 399 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_n597#" 837 176.829 111 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n87#" 837 144.799 207 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n597#" 837 176.829 -81 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n87#" 837 144.799 15 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n597#" 837 176.829 -273 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n87#" 837 144.799 -177 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n597#" 837 176.829 -465 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n87#" 837 144.799 -369 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n597#" 837 176.829 -657 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n87#" 837 144.799 -561 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n597#" 837 180.52 -849 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n87#" 837 144.799 -753 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n597#" 837 186.847 -1041 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n87#" 837 150.194 -945 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1023_109#" 929 198.942 1023 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_927_109#" 882 107.142 927 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_831_109#" 882 80.1416 831 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_735_109#" 882 67.2286 735 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_639_109#" 882 30.6416 639 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_543_109#" 882 30.6416 543 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_109#" 882 30.6416 447 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_109#" 882 30.6416 351 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_109#" 882 30.6416 255 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_109#" 882 30.6416 159 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_109#" 882 30.6416 63 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_109#" 882 30.6416 -33 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_109#" 882 30.6416 -129 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_109#" 882 30.6416 -225 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_109#" 882 30.6416 -321 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_109#" 882 30.6416 -417 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_109#" 882 30.6416 -513 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n609_109#" 882 30.6416 -609 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n705_109#" 882 30.6416 -705 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n801_109#" 882 67.2286 -801 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n897_109#" 882 80.1416 -897 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n993_109#" 882 107.142 -993 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1085_109#" 929 198.942 -1085 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_21#" 837 154.817 975 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_783_21#" 837 148.49 783 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_879_531#" 837 182.223 879 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_591_21#" 837 144.799 591 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_687_531#" 837 176.829 687 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_399_21#" 837 144.799 399 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_531#" 837 176.829 495 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_21#" 837 144.799 207 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_531#" 837 176.829 303 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_21#" 837 144.799 15 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_531#" 837 176.829 111 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_21#" 837 144.799 -177 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_531#" 837 176.829 -81 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_21#" 837 144.799 -369 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_531#" 837 176.829 -273 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_21#" 837 144.799 -561 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_531#" 837 176.829 -465 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n753_21#" 837 144.799 -753 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n657_531#" 837 176.829 -657 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n945_21#" 837 150.194 -945 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n849_531#" 837 180.52 -849 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_531#" 837 186.847 -1041 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1187_n683#" 0 0 -1187 -683 ppd 0 0 0 0 0 0 0 0 0 0 249696 14688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 249696 14688 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_351_n509#" "a_399_21#" 1.7505
+cap "a_351_109#" "a_735_109#" 91.723
+cap "a_n417_n509#" "a_n129_n509#" 127.388
+cap "a_n945_21#" "a_n993_109#" 7.56618
+cap "a_207_21#" "a_591_21#" 17.7702
+cap "a_351_n509#" "a_447_n509#" 577.161
+cap "a_255_n509#" "a_543_n509#" 127.388
+cap "a_639_n509#" "a_735_n509#" 577.161
+cap "a_543_n509#" "a_159_n509#" 91.723
+cap "a_n801_n509#" "a_n417_n509#" 91.723
+cap "a_n1041_n597#" "a_n945_n87#" 19.1667
+cap "a_n33_109#" "a_351_109#" 91.723
+cap "a_975_21#" "a_687_531#" 4.68915
+cap "a_n465_n597#" "a_n657_n597#" 43.215
+cap "a_n129_109#" "a_255_109#" 91.723
+cap "a_n753_n87#" "a_n657_n597#" 19.1667
+cap "a_n753_n87#" "a_n705_n509#" 7.56618
+cap "a_303_n597#" "a_111_n597#" 43.215
+cap "a_n561_21#" "a_n369_21#" 43.215
+cap "a_639_n509#" "a_447_n509#" 208.503
+cap "a_1023_n509#" "a_975_n87#" 7.56618
+cap "a_n273_n597#" "a_n561_n87#" 4.68915
+cap "a_447_109#" "a_255_109#" 208.503
+cap "a_n609_109#" "a_n705_109#" 577.161
+cap "a_n561_21#" "a_n945_21#" 17.7702
+cap "a_n1041_531#" "a_n849_531#" 43.215
+cap "a_447_109#" "a_831_109#" 91.723
+cap "a_303_531#" "a_255_109#" 7.56618
+cap "a_591_n87#" "a_975_n87#" 17.7702
+cap "a_n993_109#" "a_n609_109#" 91.723
+cap "a_591_n87#" "a_687_n597#" 19.1667
+cap "a_495_n597#" "a_783_n87#" 4.68915
+cap "a_207_21#" "a_495_531#" 4.68915
+cap "a_n801_109#" "a_n849_531#" 7.56618
+cap "a_399_n87#" "a_783_n87#" 17.7702
+cap "a_n129_109#" "a_63_109#" 208.503
+cap "a_n465_n597#" "a_n849_n597#" 17.7702
+cap "a_n753_n87#" "a_n801_n509#" 7.56618
+cap "a_639_109#" "a_591_21#" 7.56618
+cap "a_n129_109#" "a_n129_n509#" 14.8383
+cap "a_n129_109#" "a_159_109#" 127.388
+cap "a_495_n597#" "a_543_n509#" 7.56618
+cap "a_n177_n87#" "a_n129_n509#" 7.56618
+cap "a_447_109#" "a_63_109#" 91.723
+cap "a_n513_109#" "a_n417_109#" 577.161
+cap "a_n177_n87#" "a_111_n597#" 4.68915
+cap "a_n753_n87#" "a_n849_n597#" 19.1667
+cap "a_63_n509#" "a_63_109#" 14.8383
+cap "a_n753_21#" "a_n465_531#" 4.68915
+cap "a_543_n509#" "a_591_21#" 1.7505
+cap "a_255_n509#" "a_351_n509#" 577.161
+cap "a_n33_n509#" "a_n81_n597#" 7.56618
+cap "a_63_109#" "a_n321_109#" 91.723
+cap "a_351_n509#" "a_159_n509#" 208.503
+cap "a_255_n509#" "a_207_n87#" 7.56618
+cap "a_159_109#" "a_447_109#" 127.388
+cap "a_n321_109#" "a_n369_21#" 7.56618
+cap "a_n369_n87#" "a_n417_109#" 1.7505
+cap "a_n561_21#" "a_n609_109#" 7.56618
+cap "a_63_n509#" "a_111_n597#" 7.56618
+cap "a_n1085_n509#" "a_n705_n509#" 91.723
+cap "a_159_n509#" "a_207_n87#" 7.56618
+cap "a_303_531#" "a_687_531#" 17.7702
+cap "a_n273_531#" "a_n561_21#" 4.68915
+cap "a_63_n509#" "a_n129_n509#" 208.503
+cap "a_927_109#" "a_879_531#" 7.56618
+cap "a_n513_n509#" "a_n561_n87#" 7.56618
+cap "a_879_n597#" "a_783_n87#" 19.1667
+cap "a_975_n87#" "a_687_n597#" 4.68915
+cap "a_1023_n509#" "a_927_n509#" 577.161
+cap "a_n225_n509#" "a_n273_n597#" 7.56618
+cap "a_447_109#" "a_543_109#" 577.161
+cap "a_783_21#" "a_591_21#" 43.215
+cap "a_n177_21#" "a_n369_21#" 43.215
+cap "a_255_n509#" "a_639_n509#" 91.723
+cap "a_159_n509#" "a_n225_n509#" 91.723
+cap "a_n177_21#" "a_n129_n509#" 1.7505
+cap "a_n897_n509#" "a_n897_109#" 14.8383
+cap "a_303_531#" "a_15_21#" 4.68915
+cap "a_15_21#" "a_63_n509#" 1.7505
+cap "a_n1085_109#" "a_n897_109#" 208.503
+cap "a_n417_109#" "a_n465_531#" 7.56618
+cap "a_447_109#" "a_399_21#" 7.56618
+cap "a_111_531#" "a_63_109#" 7.56618
+cap "a_303_531#" "a_399_21#" 19.1667
+cap "a_399_n87#" "a_351_109#" 1.7505
+cap "a_n993_n509#" "a_n897_n509#" 577.161
+cap "a_n1085_n509#" "a_n801_n509#" 127.388
+cap "a_447_109#" "a_447_n509#" 14.8383
+cap "a_n945_21#" "a_n849_531#" 19.1667
+cap "a_447_n509#" "a_63_n509#" 91.723
+cap "a_n513_109#" "a_n561_n87#" 1.7505
+cap "a_159_109#" "a_111_531#" 7.56618
+cap "a_111_531#" "a_111_n597#" 4.15663
+cap "a_n321_n509#" "a_n225_n509#" 577.161
+cap "a_n897_n509#" "a_n513_n509#" 91.723
+cap "a_n609_109#" "a_n321_109#" 127.388
+cap "a_n945_n87#" "a_n561_n87#" 17.7702
+cap "a_n225_109#" "a_63_109#" 127.388
+cap "a_n897_109#" "a_n705_109#" 208.503
+cap "a_n273_531#" "a_n321_109#" 7.56618
+cap "a_n993_109#" "a_n897_109#" 577.161
+cap "a_n369_n87#" "a_n561_n87#" 43.215
+cap "a_783_21#" "a_879_531#" 19.1667
+cap "a_495_531#" "a_783_21#" 4.68915
+cap "a_n177_21#" "a_15_21#" 43.215
+cap "a_n465_531#" "a_n657_531#" 43.215
+cap "a_n849_531#" "a_n849_n597#" 4.15663
+cap "a_831_n509#" "a_879_n597#" 7.56618
+cap "a_n321_n509#" "a_n417_n509#" 577.161
+cap "a_n225_n509#" "a_n513_n509#" 127.388
+cap "a_927_n509#" "a_975_n87#" 7.56618
+cap "a_495_n597#" "a_207_n87#" 4.68915
+cap "a_303_n597#" "a_255_n509#" 7.56618
+cap "a_399_n87#" "a_351_n509#" 7.56618
+cap "a_447_109#" "a_735_109#" 127.388
+cap "a_n129_109#" "a_n33_109#" 577.161
+cap "a_159_109#" "a_n225_109#" 91.723
+cap "a_399_n87#" "a_207_n87#" 43.215
+cap "a_n993_n509#" "a_n993_109#" 14.8383
+cap "a_n465_n597#" "a_n273_n597#" 43.215
+cap "a_n273_531#" "a_n177_21#" 19.1667
+cap "a_n513_n509#" "a_n417_n509#" 577.161
+cap "a_591_n87#" "a_543_109#" 1.7505
+cap "a_111_531#" "a_15_21#" 19.1667
+cap "a_1023_n509#" "a_735_n509#" 127.388
+cap "a_111_531#" "a_399_21#" 4.68915
+cap "a_639_n509#" "a_591_21#" 1.7505
+cap "a_n177_n87#" "a_n273_n597#" 19.1667
+cap "a_n273_531#" "a_111_531#" 17.7702
+cap "a_n897_n509#" "a_n945_n87#" 7.56618
+cap "a_n33_109#" "a_n321_109#" 127.388
+cap "a_63_109#" "a_15_n87#" 1.7505
+cap "a_n225_109#" "a_n609_109#" 91.723
+cap "a_n273_531#" "a_n225_109#" 7.56618
+cap "a_687_531#" "a_687_n597#" 4.15663
+cap "a_111_n597#" "a_15_n87#" 19.1667
+cap "a_207_n87#" "a_n81_n597#" 4.68915
+cap "a_975_21#" "a_591_21#" 17.7702
+cap "a_n945_21#" "a_n1041_531#" 19.1667
+cap "a_255_n509#" "a_63_n509#" 208.503
+cap "a_n561_21#" "a_n513_n509#" 1.7505
+cap "a_n513_109#" "a_n705_109#" 208.503
+cap "a_63_n509#" "a_159_n509#" 577.161
+cap "a_1023_109#" "a_927_109#" 577.161
+cap "a_n993_109#" "a_n945_n87#" 1.7505
+cap "a_n465_n597#" "a_n513_n509#" 7.56618
+cap "a_n369_n87#" "a_n417_n509#" 7.56618
+cap "a_n129_109#" "a_n81_531#" 7.56618
+cap "a_303_n597#" "a_495_n597#" 43.215
+cap "a_735_n509#" "a_687_n597#" 7.56618
+cap "a_n753_21#" "a_n657_531#" 19.1667
+cap "a_399_n87#" "a_303_n597#" 19.1667
+cap "a_n801_n509#" "a_n801_109#" 14.8383
+cap "a_15_21#" "a_15_n87#" 107.672
+cap "a_927_109#" "a_639_109#" 127.388
+cap "a_n81_531#" "a_303_531#" 17.7702
+cap "a_63_n509#" "a_n321_n509#" 91.723
+cap "a_1023_109#" "a_639_109#" 91.723
+cap "a_n33_109#" "a_n225_109#" 208.503
+cap "a_n657_n597#" "a_n705_n509#" 7.56618
+cap "a_n561_n87#" "a_n609_n509#" 7.56618
+cap "a_63_109#" "a_255_109#" 208.503
+cap "a_n321_n509#" "a_n321_109#" 14.8383
+cap "a_n561_21#" "a_n513_109#" 7.56618
+cap "a_975_21#" "a_879_531#" 19.1667
+cap "a_n801_109#" "a_n609_109#" 208.503
+cap "a_159_109#" "a_255_109#" 577.161
+cap "a_n81_531#" "a_n177_21#" 19.1667
+cap "a_n369_n87#" "a_n465_n597#" 19.1667
+cap "a_n753_n87#" "a_n945_n87#" 43.215
+cap "a_n1085_n509#" "a_n993_n509#" 577.161
+cap "a_783_21#" "a_783_n87#" 107.672
+cap "a_543_109#" "a_255_109#" 127.388
+cap "a_n129_109#" "a_n513_109#" 91.723
+cap "a_n849_531#" "a_n897_109#" 7.56618
+cap "a_303_n597#" "a_n81_n597#" 17.7702
+cap "a_n753_n87#" "a_n369_n87#" 17.7702
+cap "a_543_109#" "a_831_109#" 127.388
+cap "a_399_n87#" "a_447_109#" 1.7505
+cap "a_207_21#" "a_207_n87#" 107.672
+cap "a_303_531#" "a_591_21#" 4.68915
+cap "a_831_n509#" "a_783_n87#" 7.56618
+cap "a_735_n509#" "a_927_n509#" 208.503
+cap "a_n657_n597#" "a_n849_n597#" 43.215
+cap "a_n81_531#" "a_111_531#" 43.215
+cap "a_n801_n509#" "a_n705_n509#" 577.161
+cap "a_n897_n509#" "a_n609_n509#" 127.388
+cap "a_n369_n87#" "a_n177_n87#" 43.215
+cap "a_n33_109#" "a_15_n87#" 1.7505
+cap "a_159_109#" "a_63_109#" 577.161
+cap "a_n465_n597#" "a_n81_n597#" 17.7702
+cap "a_n561_21#" "a_n465_531#" 19.1667
+cap "a_n225_n509#" "a_n609_n509#" 91.723
+cap "a_351_n509#" "a_n33_n509#" 91.723
+cap "a_n513_109#" "a_n321_109#" 208.503
+cap "a_831_n509#" "a_543_n509#" 127.388
+cap "a_n465_n597#" "a_n465_531#" 4.15663
+cap "a_n417_n509#" "a_n609_n509#" 208.503
+cap "a_351_109#" "a_639_109#" 127.388
+cap "a_n369_n87#" "a_n321_109#" 1.7505
+cap "a_n177_n87#" "a_n81_n597#" 19.1667
+cap "a_n273_n597#" "a_15_n87#" 4.68915
+cap "a_159_109#" "a_543_109#" 91.723
+cap "a_15_21#" "a_63_109#" 7.56618
+cap "a_447_109#" "a_495_531#" 7.56618
+cap "a_303_531#" "a_495_531#" 43.215
+cap "a_15_21#" "a_n369_21#" 17.7702
+cap "a_n801_n509#" "a_n849_n597#" 7.56618
+cap "a_831_n509#" "a_783_21#" 1.7505
+cap "a_n225_n509#" "a_n33_n509#" 208.503
+cap "a_n753_21#" "a_n705_109#" 7.56618
+cap "a_735_109#" "a_831_109#" 577.161
+cap "a_591_n87#" "a_495_n597#" 19.1667
+cap "a_n273_531#" "a_n369_21#" 19.1667
+cap "a_n417_n509#" "a_n33_n509#" 91.723
+cap "a_399_n87#" "a_591_n87#" 43.215
+cap "a_591_n87#" "a_591_21#" 107.672
+cap "a_687_531#" "a_399_21#" 4.68915
+cap "a_351_n509#" "a_543_n509#" 208.503
+cap "a_n33_109#" "a_255_109#" 127.388
+cap "a_n561_21#" "a_n609_n509#" 1.7505
+cap "a_n225_109#" "a_n513_109#" 127.388
+cap "a_n801_109#" "a_n897_109#" 577.161
+cap "a_n1041_n597#" "a_n753_n87#" 4.68915
+cap "a_n177_21#" "a_n465_531#" 4.68915
+cap "a_639_n509#" "a_639_109#" 14.8383
+cap "a_1023_109#" "a_975_21#" 7.56618
+cap "a_975_21#" "a_927_109#" 7.56618
+cap "a_n417_109#" "a_n417_n509#" 14.8383
+cap "a_15_21#" "a_399_21#" 17.7702
+cap "a_111_531#" "a_495_531#" 17.7702
+cap "a_n561_21#" "a_n753_21#" 43.215
+cap "a_639_n509#" "a_543_n509#" 577.161
+cap "a_735_n509#" "a_447_n509#" 127.388
+cap "a_n33_109#" "a_63_109#" 577.161
+cap "a_n417_109#" "a_n705_109#" 127.388
+cap "a_687_531#" "a_735_109#" 7.56618
+cap "a_n273_n597#" "a_n657_n597#" 17.7702
+cap "a_n273_531#" "a_15_21#" 4.68915
+cap "a_255_n509#" "a_255_109#" 14.8383
+cap "a_543_109#" "a_735_109#" 208.503
+cap "a_591_n87#" "a_879_n597#" 4.68915
+cap "a_447_n509#" "a_399_21#" 1.7505
+cap "a_495_n597#" "a_687_n597#" 43.215
+cap "a_n753_n87#" "a_n753_21#" 107.672
+cap "a_n849_531#" "a_n465_531#" 17.7702
+cap "a_159_109#" "a_n33_109#" 208.503
+cap "a_351_n509#" "a_351_109#" 14.8383
+cap "a_399_n87#" "a_687_n597#" 4.68915
+cap "a_735_n509#" "a_735_109#" 14.8383
+cap "a_399_n87#" "a_15_n87#" 17.7702
+cap "a_n705_109#" "a_n657_531#" 7.56618
+cap "a_303_531#" "a_207_21#" 19.1667
+cap "a_639_n509#" "a_831_n509#" 208.503
+cap "a_n273_n597#" "a_111_n597#" 17.7702
+cap "a_n33_109#" "a_15_21#" 7.56618
+cap "a_n369_n87#" "a_15_n87#" 17.7702
+cap "a_n513_109#" "a_n801_109#" 127.388
+cap "a_975_21#" "a_783_21#" 43.215
+cap "a_n321_n509#" "a_n705_n509#" 91.723
+cap "a_n1085_n509#" "a_n1041_n597#" 7.56618
+cap "a_159_n509#" "a_111_n597#" 7.56618
+cap "a_255_n509#" "a_n129_n509#" 91.723
+cap "a_n993_n509#" "a_n705_n509#" 127.388
+cap "a_159_109#" "a_159_n509#" 14.8383
+cap "a_n177_21#" "a_207_21#" 17.7702
+cap "a_63_n509#" "a_n33_n509#" 577.161
+cap "a_159_n509#" "a_n129_n509#" 127.388
+cap "a_975_n87#" "a_879_n597#" 19.1667
+cap "a_879_n597#" "a_687_n597#" 43.215
+cap "a_n513_n509#" "a_n705_n509#" 208.503
+cap "a_n129_109#" "a_n417_109#" 127.388
+cap "a_n945_21#" "a_n897_109#" 7.56618
+cap "a_n81_531#" "a_n369_21#" 4.68915
+cap "a_n561_21#" "a_n657_531#" 19.1667
+cap "a_n321_n509#" "a_n369_21#" 1.7505
+cap "a_15_n87#" "a_n81_n597#" 19.1667
+cap "a_351_n509#" "a_639_n509#" 127.388
+cap "a_111_531#" "a_207_21#" 19.1667
+cap "a_n993_n509#" "a_n945_21#" 1.7505
+cap "a_n321_n509#" "a_n129_n509#" 208.503
+cap "a_n273_531#" "a_n273_n597#" 4.15663
+cap "a_n753_21#" "a_n849_531#" 19.1667
+cap "a_447_109#" "a_639_109#" 208.503
+cap "a_n513_n509#" "a_n129_n509#" 91.723
+cap "a_n993_n509#" "a_n801_n509#" 208.503
+cap "a_n417_109#" "a_n321_109#" 577.161
+cap "a_255_n509#" "a_447_n509#" 208.503
+cap "a_447_n509#" "a_159_n509#" 127.388
+cap "a_n561_21#" "a_n561_n87#" 107.672
+cap "a_n801_n509#" "a_n513_n509#" 127.388
+cap "a_n945_n87#" "a_n657_n597#" 4.68915
+cap "a_n81_531#" "a_15_21#" 19.1667
+cap "a_n897_109#" "a_n609_109#" 127.388
+cap "a_n1085_109#" "a_n705_109#" 91.723
+cap "a_n465_n597#" "a_n561_n87#" 19.1667
+cap "a_n369_n87#" "a_n657_n597#" 4.68915
+cap "a_n1085_109#" "a_n993_109#" 577.161
+cap "a_n225_n509#" "a_n417_n509#" 208.503
+cap "a_495_n597#" "a_111_n597#" 17.7702
+cap "a_n753_n87#" "a_n561_n87#" 43.215
+cap "a_927_n509#" "a_879_n597#" 7.56618
+cap "a_303_n597#" "a_351_n509#" 7.56618
+cap "a_303_n597#" "a_207_n87#" 19.1667
+cap "a_399_n87#" "a_111_n597#" 4.68915
+cap "a_687_531#" "a_591_21#" 19.1667
+cap "a_n273_531#" "a_n81_531#" 43.215
+cap "a_879_531#" "a_831_109#" 7.56618
+cap "a_1023_n509#" "a_1023_109#" 14.8383
+cap "a_n177_n87#" "a_n561_n87#" 17.7702
+cap "a_543_109#" "a_591_21#" 7.56618
+cap "a_n369_n87#" "a_n369_21#" 107.672
+cap "a_n993_109#" "a_n705_109#" 127.388
+cap "a_n945_21#" "a_n945_n87#" 107.672
+cap "a_591_n87#" "a_783_n87#" 43.215
+cap "a_n1041_n597#" "a_n1041_531#" 4.15663
+cap "a_447_109#" "a_351_109#" 577.161
+cap "a_303_531#" "a_351_109#" 7.56618
+cap "a_n225_109#" "a_n417_109#" 208.503
+cap "a_n945_n87#" "a_n849_n597#" 19.1667
+cap "a_591_n87#" "a_639_109#" 1.7505
+cap "a_591_21#" "a_399_21#" 43.215
+cap "a_n849_531#" "a_n657_531#" 43.215
+cap "a_399_n87#" "a_399_21#" 107.672
+cap "a_495_n597#" "a_447_n509#" 7.56618
+cap "a_591_n87#" "a_543_n509#" 7.56618
+cap "a_n81_531#" "a_n33_109#" 7.56618
+cap "a_n177_n87#" "a_207_n87#" 17.7702
+cap "a_n1041_531#" "a_n753_21#" 4.68915
+cap "a_687_531#" "a_879_531#" 43.215
+cap "a_687_531#" "a_495_531#" 43.215
+cap "a_399_n87#" "a_447_n509#" 7.56618
+cap "a_111_n597#" "a_n81_n597#" 43.215
+cap "a_n465_531#" "a_n369_21#" 19.1667
+cap "a_n129_n509#" "a_n81_n597#" 7.56618
+cap "a_n33_n509#" "a_15_n87#" 7.56618
+cap "a_n513_109#" "a_n609_109#" 577.161
+cap "a_n753_21#" "a_n801_109#" 7.56618
+cap "a_255_n509#" "a_159_n509#" 577.161
+cap "a_351_n509#" "a_63_n509#" 127.388
+cap "a_975_n87#" "a_927_109#" 1.7505
+cap "a_543_109#" "a_495_531#" 7.56618
+cap "a_n465_n597#" "a_n417_n509#" 7.56618
+cap "a_1023_109#" "a_975_n87#" 1.7505
+cap "a_975_n87#" "a_783_n87#" 43.215
+cap "a_1023_n509#" "a_831_n509#" 208.503
+cap "a_n321_n509#" "a_n273_n597#" 7.56618
+cap "a_n225_n509#" "a_n177_n87#" 7.56618
+cap "a_n753_n87#" "a_n705_109#" 1.7505
+cap "a_783_n87#" "a_687_n597#" 19.1667
+cap "a_207_21#" "a_255_109#" 7.56618
+cap "a_495_531#" "a_399_21#" 19.1667
+cap "a_63_n509#" "a_n225_n509#" 127.388
+cap "a_n1041_n597#" "a_n657_n597#" 17.7702
+cap "a_n657_n597#" "a_n609_n509#" 7.56618
+cap "a_n705_n509#" "a_n609_n509#" 577.161
+cap "a_n801_109#" "a_n417_109#" 91.723
+cap "a_n1085_n509#" "a_n897_n509#" 208.503
+cap "a_n1085_n509#" "a_n1085_109#" 14.8383
+cap "a_n273_531#" "a_n465_531#" 43.215
+cap "a_n705_109#" "a_n321_109#" 91.723
+cap "a_n753_21#" "a_n705_n509#" 1.7505
+cap "a_n1041_531#" "a_n657_531#" 17.7702
+cap "a_n177_21#" "a_n225_n509#" 1.7505
+cap "a_591_n87#" "a_207_n87#" 17.7702
+cap "a_n753_n87#" "a_n465_n597#" 4.68915
+cap "a_n321_n509#" "a_n513_n509#" 208.503
+cap "a_927_n509#" "a_927_109#" 14.8383
+cap "a_159_109#" "a_207_21#" 7.56618
+cap "a_303_n597#" "a_303_531#" 4.15663
+cap "a_n753_21#" "a_n369_21#" 17.7702
+cap "a_1023_109#" "a_831_109#" 208.503
+cap "a_927_109#" "a_831_109#" 577.161
+cap "a_n1041_n597#" "a_n849_n597#" 43.215
+cap "a_n801_n509#" "a_n609_n509#" 208.503
+cap "a_783_n87#" "a_831_109#" 1.7505
+cap "a_n369_n87#" "a_n273_n597#" 19.1667
+cap "a_n465_n597#" "a_n177_n87#" 4.68915
+cap "a_n945_21#" "a_n753_21#" 43.215
+cap "a_1023_n509#" "a_639_n509#" 91.723
+cap "a_639_n509#" "a_591_n87#" 7.56618
+cap "a_639_109#" "a_255_109#" 91.723
+cap "a_n129_109#" "a_n177_n87#" 1.7505
+cap "a_n801_n509#" "a_n753_21#" 1.7505
+cap "a_639_109#" "a_831_109#" 208.503
+cap "a_n225_109#" "a_n225_n509#" 14.8383
+cap "a_15_21#" "a_207_21#" 43.215
+cap "a_927_n509#" "a_543_n509#" 91.723
+cap "a_n129_n509#" "a_n33_n509#" 577.161
+cap "a_n513_109#" "a_n897_109#" 91.723
+cap "a_n945_n87#" "a_n897_109#" 1.7505
+cap "a_n273_n597#" "a_n81_n597#" 43.215
+cap "a_207_21#" "a_399_21#" 43.215
+cap "a_n609_109#" "a_n609_n509#" 14.8383
+cap "a_1023_n509#" "a_975_21#" 1.7505
+cap "a_n561_21#" "a_n177_21#" 17.7702
+cap "a_n993_n509#" "a_n945_n87#" 7.56618
+cap "a_n417_109#" "a_n369_21#" 7.56618
+cap "a_n129_109#" "a_n321_109#" 208.503
+cap "a_n657_n597#" "a_n657_531#" 4.15663
+cap "a_n369_n87#" "a_n321_n509#" 7.56618
+cap "a_n513_109#" "a_n513_n509#" 14.8383
+cap "a_207_n87#" "a_15_n87#" 43.215
+cap "a_783_21#" "a_831_109#" 7.56618
+cap "a_543_109#" "a_927_109#" 91.723
+cap "a_15_21#" "a_n33_n509#" 1.7505
+cap "a_831_n509#" "a_927_n509#" 577.161
+cap "a_n561_21#" "a_n849_531#" 4.68915
+cap "a_399_n87#" "a_495_n597#" 19.1667
+cap "a_303_n597#" "a_591_n87#" 4.68915
+cap "a_831_n509#" "a_831_109#" 14.8383
+cap "a_n129_109#" "a_n177_21#" 7.56618
+cap "a_687_531#" "a_639_109#" 7.56618
+cap "a_639_n509#" "a_687_n597#" 7.56618
+cap "a_735_n509#" "a_783_n87#" 7.56618
+cap "a_n177_21#" "a_n177_n87#" 107.672
+cap "a_n657_531#" "a_n369_21#" 4.68915
+cap "a_n1085_109#" "a_n1041_531#" 7.56618
+cap "a_n81_531#" "a_n81_n597#" 4.15663
+cap "a_543_109#" "a_639_109#" 577.161
+cap "a_351_109#" "a_255_109#" 577.161
+cap "a_n945_21#" "a_n657_531#" 4.68915
+cap "a_n1085_109#" "a_n801_109#" 127.388
+cap "a_n561_n87#" "a_n657_n597#" 19.1667
+cap "a_n81_531#" "a_n465_531#" 17.7702
+cap "a_543_n509#" "a_543_109#" 14.8383
+cap "a_975_21#" "a_975_n87#" 107.672
+cap "a_735_n509#" "a_543_n509#" 208.503
+cap "a_n417_109#" "a_n609_109#" 208.503
+cap "a_687_531#" "a_783_21#" 19.1667
+cap "a_n1041_531#" "a_n993_109#" 7.56618
+cap "a_351_109#" "a_63_109#" 127.388
+cap "a_n129_109#" "a_n225_109#" 577.161
+cap "a_n801_109#" "a_n705_109#" 577.161
+cap "a_495_n597#" "a_879_n597#" 17.7702
+cap "a_111_531#" "a_303_531#" 43.215
+cap "a_255_109#" "a_207_n87#" 1.7505
+cap "a_n225_109#" "a_n177_n87#" 1.7505
+cap "a_n801_109#" "a_n993_109#" 208.503
+cap "a_495_n597#" "a_495_531#" 4.15663
+cap "a_1023_109#" "a_735_109#" 127.388
+cap "a_927_109#" "a_735_109#" 208.503
+cap "a_n33_109#" "a_n33_n509#" 14.8383
+cap "a_735_109#" "a_783_n87#" 1.7505
+cap "a_303_n597#" "a_687_n597#" 17.7702
+cap "a_591_21#" "a_879_531#" 4.68915
+cap "a_495_531#" "a_591_21#" 19.1667
+cap "a_735_n509#" "a_783_21#" 1.7505
+cap "a_255_n509#" "a_207_21#" 1.7505
+cap "a_159_109#" "a_351_109#" 208.503
+cap "a_447_n509#" "a_543_n509#" 577.161
+cap "a_159_n509#" "a_207_21#" 1.7505
+cap "a_n609_109#" "a_n657_531#" 7.56618
+cap "a_303_n597#" "a_15_n87#" 4.68915
+cap "a_n273_531#" "a_n657_531#" 17.7702
+cap "a_735_n509#" "a_831_n509#" 577.161
+cap "a_639_n509#" "a_927_n509#" 127.388
+cap "a_351_109#" "a_543_109#" 208.503
+cap "a_n561_n87#" "a_n849_n597#" 4.68915
+cap "a_783_21#" "a_399_21#" 17.7702
+cap "a_n897_n509#" "a_n705_n509#" 208.503
+cap "a_639_109#" "a_735_109#" 577.161
+cap "a_n225_109#" "a_n321_109#" 577.161
+cap "a_111_531#" "a_n177_21#" 4.68915
+cap "a_n513_109#" "a_n465_531#" 7.56618
+cap "a_n369_n87#" "a_n81_n597#" 4.68915
+cap "a_n33_109#" "a_n417_109#" 91.723
+cap "a_n321_n509#" "a_n609_n509#" 127.388
+cap "a_n993_n509#" "a_n1041_n597#" 7.56618
+cap "a_n81_531#" "a_207_21#" 4.68915
+cap "a_255_n509#" "a_n33_n509#" 127.388
+cap "a_n993_n509#" "a_n609_n509#" 91.723
+cap "a_207_n87#" "a_111_n597#" 19.1667
+cap "a_831_n509#" "a_447_n509#" 91.723
+cap "a_159_n509#" "a_n33_n509#" 208.503
+cap "a_159_109#" "a_207_n87#" 1.7505
+cap "a_n177_21#" "a_n225_109#" 7.56618
+cap "a_975_21#" "a_927_n509#" 1.7505
+cap "a_351_109#" "a_399_21#" 7.56618
+cap "a_879_n597#" "a_879_531#" 4.15663
+cap "a_n513_n509#" "a_n609_n509#" 577.161
+cap "a_n417_n509#" "a_n705_n509#" 127.388
+cap "a_n945_21#" "a_n897_n509#" 1.7505
+cap "a_n561_n87#" "a_n609_109#" 1.7505
+cap "a_n705_109#" "a_n705_n509#" 14.8383
+cap "a_n753_n87#" "a_n801_109#" 1.7505
+cap "a_n177_n87#" "a_15_n87#" 43.215
+cap "a_495_531#" "a_879_531#" 17.7702
+cap "a_783_21#" "a_735_109#" 7.56618
+cap "a_351_n509#" "a_735_n509#" 91.723
+cap "a_n897_n509#" "a_n849_n597#" 7.56618
+cap "a_n897_n509#" "a_n801_n509#" 577.161
+cap "a_63_n509#" "a_15_n87#" 7.56618
+cap "a_n225_n509#" "a_n129_n509#" 577.161
+cap "a_n321_n509#" "a_n33_n509#" 127.388
+cap "a_n417_n509#" "a_n369_21#" 1.7505
+device msubckt sky130_fd_pr__nfet_01v8_lvt 993 -509 994 -508 l=30 w=400 "a_n1187_n683#" "a_975_n87#" 60 0 "a_927_n509#" 400 0 "a_1023_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 897 -509 898 -508 l=30 w=400 "a_n1187_n683#" "a_879_n597#" 60 0 "a_831_n509#" 400 0 "a_927_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 801 -509 802 -508 l=30 w=400 "a_n1187_n683#" "a_783_n87#" 60 0 "a_735_n509#" 400 0 "a_831_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 705 -509 706 -508 l=30 w=400 "a_n1187_n683#" "a_687_n597#" 60 0 "a_639_n509#" 400 0 "a_735_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 609 -509 610 -508 l=30 w=400 "a_n1187_n683#" "a_591_n87#" 60 0 "a_543_n509#" 400 0 "a_639_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 513 -509 514 -508 l=30 w=400 "a_n1187_n683#" "a_495_n597#" 60 0 "a_447_n509#" 400 0 "a_543_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 417 -509 418 -508 l=30 w=400 "a_n1187_n683#" "a_399_n87#" 60 0 "a_351_n509#" 400 0 "a_447_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 321 -509 322 -508 l=30 w=400 "a_n1187_n683#" "a_303_n597#" 60 0 "a_255_n509#" 400 0 "a_351_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 -509 226 -508 l=30 w=400 "a_n1187_n683#" "a_207_n87#" 60 0 "a_159_n509#" 400 0 "a_255_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 129 -509 130 -508 l=30 w=400 "a_n1187_n683#" "a_111_n597#" 60 0 "a_63_n509#" 400 0 "a_159_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 -509 34 -508 l=30 w=400 "a_n1187_n683#" "a_15_n87#" 60 0 "a_n33_n509#" 400 0 "a_63_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 -509 -62 -508 l=30 w=400 "a_n1187_n683#" "a_n81_n597#" 60 0 "a_n129_n509#" 400 0 "a_n33_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -159 -509 -158 -508 l=30 w=400 "a_n1187_n683#" "a_n177_n87#" 60 0 "a_n225_n509#" 400 0 "a_n129_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -255 -509 -254 -508 l=30 w=400 "a_n1187_n683#" "a_n273_n597#" 60 0 "a_n321_n509#" 400 0 "a_n225_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -351 -509 -350 -508 l=30 w=400 "a_n1187_n683#" "a_n369_n87#" 60 0 "a_n417_n509#" 400 0 "a_n321_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -447 -509 -446 -508 l=30 w=400 "a_n1187_n683#" "a_n465_n597#" 60 0 "a_n513_n509#" 400 0 "a_n417_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -543 -509 -542 -508 l=30 w=400 "a_n1187_n683#" "a_n561_n87#" 60 0 "a_n609_n509#" 400 0 "a_n513_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -639 -509 -638 -508 l=30 w=400 "a_n1187_n683#" "a_n657_n597#" 60 0 "a_n705_n509#" 400 0 "a_n609_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -735 -509 -734 -508 l=30 w=400 "a_n1187_n683#" "a_n753_n87#" 60 0 "a_n801_n509#" 400 0 "a_n705_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -831 -509 -830 -508 l=30 w=400 "a_n1187_n683#" "a_n849_n597#" 60 0 "a_n897_n509#" 400 0 "a_n801_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -927 -509 -926 -508 l=30 w=400 "a_n1187_n683#" "a_n945_n87#" 60 0 "a_n993_n509#" 400 0 "a_n897_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1023 -509 -1022 -508 l=30 w=400 "a_n1187_n683#" "a_n1041_n597#" 60 0 "a_n1085_n509#" 400 0 "a_n993_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 993 109 994 110 l=30 w=400 "a_n1187_n683#" "a_975_21#" 60 0 "a_927_109#" 400 0 "a_1023_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 897 109 898 110 l=30 w=400 "a_n1187_n683#" "a_879_531#" 60 0 "a_831_109#" 400 0 "a_927_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 801 109 802 110 l=30 w=400 "a_n1187_n683#" "a_783_21#" 60 0 "a_735_109#" 400 0 "a_831_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 705 109 706 110 l=30 w=400 "a_n1187_n683#" "a_687_531#" 60 0 "a_639_109#" 400 0 "a_735_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 609 109 610 110 l=30 w=400 "a_n1187_n683#" "a_591_21#" 60 0 "a_543_109#" 400 0 "a_639_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 513 109 514 110 l=30 w=400 "a_n1187_n683#" "a_495_531#" 60 0 "a_447_109#" 400 0 "a_543_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 417 109 418 110 l=30 w=400 "a_n1187_n683#" "a_399_21#" 60 0 "a_351_109#" 400 0 "a_447_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 321 109 322 110 l=30 w=400 "a_n1187_n683#" "a_303_531#" 60 0 "a_255_109#" 400 0 "a_351_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 225 109 226 110 l=30 w=400 "a_n1187_n683#" "a_207_21#" 60 0 "a_159_109#" 400 0 "a_255_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 129 109 130 110 l=30 w=400 "a_n1187_n683#" "a_111_531#" 60 0 "a_63_109#" 400 0 "a_159_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 33 109 34 110 l=30 w=400 "a_n1187_n683#" "a_15_21#" 60 0 "a_n33_109#" 400 0 "a_63_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -63 109 -62 110 l=30 w=400 "a_n1187_n683#" "a_n81_531#" 60 0 "a_n129_109#" 400 0 "a_n33_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -159 109 -158 110 l=30 w=400 "a_n1187_n683#" "a_n177_21#" 60 0 "a_n225_109#" 400 0 "a_n129_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -255 109 -254 110 l=30 w=400 "a_n1187_n683#" "a_n273_531#" 60 0 "a_n321_109#" 400 0 "a_n225_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -351 109 -350 110 l=30 w=400 "a_n1187_n683#" "a_n369_21#" 60 0 "a_n417_109#" 400 0 "a_n321_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -447 109 -446 110 l=30 w=400 "a_n1187_n683#" "a_n465_531#" 60 0 "a_n513_109#" 400 0 "a_n417_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -543 109 -542 110 l=30 w=400 "a_n1187_n683#" "a_n561_21#" 60 0 "a_n609_109#" 400 0 "a_n513_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -639 109 -638 110 l=30 w=400 "a_n1187_n683#" "a_n657_531#" 60 0 "a_n705_109#" 400 0 "a_n609_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -735 109 -734 110 l=30 w=400 "a_n1187_n683#" "a_n753_21#" 60 0 "a_n801_109#" 400 0 "a_n705_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -831 109 -830 110 l=30 w=400 "a_n1187_n683#" "a_n849_531#" 60 0 "a_n897_109#" 400 0 "a_n801_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -927 109 -926 110 l=30 w=400 "a_n1187_n683#" "a_n945_21#" 60 0 "a_n993_109#" 400 0 "a_n897_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1023 109 -1022 110 l=30 w=400 "a_n1187_n683#" "a_n1041_531#" 60 0 "a_n1085_109#" 400 0 "a_n993_109#" 400 0
diff --git a/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.ext b/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.ext
new file mode 100644
index 0000000..8be701e
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.ext
@@ -0,0 +1,39 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_high_po l=l w=w
+parameters sky130_fd_pr__res_high_po_5p73 l=l
+parameters sky130_fd_pr__res_high_po_2p85 l=l
+parameters sky130_fd_pr__res_high_po_1p41 l=l
+parameters sky130_fd_pr__res_high_po_0p69 l=l
+parameters sky130_fd_pr__res_high_po_0p35 l=l
+node "a_942_n1032#" 77 957.321 942 -1032 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_942_n600#" 673 0 942 -600 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_942_600#" 77 958.008 942 600 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_124_n1032#" 77 782.472 124 -1032 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_124_n600#" 673 0 124 -600 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_124_600#" 77 783.159 124 600 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n694_n1032#" 77 782.472 -694 -1032 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n694_n600#" 673 0 -694 -600 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n694_600#" 77 783.159 -694 600 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n1512_n1032#" 77 958.55 -1512 -1032 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+node "a_n1512_n600#" 673 0 -1512 -600 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 684000 3540 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n1512_600#" 77 959.238 -1512 600 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 492480 4008 229858 1942 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1642_n1162#" 0 0 -1642 -1162 ppd 0 0 0 0 0 0 0 0 0 0 376720 22160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 376720 22160 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n694_n1032#" "a_124_n1032#" 156.502
+cap "a_942_600#" "a_942_n1032#" 30.2704
+cap "a_124_600#" "a_124_n1032#" 30.2704
+cap "a_n694_600#" "a_n694_n1032#" 30.2704
+cap "a_n1512_600#" "a_n694_600#" 156.502
+cap "a_n694_n1032#" "a_n1512_n1032#" 156.502
+cap "a_n1512_600#" "a_n1512_n1032#" 30.2704
+cap "a_n694_600#" "a_124_600#" 156.502
+cap "a_942_n1032#" "a_124_n1032#" 156.502
+cap "a_942_600#" "a_124_600#" 156.502
+device rsubckt sky130_fd_pr__res_high_po_2p85 942 -600 943 -599 l=1200 "a_n1642_n1162#" "a_942_n600#" 0 0 "a_942_n1032#" 570 0 "a_942_600#" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 124 -600 125 -599 l=1200 "a_n1642_n1162#" "a_124_n600#" 0 0 "a_124_n1032#" 570 0 "a_124_600#" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -694 -600 -693 -599 l=1200 "a_n1642_n1162#" "a_n694_n600#" 0 0 "a_n694_n1032#" 570 0 "a_n694_600#" 570 0
+device rsubckt sky130_fd_pr__res_high_po_2p85 -1512 -600 -1511 -599 l=1200 "a_n1642_n1162#" "a_n1512_n600#" 0 0 "a_n1512_n1032#" 570 0 "a_n1512_600#" 570 0
diff --git a/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.mag b/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.mag
new file mode 100644
index 0000000..0fca976
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__res_high_po_2p85_8GE2XM.mag
@@ -0,0 +1,96 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -1678 -1198 1678 1198
+<< psubdiff >>
+rect -1642 1128 -1546 1162
+rect 1546 1128 1642 1162
+rect -1642 1066 -1608 1128
+rect 1608 1066 1642 1128
+rect -1642 -1128 -1608 -1066
+rect 1608 -1128 1642 -1066
+rect -1642 -1162 -1546 -1128
+rect 1546 -1162 1642 -1128
+<< psubdiffcont >>
+rect -1546 1128 1546 1162
+rect -1642 -1066 -1608 1066
+rect 1608 -1066 1642 1066
+rect -1546 -1162 1546 -1128
+<< xpolycontact >>
+rect -1512 600 -942 1032
+rect -1512 -1032 -942 -600
+rect -694 600 -124 1032
+rect -694 -1032 -124 -600
+rect 124 600 694 1032
+rect 124 -1032 694 -600
+rect 942 600 1512 1032
+rect 942 -1032 1512 -600
+<< ppolyres >>
+rect -1512 -600 -942 600
+rect -694 -600 -124 600
+rect 124 -600 694 600
+rect 942 -600 1512 600
+<< locali >>
+rect -1642 1128 -1546 1162
+rect 1546 1128 1642 1162
+rect -1642 1066 -1608 1128
+rect 1608 1066 1642 1128
+rect -1642 -1128 -1608 -1066
+rect 1608 -1128 1642 -1066
+rect -1642 -1162 -1546 -1128
+rect 1546 -1162 1642 -1128
+<< viali >>
+rect -1496 617 -958 1014
+rect -678 617 -140 1014
+rect 140 617 678 1014
+rect 958 617 1496 1014
+rect -1496 -1014 -958 -617
+rect -678 -1014 -140 -617
+rect 140 -1014 678 -617
+rect 958 -1014 1496 -617
+<< metal1 >>
+rect -1508 1014 -946 1020
+rect -1508 617 -1496 1014
+rect -958 617 -946 1014
+rect -1508 611 -946 617
+rect -690 1014 -128 1020
+rect -690 617 -678 1014
+rect -140 617 -128 1014
+rect -690 611 -128 617
+rect 128 1014 690 1020
+rect 128 617 140 1014
+rect 678 617 690 1014
+rect 128 611 690 617
+rect 946 1014 1508 1020
+rect 946 617 958 1014
+rect 1496 617 1508 1014
+rect 946 611 1508 617
+rect -1508 -617 -946 -611
+rect -1508 -1014 -1496 -617
+rect -958 -1014 -946 -617
+rect -1508 -1020 -946 -1014
+rect -690 -617 -128 -611
+rect -690 -1014 -678 -617
+rect -140 -1014 -128 -617
+rect -690 -1020 -128 -1014
+rect 128 -617 690 -611
+rect 128 -1014 140 -617
+rect 678 -1014 690 -617
+rect 128 -1020 690 -1014
+rect 946 -617 1508 -611
+rect 946 -1014 958 -617
+rect 1496 -1014 1508 -617
+rect 946 -1020 1508 -1014
+<< res2p85 >>
+rect -1514 -602 -940 602
+rect -696 -602 -122 602
+rect 122 -602 696 602
+rect 940 -602 1514 602
+<< properties >>
+string FIXED_BBOX -1625 -1145 1625 1145
+string gencell sky130_fd_pr__res_high_po_2p85
+string library sky130
+string parameters w 2.850 l 6 m 1 nx 4 wmin 2.850 lmin 0.50 rho 319.8 val 809.978 dummy 0 dw 0.0 term 194.82 sterm 0.0 caplen 0 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_high_po_0p35  sky130_fd_pr__res_high_po_0p69 sky130_fd_pr__res_high_po_1p41  sky130_fd_pr__res_high_po_2p85 sky130_fd_pr__res_high_po_5p73} full_metal 1 wmax 2.850 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.ext b/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.ext
new file mode 100644
index 0000000..3f9facd
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.ext
@@ -0,0 +1,18 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__res_high_po l=l w=w
+parameters sky130_fd_pr__res_high_po_5p73 l=l
+parameters sky130_fd_pr__res_high_po_2p85 l=l
+parameters sky130_fd_pr__res_high_po_1p41 l=l
+parameters sky130_fd_pr__res_high_po_0p69 l=l
+parameters sky130_fd_pr__res_high_po_0p35 l=l
+node "a_n573_n832#" 102 1649.67 -573 -832 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990144 6312 465442 3094 0 0 0 0 0 0 0 0 0 0
+node "a_n573_n400#" 458 0 -573 -400 ppres 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 916800 3892 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_n573_400#" 102 1652.33 -573 400 xpc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 990144 6312 465442 3094 0 0 0 0 0 0 0 0 0 0
+substrate "a_n703_n962#" 0 0 -703 -962 ppd 0 0 0 0 0 0 0 0 0 0 221816 13048 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 221816 13048 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n573_n832#" "a_n573_400#" 91.1954
+device rsubckt sky130_fd_pr__res_high_po_5p73 -573 -400 -572 -399 l=800 "a_n703_n962#" "a_n573_n400#" 0 0 "a_n573_n832#" 1146 0 "a_n573_400#" 1146 0
diff --git a/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.mag b/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.mag
new file mode 100644
index 0000000..8faef1e
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__res_high_po_5p73_PA2QZX.mag
@@ -0,0 +1,54 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -739 -998 739 998
+<< psubdiff >>
+rect -703 928 -607 962
+rect 607 928 703 962
+rect -703 866 -669 928
+rect 669 866 703 928
+rect -703 -928 -669 -866
+rect 669 -928 703 -866
+rect -703 -962 -607 -928
+rect 607 -962 703 -928
+<< psubdiffcont >>
+rect -607 928 607 962
+rect -703 -866 -669 866
+rect 669 -866 703 866
+rect -607 -962 607 -928
+<< xpolycontact >>
+rect -573 400 573 832
+rect -573 -832 573 -400
+<< ppolyres >>
+rect -573 -400 573 400
+<< locali >>
+rect -703 928 -607 962
+rect 607 928 703 962
+rect -703 866 -669 928
+rect 669 866 703 928
+rect -703 -928 -669 -866
+rect 669 -928 703 -866
+rect -703 -962 -607 -928
+rect 607 -962 703 -928
+<< viali >>
+rect -557 417 557 814
+rect -557 -814 557 -417
+<< metal1 >>
+rect -569 814 569 820
+rect -569 417 -557 814
+rect 557 417 569 814
+rect -569 411 569 417
+rect -569 -417 569 -411
+rect -569 -814 -557 -417
+rect 557 -814 569 -417
+rect -569 -820 569 -814
+<< res5p73 >>
+rect -575 -402 575 402
+<< properties >>
+string FIXED_BBOX -686 -945 686 945
+string gencell sky130_fd_pr__res_high_po_5p73
+string library sky130
+string parameters w 5.730 l 4 m 1 nx 1 wmin 5.730 lmin 0.50 rho 319.8 val 291.246 dummy 0 dw 0.0 term 194.82 sterm 0.0 caplen 0 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_high_po_0p35  sky130_fd_pr__res_high_po_0p69 sky130_fd_pr__res_high_po_1p41  sky130_fd_pr__res_high_po_2p85 sky130_fd_pr__res_high_po_5p73} full_metal 1 wmax 5.730 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/outd/sky130_fd_pr__res_high_po_5p73_XUUPZH.mag b/mag/outd/sky130_fd_pr__res_high_po_5p73_XUUPZH.mag
new file mode 100644
index 0000000..9991944
--- /dev/null
+++ b/mag/outd/sky130_fd_pr__res_high_po_5p73_XUUPZH.mag
@@ -0,0 +1,152 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646301356
+<< pwell >>
+rect -5618 -998 5618 998
+<< psubdiff >>
+rect -5582 928 -5486 962
+rect 5486 928 5582 962
+rect -5582 866 -5548 928
+rect 5548 866 5582 928
+rect -5582 -928 -5548 -866
+rect 5548 -928 5582 -866
+rect -5582 -962 -5486 -928
+rect 5486 -962 5582 -928
+<< psubdiffcont >>
+rect -5486 928 5486 962
+rect -5582 -866 -5548 866
+rect 5548 -866 5582 866
+rect -5486 -962 5486 -928
+<< xpolycontact >>
+rect -5452 400 -4306 832
+rect -5452 -832 -4306 -400
+rect -4058 400 -2912 832
+rect -4058 -832 -2912 -400
+rect -2664 400 -1518 832
+rect -2664 -832 -1518 -400
+rect -1270 400 -124 832
+rect -1270 -832 -124 -400
+rect 124 400 1270 832
+rect 124 -832 1270 -400
+rect 1518 400 2664 832
+rect 1518 -832 2664 -400
+rect 2912 400 4058 832
+rect 2912 -832 4058 -400
+rect 4306 400 5452 832
+rect 4306 -832 5452 -400
+<< ppolyres >>
+rect -5452 -400 -4306 400
+rect -4058 -400 -2912 400
+rect -2664 -400 -1518 400
+rect -1270 -400 -124 400
+rect 124 -400 1270 400
+rect 1518 -400 2664 400
+rect 2912 -400 4058 400
+rect 4306 -400 5452 400
+<< locali >>
+rect -5582 928 -5486 962
+rect 5486 928 5582 962
+rect -5582 866 -5548 928
+rect 5548 866 5582 928
+rect -5582 -928 -5548 -866
+rect 5548 -928 5582 -866
+rect -5582 -962 -5486 -928
+rect 5486 -962 5582 -928
+<< viali >>
+rect -5436 417 -4322 814
+rect -4042 417 -2928 814
+rect -2648 417 -1534 814
+rect -1254 417 -140 814
+rect 140 417 1254 814
+rect 1534 417 2648 814
+rect 2928 417 4042 814
+rect 4322 417 5436 814
+rect -5436 -814 -4322 -417
+rect -4042 -814 -2928 -417
+rect -2648 -814 -1534 -417
+rect -1254 -814 -140 -417
+rect 140 -814 1254 -417
+rect 1534 -814 2648 -417
+rect 2928 -814 4042 -417
+rect 4322 -814 5436 -417
+<< metal1 >>
+rect -5448 814 -4310 820
+rect -5448 417 -5436 814
+rect -4322 417 -4310 814
+rect -5448 411 -4310 417
+rect -4054 814 -2916 820
+rect -4054 417 -4042 814
+rect -2928 417 -2916 814
+rect -4054 411 -2916 417
+rect -2660 814 -1522 820
+rect -2660 417 -2648 814
+rect -1534 417 -1522 814
+rect -2660 411 -1522 417
+rect -1266 814 -128 820
+rect -1266 417 -1254 814
+rect -140 417 -128 814
+rect -1266 411 -128 417
+rect 128 814 1266 820
+rect 128 417 140 814
+rect 1254 417 1266 814
+rect 128 411 1266 417
+rect 1522 814 2660 820
+rect 1522 417 1534 814
+rect 2648 417 2660 814
+rect 1522 411 2660 417
+rect 2916 814 4054 820
+rect 2916 417 2928 814
+rect 4042 417 4054 814
+rect 2916 411 4054 417
+rect 4310 814 5448 820
+rect 4310 417 4322 814
+rect 5436 417 5448 814
+rect 4310 411 5448 417
+rect -5448 -417 -4310 -411
+rect -5448 -814 -5436 -417
+rect -4322 -814 -4310 -417
+rect -5448 -820 -4310 -814
+rect -4054 -417 -2916 -411
+rect -4054 -814 -4042 -417
+rect -2928 -814 -2916 -417
+rect -4054 -820 -2916 -814
+rect -2660 -417 -1522 -411
+rect -2660 -814 -2648 -417
+rect -1534 -814 -1522 -417
+rect -2660 -820 -1522 -814
+rect -1266 -417 -128 -411
+rect -1266 -814 -1254 -417
+rect -140 -814 -128 -417
+rect -1266 -820 -128 -814
+rect 128 -417 1266 -411
+rect 128 -814 140 -417
+rect 1254 -814 1266 -417
+rect 128 -820 1266 -814
+rect 1522 -417 2660 -411
+rect 1522 -814 1534 -417
+rect 2648 -814 2660 -417
+rect 1522 -820 2660 -814
+rect 2916 -417 4054 -411
+rect 2916 -814 2928 -417
+rect 4042 -814 4054 -417
+rect 2916 -820 4054 -814
+rect 4310 -417 5448 -411
+rect 4310 -814 4322 -417
+rect 5436 -814 5448 -417
+rect 4310 -820 5448 -814
+<< res5p73 >>
+rect -5454 -402 -4304 402
+rect -4060 -402 -2910 402
+rect -2666 -402 -1516 402
+rect -1272 -402 -122 402
+rect 122 -402 1272 402
+rect 1516 -402 2666 402
+rect 2910 -402 4060 402
+rect 4304 -402 5454 402
+<< properties >>
+string FIXED_BBOX -5565 -945 5565 945
+string gencell sky130_fd_pr__res_high_po_5p73
+string library sky130
+string parameters w 5.730 l 4 m 1 nx 8 wmin 5.730 lmin 0.50 rho 319.8 val 291.246 dummy 0 dw 0.0 term 194.82 sterm 0.0 caplen 0 guard 1 glc 1 grc 1 gtc 1 gbc 1 compatible {sky130_fd_pr__res_high_po_0p35  sky130_fd_pr__res_high_po_0p69 sky130_fd_pr__res_high_po_1p41  sky130_fd_pr__res_high_po_2p85 sky130_fd_pr__res_high_po_5p73} full_metal 1 wmax 5.730 n_guard 0 hv_guard 0 vias 1 viagb 0 viagt 0 viagl 0 viagr 0
+<< end >>
diff --git a/mag/tia/.magicrc b/mag/tia/.magicrc
new file mode 100644
index 0000000..1685a32
--- /dev/null
+++ b/mag/tia/.magicrc
@@ -0,0 +1,86 @@
+puts stdout "Sourcing design .magicrc for technology sky130A ..."
+
+# Put grid on 0.005 pitch.  This is important, as some commands don't
+# rescale the grid automatically (such as lef read?).
+
+set scalefac [tech lambda]
+if {[lindex $scalefac 1] < 2} {
+    scalegrid 1 2
+}
+
+# drc off
+drc euclidean on
+# Change this to a fixed number for repeatable behavior with GDS writes
+# e.g., "random seed 12345"
+catch {random seed}
+
+# Turn off the scale option on ext2spice or else it conflicts with the
+# scale in the model files.
+ext2spice scale off
+
+# Allow override of PDK path from environment variable PDK_ROOT
+if {[catch {set PDK_ROOT $env(PDK_ROOT)}]} {
+    set PDK_ROOT /usr/local/share/pdk
+}
+
+# loading technology
+tech load $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tech
+
+# load device generator
+source $PDK_ROOT/sky130A/libs.tech/magic/sky130A.tcl
+
+# load bind keys (optional)
+# source $PDK_ROOT/sky130A/libs.tech/magic/sky130A-BindKeys
+
+# set units to lambda grid 
+snap lambda
+
+# set sky130 standard power, ground, and substrate names
+set VDD VPWR
+set GND VGND
+set SUB VSUBS
+
+# Allow override of type of magic library views used, "mag" or "maglef",
+# from environment variable MAGTYPE
+
+if {[catch {set MAGTYPE $env(MAGTYPE)}]} {
+   set MAGTYPE mag
+}
+
+# add path to reference cells
+if {[file isdir ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}]} {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_pr
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_io
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hdll
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hs
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_hvl
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_lp
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ls
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_fd_sc_ms
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_osu_sc_t18
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_ml_xx_hd
+    addpath ${PDK_ROOT}/sky130A/libs.ref/${MAGTYPE}/sky130_sram_macros
+} else {
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_pr/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_io/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hdll/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hs/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_hvl/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_lp/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ls/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_fd_sc_ms/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_osu_sc_t18/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_ml_xx_hd/${MAGTYPE}
+    addpath ${PDK_ROOT}/sky130A/libs.ref/sky130_sram_macros/${MAGTYPE}
+}
+
+# add path to GDS cells
+
+# add path to IP from catalog.  This procedure defined in the PDK script.
+catch {magic::query_mylib_ip}
+# add path to local IP from user design space.  Defined in the PDK script.
+catch {magic::query_my_projects}
diff --git a/mag/tia/dis_tran.ext b/mag/tia/dis_tran.ext
new file mode 100644
index 0000000..f3073a2
--- /dev/null
+++ b/mag/tia/dis_tran.ext
@@ -0,0 +1,1320 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_RRWALQ sky130_fd_pr__nfet_01v8_RRWALQ_0 1 0 1314 0 1 1284
+node "m1_90_70#" 6 734.132 90 70 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 122500 5000 0 0 0 0 0 0 0 0 0 0
+node "m1_2478_157#" 1 71.4101 2478 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2286_157#" 1 37.1256 2286 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2094_157#" 1 37.1256 2094 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1902_157#" 1 37.1256 1902 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1710_157#" 1 37.1256 1710 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1518_157#" 1 37.1256 1518 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1326_157#" 1 37.1256 1326 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1134_157#" 1 37.1256 1134 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_942_157#" 1 37.1256 942 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_750_157#" 1 37.1256 750 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_558_157#" 1 37.1256 558 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_366_157#" 1 37.1256 366 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_174_157#" 1 69.0249 174 157 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2382_397#" 1 64.5397 2382 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2190_397#" 1 32.9567 2190 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1998_397#" 1 32.9567 1998 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1806_397#" 1 32.9567 1806 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1614_397#" 1 32.9567 1614 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1422_397#" 1 32.9567 1422 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1230_397#" 1 32.9567 1230 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1038_397#" 1 32.9567 1038 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_846_397#" 1 32.9567 846 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_654_397#" 1 32.9567 654 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_462_397#" 1 32.9567 462 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_270_397#" 1 32.9567 270 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_78_397#" 1 67.394 78 397 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_90_590#" 2 656.469 90 590 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 367500 5200 0 0 0 0 0 0 0 0 0 0
+node "m1_2382_775#" 1 60.8811 2382 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2190_775#" 1 29.2981 2190 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1998_775#" 1 29.2981 1998 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1806_775#" 1 29.2981 1806 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1614_775#" 1 29.2981 1614 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1422_775#" 1 29.2981 1422 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1230_775#" 1 29.2981 1230 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1038_775#" 1 29.2981 1038 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_846_775#" 1 29.2981 846 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_654_775#" 1 29.2981 654 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_462_775#" 1 29.2981 462 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_270_775#" 1 29.2981 270 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_78_775#" 1 62.9907 78 775 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2478_1015#" 1 61.9662 2478 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2286_1015#" 1 29.2791 2286 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2094_1015#" 1 29.2791 2094 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1902_1015#" 1 29.2791 1902 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1710_1015#" 1 29.2791 1710 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1518_1015#" 1 29.2791 1518 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1326_1015#" 1 29.2791 1326 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1134_1015#" 1 29.2791 1134 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_942_1015#" 1 29.2791 942 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_750_1015#" 1 29.2791 750 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_558_1015#" 1 29.2791 558 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_366_1015#" 1 29.2791 366 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_174_1015#" 1 61.1784 174 1015 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_90_1210#" 2 655.891 90 1210 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 367500 5200 0 0 0 0 0 0 0 0 0 0
+node "m1_2478_1393#" 1 61.9843 2478 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2286_1393#" 1 29.2971 2286 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2094_1393#" 1 29.2971 2094 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1902_1393#" 1 29.2971 1902 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1710_1393#" 1 29.2971 1710 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1518_1393#" 1 29.2971 1518 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1326_1393#" 1 29.2971 1326 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1134_1393#" 1 29.2971 1134 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_942_1393#" 1 29.2971 942 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_750_1393#" 1 29.2971 750 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_558_1393#" 1 29.2971 558 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_366_1393#" 1 29.2971 366 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_174_1393#" 1 61.1964 174 1393 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2382_1633#" 1 60.8632 2382 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2190_1633#" 1 29.2802 2190 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1998_1633#" 1 29.2802 1998 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1806_1633#" 1 29.2802 1806 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1614_1633#" 1 29.2802 1614 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1422_1633#" 1 29.2802 1422 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1230_1633#" 1 29.2802 1230 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1038_1633#" 1 29.2802 1038 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_846_1633#" 1 29.2802 846 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_654_1633#" 1 29.2802 654 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_462_1633#" 1 29.2802 462 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_270_1633#" 1 29.2802 270 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_78_1633#" 1 62.9725 78 1633 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_90_1830#" 2 653.399 90 1830 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 367500 5200 0 0 0 0 0 0 0 0 0 0
+node "m1_2382_2011#" 1 64.4949 2382 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2190_2011#" 1 32.9119 2190 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1998_2011#" 1 32.9119 1998 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1806_2011#" 1 32.9119 1806 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1614_2011#" 1 32.9119 1614 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1422_2011#" 1 32.9119 1422 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1230_2011#" 1 32.9119 1230 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1038_2011#" 1 32.9119 1038 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_846_2011#" 1 32.9119 846 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_654_2011#" 1 32.9119 654 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_462_2011#" 1 32.9119 462 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_270_2011#" 1 32.9119 270 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_78_2011#" 1 67.3724 78 2011 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2478_2251#" 1 71.3631 2478 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2286_2251#" 1 37.0588 2286 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2094_2251#" 1 37.0588 2094 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1902_2251#" 1 37.0588 1902 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1710_2251#" 1 37.0588 1710 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1518_2251#" 1 37.0588 1518 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1326_2251#" 1 37.0588 1326 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1134_2251#" 1 37.0588 1134 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_942_2251#" 1 37.0588 942 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_750_2251#" 1 37.0588 750 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_558_2251#" 1 37.0588 558 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_366_2251#" 1 37.0588 366 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_174_2251#" 1 68.9581 174 2251 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_90_2440#" 5 832.98 90 2440 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 147000 5020 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_846_775#" "m1_90_1210#" 9.66109
+cap "m1_462_775#" "m1_462_1633#" 2.99882
+cap "m1_942_157#" "m1_942_1015#" 2.99882
+cap "m1_90_590#" "m1_1518_157#" 9.73187
+cap "m1_90_590#" "m1_1806_397#" 80.5091
+cap "m1_90_590#" "m1_1806_775#" 75.9086
+cap "m1_90_590#" "m1_1134_1015#" 9.66109
+cap "m1_90_1830#" "m1_2382_2011#" 85.7032
+cap "m1_90_1830#" "m1_1134_2251#" 9.80369
+cap "m1_1230_397#" "m1_1230_775#" 10.2687
+cap "m1_2094_1015#" "m1_90_1210#" 75.9086
+cap "m1_846_2011#" "m1_1038_2011#" 99.4714
+cap "m1_750_2251#" "m1_90_2440#" 91.6138
+cap "m1_1326_1015#" "m1_1326_1393#" 10.2687
+cap "m1_1998_1633#" "m1_1998_775#" 2.99882
+cap "m1_1518_1015#" "m1_90_1210#" 75.9086
+cap "m1_1902_1015#" "m1_1710_1015#" 99.4714
+cap "m1_1422_775#" "m1_1614_775#" 99.4714
+cap "m1_846_2011#" "m1_654_2011#" 99.4714
+cap "m1_90_1210#" "m1_558_1015#" 75.9086
+cap "m1_2382_1633#" "m1_90_1210#" 9.73187
+cap "m1_1038_1633#" "m1_846_1633#" 99.4714
+cap "m1_750_2251#" "m1_942_2251#" 99.4714
+cap "m1_90_1830#" "m1_1998_1633#" 71.8054
+cap "m1_2190_2011#" "m1_2190_1633#" 10.2687
+cap "m1_2286_157#" "m1_2478_157#" 99.4714
+cap "m1_2094_157#" "m1_90_70#" 71.8054
+cap "m1_174_1393#" "m1_366_1393#" 99.4714
+cap "m1_750_1015#" "m1_942_1015#" 99.4714
+cap "m1_366_1393#" "m1_366_2251#" 2.99882
+cap "m1_78_397#" "m1_78_775#" 11.9613
+cap "m1_1038_1633#" "m1_90_1210#" 9.73187
+cap "m1_174_1015#" "m1_174_1393#" 10.2687
+cap "m1_90_1210#" "m1_2286_1015#" 75.9086
+cap "m1_1230_2011#" "m1_90_2440#" 9.87658
+cap "m1_174_1015#" "m1_174_157#" 2.99882
+cap "m1_90_70#" "m1_2190_397#" 9.59134
+cap "m1_2190_775#" "m1_2190_397#" 10.2687
+cap "m1_1230_397#" "m1_90_70#" 9.59134
+cap "m1_1806_397#" "m1_1998_397#" 99.4714
+cap "m1_90_590#" "m1_558_157#" 9.73187
+cap "m1_90_590#" "m1_78_775#" 63.2571
+cap "m1_654_775#" "m1_654_1633#" 2.99882
+cap "m1_90_1830#" "m1_462_1633#" 71.8054
+cap "m1_1806_775#" "m1_1998_775#" 99.4714
+cap "m1_90_1830#" "m1_750_2251#" 9.80369
+cap "m1_2382_775#" "m1_2382_397#" 10.2687
+cap "m1_1038_775#" "m1_846_775#" 99.4714
+cap "m1_90_590#" "m1_1902_1015#" 9.66109
+cap "m1_90_590#" "m1_174_157#" 9.73187
+cap "m1_2190_2011#" "m1_1998_2011#" 99.4714
+cap "m1_1230_2011#" "m1_1230_1633#" 10.2687
+cap "m1_2094_1393#" "m1_2094_2251#" 2.99882
+cap "m1_1998_1633#" "m1_90_1210#" 9.73187
+cap "m1_1422_1633#" "m1_1230_1633#" 99.4714
+cap "m1_2286_1393#" "m1_90_1830#" 9.59134
+cap "m1_366_1015#" "m1_366_1393#" 10.2687
+cap "m1_90_590#" "m1_2286_157#" 9.73187
+cap "m1_1614_397#" "m1_1614_775#" 10.2687
+cap "m1_90_590#" "m1_942_157#" 9.73187
+cap "m1_846_775#" "m1_654_775#" 99.4714
+cap "m1_654_2011#" "m1_654_1633#" 10.2687
+cap "m1_654_397#" "m1_90_70#" 9.59134
+cap "m1_90_590#" "m1_1422_775#" 75.9086
+cap "m1_90_590#" "m1_942_1015#" 9.66109
+cap "m1_1230_2011#" "m1_90_1830#" 85.7032
+cap "m1_2478_1015#" "m1_2286_1015#" 99.4714
+cap "m1_270_1633#" "m1_462_1633#" 99.4714
+cap "m1_366_2251#" "m1_90_2440#" 91.6138
+cap "m1_90_590#" "m1_2382_397#" 80.5091
+cap "m1_174_1015#" "m1_366_1015#" 99.4714
+cap "m1_1710_157#" "m1_1902_157#" 99.4714
+cap "m1_1422_397#" "m1_90_70#" 9.59134
+cap "m1_1998_2011#" "m1_90_2440#" 9.87658
+cap "m1_90_1210#" "m1_462_1633#" 9.73187
+cap "m1_1422_1633#" "m1_90_1830#" 71.8054
+cap "m1_558_2251#" "m1_750_2251#" 99.4714
+cap "m1_2094_157#" "m1_2094_1015#" 2.99882
+cap "m1_1038_775#" "m1_1038_1633#" 2.99882
+cap "m1_90_590#" "m1_1614_775#" 75.9086
+cap "m1_1326_1015#" "m1_1518_1015#" 99.4714
+cap "m1_2190_1633#" "m1_90_1830#" 71.8054
+cap "m1_1806_1633#" "m1_90_1830#" 71.8054
+cap "m1_1134_1393#" "m1_90_1830#" 9.59134
+cap "m1_1518_157#" "m1_1710_157#" 99.4714
+cap "m1_1806_775#" "m1_90_1210#" 9.66109
+cap "m1_2286_2251#" "m1_2286_1393#" 2.99882
+cap "m1_750_1393#" "m1_750_2251#" 2.99882
+cap "m1_90_590#" "m1_366_1015#" 9.66109
+cap "m1_90_590#" "m1_750_1015#" 9.66109
+cap "m1_1134_1015#" "m1_90_1210#" 75.9086
+cap "m1_78_775#" "m1_78_1633#" 3.52747
+cap "m1_90_590#" "m1_2478_157#" 8.38022
+cap "m1_2286_1393#" "m1_90_1210#" 80.5091
+cap "m1_654_397#" "m1_654_775#" 10.2687
+cap "m1_90_590#" "m1_1710_1015#" 9.66109
+cap "m1_1326_157#" "m1_1518_157#" 99.4714
+cap "m1_78_2011#" "m1_270_2011#" 99.4714
+cap "m1_1326_2251#" "m1_90_2440#" 91.6138
+cap "m1_174_1393#" "m1_90_1830#" 9.59134
+cap "m1_78_2011#" "m1_90_2440#" 8.23048
+cap "m1_1134_157#" "m1_1134_1015#" 2.99882
+cap "m1_90_1830#" "m1_366_2251#" 9.80369
+cap "m1_90_590#" "m1_2382_775#" 75.9086
+cap "m1_2094_2251#" "m1_90_2440#" 91.6138
+cap "m1_1806_1633#" "m1_1806_2011#" 10.2687
+cap "m1_1422_1633#" "m1_90_1210#" 9.73187
+cap "m1_462_2011#" "m1_270_2011#" 99.4714
+cap "m1_558_157#" "m1_750_157#" 99.4714
+cap "m1_90_1830#" "m1_1998_2011#" 85.7032
+cap "m1_1038_1633#" "m1_1038_2011#" 10.2687
+cap "m1_90_590#" "m1_1614_397#" 80.5091
+cap "m1_90_590#" "m1_174_1015#" 9.66109
+cap "m1_1806_1633#" "m1_90_1210#" 9.73187
+cap "m1_462_2011#" "m1_90_2440#" 9.87658
+cap "m1_1902_157#" "m1_90_70#" 71.8054
+cap "m1_2190_1633#" "m1_90_1210#" 9.73187
+cap "m1_1230_397#" "m1_1422_397#" 99.4714
+cap "m1_1134_1393#" "m1_90_1210#" 80.5091
+cap "m1_558_157#" "m1_366_157#" 99.4714
+cap "m1_90_590#" "m1_78_397#" 67.0909
+cap "m1_1902_2251#" "m1_2094_2251#" 99.4714
+cap "m1_90_1210#" "m1_78_775#" 8.05091
+cap "m1_1518_157#" "m1_90_70#" 71.8054
+cap "m1_942_1393#" "m1_1134_1393#" 99.4714
+cap "m1_1806_397#" "m1_90_70#" 9.59134
+cap "m1_2094_1015#" "m1_2286_1015#" 99.4714
+cap "m1_558_1393#" "m1_366_1393#" 99.4714
+cap "m1_1326_2251#" "m1_90_1830#" 9.80369
+cap "m1_2286_1393#" "m1_2478_1393#" 99.4714
+cap "m1_174_157#" "m1_366_157#" 99.4714
+cap "m1_1902_1015#" "m1_90_1210#" 75.9086
+cap "m1_654_1633#" "m1_462_1633#" 99.4714
+cap "m1_90_590#" "m1_1038_397#" 80.5091
+cap "m1_174_1393#" "m1_90_1210#" 80.5091
+cap "m1_1806_2011#" "m1_1998_2011#" 99.4714
+cap "m1_750_157#" "m1_942_157#" 99.4714
+cap "m1_78_2011#" "m1_90_1830#" 71.4194
+cap "m1_78_2011#" "m1_78_1633#" 11.9613
+cap "m1_90_590#" "m1_462_775#" 75.9086
+cap "m1_366_2251#" "m1_558_2251#" 99.4714
+cap "m1_2094_2251#" "m1_90_1830#" 9.80369
+cap "m1_2190_2011#" "m1_90_2440#" 9.87658
+cap "m1_2094_157#" "m1_1902_157#" 99.4714
+cap "m1_2094_1393#" "m1_90_1830#" 9.59134
+cap "m1_2382_1633#" "m1_2382_2011#" 10.2687
+cap "m1_1134_1393#" "m1_1326_1393#" 99.4714
+cap "m1_462_2011#" "m1_90_1830#" 85.7032
+cap "m1_1422_775#" "m1_90_1210#" 9.66109
+cap "m1_942_1015#" "m1_90_1210#" 75.9086
+cap "m1_90_1830#" "m1_366_1393#" 9.59134
+cap "m1_2190_775#" "m1_2190_1633#" 2.99882
+cap "m1_1422_1633#" "m1_1614_1633#" 99.4714
+cap "m1_1230_2011#" "m1_1422_2011#" 99.4714
+cap "m1_1326_1015#" "m1_1134_1015#" 99.4714
+cap "m1_750_157#" "m1_750_1015#" 2.99882
+cap "m1_942_1393#" "m1_942_1015#" 10.2687
+cap "m1_90_590#" "m1_846_397#" 80.5091
+cap "m1_270_2011#" "m1_90_2440#" 9.87658
+cap "m1_270_775#" "m1_78_775#" 99.4714
+cap "m1_1806_1633#" "m1_1614_1633#" 99.4714
+cap "m1_942_157#" "m1_1134_157#" 99.4714
+cap "m1_558_157#" "m1_90_70#" 71.8054
+cap "m1_1038_397#" "m1_846_397#" 99.4714
+cap "m1_1230_775#" "m1_1422_775#" 99.4714
+cap "m1_90_1210#" "m1_1614_775#" 9.66109
+cap "m1_1422_1633#" "m1_1422_2011#" 10.2687
+cap "m1_90_590#" "m1_1998_397#" 80.5091
+cap "m1_90_590#" "m1_462_397#" 80.5091
+cap "m1_2286_2251#" "m1_2094_2251#" 99.4714
+cap "m1_366_1015#" "m1_366_157#" 2.99882
+cap "m1_90_590#" "m1_1998_775#" 75.9086
+cap "m1_462_397#" "m1_462_775#" 10.2687
+cap "m1_750_1015#" "m1_90_1210#" 75.9086
+cap "m1_366_1015#" "m1_90_1210#" 75.9086
+cap "m1_942_2251#" "m1_90_2440#" 91.6138
+cap "m1_90_70#" "m1_174_157#" 71.8054
+cap "m1_2190_2011#" "m1_90_1830#" 85.7032
+cap "m1_1710_157#" "m1_1710_1015#" 2.99882
+cap "m1_2094_1393#" "m1_90_1210#" 80.5091
+cap "m1_1710_2251#" "m1_90_2440#" 91.6138
+cap "m1_1710_1015#" "m1_90_1210#" 75.9086
+cap "m1_1902_2251#" "m1_90_2440#" 91.6138
+cap "m1_1902_1393#" "m1_1902_1015#" 10.2687
+cap "m1_750_1393#" "m1_750_1015#" 10.2687
+cap "m1_1518_157#" "m1_1518_1015#" 2.99882
+cap "m1_1230_2011#" "m1_1038_2011#" 99.4714
+cap "m1_2286_157#" "m1_90_70#" 71.8054
+cap "m1_90_1210#" "m1_366_1393#" 80.5091
+cap "m1_942_157#" "m1_90_70#" 71.8054
+cap "m1_2382_775#" "m1_90_1210#" 9.66109
+cap "m1_1326_2251#" "m1_1326_1393#" 2.99882
+cap "m1_1902_2251#" "m1_1710_2251#" 99.4714
+cap "m1_174_1393#" "m1_174_2251#" 2.99882
+cap "m1_270_2011#" "m1_90_1830#" 85.7032
+cap "m1_1710_1015#" "m1_1710_1393#" 10.2687
+cap "m1_270_397#" "m1_78_397#" 99.4714
+cap "m1_90_70#" "m1_2382_397#" 9.59134
+cap "m1_174_1015#" "m1_90_1210#" 75.9086
+cap "m1_1518_1393#" "m1_90_1830#" 9.59134
+cap "m1_174_2251#" "m1_366_2251#" 99.4714
+cap "m1_90_1830#" "m1_90_2440#" 196.533
+cap "m1_90_590#" "m1_750_157#" 9.73187
+cap "m1_90_1830#" "m1_558_1393#" 9.59134
+cap "m1_1998_397#" "m1_1998_775#" 10.2687
+cap "m1_90_590#" "m1_270_397#" 80.5091
+cap "m1_90_1830#" "m1_942_2251#" 9.80369
+cap "m1_2286_1393#" "m1_2286_1015#" 10.2687
+cap "m1_2478_157#" "m1_2478_1015#" 3.52747
+cap "m1_1710_2251#" "m1_90_1830#" 9.80369
+cap "m1_1614_1633#" "m1_1614_775#" 2.99882
+cap "m1_90_590#" "m1_1710_157#" 9.73187
+cap "m1_90_590#" "m1_366_157#" 9.73187
+cap "m1_1902_2251#" "m1_90_1830#" 9.80369
+cap "m1_2094_157#" "m1_2286_157#" 99.4714
+cap "m1_90_590#" "m1_90_1210#" 192.351
+cap "m1_2478_157#" "m1_90_70#" 61.8324
+cap "m1_2478_2251#" "m1_90_2440#" 78.8897
+cap "m1_1230_1633#" "m1_90_1830#" 71.8054
+cap "m1_2190_1633#" "m1_2382_1633#" 99.4714
+cap "m1_270_1633#" "m1_270_2011#" 10.2687
+cap "m1_462_775#" "m1_90_1210#" 9.66109
+cap "m1_90_590#" "m1_1326_157#" 9.73187
+cap "m1_1806_2011#" "m1_90_2440#" 9.87658
+cap "m1_2286_2251#" "m1_90_2440#" 91.6138
+cap "m1_558_157#" "m1_558_1015#" 2.99882
+cap "m1_90_590#" "m1_1134_157#" 9.73187
+cap "m1_90_590#" "m1_1230_775#" 75.9086
+cap "m1_1902_1015#" "m1_2094_1015#" 99.4714
+cap "m1_1902_1393#" "m1_2094_1393#" 99.4714
+cap "m1_2190_775#" "m1_2382_775#" 99.4714
+cap "m1_1518_1393#" "m1_90_1210#" 80.5091
+cap "m1_90_1830#" "m1_78_1633#" 59.8378
+cap "m1_558_2251#" "m1_90_2440#" 91.6138
+cap "m1_2190_397#" "m1_2382_397#" 99.4714
+cap "m1_1614_397#" "m1_90_70#" 9.59134
+cap "m1_558_1393#" "m1_90_1210#" 80.5091
+cap "m1_558_1393#" "m1_558_2251#" 2.99882
+cap "m1_1518_2251#" "m1_1326_2251#" 99.4714
+cap "m1_846_2011#" "m1_90_2440#" 9.87658
+cap "m1_1134_1393#" "m1_1134_2251#" 2.99882
+cap "m1_462_397#" "m1_270_397#" 99.4714
+cap "m1_90_70#" "m1_78_397#" 7.99278
+cap "m1_1518_1393#" "m1_1710_1393#" 99.4714
+cap "m1_942_1393#" "m1_942_2251#" 2.99882
+cap "m1_750_1393#" "m1_558_1393#" 99.4714
+cap "m1_1614_2011#" "m1_90_2440#" 9.87658
+cap "m1_90_590#" "m1_2478_1015#" 8.31927
+cap "m1_1230_1633#" "m1_90_1210#" 9.73187
+cap "m1_2478_2251#" "m1_90_1830#" 8.44207
+cap "m1_90_590#" "m1_270_775#" 75.9086
+cap "m1_2190_1633#" "m1_1998_1633#" 99.4714
+cap "m1_1806_1633#" "m1_1998_1633#" 99.4714
+cap "m1_90_590#" "m1_90_70#" 192.351
+cap "m1_90_1210#" "m1_1998_775#" 9.66109
+cap "m1_90_590#" "m1_2190_775#" 75.9086
+cap "m1_1038_397#" "m1_90_70#" 9.59134
+cap "m1_270_775#" "m1_462_775#" 99.4714
+cap "m1_846_1633#" "m1_90_1830#" 71.8054
+cap "m1_270_1633#" "m1_90_1830#" 71.8054
+cap "m1_1806_2011#" "m1_90_1830#" 85.7032
+cap "m1_1806_775#" "m1_1806_397#" 10.2687
+cap "m1_1710_2251#" "m1_1710_1393#" 2.99882
+cap "m1_1518_1393#" "m1_1326_1393#" 99.4714
+cap "m1_270_1633#" "m1_78_1633#" 99.4714
+cap "m1_2286_2251#" "m1_90_1830#" 9.80369
+cap "m1_2286_157#" "m1_2286_1015#" 2.99882
+cap "m1_1230_775#" "m1_1230_1633#" 2.99882
+cap "m1_90_1830#" "m1_90_1210#" 192.351
+cap "m1_90_1210#" "m1_78_1633#" 8.10989
+cap "m1_90_590#" "m1_1038_775#" 75.9086
+cap "m1_90_1830#" "m1_558_2251#" 9.80369
+cap "m1_1422_397#" "m1_1422_775#" 10.2687
+cap "m1_1038_775#" "m1_1038_397#" 10.2687
+cap "m1_2094_1393#" "m1_2094_1015#" 10.2687
+cap "m1_942_1393#" "m1_90_1830#" 9.59134
+cap "m1_846_2011#" "m1_90_1830#" 85.7032
+cap "m1_462_2011#" "m1_654_2011#" 99.4714
+cap "m1_750_1393#" "m1_90_1830#" 9.59134
+cap "m1_1518_1015#" "m1_1710_1015#" 99.4714
+cap "m1_750_1015#" "m1_558_1015#" 99.4714
+cap "m1_366_1015#" "m1_558_1015#" 99.4714
+cap "m1_2286_2251#" "m1_2478_2251#" 99.4714
+cap "m1_1998_1633#" "m1_1998_2011#" 10.2687
+cap "m1_1710_1393#" "m1_90_1830#" 9.59134
+cap "m1_90_590#" "m1_1326_1015#" 9.66109
+cap "m1_90_70#" "m1_846_397#" 9.59134
+cap "m1_90_590#" "m1_2094_157#" 9.73187
+cap "m1_90_590#" "m1_654_775#" 75.9086
+cap "m1_1614_2011#" "m1_90_1830#" 85.7032
+cap "m1_1806_1633#" "m1_1806_775#" 2.99882
+cap "m1_1326_2251#" "m1_1134_2251#" 99.4714
+cap "m1_1422_2011#" "m1_90_2440#" 9.87658
+cap "m1_1998_397#" "m1_90_70#" 9.59134
+cap "m1_654_775#" "m1_462_775#" 99.4714
+cap "m1_846_1633#" "m1_90_1210#" 9.73187
+cap "m1_462_397#" "m1_90_70#" 9.59134
+cap "m1_1902_1015#" "m1_1902_157#" 2.99882
+cap "m1_1134_1393#" "m1_1134_1015#" 10.2687
+cap "m1_270_1633#" "m1_90_1210#" 9.73187
+cap "m1_174_2251#" "m1_90_2440#" 91.6138
+cap "m1_2382_775#" "m1_2382_1633#" 2.99882
+cap "m1_90_590#" "m1_2190_397#" 80.5091
+cap "m1_90_590#" "m1_1230_397#" 80.5091
+cap "m1_90_1830#" "m1_1326_1393#" 9.59134
+cap "m1_1902_1393#" "m1_1902_2251#" 2.99882
+cap "m1_2190_775#" "m1_1998_775#" 99.4714
+cap "m1_90_590#" "m1_846_775#" 75.9086
+cap "m1_846_2011#" "m1_846_1633#" 10.2687
+cap "m1_1038_397#" "m1_1230_397#" 99.4714
+cap "m1_2478_1393#" "m1_90_1830#" 8.25921
+cap "m1_1518_1393#" "m1_1518_2251#" 2.99882
+cap "m1_942_1393#" "m1_90_1210#" 80.5091
+cap "m1_750_1393#" "m1_90_1210#" 80.5091
+cap "m1_1518_2251#" "m1_90_2440#" 91.6138
+cap "m1_90_590#" "m1_2094_1015#" 9.66109
+cap "m1_1614_2011#" "m1_1806_2011#" 99.4714
+cap "m1_1230_775#" "m1_90_1210#" 9.66109
+cap "m1_90_590#" "m1_1518_1015#" 9.66109
+cap "m1_1710_1393#" "m1_90_1210#" 80.5091
+cap "m1_1614_1633#" "m1_90_1830#" 71.8054
+cap "m1_1422_397#" "m1_1614_397#" 99.4714
+cap "m1_1902_1393#" "m1_90_1830#" 9.59134
+cap "m1_1038_2011#" "m1_90_2440#" 9.87658
+cap "m1_750_1393#" "m1_942_1393#" 99.4714
+cap "m1_90_590#" "m1_558_1015#" 9.66109
+cap "m1_2478_2251#" "m1_2478_1393#" 3.52747
+cap "m1_1326_157#" "m1_1134_157#" 99.4714
+cap "m1_1710_2251#" "m1_1518_2251#" 99.4714
+cap "m1_90_1830#" "m1_654_1633#" 71.8054
+cap "m1_1422_2011#" "m1_90_1830#" 85.7032
+cap "m1_750_157#" "m1_90_70#" 71.8054
+cap "m1_846_775#" "m1_846_397#" 10.2687
+cap "m1_90_590#" "m1_654_397#" 80.5091
+cap "m1_942_1015#" "m1_1134_1015#" 99.4714
+cap "m1_90_1830#" "m1_174_2251#" 9.80369
+cap "m1_654_2011#" "m1_90_2440#" 9.87658
+cap "m1_270_397#" "m1_270_775#" 10.2687
+cap "m1_1326_1393#" "m1_90_1210#" 80.5091
+cap "m1_1518_1015#" "m1_1518_1393#" 10.2687
+cap "m1_1998_397#" "m1_2190_397#" 99.4714
+cap "m1_270_397#" "m1_90_70#" 9.59134
+cap "m1_270_1633#" "m1_270_775#" 2.99882
+cap "m1_90_590#" "m1_2286_1015#" 9.66109
+cap "m1_2190_2011#" "m1_2382_2011#" 99.4714
+cap "m1_90_590#" "m1_1422_397#" 80.5091
+cap "m1_2478_1015#" "m1_90_1210#" 65.3657
+cap "m1_2478_1393#" "m1_90_1210#" 69.3273
+cap "m1_1710_157#" "m1_90_70#" 71.8054
+cap "m1_90_70#" "m1_366_157#" 71.8054
+cap "m1_270_775#" "m1_90_1210#" 9.66109
+cap "m1_1806_775#" "m1_1614_775#" 99.4714
+cap "m1_2190_775#" "m1_90_1210#" 9.66109
+cap "m1_462_2011#" "m1_462_1633#" 10.2687
+cap "m1_1518_2251#" "m1_90_1830#" 9.80369
+cap "m1_558_1393#" "m1_558_1015#" 10.2687
+cap "m1_1422_1633#" "m1_1422_775#" 2.99882
+cap "m1_1614_1633#" "m1_90_1210#" 9.73187
+cap "m1_1326_157#" "m1_90_70#" 71.8054
+cap "m1_846_1633#" "m1_654_1633#" 99.4714
+cap "m1_1038_775#" "m1_90_1210#" 9.66109
+cap "m1_1902_1393#" "m1_90_1210#" 80.5091
+cap "m1_1134_157#" "m1_90_70#" 71.8054
+cap "m1_1038_2011#" "m1_90_1830#" 85.7032
+cap "m1_654_397#" "m1_846_397#" 99.4714
+cap "m1_90_1210#" "m1_654_1633#" 9.73187
+cap "m1_2094_1393#" "m1_2286_1393#" 99.4714
+cap "m1_2382_2011#" "m1_90_2440#" 9.87658
+cap "m1_1134_2251#" "m1_90_2440#" 91.6138
+cap "m1_654_2011#" "m1_90_1830#" 85.7032
+cap "m1_462_397#" "m1_654_397#" 99.4714
+cap "m1_1038_1633#" "m1_1230_1633#" 99.4714
+cap "m1_1614_2011#" "m1_1614_1633#" 10.2687
+cap "m1_1038_775#" "m1_1230_775#" 99.4714
+cap "m1_1902_1393#" "m1_1710_1393#" 99.4714
+cap "m1_654_775#" "m1_90_1210#" 9.66109
+cap "m1_1326_1015#" "m1_90_1210#" 75.9086
+cap "m1_1134_2251#" "m1_942_2251#" 99.4714
+cap "m1_1614_397#" "m1_1806_397#" 99.4714
+cap "m1_2478_1393#" "m1_2478_1015#" 11.9613
+cap "m1_2382_1633#" "m1_90_1830#" 71.8054
+cap "m1_846_775#" "m1_846_1633#" 2.99882
+cap "m1_1614_2011#" "m1_1422_2011#" 99.4714
+cap "m1_90_590#" "m1_1902_157#" 9.73187
+cap "m1_1326_157#" "m1_1326_1015#" 2.99882
+cap "m1_1038_1633#" "m1_90_1830#" 71.8054
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 95.5744
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" -3.67345
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 5.28235
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" -33.5455
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" 7.15956
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 9.3218
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -5.9927
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" 40.8529
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" -2.07982
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -8.22564
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 0.797415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" -1.35413
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" 38.3345
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -2.07982
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" 2.51284
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 16.3879
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 7.85333
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 61.3894
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -0.677064
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" -3.81382
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 4.52919
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" 33.5073
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" 42.1235
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" -5.1366
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 7.99269
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -20.4554
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" -24.6702
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" -2.71448
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" -6.43211
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" 16.6287
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 0.797415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" 18.4193
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 58.9311
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -2.71448
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -3.21606
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 16.3879
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 6.73143
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" -4.44757
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" 38.1347
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" 19.1415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" -0.176888
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" 0.59478
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" -0.175818
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" -31.9896
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 90.913
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" 40.6669
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" 40.6517
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" -28.6811
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" 50.1331
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" 16.3879
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" 6.71285
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 63.8477
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 5.2671
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" -2.52023
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 1.24291
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -3.69414
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" 1.10134e-13
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 0.797415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" 5.28235
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -0.677064
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" 8.22904
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" -2.07982
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" -3.81382
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -2.08595
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" -13.846
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -1.35413
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" 19.7497
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" -2.07982
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" -2.71448
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" 16.3879
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" 31.6039
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" 39.5481
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 59.3629
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" 4.51466
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" 1.06569
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -28.5136
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" -26.6169
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" -24.6
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" 3.01981e-14
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" 46.4118
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" 0.797415
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" -7.55659
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" 4.52919
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -3.21606
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" 38.1828
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" 49.9274
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" 0.792985
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" -5.47064
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" 48.2871
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" -11.868
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" 18.9387
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" 38.3168
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" -2.05533
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" -1.86028
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" -6.48391
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -2.71448
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" -6.43211
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" -49.2
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" -3.05761
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" 82.9751
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" -32.2078
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" -3.89312
+cap "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" 0.792985
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" "m1_1998_775#" 402.777 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 659928 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_1149#" -17753.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -28387308 -2704 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_1149#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_1149#" "m1_90_2440#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_531#" -13697.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -21394092 -4872 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_531#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_531#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_639#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_639#" "m1_90_1830#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_109#" "m1_2382_1633#" 443.057 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 769026 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_109#" "m1_1134_1393#" 46.3984 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 106962 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n1127#" "m1_1326_157#" -12.7925 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20592 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_n87#" 974.819 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1520384 -5304 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_21#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_21#" "m1_90_1210#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_727#" "m1_1134_2251#" 187.161 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 327828 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_727#" "m1_1614_2011#" 338.396 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 568140 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_109#" "m1_174_1393#" 469.031 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 809682 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_727#" "m1_174_2251#" 1374.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2217108 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_109#" "m1_1518_1393#" 60.5516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 128922 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_109#" "m1_1902_1393#" 241.713 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 410010 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n1127#" "m1_462_397#" 1168.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1855482 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_109#" "m1_2478_1393#" 516.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 831642 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n509#" "m1_270_775#" 627.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1008264 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n509#" "m1_2382_775#" 616.352 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1037784 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_n509#" "m1_1326_1015#" -28.0481 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4536 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n1127#" "m1_2478_157#" 1635.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2569098 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_n705#" -13889.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -21877788 -4896 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n705#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n705#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1023_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_831_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_639_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_447_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_255_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_63_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n321_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n513_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n897_n597#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1089_n597#" "m1_90_590#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_109#" "m1_462_1633#" 368.277 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 606522 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n1127#" "m1_1230_397#" 69.2668 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150522 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n509#" "m1_1710_1015#" 215.108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 368880 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_n1215#" -14637.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -23160234 -2574 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_927_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_735_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_543_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_351_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_159_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n33_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n417_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n801_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n993_n1215#" "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n1215#" "m1_90_70#"
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n509#" "m1_2286_1015#" 580.401 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 935664 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n509#" "m1_846_775#" 261.987 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 441480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_727#" "m1_654_2011#" 787.401 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1264812 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_727#" "m1_1518_2251#" 225.212 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 386868 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n1127#" "m1_366_157#" 1314.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2076258 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" "m1_78_397#" 1719.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2707962 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n509#" "m1_1614_775#" 159.249 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 282072 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_109#" "m1_366_1393#" 408.721 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 669138 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_109#" "m1_78_1633#" 551.773 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 887610 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_109#" "m1_558_1393#" 318.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 528594 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_727#" "m1_366_2251#" 1161.27 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1839252 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_109#" "m1_1326_1393#" -30.336 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8064 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_109#" "m1_942_1393#" 136.979 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 247506 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_15_727#" "m1_1326_2251#" -15.2144 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17064 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_727#" "m1_2094_2251#" 955.797 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1520436 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n1127#" "m1_1134_157#" 215.417 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 371298 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_109#" "m1_846_1633#" 187.115 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 325434 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n945_n509#" "m1_366_1015#" 561.375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 906144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_727#" "m1_846_2011#" 543.873 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 886956 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_727#" "m1_1902_2251#" 712.269 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1142580 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n509#" "m1_750_1015#" 317.847 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 528288 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_109#" "m1_1614_1633#" 110.688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206850 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_n1127#" "m1_2382_397#" 1455.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2348322 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n509#" "m1_2190_775#" 524.541 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 848856 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n509#" "m1_1422_775#" 37.4849 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 93144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n509#" "m1_1038_775#" 140.223 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 252552 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_727#" "m1_1806_2011#" 581.924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 945996 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_n1127#" "m1_1038_397#" 343.978 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 576762 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_n1127#" "m1_270_397#" 1442.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2281722 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1071_727#" "m1_2382_2011#" 1282.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2079564 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_n1127#" "m1_2286_157#" 1357.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2142858 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n509#" "m1_1518_1015#" 93.3443 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 179952 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_109#" "m1_654_1633#" 277.696 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 465978 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n1127#" "m1_1902_157#" 807.764 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1290378 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_591_n509#" "m1_1902_1015#" 336.873 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 557808 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_109#" "m1_2190_1633#" 382.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 628482 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_727#" "m1_2190_2011#" 1068.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1701708 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n509#" "m1_654_775#" 383.751 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 630408 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_n509#" "m1_2478_1015#" 705.565 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1124592 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n177_n509#" "m1_1134_1015#" 74.3187 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 150432 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n1127#" "m1_174_157#" 1558.71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2502498 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_109#" "m1_1710_1393#" 151.132 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 269466 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_727#" "m1_1710_2251#" 468.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 764724 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_727#" "m1_558_2251#" 917.745 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1461396 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_109#" "m1_1230_1633#" 5.95424 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44346 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_727#" "m1_1230_2011#" 56.8164 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 131244 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_109#" "m1_1038_1633#" 96.5348 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 184890 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n273_727#" "m1_1038_2011#" 300.345 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 509100 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_727#" "m1_2286_2251#" 1199.32 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1898292 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n1127#" "m1_1806_397#" 661.614 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1069602 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1137_n509#" "m1_174_1015#" 652.869 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1095072 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n509#" "m1_558_1015#" 439.611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 717216 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_879_n1127#" "m1_2190_397#" 1211.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1922082 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n509#" "m1_942_1015#" 196.083 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 339360 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_109#" "m1_1806_1633#" 201.269 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 347394 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_727#" "m1_750_2251#" 674.217 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1083540 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_n1127#" "m1_942_157#" 490.129 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 797538 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_727#" "m1_1998_2011#" 825.452 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1323852 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n1127#" "m1_2094_157#" 1082.48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1716618 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_399_n1127#" "m1_1710_157#" 533.052 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 864138 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_109#" "m1_1998_1633#" 291.849 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 487938 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_n509#" "m1_462_775#" 505.516 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 819336 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_109#" "m1_2094_1393#" 332.293 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 550554 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n81_n509#" "m1_1230_775#" 18.4592 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 63624 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" "m1_1998_397#" 936.326 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1495842 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_109#" "m1_750_1393#" 227.56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 388050 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n465_n1127#" "m1_846_397#" 618.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1003002 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_727#" "m1_78_2011#" 1520.14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2398380 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_303_n1127#" "m1_1614_397#" 386.902 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 643362 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n509#" "m1_78_775#" 751.443 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1197192 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_727#" "m1_270_2011#" 1274.46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2020524 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1167_727#" "m1_2478_2251#" 1446.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2276148 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1041_109#" "m1_270_1633#" 458.857 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 747066 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_207_n1127#" "m1_1518_157#" 258.341 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 437898 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n561_n1127#" "m1_750_157#" 764.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1223778 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_975_109#" "m1_2286_1393#" 422.874 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 691098 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n849_727#" "m1_462_2011#" 1030.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1642668 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_495_n509#" "m1_1806_775#" 281.013 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 471000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n369_727#" "m1_942_2251#" 430.689 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 705684 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_109#" "m1_1422_1633#" 20.1075 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66306 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_727#" "m1_1422_2011#" 94.8677 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 190284 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_111_n1127#" "m1_1422_397#" 112.191 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 217122 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n657_n1127#" "m1_654_397#" 893.402 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1429242 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_783_n509#" "m1_2094_1015#" 458.637 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 746736 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n753_n1127#" "m1_558_157#" 1039.55 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1650018 -412 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/tia/dis_tran.mag b/mag/tia/dis_tran.mag
new file mode 100644
index 0000000..0aabf01
--- /dev/null
+++ b/mag/tia/dis_tran.mag
@@ -0,0 +1,537 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal1 >>
+rect 90 2440 2540 2500
+rect 174 2251 184 2411
+rect 236 2251 246 2411
+rect 366 2251 376 2411
+rect 428 2251 438 2411
+rect 558 2251 568 2411
+rect 620 2251 630 2411
+rect 750 2251 760 2411
+rect 812 2251 822 2411
+rect 942 2251 952 2411
+rect 1004 2251 1014 2411
+rect 1134 2251 1144 2411
+rect 1196 2251 1206 2411
+rect 1326 2251 1336 2411
+rect 1388 2251 1398 2411
+rect 1518 2251 1528 2411
+rect 1580 2251 1590 2411
+rect 1710 2251 1720 2411
+rect 1772 2251 1782 2411
+rect 1902 2251 1912 2411
+rect 1964 2251 1974 2411
+rect 2094 2251 2104 2411
+rect 2156 2251 2166 2411
+rect 2286 2251 2296 2411
+rect 2348 2251 2358 2411
+rect 2478 2251 2488 2411
+rect 2540 2251 2550 2411
+rect 78 2011 88 2171
+rect 140 2011 150 2171
+rect 270 2011 280 2171
+rect 332 2011 342 2171
+rect 462 2011 472 2171
+rect 524 2011 534 2171
+rect 654 2011 664 2171
+rect 716 2011 726 2171
+rect 846 2011 856 2171
+rect 908 2011 918 2171
+rect 1038 2011 1048 2171
+rect 1100 2011 1110 2171
+rect 1230 2011 1240 2171
+rect 1292 2011 1302 2171
+rect 1422 2011 1432 2171
+rect 1484 2011 1494 2171
+rect 1614 2011 1624 2171
+rect 1676 2011 1686 2171
+rect 1806 2011 1816 2171
+rect 1868 2011 1878 2171
+rect 1998 2011 2008 2171
+rect 2060 2011 2070 2171
+rect 2190 2011 2200 2171
+rect 2252 2011 2262 2171
+rect 2382 2011 2392 2171
+rect 2444 2011 2454 2171
+rect 90 1830 2540 1980
+rect 78 1633 88 1793
+rect 140 1633 150 1793
+rect 270 1633 280 1793
+rect 332 1633 342 1793
+rect 462 1633 472 1793
+rect 524 1633 534 1793
+rect 654 1633 664 1793
+rect 716 1633 726 1793
+rect 846 1633 856 1793
+rect 908 1633 918 1793
+rect 1038 1633 1048 1793
+rect 1100 1633 1110 1793
+rect 1230 1633 1240 1793
+rect 1292 1633 1302 1793
+rect 1422 1633 1432 1793
+rect 1484 1633 1494 1793
+rect 1614 1633 1624 1793
+rect 1676 1633 1686 1793
+rect 1806 1633 1816 1793
+rect 1868 1633 1878 1793
+rect 1998 1633 2008 1793
+rect 2060 1633 2070 1793
+rect 2190 1633 2200 1793
+rect 2252 1633 2262 1793
+rect 2382 1633 2392 1793
+rect 2444 1633 2454 1793
+rect 174 1393 184 1553
+rect 236 1393 246 1553
+rect 366 1393 376 1553
+rect 428 1393 438 1553
+rect 558 1393 568 1553
+rect 620 1393 630 1553
+rect 750 1393 760 1553
+rect 812 1393 822 1553
+rect 942 1393 952 1553
+rect 1004 1393 1014 1553
+rect 1134 1393 1144 1553
+rect 1196 1393 1206 1553
+rect 1326 1393 1336 1553
+rect 1388 1393 1398 1553
+rect 1518 1393 1528 1553
+rect 1580 1393 1590 1553
+rect 1710 1393 1720 1553
+rect 1772 1393 1782 1553
+rect 1902 1393 1912 1553
+rect 1964 1393 1974 1553
+rect 2094 1393 2104 1553
+rect 2156 1393 2166 1553
+rect 2286 1393 2296 1553
+rect 2348 1393 2358 1553
+rect 2478 1393 2488 1553
+rect 2540 1393 2550 1553
+rect 90 1210 2540 1360
+rect 174 1015 184 1175
+rect 236 1015 246 1175
+rect 366 1015 376 1175
+rect 428 1015 438 1175
+rect 558 1015 568 1175
+rect 620 1015 630 1175
+rect 750 1015 760 1175
+rect 812 1015 822 1175
+rect 942 1015 952 1175
+rect 1004 1015 1014 1175
+rect 1134 1015 1144 1175
+rect 1196 1015 1206 1175
+rect 1326 1015 1336 1175
+rect 1388 1015 1398 1175
+rect 1518 1015 1528 1175
+rect 1580 1015 1590 1175
+rect 1710 1015 1720 1175
+rect 1772 1015 1782 1175
+rect 1902 1015 1912 1175
+rect 1964 1015 1974 1175
+rect 2094 1015 2104 1175
+rect 2156 1015 2166 1175
+rect 2286 1015 2296 1175
+rect 2348 1015 2358 1175
+rect 2478 1015 2488 1175
+rect 2540 1015 2550 1175
+rect 78 775 88 935
+rect 140 775 150 935
+rect 270 775 280 935
+rect 332 775 342 935
+rect 462 775 472 935
+rect 524 775 534 935
+rect 654 775 664 935
+rect 716 775 726 935
+rect 846 775 856 935
+rect 908 775 918 935
+rect 1038 775 1048 935
+rect 1100 775 1110 935
+rect 1230 775 1240 935
+rect 1292 775 1302 935
+rect 1422 775 1432 935
+rect 1484 775 1494 935
+rect 1614 775 1624 935
+rect 1676 775 1686 935
+rect 1806 775 1816 935
+rect 1868 775 1878 935
+rect 1998 775 2008 935
+rect 2060 775 2070 935
+rect 2190 775 2200 935
+rect 2252 775 2262 935
+rect 2382 775 2392 935
+rect 2444 775 2454 935
+rect 90 590 2540 740
+rect 78 397 88 557
+rect 140 397 150 557
+rect 270 397 280 557
+rect 332 397 342 557
+rect 462 397 472 557
+rect 524 397 534 557
+rect 654 397 664 557
+rect 716 397 726 557
+rect 846 397 856 557
+rect 908 397 918 557
+rect 1038 397 1048 557
+rect 1100 397 1110 557
+rect 1230 397 1240 557
+rect 1292 397 1302 557
+rect 1422 397 1432 557
+rect 1484 397 1494 557
+rect 1614 397 1624 557
+rect 1676 397 1686 557
+rect 1806 397 1816 557
+rect 1868 397 1878 557
+rect 1998 397 2008 557
+rect 2060 397 2070 557
+rect 2190 397 2200 557
+rect 2252 397 2262 557
+rect 2382 397 2392 557
+rect 2444 397 2454 557
+rect 174 157 184 317
+rect 236 157 246 317
+rect 366 157 376 317
+rect 428 157 438 317
+rect 558 157 568 317
+rect 620 157 630 317
+rect 750 157 760 317
+rect 812 157 822 317
+rect 942 157 952 317
+rect 1004 157 1014 317
+rect 1134 157 1144 317
+rect 1196 157 1206 317
+rect 1326 157 1336 317
+rect 1388 157 1398 317
+rect 1518 157 1528 317
+rect 1580 157 1590 317
+rect 1710 157 1720 317
+rect 1772 157 1782 317
+rect 1902 157 1912 317
+rect 1964 157 1974 317
+rect 2094 157 2104 317
+rect 2156 157 2166 317
+rect 2286 157 2296 317
+rect 2348 157 2358 317
+rect 2478 157 2488 317
+rect 2540 157 2550 317
+rect 90 70 2540 120
+<< via1 >>
+rect 184 2251 236 2411
+rect 376 2251 428 2411
+rect 568 2251 620 2411
+rect 760 2251 812 2411
+rect 952 2251 1004 2411
+rect 1144 2251 1196 2411
+rect 1336 2251 1388 2411
+rect 1528 2251 1580 2411
+rect 1720 2251 1772 2411
+rect 1912 2251 1964 2411
+rect 2104 2251 2156 2411
+rect 2296 2251 2348 2411
+rect 2488 2251 2540 2411
+rect 88 2011 140 2171
+rect 280 2011 332 2171
+rect 472 2011 524 2171
+rect 664 2011 716 2171
+rect 856 2011 908 2171
+rect 1048 2011 1100 2171
+rect 1240 2011 1292 2171
+rect 1432 2011 1484 2171
+rect 1624 2011 1676 2171
+rect 1816 2011 1868 2171
+rect 2008 2011 2060 2171
+rect 2200 2011 2252 2171
+rect 2392 2011 2444 2171
+rect 88 1633 140 1793
+rect 280 1633 332 1793
+rect 472 1633 524 1793
+rect 664 1633 716 1793
+rect 856 1633 908 1793
+rect 1048 1633 1100 1793
+rect 1240 1633 1292 1793
+rect 1432 1633 1484 1793
+rect 1624 1633 1676 1793
+rect 1816 1633 1868 1793
+rect 2008 1633 2060 1793
+rect 2200 1633 2252 1793
+rect 2392 1633 2444 1793
+rect 184 1393 236 1553
+rect 376 1393 428 1553
+rect 568 1393 620 1553
+rect 760 1393 812 1553
+rect 952 1393 1004 1553
+rect 1144 1393 1196 1553
+rect 1336 1393 1388 1553
+rect 1528 1393 1580 1553
+rect 1720 1393 1772 1553
+rect 1912 1393 1964 1553
+rect 2104 1393 2156 1553
+rect 2296 1393 2348 1553
+rect 2488 1393 2540 1553
+rect 184 1015 236 1175
+rect 376 1015 428 1175
+rect 568 1015 620 1175
+rect 760 1015 812 1175
+rect 952 1015 1004 1175
+rect 1144 1015 1196 1175
+rect 1336 1015 1388 1175
+rect 1528 1015 1580 1175
+rect 1720 1015 1772 1175
+rect 1912 1015 1964 1175
+rect 2104 1015 2156 1175
+rect 2296 1015 2348 1175
+rect 2488 1015 2540 1175
+rect 88 775 140 935
+rect 280 775 332 935
+rect 472 775 524 935
+rect 664 775 716 935
+rect 856 775 908 935
+rect 1048 775 1100 935
+rect 1240 775 1292 935
+rect 1432 775 1484 935
+rect 1624 775 1676 935
+rect 1816 775 1868 935
+rect 2008 775 2060 935
+rect 2200 775 2252 935
+rect 2392 775 2444 935
+rect 88 397 140 557
+rect 280 397 332 557
+rect 472 397 524 557
+rect 664 397 716 557
+rect 856 397 908 557
+rect 1048 397 1100 557
+rect 1240 397 1292 557
+rect 1432 397 1484 557
+rect 1624 397 1676 557
+rect 1816 397 1868 557
+rect 2008 397 2060 557
+rect 2200 397 2252 557
+rect 2392 397 2444 557
+rect 184 157 236 317
+rect 376 157 428 317
+rect 568 157 620 317
+rect 760 157 812 317
+rect 952 157 1004 317
+rect 1144 157 1196 317
+rect 1336 157 1388 317
+rect 1528 157 1580 317
+rect 1720 157 1772 317
+rect 1912 157 1964 317
+rect 2104 157 2156 317
+rect 2296 157 2348 317
+rect 2488 157 2540 317
+<< metal2 >>
+rect 184 2411 236 2421
+rect 184 2241 236 2251
+rect 376 2411 428 2421
+rect 376 2241 428 2251
+rect 568 2411 620 2421
+rect 568 2241 620 2251
+rect 760 2411 812 2421
+rect 760 2241 812 2251
+rect 952 2411 1004 2421
+rect 952 2241 1004 2251
+rect 1144 2411 1196 2421
+rect 1144 2241 1196 2251
+rect 1336 2411 1388 2421
+rect 1336 2241 1388 2251
+rect 1528 2411 1580 2421
+rect 1528 2241 1580 2251
+rect 1720 2411 1772 2421
+rect 1720 2241 1772 2251
+rect 1912 2411 1964 2421
+rect 1912 2241 1964 2251
+rect 2104 2411 2156 2421
+rect 2104 2241 2156 2251
+rect 2296 2411 2348 2421
+rect 2296 2241 2348 2251
+rect 2488 2411 2540 2421
+rect 2488 2241 2540 2251
+rect 88 2171 140 2181
+rect 88 2001 140 2011
+rect 280 2171 332 2181
+rect 280 2001 332 2011
+rect 472 2171 524 2181
+rect 472 2001 524 2011
+rect 664 2171 716 2181
+rect 664 2001 716 2011
+rect 856 2171 908 2181
+rect 856 2001 908 2011
+rect 1048 2171 1100 2181
+rect 1048 2001 1100 2011
+rect 1240 2171 1292 2181
+rect 1240 2001 1292 2011
+rect 1432 2171 1484 2181
+rect 1432 2001 1484 2011
+rect 1624 2171 1676 2181
+rect 1624 2001 1676 2011
+rect 1816 2171 1868 2181
+rect 1816 2001 1868 2011
+rect 2008 2171 2060 2181
+rect 2008 2001 2060 2011
+rect 2200 2171 2252 2181
+rect 2200 2001 2252 2011
+rect 2392 2171 2444 2181
+rect 2392 2001 2444 2011
+rect 88 1793 140 1803
+rect 88 1623 140 1633
+rect 280 1793 332 1803
+rect 280 1623 332 1633
+rect 472 1793 524 1803
+rect 472 1623 524 1633
+rect 664 1793 716 1803
+rect 664 1623 716 1633
+rect 856 1793 908 1803
+rect 856 1623 908 1633
+rect 1048 1793 1100 1803
+rect 1048 1623 1100 1633
+rect 1240 1793 1292 1803
+rect 1240 1623 1292 1633
+rect 1432 1793 1484 1803
+rect 1432 1623 1484 1633
+rect 1624 1793 1676 1803
+rect 1624 1623 1676 1633
+rect 1816 1793 1868 1803
+rect 1816 1623 1868 1633
+rect 2008 1793 2060 1803
+rect 2008 1623 2060 1633
+rect 2200 1793 2252 1803
+rect 2200 1623 2252 1633
+rect 2392 1793 2444 1803
+rect 2392 1623 2444 1633
+rect 184 1553 236 1563
+rect 184 1383 236 1393
+rect 376 1553 428 1563
+rect 376 1383 428 1393
+rect 568 1553 620 1563
+rect 568 1383 620 1393
+rect 760 1553 812 1563
+rect 760 1383 812 1393
+rect 952 1553 1004 1563
+rect 952 1383 1004 1393
+rect 1144 1553 1196 1563
+rect 1144 1383 1196 1393
+rect 1336 1553 1388 1563
+rect 1336 1383 1388 1393
+rect 1528 1553 1580 1563
+rect 1528 1383 1580 1393
+rect 1720 1553 1772 1563
+rect 1720 1383 1772 1393
+rect 1912 1553 1964 1563
+rect 1912 1383 1964 1393
+rect 2104 1553 2156 1563
+rect 2104 1383 2156 1393
+rect 2296 1553 2348 1563
+rect 2296 1383 2348 1393
+rect 2488 1553 2540 1563
+rect 2488 1383 2540 1393
+rect 184 1175 236 1185
+rect 184 1005 236 1015
+rect 376 1175 428 1185
+rect 376 1005 428 1015
+rect 568 1175 620 1185
+rect 568 1005 620 1015
+rect 760 1175 812 1185
+rect 760 1005 812 1015
+rect 952 1175 1004 1185
+rect 952 1005 1004 1015
+rect 1144 1175 1196 1185
+rect 1144 1005 1196 1015
+rect 1336 1175 1388 1185
+rect 1336 1005 1388 1015
+rect 1528 1175 1580 1185
+rect 1528 1005 1580 1015
+rect 1720 1175 1772 1185
+rect 1720 1005 1772 1015
+rect 1912 1175 1964 1185
+rect 1912 1005 1964 1015
+rect 2104 1175 2156 1185
+rect 2104 1005 2156 1015
+rect 2296 1175 2348 1185
+rect 2296 1005 2348 1015
+rect 2488 1175 2540 1185
+rect 2488 1005 2540 1015
+rect 88 935 140 945
+rect 88 765 140 775
+rect 280 935 332 945
+rect 280 765 332 775
+rect 472 935 524 945
+rect 472 765 524 775
+rect 664 935 716 945
+rect 664 765 716 775
+rect 856 935 908 945
+rect 856 765 908 775
+rect 1048 935 1100 945
+rect 1048 765 1100 775
+rect 1240 935 1292 945
+rect 1240 765 1292 775
+rect 1432 935 1484 945
+rect 1432 765 1484 775
+rect 1624 935 1676 945
+rect 1624 765 1676 775
+rect 1816 935 1868 945
+rect 1816 765 1868 775
+rect 2008 935 2060 945
+rect 2008 765 2060 775
+rect 2200 935 2252 945
+rect 2200 765 2252 775
+rect 2392 935 2444 945
+rect 2392 765 2444 775
+rect 88 557 140 567
+rect 88 387 140 397
+rect 280 557 332 567
+rect 280 387 332 397
+rect 472 557 524 567
+rect 472 387 524 397
+rect 664 557 716 567
+rect 664 387 716 397
+rect 856 557 908 567
+rect 856 387 908 397
+rect 1048 557 1100 567
+rect 1048 387 1100 397
+rect 1240 557 1292 567
+rect 1240 387 1292 397
+rect 1432 557 1484 567
+rect 1432 387 1484 397
+rect 1624 557 1676 567
+rect 1624 387 1676 397
+rect 1816 557 1868 567
+rect 1816 387 1868 397
+rect 2008 557 2060 567
+rect 2008 387 2060 397
+rect 2200 557 2252 567
+rect 2200 387 2252 397
+rect 2392 557 2444 567
+rect 2392 387 2444 397
+rect 184 317 236 327
+rect 184 147 236 157
+rect 376 317 428 327
+rect 376 147 428 157
+rect 568 317 620 327
+rect 568 147 620 157
+rect 760 317 812 327
+rect 760 147 812 157
+rect 952 317 1004 327
+rect 952 147 1004 157
+rect 1144 317 1196 327
+rect 1144 147 1196 157
+rect 1336 317 1388 327
+rect 1336 147 1388 157
+rect 1528 317 1580 327
+rect 1528 147 1580 157
+rect 1720 317 1772 327
+rect 1720 147 1772 157
+rect 1912 317 1964 327
+rect 1912 147 1964 157
+rect 2104 317 2156 327
+rect 2104 147 2156 157
+rect 2296 317 2348 327
+rect 2296 147 2348 157
+rect 2488 317 2540 327
+rect 2488 147 2540 157
+use sky130_fd_pr__nfet_01v8_RRWALQ  sky130_fd_pr__nfet_01v8_RRWALQ_0
+timestamp 1647868710
+transform 1 0 1314 0 1 1284
+box -1367 -1337 1367 1337
+<< end >>
diff --git a/mag/tia/fb_transistor.ext b/mag/tia/fb_transistor.ext
new file mode 100644
index 0000000..c9b4ff4
--- /dev/null
+++ b/mag/tia/fb_transistor.ext
@@ -0,0 +1,640 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_GYVK57 sky130_fd_pr__pfet_01v8_GYVK57_0 1 0 6637 0 1 4363
+use sky130_fd_pr__nfet_01v8_lvt_62U3RB sky130_fd_pr__nfet_01v8_lvt_62U3RB_0 1 0 6642 0 1 2919
+node "m1_7243_2410#" 1 0 7243 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7047_2410#" 1 0 7047 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6851_2410#" 1 0 6851 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6655_2410#" 1 0 6655 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6459_2410#" 1 0 6459 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6263_2410#" 1 0 6263 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6067_2410#" 1 0 6067 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5871_2410#" 1 0 5871 2410 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7341_2650#" 1 0 7341 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7145_2650#" 1 0 7145 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6949_2650#" 1 0 6949 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6753_2650#" 1 0 6753 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6557_2650#" 1 0 6557 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6361_2650#" 1 0 6361 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6165_2650#" 1 0 6165 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5969_2650#" 1 0 5969 2650 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7341_3028#" 1 0 7341 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7145_3028#" 1 0 7145 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6949_3028#" 1 0 6949 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6753_3028#" 1 0 6753 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6557_3028#" 1 0 6557 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6361_3028#" 1 0 6361 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6165_3028#" 1 0 6165 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5969_3028#" 1 0 5969 3028 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7243_3268#" 1 0 7243 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7047_3268#" 1 0 7047 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6851_3268#" 1 0 6851 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6655_3268#" 1 0 6655 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6459_3268#" 1 0 6459 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6263_3268#" 1 0 6263 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6067_3268#" 1 0 6067 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5871_3268#" 1 0 5871 3268 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7391_4163#" 1 100.67 7391 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7075_4163#" 1 66.1673 7075 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6759_4163#" 1 66.7755 6759 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6443_4163#" 1 65.4846 6443 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6127_4163#" 1 67.7314 6127 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5811_4163#" 1 101.204 5811 4163 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_7233_4403#" 1 96.53 7233 4403 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6917_4403#" 1 70.6095 6917 4403 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6601_4403#" 1 70.8344 6601 4403 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_6285_4403#" 1 69.5413 6285 4403 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_5969_4403#" 1 97.9 5969 4403 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "a_5923_2322#" 1595 251.815 5923 2322 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94908 3008 0 0 48892 2944 80528 2988 0 0 0 0 0 0 0 0 0 0
+node "a_5923_2832#" 1595 251.815 5923 2832 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94908 3008 0 0 48892 2944 80528 2988 0 0 0 0 0 0 0 0 0 0
+node "a_5923_2940#" 1595 251.815 5923 2940 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94908 3008 0 0 48892 2944 80528 2988 0 0 0 0 0 0 0 0 0 0
+node "a_5923_3450#" 1595 251.815 5923 3450 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94908 3008 0 0 48892 2944 80528 2988 0 0 0 0 0 0 0 0 0 0
+node "w_5706_2166#" 5450 0 5706 2166 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "dw_5500_1960#" 43516 15225.6 5500 1960 dnw 0 0 4377600 8400 2258256 15792 0 0 625152 16896 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 287232 16896 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_5923_2322#" "m1_6263_2410#" 83.025
+cap "a_5923_3450#" "m1_7243_3268#" 83.025
+cap "m1_7047_2410#" "w_5706_2166#" 37.4056
+cap "m1_6753_2650#" "m1_6557_2650#" 96.4879
+cap "m1_6067_2410#" "a_5923_2832#" 9.76765
+cap "m1_7145_2650#" "a_5923_2832#" 83.025
+cap "m1_7075_4163#" "m1_7391_4163#" 50.8558
+cap "a_5923_2832#" "m1_6655_2410#" 9.76765
+cap "w_5706_2166#" "m1_6557_2650#" 33.2357
+cap "m1_6851_2410#" "a_5923_2322#" 83.025
+cap "m1_7075_4163#" "m1_6759_4163#" 50.8558
+cap "m1_7341_2650#" "m1_7341_3028#" 20.7632
+cap "m1_5871_3268#" "a_5923_3450#" 23.0625
+cap "m1_6361_2650#" "m1_6557_2650#" 96.4879
+cap "a_5923_2832#" "m1_6263_2410#" 9.76765
+cap "m1_6127_4163#" "m1_6165_3028#" 0.573194
+cap "m1_6949_3028#" "a_5923_2940#" 83.025
+cap "m1_6753_3028#" "a_5923_3450#" 9.76765
+cap "m1_6851_3268#" "w_5706_2166#" 37.4781
+cap "m1_7145_3028#" "a_5923_3450#" 9.76765
+cap "a_5923_2940#" "m1_5969_3028#" 83.025
+cap "a_5923_2940#" "m1_6067_3268#" 9.76765
+cap "m1_6443_4163#" "m1_6127_4163#" 50.8558
+cap "a_5923_3450#" "w_5706_2166#" 890.827
+cap "m1_6851_2410#" "a_5923_2832#" 9.76765
+cap "m1_7075_4163#" "m1_7047_3268#" 1.31245
+cap "a_5923_2322#" "a_5923_2832#" 254.005
+cap "m1_6851_3268#" "m1_6655_3268#" 96.4879
+cap "m1_6459_3268#" "w_5706_2166#" 34.3453
+cap "m1_6753_2650#" "m1_6949_2650#" 96.4879
+cap "m1_6459_2410#" "w_5706_2166#" 37.4056
+cap "m1_7233_4403#" "m1_7243_3268#" 1.71958
+cap "m1_6753_3028#" "m1_6557_3028#" 96.4879
+cap "a_5923_3450#" "m1_6655_3268#" 83.025
+cap "m1_6949_2650#" "w_5706_2166#" 33.2357
+cap "a_5923_2832#" "a_5923_2940#" 2389.54
+cap "m1_5871_3268#" "m1_5871_2410#" 6.27647
+cap "m1_6459_3268#" "m1_6655_3268#" 96.4879
+cap "a_5923_2322#" "m1_6165_2650#" 9.76765
+cap "m1_6557_3028#" "w_5706_2166#" 33.1206
+cap "a_5923_2322#" "dw_5500_1960#" 114.355
+cap "m1_6127_4163#" "a_5923_3450#" 4.10634
+cap "a_5923_3450#" "m1_6165_3028#" 9.76765
+cap "m1_6263_3268#" "a_5923_3450#" 83.025
+cap "w_5706_2166#" "m1_5871_2410#" 81.0316
+cap "m1_7341_2650#" "w_5706_2166#" 72.8013
+cap "m1_6601_4403#" "a_5923_3450#" 2.99526
+cap "m1_6361_3028#" "a_5923_2940#" 83.025
+cap "m1_6263_3268#" "m1_6459_3268#" 96.4879
+cap "a_5923_2940#" "dw_5500_1960#" 4.64401
+cap "a_5923_2832#" "m1_6165_2650#" 83.025
+cap "m1_6443_4163#" "a_5923_3450#" 4.10634
+cap "m1_6443_4163#" "m1_6459_3268#" 1.96867
+cap "a_5923_2940#" "m1_7047_3268#" 9.76765
+cap "a_5923_2832#" "dw_5500_1960#" 4.64401
+cap "m1_6285_4403#" "m1_6263_3268#" 1.22827
+cap "m1_6285_4403#" "m1_6601_4403#" 50.8558
+cap "m1_7145_2650#" "m1_7145_3028#" 10.2687
+cap "a_5923_2940#" "m1_7341_3028#" 23.0625
+cap "m1_6601_4403#" "m1_6557_3028#" 0.261757
+cap "m1_6851_3268#" "a_5923_3450#" 83.025
+cap "m1_6067_2410#" "w_5706_2166#" 37.4056
+cap "m1_7145_2650#" "w_5706_2166#" 33.2357
+cap "m1_6655_2410#" "w_5706_2166#" 37.4056
+cap "m1_6557_3028#" "m1_6557_2650#" 10.2687
+cap "m1_7391_4163#" "m1_7341_3028#" 0.9145
+cap "a_5923_2940#" "m1_7243_3268#" 9.76765
+cap "a_5923_2322#" "m1_7243_2410#" 83.025
+cap "a_5923_3450#" "m1_6459_3268#" 83.025
+cap "m1_6263_2410#" "w_5706_2166#" 37.4056
+cap "m1_6655_2410#" "m1_6655_3268#" 2.99882
+cap "m1_6753_3028#" "m1_6949_3028#" 96.4879
+cap "m1_5871_3268#" "m1_6067_3268#" 96.4879
+cap "m1_6459_2410#" "m1_6459_3268#" 2.99882
+cap "m1_7145_3028#" "m1_6949_3028#" 96.4879
+cap "a_5923_2322#" "m1_5969_2650#" 9.76765
+cap "m1_5871_3268#" "a_5923_2940#" 2.71324
+cap "m1_6917_4403#" "m1_6601_4403#" 50.8558
+cap "m1_5969_4403#" "a_5923_3450#" 2.99526
+cap "a_5923_2322#" "m1_6753_2650#" 9.76765
+cap "m1_6285_4403#" "a_5923_3450#" 2.99526
+cap "m1_6949_3028#" "w_5706_2166#" 32.8664
+cap "m1_5969_2650#" "m1_5969_3028#" 10.2687
+cap "a_5923_3450#" "m1_6557_3028#" 9.76765
+cap "m1_6851_2410#" "w_5706_2166#" 37.4056
+cap "m1_7243_2410#" "a_5923_2832#" 9.76765
+cap "a_5923_2322#" "w_5706_2166#" 921.516
+cap "m1_6753_3028#" "a_5923_2940#" 83.025
+cap "m1_5969_3028#" "w_5706_2166#" 64.3259
+cap "m1_6067_3268#" "w_5706_2166#" 37.4781
+cap "m1_7145_3028#" "a_5923_2940#" 83.025
+cap "a_5923_2322#" "m1_6361_2650#" 9.76765
+cap "m1_6285_4403#" "m1_5969_4403#" 50.8558
+cap "a_5923_2940#" "w_5706_2166#" 267.867
+cap "a_5923_2832#" "m1_5969_2650#" 83.025
+cap "m1_6263_3268#" "m1_6263_2410#" 2.99882
+cap "a_5923_2832#" "m1_6753_2650#" 83.025
+cap "m1_7047_3268#" "m1_7243_3268#" 96.4879
+cap "m1_6753_3028#" "m1_6759_4163#" 1.88335
+cap "a_5923_2832#" "w_5706_2166#" 264.501
+cap "m1_7233_4403#" "a_5923_3450#" 2.99526
+cap "a_5923_2940#" "m1_6655_3268#" 9.76765
+cap "a_5923_2832#" "m1_6361_2650#" 83.025
+cap "m1_6917_4403#" "a_5923_3450#" 2.99526
+cap "m1_5969_2650#" "m1_6165_2650#" 96.4879
+cap "m1_5969_3028#" "m1_6165_3028#" 96.4879
+cap "m1_5871_3268#" "m1_5811_4163#" 0.602449
+cap "m1_6263_3268#" "m1_6067_3268#" 96.4879
+cap "m1_6851_2410#" "m1_7047_2410#" 96.4879
+cap "m1_6165_2650#" "w_5706_2166#" 33.2357
+cap "a_5923_2322#" "m1_7047_2410#" 83.025
+cap "m1_7075_4163#" "a_5923_3450#" 4.10634
+cap "a_5923_2940#" "m1_6165_3028#" 83.025
+cap "m1_6361_3028#" "w_5706_2166#" 33.3332
+cap "m1_6263_3268#" "a_5923_2940#" 9.76765
+cap "m1_6361_2650#" "m1_6165_2650#" 96.4879
+cap "a_5923_2322#" "m1_6557_2650#" 9.76765
+cap "dw_5500_1960#" "w_5706_2166#" 8450.83
+cap "m1_6361_3028#" "m1_6361_2650#" 10.2687
+cap "m1_6459_2410#" "m1_6655_2410#" 96.4879
+cap "m1_7145_2650#" "m1_6949_2650#" 96.4879
+cap "m1_7047_3268#" "w_5706_2166#" 35.027
+cap "m1_7145_3028#" "m1_7341_3028#" 96.4879
+cap "m1_7243_2410#" "m1_7243_3268#" 2.99882
+cap "m1_6851_3268#" "m1_6851_2410#" 2.99882
+cap "m1_7047_2410#" "a_5923_2832#" 9.76765
+cap "m1_6459_2410#" "m1_6263_2410#" 96.4879
+cap "m1_7341_3028#" "w_5706_2166#" 72.7536
+cap "a_5923_2832#" "m1_6557_2650#" 83.025
+cap "m1_6949_3028#" "a_5923_3450#" 9.76765
+cap "m1_6165_2650#" "m1_6165_3028#" 10.2687
+cap "m1_6443_4163#" "m1_6759_4163#" 50.8558
+cap "m1_6067_2410#" "m1_5871_2410#" 96.4879
+cap "m1_7145_2650#" "m1_7341_2650#" 96.4879
+cap "m1_6851_3268#" "a_5923_2940#" 9.76765
+cap "m1_6361_3028#" "m1_6165_3028#" 96.4879
+cap "a_5923_3450#" "m1_5969_3028#" 9.76765
+cap "a_5923_3450#" "m1_6067_3268#" 83.025
+cap "m1_6917_4403#" "m1_7233_4403#" 50.8558
+cap "a_5923_2322#" "m1_6459_2410#" 83.025
+cap "w_5706_2166#" "m1_7243_3268#" 67.0965
+cap "m1_6949_3028#" "m1_6949_2650#" 10.2687
+cap "m1_6127_4163#" "m1_5811_4163#" 50.8558
+cap "a_5923_2940#" "a_5923_3450#" 254.005
+cap "a_5923_2322#" "m1_6949_2650#" 9.76765
+cap "a_5923_2940#" "m1_6459_3268#" 9.76765
+cap "m1_5969_4403#" "m1_5969_3028#" 1.70142
+cap "m1_7243_2410#" "w_5706_2166#" 68.8475
+cap "m1_7047_2410#" "m1_7047_3268#" 2.99882
+cap "m1_5871_3268#" "w_5706_2166#" 81.7775
+cap "m1_6753_3028#" "m1_6753_2650#" 10.2687
+cap "m1_6459_2410#" "a_5923_2832#" 9.76765
+cap "m1_6759_4163#" "a_5923_3450#" 4.10634
+cap "m1_6753_3028#" "w_5706_2166#" 31.4616
+cap "a_5923_2322#" "m1_5871_2410#" 23.0625
+cap "a_5923_2322#" "m1_7341_2650#" 2.71324
+cap "a_5923_2832#" "m1_6949_2650#" 83.025
+cap "a_5923_2940#" "m1_6557_3028#" 83.025
+cap "m1_7145_3028#" "w_5706_2166#" 33.3332
+cap "m1_5969_2650#" "w_5706_2166#" 64.9938
+cap "m1_6753_2650#" "w_5706_2166#" 33.2357
+cap "m1_6851_3268#" "m1_7047_3268#" 96.4879
+cap "m1_6361_3028#" "a_5923_3450#" 9.76765
+cap "m1_6067_2410#" "m1_6263_2410#" 96.4879
+cap "a_5923_3450#" "dw_5500_1960#" 113.761
+cap "m1_6917_4403#" "m1_6949_3028#" 0.654393
+cap "m1_6361_2650#" "w_5706_2166#" 33.2357
+cap "a_5923_2832#" "m1_7341_2650#" 23.0625
+cap "a_5923_3450#" "m1_7047_3268#" 83.025
+cap "a_5923_2832#" "m1_5871_2410#" 2.71324
+cap "w_5706_2166#" "m1_6655_3268#" 37.4781
+cap "m1_7047_2410#" "m1_7243_2410#" 96.4879
+cap "a_5923_2322#" "m1_6067_2410#" 83.025
+cap "a_5923_2322#" "m1_7145_2650#" 9.76765
+cap "a_5923_3450#" "m1_7341_3028#" 2.71324
+cap "m1_6361_3028#" "m1_6557_3028#" 96.4879
+cap "m1_6851_2410#" "m1_6655_2410#" 96.4879
+cap "m1_6067_2410#" "m1_6067_3268#" 2.99882
+cap "a_5923_2322#" "m1_6655_2410#" 83.025
+cap "w_5706_2166#" "m1_6165_3028#" 32.4577
+cap "m1_6263_3268#" "w_5706_2166#" 35.9298
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" 40.6846
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -2.31068
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" -73.0573
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" -12.3196
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 221.162
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.727249
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" -29.1334
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -13.3021
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" -2.5904
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.13113
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" -59.3797
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" 0.0231784
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" 98.3959
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" -31.3234
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" -13.3021
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" -22.8837
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -385.051
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 192.74
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" -0.0417894
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 25.1619
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" -36.4831
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 605.143
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" 29.2448
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" -13.3021
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -22.9733
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -1.78548
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" -36.4831
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.158098
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" -13.3021
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -29.7963
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 1.57167
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" 7.37379
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" -36.4831
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" -22.1592
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.822108
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.837083
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" 8.41812
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -27.1654
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" -66.6192
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" -22.8837
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" -30.0088
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 11.7409
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -30.0088
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" 8.24488
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" -28.4336
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -29.5421
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -252.818
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 3.47032
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 104.366
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" -36.4831
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.13113
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" -32.7194
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 339.494
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.158098
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -5.07907
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -1.78548
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 1.00792
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" -0.170308
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -17.0389
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 1.57167
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -13.3021
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" 40.6846
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 66.0799
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" -62.5393
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" 101.927
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" 101.943
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" -3.57097
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" -36.4831
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -13.3021
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -2.33333
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 96.0346
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 4.30981
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" -45.9419
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.158098
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" 113.538
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -31.0854
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" 3.48538
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" -5.07793
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 185.237
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 28.6932
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" -23.981
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" -44.0419
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" 11.0425
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" 73.2336
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#" 7.62225
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#" 7.82123
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" 13.8442
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" 10.7678
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" 13.682
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" -44.0419
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -1.44887
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" -24.1967
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -22.021
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" 10.9445
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" 73.2336
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 3.83387
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#" 7.62225
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" 13.8442
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" -22.8961
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" 10.8485
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" 13.6817
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" 73.2336
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" -24.1967
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" 11.0425
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 363.254
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" 13.8442
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" 15.092
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" 73.2336
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" 10.7711
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -23.981
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#" 7.62225
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" -44.0419
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" 10.9445
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" 9.78987
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" 0.585049
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" 13.8442
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" 73.2336
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" 10.855
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 17.5038
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -23.981
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" 7.62225
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" 0.585049
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" -24.1967
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" 11.0359
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" 10.2182
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" 13.8442
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" -44.0419
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" 10.7711
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" 0.0505394
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -20.767
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 4.05968
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" 0.585049
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" -0.100408
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" -24.1967
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" -12.0984
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" 10.9854
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" 12.4395
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" -23.981
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" 13.8442
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#" 7.62225
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" 10.855
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" -70.3757
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 182.716
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" -1.27331
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" -24.1967
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" 52.3909
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" -24.1967
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" -7.62388
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 73.2336
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 2.22783
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 17.5038
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" 10.7711
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 7.82123
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" -43.3848
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" 13.8442
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" -12.0984
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 4.88818
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 73.2336
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -6.46459
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" 10.8518
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" -0.202881
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" 13.8442
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 15.0913
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 132.719
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 7.62225
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -6.46459
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" 11.0425
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" 35.0077
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" 0.281529
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" 13.8442
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 13.6802
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" 28.4862
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" 10.9445
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 7.82123
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.585049
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 202.971
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" 36.7403
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -50.0642
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -23.981
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 28.4862
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" -44.0419
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -44.0419
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" -22.021
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" 2.90533
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" 11.0425
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 7.82123
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" -24.1967
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 0.585049
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 52.2218
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 7.62225
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" -23.981
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" 11.0399
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" 10.9445
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" -24.1967
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 3.93419
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 10.8763
+cap "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" 35.0077
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" 7.62225
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" 10.855
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 7.82123
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 12.4108
+cap "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" 0.58018
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_n509#" "m1_6949_2650#" 150.379 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 234282 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n661_n200#" "m1_5969_4403#" 1523.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2508120 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_n509#" "m1_7243_2410#" 454.697 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 706458 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/VSUBS" "VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_555_21#" "a_5923_2940#" -43380 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -11680456 -5280 0 0 -3809440 -3000 -12326864 -3120 0 0 0 0 0 0 0 0 0 0
+merge "a_5923_2940#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_653_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_653_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_359_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_359_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_457_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_457_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_163_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_163_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_261_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_261_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n33_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n33_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_65_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_65_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n229_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n229_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n131_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n131_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n425_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n425_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n327_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n327_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_21#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n523_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n523_531#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_531#" "a_5923_3450#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_109#" "m1_6655_3268#" -283.846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -337116 -412 -199206 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "dw_5500_1960#" -183.744 0 0 0 0 -61248 -3860 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_109#" "m1_6459_3268#" -1057.01 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1034876 -412 -964782 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n866_n683#" "w_5706_2166#" -1766.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_314_109#" "m1_6949_3028#" -454.192 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -533844 -412 -258738 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_653_n597#" "a_5923_2322#" -32893.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -8792120 -5280 0 0 -2862624 -3000 -9307632 -3120 0 0 0 0 0 0 0 0 0 0
+merge "a_5923_2322#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_457_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_457_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_555_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_555_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_261_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_261_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_359_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_359_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_65_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_65_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_163_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_163_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n131_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n131_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n33_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n33_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n327_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n327_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n229_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n229_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n523_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n523_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n425_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n425_n87#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n719_n597#" "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n621_n87#" "a_5923_2832#"
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_287_n200#" "m1_6917_4403#" 179.224 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 380280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_n509#" "m1_6361_2650#" 413.103 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 641922 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_109#" "m1_7047_3268#" -812.436 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -814156 -412 -722610 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_109#" "m1_6165_3028#" -2233.69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2409772 -412 -1608934 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_n509#" "m1_6851_2410#" 55.5193 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 87098 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_n509#" "m1_5871_2410#" 916.894 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1423778 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_n509#" "m1_6067_2410#" 717.421 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1114098 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_129_n200#" "m1_6759_4163#" -11.5905 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n274_109#" "m1_6361_3028#" -1465.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1599900 -412 -1026030 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_n509#" "m1_6557_2650#" 213.515 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 332242 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_608_109#" "m1_7243_3268#" -1585.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1511916 -412 -1488186 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_216_109#" "m1_6851_3268#" -39.2741 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -116396 -412 42966 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n568_109#" "m1_6067_3268#" -2603.33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2430396 -412 -2495934 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n470_n509#" "m1_6165_2650#" 612.692 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 951602 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n78_109#" "m1_6557_3028#" -697.206 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -790028 -412 -443126 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" "m1_5811_4163#" 1837.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3001080 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_109#" "m1_6263_3268#" -1830.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1732636 -412 -1730358 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_n509#" "m1_5969_2650#" 812.281 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1261282 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n503_n200#" "m1_6127_4163#" 1235.78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2015160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_n509#" "m1_6753_2650#" 13.9802 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22562 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_761_n200#" "m1_7391_4163#" 1102.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1859160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n372_n509#" "m1_6263_2410#" 517.832 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 804418 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_109#" "m1_7341_3028#" -1990.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2153588 -412 -1424546 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_706_n509#" "m1_7341_2650#" 549.442 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 853642 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n764_109#" "m1_5871_3268#" -3376.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3128156 -412 -3261510 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n187_n200#" "m1_6443_4163#" 602.604 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1029240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_412_n509#" "m1_7047_2410#" 255.108 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 396778 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n345_n200#" "m1_6285_4403#" 916.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1522200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_20_n509#" "m1_6655_2410#" 118.655 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 185058 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_n29_n200#" "m1_6601_4403#" 279.542 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 536280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n666_109#" "m1_5969_3028#" -3001.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3219644 -412 -2191838 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_n509#" "m1_7145_2650#" 349.968 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 543962 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_445_n200#" "m1_7075_4163#" 501.379 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 873240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_118_109#" "m1_6753_3028#" 66.2792 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12384 -412 139778 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GYVK57_0/a_603_n200#" "m1_7233_4403#" 788.729 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1366200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_n176_n509#" "m1_6459_2410#" 318.243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 494738 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_62U3RB_0/a_510_109#" "m1_7145_3028#" -1222.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1343716 -412 -841642 0 0 0 0 0 0 0 0 0
diff --git a/mag/tia/fb_transistor.mag b/mag/tia/fb_transistor.mag
new file mode 100644
index 0000000..b36b3b2
--- /dev/null
+++ b/mag/tia/fb_transistor.mag
@@ -0,0 +1,455 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< dnwell >>
+rect 5500 1960 7780 3880
+<< nwell >>
+rect 5420 3674 7860 3960
+rect 5420 2166 5706 3674
+rect 7574 2166 7860 3674
+rect 5420 1880 7860 2166
+<< pwell >>
+rect 5923 3450 7361 3516
+rect 5923 2940 7361 3006
+rect 5923 2832 7361 2898
+rect 5923 2322 7361 2388
+<< nsubdiff >>
+rect 5457 3903 7823 3923
+rect 5457 3869 5537 3903
+rect 7743 3869 7823 3903
+rect 5457 3849 7823 3869
+rect 5457 3843 5531 3849
+rect 5457 1997 5477 3843
+rect 5511 1997 5531 3843
+rect 7749 3843 7823 3849
+rect 5457 1991 5531 1997
+rect 7749 1997 7769 3843
+rect 7803 1997 7823 3843
+rect 7749 1991 7823 1997
+rect 5457 1971 7823 1991
+rect 5457 1937 5537 1971
+rect 7743 1937 7823 1971
+rect 5457 1917 7823 1937
+<< nsubdiffcont >>
+rect 5537 3869 7743 3903
+rect 5477 1997 5511 3843
+rect 7769 1997 7803 3843
+rect 5537 1937 7743 1971
+<< poly >>
+rect 5923 3500 7361 3516
+rect 5923 3466 6037 3500
+rect 6071 3466 6233 3500
+rect 6267 3466 6429 3500
+rect 6463 3466 6625 3500
+rect 6659 3466 6821 3500
+rect 6855 3466 7017 3500
+rect 7051 3466 7213 3500
+rect 7247 3466 7361 3500
+rect 5923 3450 7361 3466
+rect 5923 2990 7361 3006
+rect 5923 2956 5939 2990
+rect 5973 2956 6135 2990
+rect 6169 2956 6331 2990
+rect 6365 2956 6527 2990
+rect 6561 2956 6723 2990
+rect 6757 2956 6919 2990
+rect 6953 2956 7115 2990
+rect 7149 2956 7311 2990
+rect 7345 2956 7361 2990
+rect 5923 2940 7361 2956
+rect 5923 2882 7361 2898
+rect 5923 2848 5939 2882
+rect 5973 2848 6135 2882
+rect 6169 2848 6331 2882
+rect 6365 2848 6527 2882
+rect 6561 2848 6723 2882
+rect 6757 2848 6919 2882
+rect 6953 2848 7115 2882
+rect 7149 2848 7311 2882
+rect 7345 2848 7361 2882
+rect 5923 2832 7361 2848
+rect 5923 2372 7361 2388
+rect 5923 2338 6037 2372
+rect 6071 2338 6233 2372
+rect 6267 2338 6429 2372
+rect 6463 2338 6625 2372
+rect 6659 2338 6821 2372
+rect 6855 2338 7017 2372
+rect 7051 2338 7213 2372
+rect 7247 2338 7361 2372
+rect 5923 2322 7361 2338
+<< polycont >>
+rect 6037 3466 6071 3500
+rect 6233 3466 6267 3500
+rect 6429 3466 6463 3500
+rect 6625 3466 6659 3500
+rect 6821 3466 6855 3500
+rect 7017 3466 7051 3500
+rect 7213 3466 7247 3500
+rect 5939 2956 5973 2990
+rect 6135 2956 6169 2990
+rect 6331 2956 6365 2990
+rect 6527 2956 6561 2990
+rect 6723 2956 6757 2990
+rect 6919 2956 6953 2990
+rect 7115 2956 7149 2990
+rect 7311 2956 7345 2990
+rect 5939 2848 5973 2882
+rect 6135 2848 6169 2882
+rect 6331 2848 6365 2882
+rect 6527 2848 6561 2882
+rect 6723 2848 6757 2882
+rect 6919 2848 6953 2882
+rect 7115 2848 7149 2882
+rect 7311 2848 7345 2882
+rect 6037 2338 6071 2372
+rect 6233 2338 6267 2372
+rect 6429 2338 6463 2372
+rect 6625 2338 6659 2372
+rect 6821 2338 6855 2372
+rect 7017 2338 7051 2372
+rect 7213 2338 7247 2372
+<< locali >>
+rect 5477 3869 5537 3903
+rect 7743 3869 7803 3903
+rect 5477 3843 5511 3869
+rect 7769 3843 7803 3869
+rect 5923 3466 6037 3500
+rect 6071 3466 6233 3500
+rect 6267 3466 6429 3500
+rect 6463 3466 6625 3500
+rect 6659 3466 6821 3500
+rect 6855 3466 7017 3500
+rect 7051 3466 7213 3500
+rect 7247 3466 7361 3500
+rect 5923 2956 5939 2990
+rect 5973 2956 6135 2990
+rect 6169 2956 6331 2990
+rect 6365 2956 6527 2990
+rect 6561 2956 6723 2990
+rect 6757 2956 6919 2990
+rect 6953 2956 7115 2990
+rect 7149 2956 7311 2990
+rect 7345 2956 7361 2990
+rect 5923 2848 5939 2882
+rect 5973 2848 6135 2882
+rect 6169 2848 6331 2882
+rect 6365 2848 6527 2882
+rect 6561 2848 6723 2882
+rect 6757 2848 6919 2882
+rect 6953 2848 7115 2882
+rect 7149 2848 7311 2882
+rect 7345 2848 7361 2882
+rect 5923 2338 6037 2372
+rect 6071 2338 6233 2372
+rect 6267 2338 6429 2372
+rect 6463 2338 6625 2372
+rect 6659 2338 6821 2372
+rect 6855 2338 7017 2372
+rect 7051 2338 7213 2372
+rect 7247 2338 7361 2372
+rect 5477 1971 5511 1997
+rect 7769 1971 7803 1997
+rect 5477 1937 5537 1971
+rect 7743 1937 7803 1971
+<< viali >>
+rect 6037 3466 6071 3500
+rect 6233 3466 6267 3500
+rect 6429 3466 6463 3500
+rect 6625 3466 6659 3500
+rect 6821 3466 6855 3500
+rect 7017 3466 7051 3500
+rect 7213 3466 7247 3500
+rect 5939 2956 5973 2990
+rect 6135 2956 6169 2990
+rect 6331 2956 6365 2990
+rect 6527 2956 6561 2990
+rect 6723 2956 6757 2990
+rect 6919 2956 6953 2990
+rect 7115 2956 7149 2990
+rect 7311 2956 7345 2990
+rect 5939 2848 5973 2882
+rect 6135 2848 6169 2882
+rect 6331 2848 6365 2882
+rect 6527 2848 6561 2882
+rect 6723 2848 6757 2882
+rect 6919 2848 6953 2882
+rect 7115 2848 7149 2882
+rect 7311 2848 7345 2882
+rect 6037 2338 6071 2372
+rect 6233 2338 6267 2372
+rect 6429 2338 6463 2372
+rect 6625 2338 6659 2372
+rect 6821 2338 6855 2372
+rect 7017 2338 7051 2372
+rect 7213 2338 7247 2372
+<< metal1 >>
+rect 5969 4403 5979 4563
+rect 6031 4403 6041 4563
+rect 6285 4403 6295 4563
+rect 6347 4403 6357 4563
+rect 6601 4403 6611 4563
+rect 6663 4403 6673 4563
+rect 6917 4403 6927 4563
+rect 6979 4403 6989 4563
+rect 7233 4403 7243 4563
+rect 7295 4403 7305 4563
+rect 5811 4163 5821 4323
+rect 5873 4163 5883 4323
+rect 6127 4163 6137 4323
+rect 6189 4163 6199 4323
+rect 6443 4163 6453 4323
+rect 6505 4163 6515 4323
+rect 6759 4163 6769 4323
+rect 6821 4163 6831 4323
+rect 7075 4163 7085 4323
+rect 7137 4163 7147 4323
+rect 7391 4163 7401 4323
+rect 7453 4163 7463 4323
+rect 5923 3500 7361 3516
+rect 5923 3466 6037 3500
+rect 6071 3466 6233 3500
+rect 6267 3466 6429 3500
+rect 6463 3466 6625 3500
+rect 6659 3466 6821 3500
+rect 6855 3466 7017 3500
+rect 7051 3466 7213 3500
+rect 7247 3466 7361 3500
+rect 5923 3460 7361 3466
+rect 5871 3268 5881 3428
+rect 5933 3268 5943 3428
+rect 6067 3268 6077 3428
+rect 6129 3268 6139 3428
+rect 6263 3268 6273 3428
+rect 6325 3268 6335 3428
+rect 6459 3268 6469 3428
+rect 6521 3268 6531 3428
+rect 6655 3268 6665 3428
+rect 6717 3268 6727 3428
+rect 6851 3268 6861 3428
+rect 6913 3268 6923 3428
+rect 7047 3268 7057 3428
+rect 7109 3268 7119 3428
+rect 7243 3268 7253 3428
+rect 7305 3268 7315 3428
+rect 5969 3028 5979 3188
+rect 6031 3028 6041 3188
+rect 6165 3028 6175 3188
+rect 6227 3028 6237 3188
+rect 6361 3028 6371 3188
+rect 6423 3028 6433 3188
+rect 6557 3028 6567 3188
+rect 6619 3028 6629 3188
+rect 6753 3028 6763 3188
+rect 6815 3028 6825 3188
+rect 6949 3028 6959 3188
+rect 7011 3028 7021 3188
+rect 7145 3028 7155 3188
+rect 7207 3028 7217 3188
+rect 7341 3028 7351 3188
+rect 7403 3028 7413 3188
+rect 5923 2990 7361 2996
+rect 5923 2956 5939 2990
+rect 5973 2956 6135 2990
+rect 6169 2956 6331 2990
+rect 6365 2956 6527 2990
+rect 6561 2956 6723 2990
+rect 6757 2956 6919 2990
+rect 6953 2956 7115 2990
+rect 7149 2956 7311 2990
+rect 7345 2956 7361 2990
+rect 5923 2940 7361 2956
+rect 5923 2882 7361 2898
+rect 5923 2848 5939 2882
+rect 5973 2848 6135 2882
+rect 6169 2848 6331 2882
+rect 6365 2848 6527 2882
+rect 6561 2848 6723 2882
+rect 6757 2848 6919 2882
+rect 6953 2848 7115 2882
+rect 7149 2848 7311 2882
+rect 7345 2848 7361 2882
+rect 5923 2842 7361 2848
+rect 5969 2650 5979 2810
+rect 6031 2650 6041 2810
+rect 6165 2650 6175 2810
+rect 6227 2650 6237 2810
+rect 6361 2650 6371 2810
+rect 6423 2650 6433 2810
+rect 6557 2650 6567 2810
+rect 6619 2650 6629 2810
+rect 6753 2650 6763 2810
+rect 6815 2650 6825 2810
+rect 6949 2650 6959 2810
+rect 7011 2650 7021 2810
+rect 7145 2650 7155 2810
+rect 7207 2650 7217 2810
+rect 7341 2650 7351 2810
+rect 7403 2650 7413 2810
+rect 5871 2410 5881 2570
+rect 5933 2410 5943 2570
+rect 6067 2410 6077 2570
+rect 6129 2410 6139 2570
+rect 6263 2410 6273 2570
+rect 6325 2410 6335 2570
+rect 6459 2410 6469 2570
+rect 6521 2410 6531 2570
+rect 6655 2410 6665 2570
+rect 6717 2410 6727 2570
+rect 6851 2410 6861 2570
+rect 6913 2410 6923 2570
+rect 7047 2410 7057 2570
+rect 7109 2410 7119 2570
+rect 7243 2410 7253 2570
+rect 7305 2410 7315 2570
+rect 5923 2372 7361 2378
+rect 5923 2338 6037 2372
+rect 6071 2338 6233 2372
+rect 6267 2338 6429 2372
+rect 6463 2338 6625 2372
+rect 6659 2338 6821 2372
+rect 6855 2338 7017 2372
+rect 7051 2338 7213 2372
+rect 7247 2338 7361 2372
+rect 5923 2322 7361 2338
+<< via1 >>
+rect 5979 4403 6031 4563
+rect 6295 4403 6347 4563
+rect 6611 4403 6663 4563
+rect 6927 4403 6979 4563
+rect 7243 4403 7295 4563
+rect 5821 4163 5873 4323
+rect 6137 4163 6189 4323
+rect 6453 4163 6505 4323
+rect 6769 4163 6821 4323
+rect 7085 4163 7137 4323
+rect 7401 4163 7453 4323
+rect 5881 3268 5933 3428
+rect 6077 3268 6129 3428
+rect 6273 3268 6325 3428
+rect 6469 3268 6521 3428
+rect 6665 3268 6717 3428
+rect 6861 3268 6913 3428
+rect 7057 3268 7109 3428
+rect 7253 3268 7305 3428
+rect 5979 3028 6031 3188
+rect 6175 3028 6227 3188
+rect 6371 3028 6423 3188
+rect 6567 3028 6619 3188
+rect 6763 3028 6815 3188
+rect 6959 3028 7011 3188
+rect 7155 3028 7207 3188
+rect 7351 3028 7403 3188
+rect 5979 2650 6031 2810
+rect 6175 2650 6227 2810
+rect 6371 2650 6423 2810
+rect 6567 2650 6619 2810
+rect 6763 2650 6815 2810
+rect 6959 2650 7011 2810
+rect 7155 2650 7207 2810
+rect 7351 2650 7403 2810
+rect 5881 2410 5933 2570
+rect 6077 2410 6129 2570
+rect 6273 2410 6325 2570
+rect 6469 2410 6521 2570
+rect 6665 2410 6717 2570
+rect 6861 2410 6913 2570
+rect 7057 2410 7109 2570
+rect 7253 2410 7305 2570
+<< metal2 >>
+rect 5979 4563 6031 4573
+rect 5979 4393 6031 4403
+rect 6295 4563 6347 4573
+rect 6295 4393 6347 4403
+rect 6611 4563 6663 4573
+rect 6611 4393 6663 4403
+rect 6927 4563 6979 4573
+rect 6927 4393 6979 4403
+rect 7243 4563 7295 4573
+rect 7243 4393 7295 4403
+rect 5821 4323 5873 4333
+rect 5821 4153 5873 4163
+rect 6137 4323 6189 4333
+rect 6137 4153 6189 4163
+rect 6453 4323 6505 4333
+rect 6453 4153 6505 4163
+rect 6769 4323 6821 4333
+rect 6769 4153 6821 4163
+rect 7085 4323 7137 4333
+rect 7085 4153 7137 4163
+rect 7401 4323 7453 4333
+rect 7401 4153 7453 4163
+rect 5881 3428 5933 3438
+rect 5881 3258 5933 3268
+rect 6077 3428 6129 3438
+rect 6077 3258 6129 3268
+rect 6273 3428 6325 3438
+rect 6273 3258 6325 3268
+rect 6469 3428 6521 3438
+rect 6469 3258 6521 3268
+rect 6665 3428 6717 3438
+rect 6665 3258 6717 3268
+rect 6861 3428 6913 3438
+rect 6861 3258 6913 3268
+rect 7057 3428 7109 3438
+rect 7057 3258 7109 3268
+rect 7253 3428 7305 3438
+rect 7253 3258 7305 3268
+rect 5979 3188 6031 3198
+rect 5979 3018 6031 3028
+rect 6175 3188 6227 3198
+rect 6175 3018 6227 3028
+rect 6371 3188 6423 3198
+rect 6371 3018 6423 3028
+rect 6567 3188 6619 3198
+rect 6567 3018 6619 3028
+rect 6763 3188 6815 3198
+rect 6763 3018 6815 3028
+rect 6959 3188 7011 3198
+rect 6959 3018 7011 3028
+rect 7155 3188 7207 3198
+rect 7155 3018 7207 3028
+rect 7351 3188 7403 3198
+rect 7351 3018 7403 3028
+rect 5979 2810 6031 2820
+rect 5979 2640 6031 2650
+rect 6175 2810 6227 2820
+rect 6175 2640 6227 2650
+rect 6371 2810 6423 2820
+rect 6371 2640 6423 2650
+rect 6567 2810 6619 2820
+rect 6567 2640 6619 2650
+rect 6763 2810 6815 2820
+rect 6763 2640 6815 2650
+rect 6959 2810 7011 2820
+rect 6959 2640 7011 2650
+rect 7155 2810 7207 2820
+rect 7155 2640 7207 2650
+rect 7351 2810 7403 2820
+rect 7351 2640 7403 2650
+rect 5881 2570 5933 2580
+rect 5881 2400 5933 2410
+rect 6077 2570 6129 2580
+rect 6077 2400 6129 2410
+rect 6273 2570 6325 2580
+rect 6273 2400 6325 2410
+rect 6469 2570 6521 2580
+rect 6469 2400 6521 2410
+rect 6665 2570 6717 2580
+rect 6665 2400 6717 2410
+rect 6861 2570 6913 2580
+rect 6861 2400 6913 2410
+rect 7057 2570 7109 2580
+rect 7057 2400 7109 2410
+rect 7253 2570 7305 2580
+rect 7253 2400 7305 2410
+use sky130_fd_pr__nfet_01v8_lvt_62U3RB  sky130_fd_pr__nfet_01v8_lvt_62U3RB_0
+timestamp 1647868710
+transform 1 0 6642 0 1 2919
+box -902 -719 902 719
+use sky130_fd_pr__pfet_01v8_GYVK57  sky130_fd_pr__pfet_01v8_GYVK57_0
+timestamp 1647868710
+transform 1 0 6637 0 1 4363
+box -957 -419 957 419
+<< end >>
diff --git a/mag/tia/rf_transistors.ext b/mag/tia/rf_transistors.ext
new file mode 100644
index 0000000..b2b1aa8
--- /dev/null
+++ b/mag/tia/rf_transistors.ext
@@ -0,0 +1,2137 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__pfet_01v8_NZHYX4 sky130_fd_pr__pfet_01v8_NZHYX4_2 1 0 3140 0 1 637
+use sky130_fd_pr__pfet_01v8_NZHYX4 sky130_fd_pr__pfet_01v8_NZHYX4_1 1 0 1342 0 1 637
+use sky130_fd_pr__nfet_01v8_lvt_ZRA4RB sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1 1 0 1832 0 1 -821
+use sky130_fd_pr__nfet_01v8_lvt_ZRA4RB sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0 1 0 1832 0 1 -2265
+node "m1_3021_n2774#" 1 80.6937 3021 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2825_n2774#" 1 37.3483 2825 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2629_n2774#" 1 37.3483 2629 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2433_n2774#" 1 37.3483 2433 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2237_n2774#" 1 37.3483 2237 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_n2774#" 1 37.3483 2041 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_n2774#" 1 37.3483 1845 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_n2774#" 1 37.3483 1649 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_n2774#" 1 37.3483 1453 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_n2774#" 1 37.3483 1257 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_n2774#" 1 37.3483 1061 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_n2774#" 1 37.3483 865 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_n2774#" 1 69.1063 669 -2774 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2923_n2534#" 1 64.6185 2923 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2727_n2534#" 1 33.1765 2727 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2531_n2534#" 1 33.1765 2531 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2335_n2534#" 1 33.1765 2335 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2139_n2534#" 1 33.1765 2139 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_n2534#" 1 33.1765 1943 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_n2534#" 1 33.1765 1747 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_n2534#" 1 33.1765 1551 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_n2534#" 1 33.1765 1355 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_n2534#" 1 33.1765 1159 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_n2534#" 1 33.1765 963 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_n2534#" 1 33.1765 767 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_n2534#" 1 73.0953 571 -2534 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2923_n2156#" 1 62.4035 2923 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2727_n2156#" 1 30.9616 2727 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2531_n2156#" 1 30.9616 2531 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2335_n2156#" 1 30.9616 2335 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2139_n2156#" 1 30.9616 2139 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_n2156#" 1 30.9616 1943 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_n2156#" 1 30.9616 1747 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_n2156#" 1 30.9616 1551 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_n2156#" 1 30.9616 1355 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_n2156#" 1 30.9616 1159 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_n2156#" 1 30.9616 963 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_n2156#" 1 30.9616 767 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_n2156#" 1 69.375 571 -2156 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3021_n1916#" 1 70.9391 3021 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2825_n1916#" 1 31.4128 2825 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2629_n1916#" 1 31.4128 2629 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2433_n1916#" 1 31.4128 2433 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2237_n1916#" 1 31.4128 2237 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_n1916#" 1 31.4128 2041 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_n1916#" 1 31.4128 1845 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_n1916#" 1 31.4128 1649 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_n1916#" 1 31.4128 1453 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_n1916#" 1 31.4128 1257 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_n1916#" 1 31.4128 1061 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_n1916#" 1 31.4128 865 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_n1916#" 1 63.1708 669 -1916 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3021_n1330#" 1 70.8536 3021 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2825_n1330#" 1 31.4302 2825 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2629_n1330#" 1 31.4302 2629 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2433_n1330#" 1 31.4302 2433 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2237_n1330#" 1 31.4302 2237 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_n1330#" 1 31.4302 2041 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_n1330#" 1 31.4302 1845 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_n1330#" 1 31.4302 1649 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_n1330#" 1 31.4302 1453 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_n1330#" 1 31.4302 1257 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_n1330#" 1 31.4302 1061 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_n1330#" 1 31.4302 865 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_n1330#" 1 63.1882 669 -1330 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2923_n1090#" 1 62.3662 2923 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2727_n1090#" 1 30.9242 2727 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2531_n1090#" 1 30.9242 2531 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2335_n1090#" 1 30.9242 2335 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2139_n1090#" 1 30.9242 2139 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_n1090#" 1 30.9242 1943 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_n1090#" 1 30.9242 1747 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_n1090#" 1 30.9242 1551 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_n1090#" 1 30.9242 1355 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_n1090#" 1 30.9242 1159 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_n1090#" 1 30.9242 963 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_n1090#" 1 30.9242 767 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_n1090#" 1 70.7298 571 -1090 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2923_n712#" 1 63.4245 2923 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2727_n712#" 1 31.9826 2727 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2531_n712#" 1 31.9826 2531 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2335_n712#" 1 31.9826 2335 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2139_n712#" 1 33.2757 2139 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_n712#" 1 30.9926 1943 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_n712#" 1 30.9926 1747 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_n712#" 1 30.9926 1551 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_n712#" 1 30.9926 1355 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_n712#" 1 30.9926 1159 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_n712#" 1 30.9926 963 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_n712#" 1 30.9926 767 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_n712#" 1 69.4324 571 -712 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3021_n472#" 1 72.7754 3021 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2825_n472#" 1 34.0262 2825 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2629_n472#" 1 34.0262 2629 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2433_n472#" 1 34.0262 2433 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2237_n472#" 1 37.4195 2237 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_n472#" 1 31.4571 2041 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_n472#" 1 31.4571 1845 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_n472#" 1 31.4571 1649 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_n472#" 1 31.4571 1453 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_n472#" 1 31.4571 1257 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_n472#" 1 31.4571 1061 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_n472#" 1 31.4571 865 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_n472#" 1 63.2152 669 -472 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3839_119#" 1 81.0163 3839 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3643_119#" 1 37.6514 3643 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3447_119#" 1 37.6514 3447 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3251_119#" 1 37.6514 3251 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3055_119#" 1 34.2687 3055 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2859_119#" 1 34.2687 2859 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2663_119#" 1 34.2687 2663 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2467_119#" 1 42.2058 2467 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_119#" 1 46.9018 2041 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_119#" 1 31.7775 1845 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_119#" 1 31.7775 1649 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_119#" 1 31.7775 1453 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_119#" 1 31.7775 1257 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_119#" 1 31.7775 1061 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_119#" 1 31.7775 865 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_119#" 1 63.5356 669 119 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3741_359#" 1 64.9528 3741 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3545_359#" 1 33.5108 3545 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3349_359#" 1 33.5108 3349 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3153_359#" 1 33.5108 3153 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2957_359#" 1 32.2251 2957 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2761_359#" 1 32.2251 2761 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2565_359#" 1 32.2251 2565 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2369_359#" 1 45.4507 2369 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_359#" 1 39.2092 1943 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_359#" 1 31.2892 1747 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_359#" 1 31.2892 1551 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_359#" 1 31.2892 1355 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_359#" 1 31.2892 1159 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_359#" 1 31.2892 963 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_359#" 1 31.2892 767 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_359#" 1 71.1664 571 359 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3741_755#" 1 65.055 3741 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3545_755#" 1 33.6131 3545 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3349_755#" 1 33.6131 3349 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3153_755#" 1 33.6131 3153 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2957_755#" 1 33.6131 2957 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2761_755#" 1 33.6131 2761 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2565_755#" 1 33.6131 2565 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2369_755#" 1 50.45 2369 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1943_755#" 1 41.5332 1943 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1747_755#" 1 33.6131 1747 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1551_755#" 1 33.6131 1551 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1355_755#" 1 33.6131 1355 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1159_755#" 1 33.6131 1159 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_963_755#" 1 33.6131 963 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_767_755#" 1 33.6131 767 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_571_755#" 1 74.2709 571 755 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3839_995#" 1 82.4578 3839 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3643_995#" 1 37.7178 3643 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3447_995#" 1 37.7178 3447 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3251_995#" 1 37.7178 3251 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_3055_995#" 1 37.7178 3055 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2859_995#" 1 37.7178 2859 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2663_995#" 1 37.7178 2663 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2467_995#" 1 45.6549 2467 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_2041_995#" 1 58.936 2041 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1845_995#" 1 37.7178 1845 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1649_995#" 1 37.7178 1649 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1453_995#" 1 37.7178 1453 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1257_995#" 1 37.7178 1257 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_1061_995#" 1 37.7178 1061 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_865_995#" 1 37.7178 865 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "m1_669_995#" 1 69.4758 669 995 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11520 464 9360 464 0 0 0 0 0 0 0 0
+node "a_623_n2862#" 2681 1938.96 623 -2862 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_623_n2352#" 2681 834.287 623 -2352 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_622_n2244#" 2681 839.873 622 -2244 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_622_n1734#" 2681 1068.06 622 -1734 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_623_n1418#" 2681 1073.29 623 -1418 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_623_n908#" 2681 834.287 623 -908 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_622_n800#" 2681 839.873 622 -800 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_622_n290#" 2681 1177.52 622 -290 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 159588 4968 0 0 82212 4904 145080 4956 0 0 0 0 0 0 0 0 0 0
+node "a_2421_22#" 1638 655.918 2421 22 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96588 3092 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_623_22#" 1638 476.597 623 22 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96588 3092 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_2421_550#" 1645 370.48 2421 550 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96828 3104 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_623_550#" 1645 373.421 623 550 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96828 3104 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_2421_658#" 1645 334.154 2421 658 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96828 3104 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_623_658#" 1645 337.096 623 658 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96828 3104 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_2421_1186#" 1638 1033.34 2421 1186 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96588 3092 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "a_623_1186#" 1638 1038.92 623 1186 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96588 3092 0 0 48892 2944 94908 3008 0 0 0 0 0 0 0 0 0 0
+node "w_2421_22#" 21566 289.764 2421 22 nw 0 0 0 0 96588 3092 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_623_22#" 21566 289.764 623 22 nw 0 0 0 0 96588 3092 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2421_550#" 21691 290.484 2421 550 nw 0 0 0 0 96828 3104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_623_550#" 21691 290.484 623 550 nw 0 0 0 0 96828 3104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2421_658#" 21691 290.484 2421 658 nw 0 0 0 0 96828 3104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_623_658#" 21691 290.484 623 658 nw 0 0 0 0 96828 3104 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2421_1186#" 21566 289.764 2421 1186 nw 0 0 0 0 96588 3092 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_623_1186#" 21566 289.764 623 1186 nw 0 0 0 0 96588 3092 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_571_n1090#" "m1_571_n2156#" 4.81997
+cap "m1_767_n712#" "m1_963_n712#" 96.4879
+cap "m1_2761_359#" "m1_2565_359#" 96.4879
+cap "m1_1159_n2156#" "a_622_n2244#" 94.8857
+cap "m1_1551_755#" "m1_1551_359#" 9.41296
+cap "m1_1355_755#" "m1_1355_359#" 9.41296
+cap "a_623_n2862#" "m1_2727_n2534#" 9.91343
+cap "m1_2825_n472#" "a_622_n290#" 94.8857
+cap "m1_1453_n1916#" "m1_1453_n2774#" 2.99882
+cap "m1_1649_n1916#" "m1_1845_n1916#" 96.4879
+cap "m1_2237_n472#" "m1_2433_n472#" 96.4879
+cap "a_623_22#" "m1_669_119#" 85.7032
+cap "m1_1061_n2774#" "m1_1257_n2774#" 96.4879
+cap "m1_2041_119#" "a_623_550#" 2.72325
+cap "a_623_n1418#" "a_622_n1734#" 761.091
+cap "m1_1747_n2156#" "m1_1943_n2156#" 96.4879
+cap "m1_865_n472#" "m1_865_n1330#" 2.99882
+cap "a_623_658#" "m1_767_755#" 85.7032
+cap "m1_1061_995#" "a_623_658#" 9.80369
+cap "a_623_1186#" "m1_767_755#" 9.80369
+cap "m1_1061_995#" "a_623_1186#" 85.7032
+cap "m1_1747_n712#" "a_622_n800#" 94.8857
+cap "a_623_550#" "a_2421_550#" 13.4286
+cap "m1_963_n1090#" "m1_963_n712#" 10.2687
+cap "m1_2663_995#" "m1_2663_119#" 2.92126
+cap "m1_3349_359#" "a_2421_22#" 9.80369
+cap "m1_2761_359#" "a_2421_550#" 85.7032
+cap "m1_3349_755#" "m1_3545_755#" 96.4879
+cap "m1_1159_n2156#" "m1_1355_n2156#" 96.4879
+cap "m1_1747_755#" "m1_1747_359#" 9.41296
+cap "a_623_n2352#" "m1_2825_n2774#" 9.91343
+cap "a_623_n2352#" "m1_2041_n2774#" 9.91343
+cap "m1_2041_n1916#" "a_622_n2244#" 9.91343
+cap "m1_2335_n2156#" "a_622_n1734#" 9.91343
+cap "m1_1061_n1916#" "a_622_n1734#" 94.8857
+cap "m1_3021_n1330#" "a_623_n908#" 2.75373
+cap "a_622_n290#" "m1_669_n472#" 94.8857
+cap "m1_1845_119#" "a_623_22#" 85.7032
+cap "a_623_550#" "m1_1159_359#" 85.7032
+cap "m1_571_n2534#" "a_623_n2352#" 26.3571
+cap "m1_1355_n2534#" "m1_1355_n2156#" 10.2687
+cap "m1_2727_n2156#" "m1_2531_n2156#" 96.4879
+cap "a_623_n1418#" "m1_1061_n1330#" 94.8857
+cap "m1_1551_n1090#" "a_623_n1418#" 9.91343
+cap "a_623_22#" "m1_1747_359#" 9.80369
+cap "a_623_n1418#" "m1_2237_n1330#" 94.8857
+cap "a_2421_658#" "m1_3055_995#" 9.80369
+cap "a_2421_658#" "m1_2663_995#" 9.80369
+cap "m1_571_n2156#" "m1_767_n2156#" 96.4879
+cap "m1_963_n1090#" "m1_1159_n1090#" 96.4879
+cap "m1_1159_359#" "m1_1159_755#" 9.41296
+cap "m1_1159_n2156#" "a_622_n1734#" 9.91343
+cap "m1_963_n1090#" "a_623_n908#" 94.8857
+cap "m1_2727_n712#" "m1_2923_n712#" 96.4879
+cap "m1_2139_n712#" "m1_2335_n712#" 96.4879
+cap "m1_1747_n712#" "m1_1943_n712#" 96.4879
+cap "m1_767_n2534#" "m1_767_n2156#" 10.2687
+cap "a_623_n2862#" "m1_3021_n2774#" 26.3571
+cap "m1_2531_n2534#" "m1_2727_n2534#" 96.4879
+cap "m1_1355_n712#" "m1_1551_n712#" 96.4879
+cap "m1_2237_n2774#" "m1_2433_n2774#" 96.4879
+cap "a_623_n2862#" "m1_2237_n2774#" 94.8857
+cap "m1_571_n712#" "m1_767_n712#" 96.4879
+cap "m1_1061_n1916#" "m1_1061_n1330#" 5.00788
+cap "m1_1943_n1090#" "m1_1943_n2156#" 2.29481
+cap "m1_767_n2534#" "a_623_n2862#" 9.91343
+cap "a_623_550#" "m1_1257_119#" 9.80369
+cap "m1_865_995#" "a_623_658#" 9.80369
+cap "m1_865_995#" "a_623_1186#" 85.7032
+cap "m1_2041_n472#" "m1_2041_n1330#" 2.99882
+cap "m1_2041_119#" "m1_2041_n472#" 4.94696
+cap "m1_767_n2534#" "m1_963_n2534#" 96.4879
+cap "m1_2923_n712#" "a_622_n800#" 94.8857
+cap "m1_2727_n1090#" "a_623_n1418#" 9.91343
+cap "m1_2859_119#" "m1_3055_119#" 96.4879
+cap "a_623_658#" "m1_1943_755#" 85.7032
+cap "m1_1943_755#" "a_623_1186#" 9.80369
+cap "m1_2565_359#" "a_2421_22#" 9.80369
+cap "a_623_550#" "m1_963_359#" 85.7032
+cap "m1_2663_995#" "a_2421_1186#" 85.7032
+cap "a_2421_550#" "m1_3349_359#" 85.7032
+cap "a_2421_658#" "m1_3349_755#" 85.7032
+cap "a_2421_658#" "m1_3447_995#" 9.80369
+cap "m1_1061_995#" "m1_1257_995#" 96.4879
+cap "m1_3055_995#" "a_2421_1186#" 85.7032
+cap "m1_2139_n1090#" "m1_2139_n712#" 10.2687
+cap "m1_2041_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n908#" "m1_1453_n1330#" 9.91343
+cap "m1_1943_n1090#" "a_623_n908#" 94.8857
+cap "a_623_22#" "m1_1453_119#" 85.7032
+cap "m1_1747_n712#" "m1_1747_n1090#" 10.2687
+cap "a_623_n908#" "m1_2629_n1330#" 9.91343
+cap "a_622_n290#" "m1_1845_n472#" 94.8857
+cap "m1_1747_359#" "m1_1551_359#" 96.4879
+cap "a_623_n2352#" "m1_2139_n2534#" 94.8857
+cap "m1_1159_359#" "m1_1355_359#" 96.4879
+cap "m1_2139_n2534#" "m1_2139_n2156#" 10.2687
+cap "m1_1649_n472#" "m1_1649_n1330#" 2.99882
+cap "a_623_n2862#" "m1_865_n2774#" 94.8857
+cap "m1_669_n1916#" "a_622_n2244#" 9.91343
+cap "m1_1943_359#" "m1_2369_359#" 35.4961
+cap "a_623_550#" "a_623_658#" 2389.54
+cap "m1_669_n1916#" "m1_669_n1330#" 5.00788
+cap "m1_2531_n1090#" "m1_2531_n2156#" 2.29481
+cap "a_622_n2244#" "m1_1943_n2156#" 94.8857
+cap "a_622_n800#" "m1_767_n712#" 94.8857
+cap "a_2421_22#" "m1_3251_119#" 85.7032
+cap "m1_1061_119#" "a_623_22#" 85.7032
+cap "m1_3055_119#" "m1_3021_n472#" 1.71241
+cap "m1_669_n472#" "m1_669_119#" 4.94696
+cap "m1_2369_359#" "a_2421_22#" 2.72325
+cap "a_622_n800#" "m1_2237_n472#" 9.91343
+cap "m1_1159_755#" "a_623_658#" 85.7032
+cap "m1_1159_755#" "a_623_1186#" 9.80369
+cap "m1_767_359#" "m1_767_755#" 9.41296
+cap "m1_2531_n712#" "m1_2335_n712#" 96.4879
+cap "a_2421_550#" "a_2421_22#" 249.563
+cap "m1_767_n2156#" "a_622_n2244#" 94.8857
+cap "m1_1943_n1090#" "m1_2139_n1090#" 96.4879
+cap "a_623_n2862#" "m1_2335_n2534#" 9.91343
+cap "m1_1453_n1330#" "m1_1649_n1330#" 96.4879
+cap "m1_1257_n472#" "a_622_n800#" 9.91343
+cap "m1_2041_995#" "m1_1845_995#" 96.4879
+cap "m1_3349_755#" "a_2421_1186#" 9.80369
+cap "m1_963_755#" "m1_963_359#" 9.41296
+cap "m1_1551_n2534#" "a_623_n2352#" 94.8857
+cap "m1_1453_n1916#" "m1_1649_n1916#" 96.4879
+cap "a_623_n908#" "m1_669_n1330#" 9.91343
+cap "a_2421_1186#" "m1_3447_995#" 85.7032
+cap "m1_2923_n2156#" "m1_2923_n2534#" 10.2687
+cap "m1_2957_755#" "m1_2957_359#" 9.41296
+cap "m1_1551_n2534#" "m1_1747_n2534#" 96.4879
+cap "m1_865_n2774#" "m1_1061_n2774#" 96.4879
+cap "m1_2369_359#" "m1_2565_359#" 96.4879
+cap "m1_3055_119#" "m1_3055_995#" 2.92126
+cap "m1_1551_n2156#" "m1_1747_n2156#" 96.4879
+cap "m1_2825_n1330#" "m1_3021_n1330#" 96.4879
+cap "m1_2139_n712#" "a_622_n800#" 94.8857
+cap "m1_1355_n712#" "a_622_n800#" 94.8857
+cap "m1_767_n1090#" "m1_767_n712#" 10.2687
+cap "m1_1551_n712#" "m1_1551_359#" 2.28193
+cap "a_2421_550#" "m1_2565_359#" 85.7032
+cap "m1_3545_755#" "m1_3545_359#" 9.41296
+cap "a_623_658#" "m1_963_755#" 85.7032
+cap "m1_963_755#" "a_623_1186#" 9.80369
+cap "m1_1649_n472#" "a_622_n800#" 9.91343
+cap "m1_2957_755#" "m1_2761_755#" 96.4879
+cap "m1_1061_n472#" "m1_1257_n472#" 96.4879
+cap "m1_1943_n2156#" "a_622_n1734#" 9.91343
+cap "m1_669_n1916#" "a_622_n1734#" 94.8857
+cap "m1_3021_n1330#" "m1_3021_n1916#" 10.3783
+cap "m1_669_995#" "m1_669_119#" 2.92126
+cap "a_623_n2352#" "m1_1649_n2774#" 9.91343
+cap "m1_1649_n1916#" "a_622_n2244#" 9.91343
+cap "m1_1257_n1916#" "m1_1257_n2774#" 2.99882
+cap "m1_571_n1090#" "a_623_n1418#" 2.75373
+cap "a_2421_550#" "m1_3251_119#" 9.80369
+cap "m1_2467_995#" "m1_2467_119#" 2.92126
+cap "a_623_n1418#" "m1_1845_n1330#" 94.8857
+cap "a_2421_550#" "m1_2369_359#" 23.8065
+cap "a_2421_658#" "m1_2761_755#" 85.7032
+cap "a_2421_658#" "m1_2369_755#" 23.8065
+cap "m1_767_n2156#" "a_622_n1734#" 9.91343
+cap "m1_767_n1090#" "m1_963_n1090#" 96.4879
+cap "m1_1453_n472#" "m1_1257_n472#" 96.4879
+cap "m1_571_755#" "m1_767_755#" 96.4879
+cap "m1_1649_995#" "m1_1453_995#" 96.4879
+cap "m1_2531_n712#" "m1_2727_n712#" 96.4879
+cap "m1_3021_n1916#" "m1_3021_n2774#" 6.27647
+cap "m1_1943_n712#" "m1_2139_n712#" 96.4879
+cap "a_622_n800#" "m1_3021_n472#" 2.61604
+cap "m1_2565_359#" "m1_2565_755#" 9.41296
+cap "m1_2825_n2774#" "m1_3021_n2774#" 96.4879
+cap "a_2421_658#" "m1_3545_755#" 85.7032
+cap "m1_2433_n1916#" "m1_2433_n2774#" 2.99882
+cap "m1_2923_n712#" "m1_2923_n1090#" 10.2687
+cap "a_623_n2862#" "m1_2629_n2774#" 94.8857
+cap "m1_2433_n2774#" "m1_2629_n2774#" 96.4879
+cap "a_623_n2862#" "m1_1845_n2774#" 94.8857
+cap "m1_2335_n2534#" "m1_2531_n2534#" 96.4879
+cap "a_623_n2352#" "m1_669_n2774#" 9.91343
+cap "m1_571_n2534#" "m1_571_n2156#" 20.7632
+cap "a_623_22#" "m1_865_119#" 85.7032
+cap "m1_2041_n2774#" "m1_2237_n2774#" 96.4879
+cap "m1_2467_119#" "a_2421_22#" 85.7032
+cap "m1_1355_755#" "a_623_658#" 85.7032
+cap "m1_1355_755#" "a_623_1186#" 9.80369
+cap "m1_865_n1916#" "m1_865_n1330#" 5.00788
+cap "m1_1747_n1090#" "m1_1747_n2156#" 2.29481
+cap "m1_1747_755#" "m1_1943_755#" 96.4879
+cap "m1_571_n2534#" "m1_767_n2534#" 96.4879
+cap "m1_2825_n1330#" "m1_2629_n1330#" 96.4879
+cap "m1_1845_n472#" "m1_1845_n1330#" 2.99882
+cap "m1_1257_n472#" "m1_1257_n1330#" 2.99882
+cap "m1_1845_119#" "m1_1845_n472#" 4.94696
+cap "m1_2531_n712#" "a_622_n800#" 94.8857
+cap "m1_1453_n472#" "m1_1649_n472#" 96.4879
+cap "m1_2335_n1090#" "a_623_n1418#" 9.91343
+cap "a_622_n290#" "m1_963_n712#" 9.91343
+cap "a_623_658#" "m1_1453_995#" 9.80369
+cap "a_623_1186#" "m1_1453_995#" 85.7032
+cap "m1_3251_995#" "m1_3251_119#" 2.92126
+cap "m1_1649_119#" "m1_1845_119#" 96.4879
+cap "a_623_550#" "m1_767_359#" 85.7032
+cap "a_2421_1186#" "m1_2761_755#" 9.80369
+cap "m1_2369_755#" "a_2421_1186#" 2.72325
+cap "m1_1159_359#" "m1_1159_n712#" 2.28193
+cap "a_622_n290#" "m1_2433_n472#" 94.8857
+cap "m1_1943_n1090#" "m1_1943_n712#" 10.2687
+cap "m1_1551_n712#" "m1_1551_n1090#" 10.2687
+cap "m1_1649_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n908#" "m1_1061_n1330#" 9.91343
+cap "m1_1551_n1090#" "a_623_n908#" 94.8857
+cap "a_623_n908#" "m1_2237_n1330#" 9.91343
+cap "m1_3741_359#" "m1_3545_359#" 96.4879
+cap "a_2421_658#" "m1_2957_755#" 85.7032
+cap "a_623_n2352#" "m1_1747_n2534#" 94.8857
+cap "m1_1159_n1090#" "a_623_n1418#" 9.91343
+cap "m1_3545_755#" "a_2421_1186#" 9.80369
+cap "a_623_550#" "a_623_22#" 249.563
+cap "m1_1943_n2534#" "m1_1943_n2156#" 10.2687
+cap "m1_1453_n472#" "m1_1453_n1330#" 2.99882
+cap "a_622_n2244#" "m1_1551_n2156#" 94.8857
+cap "m1_3643_119#" "m1_3839_119#" 96.4879
+cap "a_623_n908#" "a_623_n1418#" 430.483
+cap "m1_2335_n1090#" "m1_2335_n2156#" 2.29481
+cap "m1_2041_n472#" "m1_2237_n472#" 96.4879
+cap "m1_2335_n712#" "a_622_n290#" 9.91343
+cap "m1_1551_n712#" "a_622_n290#" 9.91343
+cap "m1_2041_119#" "m1_2467_119#" 35.4961
+cap "m1_571_n712#" "m1_571_359#" 4.79324
+cap "m1_3021_n1916#" "a_622_n2244#" 2.61604
+cap "m1_2825_n472#" "a_622_n800#" 9.91343
+cap "m1_1355_n712#" "m1_1355_359#" 2.28193
+cap "m1_1257_n1330#" "m1_1453_n1330#" 96.4879
+cap "m1_1747_n1090#" "m1_1943_n1090#" 96.4879
+cap "a_623_n2862#" "m1_1943_n2534#" 9.91343
+cap "a_623_n908#" "m1_2727_n1090#" 94.8857
+cap "m1_2467_119#" "a_2421_550#" 9.80369
+cap "m1_1159_n2534#" "a_623_n2352#" 94.8857
+cap "m1_2727_n2156#" "m1_2727_n2534#" 10.2687
+cap "m1_2433_n1330#" "m1_2629_n1330#" 96.4879
+cap "a_623_n1418#" "m1_1649_n1330#" 94.8857
+cap "m1_2139_n1090#" "a_623_n1418#" 9.91343
+cap "m1_1649_119#" "m1_1453_119#" 96.4879
+cap "m1_2957_755#" "a_2421_1186#" 9.80369
+cap "m1_2825_n472#" "m1_2825_n1330#" 2.99882
+cap "m1_1355_n2156#" "m1_1551_n2156#" 96.4879
+cap "m1_1159_n1090#" "m1_1159_n2156#" 2.29481
+cap "m1_1159_359#" "m1_963_359#" 96.4879
+cap "m1_3153_359#" "m1_3349_359#" 96.4879
+cap "a_623_550#" "m1_1551_359#" 85.7032
+cap "m1_3643_995#" "m1_3643_119#" 2.92126
+cap "m1_1453_995#" "m1_1257_995#" 96.4879
+cap "m1_669_n472#" "a_622_n800#" 9.91343
+cap "a_622_n290#" "m1_571_n712#" 2.89142
+cap "m1_2825_n1330#" "m1_2825_n1916#" 5.00788
+cap "m1_1551_n2156#" "a_622_n1734#" 9.91343
+cap "a_623_22#" "m1_1355_359#" 9.80369
+cap "a_2421_658#" "a_2421_1186#" 249.563
+cap "m1_1355_n2534#" "a_623_n2862#" 9.91343
+cap "a_623_n2352#" "m1_1257_n2774#" 9.91343
+cap "m1_1257_n1916#" "m1_1453_n1916#" 96.4879
+cap "m1_1061_n1916#" "m1_1061_n2774#" 2.99882
+cap "m1_2727_n712#" "a_622_n290#" 9.91343
+cap "m1_2825_n1916#" "m1_3021_n1916#" 96.4879
+cap "m1_3021_n1916#" "a_622_n1734#" 25.0393
+cap "m1_3643_995#" "m1_3447_995#" 96.4879
+cap "m1_2825_n1916#" "m1_2825_n2774#" 2.99882
+cap "m1_2859_119#" "a_2421_22#" 85.7032
+cap "m1_3153_359#" "a_2421_22#" 9.80369
+cap "a_2421_658#" "m1_3839_995#" 2.72325
+cap "m1_2237_n1916#" "m1_2237_n2774#" 2.99882
+cap "m1_2629_n2774#" "m1_2825_n2774#" 96.4879
+cap "a_623_n2352#" "m1_2727_n2534#" 94.8857
+cap "m1_2727_n712#" "m1_2727_n1090#" 10.2687
+cap "m1_1845_n2774#" "m1_2041_n2774#" 96.4879
+cap "a_623_n2862#" "m1_1453_n2774#" 94.8857
+cap "m1_2139_n2534#" "m1_2335_n2534#" 96.4879
+cap "m1_1943_359#" "a_623_22#" 9.80369
+cap "m1_1551_n1090#" "m1_1551_n2156#" 2.29481
+cap "a_622_n2244#" "m1_2531_n2156#" 94.8857
+cap "m1_1257_n1916#" "a_622_n2244#" 9.91343
+cap "m1_1649_995#" "a_623_658#" 9.80369
+cap "m1_1649_995#" "a_623_1186#" 85.7032
+cap "a_622_n290#" "a_622_n800#" 430.483
+cap "m1_2629_n472#" "m1_2629_n1330#" 2.99882
+cap "m1_1061_n472#" "m1_1061_n1330#" 2.99882
+cap "m1_3153_755#" "m1_3153_359#" 9.41296
+cap "m1_2041_995#" "m1_2467_995#" 35.4961
+cap "a_623_22#" "a_2421_22#" 13.1643
+cap "m1_2825_n1330#" "a_623_n1418#" 94.8857
+cap "a_623_550#" "m1_571_359#" 23.8065
+cap "a_2421_22#" "m1_3021_n472#" 6.8497
+cap "m1_1355_359#" "m1_1551_359#" 96.4879
+cap "m1_571_n1090#" "a_623_n908#" 26.3571
+cap "m1_2663_995#" "m1_2467_995#" 96.4879
+cap "a_622_n800#" "m1_1845_n472#" 9.91343
+cap "m1_669_n472#" "m1_865_n472#" 96.4879
+cap "m1_2629_n1916#" "m1_2629_n1330#" 5.00788
+cap "a_623_n2862#" "m1_2923_n2534#" 9.91343
+cap "m1_2433_n1916#" "m1_2433_n1330#" 5.00788
+cap "a_623_n908#" "m1_1845_n1330#" 9.91343
+cap "a_2421_1186#" "m1_3839_995#" 23.8065
+cap "a_623_658#" "a_623_1186#" 249.563
+cap "m1_767_n1090#" "a_623_n1418#" 9.91343
+cap "m1_1061_n472#" "a_622_n290#" 94.8857
+cap "m1_865_995#" "m1_669_995#" 96.4879
+cap "m1_1747_n2534#" "m1_1747_n2156#" 10.2687
+cap "m1_1845_119#" "m1_1845_995#" 2.92126
+cap "m1_1943_n712#" "a_622_n290#" 9.91343
+cap "m1_2369_755#" "m1_1943_755#" 35.4961
+cap "m1_3349_755#" "m1_3349_359#" 9.41296
+cap "a_2421_550#" "m1_2859_119#" 9.80369
+cap "m1_3153_359#" "a_2421_550#" 85.7032
+cap "m1_1355_n712#" "m1_1159_n712#" 96.4879
+cap "m1_2629_n1916#" "a_622_n2244#" 9.91343
+cap "m1_1453_n472#" "a_622_n290#" 94.8857
+cap "a_623_n2352#" "m1_3021_n2774#" 2.75373
+cap "a_623_n2352#" "m1_2237_n2774#" 9.91343
+cap "m1_2237_n1916#" "a_622_n2244#" 9.91343
+cap "m1_2531_n2156#" "a_622_n1734#" 9.91343
+cap "m1_1257_n1916#" "a_622_n1734#" 94.8857
+cap "m1_1061_n1330#" "m1_1257_n1330#" 96.4879
+cap "m1_1551_n1090#" "m1_1747_n1090#" 96.4879
+cap "m1_2761_359#" "m1_2957_359#" 96.4879
+cap "m1_2335_n1090#" "m1_2335_n712#" 10.2687
+cap "m1_2531_n712#" "m1_2565_359#" 0.789899
+cap "m1_865_n2774#" "m1_669_n2774#" 96.4879
+cap "m1_1649_n1330#" "m1_1845_n1330#" 96.4879
+cap "a_623_n908#" "m1_2335_n1090#" 94.8857
+cap "m1_571_n1090#" "m1_571_n712#" 20.7632
+cap "a_622_n290#" "m1_865_n472#" 94.8857
+cap "m1_3643_119#" "a_2421_22#" 85.7032
+cap "m1_2041_119#" "a_623_22#" 23.8065
+cap "m1_767_n2534#" "a_623_n2352#" 94.8857
+cap "m1_2237_n1330#" "m1_2433_n1330#" 96.4879
+cap "m1_2923_n2156#" "m1_2923_n1090#" 2.29481
+cap "m1_2727_n2156#" "a_622_n2244#" 94.8857
+cap "m1_1747_n1090#" "a_623_n1418#" 9.91343
+cap "a_623_n1418#" "m1_1257_n1330#" 94.8857
+cap "m1_963_n1090#" "m1_963_n2156#" 2.29481
+cap "m1_1257_119#" "m1_1257_n472#" 4.94696
+cap "m1_2761_359#" "m1_2761_755#" 9.41296
+cap "m1_1257_119#" "m1_1257_995#" 2.92126
+cap "a_623_n1418#" "m1_2433_n1330#" 94.8857
+cap "m1_2629_n472#" "m1_2825_n472#" 96.4879
+cap "m1_1649_119#" "a_623_550#" 9.80369
+cap "m1_1355_n712#" "m1_1355_n1090#" 10.2687
+cap "m1_1159_n1090#" "a_623_n908#" 94.8857
+cap "m1_2041_995#" "m1_2041_119#" 6.11652
+cap "a_623_n2862#" "m1_2433_n2774#" 94.8857
+cap "a_623_22#" "m1_1159_359#" 9.80369
+cap "m1_963_n2534#" "a_623_n2862#" 9.91343
+cap "a_623_n2352#" "m1_865_n2774#" 9.91343
+cap "m1_669_n1330#" "m1_865_n1330#" 96.4879
+cap "m1_2139_n1090#" "m1_2335_n1090#" 96.4879
+cap "m1_865_119#" "m1_669_119#" 96.4879
+cap "m1_865_n1916#" "m1_865_n2774#" 2.99882
+cap "m1_2923_n1090#" "a_623_n1418#" 9.91343
+cap "m1_3153_755#" "m1_3349_755#" 96.4879
+cap "a_623_658#" "m1_1257_995#" 9.80369
+cap "a_623_1186#" "m1_1257_995#" 85.7032
+cap "m1_2629_n1916#" "m1_2825_n1916#" 96.4879
+cap "m1_2629_n1916#" "a_622_n1734#" 94.8857
+cap "m1_2629_n1916#" "m1_2629_n2774#" 2.99882
+cap "m1_2629_n1916#" "m1_2433_n1916#" 96.4879
+cap "m1_2237_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n908#" "m1_1649_n1330#" 9.91343
+cap "m1_2139_n1090#" "a_623_n908#" 94.8857
+cap "m1_2237_n1916#" "m1_2433_n1916#" 96.4879
+cap "a_622_n290#" "m1_2041_n472#" 94.8857
+cap "m1_767_359#" "m1_963_359#" 96.4879
+cap "m1_2041_n1916#" "m1_2041_n2774#" 2.99882
+cap "m1_2531_n712#" "m1_2531_n1090#" 10.2687
+cap "a_623_n2352#" "m1_2335_n2534#" 94.8857
+cap "m1_3643_119#" "a_2421_550#" 9.80369
+cap "a_622_n2244#" "a_623_n2352#" 4016.36
+cap "m1_1649_n2774#" "m1_1845_n2774#" 96.4879
+cap "a_623_n2862#" "m1_1061_n2774#" 94.8857
+cap "m1_1943_n2534#" "m1_2139_n2534#" 96.4879
+cap "m1_2727_n2156#" "a_622_n1734#" 9.91343
+cap "m1_1257_119#" "a_623_22#" 85.7032
+cap "m1_2335_n2156#" "m1_2531_n2156#" 96.4879
+cap "a_622_n2244#" "m1_2139_n2156#" 94.8857
+cap "m1_1061_n1916#" "m1_1257_n1916#" 96.4879
+cap "m1_865_n1916#" "a_622_n2244#" 9.91343
+cap "a_623_550#" "m1_669_119#" 9.80369
+cap "m1_2727_n1090#" "m1_2923_n1090#" 96.4879
+cap "a_622_n800#" "m1_963_n712#" 94.8857
+cap "a_2421_22#" "m1_3447_119#" 85.7032
+cap "m1_2727_n2156#" "m1_2923_n2156#" 96.4879
+cap "m1_1845_n472#" "m1_2041_n472#" 96.4879
+cap "a_623_22#" "m1_963_359#" 9.80369
+cap "m1_1061_119#" "m1_1061_995#" 2.92126
+cap "m1_767_n1090#" "m1_571_n1090#" 96.4879
+cap "a_622_n800#" "m1_2433_n472#" 9.91343
+cap "a_2421_658#" "m1_3643_995#" 9.80369
+cap "m1_1747_755#" "a_623_658#" 85.7032
+cap "m1_3055_995#" "m1_3251_995#" 96.4879
+cap "m1_1747_755#" "a_623_1186#" 9.80369
+cap "m1_963_n2156#" "a_622_n2244#" 94.8857
+cap "a_623_n2862#" "m1_2531_n2534#" 9.91343
+cap "a_2421_22#" "m1_2957_359#" 9.80369
+cap "m1_1649_n1916#" "m1_1649_n1330#" 5.00788
+cap "m1_2629_n472#" "a_622_n290#" 94.8857
+cap "m1_3839_119#" "m1_3839_995#" 6.11652
+cap "m1_2237_n1916#" "m1_2237_n1330#" 5.00788
+cap "a_622_n290#" "a_2421_22#" 197.972
+cap "m1_1845_119#" "a_623_550#" 9.80369
+cap "m1_2859_119#" "m1_2859_995#" 2.92126
+cap "m1_1355_755#" "m1_1551_755#" 96.4879
+cap "m1_2335_n712#" "a_622_n800#" 94.8857
+cap "a_623_550#" "m1_1747_359#" 85.7032
+cap "a_623_n908#" "a_622_n800#" 4016.36
+cap "m1_1551_n712#" "a_622_n800#" 94.8857
+cap "m1_3349_359#" "m1_3545_359#" 96.4879
+cap "m1_2041_995#" "a_623_658#" 2.72325
+cap "m1_2041_995#" "a_623_1186#" 23.8065
+cap "m1_3251_119#" "m1_3447_119#" 96.4879
+cap "m1_3643_995#" "a_2421_1186#" 85.7032
+cap "m1_1355_n1090#" "m1_1355_n2156#" 2.29481
+cap "a_623_n2352#" "m1_2629_n2774#" 9.91343
+cap "m1_865_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n2352#" "m1_1845_n2774#" 9.91343
+cap "m1_1845_n1916#" "a_622_n2244#" 9.91343
+cap "m1_2139_n2156#" "a_622_n1734#" 9.91343
+cap "m1_865_n1330#" "m1_1061_n1330#" 96.4879
+cap "m1_2825_n1330#" "a_623_n908#" 9.91343
+cap "m1_3447_995#" "m1_3251_995#" 96.4879
+cap "m1_767_n712#" "m1_767_359#" 2.28193
+cap "m1_1355_n2534#" "m1_1551_n2534#" 96.4879
+cap "m1_2041_n1330#" "m1_2237_n1330#" 96.4879
+cap "a_2421_550#" "m1_3447_119#" 9.80369
+cap "m1_571_755#" "a_623_658#" 23.8065
+cap "m1_571_755#" "a_623_1186#" 2.72325
+cap "m1_2727_n2156#" "m1_2727_n1090#" 2.29481
+cap "a_623_n1418#" "m1_865_n1330#" 94.8857
+cap "m1_1061_119#" "m1_865_119#" 96.4879
+cap "a_623_n1418#" "m1_2041_n1330#" 94.8857
+cap "m1_767_n1090#" "m1_767_n2156#" 2.29481
+cap "m1_3545_359#" "a_2421_22#" 9.80369
+cap "m1_963_n2156#" "a_622_n1734#" 9.91343
+cap "m1_767_n1090#" "a_623_n908#" 94.8857
+cap "m1_1061_119#" "m1_1061_n472#" 4.94696
+cap "a_622_n800#" "m1_571_n712#" 27.675
+cap "m1_2041_119#" "a_622_n290#" 6.66997
+cap "m1_2369_359#" "a_622_n290#" 3.92419
+cap "m1_3643_995#" "m1_3839_995#" 96.4879
+cap "a_2421_550#" "m1_2957_359#" 85.7032
+cap "m1_2629_n472#" "m1_2663_119#" 1.71241
+cap "a_623_n2862#" "m1_2825_n2774#" 94.8857
+cap "a_623_550#" "m1_1453_119#" 9.80369
+cap "m1_1453_n472#" "m1_1453_119#" 4.94696
+cap "a_623_n2862#" "m1_2041_n2774#" 94.8857
+cap "m1_2663_119#" "a_2421_22#" 85.7032
+cap "m1_3055_995#" "m1_2859_995#" 96.4879
+cap "m1_2663_995#" "m1_2859_995#" 96.4879
+cap "m1_2433_n472#" "m1_2433_n1330#" 2.99882
+cap "m1_571_n2534#" "a_623_n2862#" 2.75373
+cap "m1_2369_755#" "m1_2369_359#" 19.107
+cap "a_2421_658#" "m1_2467_995#" 9.80369
+cap "m1_2727_n712#" "a_622_n800#" 94.8857
+cap "m1_3021_n1330#" "m1_3021_n472#" 6.27647
+cap "a_622_n290#" "m1_1159_n712#" 9.91343
+cap "a_623_550#" "m1_1061_119#" 9.80369
+cap "m1_2531_n1090#" "a_623_n1418#" 9.91343
+cap "m1_865_995#" "m1_1061_995#" 96.4879
+cap "m1_1355_n1090#" "m1_1551_n1090#" 96.4879
+cap "m1_1845_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n908#" "m1_1257_n1330#" 9.91343
+cap "m1_1747_n1090#" "a_623_n908#" 94.8857
+cap "m1_2957_755#" "m1_3153_755#" 96.4879
+cap "m1_2041_n1916#" "m1_2237_n1916#" 96.4879
+cap "a_623_n908#" "m1_2433_n1330#" 9.91343
+cap "m1_1845_n1916#" "m1_1845_n2774#" 2.99882
+cap "m1_1747_n2534#" "m1_1943_n2534#" 96.4879
+cap "a_623_n2352#" "m1_1943_n2534#" 94.8857
+cap "m1_1355_n1090#" "a_623_n1418#" 9.91343
+cap "m1_1453_n2774#" "m1_1649_n2774#" 96.4879
+cap "a_622_n2244#" "m1_1747_n2156#" 94.8857
+cap "m1_2139_n2156#" "m1_2335_n2156#" 96.4879
+cap "m1_865_n1916#" "m1_1061_n1916#" 96.4879
+cap "m1_3741_359#" "a_2421_22#" 9.80369
+cap "m1_2531_n1090#" "m1_2727_n1090#" 96.4879
+cap "m1_1943_359#" "m1_1747_359#" 96.4879
+cap "m1_2467_995#" "a_2421_1186#" 85.7032
+cap "a_623_22#" "m1_767_359#" 9.80369
+cap "a_2421_658#" "m1_3153_755#" 85.7032
+cap "a_2421_550#" "m1_3545_359#" 85.7032
+cap "m1_1747_n712#" "a_622_n290#" 9.91343
+cap "m1_3741_755#" "m1_3545_755#" 96.4879
+cap "m1_571_n2156#" "a_622_n2244#" 27.675
+cap "m1_2761_755#" "m1_2565_755#" 96.4879
+cap "m1_2369_755#" "m1_2565_755#" 96.4879
+cap "m1_1453_n1916#" "m1_1453_n1330#" 5.00788
+cap "a_623_n2862#" "m1_2139_n2534#" 9.91343
+cap "m1_1061_n472#" "a_622_n800#" 9.91343
+cap "m1_2663_119#" "a_2421_550#" 9.80369
+cap "m1_2041_n1916#" "m1_2041_n1330#" 5.00788
+cap "m1_1355_n2534#" "a_623_n2352#" 94.8857
+cap "a_623_n908#" "m1_2923_n1090#" 94.8857
+cap "m1_865_995#" "m1_865_119#" 2.92126
+cap "m1_2727_n712#" "m1_2761_359#" 0.789899
+cap "m1_1943_n712#" "a_622_n800#" 94.8857
+cap "m1_2629_n472#" "m1_2433_n472#" 96.4879
+cap "m1_963_n2156#" "m1_1159_n2156#" 96.4879
+cap "m1_1649_119#" "m1_1649_995#" 2.92126
+cap "m1_1453_n472#" "a_622_n800#" 9.91343
+cap "a_2421_658#" "a_2421_550#" 2389.54
+cap "m1_3153_755#" "a_2421_1186#" 9.80369
+cap "m1_1159_n2534#" "m1_1159_n2156#" 10.2687
+cap "m1_963_755#" "m1_767_755#" 96.4879
+cap "m1_1747_n2156#" "a_622_n1734#" 9.91343
+cap "m1_865_n472#" "a_622_n800#" 9.91343
+cap "m1_1551_n2534#" "a_623_n2862#" 9.91343
+cap "a_623_n2352#" "m1_1453_n2774#" 9.91343
+cap "m1_1453_n1916#" "a_622_n2244#" 9.91343
+cap "a_623_550#" "m1_865_119#" 9.80369
+cap "m1_669_995#" "a_623_658#" 9.80369
+cap "m1_669_995#" "a_623_1186#" 85.7032
+cap "m1_1453_119#" "m1_1453_995#" 2.92126
+cap "m1_1159_n2534#" "m1_1355_n2534#" 96.4879
+cap "m1_1845_119#" "m1_2041_119#" 96.4879
+cap "m1_3741_359#" "a_2421_550#" 85.7032
+cap "m1_2923_n712#" "m1_2957_359#" 0.789899
+cap "m1_1845_n1330#" "m1_2041_n1330#" 96.4879
+cap "m1_865_119#" "m1_865_n472#" 4.94696
+cap "m1_1551_755#" "a_623_658#" 85.7032
+cap "m1_1551_755#" "a_623_1186#" 9.80369
+cap "m1_2923_n712#" "a_622_n290#" 9.91343
+cap "m1_2825_n472#" "m1_2859_119#" 1.71241
+cap "m1_571_n2156#" "a_622_n1734#" 2.89142
+cap "a_623_22#" "m1_1551_359#" 9.80369
+cap "a_2421_658#" "m1_3741_755#" 85.7032
+cap "m1_3055_119#" "a_2421_22#" 85.7032
+cap "m1_1061_n472#" "m1_865_n472#" 96.4879
+cap "a_623_n2352#" "m1_2923_n2534#" 94.8857
+cap "a_623_n2862#" "m1_1649_n2774#" 94.8857
+cap "a_2421_658#" "m1_2565_755#" 85.7032
+cap "a_2421_658#" "m1_3251_995#" 9.80369
+cap "m1_2531_n2534#" "m1_2531_n2156#" 10.2687
+cap "m1_669_n1916#" "m1_669_n2774#" 2.99882
+cap "m1_3741_359#" "m1_3741_755#" 9.41296
+cap "m1_2237_n472#" "m1_2237_n1330#" 2.99882
+cap "m1_2467_119#" "m1_2663_119#" 96.4879
+cap "m1_3021_n1330#" "a_623_n1418#" 26.3571
+cap "m1_2825_n472#" "m1_3021_n472#" 96.4879
+cap "a_622_n290#" "m1_767_n712#" 9.91343
+cap "m1_963_n712#" "m1_1159_n712#" 96.4879
+cap "a_622_n290#" "m1_2237_n472#" 94.8857
+cap "a_622_n800#" "m1_2041_n472#" 9.91343
+cap "m1_3741_755#" "a_2421_1186#" 9.80369
+cap "m1_2369_359#" "m1_2335_n712#" 0.789899
+cap "a_623_n2862#" "m1_669_n2774#" 94.8857
+cap "m1_1453_n1916#" "a_622_n1734#" 94.8857
+cap "a_623_n908#" "m1_865_n1330#" 9.91343
+cap "m1_571_359#" "m1_767_359#" 96.4879
+cap "m1_1845_n1916#" "m1_2041_n1916#" 96.4879
+cap "a_623_n908#" "m1_2041_n1330#" 9.91343
+cap "m1_1649_n1916#" "m1_1649_n2774#" 2.99882
+cap "m1_1257_n2774#" "m1_1453_n2774#" 96.4879
+cap "m1_963_n1090#" "a_623_n1418#" 9.91343
+cap "m1_1257_n472#" "a_622_n290#" 94.8857
+cap "m1_1747_n712#" "m1_1747_359#" 2.28193
+cap "a_622_n2244#" "m1_1355_n2156#" 94.8857
+cap "m1_669_n1916#" "m1_865_n1916#" 96.4879
+cap "m1_3055_119#" "m1_3251_119#" 96.4879
+cap "m1_1943_n2156#" "m1_2139_n2156#" 96.4879
+cap "m1_2335_n1090#" "m1_2531_n1090#" 96.4879
+cap "a_2421_1186#" "m1_2565_755#" 9.80369
+cap "a_2421_1186#" "m1_3251_995#" 85.7032
+cap "a_623_22#" "m1_571_359#" 2.72325
+cap "a_2421_658#" "a_623_658#" 13.4286
+cap "m1_1159_n1090#" "m1_1159_n712#" 10.2687
+cap "m1_2139_n712#" "a_622_n290#" 9.91343
+cap "m1_1355_n712#" "a_622_n290#" 9.91343
+cap "a_2421_550#" "m1_3055_119#" 9.80369
+cap "m1_3153_359#" "m1_2957_359#" 96.4879
+cap "m1_2825_n1916#" "a_622_n2244#" 9.91343
+cap "m1_2629_n472#" "a_622_n800#" 9.91343
+cap "m1_1649_n472#" "a_622_n290#" 94.8857
+cap "a_622_n2244#" "a_622_n1734#" 430.483
+cap "a_623_n2352#" "m1_2433_n2774#" 9.91343
+cap "a_623_n2862#" "a_623_n2352#" 430.483
+cap "a_623_n2862#" "m1_1747_n2534#" 9.91343
+cap "m1_2433_n1916#" "a_622_n2244#" 9.91343
+cap "a_623_n908#" "m1_2531_n1090#" 94.8857
+cap "m1_3839_119#" "a_2421_22#" 23.8065
+cap "m1_1845_n1916#" "m1_1845_n1330#" 5.00788
+cap "m1_963_n2534#" "a_623_n2352#" 94.8857
+cap "a_623_550#" "m1_1355_359#" 85.7032
+cap "m1_1159_755#" "m1_963_755#" 96.4879
+cap "m1_1551_n2534#" "m1_1551_n2156#" 10.2687
+cap "m1_963_n712#" "m1_963_359#" 2.28193
+cap "m1_2923_n2156#" "a_622_n2244#" 94.8857
+cap "a_623_n1418#" "m1_1453_n1330#" 94.8857
+cap "m1_1943_n1090#" "a_623_n1418#" 9.91343
+cap "a_2421_658#" "m1_2859_995#" 9.80369
+cap "a_623_n1418#" "m1_2629_n1330#" 94.8857
+cap "m1_1159_n1090#" "m1_1355_n1090#" 96.4879
+cap "m1_1649_n472#" "m1_1845_n472#" 96.4879
+cap "m1_669_n1330#" "m1_669_n472#" 2.99882
+cap "m1_1943_359#" "m1_1943_755#" 9.41296
+cap "m1_767_n2156#" "m1_963_n2156#" 96.4879
+cap "m1_2467_119#" "m1_2433_n472#" 1.71241
+cap "m1_1649_119#" "m1_1649_n472#" 4.94696
+cap "m1_1355_n1090#" "a_623_n908#" 94.8857
+cap "m1_571_755#" "m1_571_359#" 19.107
+cap "a_2421_1186#" "a_623_1186#" 13.1643
+cap "a_623_22#" "a_622_n290#" 459.909
+cap "m1_963_n2534#" "m1_963_n2156#" 10.2687
+cap "m1_1551_n712#" "m1_1747_n712#" 96.4879
+cap "m1_1257_119#" "m1_1453_119#" 96.4879
+cap "m1_1943_359#" "m1_1943_n712#" 2.28193
+cap "m1_2727_n2534#" "m1_2923_n2534#" 96.4879
+cap "a_622_n290#" "m1_3021_n472#" 25.0393
+cap "m1_1257_n1916#" "m1_1257_n1330#" 5.00788
+cap "m1_2139_n1090#" "m1_2139_n2156#" 2.29481
+cap "m1_1159_n2534#" "a_623_n2862#" 9.91343
+cap "a_623_n2352#" "m1_1061_n2774#" 9.91343
+cap "m1_1355_n2156#" "a_622_n1734#" 9.91343
+cap "m1_1551_755#" "m1_1747_755#" 96.4879
+cap "m1_963_n2534#" "m1_1159_n2534#" 96.4879
+cap "m1_1943_359#" "a_623_550#" 85.7032
+cap "m1_1061_119#" "m1_1257_119#" 96.4879
+cap "m1_669_n1330#" "a_623_n1418#" 94.8857
+cap "m1_1649_119#" "a_623_22#" 85.7032
+cap "m1_1649_995#" "m1_1845_995#" 96.4879
+cap "m1_2531_n712#" "a_622_n290#" 9.91343
+cap "m1_3643_119#" "m1_3447_119#" 96.4879
+cap "m1_1355_755#" "m1_1159_755#" 96.4879
+cap "m1_2825_n1916#" "a_622_n1734#" 94.8857
+cap "a_2421_1186#" "m1_2859_995#" 85.7032
+cap "m1_2433_n1916#" "a_622_n1734#" 94.8857
+cap "m1_2663_119#" "m1_2859_119#" 96.4879
+cap "m1_2761_359#" "a_2421_22#" 9.80369
+cap "a_623_n2352#" "m1_2531_n2534#" 94.8857
+cap "m1_3839_119#" "a_2421_550#" 2.72325
+cap "a_623_n2862#" "m1_1257_n2774#" 94.8857
+cap "m1_2923_n2156#" "a_622_n1734#" 9.91343
+cap "m1_2335_n2534#" "m1_2335_n2156#" 10.2687
+cap "a_622_n2244#" "m1_2335_n2156#" 94.8857
+cap "m1_1061_n1916#" "a_622_n2244#" 9.91343
+cap "m1_3447_995#" "m1_3447_119#" 2.92126
+cap "a_622_n800#" "m1_1159_n712#" 94.8857
+cap "m1_1845_995#" "a_623_658#" 9.80369
+cap "m1_1845_995#" "a_623_1186#" 85.7032
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" 93.6154
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 0.884211
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" 9.56113
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" 317.368
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" 1.904
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" -466.706
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" 12.3734
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" 0.994406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" -72.4836
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" 316.781
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" -100.374
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" 316.394
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_n509#" 9.37217
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" 1.904
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" 92.3846
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" 7.36965
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 0.884211
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" 316.296
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_n509#" -2.5904
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" 0.197183
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" -545.382
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" 194.985
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" 1.91935
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" 0.976771
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 166.165
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -73.8719
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 1.50273
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" 1.91935
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" 411.437
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" 0.994406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" -72.4836
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" 9.56113
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" -7.78624
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" -466.706
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" 12.3734
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" -100.374
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" 1.91935
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" 193.523
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 0.828718
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 1.50273
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" -2.5904
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" 0.197183
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" -545.382
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" 37.8462
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 165.299
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" -12.3196
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -18.7657
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" 9.37217
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" 1.91935
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -52.5609
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" 409.805
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" 109.406
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" 109.39
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" 7.36965
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" -23.8065
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" 109.405
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" -12.3196
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" -2.83333
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" -7
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" -6.17256
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -1.25108
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" 9.2703
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" 4.37152
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" -6.17256
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" 0.976771
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" 76.7735
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" -4.55062
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -1.48515
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 151.202
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -74.3287
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" -3.5
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 516.108
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" 695.291
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" 9.28485
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" -6.17256
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" -11.3678
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" -6.17256
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" 39.4886
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" -7.19237
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" -6.17256
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" -465.867
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" 38.0309
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -52.5609
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" 2.74958
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" -16.678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" 55.4008
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" 46.1655
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -9.20444
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" 2.74958
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" -16.678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" -3.68141
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" 9.28485
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" 46.8495
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" 44.2008
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" 54.364
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" 55.5716
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" 2.74958
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" -3.68141
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" -6.17256
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" -2.52528
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 0.923658
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -12.46
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 485.081
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" -4.87449
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" -7.19237
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" 179.616
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" 9.09661
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" 3.16136
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" -3.68141
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" -11.3678
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" 150.997
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" -4.87449
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -363.452
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" -18.7657
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" 54.364
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" -4.46271
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -650.909
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" -3.26963
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" -16.678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" -11.3678
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" -4.87449
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" -7.67152
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" -16.678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -485.022
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" 9.09617
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" 9.2703
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" -47.6129
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" -91.5477
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" 75.6923
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" -3.5
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_359_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -0.644165
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" 89.2247
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" -2.52528
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" -0.298665
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" 9.09661
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" 506.914
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" -0.298665
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" -3.25255
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -0.528813
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" -0.298665
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" -6.46136
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" 9.09617
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" -272.748
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" 93.789
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" -4.87449
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" 37.8462
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" 48.5652
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" -23.8065
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" -8.0833
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" -11.3678
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" -47.6129
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" 2.74958
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" 75.6923
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" 48.4073
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" 93.774
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" 541.519
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" 8.10526
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 0.601942
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" 4.85664
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -0.234079
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" 1
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" -3.25556
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" 111.686
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" -3.28276
+cap "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 1.20388
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" 3.31818
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" 121.906
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 300.698
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" -3.28276
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" 2.53846
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" 8.10526
+cap "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_549#" -0.115352
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_n518#" "m1_1747_359#" 2988.06 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4677440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_n509#" "m1_2335_n1090#" 2757.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_109#" "m1_2825_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_109#" "m1_2825_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1045_21#" "a_622_n2244#" -319078 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -88352378 -8798 0 0 -28966248 -4998 -90673840 -5200 0 0 0 0 0 0 0 0 0 0
+merge "a_622_n2244#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1143_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1143_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_849_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_849_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_947_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_947_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_653_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_653_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_751_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_751_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_457_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_457_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_555_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_555_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_261_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_359_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_359_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_65_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_65_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_163_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_163_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n131_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n131_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n33_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n33_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n327_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n327_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n229_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n229_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n523_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n523_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n425_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n425_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n719_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n719_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n621_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n621_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n915_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n915_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n817_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n817_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1013_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1013_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_531#" "a_622_n1734#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "w_623_22#" -239059 0 0 0 0 -79686456 -27744 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "w_623_22#" "w_623_550#"
+merge "w_623_550#" "w_623_658#"
+merge "w_623_658#" "w_623_1186#"
+merge "w_623_1186#" "w_2421_22#"
+merge "w_2421_22#" "w_2421_550#"
+merge "w_2421_550#" "w_2421_658#"
+merge "w_2421_658#" "w_2421_1186#"
+merge "w_2421_1186#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/VSUBS" "sky130_fd_pr__pfet_01v8_NZHYX4_2/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/VSUBS" "VSUBS"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_118#" "m1_3153_755#" 2756.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_118#" "m1_767_755#" 2034.02 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_555_21#" "a_623_658#" -252779 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -74945600 -5190 0 0 -18057772 -3000 -56537048 -3120 0 0 0 0 0 0 0 0 0 0
+merge "a_623_658#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_359_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_359_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_163_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_163_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n33_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n33_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n229_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n229_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n425_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n425_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_653_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_653_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_261_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_261_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_65_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_65_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n131_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n131_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n327_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n327_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n523_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n523_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_549#" "a_623_1186#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_109#" "m1_1747_n2156#" 918.417 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1468336 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1143_n597#" "a_623_n1418#" -383542 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -106042004 -8800 0 0 -34793172 -5000 -108767516 -5200 0 0 0 0 0 0 0 0 0 0
+merge "a_623_n1418#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_947_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_947_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1045_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1045_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_751_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_751_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_849_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_849_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_555_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_555_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_653_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_653_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_359_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_359_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_457_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_457_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_163_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_163_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_261_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_261_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n33_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n33_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_65_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_65_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n229_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n229_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n131_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n131_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n425_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n425_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n327_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n327_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n621_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n621_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n523_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n523_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n817_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n817_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n719_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n719_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1013_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1013_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n915_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n915_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_n87#" "a_623_n908#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_109#" "m1_1649_n472#" -3594.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2329648 -412 -4891876 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "m1_669_n1916#" -4092.17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4089780 -412 -3312638 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_n518#" "m1_1257_119#" 1050.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1671960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_555_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_359_21#" -298031 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -88682004 -5190 0 0 -21380208 -3000 -66887798 -3120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_359_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_653_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_653_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_457_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_457_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_163_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_163_21#" "a_2421_658#"
+merge "a_2421_658#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n33_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n33_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n229_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n229_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n425_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n425_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_21#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_21#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_261_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_261_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_65_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_65_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n131_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n131_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n327_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n327_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n523_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n523_549#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_549#" "a_2421_1186#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1000_n509#" "m1_2825_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_109#" "m1_1551_n712#" 458.434 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 754680 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_118#" "m1_2467_995#" 2744.46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1143_n597#" "a_623_n2862#" -276636 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -76351830 -8800 0 0 -25036344 -5000 -78345132 -5200 0 0 0 0 0 0 0 0 0 0
+merge "a_623_n2862#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_947_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_947_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1045_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1045_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_751_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_751_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_849_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_849_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_555_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_555_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_653_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_653_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_359_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_359_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_457_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_457_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_163_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_163_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_261_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_261_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n33_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n33_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_65_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_65_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n229_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n229_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n131_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n131_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n425_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n425_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n327_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n327_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n621_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n621_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n523_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n523_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n817_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n817_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n719_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n719_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1013_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1013_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n915_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n915_n87#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_n597#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1209_n597#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1111_n87#" "a_623_n2352#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_109#" "m1_1649_n1916#" -6140.63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -6187000 -412 -5033204 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_n509#" "m1_1159_n1090#" 1246.83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1977720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1000_n509#" "m1_2825_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_109#" "m1_2335_n2156#" 846.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_109#" "m1_2041_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_n509#" "m1_2531_n1090#" 2757.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_n509#" "m1_669_n1330#" 2203.53 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3506520 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_118#" "m1_3055_995#" 2752.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_109#" "m1_2531_n2156#" 846.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "m1_2531_n2534#" 1947.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_n518#" "m1_3741_359#" 997.261 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1640760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_118#" "m1_1649_995#" 3375.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5288960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_n518#" "m1_3349_359#" 3339.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5226560 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_n518#" "m1_1453_119#" 656.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1060440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n176_n509#" "m1_1649_n1330#" 3382.45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5288960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_109#" "m1_1159_n2156#" 370.762 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 618600 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_653_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_457_n615#" -295653 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -88012824 -5190 0 0 -21204108 -3000 -66299012 -3120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_457_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_555_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_555_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_359_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_359_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_261_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_261_n615#" "a_2421_22#"
+merge "a_2421_22#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_65_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_65_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n131_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n131_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n327_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n327_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n523_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n523_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n719_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_163_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_163_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n33_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n33_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n229_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n229_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n425_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n425_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n621_n87#" "a_2421_550#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" "m1_1159_n2534#" 873.919 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1402602 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1045_21#" "a_622_n800#" -605901 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -167666812 -8798 0 0 -55267196 -4998 -171375348 -5200 0 0 0 0 0 0 0 0 0 0
+merge "a_622_n800#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1143_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1143_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_849_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_849_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_947_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_947_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_653_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_653_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_751_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_751_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_457_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_457_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_555_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_555_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_261_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_261_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_359_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_359_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_65_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_65_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_163_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_163_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n131_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n131_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n33_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n33_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n327_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n327_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n229_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n229_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n523_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n523_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n425_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n425_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n719_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n719_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n621_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n621_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n915_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n915_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n817_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n817_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_21#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1111_21#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1013_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1013_531#" "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#"
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1209_531#" "a_622_n290#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_n518#" "m1_1943_359#" 2750.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_n518#" "m1_2957_359#" 2757.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_109#" "m1_2923_n712#" 2726.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1098_n509#" "m1_2923_n1090#" 2727.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_118#" "m1_571_755#" 2387.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3812280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_n509#" "m1_1061_n1330#" 1445.41 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2283480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_118#" "m1_3839_995#" 1176.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1946520 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_109#" "m1_2139_n712#" 2755.13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_n509#" "m1_767_n1090#" 2035.08 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_n509#" "m1_2629_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_n509#" "m1_1453_n2774#" 461.971 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 757578 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_109#" "m1_1747_n712#" 2986.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4677440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_n509#" "m1_2237_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_109#" "m1_2041_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_118#" "m1_3545_755#" 634.476 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1029240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_109#" "m1_1257_n472#" -1062.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -670464 -412 -1428574 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n78_n509#" "m1_1747_n1090#" 2986.8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4677440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_109#" "m1_2923_n2156#" 816.299 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_n518#" "m1_2663_119#" 2755.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n78_118#" "m1_1257_995#" 1044.6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1671960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "m1_571_n2534#" 1715.82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2707962 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_n509#" "m1_3021_n2774#" 1956.95 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_109#" "m1_767_n2156#" 619.363 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1004328 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_n509#" "m1_2237_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_n518#" "m1_3447_119#" 433.375 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 723480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_118#" "m1_2859_995#" 2752.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_109#" "m1_1257_n1916#" -1869.15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1895364 -412 -1469846 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n78_n509#" "m1_1747_n2534#" 2110.98 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3322016 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_109#" "m1_2433_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n568_n518#" "m1_767_359#" 2036.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_314_n518#" "m1_1649_119#" 3381.7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5288960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_n509#" "m1_1845_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_216_118#" "m1_3349_755#" 3339.65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5226560 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_n509#" "m1_1355_n1090#" 852.71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1366200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_n518#" "m1_1159_359#" 1248.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1977720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "m1_571_n2156#" 744.807 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1197192 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_118#" "m1_2041_995#" 2731.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n764_109#" "m1_1061_n472#" -1499.44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -957408 -412 -2025590 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_216_n509#" "m1_2041_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_n518#" "m1_1845_119#" 2758.34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_608_n509#" "m1_2433_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_118#" "m1_963_755#" 1639.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2589240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_653_n615#" "a_623_22#" -250433 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -74359032 -5190 0 0 -17903412 -3000 -56020796 -3120 0 0 0 0 0 0 0 0 0 0
+merge "a_623_22#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_457_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_261_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_261_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_65_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_65_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n131_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n131_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n327_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n327_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n523_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n523_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_n615#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n719_n615#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_555_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_555_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_359_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_359_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_163_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_163_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n33_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n33_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n229_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n229_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n425_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n425_n87#" "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n621_n87#" "a_623_550#"
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n78_n518#" "m1_3055_119#" 2755.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n470_118#" "m1_2663_995#" 2752.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_109#" "m1_1943_n712#" 2757.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_n509#" "m1_2433_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n764_n518#" "m1_571_359#" 2390.59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3812280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_118#" "m1_1355_755#" 851.646 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1366200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_n518#" "m1_2369_359#" 2744.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_118#" "m1_865_995#" 1832.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2895000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_608_109#" "m1_2433_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n568_n509#" "m1_1257_n2774#" 742.406 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1192698 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_n509#" "m1_1355_n2534#" 593.484 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 967482 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_118#" "m1_1551_755#" 457.522 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 754680 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_n509#" "m1_1845_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_20_109#" "m1_1845_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_118#" "m1_3251_995#" 2941.42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4615040 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_314_n509#" "m1_2139_n1090#" 2757.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_804_109#" "m1_2629_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_608_118#" "m1_3741_755#" 997.158 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1640760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n372_109#" "m1_1453_n1916#" -1138.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1163892 -412 -855582 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_118#" "m1_2565_755#" 2756.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_20_n518#" "m1_3153_359#" 2756.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_109#" "m1_865_n472#" -1936.61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1244352 -412 -2622606 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_109#" "m1_1943_n2156#" 846.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1098_n509#" "m1_2923_n2534#" 1918.05 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "m1_669_n2774#" 1553.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2498058 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_n509#" "m1_2139_n2534#" 1947.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n470_n518#" "m1_865_119#" 1838.79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2895000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_n509#" "m1_963_n2534#" 1154.35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1837722 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_109#" "m1_865_n1916#" -3331.07 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3358308 -412 -2698374 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_118#" "m1_669_995#" 2195.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3506520 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_n509#" "m1_2629_n1330#" 2759.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_314_109#" "m1_2139_n2156#" 846.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_n509#" "m1_1453_n1330#" 657.165 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1060440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_n509#" "m1_3021_n1330#" 2759.62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_n509#" "m1_1551_n2534#" 313.049 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 532362 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_216_n518#" "m1_1551_359#" 459.846 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 754680 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_804_109#" "m1_2629_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_706_109#" "m1_2531_n712#" 2756.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_118_n509#" "m1_1943_n2534#" 1947.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_n509#" "m1_571_n1090#" 2428.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3812280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_412_118#" "m1_1747_755#" 2985.74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4677440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n470_109#" "m1_1355_n712#" 852.559 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1366200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" "m1_571_n712#" 2430.19 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3812280 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_608_118#" "m1_1943_755#" 2748.58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_n509#" "m1_2727_n1090#" 2757.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_20_n518#" "m1_1355_359#" 853.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1366200 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n274_n509#" "m1_1551_n1090#" 458.585 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 754680 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n470_109#" "m1_1355_n2156#" 246.461 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 425736 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" "m1_1061_995#" 1438.73 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2283480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_510_109#" "m1_2335_n712#" 2756.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_118#" "m1_3643_995#" 827.433 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1335000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_1196_109#" "m1_3021_n1916#" -4984.18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n666_n518#" "m1_669_119#" 2201.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3506520 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_118#" "m1_2761_755#" 2756.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n372_n518#" "m1_2761_359#" 2757.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n176_118#" "m1_2957_755#" 2756.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_109#" "m1_2727_n2156#" 846.119 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1356160 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n274_109#" "m1_1551_n2156#" 122.16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 232872 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_902_109#" "m1_2727_n712#" 2756.43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n568_n509#" "m1_1257_n1330#" 1051.29 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1671960 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_118_118#" "m1_1453_995#" 650.479 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1060440 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_706_n518#" "m1_3839_119#" 1178.26 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1946520 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n960_n509#" "m1_865_n2774#" 1303.28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2062938 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_109#" "m1_963_n712#" 1640.81 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2589240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1058_n509#" "m1_767_n2534#" 1434.79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2272842 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_216_n509#" "m1_2041_n2774#" 1958.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3079144 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n372_n518#" "m1_963_359#" 1642.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2589240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_118_n518#" "m1_3251_119#" 2941.49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4615040 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_20_109#" "m1_1845_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_510_n509#" "m1_2335_n2534#" 1947.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n176_n509#" "m1_1649_n2774#" 2401.76 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3767344 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_1196_109#" "m1_3021_n472#" -2902.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n862_109#" "m1_963_n2156#" 495.063 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 811464 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n666_n518#" "m1_2467_119#" 2747.91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n764_118#" "m1_2369_755#" 2739.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n372_109#" "m1_1453_n472#" -625.089 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -383520 -412 -831558 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1156_109#" "m1_669_n472#" -2403.92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1531296 -412 -3219622 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_412_109#" "m1_2237_n472#" -2903.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1875808 -412 -3947616 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_510_118#" "m1_1845_995#" 2752.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n176_118#" "m1_1159_755#" 1245.77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1977720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_412_n518#" "m1_3545_359#" 634.578 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1029240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n274_n518#" "m1_2859_119#" 2755.85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_118_n509#" "m1_1943_n1090#" 2757.57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_902_n509#" "m1_2727_n2534#" 1947.87 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3068936 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_n509#" "m1_1061_n2774#" 1022.84 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1627818 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_n518#" "m1_1061_119#" 1444.67 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2283480 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_412_109#" "m1_2237_n1916#" -4984.52 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5030080 -412 -4061664 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n960_n509#" "m1_865_n1330#" 1839.54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2895000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n764_109#" "m1_1061_n1916#" -2600.11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2626836 -412 -2084110 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_1/a_706_n518#" "m1_2041_119#" 2743.22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n666_109#" "m1_1159_n712#" 1246.68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1977720 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_510_n518#" "m1_3643_119#" 827.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1335000 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n862_n509#" "m1_963_n1090#" 1640.96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2589240 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1058_109#" "m1_767_n712#" 2034.93 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3200760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_n568_n518#" "m1_2565_359#" 2757.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4321760 -412 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_NZHYX4_2/a_314_118#" "m1_3447_995#" 433.309 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 723480 -412 0 0 0 0 0 0 0 0 0 0
diff --git a/mag/tia/rf_transistors.mag b/mag/tia/rf_transistors.mag
new file mode 100644
index 0000000..fe720cc
--- /dev/null
+++ b/mag/tia/rf_transistors.mag
@@ -0,0 +1,1909 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect 623 1186 2061 1252
+rect 2421 1186 3859 1252
+rect 734 1180 774 1186
+rect 930 1180 970 1186
+rect 1126 1180 1166 1186
+rect 1322 1180 1362 1186
+rect 1518 1180 1558 1186
+rect 1714 1180 1754 1186
+rect 1910 1180 1950 1186
+rect 2532 1180 2572 1186
+rect 2728 1180 2768 1186
+rect 2924 1180 2964 1186
+rect 3120 1180 3160 1186
+rect 3316 1180 3356 1186
+rect 3512 1180 3552 1186
+rect 3708 1180 3748 1186
+rect 636 724 676 730
+rect 832 724 872 730
+rect 1028 724 1068 730
+rect 1224 724 1264 730
+rect 1420 724 1460 730
+rect 1616 724 1656 730
+rect 1812 724 1852 730
+rect 2008 724 2048 730
+rect 2434 724 2474 730
+rect 2630 724 2670 730
+rect 2826 724 2866 730
+rect 3022 724 3062 730
+rect 3218 724 3258 730
+rect 3414 724 3454 730
+rect 3610 724 3650 730
+rect 3806 724 3846 730
+rect 623 658 2061 724
+rect 2421 658 3859 724
+rect 623 550 2061 616
+rect 2421 550 3859 616
+rect 636 544 676 550
+rect 832 544 872 550
+rect 1028 544 1068 550
+rect 1224 544 1264 550
+rect 1420 544 1460 550
+rect 1616 544 1656 550
+rect 1812 544 1852 550
+rect 2008 544 2048 550
+rect 2434 544 2474 550
+rect 2630 544 2670 550
+rect 2826 544 2866 550
+rect 3022 544 3062 550
+rect 3218 544 3258 550
+rect 3414 544 3454 550
+rect 3610 544 3650 550
+rect 3806 544 3846 550
+rect 734 88 774 94
+rect 930 88 970 94
+rect 1126 88 1166 94
+rect 1322 88 1362 94
+rect 1518 88 1558 94
+rect 1714 88 1754 94
+rect 1910 88 1950 94
+rect 2532 88 2572 94
+rect 2728 88 2768 94
+rect 2924 88 2964 94
+rect 3120 88 3160 94
+rect 3316 88 3356 94
+rect 3512 88 3552 94
+rect 3708 88 3748 94
+rect 623 22 2061 88
+rect 2421 22 3859 88
+<< poly >>
+rect 623 1236 2061 1252
+rect 623 1202 737 1236
+rect 771 1202 933 1236
+rect 967 1202 1129 1236
+rect 1163 1202 1325 1236
+rect 1359 1202 1521 1236
+rect 1555 1202 1717 1236
+rect 1751 1202 1913 1236
+rect 1947 1202 2061 1236
+rect 623 1186 2061 1202
+rect 2421 1236 3859 1252
+rect 2421 1202 2535 1236
+rect 2569 1202 2731 1236
+rect 2765 1202 2927 1236
+rect 2961 1202 3123 1236
+rect 3157 1202 3319 1236
+rect 3353 1202 3515 1236
+rect 3549 1202 3711 1236
+rect 3745 1202 3859 1236
+rect 2421 1186 3859 1202
+rect 734 1180 774 1186
+rect 930 1180 970 1186
+rect 1126 1180 1166 1186
+rect 1322 1180 1362 1186
+rect 1518 1180 1558 1186
+rect 1714 1180 1754 1186
+rect 1910 1180 1950 1186
+rect 2532 1180 2572 1186
+rect 2728 1180 2768 1186
+rect 2924 1180 2964 1186
+rect 3120 1180 3160 1186
+rect 3316 1180 3356 1186
+rect 3512 1180 3552 1186
+rect 3708 1180 3748 1186
+rect 636 724 676 730
+rect 832 724 872 730
+rect 1028 724 1068 730
+rect 1224 724 1264 730
+rect 1420 724 1460 730
+rect 1616 724 1656 730
+rect 1812 724 1852 730
+rect 2008 724 2048 730
+rect 2434 724 2474 730
+rect 2630 724 2670 730
+rect 2826 724 2866 730
+rect 3022 724 3062 730
+rect 3218 724 3258 730
+rect 3414 724 3454 730
+rect 3610 724 3650 730
+rect 3806 724 3846 730
+rect 623 708 2061 724
+rect 623 674 639 708
+rect 673 674 835 708
+rect 869 674 1031 708
+rect 1065 674 1227 708
+rect 1261 674 1423 708
+rect 1457 674 1619 708
+rect 1653 674 1815 708
+rect 1849 674 2011 708
+rect 2045 674 2061 708
+rect 623 658 2061 674
+rect 2421 708 3859 724
+rect 2421 674 2437 708
+rect 2471 674 2633 708
+rect 2667 674 2829 708
+rect 2863 674 3025 708
+rect 3059 674 3221 708
+rect 3255 674 3417 708
+rect 3451 674 3613 708
+rect 3647 674 3809 708
+rect 3843 674 3859 708
+rect 2421 658 3859 674
+rect 623 600 2061 616
+rect 623 566 639 600
+rect 673 566 835 600
+rect 869 566 1031 600
+rect 1065 566 1227 600
+rect 1261 566 1423 600
+rect 1457 566 1619 600
+rect 1653 566 1815 600
+rect 1849 566 2011 600
+rect 2045 566 2061 600
+rect 623 550 2061 566
+rect 2421 600 3859 616
+rect 2421 566 2437 600
+rect 2471 566 2633 600
+rect 2667 566 2829 600
+rect 2863 566 3025 600
+rect 3059 566 3221 600
+rect 3255 566 3417 600
+rect 3451 566 3613 600
+rect 3647 566 3809 600
+rect 3843 566 3859 600
+rect 2421 550 3859 566
+rect 636 544 676 550
+rect 832 544 872 550
+rect 1028 544 1068 550
+rect 1224 544 1264 550
+rect 1420 544 1460 550
+rect 1616 544 1656 550
+rect 1812 544 1852 550
+rect 2008 544 2048 550
+rect 2434 544 2474 550
+rect 2630 544 2670 550
+rect 2826 544 2866 550
+rect 3022 544 3062 550
+rect 3218 544 3258 550
+rect 3414 544 3454 550
+rect 3610 544 3650 550
+rect 3806 544 3846 550
+rect 734 88 774 94
+rect 930 88 970 94
+rect 1126 88 1166 94
+rect 1322 88 1362 94
+rect 1518 88 1558 94
+rect 1714 88 1754 94
+rect 1910 88 1950 94
+rect 2532 88 2572 94
+rect 2728 88 2768 94
+rect 2924 88 2964 94
+rect 3120 88 3160 94
+rect 3316 88 3356 94
+rect 3512 88 3552 94
+rect 3708 88 3748 94
+rect 623 72 2061 88
+rect 623 38 737 72
+rect 771 38 933 72
+rect 967 38 1129 72
+rect 1163 38 1325 72
+rect 1359 38 1521 72
+rect 1555 38 1717 72
+rect 1751 38 1913 72
+rect 1947 38 2061 72
+rect 623 22 2061 38
+rect 2421 72 3859 88
+rect 2421 38 2535 72
+rect 2569 38 2731 72
+rect 2765 38 2927 72
+rect 2961 38 3123 72
+rect 3157 38 3319 72
+rect 3353 38 3515 72
+rect 3549 38 3711 72
+rect 3745 38 3859 72
+rect 2421 22 3859 38
+rect 622 -240 3040 -224
+rect 622 -274 736 -240
+rect 770 -274 932 -240
+rect 966 -274 1128 -240
+rect 1162 -274 1324 -240
+rect 1358 -274 1520 -240
+rect 1554 -274 1716 -240
+rect 1750 -274 1912 -240
+rect 1946 -274 2108 -240
+rect 2142 -274 2304 -240
+rect 2338 -274 2500 -240
+rect 2534 -274 2696 -240
+rect 2730 -274 2892 -240
+rect 2926 -274 3040 -240
+rect 622 -290 3040 -274
+rect 622 -750 3040 -734
+rect 622 -784 638 -750
+rect 672 -784 834 -750
+rect 868 -784 1030 -750
+rect 1064 -784 1226 -750
+rect 1260 -784 1422 -750
+rect 1456 -784 1618 -750
+rect 1652 -784 1814 -750
+rect 1848 -784 2010 -750
+rect 2044 -784 2206 -750
+rect 2240 -784 2402 -750
+rect 2436 -784 2598 -750
+rect 2632 -784 2794 -750
+rect 2828 -784 2990 -750
+rect 3024 -784 3040 -750
+rect 622 -800 3040 -784
+rect 623 -858 3041 -842
+rect 623 -892 639 -858
+rect 673 -892 835 -858
+rect 869 -892 1031 -858
+rect 1065 -892 1227 -858
+rect 1261 -892 1423 -858
+rect 1457 -892 1619 -858
+rect 1653 -892 1815 -858
+rect 1849 -892 2011 -858
+rect 2045 -892 2207 -858
+rect 2241 -892 2403 -858
+rect 2437 -892 2599 -858
+rect 2633 -892 2795 -858
+rect 2829 -892 2991 -858
+rect 3025 -892 3041 -858
+rect 623 -908 3041 -892
+rect 623 -1368 3041 -1352
+rect 623 -1402 737 -1368
+rect 771 -1402 933 -1368
+rect 967 -1402 1129 -1368
+rect 1163 -1402 1325 -1368
+rect 1359 -1402 1521 -1368
+rect 1555 -1402 1717 -1368
+rect 1751 -1402 1913 -1368
+rect 1947 -1402 2109 -1368
+rect 2143 -1402 2305 -1368
+rect 2339 -1402 2501 -1368
+rect 2535 -1402 2697 -1368
+rect 2731 -1402 2893 -1368
+rect 2927 -1402 3041 -1368
+rect 623 -1418 3041 -1402
+rect 622 -1684 3040 -1668
+rect 622 -1718 736 -1684
+rect 770 -1718 932 -1684
+rect 966 -1718 1128 -1684
+rect 1162 -1718 1324 -1684
+rect 1358 -1718 1520 -1684
+rect 1554 -1718 1716 -1684
+rect 1750 -1718 1912 -1684
+rect 1946 -1718 2108 -1684
+rect 2142 -1718 2304 -1684
+rect 2338 -1718 2500 -1684
+rect 2534 -1718 2696 -1684
+rect 2730 -1718 2892 -1684
+rect 2926 -1718 3040 -1684
+rect 622 -1734 3040 -1718
+rect 622 -2194 3040 -2178
+rect 622 -2228 638 -2194
+rect 672 -2228 834 -2194
+rect 868 -2228 1030 -2194
+rect 1064 -2228 1226 -2194
+rect 1260 -2228 1422 -2194
+rect 1456 -2228 1618 -2194
+rect 1652 -2228 1814 -2194
+rect 1848 -2228 2010 -2194
+rect 2044 -2228 2206 -2194
+rect 2240 -2228 2402 -2194
+rect 2436 -2228 2598 -2194
+rect 2632 -2228 2794 -2194
+rect 2828 -2228 2990 -2194
+rect 3024 -2228 3040 -2194
+rect 622 -2244 3040 -2228
+rect 623 -2302 3041 -2286
+rect 623 -2336 639 -2302
+rect 673 -2336 835 -2302
+rect 869 -2336 1031 -2302
+rect 1065 -2336 1227 -2302
+rect 1261 -2336 1423 -2302
+rect 1457 -2336 1619 -2302
+rect 1653 -2336 1815 -2302
+rect 1849 -2336 2011 -2302
+rect 2045 -2336 2207 -2302
+rect 2241 -2336 2403 -2302
+rect 2437 -2336 2599 -2302
+rect 2633 -2336 2795 -2302
+rect 2829 -2336 2991 -2302
+rect 3025 -2336 3041 -2302
+rect 623 -2352 3041 -2336
+rect 623 -2812 3041 -2796
+rect 623 -2846 737 -2812
+rect 771 -2846 933 -2812
+rect 967 -2846 1129 -2812
+rect 1163 -2846 1325 -2812
+rect 1359 -2846 1521 -2812
+rect 1555 -2846 1717 -2812
+rect 1751 -2846 1913 -2812
+rect 1947 -2846 2109 -2812
+rect 2143 -2846 2305 -2812
+rect 2339 -2846 2501 -2812
+rect 2535 -2846 2697 -2812
+rect 2731 -2846 2893 -2812
+rect 2927 -2846 3041 -2812
+rect 623 -2862 3041 -2846
+<< polycont >>
+rect 737 1202 771 1236
+rect 933 1202 967 1236
+rect 1129 1202 1163 1236
+rect 1325 1202 1359 1236
+rect 1521 1202 1555 1236
+rect 1717 1202 1751 1236
+rect 1913 1202 1947 1236
+rect 2535 1202 2569 1236
+rect 2731 1202 2765 1236
+rect 2927 1202 2961 1236
+rect 3123 1202 3157 1236
+rect 3319 1202 3353 1236
+rect 3515 1202 3549 1236
+rect 3711 1202 3745 1236
+rect 639 674 673 708
+rect 835 674 869 708
+rect 1031 674 1065 708
+rect 1227 674 1261 708
+rect 1423 674 1457 708
+rect 1619 674 1653 708
+rect 1815 674 1849 708
+rect 2011 674 2045 708
+rect 2437 674 2471 708
+rect 2633 674 2667 708
+rect 2829 674 2863 708
+rect 3025 674 3059 708
+rect 3221 674 3255 708
+rect 3417 674 3451 708
+rect 3613 674 3647 708
+rect 3809 674 3843 708
+rect 639 566 673 600
+rect 835 566 869 600
+rect 1031 566 1065 600
+rect 1227 566 1261 600
+rect 1423 566 1457 600
+rect 1619 566 1653 600
+rect 1815 566 1849 600
+rect 2011 566 2045 600
+rect 2437 566 2471 600
+rect 2633 566 2667 600
+rect 2829 566 2863 600
+rect 3025 566 3059 600
+rect 3221 566 3255 600
+rect 3417 566 3451 600
+rect 3613 566 3647 600
+rect 3809 566 3843 600
+rect 737 38 771 72
+rect 933 38 967 72
+rect 1129 38 1163 72
+rect 1325 38 1359 72
+rect 1521 38 1555 72
+rect 1717 38 1751 72
+rect 1913 38 1947 72
+rect 2535 38 2569 72
+rect 2731 38 2765 72
+rect 2927 38 2961 72
+rect 3123 38 3157 72
+rect 3319 38 3353 72
+rect 3515 38 3549 72
+rect 3711 38 3745 72
+rect 736 -274 770 -240
+rect 932 -274 966 -240
+rect 1128 -274 1162 -240
+rect 1324 -274 1358 -240
+rect 1520 -274 1554 -240
+rect 1716 -274 1750 -240
+rect 1912 -274 1946 -240
+rect 2108 -274 2142 -240
+rect 2304 -274 2338 -240
+rect 2500 -274 2534 -240
+rect 2696 -274 2730 -240
+rect 2892 -274 2926 -240
+rect 638 -784 672 -750
+rect 834 -784 868 -750
+rect 1030 -784 1064 -750
+rect 1226 -784 1260 -750
+rect 1422 -784 1456 -750
+rect 1618 -784 1652 -750
+rect 1814 -784 1848 -750
+rect 2010 -784 2044 -750
+rect 2206 -784 2240 -750
+rect 2402 -784 2436 -750
+rect 2598 -784 2632 -750
+rect 2794 -784 2828 -750
+rect 2990 -784 3024 -750
+rect 639 -892 673 -858
+rect 835 -892 869 -858
+rect 1031 -892 1065 -858
+rect 1227 -892 1261 -858
+rect 1423 -892 1457 -858
+rect 1619 -892 1653 -858
+rect 1815 -892 1849 -858
+rect 2011 -892 2045 -858
+rect 2207 -892 2241 -858
+rect 2403 -892 2437 -858
+rect 2599 -892 2633 -858
+rect 2795 -892 2829 -858
+rect 2991 -892 3025 -858
+rect 737 -1402 771 -1368
+rect 933 -1402 967 -1368
+rect 1129 -1402 1163 -1368
+rect 1325 -1402 1359 -1368
+rect 1521 -1402 1555 -1368
+rect 1717 -1402 1751 -1368
+rect 1913 -1402 1947 -1368
+rect 2109 -1402 2143 -1368
+rect 2305 -1402 2339 -1368
+rect 2501 -1402 2535 -1368
+rect 2697 -1402 2731 -1368
+rect 2893 -1402 2927 -1368
+rect 736 -1718 770 -1684
+rect 932 -1718 966 -1684
+rect 1128 -1718 1162 -1684
+rect 1324 -1718 1358 -1684
+rect 1520 -1718 1554 -1684
+rect 1716 -1718 1750 -1684
+rect 1912 -1718 1946 -1684
+rect 2108 -1718 2142 -1684
+rect 2304 -1718 2338 -1684
+rect 2500 -1718 2534 -1684
+rect 2696 -1718 2730 -1684
+rect 2892 -1718 2926 -1684
+rect 638 -2228 672 -2194
+rect 834 -2228 868 -2194
+rect 1030 -2228 1064 -2194
+rect 1226 -2228 1260 -2194
+rect 1422 -2228 1456 -2194
+rect 1618 -2228 1652 -2194
+rect 1814 -2228 1848 -2194
+rect 2010 -2228 2044 -2194
+rect 2206 -2228 2240 -2194
+rect 2402 -2228 2436 -2194
+rect 2598 -2228 2632 -2194
+rect 2794 -2228 2828 -2194
+rect 2990 -2228 3024 -2194
+rect 639 -2336 673 -2302
+rect 835 -2336 869 -2302
+rect 1031 -2336 1065 -2302
+rect 1227 -2336 1261 -2302
+rect 1423 -2336 1457 -2302
+rect 1619 -2336 1653 -2302
+rect 1815 -2336 1849 -2302
+rect 2011 -2336 2045 -2302
+rect 2207 -2336 2241 -2302
+rect 2403 -2336 2437 -2302
+rect 2599 -2336 2633 -2302
+rect 2795 -2336 2829 -2302
+rect 2991 -2336 3025 -2302
+rect 737 -2846 771 -2812
+rect 933 -2846 967 -2812
+rect 1129 -2846 1163 -2812
+rect 1325 -2846 1359 -2812
+rect 1521 -2846 1555 -2812
+rect 1717 -2846 1751 -2812
+rect 1913 -2846 1947 -2812
+rect 2109 -2846 2143 -2812
+rect 2305 -2846 2339 -2812
+rect 2501 -2846 2535 -2812
+rect 2697 -2846 2731 -2812
+rect 2893 -2846 2927 -2812
+<< locali >>
+rect 623 1202 737 1236
+rect 771 1202 933 1236
+rect 967 1202 1129 1236
+rect 1163 1202 1325 1236
+rect 1359 1202 1521 1236
+rect 1555 1202 1717 1236
+rect 1751 1202 1913 1236
+rect 1947 1202 2061 1236
+rect 2421 1202 2535 1236
+rect 2569 1202 2731 1236
+rect 2765 1202 2927 1236
+rect 2961 1202 3123 1236
+rect 3157 1202 3319 1236
+rect 3353 1202 3515 1236
+rect 3549 1202 3711 1236
+rect 3745 1202 3859 1236
+rect 623 674 639 708
+rect 673 674 835 708
+rect 869 674 1031 708
+rect 1065 674 1227 708
+rect 1261 674 1423 708
+rect 1457 674 1619 708
+rect 1653 674 1815 708
+rect 1849 674 2011 708
+rect 2045 674 2061 708
+rect 2421 674 2437 708
+rect 2471 674 2633 708
+rect 2667 674 2829 708
+rect 2863 674 3025 708
+rect 3059 674 3221 708
+rect 3255 674 3417 708
+rect 3451 674 3613 708
+rect 3647 674 3809 708
+rect 3843 674 3859 708
+rect 623 566 639 600
+rect 673 566 835 600
+rect 869 566 1031 600
+rect 1065 566 1227 600
+rect 1261 566 1423 600
+rect 1457 566 1619 600
+rect 1653 566 1815 600
+rect 1849 566 2011 600
+rect 2045 566 2061 600
+rect 2421 566 2437 600
+rect 2471 566 2633 600
+rect 2667 566 2829 600
+rect 2863 566 3025 600
+rect 3059 566 3221 600
+rect 3255 566 3417 600
+rect 3451 566 3613 600
+rect 3647 566 3809 600
+rect 3843 566 3859 600
+rect 623 38 737 72
+rect 771 38 933 72
+rect 967 38 1129 72
+rect 1163 38 1325 72
+rect 1359 38 1521 72
+rect 1555 38 1717 72
+rect 1751 38 1913 72
+rect 1947 38 2061 72
+rect 2421 38 2535 72
+rect 2569 38 2731 72
+rect 2765 38 2927 72
+rect 2961 38 3123 72
+rect 3157 38 3319 72
+rect 3353 38 3515 72
+rect 3549 38 3711 72
+rect 3745 38 3859 72
+rect 622 -274 736 -240
+rect 770 -274 932 -240
+rect 966 -274 1128 -240
+rect 1162 -274 1324 -240
+rect 1358 -274 1520 -240
+rect 1554 -274 1716 -240
+rect 1750 -274 1912 -240
+rect 1946 -274 2108 -240
+rect 2142 -274 2304 -240
+rect 2338 -274 2500 -240
+rect 2534 -274 2696 -240
+rect 2730 -274 2892 -240
+rect 2926 -274 3040 -240
+rect 622 -784 638 -750
+rect 672 -784 834 -750
+rect 868 -784 1030 -750
+rect 1064 -784 1226 -750
+rect 1260 -784 1422 -750
+rect 1456 -784 1618 -750
+rect 1652 -784 1814 -750
+rect 1848 -784 2010 -750
+rect 2044 -784 2206 -750
+rect 2240 -784 2402 -750
+rect 2436 -784 2598 -750
+rect 2632 -784 2794 -750
+rect 2828 -784 2990 -750
+rect 3024 -784 3040 -750
+rect 623 -892 639 -858
+rect 673 -892 835 -858
+rect 869 -892 1031 -858
+rect 1065 -892 1227 -858
+rect 1261 -892 1423 -858
+rect 1457 -892 1619 -858
+rect 1653 -892 1815 -858
+rect 1849 -892 2011 -858
+rect 2045 -892 2207 -858
+rect 2241 -892 2403 -858
+rect 2437 -892 2599 -858
+rect 2633 -892 2795 -858
+rect 2829 -892 2991 -858
+rect 3025 -892 3041 -858
+rect 623 -1402 737 -1368
+rect 771 -1402 933 -1368
+rect 967 -1402 1129 -1368
+rect 1163 -1402 1325 -1368
+rect 1359 -1402 1521 -1368
+rect 1555 -1402 1717 -1368
+rect 1751 -1402 1913 -1368
+rect 1947 -1402 2109 -1368
+rect 2143 -1402 2305 -1368
+rect 2339 -1402 2501 -1368
+rect 2535 -1402 2697 -1368
+rect 2731 -1402 2893 -1368
+rect 2927 -1402 3041 -1368
+rect 622 -1718 736 -1684
+rect 770 -1718 932 -1684
+rect 966 -1718 1128 -1684
+rect 1162 -1718 1324 -1684
+rect 1358 -1718 1520 -1684
+rect 1554 -1718 1716 -1684
+rect 1750 -1718 1912 -1684
+rect 1946 -1718 2108 -1684
+rect 2142 -1718 2304 -1684
+rect 2338 -1718 2500 -1684
+rect 2534 -1718 2696 -1684
+rect 2730 -1718 2892 -1684
+rect 2926 -1718 3040 -1684
+rect 622 -2228 638 -2194
+rect 672 -2228 834 -2194
+rect 868 -2228 1030 -2194
+rect 1064 -2228 1226 -2194
+rect 1260 -2228 1422 -2194
+rect 1456 -2228 1618 -2194
+rect 1652 -2228 1814 -2194
+rect 1848 -2228 2010 -2194
+rect 2044 -2228 2206 -2194
+rect 2240 -2228 2402 -2194
+rect 2436 -2228 2598 -2194
+rect 2632 -2228 2794 -2194
+rect 2828 -2228 2990 -2194
+rect 3024 -2228 3040 -2194
+rect 623 -2336 639 -2302
+rect 673 -2336 835 -2302
+rect 869 -2336 1031 -2302
+rect 1065 -2336 1227 -2302
+rect 1261 -2336 1423 -2302
+rect 1457 -2336 1619 -2302
+rect 1653 -2336 1815 -2302
+rect 1849 -2336 2011 -2302
+rect 2045 -2336 2207 -2302
+rect 2241 -2336 2403 -2302
+rect 2437 -2336 2599 -2302
+rect 2633 -2336 2795 -2302
+rect 2829 -2336 2991 -2302
+rect 3025 -2336 3041 -2302
+rect 623 -2846 737 -2812
+rect 771 -2846 933 -2812
+rect 967 -2846 1129 -2812
+rect 1163 -2846 1325 -2812
+rect 1359 -2846 1521 -2812
+rect 1555 -2846 1717 -2812
+rect 1751 -2846 1913 -2812
+rect 1947 -2846 2109 -2812
+rect 2143 -2846 2305 -2812
+rect 2339 -2846 2501 -2812
+rect 2535 -2846 2697 -2812
+rect 2731 -2846 2893 -2812
+rect 2927 -2846 3041 -2812
+<< viali >>
+rect 737 1202 771 1236
+rect 933 1202 967 1236
+rect 1129 1202 1163 1236
+rect 1325 1202 1359 1236
+rect 1521 1202 1555 1236
+rect 1717 1202 1751 1236
+rect 1913 1202 1947 1236
+rect 2535 1202 2569 1236
+rect 2731 1202 2765 1236
+rect 2927 1202 2961 1236
+rect 3123 1202 3157 1236
+rect 3319 1202 3353 1236
+rect 3515 1202 3549 1236
+rect 3711 1202 3745 1236
+rect 639 674 673 708
+rect 835 674 869 708
+rect 1031 674 1065 708
+rect 1227 674 1261 708
+rect 1423 674 1457 708
+rect 1619 674 1653 708
+rect 1815 674 1849 708
+rect 2011 674 2045 708
+rect 2437 674 2471 708
+rect 2633 674 2667 708
+rect 2829 674 2863 708
+rect 3025 674 3059 708
+rect 3221 674 3255 708
+rect 3417 674 3451 708
+rect 3613 674 3647 708
+rect 3809 674 3843 708
+rect 639 566 673 600
+rect 835 566 869 600
+rect 1031 566 1065 600
+rect 1227 566 1261 600
+rect 1423 566 1457 600
+rect 1619 566 1653 600
+rect 1815 566 1849 600
+rect 2011 566 2045 600
+rect 2437 566 2471 600
+rect 2633 566 2667 600
+rect 2829 566 2863 600
+rect 3025 566 3059 600
+rect 3221 566 3255 600
+rect 3417 566 3451 600
+rect 3613 566 3647 600
+rect 3809 566 3843 600
+rect 737 38 771 72
+rect 933 38 967 72
+rect 1129 38 1163 72
+rect 1325 38 1359 72
+rect 1521 38 1555 72
+rect 1717 38 1751 72
+rect 1913 38 1947 72
+rect 2535 38 2569 72
+rect 2731 38 2765 72
+rect 2927 38 2961 72
+rect 3123 38 3157 72
+rect 3319 38 3353 72
+rect 3515 38 3549 72
+rect 3711 38 3745 72
+rect 736 -274 770 -240
+rect 932 -274 966 -240
+rect 1128 -274 1162 -240
+rect 1324 -274 1358 -240
+rect 1520 -274 1554 -240
+rect 1716 -274 1750 -240
+rect 1912 -274 1946 -240
+rect 2108 -274 2142 -240
+rect 2304 -274 2338 -240
+rect 2500 -274 2534 -240
+rect 2696 -274 2730 -240
+rect 2892 -274 2926 -240
+rect 638 -784 672 -750
+rect 834 -784 868 -750
+rect 1030 -784 1064 -750
+rect 1226 -784 1260 -750
+rect 1422 -784 1456 -750
+rect 1618 -784 1652 -750
+rect 1814 -784 1848 -750
+rect 2010 -784 2044 -750
+rect 2206 -784 2240 -750
+rect 2402 -784 2436 -750
+rect 2598 -784 2632 -750
+rect 2794 -784 2828 -750
+rect 2990 -784 3024 -750
+rect 639 -892 673 -858
+rect 835 -892 869 -858
+rect 1031 -892 1065 -858
+rect 1227 -892 1261 -858
+rect 1423 -892 1457 -858
+rect 1619 -892 1653 -858
+rect 1815 -892 1849 -858
+rect 2011 -892 2045 -858
+rect 2207 -892 2241 -858
+rect 2403 -892 2437 -858
+rect 2599 -892 2633 -858
+rect 2795 -892 2829 -858
+rect 2991 -892 3025 -858
+rect 737 -1402 771 -1368
+rect 933 -1402 967 -1368
+rect 1129 -1402 1163 -1368
+rect 1325 -1402 1359 -1368
+rect 1521 -1402 1555 -1368
+rect 1717 -1402 1751 -1368
+rect 1913 -1402 1947 -1368
+rect 2109 -1402 2143 -1368
+rect 2305 -1402 2339 -1368
+rect 2501 -1402 2535 -1368
+rect 2697 -1402 2731 -1368
+rect 2893 -1402 2927 -1368
+rect 736 -1718 770 -1684
+rect 932 -1718 966 -1684
+rect 1128 -1718 1162 -1684
+rect 1324 -1718 1358 -1684
+rect 1520 -1718 1554 -1684
+rect 1716 -1718 1750 -1684
+rect 1912 -1718 1946 -1684
+rect 2108 -1718 2142 -1684
+rect 2304 -1718 2338 -1684
+rect 2500 -1718 2534 -1684
+rect 2696 -1718 2730 -1684
+rect 2892 -1718 2926 -1684
+rect 638 -2228 672 -2194
+rect 834 -2228 868 -2194
+rect 1030 -2228 1064 -2194
+rect 1226 -2228 1260 -2194
+rect 1422 -2228 1456 -2194
+rect 1618 -2228 1652 -2194
+rect 1814 -2228 1848 -2194
+rect 2010 -2228 2044 -2194
+rect 2206 -2228 2240 -2194
+rect 2402 -2228 2436 -2194
+rect 2598 -2228 2632 -2194
+rect 2794 -2228 2828 -2194
+rect 2990 -2228 3024 -2194
+rect 639 -2336 673 -2302
+rect 835 -2336 869 -2302
+rect 1031 -2336 1065 -2302
+rect 1227 -2336 1261 -2302
+rect 1423 -2336 1457 -2302
+rect 1619 -2336 1653 -2302
+rect 1815 -2336 1849 -2302
+rect 2011 -2336 2045 -2302
+rect 2207 -2336 2241 -2302
+rect 2403 -2336 2437 -2302
+rect 2599 -2336 2633 -2302
+rect 2795 -2336 2829 -2302
+rect 2991 -2336 3025 -2302
+rect 737 -2846 771 -2812
+rect 933 -2846 967 -2812
+rect 1129 -2846 1163 -2812
+rect 1325 -2846 1359 -2812
+rect 1521 -2846 1555 -2812
+rect 1717 -2846 1751 -2812
+rect 1913 -2846 1947 -2812
+rect 2109 -2846 2143 -2812
+rect 2305 -2846 2339 -2812
+rect 2501 -2846 2535 -2812
+rect 2697 -2846 2731 -2812
+rect 2893 -2846 2927 -2812
+<< metal1 >>
+rect 623 1236 2061 1252
+rect 623 1202 737 1236
+rect 771 1202 933 1236
+rect 967 1202 1129 1236
+rect 1163 1202 1325 1236
+rect 1359 1202 1521 1236
+rect 1555 1202 1717 1236
+rect 1751 1202 1913 1236
+rect 1947 1202 2061 1236
+rect 623 1186 2061 1202
+rect 2421 1236 3859 1252
+rect 2421 1202 2535 1236
+rect 2569 1202 2731 1236
+rect 2765 1202 2927 1236
+rect 2961 1202 3123 1236
+rect 3157 1202 3319 1236
+rect 3353 1202 3515 1236
+rect 3549 1202 3711 1236
+rect 3745 1202 3859 1236
+rect 2421 1186 3859 1202
+rect 669 995 679 1155
+rect 731 995 741 1155
+rect 865 995 875 1155
+rect 927 995 937 1155
+rect 1061 995 1071 1155
+rect 1123 995 1133 1155
+rect 1257 995 1267 1155
+rect 1319 995 1329 1155
+rect 1453 995 1463 1155
+rect 1515 995 1525 1155
+rect 1649 995 1659 1155
+rect 1711 995 1721 1155
+rect 1845 995 1855 1155
+rect 1907 995 1917 1155
+rect 2041 995 2051 1155
+rect 2103 995 2113 1155
+rect 2467 995 2477 1155
+rect 2529 995 2539 1155
+rect 2663 995 2673 1155
+rect 2725 995 2735 1155
+rect 2859 995 2869 1155
+rect 2921 995 2931 1155
+rect 3055 995 3065 1155
+rect 3117 995 3127 1155
+rect 3251 995 3261 1155
+rect 3313 995 3323 1155
+rect 3447 995 3457 1155
+rect 3509 995 3519 1155
+rect 3643 995 3653 1155
+rect 3705 995 3715 1155
+rect 3839 995 3849 1155
+rect 3901 995 3911 1155
+rect 571 755 581 915
+rect 633 755 643 915
+rect 767 755 777 915
+rect 829 755 839 915
+rect 963 755 973 915
+rect 1025 755 1035 915
+rect 1159 755 1169 915
+rect 1221 755 1231 915
+rect 1355 755 1365 915
+rect 1417 755 1427 915
+rect 1551 755 1561 915
+rect 1613 755 1623 915
+rect 1747 755 1757 915
+rect 1809 755 1819 915
+rect 1943 755 1953 915
+rect 2005 755 2015 915
+rect 2369 755 2379 915
+rect 2431 755 2441 915
+rect 2565 755 2575 915
+rect 2627 755 2637 915
+rect 2761 755 2771 915
+rect 2823 755 2833 915
+rect 2957 755 2967 915
+rect 3019 755 3029 915
+rect 3153 755 3163 915
+rect 3215 755 3225 915
+rect 3349 755 3359 915
+rect 3411 755 3421 915
+rect 3545 755 3555 915
+rect 3607 755 3617 915
+rect 3741 755 3751 915
+rect 3803 755 3813 915
+rect 623 708 2061 724
+rect 623 674 639 708
+rect 673 674 835 708
+rect 869 674 1031 708
+rect 1065 674 1227 708
+rect 1261 674 1423 708
+rect 1457 674 1619 708
+rect 1653 674 1815 708
+rect 1849 674 2011 708
+rect 2045 674 2061 708
+rect 623 658 2061 674
+rect 2421 708 3859 724
+rect 2421 674 2437 708
+rect 2471 674 2633 708
+rect 2667 674 2829 708
+rect 2863 674 3025 708
+rect 3059 674 3221 708
+rect 3255 674 3417 708
+rect 3451 674 3613 708
+rect 3647 674 3809 708
+rect 3843 674 3859 708
+rect 2421 658 3859 674
+rect 623 600 2061 616
+rect 623 566 639 600
+rect 673 566 835 600
+rect 869 566 1031 600
+rect 1065 566 1227 600
+rect 1261 566 1423 600
+rect 1457 566 1619 600
+rect 1653 566 1815 600
+rect 1849 566 2011 600
+rect 2045 566 2061 600
+rect 623 550 2061 566
+rect 2421 600 3859 616
+rect 2421 566 2437 600
+rect 2471 566 2633 600
+rect 2667 566 2829 600
+rect 2863 566 3025 600
+rect 3059 566 3221 600
+rect 3255 566 3417 600
+rect 3451 566 3613 600
+rect 3647 566 3809 600
+rect 3843 566 3859 600
+rect 2421 550 3859 566
+rect 571 359 581 519
+rect 633 359 643 519
+rect 767 359 777 519
+rect 829 359 839 519
+rect 963 359 973 519
+rect 1025 359 1035 519
+rect 1159 359 1169 519
+rect 1221 359 1231 519
+rect 1355 359 1365 519
+rect 1417 359 1427 519
+rect 1551 359 1561 519
+rect 1613 359 1623 519
+rect 1747 359 1757 519
+rect 1809 359 1819 519
+rect 1943 359 1953 519
+rect 2005 359 2015 519
+rect 2369 359 2379 519
+rect 2431 359 2441 519
+rect 2565 359 2575 519
+rect 2627 359 2637 519
+rect 2761 359 2771 519
+rect 2823 359 2833 519
+rect 2957 359 2967 519
+rect 3019 359 3029 519
+rect 3153 359 3163 519
+rect 3215 359 3225 519
+rect 3349 359 3359 519
+rect 3411 359 3421 519
+rect 3545 359 3555 519
+rect 3607 359 3617 519
+rect 3741 359 3751 519
+rect 3803 359 3813 519
+rect 669 119 679 279
+rect 731 119 741 279
+rect 865 119 875 279
+rect 927 119 937 279
+rect 1061 119 1071 279
+rect 1123 119 1133 279
+rect 1257 119 1267 279
+rect 1319 119 1329 279
+rect 1453 119 1463 279
+rect 1515 119 1525 279
+rect 1649 119 1659 279
+rect 1711 119 1721 279
+rect 1845 119 1855 279
+rect 1907 119 1917 279
+rect 2041 119 2051 279
+rect 2103 119 2113 279
+rect 2467 119 2477 279
+rect 2529 119 2539 279
+rect 2663 119 2673 279
+rect 2725 119 2735 279
+rect 2859 119 2869 279
+rect 2921 119 2931 279
+rect 3055 119 3065 279
+rect 3117 119 3127 279
+rect 3251 119 3261 279
+rect 3313 119 3323 279
+rect 3447 119 3457 279
+rect 3509 119 3519 279
+rect 3643 119 3653 279
+rect 3705 119 3715 279
+rect 3839 119 3849 279
+rect 3901 119 3911 279
+rect 623 72 2061 88
+rect 623 38 737 72
+rect 771 38 933 72
+rect 967 38 1129 72
+rect 1163 38 1325 72
+rect 1359 38 1521 72
+rect 1555 38 1717 72
+rect 1751 38 1913 72
+rect 1947 38 2061 72
+rect 623 22 2061 38
+rect 2421 72 3859 88
+rect 2421 38 2535 72
+rect 2569 38 2731 72
+rect 2765 38 2927 72
+rect 2961 38 3123 72
+rect 3157 38 3319 72
+rect 3353 38 3515 72
+rect 3549 38 3711 72
+rect 3745 38 3859 72
+rect 2421 22 3859 38
+rect 622 -240 3040 -224
+rect 622 -274 736 -240
+rect 770 -274 932 -240
+rect 966 -274 1128 -240
+rect 1162 -274 1324 -240
+rect 1358 -274 1520 -240
+rect 1554 -274 1716 -240
+rect 1750 -274 1912 -240
+rect 1946 -274 2108 -240
+rect 2142 -274 2304 -240
+rect 2338 -274 2500 -240
+rect 2534 -274 2696 -240
+rect 2730 -274 2892 -240
+rect 2926 -274 3040 -240
+rect 622 -284 3040 -274
+rect 669 -472 679 -312
+rect 731 -472 741 -312
+rect 865 -472 875 -312
+rect 927 -472 937 -312
+rect 1061 -472 1071 -312
+rect 1123 -472 1133 -312
+rect 1257 -472 1267 -312
+rect 1319 -472 1329 -312
+rect 1453 -472 1463 -312
+rect 1515 -472 1525 -312
+rect 1649 -472 1659 -312
+rect 1711 -472 1721 -312
+rect 1845 -472 1855 -312
+rect 1907 -472 1917 -312
+rect 2041 -472 2051 -312
+rect 2103 -472 2113 -312
+rect 2237 -472 2247 -312
+rect 2299 -472 2309 -312
+rect 2433 -472 2443 -312
+rect 2495 -472 2505 -312
+rect 2629 -472 2639 -312
+rect 2691 -472 2701 -312
+rect 2825 -472 2835 -312
+rect 2887 -472 2897 -312
+rect 3021 -472 3031 -312
+rect 3083 -472 3093 -312
+rect 571 -712 581 -552
+rect 633 -712 643 -552
+rect 767 -712 777 -552
+rect 829 -712 839 -552
+rect 963 -712 973 -552
+rect 1025 -712 1035 -552
+rect 1159 -712 1169 -552
+rect 1221 -712 1231 -552
+rect 1355 -712 1365 -552
+rect 1417 -712 1427 -552
+rect 1551 -712 1561 -552
+rect 1613 -712 1623 -552
+rect 1747 -712 1757 -552
+rect 1809 -712 1819 -552
+rect 1943 -712 1953 -552
+rect 2005 -712 2015 -552
+rect 2139 -712 2149 -552
+rect 2201 -712 2211 -552
+rect 2335 -712 2345 -552
+rect 2397 -712 2407 -552
+rect 2531 -712 2541 -552
+rect 2593 -712 2603 -552
+rect 2727 -712 2737 -552
+rect 2789 -712 2799 -552
+rect 2923 -712 2933 -552
+rect 2985 -712 2995 -552
+rect 622 -750 3040 -740
+rect 622 -784 638 -750
+rect 672 -784 834 -750
+rect 868 -784 1030 -750
+rect 1064 -784 1226 -750
+rect 1260 -784 1422 -750
+rect 1456 -784 1618 -750
+rect 1652 -784 1814 -750
+rect 1848 -784 2010 -750
+rect 2044 -784 2206 -750
+rect 2240 -784 2402 -750
+rect 2436 -784 2598 -750
+rect 2632 -784 2794 -750
+rect 2828 -784 2990 -750
+rect 3024 -784 3040 -750
+rect 622 -800 3040 -784
+rect 623 -858 3041 -842
+rect 623 -892 639 -858
+rect 673 -892 835 -858
+rect 869 -892 1031 -858
+rect 1065 -892 1227 -858
+rect 1261 -892 1423 -858
+rect 1457 -892 1619 -858
+rect 1653 -892 1815 -858
+rect 1849 -892 2011 -858
+rect 2045 -892 2207 -858
+rect 2241 -892 2403 -858
+rect 2437 -892 2599 -858
+rect 2633 -892 2795 -858
+rect 2829 -892 2991 -858
+rect 3025 -892 3041 -858
+rect 623 -902 3041 -892
+rect 571 -1090 581 -930
+rect 633 -1090 643 -930
+rect 767 -1090 777 -930
+rect 829 -1090 839 -930
+rect 963 -1090 973 -930
+rect 1025 -1090 1035 -930
+rect 1159 -1090 1169 -930
+rect 1221 -1090 1231 -930
+rect 1355 -1090 1365 -930
+rect 1417 -1090 1427 -930
+rect 1551 -1090 1561 -930
+rect 1613 -1090 1623 -930
+rect 1747 -1090 1757 -930
+rect 1809 -1090 1819 -930
+rect 1943 -1090 1953 -930
+rect 2005 -1090 2015 -930
+rect 2139 -1090 2149 -930
+rect 2201 -1090 2211 -930
+rect 2335 -1090 2345 -930
+rect 2397 -1090 2407 -930
+rect 2531 -1090 2541 -930
+rect 2593 -1090 2603 -930
+rect 2727 -1090 2737 -930
+rect 2789 -1090 2799 -930
+rect 2923 -1090 2933 -930
+rect 2985 -1090 2995 -930
+rect 669 -1330 679 -1170
+rect 731 -1330 741 -1170
+rect 865 -1330 875 -1170
+rect 927 -1330 937 -1170
+rect 1061 -1330 1071 -1170
+rect 1123 -1330 1133 -1170
+rect 1257 -1330 1267 -1170
+rect 1319 -1330 1329 -1170
+rect 1453 -1330 1463 -1170
+rect 1515 -1330 1525 -1170
+rect 1649 -1330 1659 -1170
+rect 1711 -1330 1721 -1170
+rect 1845 -1330 1855 -1170
+rect 1907 -1330 1917 -1170
+rect 2041 -1330 2051 -1170
+rect 2103 -1330 2113 -1170
+rect 2237 -1330 2247 -1170
+rect 2299 -1330 2309 -1170
+rect 2433 -1330 2443 -1170
+rect 2495 -1330 2505 -1170
+rect 2629 -1330 2639 -1170
+rect 2691 -1330 2701 -1170
+rect 2825 -1330 2835 -1170
+rect 2887 -1330 2897 -1170
+rect 3021 -1330 3031 -1170
+rect 3083 -1330 3093 -1170
+rect 623 -1368 3041 -1358
+rect 623 -1402 737 -1368
+rect 771 -1402 933 -1368
+rect 967 -1402 1129 -1368
+rect 1163 -1402 1325 -1368
+rect 1359 -1402 1521 -1368
+rect 1555 -1402 1717 -1368
+rect 1751 -1402 1913 -1368
+rect 1947 -1402 2109 -1368
+rect 2143 -1402 2305 -1368
+rect 2339 -1402 2501 -1368
+rect 2535 -1402 2697 -1368
+rect 2731 -1402 2893 -1368
+rect 2927 -1402 3041 -1368
+rect 623 -1418 3041 -1402
+rect 622 -1684 3040 -1668
+rect 622 -1718 736 -1684
+rect 770 -1718 932 -1684
+rect 966 -1718 1128 -1684
+rect 1162 -1718 1324 -1684
+rect 1358 -1718 1520 -1684
+rect 1554 -1718 1716 -1684
+rect 1750 -1718 1912 -1684
+rect 1946 -1718 2108 -1684
+rect 2142 -1718 2304 -1684
+rect 2338 -1718 2500 -1684
+rect 2534 -1718 2696 -1684
+rect 2730 -1718 2892 -1684
+rect 2926 -1718 3040 -1684
+rect 622 -1728 3040 -1718
+rect 669 -1916 679 -1756
+rect 731 -1916 741 -1756
+rect 865 -1916 875 -1756
+rect 927 -1916 937 -1756
+rect 1061 -1916 1071 -1756
+rect 1123 -1916 1133 -1756
+rect 1257 -1916 1267 -1756
+rect 1319 -1916 1329 -1756
+rect 1453 -1916 1463 -1756
+rect 1515 -1916 1525 -1756
+rect 1649 -1916 1659 -1756
+rect 1711 -1916 1721 -1756
+rect 1845 -1916 1855 -1756
+rect 1907 -1916 1917 -1756
+rect 2041 -1916 2051 -1756
+rect 2103 -1916 2113 -1756
+rect 2237 -1916 2247 -1756
+rect 2299 -1916 2309 -1756
+rect 2433 -1916 2443 -1756
+rect 2495 -1916 2505 -1756
+rect 2629 -1916 2639 -1756
+rect 2691 -1916 2701 -1756
+rect 2825 -1916 2835 -1756
+rect 2887 -1916 2897 -1756
+rect 3021 -1916 3031 -1756
+rect 3083 -1916 3093 -1756
+rect 571 -2156 581 -1996
+rect 633 -2156 643 -1996
+rect 767 -2156 777 -1996
+rect 829 -2156 839 -1996
+rect 963 -2156 973 -1996
+rect 1025 -2156 1035 -1996
+rect 1159 -2156 1169 -1996
+rect 1221 -2156 1231 -1996
+rect 1355 -2156 1365 -1996
+rect 1417 -2156 1427 -1996
+rect 1551 -2156 1561 -1996
+rect 1613 -2156 1623 -1996
+rect 1747 -2156 1757 -1996
+rect 1809 -2156 1819 -1996
+rect 1943 -2156 1953 -1996
+rect 2005 -2156 2015 -1996
+rect 2139 -2156 2149 -1996
+rect 2201 -2156 2211 -1996
+rect 2335 -2156 2345 -1996
+rect 2397 -2156 2407 -1996
+rect 2531 -2156 2541 -1996
+rect 2593 -2156 2603 -1996
+rect 2727 -2156 2737 -1996
+rect 2789 -2156 2799 -1996
+rect 2923 -2156 2933 -1996
+rect 2985 -2156 2995 -1996
+rect 622 -2194 3040 -2184
+rect 622 -2228 638 -2194
+rect 672 -2228 834 -2194
+rect 868 -2228 1030 -2194
+rect 1064 -2228 1226 -2194
+rect 1260 -2228 1422 -2194
+rect 1456 -2228 1618 -2194
+rect 1652 -2228 1814 -2194
+rect 1848 -2228 2010 -2194
+rect 2044 -2228 2206 -2194
+rect 2240 -2228 2402 -2194
+rect 2436 -2228 2598 -2194
+rect 2632 -2228 2794 -2194
+rect 2828 -2228 2990 -2194
+rect 3024 -2228 3040 -2194
+rect 622 -2244 3040 -2228
+rect 623 -2302 3041 -2286
+rect 623 -2336 639 -2302
+rect 673 -2336 835 -2302
+rect 869 -2336 1031 -2302
+rect 1065 -2336 1227 -2302
+rect 1261 -2336 1423 -2302
+rect 1457 -2336 1619 -2302
+rect 1653 -2336 1815 -2302
+rect 1849 -2336 2011 -2302
+rect 2045 -2336 2207 -2302
+rect 2241 -2336 2403 -2302
+rect 2437 -2336 2599 -2302
+rect 2633 -2336 2795 -2302
+rect 2829 -2336 2991 -2302
+rect 3025 -2336 3041 -2302
+rect 623 -2346 3041 -2336
+rect 571 -2534 581 -2374
+rect 633 -2534 643 -2374
+rect 767 -2534 777 -2374
+rect 829 -2534 839 -2374
+rect 963 -2534 973 -2374
+rect 1025 -2534 1035 -2374
+rect 1159 -2534 1169 -2374
+rect 1221 -2534 1231 -2374
+rect 1355 -2534 1365 -2374
+rect 1417 -2534 1427 -2374
+rect 1551 -2534 1561 -2374
+rect 1613 -2534 1623 -2374
+rect 1747 -2534 1757 -2374
+rect 1809 -2534 1819 -2374
+rect 1943 -2534 1953 -2374
+rect 2005 -2534 2015 -2374
+rect 2139 -2534 2149 -2374
+rect 2201 -2534 2211 -2374
+rect 2335 -2534 2345 -2374
+rect 2397 -2534 2407 -2374
+rect 2531 -2534 2541 -2374
+rect 2593 -2534 2603 -2374
+rect 2727 -2534 2737 -2374
+rect 2789 -2534 2799 -2374
+rect 2923 -2534 2933 -2374
+rect 2985 -2534 2995 -2374
+rect 669 -2774 679 -2614
+rect 731 -2774 741 -2614
+rect 865 -2774 875 -2614
+rect 927 -2774 937 -2614
+rect 1061 -2774 1071 -2614
+rect 1123 -2774 1133 -2614
+rect 1257 -2774 1267 -2614
+rect 1319 -2774 1329 -2614
+rect 1453 -2774 1463 -2614
+rect 1515 -2774 1525 -2614
+rect 1649 -2774 1659 -2614
+rect 1711 -2774 1721 -2614
+rect 1845 -2774 1855 -2614
+rect 1907 -2774 1917 -2614
+rect 2041 -2774 2051 -2614
+rect 2103 -2774 2113 -2614
+rect 2237 -2774 2247 -2614
+rect 2299 -2774 2309 -2614
+rect 2433 -2774 2443 -2614
+rect 2495 -2774 2505 -2614
+rect 2629 -2774 2639 -2614
+rect 2691 -2774 2701 -2614
+rect 2825 -2774 2835 -2614
+rect 2887 -2774 2897 -2614
+rect 3021 -2774 3031 -2614
+rect 3083 -2774 3093 -2614
+rect 623 -2812 3041 -2802
+rect 623 -2846 737 -2812
+rect 771 -2846 933 -2812
+rect 967 -2846 1129 -2812
+rect 1163 -2846 1325 -2812
+rect 1359 -2846 1521 -2812
+rect 1555 -2846 1717 -2812
+rect 1751 -2846 1913 -2812
+rect 1947 -2846 2109 -2812
+rect 2143 -2846 2305 -2812
+rect 2339 -2846 2501 -2812
+rect 2535 -2846 2697 -2812
+rect 2731 -2846 2893 -2812
+rect 2927 -2846 3041 -2812
+rect 623 -2862 3041 -2846
+<< via1 >>
+rect 679 995 731 1155
+rect 875 995 927 1155
+rect 1071 995 1123 1155
+rect 1267 995 1319 1155
+rect 1463 995 1515 1155
+rect 1659 995 1711 1155
+rect 1855 995 1907 1155
+rect 2051 995 2103 1155
+rect 2477 995 2529 1155
+rect 2673 995 2725 1155
+rect 2869 995 2921 1155
+rect 3065 995 3117 1155
+rect 3261 995 3313 1155
+rect 3457 995 3509 1155
+rect 3653 995 3705 1155
+rect 3849 995 3901 1155
+rect 581 755 633 915
+rect 777 755 829 915
+rect 973 755 1025 915
+rect 1169 755 1221 915
+rect 1365 755 1417 915
+rect 1561 755 1613 915
+rect 1757 755 1809 915
+rect 1953 755 2005 915
+rect 2379 755 2431 915
+rect 2575 755 2627 915
+rect 2771 755 2823 915
+rect 2967 755 3019 915
+rect 3163 755 3215 915
+rect 3359 755 3411 915
+rect 3555 755 3607 915
+rect 3751 755 3803 915
+rect 581 359 633 519
+rect 777 359 829 519
+rect 973 359 1025 519
+rect 1169 359 1221 519
+rect 1365 359 1417 519
+rect 1561 359 1613 519
+rect 1757 359 1809 519
+rect 1953 359 2005 519
+rect 2379 359 2431 519
+rect 2575 359 2627 519
+rect 2771 359 2823 519
+rect 2967 359 3019 519
+rect 3163 359 3215 519
+rect 3359 359 3411 519
+rect 3555 359 3607 519
+rect 3751 359 3803 519
+rect 679 119 731 279
+rect 875 119 927 279
+rect 1071 119 1123 279
+rect 1267 119 1319 279
+rect 1463 119 1515 279
+rect 1659 119 1711 279
+rect 1855 119 1907 279
+rect 2051 119 2103 279
+rect 2477 119 2529 279
+rect 2673 119 2725 279
+rect 2869 119 2921 279
+rect 3065 119 3117 279
+rect 3261 119 3313 279
+rect 3457 119 3509 279
+rect 3653 119 3705 279
+rect 3849 119 3901 279
+rect 679 -472 731 -312
+rect 875 -472 927 -312
+rect 1071 -472 1123 -312
+rect 1267 -472 1319 -312
+rect 1463 -472 1515 -312
+rect 1659 -472 1711 -312
+rect 1855 -472 1907 -312
+rect 2051 -472 2103 -312
+rect 2247 -472 2299 -312
+rect 2443 -472 2495 -312
+rect 2639 -472 2691 -312
+rect 2835 -472 2887 -312
+rect 3031 -472 3083 -312
+rect 581 -712 633 -552
+rect 777 -712 829 -552
+rect 973 -712 1025 -552
+rect 1169 -712 1221 -552
+rect 1365 -712 1417 -552
+rect 1561 -712 1613 -552
+rect 1757 -712 1809 -552
+rect 1953 -712 2005 -552
+rect 2149 -712 2201 -552
+rect 2345 -712 2397 -552
+rect 2541 -712 2593 -552
+rect 2737 -712 2789 -552
+rect 2933 -712 2985 -552
+rect 581 -1090 633 -930
+rect 777 -1090 829 -930
+rect 973 -1090 1025 -930
+rect 1169 -1090 1221 -930
+rect 1365 -1090 1417 -930
+rect 1561 -1090 1613 -930
+rect 1757 -1090 1809 -930
+rect 1953 -1090 2005 -930
+rect 2149 -1090 2201 -930
+rect 2345 -1090 2397 -930
+rect 2541 -1090 2593 -930
+rect 2737 -1090 2789 -930
+rect 2933 -1090 2985 -930
+rect 679 -1330 731 -1170
+rect 875 -1330 927 -1170
+rect 1071 -1330 1123 -1170
+rect 1267 -1330 1319 -1170
+rect 1463 -1330 1515 -1170
+rect 1659 -1330 1711 -1170
+rect 1855 -1330 1907 -1170
+rect 2051 -1330 2103 -1170
+rect 2247 -1330 2299 -1170
+rect 2443 -1330 2495 -1170
+rect 2639 -1330 2691 -1170
+rect 2835 -1330 2887 -1170
+rect 3031 -1330 3083 -1170
+rect 679 -1916 731 -1756
+rect 875 -1916 927 -1756
+rect 1071 -1916 1123 -1756
+rect 1267 -1916 1319 -1756
+rect 1463 -1916 1515 -1756
+rect 1659 -1916 1711 -1756
+rect 1855 -1916 1907 -1756
+rect 2051 -1916 2103 -1756
+rect 2247 -1916 2299 -1756
+rect 2443 -1916 2495 -1756
+rect 2639 -1916 2691 -1756
+rect 2835 -1916 2887 -1756
+rect 3031 -1916 3083 -1756
+rect 581 -2156 633 -1996
+rect 777 -2156 829 -1996
+rect 973 -2156 1025 -1996
+rect 1169 -2156 1221 -1996
+rect 1365 -2156 1417 -1996
+rect 1561 -2156 1613 -1996
+rect 1757 -2156 1809 -1996
+rect 1953 -2156 2005 -1996
+rect 2149 -2156 2201 -1996
+rect 2345 -2156 2397 -1996
+rect 2541 -2156 2593 -1996
+rect 2737 -2156 2789 -1996
+rect 2933 -2156 2985 -1996
+rect 581 -2534 633 -2374
+rect 777 -2534 829 -2374
+rect 973 -2534 1025 -2374
+rect 1169 -2534 1221 -2374
+rect 1365 -2534 1417 -2374
+rect 1561 -2534 1613 -2374
+rect 1757 -2534 1809 -2374
+rect 1953 -2534 2005 -2374
+rect 2149 -2534 2201 -2374
+rect 2345 -2534 2397 -2374
+rect 2541 -2534 2593 -2374
+rect 2737 -2534 2789 -2374
+rect 2933 -2534 2985 -2374
+rect 679 -2774 731 -2614
+rect 875 -2774 927 -2614
+rect 1071 -2774 1123 -2614
+rect 1267 -2774 1319 -2614
+rect 1463 -2774 1515 -2614
+rect 1659 -2774 1711 -2614
+rect 1855 -2774 1907 -2614
+rect 2051 -2774 2103 -2614
+rect 2247 -2774 2299 -2614
+rect 2443 -2774 2495 -2614
+rect 2639 -2774 2691 -2614
+rect 2835 -2774 2887 -2614
+rect 3031 -2774 3083 -2614
+<< metal2 >>
+rect 679 1155 731 1165
+rect 679 985 731 995
+rect 875 1155 927 1165
+rect 875 985 927 995
+rect 1071 1155 1123 1165
+rect 1071 985 1123 995
+rect 1267 1155 1319 1165
+rect 1267 985 1319 995
+rect 1463 1155 1515 1165
+rect 1463 985 1515 995
+rect 1659 1155 1711 1165
+rect 1659 985 1711 995
+rect 1855 1155 1907 1165
+rect 1855 985 1907 995
+rect 2051 1155 2103 1165
+rect 2051 985 2103 995
+rect 2477 1155 2529 1165
+rect 2477 985 2529 995
+rect 2673 1155 2725 1165
+rect 2673 985 2725 995
+rect 2869 1155 2921 1165
+rect 2869 985 2921 995
+rect 3065 1155 3117 1165
+rect 3065 985 3117 995
+rect 3261 1155 3313 1165
+rect 3261 985 3313 995
+rect 3457 1155 3509 1165
+rect 3457 985 3509 995
+rect 3653 1155 3705 1165
+rect 3653 985 3705 995
+rect 3849 1155 3901 1165
+rect 3849 985 3901 995
+rect 581 915 633 925
+rect 581 745 633 755
+rect 777 915 829 925
+rect 777 745 829 755
+rect 973 915 1025 925
+rect 973 745 1025 755
+rect 1169 915 1221 925
+rect 1169 745 1221 755
+rect 1365 915 1417 925
+rect 1365 745 1417 755
+rect 1561 915 1613 925
+rect 1561 745 1613 755
+rect 1757 915 1809 925
+rect 1757 745 1809 755
+rect 1953 915 2005 925
+rect 1953 745 2005 755
+rect 2379 915 2431 925
+rect 2379 745 2431 755
+rect 2575 915 2627 925
+rect 2575 745 2627 755
+rect 2771 915 2823 925
+rect 2771 745 2823 755
+rect 2967 915 3019 925
+rect 2967 745 3019 755
+rect 3163 915 3215 925
+rect 3163 745 3215 755
+rect 3359 915 3411 925
+rect 3359 745 3411 755
+rect 3555 915 3607 925
+rect 3555 745 3607 755
+rect 3751 915 3803 925
+rect 3751 745 3803 755
+rect 581 519 633 529
+rect 581 349 633 359
+rect 777 519 829 529
+rect 777 349 829 359
+rect 973 519 1025 529
+rect 973 349 1025 359
+rect 1169 519 1221 529
+rect 1169 349 1221 359
+rect 1365 519 1417 529
+rect 1365 349 1417 359
+rect 1561 519 1613 529
+rect 1561 349 1613 359
+rect 1757 519 1809 529
+rect 1757 349 1809 359
+rect 1953 519 2005 529
+rect 1953 349 2005 359
+rect 2379 519 2431 529
+rect 2379 349 2431 359
+rect 2575 519 2627 529
+rect 2575 349 2627 359
+rect 2771 519 2823 529
+rect 2771 349 2823 359
+rect 2967 519 3019 529
+rect 2967 349 3019 359
+rect 3163 519 3215 529
+rect 3163 349 3215 359
+rect 3359 519 3411 529
+rect 3359 349 3411 359
+rect 3555 519 3607 529
+rect 3555 349 3607 359
+rect 3751 519 3803 529
+rect 3751 349 3803 359
+rect 679 279 731 289
+rect 679 109 731 119
+rect 875 279 927 289
+rect 875 109 927 119
+rect 1071 279 1123 289
+rect 1071 109 1123 119
+rect 1267 279 1319 289
+rect 1267 109 1319 119
+rect 1463 279 1515 289
+rect 1463 109 1515 119
+rect 1659 279 1711 289
+rect 1659 109 1711 119
+rect 1855 279 1907 289
+rect 1855 109 1907 119
+rect 2051 279 2103 289
+rect 2051 109 2103 119
+rect 2477 279 2529 289
+rect 2477 109 2529 119
+rect 2673 279 2725 289
+rect 2673 109 2725 119
+rect 2869 279 2921 289
+rect 2869 109 2921 119
+rect 3065 279 3117 289
+rect 3065 109 3117 119
+rect 3261 279 3313 289
+rect 3261 109 3313 119
+rect 3457 279 3509 289
+rect 3457 109 3509 119
+rect 3653 279 3705 289
+rect 3653 109 3705 119
+rect 3849 279 3901 289
+rect 3849 109 3901 119
+rect 679 -312 731 -302
+rect 679 -482 731 -472
+rect 875 -312 927 -302
+rect 875 -482 927 -472
+rect 1071 -312 1123 -302
+rect 1071 -482 1123 -472
+rect 1267 -312 1319 -302
+rect 1267 -482 1319 -472
+rect 1463 -312 1515 -302
+rect 1463 -482 1515 -472
+rect 1659 -312 1711 -302
+rect 1659 -482 1711 -472
+rect 1855 -312 1907 -302
+rect 1855 -482 1907 -472
+rect 2051 -312 2103 -302
+rect 2051 -482 2103 -472
+rect 2247 -312 2299 -302
+rect 2247 -482 2299 -472
+rect 2443 -312 2495 -302
+rect 2443 -482 2495 -472
+rect 2639 -312 2691 -302
+rect 2639 -482 2691 -472
+rect 2835 -312 2887 -302
+rect 2835 -482 2887 -472
+rect 3031 -312 3083 -302
+rect 3031 -482 3083 -472
+rect 581 -552 633 -542
+rect 581 -722 633 -712
+rect 777 -552 829 -542
+rect 777 -722 829 -712
+rect 973 -552 1025 -542
+rect 973 -722 1025 -712
+rect 1169 -552 1221 -542
+rect 1169 -722 1221 -712
+rect 1365 -552 1417 -542
+rect 1365 -722 1417 -712
+rect 1561 -552 1613 -542
+rect 1561 -722 1613 -712
+rect 1757 -552 1809 -542
+rect 1757 -722 1809 -712
+rect 1953 -552 2005 -542
+rect 1953 -722 2005 -712
+rect 2149 -552 2201 -542
+rect 2149 -722 2201 -712
+rect 2345 -552 2397 -542
+rect 2345 -722 2397 -712
+rect 2541 -552 2593 -542
+rect 2541 -722 2593 -712
+rect 2737 -552 2789 -542
+rect 2737 -722 2789 -712
+rect 2933 -552 2985 -542
+rect 2933 -722 2985 -712
+rect 581 -930 633 -920
+rect 581 -1100 633 -1090
+rect 777 -930 829 -920
+rect 777 -1100 829 -1090
+rect 973 -930 1025 -920
+rect 973 -1100 1025 -1090
+rect 1169 -930 1221 -920
+rect 1169 -1100 1221 -1090
+rect 1365 -930 1417 -920
+rect 1365 -1100 1417 -1090
+rect 1561 -930 1613 -920
+rect 1561 -1100 1613 -1090
+rect 1757 -930 1809 -920
+rect 1757 -1100 1809 -1090
+rect 1953 -930 2005 -920
+rect 1953 -1100 2005 -1090
+rect 2149 -930 2201 -920
+rect 2149 -1100 2201 -1090
+rect 2345 -930 2397 -920
+rect 2345 -1100 2397 -1090
+rect 2541 -930 2593 -920
+rect 2541 -1100 2593 -1090
+rect 2737 -930 2789 -920
+rect 2737 -1100 2789 -1090
+rect 2933 -930 2985 -920
+rect 2933 -1100 2985 -1090
+rect 679 -1170 731 -1160
+rect 679 -1340 731 -1330
+rect 875 -1170 927 -1160
+rect 875 -1340 927 -1330
+rect 1071 -1170 1123 -1160
+rect 1071 -1340 1123 -1330
+rect 1267 -1170 1319 -1160
+rect 1267 -1340 1319 -1330
+rect 1463 -1170 1515 -1160
+rect 1463 -1340 1515 -1330
+rect 1659 -1170 1711 -1160
+rect 1659 -1340 1711 -1330
+rect 1855 -1170 1907 -1160
+rect 1855 -1340 1907 -1330
+rect 2051 -1170 2103 -1160
+rect 2051 -1340 2103 -1330
+rect 2247 -1170 2299 -1160
+rect 2247 -1340 2299 -1330
+rect 2443 -1170 2495 -1160
+rect 2443 -1340 2495 -1330
+rect 2639 -1170 2691 -1160
+rect 2639 -1340 2691 -1330
+rect 2835 -1170 2887 -1160
+rect 2835 -1340 2887 -1330
+rect 3031 -1170 3083 -1160
+rect 3031 -1340 3083 -1330
+rect 679 -1756 731 -1746
+rect 679 -1926 731 -1916
+rect 875 -1756 927 -1746
+rect 875 -1926 927 -1916
+rect 1071 -1756 1123 -1746
+rect 1071 -1926 1123 -1916
+rect 1267 -1756 1319 -1746
+rect 1267 -1926 1319 -1916
+rect 1463 -1756 1515 -1746
+rect 1463 -1926 1515 -1916
+rect 1659 -1756 1711 -1746
+rect 1659 -1926 1711 -1916
+rect 1855 -1756 1907 -1746
+rect 1855 -1926 1907 -1916
+rect 2051 -1756 2103 -1746
+rect 2051 -1926 2103 -1916
+rect 2247 -1756 2299 -1746
+rect 2247 -1926 2299 -1916
+rect 2443 -1756 2495 -1746
+rect 2443 -1926 2495 -1916
+rect 2639 -1756 2691 -1746
+rect 2639 -1926 2691 -1916
+rect 2835 -1756 2887 -1746
+rect 2835 -1926 2887 -1916
+rect 3031 -1756 3083 -1746
+rect 3031 -1926 3083 -1916
+rect 581 -1996 633 -1986
+rect 581 -2166 633 -2156
+rect 777 -1996 829 -1986
+rect 777 -2166 829 -2156
+rect 973 -1996 1025 -1986
+rect 973 -2166 1025 -2156
+rect 1169 -1996 1221 -1986
+rect 1169 -2166 1221 -2156
+rect 1365 -1996 1417 -1986
+rect 1365 -2166 1417 -2156
+rect 1561 -1996 1613 -1986
+rect 1561 -2166 1613 -2156
+rect 1757 -1996 1809 -1986
+rect 1757 -2166 1809 -2156
+rect 1953 -1996 2005 -1986
+rect 1953 -2166 2005 -2156
+rect 2149 -1996 2201 -1986
+rect 2149 -2166 2201 -2156
+rect 2345 -1996 2397 -1986
+rect 2345 -2166 2397 -2156
+rect 2541 -1996 2593 -1986
+rect 2541 -2166 2593 -2156
+rect 2737 -1996 2789 -1986
+rect 2737 -2166 2789 -2156
+rect 2933 -1996 2985 -1986
+rect 2933 -2166 2985 -2156
+rect 581 -2374 633 -2364
+rect 581 -2544 633 -2534
+rect 777 -2374 829 -2364
+rect 777 -2544 829 -2534
+rect 973 -2374 1025 -2364
+rect 973 -2544 1025 -2534
+rect 1169 -2374 1221 -2364
+rect 1169 -2544 1221 -2534
+rect 1365 -2374 1417 -2364
+rect 1365 -2544 1417 -2534
+rect 1561 -2374 1613 -2364
+rect 1561 -2544 1613 -2534
+rect 1757 -2374 1809 -2364
+rect 1757 -2544 1809 -2534
+rect 1953 -2374 2005 -2364
+rect 1953 -2544 2005 -2534
+rect 2149 -2374 2201 -2364
+rect 2149 -2544 2201 -2534
+rect 2345 -2374 2397 -2364
+rect 2345 -2544 2397 -2534
+rect 2541 -2374 2593 -2364
+rect 2541 -2544 2593 -2534
+rect 2737 -2374 2789 -2364
+rect 2737 -2544 2789 -2534
+rect 2933 -2374 2985 -2364
+rect 2933 -2544 2985 -2534
+rect 679 -2614 731 -2604
+rect 679 -2784 731 -2774
+rect 875 -2614 927 -2604
+rect 875 -2784 927 -2774
+rect 1071 -2614 1123 -2604
+rect 1071 -2784 1123 -2774
+rect 1267 -2614 1319 -2604
+rect 1267 -2784 1319 -2774
+rect 1463 -2614 1515 -2604
+rect 1463 -2784 1515 -2774
+rect 1659 -2614 1711 -2604
+rect 1659 -2784 1711 -2774
+rect 1855 -2614 1907 -2604
+rect 1855 -2784 1907 -2774
+rect 2051 -2614 2103 -2604
+rect 2051 -2784 2103 -2774
+rect 2247 -2614 2299 -2604
+rect 2247 -2784 2299 -2774
+rect 2443 -2614 2495 -2604
+rect 2443 -2784 2495 -2774
+rect 2639 -2614 2691 -2604
+rect 2639 -2784 2691 -2774
+rect 2835 -2614 2887 -2604
+rect 2835 -2784 2887 -2774
+rect 3031 -2614 3083 -2604
+rect 3031 -2784 3083 -2774
+use sky130_fd_pr__nfet_01v8_lvt_ZRA4RB  sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0
+timestamp 1647868710
+transform 1 0 1832 0 1 -2265
+box -1392 -719 1392 719
+use sky130_fd_pr__nfet_01v8_lvt_ZRA4RB  sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1
+timestamp 1647868710
+transform 1 0 1832 0 1 -821
+box -1392 -719 1392 719
+use sky130_fd_pr__pfet_01v8_NZHYX4  sky130_fd_pr__pfet_01v8_NZHYX4_1
+timestamp 1647868710
+transform 1 0 1342 0 1 637
+box -902 -737 902 737
+use sky130_fd_pr__pfet_01v8_NZHYX4  sky130_fd_pr__pfet_01v8_NZHYX4_2
+timestamp 1647868710
+transform 1 0 3140 0 1 637
+box -902 -737 902 737
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_6ZNTNB.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_6ZNTNB.mag
new file mode 100644
index 0000000..1b8bdd2
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_6ZNTNB.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal3 >>
+rect -1150 1072 1149 1100
+rect -1150 -1072 1065 1072
+rect 1129 -1072 1149 1072
+rect -1150 -1100 1149 -1072
+<< via3 >>
+rect 1065 -1072 1129 1072
+<< mimcap >>
+rect -1050 960 950 1000
+rect -1050 -960 -1010 960
+rect 910 -960 950 960
+rect -1050 -1000 950 -960
+<< mimcapcontact >>
+rect -1010 -960 910 960
+<< metal4 >>
+rect 1049 1072 1145 1088
+rect -1011 960 911 961
+rect -1011 -960 -1010 960
+rect 910 -960 911 960
+rect -1011 -961 911 -960
+rect 1049 -1072 1065 1072
+rect 1129 -1072 1145 1072
+rect 1049 -1088 1145 -1072
+<< properties >>
+string FIXED_BBOX -1150 -1100 1050 1100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 10 l 10 val 207.6 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_7PUJFX.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_7PUJFX.mag
new file mode 100644
index 0000000..833c0ed
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_7PUJFX.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646060485
+<< metal3 >>
+rect -1546 1468 1545 1496
+rect -1546 -1468 1461 1468
+rect 1525 -1468 1545 1468
+rect -1546 -1496 1545 -1468
+<< via3 >>
+rect 1461 -1468 1525 1468
+<< mimcap >>
+rect -1446 1356 1346 1396
+rect -1446 -1356 -1406 1356
+rect 1306 -1356 1346 1356
+rect -1446 -1396 1346 -1356
+<< mimcapcontact >>
+rect -1406 -1356 1306 1356
+<< metal4 >>
+rect 1445 1468 1541 1484
+rect -1407 1356 1307 1357
+rect -1407 -1356 -1406 1356
+rect 1306 -1356 1307 1356
+rect -1407 -1357 1307 -1356
+rect 1445 -1468 1461 1468
+rect 1525 -1468 1541 1468
+rect 1445 -1484 1541 -1468
+<< properties >>
+string gencell sky130_fd_pr__cap_mim_m3_1
+string FIXED_BBOX -1546 -1496 1446 1496
+string parameters w 13.964 l 13.964 val 400.599 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+string library sky130
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_A7UHNC.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_A7UHNC.mag
new file mode 100644
index 0000000..9ea4894
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_A7UHNC.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal3 >>
+rect -1150 1572 1149 1600
+rect -1150 -1572 1065 1572
+rect 1129 -1572 1149 1572
+rect -1150 -1600 1149 -1572
+<< via3 >>
+rect 1065 -1572 1129 1572
+<< mimcap >>
+rect -1050 1460 950 1500
+rect -1050 -1460 -1010 1460
+rect 910 -1460 950 1460
+rect -1050 -1500 950 -1460
+<< mimcapcontact >>
+rect -1010 -1460 910 1460
+<< metal4 >>
+rect 1049 1572 1145 1588
+rect -1011 1460 911 1461
+rect -1011 -1460 -1010 1460
+rect 910 -1460 911 1460
+rect -1011 -1461 911 -1460
+rect 1049 -1572 1065 1572
+rect 1129 -1572 1145 1572
+rect 1049 -1588 1145 -1572
+<< properties >>
+string FIXED_BBOX -1150 -1600 1050 1600
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 10 l 15 val 309.5 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_AZ6TNC.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_AZ6TNC.mag
new file mode 100644
index 0000000..a99874e
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_AZ6TNC.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal3 >>
+rect -1650 1072 1649 1100
+rect -1650 -1072 1565 1072
+rect 1629 -1072 1649 1072
+rect -1650 -1100 1649 -1072
+<< via3 >>
+rect 1565 -1072 1629 1072
+<< mimcap >>
+rect -1550 960 1450 1000
+rect -1550 -960 -1510 960
+rect 1410 -960 1450 960
+rect -1550 -1000 1450 -960
+<< mimcapcontact >>
+rect -1510 -960 1410 960
+<< metal4 >>
+rect 1549 1072 1645 1088
+rect -1511 960 1411 961
+rect -1511 -960 -1510 960
+rect 1410 -960 1411 960
+rect -1511 -961 1411 -960
+rect 1549 -1072 1565 1072
+rect 1629 -1072 1645 1072
+rect 1549 -1088 1645 -1072
+<< properties >>
+string FIXED_BBOX -1650 -1100 1550 1100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 15 l 10 val 309.5 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_C56H8Z.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_C56H8Z.mag
new file mode 100644
index 0000000..7a20bd1
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_C56H8Z.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal3 >>
+rect -1350 1072 1349 1100
+rect -1350 -1072 1265 1072
+rect 1329 -1072 1349 1072
+rect -1350 -1100 1349 -1072
+<< via3 >>
+rect 1265 -1072 1329 1072
+<< mimcap >>
+rect -1250 960 1150 1000
+rect -1250 -960 -1210 960
+rect 1110 -960 1150 960
+rect -1250 -1000 1150 -960
+<< mimcapcontact >>
+rect -1210 -960 1110 960
+<< metal4 >>
+rect 1249 1072 1345 1088
+rect -1211 960 1111 961
+rect -1211 -960 -1210 960
+rect 1110 -960 1111 960
+rect -1211 -961 1111 -960
+rect 1249 -1072 1265 1072
+rect 1329 -1072 1345 1072
+rect 1249 -1088 1345 -1072
+<< properties >>
+string FIXED_BBOX -1350 -1100 1250 1100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 12 l 10 val 248.36 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_HYPP2V.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_HYPP2V.mag
new file mode 100644
index 0000000..19d3d9b
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_HYPP2V.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646060485
+<< metal3 >>
+rect -1546 1468 1545 1496
+rect -1546 -1468 1461 1468
+rect 1525 -1468 1545 1468
+rect -1546 -1496 1545 -1468
+<< via3 >>
+rect 1461 -1468 1525 1468
+<< mimcap >>
+rect -1446 1356 1346 1396
+rect -1446 -1356 -1406 1356
+rect 1306 -1356 1346 1356
+rect -1446 -1396 1346 -1356
+<< mimcapcontact >>
+rect -1406 -1356 1306 1356
+<< metal4 >>
+rect 1445 1468 1541 1484
+rect -1407 1356 1307 1357
+rect -1407 -1356 -1406 1356
+rect 1306 -1356 1307 1356
+rect -1407 -1357 1307 -1356
+rect 1445 -1468 1461 1468
+rect 1525 -1468 1541 1468
+rect 1445 -1484 1541 -1468
+<< properties >>
+string gencell sky130_fd_pr__cap_mim_m3_1
+string FIXED_BBOX -1546 -1496 1446 1496
+string parameters w 13.964 l 13.964 val 400.64 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 1 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+string library sky130
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5346Z.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5346Z.mag
new file mode 100644
index 0000000..c67ade0
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5346Z.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646060485
+<< metal3 >>
+rect -1350 1572 1349 1600
+rect -1350 -1572 1265 1572
+rect 1329 -1572 1349 1572
+rect -1350 -1600 1349 -1572
+<< via3 >>
+rect 1265 -1572 1329 1572
+<< mimcap >>
+rect -1250 1460 1150 1500
+rect -1250 -1460 -1210 1460
+rect 1110 -1460 1150 1460
+rect -1250 -1500 1150 -1460
+<< mimcapcontact >>
+rect -1210 -1460 1110 1460
+<< metal4 >>
+rect 1249 1572 1345 1588
+rect -1211 1460 1111 1461
+rect -1211 -1460 -1210 1460
+rect 1110 -1460 1111 1460
+rect -1211 -1461 1111 -1460
+rect 1249 -1572 1265 1572
+rect 1329 -1572 1345 1572
+rect 1249 -1588 1345 -1572
+<< properties >>
+string gencell sky130_fd_pr__cap_mim_m3_1
+string FIXED_BBOX -1350 -1600 1250 1600
+string parameters w 12 l 15 val 370.26 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+string library sky130
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.ext b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.ext
new file mode 100644
index 0000000..6582960
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.ext
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+node "c1_n1550_n1200#" 0 0 -1550 -1200 mim 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6784884 10488 0 0 0 0
+node "m3_n1650_n1300#" 1 5070.56 -1650 -1300 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8577400 11798 247296 5344 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m3_n1650_n1300#" "c1_n1550_n1200#" 18248.7
+device csubckt sky130_fd_pr__cap_mim_m3_1 -1550 -1200 -1549 -1199 w=3000 l=2400 "None" "c1_n1550_n1200#" 10480 0 "m3_n1650_n1300#" 400 0
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.mag
new file mode 100644
index 0000000..beea393
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_J5CT7Z.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal3 >>
+rect -1650 1272 1649 1300
+rect -1650 -1272 1565 1272
+rect 1629 -1272 1649 1272
+rect -1650 -1300 1649 -1272
+<< via3 >>
+rect 1565 -1272 1629 1272
+<< mimcap >>
+rect -1550 1160 1450 1200
+rect -1550 -1160 -1510 1160
+rect 1410 -1160 1450 1160
+rect -1550 -1200 1450 -1160
+<< mimcapcontact >>
+rect -1510 -1160 1410 1160
+<< metal4 >>
+rect 1549 1272 1645 1288
+rect -1511 1160 1411 1161
+rect -1511 -1160 -1510 1160
+rect 1410 -1160 1411 1160
+rect -1511 -1161 1411 -1160
+rect 1549 -1272 1565 1272
+rect 1629 -1272 1645 1272
+rect 1549 -1288 1645 -1272
+<< properties >>
+string FIXED_BBOX -1650 -1300 1550 1300
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 15 l 12 val 370.26 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG\0432.mag" "b/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG\0432.mag"
new file mode 100644
index 0000000..b2ec4a8
--- /dev/null
+++ "b/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG\0432.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645798091
+<< metal3 >>
+rect -3150 3072 3149 3100
+rect -3150 -3072 3065 3072
+rect 3129 -3072 3149 3072
+rect -3150 -3100 3149 -3072
+<< via3 >>
+rect 3065 -3072 3129 3072
+<< mimcap >>
+rect -3050 2960 2950 3000
+rect -3050 -2960 -3010 2960
+rect 2910 -2960 2950 2960
+rect -3050 -3000 2950 -2960
+<< mimcapcontact >>
+rect -3010 -2960 2910 2960
+<< metal4 >>
+rect 3049 3072 3145 3088
+rect -3011 2960 2911 2961
+rect -3011 -2960 -3010 2960
+rect 2910 -2960 2911 2960
+rect -3011 -2961 2911 -2960
+rect 3049 -3072 3065 3072
+rect 3129 -3072 3145 3072
+rect 3049 -3088 3145 -3072
+<< properties >>
+string FIXED_BBOX -3150 -3100 3050 3100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag
new file mode 100644
index 0000000..b2ec4a8
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645798091
+<< metal3 >>
+rect -3150 3072 3149 3100
+rect -3150 -3072 3065 3072
+rect 3129 -3072 3149 3072
+rect -3150 -3100 3149 -3072
+<< via3 >>
+rect 3065 -3072 3129 3072
+<< mimcap >>
+rect -3050 2960 2950 3000
+rect -3050 -2960 -3010 2960
+rect 2910 -2960 2950 2960
+rect -3050 -3000 2950 -2960
+<< mimcapcontact >>
+rect -3010 -2960 2910 2960
+<< metal4 >>
+rect 3049 3072 3145 3088
+rect -3011 2960 2911 2961
+rect -3011 -2960 -3010 2960
+rect 2910 -2960 2911 2960
+rect -3011 -2961 2911 -2960
+rect 3049 -3072 3065 3072
+rect 3129 -3072 3145 3072
+rect 3049 -3088 3145 -3072
+<< properties >>
+string FIXED_BBOX -3150 -3100 3050 3100
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_1_Z3CT7R.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_1_Z3CT7R.mag
new file mode 100644
index 0000000..423432e
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_1_Z3CT7R.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal3 >>
+rect -1350 1272 1349 1300
+rect -1350 -1272 1265 1272
+rect 1329 -1272 1349 1272
+rect -1350 -1300 1349 -1272
+<< via3 >>
+rect 1265 -1272 1329 1272
+<< mimcap >>
+rect -1250 1160 1150 1200
+rect -1250 -1160 -1210 1160
+rect 1110 -1160 1150 1160
+rect -1250 -1200 1150 -1160
+<< mimcapcontact >>
+rect -1210 -1160 1110 1160
+<< metal4 >>
+rect 1249 1272 1345 1288
+rect -1211 1160 1111 1161
+rect -1211 -1160 -1210 1160
+rect 1110 -1160 1111 1160
+rect -1211 -1161 1111 -1160
+rect 1249 -1272 1265 1272
+rect 1329 -1272 1345 1272
+rect 1249 -1288 1345 -1272
+<< properties >>
+string FIXED_BBOX -1350 -1300 1250 1300
+string gencell sky130_fd_pr__cap_mim_m3_1
+string library sky130
+string parameters w 12 l 12 val 297.12 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.ext" "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.ext"
new file mode 100644
index 0000000..fd3443f
--- /dev/null
+++ "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.ext"
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n3251_n3000#" 0 0 -3251 -3000 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35617024 23872 0 0
+node "m4_n3351_n3100#" 1 14830.3 -3351 -3100 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41552400 25804 1984640 13044 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n3351_n3100#" "c2_n3251_n3000#" 70890.5
+device csubckt sky130_fd_pr__cap_mim_m3_2 -3251 -3000 -3250 -2999 w=6000 l=6000 "None" "c2_n3251_n3000#" 23680 0 "m4_n3351_n3100#" 400 0
diff --git "a/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag" "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag"
new file mode 100644
index 0000000..c2006ac
--- /dev/null
+++ "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0430.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git "a/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag" "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag"
new file mode 100644
index 0000000..caa3dbd
--- /dev/null
+++ "b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG\0432.mag"
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646921651
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
new file mode 100644
index 0000000..a96f3ba
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_LJ5JLG.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1646042961
+<< metal4 >>
+rect -3351 3059 3351 3100
+rect -3351 -3059 3095 3059
+rect 3331 -3059 3351 3059
+rect -3351 -3100 3351 -3059
+<< via4 >>
+rect 3095 -3059 3331 3059
+<< mimcap2 >>
+rect -3251 2960 2749 3000
+rect -3251 -2960 -3211 2960
+rect 2709 -2960 2749 2960
+rect -3251 -3000 2749 -2960
+<< mimcap2contact >>
+rect -3211 -2960 2709 2960
+<< metal5 >>
+rect 3053 3059 3373 3101
+rect -3235 2960 2733 2984
+rect -3235 -2960 -3211 2960
+rect 2709 -2960 2733 2960
+rect -3235 -2984 2733 -2960
+rect 3053 -3059 3095 3059
+rect 3331 -3059 3373 3059
+rect 3053 -3101 3373 -3059
+<< properties >>
+string FIXED_BBOX -3351 -3100 2849 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 30 val 1.822k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
new file mode 100644
index 0000000..4552701
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_MJMGTW.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645797519
+<< metal4 >>
+rect -3351 2059 3351 2100
+rect -3351 -2059 3095 2059
+rect 3331 -2059 3351 2059
+rect -3351 -2100 3351 -2059
+<< via4 >>
+rect 3095 -2059 3331 2059
+<< mimcap2 >>
+rect -3251 1960 2749 2000
+rect -3251 -1960 -3211 1960
+rect 2709 -1960 2749 1960
+rect -3251 -2000 2749 -1960
+<< mimcap2contact >>
+rect -3211 -1960 2709 1960
+<< metal5 >>
+rect 3053 2059 3373 2101
+rect -3235 1960 2733 1984
+rect -3235 -1960 -3211 1960
+rect 2709 -1960 2733 1960
+rect -3235 -1984 2733 -1960
+rect 3053 -2059 3095 2059
+rect 3331 -2059 3373 2059
+rect 3053 -2101 3373 -2059
+<< properties >>
+string FIXED_BBOX -3351 -2100 2849 2100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 20 val 1.219k carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_R568GY.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_2_R568GY.mag
new file mode 100644
index 0000000..ecf9dc2
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_R568GY.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal4 >>
+rect -951 3059 951 3100
+rect -951 -3059 695 3059
+rect 931 -3059 951 3059
+rect -951 -3100 951 -3059
+<< via4 >>
+rect 695 -3059 931 3059
+<< mimcap2 >>
+rect -851 2960 349 3000
+rect -851 -2960 -811 2960
+rect 309 -2960 349 2960
+rect -851 -3000 349 -2960
+<< mimcap2contact >>
+rect -811 -2960 309 2960
+<< metal5 >>
+rect 653 3059 973 3101
+rect -835 2960 333 2984
+rect -835 -2960 -811 2960
+rect 309 -2960 333 2960
+rect -835 -2984 333 -2960
+rect 653 -3059 695 3059
+rect 931 -3059 973 3059
+rect 653 -3101 973 -3059
+<< properties >>
+string FIXED_BBOX -951 -3100 449 3100
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 6 l 30 val 373.68 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_R588EY.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_2_R588EY.mag
new file mode 100644
index 0000000..1e09d4d
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_R588EY.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645802395
+<< metal4 >>
+rect -3351 659 3351 700
+rect -3351 -659 3095 659
+rect 3331 -659 3351 659
+rect -3351 -700 3351 -659
+<< via4 >>
+rect 3095 -659 3331 659
+<< mimcap2 >>
+rect -3251 560 2749 600
+rect -3251 -560 -3211 560
+rect 2709 -560 2749 560
+rect -3251 -600 2749 -560
+<< mimcap2contact >>
+rect -3211 -560 2709 560
+<< metal5 >>
+rect 3053 659 3373 701
+rect -3235 560 2733 584
+rect -3235 -560 -3211 560
+rect 2709 -560 2733 560
+rect -3235 -584 2733 -560
+rect 3053 -659 3095 659
+rect 3331 -659 3373 659
+rect 3053 -701 3373 -659
+<< properties >>
+string FIXED_BBOX -3351 -700 2849 700
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 30 l 6 val 373.68 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.ext b/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.ext
new file mode 100644
index 0000000..413b7f0
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.ext
@@ -0,0 +1,12 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+node "c2_n2751_n1800#" 0 0 -2751 -1800 mim2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17725824 17072 0 0
+node "m4_n2851_n1900#" 0 8922.92 -2851 -1900 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 21667600 19004 1216640 8244 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m4_n2851_n1900#" "c2_n2751_n1800#" 37446.7
+device csubckt sky130_fd_pr__cap_mim_m3_2 -2751 -1800 -2750 -1799 w=5000 l=3600 "None" "c2_n2751_n1800#" 16880 0 "m4_n2851_n1900#" 400 0
diff --git a/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.mag b/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.mag
new file mode 100644
index 0000000..276a1ac
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ.mag
@@ -0,0 +1,33 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< metal4 >>
+rect -2851 1859 2851 1900
+rect -2851 -1859 2595 1859
+rect 2831 -1859 2851 1859
+rect -2851 -1900 2851 -1859
+<< via4 >>
+rect 2595 -1859 2831 1859
+<< mimcap2 >>
+rect -2751 1760 2249 1800
+rect -2751 -1760 -2711 1760
+rect 2209 -1760 2249 1760
+rect -2751 -1800 2249 -1760
+<< mimcap2contact >>
+rect -2711 -1760 2209 1760
+<< metal5 >>
+rect 2553 1859 2873 1901
+rect -2735 1760 2233 1784
+rect -2735 -1760 -2711 1760
+rect 2209 -1760 2233 1760
+rect -2735 -1784 2233 -1760
+rect 2553 -1859 2595 1859
+rect 2831 -1859 2873 1859
+rect 2553 -1901 2873 -1859
+<< properties >>
+string FIXED_BBOX -2851 -1900 2349 1900
+string gencell sky130_fd_pr__cap_mim_m3_2
+string library sky130
+string parameters w 25 l 18 val 916.34 carea 2.00 cperi 0.19 nx 1 ny 1 dummy 0 square 0 lmin 2.00 wmin 2.00 lmax 30.0 wmax 30.0 dc 0 bconnect 1 tconnect 1 ccov 100
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.ext b/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.ext
new file mode 100644
index 0000000..e48baa8
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.ext
@@ -0,0 +1,36 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__cap_var_lvt l=l w=w a1=as a2=ad p1=ps p2=pd
+node "a_1640_n588#" 473 280.835 1640 -588 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470400 3152 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "a_720_n588#" 473 269.83 720 -588 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470400 3152 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "a_n200_n588#" 473 269.83 -200 -588 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470400 3152 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "a_n1120_n588#" 473 269.83 -1120 -588 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470400 3152 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "a_n2040_n588#" 473 280.835 -2040 -588 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 470400 3152 0 0 27200 1736 36064 1752 0 0 0 0 0 0 0 0 0 0
+node "w_1507_n618#" 5268 2827.64 1507 -618 nw 0 0 0 0 823176 3804 0 0 194000 4388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66912 4072 89792 4088 0 0 0 0 0 0 0 0 0 0
+node "w_587_n618#" 5268 2492.47 587 -618 nw 0 0 0 0 823176 3804 0 0 194000 4388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66912 4072 89792 4088 0 0 0 0 0 0 0 0 0 0
+node "w_n333_n618#" 5268 2492.47 -333 -618 nw 0 0 0 0 823176 3804 0 0 194000 4388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66912 4072 89792 4088 0 0 0 0 0 0 0 0 0 0
+node "w_n1253_n618#" 5268 2492.47 -1253 -618 nw 0 0 0 0 823176 3804 0 0 194000 4388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66912 4072 89792 4088 0 0 0 0 0 0 0 0 0 0
+node "w_n2173_n618#" 5268 2827.64 -2173 -618 nw 0 0 0 0 823176 3804 0 0 194000 4388 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 66912 4072 89792 4088 0 0 0 0 0 0 0 0 0 0
+substrate "a_n2247_n692#" 0 0 -2247 -692 ppd 0 0 0 0 0 0 0 0 0 0 395080 23240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 395080 23240 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n2173_n618#" "w_n1253_n618#" 257.575
+cap "a_1640_n588#" "a_720_n588#" 15.8449
+cap "w_587_n618#" "w_n333_n618#" 257.575
+cap "a_1640_n588#" "w_1507_n618#" 524.592
+cap "w_587_n618#" "a_720_n588#" 503.666
+cap "a_n1120_n588#" "a_n200_n588#" 15.8449
+cap "a_n2040_n588#" "a_n1120_n588#" 15.8449
+cap "a_n200_n588#" "w_n333_n618#" 503.666
+cap "w_587_n618#" "w_1507_n618#" 257.575
+cap "w_n1253_n618#" "a_n1120_n588#" 503.666
+cap "a_n200_n588#" "a_720_n588#" 15.8449
+cap "w_n1253_n618#" "w_n333_n618#" 257.575
+cap "w_n2173_n618#" "a_n2040_n588#" 525.038
+device subckt sky130_fd_pr__cap_var_lvt 1640 -500 1641 -499 l=400 w=1000 "w_1507_n618#" "a_1640_n588#" 800 0 "w_1507_n618#" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt 720 -500 721 -499 l=400 w=1000 "w_587_n618#" "a_720_n588#" 800 0 "w_587_n618#" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt -200 -500 -199 -499 l=400 w=1000 "w_n333_n618#" "a_n200_n588#" 800 0 "w_n333_n618#" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt -1120 -500 -1119 -499 l=400 w=1000 "w_n1253_n618#" "a_n1120_n588#" 800 0 "w_n1253_n618#" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt -2040 -500 -2039 -499 l=400 w=1000 "w_n2173_n618#" "a_n2040_n588#" 800 0 "w_n2173_n618#" 2000 0
diff --git a/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.mag b/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.mag
new file mode 100644
index 0000000..8790cd4
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__cap_var_lvt_MZUN4J.mag
@@ -0,0 +1,300 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -2173 -618 -1507 618
+rect -1253 -618 -587 618
+rect -333 -618 333 618
+rect 587 -618 1253 618
+rect 1507 -618 2173 618
+<< pwell >>
+rect -2283 618 2283 728
+rect -2283 -618 -2173 618
+rect -1507 -618 -1253 618
+rect -587 -618 -333 618
+rect 333 -618 587 618
+rect 1253 -618 1507 618
+rect 2173 -618 2283 618
+rect -2283 -728 2283 -618
+<< varactor >>
+rect -2040 -500 -1640 500
+rect -1120 -500 -720 500
+rect -200 -500 200 500
+rect 720 -500 1120 500
+rect 1640 -500 2040 500
+<< psubdiff >>
+rect -2247 658 -2151 692
+rect 2151 658 2247 692
+rect -2247 569 -2213 658
+rect 2213 569 2247 658
+rect -2247 -658 -2213 -569
+rect 2213 -658 2247 -569
+rect -2247 -692 -2124 -658
+rect 2124 -692 2247 -658
+<< nsubdiff >>
+rect -2137 476 -2040 500
+rect -2137 -476 -2125 476
+rect -2091 -476 -2040 476
+rect -2137 -500 -2040 -476
+rect -1640 476 -1543 500
+rect -1640 -476 -1589 476
+rect -1555 -476 -1543 476
+rect -1640 -500 -1543 -476
+rect -1217 476 -1120 500
+rect -1217 -476 -1205 476
+rect -1171 -476 -1120 476
+rect -1217 -500 -1120 -476
+rect -720 476 -623 500
+rect -720 -476 -669 476
+rect -635 -476 -623 476
+rect -720 -500 -623 -476
+rect -297 476 -200 500
+rect -297 -476 -285 476
+rect -251 -476 -200 476
+rect -297 -500 -200 -476
+rect 200 476 297 500
+rect 200 -476 251 476
+rect 285 -476 297 476
+rect 200 -500 297 -476
+rect 623 476 720 500
+rect 623 -476 635 476
+rect 669 -476 720 476
+rect 623 -500 720 -476
+rect 1120 476 1217 500
+rect 1120 -476 1171 476
+rect 1205 -476 1217 476
+rect 1120 -500 1217 -476
+rect 1543 476 1640 500
+rect 1543 -476 1555 476
+rect 1589 -476 1640 476
+rect 1543 -500 1640 -476
+rect 2040 476 2137 500
+rect 2040 -476 2091 476
+rect 2125 -476 2137 476
+rect 2040 -500 2137 -476
+<< psubdiffcont >>
+rect -2151 658 2151 692
+rect -2247 -569 -2213 569
+rect 2213 -569 2247 569
+rect -2124 -692 2124 -658
+<< nsubdiffcont >>
+rect -2125 -476 -2091 476
+rect -1589 -476 -1555 476
+rect -1205 -476 -1171 476
+rect -669 -476 -635 476
+rect -285 -476 -251 476
+rect 251 -476 285 476
+rect 635 -476 669 476
+rect 1171 -476 1205 476
+rect 1555 -476 1589 476
+rect 2091 -476 2125 476
+<< poly >>
+rect -2040 572 -1640 588
+rect -2040 538 -2024 572
+rect -1656 538 -1640 572
+rect -2040 500 -1640 538
+rect -1120 572 -720 588
+rect -1120 538 -1104 572
+rect -736 538 -720 572
+rect -1120 500 -720 538
+rect -200 572 200 588
+rect -200 538 -184 572
+rect 184 538 200 572
+rect -200 500 200 538
+rect 720 572 1120 588
+rect 720 538 736 572
+rect 1104 538 1120 572
+rect 720 500 1120 538
+rect 1640 572 2040 588
+rect 1640 538 1656 572
+rect 2024 538 2040 572
+rect 1640 500 2040 538
+rect -2040 -538 -1640 -500
+rect -2040 -572 -2024 -538
+rect -1656 -572 -1640 -538
+rect -2040 -588 -1640 -572
+rect -1120 -538 -720 -500
+rect -1120 -572 -1104 -538
+rect -736 -572 -720 -538
+rect -1120 -588 -720 -572
+rect -200 -538 200 -500
+rect -200 -572 -184 -538
+rect 184 -572 200 -538
+rect -200 -588 200 -572
+rect 720 -538 1120 -500
+rect 720 -572 736 -538
+rect 1104 -572 1120 -538
+rect 720 -588 1120 -572
+rect 1640 -538 2040 -500
+rect 1640 -572 1656 -538
+rect 2024 -572 2040 -538
+rect 1640 -588 2040 -572
+<< polycont >>
+rect -2024 538 -1656 572
+rect -1104 538 -736 572
+rect -184 538 184 572
+rect 736 538 1104 572
+rect 1656 538 2024 572
+rect -2024 -572 -1656 -538
+rect -1104 -572 -736 -538
+rect -184 -572 184 -538
+rect 736 -572 1104 -538
+rect 1656 -572 2024 -538
+<< locali >>
+rect -2247 658 -2151 692
+rect 2151 658 2247 692
+rect -2247 569 -2213 658
+rect -2040 538 -2024 572
+rect -1656 538 -1640 572
+rect -1120 538 -1104 572
+rect -736 538 -720 572
+rect -200 538 -184 572
+rect 184 538 200 572
+rect 720 538 736 572
+rect 1104 538 1120 572
+rect 1640 538 1656 572
+rect 2024 538 2040 572
+rect 2213 569 2247 658
+rect -2125 476 -2091 492
+rect -2125 -492 -2091 -476
+rect -1589 476 -1555 492
+rect -1589 -492 -1555 -476
+rect -1205 476 -1171 492
+rect -1205 -492 -1171 -476
+rect -669 476 -635 492
+rect -669 -492 -635 -476
+rect -285 476 -251 492
+rect -285 -492 -251 -476
+rect 251 476 285 492
+rect 251 -492 285 -476
+rect 635 476 669 492
+rect 635 -492 669 -476
+rect 1171 476 1205 492
+rect 1171 -492 1205 -476
+rect 1555 476 1589 492
+rect 1555 -492 1589 -476
+rect 2091 476 2125 492
+rect 2091 -492 2125 -476
+rect -2247 -658 -2213 -569
+rect -2040 -572 -2024 -538
+rect -1656 -572 -1640 -538
+rect -1120 -572 -1104 -538
+rect -736 -572 -720 -538
+rect -200 -572 -184 -538
+rect 184 -572 200 -538
+rect 720 -572 736 -538
+rect 1104 -572 1120 -538
+rect 1640 -572 1656 -538
+rect 2024 -572 2040 -538
+rect 2213 -658 2247 -569
+rect -2247 -692 -2124 -658
+rect 2124 -692 2247 -658
+<< viali >>
+rect -2024 538 -1656 572
+rect -1104 538 -736 572
+rect -184 538 184 572
+rect 736 538 1104 572
+rect 1656 538 2024 572
+rect -2125 -476 -2091 476
+rect -1589 -476 -1555 476
+rect -1205 -476 -1171 476
+rect -669 -476 -635 476
+rect -285 -476 -251 476
+rect 251 -476 285 476
+rect 635 -476 669 476
+rect 1171 -476 1205 476
+rect 1555 -476 1589 476
+rect 2091 -476 2125 476
+rect -2024 -572 -1656 -538
+rect -1104 -572 -736 -538
+rect -184 -572 184 -538
+rect 736 -572 1104 -538
+rect 1656 -572 2024 -538
+<< metal1 >>
+rect -2036 572 -1644 578
+rect -2036 538 -2024 572
+rect -1656 538 -1644 572
+rect -2036 532 -1644 538
+rect -1116 572 -724 578
+rect -1116 538 -1104 572
+rect -736 538 -724 572
+rect -1116 532 -724 538
+rect -196 572 196 578
+rect -196 538 -184 572
+rect 184 538 196 572
+rect -196 532 196 538
+rect 724 572 1116 578
+rect 724 538 736 572
+rect 1104 538 1116 572
+rect 724 532 1116 538
+rect 1644 572 2036 578
+rect 1644 538 1656 572
+rect 2024 538 2036 572
+rect 1644 532 2036 538
+rect -2131 476 -2085 488
+rect -2131 -476 -2125 476
+rect -2091 -476 -2085 476
+rect -2131 -488 -2085 -476
+rect -1595 476 -1549 488
+rect -1595 -476 -1589 476
+rect -1555 -476 -1549 476
+rect -1595 -488 -1549 -476
+rect -1211 476 -1165 488
+rect -1211 -476 -1205 476
+rect -1171 -476 -1165 476
+rect -1211 -488 -1165 -476
+rect -675 476 -629 488
+rect -675 -476 -669 476
+rect -635 -476 -629 476
+rect -675 -488 -629 -476
+rect -291 476 -245 488
+rect -291 -476 -285 476
+rect -251 -476 -245 476
+rect -291 -488 -245 -476
+rect 245 476 291 488
+rect 245 -476 251 476
+rect 285 -476 291 476
+rect 245 -488 291 -476
+rect 629 476 675 488
+rect 629 -476 635 476
+rect 669 -476 675 476
+rect 629 -488 675 -476
+rect 1165 476 1211 488
+rect 1165 -476 1171 476
+rect 1205 -476 1211 476
+rect 1165 -488 1211 -476
+rect 1549 476 1595 488
+rect 1549 -476 1555 476
+rect 1589 -476 1595 476
+rect 1549 -488 1595 -476
+rect 2085 476 2131 488
+rect 2085 -476 2091 476
+rect 2125 -476 2131 476
+rect 2085 -488 2131 -476
+rect -2036 -538 -1644 -532
+rect -2036 -572 -2024 -538
+rect -1656 -572 -1644 -538
+rect -2036 -578 -1644 -572
+rect -1116 -538 -724 -532
+rect -1116 -572 -1104 -538
+rect -736 -572 -724 -538
+rect -1116 -578 -724 -572
+rect -196 -538 196 -532
+rect -196 -572 -184 -538
+rect 184 -572 196 -538
+rect -196 -578 196 -572
+rect 724 -538 1116 -532
+rect 724 -572 736 -538
+rect 1104 -572 1116 -538
+rect 724 -578 1116 -572
+rect 1644 -538 2036 -532
+rect 1644 -572 1656 -538
+rect 2024 -572 2036 -538
+rect 1644 -578 2036 -572
+<< properties >>
+string FIXED_BBOX -2230 -648 2230 648
+string gencell sky130_fd_pr__cap_var_lvt
+string library sky130
+string parameters w 5 l 2 m 1 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.18 wmin 1.0 compatible {sky130_fd_pr__cap_var_lvt  sky130_fd_pr__cap_var_hvt sky130_fd_pr__cap_var} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_62U3RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_62U3RB.mag
new file mode 100644
index 0000000..cc4348e
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_62U3RB.mag
@@ -0,0 +1,967 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645781187
+<< error_p >>
+rect -715 581 -657 587
+rect -519 581 -461 587
+rect -323 581 -265 587
+rect -127 581 -69 587
+rect 69 581 127 587
+rect 265 581 323 587
+rect 461 581 519 587
+rect 657 581 715 587
+rect -715 547 -703 581
+rect -519 547 -507 581
+rect -323 547 -311 581
+rect -127 547 -115 581
+rect 69 547 81 581
+rect 265 547 277 581
+rect 461 547 473 581
+rect 657 547 669 581
+rect -715 541 -657 547
+rect -519 541 -461 547
+rect -323 541 -265 547
+rect -127 541 -69 547
+rect 69 541 127 547
+rect 265 541 323 547
+rect 461 541 519 547
+rect 657 541 715 547
+rect -617 71 -559 77
+rect -421 71 -363 77
+rect -225 71 -167 77
+rect -29 71 29 77
+rect 167 71 225 77
+rect 363 71 421 77
+rect 559 71 617 77
+rect -617 37 -605 71
+rect -421 37 -409 71
+rect -225 37 -213 71
+rect -29 37 -17 71
+rect 167 37 179 71
+rect 363 37 375 71
+rect 559 37 571 71
+rect -617 31 -559 37
+rect -421 31 -363 37
+rect -225 31 -167 37
+rect -29 31 29 37
+rect 167 31 225 37
+rect 363 31 421 37
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -421 -37 -363 -31
+rect -225 -37 -167 -31
+rect -29 -37 29 -31
+rect 167 -37 225 -31
+rect 363 -37 421 -31
+rect 559 -37 617 -31
+rect -617 -71 -605 -37
+rect -421 -71 -409 -37
+rect -225 -71 -213 -37
+rect -29 -71 -17 -37
+rect 167 -71 179 -37
+rect 363 -71 375 -37
+rect 559 -71 571 -37
+rect -617 -77 -559 -71
+rect -421 -77 -363 -71
+rect -225 -77 -167 -71
+rect -29 -77 29 -71
+rect 167 -77 225 -71
+rect 363 -77 421 -71
+rect 559 -77 617 -71
+rect -715 -547 -657 -541
+rect -519 -547 -461 -541
+rect -323 -547 -265 -541
+rect -127 -547 -69 -541
+rect 69 -547 127 -541
+rect 265 -547 323 -541
+rect 461 -547 519 -541
+rect 657 -547 715 -541
+rect -715 -581 -703 -547
+rect -519 -581 -507 -547
+rect -323 -581 -311 -547
+rect -127 -581 -115 -547
+rect 69 -581 81 -547
+rect 265 -581 277 -547
+rect 461 -581 473 -547
+rect 657 -581 669 -547
+rect -715 -587 -657 -581
+rect -519 -587 -461 -581
+rect -323 -587 -265 -581
+rect -127 -587 -69 -581
+rect 69 -587 127 -581
+rect 265 -587 323 -581
+rect 461 -587 519 -581
+rect 657 -587 715 -581
+<< pwell >>
+rect -902 -719 902 719
+<< nmos >>
+rect -706 109 -666 509
+rect -608 109 -568 509
+rect -510 109 -470 509
+rect -412 109 -372 509
+rect -314 109 -274 509
+rect -216 109 -176 509
+rect -118 109 -78 509
+rect -20 109 20 509
+rect 78 109 118 509
+rect 176 109 216 509
+rect 274 109 314 509
+rect 372 109 412 509
+rect 470 109 510 509
+rect 568 109 608 509
+rect 666 109 706 509
+rect -706 -509 -666 -109
+rect -608 -509 -568 -109
+rect -510 -509 -470 -109
+rect -412 -509 -372 -109
+rect -314 -509 -274 -109
+rect -216 -509 -176 -109
+rect -118 -509 -78 -109
+rect -20 -509 20 -109
+rect 78 -509 118 -109
+rect 176 -509 216 -109
+rect 274 -509 314 -109
+rect 372 -509 412 -109
+rect 470 -509 510 -109
+rect 568 -509 608 -109
+rect 666 -509 706 -109
+<< ndiff >>
+rect -764 497 -706 509
+rect -764 121 -752 497
+rect -718 121 -706 497
+rect -764 109 -706 121
+rect -666 497 -608 509
+rect -666 121 -654 497
+rect -620 121 -608 497
+rect -666 109 -608 121
+rect -568 497 -510 509
+rect -568 121 -556 497
+rect -522 121 -510 497
+rect -568 109 -510 121
+rect -470 497 -412 509
+rect -470 121 -458 497
+rect -424 121 -412 497
+rect -470 109 -412 121
+rect -372 497 -314 509
+rect -372 121 -360 497
+rect -326 121 -314 497
+rect -372 109 -314 121
+rect -274 497 -216 509
+rect -274 121 -262 497
+rect -228 121 -216 497
+rect -274 109 -216 121
+rect -176 497 -118 509
+rect -176 121 -164 497
+rect -130 121 -118 497
+rect -176 109 -118 121
+rect -78 497 -20 509
+rect -78 121 -66 497
+rect -32 121 -20 497
+rect -78 109 -20 121
+rect 20 497 78 509
+rect 20 121 32 497
+rect 66 121 78 497
+rect 20 109 78 121
+rect 118 497 176 509
+rect 118 121 130 497
+rect 164 121 176 497
+rect 118 109 176 121
+rect 216 497 274 509
+rect 216 121 228 497
+rect 262 121 274 497
+rect 216 109 274 121
+rect 314 497 372 509
+rect 314 121 326 497
+rect 360 121 372 497
+rect 314 109 372 121
+rect 412 497 470 509
+rect 412 121 424 497
+rect 458 121 470 497
+rect 412 109 470 121
+rect 510 497 568 509
+rect 510 121 522 497
+rect 556 121 568 497
+rect 510 109 568 121
+rect 608 497 666 509
+rect 608 121 620 497
+rect 654 121 666 497
+rect 608 109 666 121
+rect 706 497 764 509
+rect 706 121 718 497
+rect 752 121 764 497
+rect 706 109 764 121
+rect -764 -121 -706 -109
+rect -764 -497 -752 -121
+rect -718 -497 -706 -121
+rect -764 -509 -706 -497
+rect -666 -121 -608 -109
+rect -666 -497 -654 -121
+rect -620 -497 -608 -121
+rect -666 -509 -608 -497
+rect -568 -121 -510 -109
+rect -568 -497 -556 -121
+rect -522 -497 -510 -121
+rect -568 -509 -510 -497
+rect -470 -121 -412 -109
+rect -470 -497 -458 -121
+rect -424 -497 -412 -121
+rect -470 -509 -412 -497
+rect -372 -121 -314 -109
+rect -372 -497 -360 -121
+rect -326 -497 -314 -121
+rect -372 -509 -314 -497
+rect -274 -121 -216 -109
+rect -274 -497 -262 -121
+rect -228 -497 -216 -121
+rect -274 -509 -216 -497
+rect -176 -121 -118 -109
+rect -176 -497 -164 -121
+rect -130 -497 -118 -121
+rect -176 -509 -118 -497
+rect -78 -121 -20 -109
+rect -78 -497 -66 -121
+rect -32 -497 -20 -121
+rect -78 -509 -20 -497
+rect 20 -121 78 -109
+rect 20 -497 32 -121
+rect 66 -497 78 -121
+rect 20 -509 78 -497
+rect 118 -121 176 -109
+rect 118 -497 130 -121
+rect 164 -497 176 -121
+rect 118 -509 176 -497
+rect 216 -121 274 -109
+rect 216 -497 228 -121
+rect 262 -497 274 -121
+rect 216 -509 274 -497
+rect 314 -121 372 -109
+rect 314 -497 326 -121
+rect 360 -497 372 -121
+rect 314 -509 372 -497
+rect 412 -121 470 -109
+rect 412 -497 424 -121
+rect 458 -497 470 -121
+rect 412 -509 470 -497
+rect 510 -121 568 -109
+rect 510 -497 522 -121
+rect 556 -497 568 -121
+rect 510 -509 568 -497
+rect 608 -121 666 -109
+rect 608 -497 620 -121
+rect 654 -497 666 -121
+rect 608 -509 666 -497
+rect 706 -121 764 -109
+rect 706 -497 718 -121
+rect 752 -497 764 -121
+rect 706 -509 764 -497
+<< ndiffc >>
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+<< psubdiff >>
+rect -866 649 -770 683
+rect 770 649 866 683
+rect -866 587 -832 649
+rect 832 587 866 649
+rect -866 -649 -832 -587
+rect 832 -649 866 -587
+rect -866 -683 -770 -649
+rect 770 -683 866 -649
+<< psubdiffcont >>
+rect -770 649 770 683
+rect -866 -587 -832 587
+rect 832 -587 866 587
+rect -770 -683 770 -649
+<< poly >>
+rect -719 581 -653 597
+rect -719 547 -703 581
+rect -669 547 -653 581
+rect -719 531 -653 547
+rect -523 581 -457 597
+rect -523 547 -507 581
+rect -473 547 -457 581
+rect -706 509 -666 531
+rect -608 509 -568 535
+rect -523 531 -457 547
+rect -327 581 -261 597
+rect -327 547 -311 581
+rect -277 547 -261 581
+rect -510 509 -470 531
+rect -412 509 -372 535
+rect -327 531 -261 547
+rect -131 581 -65 597
+rect -131 547 -115 581
+rect -81 547 -65 581
+rect -314 509 -274 531
+rect -216 509 -176 535
+rect -131 531 -65 547
+rect 65 581 131 597
+rect 65 547 81 581
+rect 115 547 131 581
+rect -118 509 -78 531
+rect -20 509 20 535
+rect 65 531 131 547
+rect 261 581 327 597
+rect 261 547 277 581
+rect 311 547 327 581
+rect 78 509 118 531
+rect 176 509 216 535
+rect 261 531 327 547
+rect 457 581 523 597
+rect 457 547 473 581
+rect 507 547 523 581
+rect 274 509 314 531
+rect 372 509 412 535
+rect 457 531 523 547
+rect 653 581 719 597
+rect 653 547 669 581
+rect 703 547 719 581
+rect 470 509 510 531
+rect 568 509 608 535
+rect 653 531 719 547
+rect 666 509 706 531
+rect -706 83 -666 109
+rect -608 87 -568 109
+rect -621 71 -555 87
+rect -510 83 -470 109
+rect -412 87 -372 109
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -621 21 -555 37
+rect -425 71 -359 87
+rect -314 83 -274 109
+rect -216 87 -176 109
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -425 21 -359 37
+rect -229 71 -163 87
+rect -118 83 -78 109
+rect -20 87 20 109
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -229 21 -163 37
+rect -33 71 33 87
+rect 78 83 118 109
+rect 176 87 216 109
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 163 71 229 87
+rect 274 83 314 109
+rect 372 87 412 109
+rect 163 37 179 71
+rect 213 37 229 71
+rect 163 21 229 37
+rect 359 71 425 87
+rect 470 83 510 109
+rect 568 87 608 109
+rect 359 37 375 71
+rect 409 37 425 71
+rect 359 21 425 37
+rect 555 71 621 87
+rect 666 83 706 109
+rect 555 37 571 71
+rect 605 37 621 71
+rect 555 21 621 37
+rect -621 -37 -555 -21
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -706 -109 -666 -83
+rect -621 -87 -555 -71
+rect -425 -37 -359 -21
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -608 -109 -568 -87
+rect -510 -109 -470 -83
+rect -425 -87 -359 -71
+rect -229 -37 -163 -21
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -412 -109 -372 -87
+rect -314 -109 -274 -83
+rect -229 -87 -163 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -216 -109 -176 -87
+rect -118 -109 -78 -83
+rect -33 -87 33 -71
+rect 163 -37 229 -21
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect -20 -109 20 -87
+rect 78 -109 118 -83
+rect 163 -87 229 -71
+rect 359 -37 425 -21
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 176 -109 216 -87
+rect 274 -109 314 -83
+rect 359 -87 425 -71
+rect 555 -37 621 -21
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect 372 -109 412 -87
+rect 470 -109 510 -83
+rect 555 -87 621 -71
+rect 568 -109 608 -87
+rect 666 -109 706 -83
+rect -706 -531 -666 -509
+rect -719 -547 -653 -531
+rect -608 -535 -568 -509
+rect -510 -531 -470 -509
+rect -719 -581 -703 -547
+rect -669 -581 -653 -547
+rect -719 -597 -653 -581
+rect -523 -547 -457 -531
+rect -412 -535 -372 -509
+rect -314 -531 -274 -509
+rect -523 -581 -507 -547
+rect -473 -581 -457 -547
+rect -523 -597 -457 -581
+rect -327 -547 -261 -531
+rect -216 -535 -176 -509
+rect -118 -531 -78 -509
+rect -327 -581 -311 -547
+rect -277 -581 -261 -547
+rect -327 -597 -261 -581
+rect -131 -547 -65 -531
+rect -20 -535 20 -509
+rect 78 -531 118 -509
+rect -131 -581 -115 -547
+rect -81 -581 -65 -547
+rect -131 -597 -65 -581
+rect 65 -547 131 -531
+rect 176 -535 216 -509
+rect 274 -531 314 -509
+rect 65 -581 81 -547
+rect 115 -581 131 -547
+rect 65 -597 131 -581
+rect 261 -547 327 -531
+rect 372 -535 412 -509
+rect 470 -531 510 -509
+rect 261 -581 277 -547
+rect 311 -581 327 -547
+rect 261 -597 327 -581
+rect 457 -547 523 -531
+rect 568 -535 608 -509
+rect 666 -531 706 -509
+rect 457 -581 473 -547
+rect 507 -581 523 -547
+rect 457 -597 523 -581
+rect 653 -547 719 -531
+rect 653 -581 669 -547
+rect 703 -581 719 -547
+rect 653 -597 719 -581
+<< polycont >>
+rect -703 547 -669 581
+rect -507 547 -473 581
+rect -311 547 -277 581
+rect -115 547 -81 581
+rect 81 547 115 581
+rect 277 547 311 581
+rect 473 547 507 581
+rect 669 547 703 581
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -703 -581 -669 -547
+rect -507 -581 -473 -547
+rect -311 -581 -277 -547
+rect -115 -581 -81 -547
+rect 81 -581 115 -547
+rect 277 -581 311 -547
+rect 473 -581 507 -547
+rect 669 -581 703 -547
+<< locali >>
+rect -866 649 -770 683
+rect 770 649 866 683
+rect -866 587 -832 649
+rect 832 587 866 649
+rect -719 547 -703 581
+rect -669 547 -653 581
+rect -523 547 -507 581
+rect -473 547 -457 581
+rect -327 547 -311 581
+rect -277 547 -261 581
+rect -131 547 -115 581
+rect -81 547 -65 581
+rect 65 547 81 581
+rect 115 547 131 581
+rect 261 547 277 581
+rect 311 547 327 581
+rect 457 547 473 581
+rect 507 547 523 581
+rect 653 547 669 581
+rect 703 547 719 581
+rect -752 497 -718 513
+rect -752 105 -718 121
+rect -654 497 -620 513
+rect -654 105 -620 121
+rect -556 497 -522 513
+rect -556 105 -522 121
+rect -458 497 -424 513
+rect -458 105 -424 121
+rect -360 497 -326 513
+rect -360 105 -326 121
+rect -262 497 -228 513
+rect -262 105 -228 121
+rect -164 497 -130 513
+rect -164 105 -130 121
+rect -66 497 -32 513
+rect -66 105 -32 121
+rect 32 497 66 513
+rect 32 105 66 121
+rect 130 497 164 513
+rect 130 105 164 121
+rect 228 497 262 513
+rect 228 105 262 121
+rect 326 497 360 513
+rect 326 105 360 121
+rect 424 497 458 513
+rect 424 105 458 121
+rect 522 497 556 513
+rect 522 105 556 121
+rect 620 497 654 513
+rect 620 105 654 121
+rect 718 497 752 513
+rect 718 105 752 121
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 163 37 179 71
+rect 213 37 229 71
+rect 359 37 375 71
+rect 409 37 425 71
+rect 555 37 571 71
+rect 605 37 621 71
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect -752 -121 -718 -105
+rect -752 -513 -718 -497
+rect -654 -121 -620 -105
+rect -654 -513 -620 -497
+rect -556 -121 -522 -105
+rect -556 -513 -522 -497
+rect -458 -121 -424 -105
+rect -458 -513 -424 -497
+rect -360 -121 -326 -105
+rect -360 -513 -326 -497
+rect -262 -121 -228 -105
+rect -262 -513 -228 -497
+rect -164 -121 -130 -105
+rect -164 -513 -130 -497
+rect -66 -121 -32 -105
+rect -66 -513 -32 -497
+rect 32 -121 66 -105
+rect 32 -513 66 -497
+rect 130 -121 164 -105
+rect 130 -513 164 -497
+rect 228 -121 262 -105
+rect 228 -513 262 -497
+rect 326 -121 360 -105
+rect 326 -513 360 -497
+rect 424 -121 458 -105
+rect 424 -513 458 -497
+rect 522 -121 556 -105
+rect 522 -513 556 -497
+rect 620 -121 654 -105
+rect 620 -513 654 -497
+rect 718 -121 752 -105
+rect 718 -513 752 -497
+rect -719 -581 -703 -547
+rect -669 -581 -653 -547
+rect -523 -581 -507 -547
+rect -473 -581 -457 -547
+rect -327 -581 -311 -547
+rect -277 -581 -261 -547
+rect -131 -581 -115 -547
+rect -81 -581 -65 -547
+rect 65 -581 81 -547
+rect 115 -581 131 -547
+rect 261 -581 277 -547
+rect 311 -581 327 -547
+rect 457 -581 473 -547
+rect 507 -581 523 -547
+rect 653 -581 669 -547
+rect 703 -581 719 -547
+rect -866 -649 -832 -587
+rect 832 -649 866 -587
+rect -866 -683 -770 -649
+rect 770 -683 866 -649
+<< viali >>
+rect -703 547 -669 581
+rect -507 547 -473 581
+rect -311 547 -277 581
+rect -115 547 -81 581
+rect 81 547 115 581
+rect 277 547 311 581
+rect 473 547 507 581
+rect 669 547 703 581
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect -703 -581 -669 -547
+rect -507 -581 -473 -547
+rect -311 -581 -277 -547
+rect -115 -581 -81 -547
+rect 81 -581 115 -547
+rect 277 -581 311 -547
+rect 473 -581 507 -547
+rect 669 -581 703 -547
+<< metal1 >>
+rect -715 581 -657 587
+rect -715 547 -703 581
+rect -669 547 -657 581
+rect -715 541 -657 547
+rect -519 581 -461 587
+rect -519 547 -507 581
+rect -473 547 -461 581
+rect -519 541 -461 547
+rect -323 581 -265 587
+rect -323 547 -311 581
+rect -277 547 -265 581
+rect -323 541 -265 547
+rect -127 581 -69 587
+rect -127 547 -115 581
+rect -81 547 -69 581
+rect -127 541 -69 547
+rect 69 581 127 587
+rect 69 547 81 581
+rect 115 547 127 581
+rect 69 541 127 547
+rect 265 581 323 587
+rect 265 547 277 581
+rect 311 547 323 581
+rect 265 541 323 547
+rect 461 581 519 587
+rect 461 547 473 581
+rect 507 547 519 581
+rect 461 541 519 547
+rect 657 581 715 587
+rect 657 547 669 581
+rect 703 547 715 581
+rect 657 541 715 547
+rect -758 497 -712 509
+rect -758 121 -752 497
+rect -718 121 -712 497
+rect -758 109 -712 121
+rect -660 497 -614 509
+rect -660 121 -654 497
+rect -620 121 -614 497
+rect -660 109 -614 121
+rect -562 497 -516 509
+rect -562 121 -556 497
+rect -522 121 -516 497
+rect -562 109 -516 121
+rect -464 497 -418 509
+rect -464 121 -458 497
+rect -424 121 -418 497
+rect -464 109 -418 121
+rect -366 497 -320 509
+rect -366 121 -360 497
+rect -326 121 -320 497
+rect -366 109 -320 121
+rect -268 497 -222 509
+rect -268 121 -262 497
+rect -228 121 -222 497
+rect -268 109 -222 121
+rect -170 497 -124 509
+rect -170 121 -164 497
+rect -130 121 -124 497
+rect -170 109 -124 121
+rect -72 497 -26 509
+rect -72 121 -66 497
+rect -32 121 -26 497
+rect -72 109 -26 121
+rect 26 497 72 509
+rect 26 121 32 497
+rect 66 121 72 497
+rect 26 109 72 121
+rect 124 497 170 509
+rect 124 121 130 497
+rect 164 121 170 497
+rect 124 109 170 121
+rect 222 497 268 509
+rect 222 121 228 497
+rect 262 121 268 497
+rect 222 109 268 121
+rect 320 497 366 509
+rect 320 121 326 497
+rect 360 121 366 497
+rect 320 109 366 121
+rect 418 497 464 509
+rect 418 121 424 497
+rect 458 121 464 497
+rect 418 109 464 121
+rect 516 497 562 509
+rect 516 121 522 497
+rect 556 121 562 497
+rect 516 109 562 121
+rect 614 497 660 509
+rect 614 121 620 497
+rect 654 121 660 497
+rect 614 109 660 121
+rect 712 497 758 509
+rect 712 121 718 497
+rect 752 121 758 497
+rect 712 109 758 121
+rect -617 71 -559 77
+rect -617 37 -605 71
+rect -571 37 -559 71
+rect -617 31 -559 37
+rect -421 71 -363 77
+rect -421 37 -409 71
+rect -375 37 -363 71
+rect -421 31 -363 37
+rect -225 71 -167 77
+rect -225 37 -213 71
+rect -179 37 -167 71
+rect -225 31 -167 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 167 71 225 77
+rect 167 37 179 71
+rect 213 37 225 71
+rect 167 31 225 37
+rect 363 71 421 77
+rect 363 37 375 71
+rect 409 37 421 71
+rect 363 31 421 37
+rect 559 71 617 77
+rect 559 37 571 71
+rect 605 37 617 71
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -617 -71 -605 -37
+rect -571 -71 -559 -37
+rect -617 -77 -559 -71
+rect -421 -37 -363 -31
+rect -421 -71 -409 -37
+rect -375 -71 -363 -37
+rect -421 -77 -363 -71
+rect -225 -37 -167 -31
+rect -225 -71 -213 -37
+rect -179 -71 -167 -37
+rect -225 -77 -167 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 167 -37 225 -31
+rect 167 -71 179 -37
+rect 213 -71 225 -37
+rect 167 -77 225 -71
+rect 363 -37 421 -31
+rect 363 -71 375 -37
+rect 409 -71 421 -37
+rect 363 -77 421 -71
+rect 559 -37 617 -31
+rect 559 -71 571 -37
+rect 605 -71 617 -37
+rect 559 -77 617 -71
+rect -758 -121 -712 -109
+rect -758 -497 -752 -121
+rect -718 -497 -712 -121
+rect -758 -509 -712 -497
+rect -660 -121 -614 -109
+rect -660 -497 -654 -121
+rect -620 -497 -614 -121
+rect -660 -509 -614 -497
+rect -562 -121 -516 -109
+rect -562 -497 -556 -121
+rect -522 -497 -516 -121
+rect -562 -509 -516 -497
+rect -464 -121 -418 -109
+rect -464 -497 -458 -121
+rect -424 -497 -418 -121
+rect -464 -509 -418 -497
+rect -366 -121 -320 -109
+rect -366 -497 -360 -121
+rect -326 -497 -320 -121
+rect -366 -509 -320 -497
+rect -268 -121 -222 -109
+rect -268 -497 -262 -121
+rect -228 -497 -222 -121
+rect -268 -509 -222 -497
+rect -170 -121 -124 -109
+rect -170 -497 -164 -121
+rect -130 -497 -124 -121
+rect -170 -509 -124 -497
+rect -72 -121 -26 -109
+rect -72 -497 -66 -121
+rect -32 -497 -26 -121
+rect -72 -509 -26 -497
+rect 26 -121 72 -109
+rect 26 -497 32 -121
+rect 66 -497 72 -121
+rect 26 -509 72 -497
+rect 124 -121 170 -109
+rect 124 -497 130 -121
+rect 164 -497 170 -121
+rect 124 -509 170 -497
+rect 222 -121 268 -109
+rect 222 -497 228 -121
+rect 262 -497 268 -121
+rect 222 -509 268 -497
+rect 320 -121 366 -109
+rect 320 -497 326 -121
+rect 360 -497 366 -121
+rect 320 -509 366 -497
+rect 418 -121 464 -109
+rect 418 -497 424 -121
+rect 458 -497 464 -121
+rect 418 -509 464 -497
+rect 516 -121 562 -109
+rect 516 -497 522 -121
+rect 556 -497 562 -121
+rect 516 -509 562 -497
+rect 614 -121 660 -109
+rect 614 -497 620 -121
+rect 654 -497 660 -121
+rect 614 -509 660 -497
+rect 712 -121 758 -109
+rect 712 -497 718 -121
+rect 752 -497 758 -121
+rect 712 -509 758 -497
+rect -715 -547 -657 -541
+rect -715 -581 -703 -547
+rect -669 -581 -657 -547
+rect -715 -587 -657 -581
+rect -519 -547 -461 -541
+rect -519 -581 -507 -547
+rect -473 -581 -461 -547
+rect -519 -587 -461 -581
+rect -323 -547 -265 -541
+rect -323 -581 -311 -547
+rect -277 -581 -265 -547
+rect -323 -587 -265 -581
+rect -127 -547 -69 -541
+rect -127 -581 -115 -547
+rect -81 -581 -69 -547
+rect -127 -587 -69 -581
+rect 69 -547 127 -541
+rect 69 -581 81 -547
+rect 115 -581 127 -547
+rect 69 -587 127 -581
+rect 265 -547 323 -541
+rect 265 -581 277 -547
+rect 311 -581 323 -547
+rect 265 -587 323 -581
+rect 461 -547 519 -541
+rect 461 -581 473 -547
+rect 507 -581 519 -547
+rect 461 -587 519 -581
+rect 657 -547 715 -541
+rect 657 -581 669 -547
+rect 703 -581 715 -547
+rect 657 -587 715 -581
+<< properties >>
+string FIXED_BBOX -849 -666 849 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 2 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_854667.ext b/mag/tia/sky130_fd_pr__nfet_01v8_854667.ext
new file mode 100644
index 0000000..8ff551b
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_854667.ext
@@ -0,0 +1,38 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_745_n200#" 982 164.245 745 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_487_n200#" 982 21.6727 487 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_229_n200#" 982 21.6727 229 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 982 21.6727 -29 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n200#" 982 21.6727 -287 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n545_n200#" 982 21.6727 -545 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n803_n200#" 982 164.245 -803 -200 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_545_n288#" 320 557.881 545 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_287_n288#" 320 496.492 287 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_29_n288#" 320 496.492 29 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n288#" 320 496.492 -229 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n487_n288#" 320 496.492 -487 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "a_n745_n288#" 320 558.393 -745 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 115200 1552 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n905_n374#" 0 0 -905 -374 ppd 0 0 0 0 0 0 0 0 0 0 169320 9960 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169320 9960 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n487_n288#" "a_n229_n288#" 135.85
+cap "a_229_n200#" "a_487_n200#" 120.623
+cap "a_n545_n200#" "a_n287_n200#" 120.623
+cap "a_n29_n200#" "a_n287_n200#" 120.623
+cap "a_287_n288#" "a_545_n288#" 135.85
+cap "a_29_n288#" "a_287_n288#" 135.85
+cap "a_n803_n200#" "a_n545_n200#" 120.623
+cap "a_n487_n288#" "a_n745_n288#" 135.85
+cap "a_n29_n200#" "a_229_n200#" 120.623
+cap "a_745_n200#" "a_487_n200#" 120.623
+cap "a_29_n288#" "a_n229_n288#" 135.85
+device msubckt sky130_fd_pr__nfet_01v8 545 -200 546 -199 l=200 w=400 "a_n905_n374#" "a_545_n288#" 400 0 "a_487_n200#" 400 0 "a_745_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 287 -200 288 -199 l=200 w=400 "a_n905_n374#" "a_287_n288#" 400 0 "a_229_n200#" 400 0 "a_487_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 29 -200 30 -199 l=200 w=400 "a_n905_n374#" "a_29_n288#" 400 0 "a_n29_n200#" 400 0 "a_229_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -229 -200 -228 -199 l=200 w=400 "a_n905_n374#" "a_n229_n288#" 400 0 "a_n287_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -487 -200 -486 -199 l=200 w=400 "a_n905_n374#" "a_n487_n288#" 400 0 "a_n545_n200#" 400 0 "a_n287_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -745 -200 -744 -199 l=200 w=400 "a_n905_n374#" "a_n745_n288#" 400 0 "a_n803_n200#" 400 0 "a_n545_n200#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_854667.mag b/mag/tia/sky130_fd_pr__nfet_01v8_854667.mag
new file mode 100644
index 0000000..eb7504b
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_854667.mag
@@ -0,0 +1,276 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect -941 -410 941 410
+<< nmos >>
+rect -745 -200 -545 200
+rect -487 -200 -287 200
+rect -229 -200 -29 200
+rect 29 -200 229 200
+rect 287 -200 487 200
+rect 545 -200 745 200
+<< ndiff >>
+rect -803 188 -745 200
+rect -803 -188 -791 188
+rect -757 -188 -745 188
+rect -803 -200 -745 -188
+rect -545 188 -487 200
+rect -545 -188 -533 188
+rect -499 -188 -487 188
+rect -545 -200 -487 -188
+rect -287 188 -229 200
+rect -287 -188 -275 188
+rect -241 -188 -229 188
+rect -287 -200 -229 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 229 188 287 200
+rect 229 -188 241 188
+rect 275 -188 287 188
+rect 229 -200 287 -188
+rect 487 188 545 200
+rect 487 -188 499 188
+rect 533 -188 545 188
+rect 487 -200 545 -188
+rect 745 188 803 200
+rect 745 -188 757 188
+rect 791 -188 803 188
+rect 745 -200 803 -188
+<< ndiffc >>
+rect -791 -188 -757 188
+rect -533 -188 -499 188
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+rect 499 -188 533 188
+rect 757 -188 791 188
+<< psubdiff >>
+rect -905 340 -809 374
+rect 809 340 905 374
+rect -905 278 -871 340
+rect 871 278 905 340
+rect -905 -340 -871 -278
+rect 871 -340 905 -278
+rect -905 -374 -809 -340
+rect 809 -374 905 -340
+<< psubdiffcont >>
+rect -809 340 809 374
+rect -905 -278 -871 278
+rect 871 -278 905 278
+rect -809 -374 809 -340
+<< poly >>
+rect -745 272 -545 288
+rect -745 238 -729 272
+rect -561 238 -545 272
+rect -745 200 -545 238
+rect -487 272 -287 288
+rect -487 238 -471 272
+rect -303 238 -287 272
+rect -487 200 -287 238
+rect -229 272 -29 288
+rect -229 238 -213 272
+rect -45 238 -29 272
+rect -229 200 -29 238
+rect 29 272 229 288
+rect 29 238 45 272
+rect 213 238 229 272
+rect 29 200 229 238
+rect 287 272 487 288
+rect 287 238 303 272
+rect 471 238 487 272
+rect 287 200 487 238
+rect 545 272 745 288
+rect 545 238 561 272
+rect 729 238 745 272
+rect 545 200 745 238
+rect -745 -238 -545 -200
+rect -745 -272 -729 -238
+rect -561 -272 -545 -238
+rect -745 -288 -545 -272
+rect -487 -238 -287 -200
+rect -487 -272 -471 -238
+rect -303 -272 -287 -238
+rect -487 -288 -287 -272
+rect -229 -238 -29 -200
+rect -229 -272 -213 -238
+rect -45 -272 -29 -238
+rect -229 -288 -29 -272
+rect 29 -238 229 -200
+rect 29 -272 45 -238
+rect 213 -272 229 -238
+rect 29 -288 229 -272
+rect 287 -238 487 -200
+rect 287 -272 303 -238
+rect 471 -272 487 -238
+rect 287 -288 487 -272
+rect 545 -238 745 -200
+rect 545 -272 561 -238
+rect 729 -272 745 -238
+rect 545 -288 745 -272
+<< polycont >>
+rect -729 238 -561 272
+rect -471 238 -303 272
+rect -213 238 -45 272
+rect 45 238 213 272
+rect 303 238 471 272
+rect 561 238 729 272
+rect -729 -272 -561 -238
+rect -471 -272 -303 -238
+rect -213 -272 -45 -238
+rect 45 -272 213 -238
+rect 303 -272 471 -238
+rect 561 -272 729 -238
+<< locali >>
+rect -905 340 -809 374
+rect 809 340 905 374
+rect -905 278 -871 340
+rect 871 278 905 340
+rect -745 238 -729 272
+rect -561 238 -545 272
+rect -487 238 -471 272
+rect -303 238 -287 272
+rect -229 238 -213 272
+rect -45 238 -29 272
+rect 29 238 45 272
+rect 213 238 229 272
+rect 287 238 303 272
+rect 471 238 487 272
+rect 545 238 561 272
+rect 729 238 745 272
+rect -791 188 -757 204
+rect -791 -204 -757 -188
+rect -533 188 -499 204
+rect -533 -204 -499 -188
+rect -275 188 -241 204
+rect -275 -204 -241 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 241 188 275 204
+rect 241 -204 275 -188
+rect 499 188 533 204
+rect 499 -204 533 -188
+rect 757 188 791 204
+rect 757 -204 791 -188
+rect -745 -272 -729 -238
+rect -561 -272 -545 -238
+rect -487 -272 -471 -238
+rect -303 -272 -287 -238
+rect -229 -272 -213 -238
+rect -45 -272 -29 -238
+rect 29 -272 45 -238
+rect 213 -272 229 -238
+rect 287 -272 303 -238
+rect 471 -272 487 -238
+rect 545 -272 561 -238
+rect 729 -272 745 -238
+rect -905 -340 -871 -278
+rect 871 -340 905 -278
+rect -905 -374 -809 -340
+rect 809 -374 905 -340
+<< viali >>
+rect -729 238 -561 272
+rect -471 238 -303 272
+rect -213 238 -45 272
+rect 45 238 213 272
+rect 303 238 471 272
+rect 561 238 729 272
+rect -791 -188 -757 188
+rect -533 -188 -499 188
+rect -275 -188 -241 188
+rect -17 -188 17 188
+rect 241 -188 275 188
+rect 499 -188 533 188
+rect 757 -188 791 188
+rect -729 -272 -561 -238
+rect -471 -272 -303 -238
+rect -213 -272 -45 -238
+rect 45 -272 213 -238
+rect 303 -272 471 -238
+rect 561 -272 729 -238
+<< metal1 >>
+rect -741 272 -549 278
+rect -741 238 -729 272
+rect -561 238 -549 272
+rect -741 232 -549 238
+rect -483 272 -291 278
+rect -483 238 -471 272
+rect -303 238 -291 272
+rect -483 232 -291 238
+rect -225 272 -33 278
+rect -225 238 -213 272
+rect -45 238 -33 272
+rect -225 232 -33 238
+rect 33 272 225 278
+rect 33 238 45 272
+rect 213 238 225 272
+rect 33 232 225 238
+rect 291 272 483 278
+rect 291 238 303 272
+rect 471 238 483 272
+rect 291 232 483 238
+rect 549 272 741 278
+rect 549 238 561 272
+rect 729 238 741 272
+rect 549 232 741 238
+rect -797 188 -751 200
+rect -797 -188 -791 188
+rect -757 -188 -751 188
+rect -797 -200 -751 -188
+rect -539 188 -493 200
+rect -539 -188 -533 188
+rect -499 -188 -493 188
+rect -539 -200 -493 -188
+rect -281 188 -235 200
+rect -281 -188 -275 188
+rect -241 -188 -235 188
+rect -281 -200 -235 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 235 188 281 200
+rect 235 -188 241 188
+rect 275 -188 281 188
+rect 235 -200 281 -188
+rect 493 188 539 200
+rect 493 -188 499 188
+rect 533 -188 539 188
+rect 493 -200 539 -188
+rect 751 188 797 200
+rect 751 -188 757 188
+rect 791 -188 797 188
+rect 751 -200 797 -188
+rect -741 -238 -549 -232
+rect -741 -272 -729 -238
+rect -561 -272 -549 -238
+rect -741 -278 -549 -272
+rect -483 -238 -291 -232
+rect -483 -272 -471 -238
+rect -303 -272 -291 -238
+rect -483 -278 -291 -272
+rect -225 -238 -33 -232
+rect -225 -272 -213 -238
+rect -45 -272 -33 -238
+rect -225 -278 -33 -272
+rect 33 -238 225 -232
+rect 33 -272 45 -238
+rect 213 -272 225 -238
+rect 33 -278 225 -272
+rect 291 -238 483 -232
+rect 291 -272 303 -238
+rect 471 -272 483 -238
+rect 291 -278 483 -272
+rect 549 -238 741 -232
+rect 549 -272 561 -238
+rect 729 -272 741 -238
+rect 549 -278 741 -272
+<< properties >>
+string FIXED_BBOX -888 -357 888 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 1 m 1 nf 6 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.ext b/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.ext
new file mode 100644
index 0000000..5a521fb
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.ext
@@ -0,0 +1,13 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_100_n50#" 248 59.2452 100 -50 ndif 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n158_n50#" 248 59.2452 -158 -50 ndif 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n100_n138#" 247 630.237 -100 -138 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 55200 952 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+substrate "a_n260_n224#" 0 0 -260 -224 ppd 0 0 0 0 0 0 0 0 0 0 61200 3600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61200 3600 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n158_n50#" "a_100_n50#" 30.9057
+device msubckt sky130_fd_pr__nfet_01v8 -100 -50 -99 -49 l=200 w=100 "a_n260_n224#" "a_n100_n138#" 400 0 "a_n158_n50#" 100 0 "a_100_n50#" 100 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.mag b/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.mag
new file mode 100644
index 0000000..b03bd72
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_CDW43Z.mag
@@ -0,0 +1,90 @@
+magic
+tech sky130A
+timestamp 1647868710
+<< pwell >>
+rect -148 -130 148 130
+<< nmos >>
+rect -50 -25 50 25
+<< ndiff >>
+rect -79 19 -50 25
+rect -79 -19 -73 19
+rect -56 -19 -50 19
+rect -79 -25 -50 -19
+rect 50 19 79 25
+rect 50 -19 56 19
+rect 73 -19 79 19
+rect 50 -25 79 -19
+<< ndiffc >>
+rect -73 -19 -56 19
+rect 56 -19 73 19
+<< psubdiff >>
+rect -130 95 -82 112
+rect 82 95 130 112
+rect -130 64 -113 95
+rect 113 64 130 95
+rect -130 -95 -113 -64
+rect 113 -95 130 -64
+rect -130 -112 -82 -95
+rect 82 -112 130 -95
+<< psubdiffcont >>
+rect -82 95 82 112
+rect -130 -64 -113 64
+rect 113 -64 130 64
+rect -82 -112 82 -95
+<< poly >>
+rect -50 61 50 69
+rect -50 44 -42 61
+rect 42 44 50 61
+rect -50 25 50 44
+rect -50 -44 50 -25
+rect -50 -61 -42 -44
+rect 42 -61 50 -44
+rect -50 -69 50 -61
+<< polycont >>
+rect -42 44 42 61
+rect -42 -61 42 -44
+<< locali >>
+rect -130 95 -82 112
+rect 82 95 130 112
+rect -130 64 -113 95
+rect 113 64 130 95
+rect -50 44 -42 61
+rect 42 44 50 61
+rect -73 19 -56 27
+rect -73 -27 -56 -19
+rect 56 19 73 27
+rect 56 -27 73 -19
+rect -50 -61 -42 -44
+rect 42 -61 50 -44
+rect -130 -95 -113 -64
+rect 113 -95 130 -64
+rect -130 -112 -82 -95
+rect 82 -112 130 -95
+<< viali >>
+rect -42 44 42 61
+rect -73 -19 -56 19
+rect 56 -19 73 19
+rect -42 -61 42 -44
+<< metal1 >>
+rect -48 61 48 64
+rect -48 44 -42 61
+rect 42 44 48 61
+rect -48 41 48 44
+rect -76 19 -53 25
+rect -76 -19 -73 19
+rect -56 -19 -53 19
+rect -76 -25 -53 -19
+rect 53 19 76 25
+rect 53 -19 56 19
+rect 73 -19 76 19
+rect 53 -25 76 -19
+rect -48 -44 48 -41
+rect -48 -61 -42 -44
+rect 42 -61 48 -44
+rect -48 -64 48 -61
+<< properties >>
+string FIXED_BBOX -121 -103 121 103
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 0.5 l 1 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.ext b/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.ext
new file mode 100644
index 0000000..b5f1830
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.ext
@@ -0,0 +1,102 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_543_n200#" 929 163.557 543 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_447_n200#" 882 20.3377 447 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_351_n200#" 882 20.3377 351 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_255_n200#" 882 20.3377 255 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n200#" 882 20.3377 159 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_63_n200#" 882 20.3377 63 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n200#" 882 20.3377 -33 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n200#" 882 20.3377 -129 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n200#" 882 20.3377 -225 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n200#" 882 20.3377 -321 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n200#" 882 20.3377 -417 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n200#" 882 20.3377 -513 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n605_n200#" 929 163.598 -605 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n288#" 837 126.676 399 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_495_222#" 837 143.434 495 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_207_n288#" 837 106.785 207 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_303_222#" 837 106.785 303 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_15_n288#" 837 106.785 15 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_111_222#" 837 106.785 111 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n288#" 837 106.785 -177 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n81_222#" 837 106.785 -81 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n288#" 837 106.785 -369 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n273_222#" 837 106.785 -273 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n288#" 837 143.688 -561 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n465_222#" 837 126.93 -465 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n707_n374#" 0 0 -707 -374 ppd 0 0 0 0 0 0 0 0 0 0 142392 8376 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 142392 8376 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n81_222#" "a_n129_n200#" 6.25956
+cap "a_303_222#" "a_351_n200#" 6.25956
+cap "a_495_222#" "a_447_n200#" 6.25956
+cap "a_15_n288#" "a_111_222#" 14.1667
+cap "a_351_n200#" "a_399_n288#" 6.25956
+cap "a_n369_n288#" "a_n177_n288#" 28.5878
+cap "a_n273_222#" "a_n321_n200#" 6.25956
+cap "a_15_n288#" "a_n177_n288#" 28.5878
+cap "a_n129_n200#" "a_n33_n200#" 479.458
+cap "a_159_n200#" "a_255_n200#" 479.458
+cap "a_n465_222#" "a_n273_222#" 28.5878
+cap "a_303_222#" "a_111_222#" 28.5878
+cap "a_15_n288#" "a_207_n288#" 28.5878
+cap "a_n81_222#" "a_111_222#" 28.5878
+cap "a_n513_n200#" "a_n417_n200#" 479.458
+cap "a_n369_n288#" "a_n321_n200#" 6.25956
+cap "a_n81_222#" "a_n273_222#" 28.5878
+cap "a_207_n288#" "a_255_n200#" 6.25956
+cap "a_399_n288#" "a_447_n200#" 6.25956
+cap "a_n465_222#" "a_n369_n288#" 14.1667
+cap "a_n129_n200#" "a_n225_n200#" 479.458
+cap "a_n33_n200#" "a_63_n200#" 479.458
+cap "a_303_222#" "a_207_n288#" 14.1667
+cap "a_n81_222#" "a_n177_n288#" 14.1667
+cap "a_303_222#" "a_495_222#" 28.5878
+cap "a_207_n288#" "a_399_n288#" 28.5878
+cap "a_495_222#" "a_399_n288#" 14.1667
+cap "a_n561_n288#" "a_n369_n288#" 28.5878
+cap "a_15_n288#" "a_n81_222#" 14.1667
+cap "a_303_222#" "a_255_n200#" 6.25956
+cap "a_n129_n200#" "a_n177_n288#" 6.25956
+cap "a_447_n200#" "a_543_n200#" 479.458
+cap "a_n273_222#" "a_n225_n200#" 6.25956
+cap "a_351_n200#" "a_447_n200#" 479.458
+cap "a_n561_n288#" "a_n605_n200#" 6.25956
+cap "a_303_222#" "a_399_n288#" 14.1667
+cap "a_n561_n288#" "a_n465_222#" 14.1667
+cap "a_111_222#" "a_63_n200#" 6.25956
+cap "a_15_n288#" "a_n33_n200#" 6.25956
+cap "a_n225_n200#" "a_n177_n288#" 6.25956
+cap "a_159_n200#" "a_63_n200#" 479.458
+cap "a_495_222#" "a_543_n200#" 6.25956
+cap "a_159_n200#" "a_111_222#" 6.25956
+cap "a_n369_n288#" "a_n417_n200#" 6.25956
+cap "a_n465_222#" "a_n513_n200#" 6.25956
+cap "a_n605_n200#" "a_n513_n200#" 479.458
+cap "a_n273_222#" "a_n177_n288#" 14.1667
+cap "a_111_222#" "a_207_n288#" 14.1667
+cap "a_n321_n200#" "a_n225_n200#" 479.458
+cap "a_n321_n200#" "a_n417_n200#" 479.458
+cap "a_n81_222#" "a_n33_n200#" 6.25956
+cap "a_159_n200#" "a_207_n288#" 6.25956
+cap "a_351_n200#" "a_255_n200#" 479.458
+cap "a_n561_n288#" "a_n513_n200#" 6.25956
+cap "a_15_n288#" "a_63_n200#" 6.25956
+cap "a_n465_222#" "a_n417_n200#" 6.25956
+cap "a_n273_222#" "a_n369_n288#" 14.1667
+device msubckt sky130_fd_pr__nfet_01v8 513 -200 514 -199 l=30 w=400 "a_n707_n374#" "a_495_222#" 60 0 "a_447_n200#" 400 0 "a_543_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 417 -200 418 -199 l=30 w=400 "a_n707_n374#" "a_399_n288#" 60 0 "a_351_n200#" 400 0 "a_447_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 321 -200 322 -199 l=30 w=400 "a_n707_n374#" "a_303_222#" 60 0 "a_255_n200#" 400 0 "a_351_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 225 -200 226 -199 l=30 w=400 "a_n707_n374#" "a_207_n288#" 60 0 "a_159_n200#" 400 0 "a_255_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 129 -200 130 -199 l=30 w=400 "a_n707_n374#" "a_111_222#" 60 0 "a_63_n200#" 400 0 "a_159_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 33 -200 34 -199 l=30 w=400 "a_n707_n374#" "a_15_n288#" 60 0 "a_n33_n200#" 400 0 "a_63_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -63 -200 -62 -199 l=30 w=400 "a_n707_n374#" "a_n81_222#" 60 0 "a_n129_n200#" 400 0 "a_n33_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -159 -200 -158 -199 l=30 w=400 "a_n707_n374#" "a_n177_n288#" 60 0 "a_n225_n200#" 400 0 "a_n129_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -255 -200 -254 -199 l=30 w=400 "a_n707_n374#" "a_n273_222#" 60 0 "a_n321_n200#" 400 0 "a_n225_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -351 -200 -350 -199 l=30 w=400 "a_n707_n374#" "a_n369_n288#" 60 0 "a_n417_n200#" 400 0 "a_n321_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -447 -200 -446 -199 l=30 w=400 "a_n707_n374#" "a_n465_222#" 60 0 "a_n513_n200#" 400 0 "a_n417_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -543 -200 -542 -199 l=30 w=400 "a_n707_n374#" "a_n561_n288#" 60 0 "a_n605_n200#" 400 0 "a_n513_n200#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.mag b/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.mag
new file mode 100644
index 0000000..bc76037
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_F8VELN.mag
@@ -0,0 +1,415 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -461 272 -403 278
+rect -269 272 -211 278
+rect -77 272 -19 278
+rect 115 272 173 278
+rect 307 272 365 278
+rect 499 272 557 278
+rect -461 238 -449 272
+rect -269 238 -257 272
+rect -77 238 -65 272
+rect 115 238 127 272
+rect 307 238 319 272
+rect 499 238 511 272
+rect -461 232 -403 238
+rect -269 232 -211 238
+rect -77 232 -19 238
+rect 115 232 173 238
+rect 307 232 365 238
+rect 499 232 557 238
+rect -557 -238 -499 -232
+rect -365 -238 -307 -232
+rect -173 -238 -115 -232
+rect 19 -238 77 -232
+rect 211 -238 269 -232
+rect 403 -238 461 -232
+rect -557 -272 -545 -238
+rect -365 -272 -353 -238
+rect -173 -272 -161 -238
+rect 19 -272 31 -238
+rect 211 -272 223 -238
+rect 403 -272 415 -238
+rect -557 -278 -499 -272
+rect -365 -278 -307 -272
+rect -173 -278 -115 -272
+rect 19 -278 77 -272
+rect 211 -278 269 -272
+rect 403 -278 461 -272
+<< pwell >>
+rect -743 -410 743 410
+<< nmos >>
+rect -543 -200 -513 200
+rect -447 -200 -417 200
+rect -351 -200 -321 200
+rect -255 -200 -225 200
+rect -159 -200 -129 200
+rect -63 -200 -33 200
+rect 33 -200 63 200
+rect 129 -200 159 200
+rect 225 -200 255 200
+rect 321 -200 351 200
+rect 417 -200 447 200
+rect 513 -200 543 200
+<< ndiff >>
+rect -605 188 -543 200
+rect -605 -188 -593 188
+rect -559 -188 -543 188
+rect -605 -200 -543 -188
+rect -513 188 -447 200
+rect -513 -188 -497 188
+rect -463 -188 -447 188
+rect -513 -200 -447 -188
+rect -417 188 -351 200
+rect -417 -188 -401 188
+rect -367 -188 -351 188
+rect -417 -200 -351 -188
+rect -321 188 -255 200
+rect -321 -188 -305 188
+rect -271 -188 -255 188
+rect -321 -200 -255 -188
+rect -225 188 -159 200
+rect -225 -188 -209 188
+rect -175 -188 -159 188
+rect -225 -200 -159 -188
+rect -129 188 -63 200
+rect -129 -188 -113 188
+rect -79 -188 -63 188
+rect -129 -200 -63 -188
+rect -33 188 33 200
+rect -33 -188 -17 188
+rect 17 -188 33 188
+rect -33 -200 33 -188
+rect 63 188 129 200
+rect 63 -188 79 188
+rect 113 -188 129 188
+rect 63 -200 129 -188
+rect 159 188 225 200
+rect 159 -188 175 188
+rect 209 -188 225 188
+rect 159 -200 225 -188
+rect 255 188 321 200
+rect 255 -188 271 188
+rect 305 -188 321 188
+rect 255 -200 321 -188
+rect 351 188 417 200
+rect 351 -188 367 188
+rect 401 -188 417 188
+rect 351 -200 417 -188
+rect 447 188 513 200
+rect 447 -188 463 188
+rect 497 -188 513 188
+rect 447 -200 513 -188
+rect 543 188 605 200
+rect 543 -188 559 188
+rect 593 -188 605 188
+rect 543 -200 605 -188
+<< ndiffc >>
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+<< psubdiff >>
+rect -707 340 -611 374
+rect 611 340 707 374
+rect -707 278 -673 340
+rect 673 278 707 340
+rect -707 -340 -673 -278
+rect 673 -340 707 -278
+rect -707 -374 -611 -340
+rect 611 -374 707 -340
+<< psubdiffcont >>
+rect -611 340 611 374
+rect -707 -278 -673 278
+rect 673 -278 707 278
+rect -611 -374 611 -340
+<< poly >>
+rect -465 272 -399 288
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -543 200 -513 226
+rect -465 222 -399 238
+rect -273 272 -207 288
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -447 200 -417 222
+rect -351 200 -321 226
+rect -273 222 -207 238
+rect -81 272 -15 288
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect -255 200 -225 222
+rect -159 200 -129 226
+rect -81 222 -15 238
+rect 111 272 177 288
+rect 111 238 127 272
+rect 161 238 177 272
+rect -63 200 -33 222
+rect 33 200 63 226
+rect 111 222 177 238
+rect 303 272 369 288
+rect 303 238 319 272
+rect 353 238 369 272
+rect 129 200 159 222
+rect 225 200 255 226
+rect 303 222 369 238
+rect 495 272 561 288
+rect 495 238 511 272
+rect 545 238 561 272
+rect 321 200 351 222
+rect 417 200 447 226
+rect 495 222 561 238
+rect 513 200 543 222
+rect -543 -222 -513 -200
+rect -561 -238 -495 -222
+rect -447 -226 -417 -200
+rect -351 -222 -321 -200
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -561 -288 -495 -272
+rect -369 -238 -303 -222
+rect -255 -226 -225 -200
+rect -159 -222 -129 -200
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -369 -288 -303 -272
+rect -177 -238 -111 -222
+rect -63 -226 -33 -200
+rect 33 -222 63 -200
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect -177 -288 -111 -272
+rect 15 -238 81 -222
+rect 129 -226 159 -200
+rect 225 -222 255 -200
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 15 -288 81 -272
+rect 207 -238 273 -222
+rect 321 -226 351 -200
+rect 417 -222 447 -200
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 207 -288 273 -272
+rect 399 -238 465 -222
+rect 513 -226 543 -200
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect 399 -288 465 -272
+<< polycont >>
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+<< locali >>
+rect -707 340 -611 374
+rect 611 340 707 374
+rect -707 278 -673 340
+rect 673 278 707 340
+rect -465 238 -449 272
+rect -415 238 -399 272
+rect -273 238 -257 272
+rect -223 238 -207 272
+rect -81 238 -65 272
+rect -31 238 -15 272
+rect 111 238 127 272
+rect 161 238 177 272
+rect 303 238 319 272
+rect 353 238 369 272
+rect 495 238 511 272
+rect 545 238 561 272
+rect -593 188 -559 204
+rect -593 -204 -559 -188
+rect -497 188 -463 204
+rect -497 -204 -463 -188
+rect -401 188 -367 204
+rect -401 -204 -367 -188
+rect -305 188 -271 204
+rect -305 -204 -271 -188
+rect -209 188 -175 204
+rect -209 -204 -175 -188
+rect -113 188 -79 204
+rect -113 -204 -79 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 79 188 113 204
+rect 79 -204 113 -188
+rect 175 188 209 204
+rect 175 -204 209 -188
+rect 271 188 305 204
+rect 271 -204 305 -188
+rect 367 188 401 204
+rect 367 -204 401 -188
+rect 463 188 497 204
+rect 463 -204 497 -188
+rect 559 188 593 204
+rect 559 -204 593 -188
+rect -561 -272 -545 -238
+rect -511 -272 -495 -238
+rect -369 -272 -353 -238
+rect -319 -272 -303 -238
+rect -177 -272 -161 -238
+rect -127 -272 -111 -238
+rect 15 -272 31 -238
+rect 65 -272 81 -238
+rect 207 -272 223 -238
+rect 257 -272 273 -238
+rect 399 -272 415 -238
+rect 449 -272 465 -238
+rect -707 -340 -673 -278
+rect 673 -340 707 -278
+rect -707 -374 -611 -340
+rect 611 -374 707 -340
+<< viali >>
+rect -449 238 -415 272
+rect -257 238 -223 272
+rect -65 238 -31 272
+rect 127 238 161 272
+rect 319 238 353 272
+rect 511 238 545 272
+rect -593 -188 -559 188
+rect -497 -188 -463 188
+rect -401 -188 -367 188
+rect -305 -188 -271 188
+rect -209 -188 -175 188
+rect -113 -188 -79 188
+rect -17 -188 17 188
+rect 79 -188 113 188
+rect 175 -188 209 188
+rect 271 -188 305 188
+rect 367 -188 401 188
+rect 463 -188 497 188
+rect 559 -188 593 188
+rect -545 -272 -511 -238
+rect -353 -272 -319 -238
+rect -161 -272 -127 -238
+rect 31 -272 65 -238
+rect 223 -272 257 -238
+rect 415 -272 449 -238
+<< metal1 >>
+rect -461 272 -403 278
+rect -461 238 -449 272
+rect -415 238 -403 272
+rect -461 232 -403 238
+rect -269 272 -211 278
+rect -269 238 -257 272
+rect -223 238 -211 272
+rect -269 232 -211 238
+rect -77 272 -19 278
+rect -77 238 -65 272
+rect -31 238 -19 272
+rect -77 232 -19 238
+rect 115 272 173 278
+rect 115 238 127 272
+rect 161 238 173 272
+rect 115 232 173 238
+rect 307 272 365 278
+rect 307 238 319 272
+rect 353 238 365 272
+rect 307 232 365 238
+rect 499 272 557 278
+rect 499 238 511 272
+rect 545 238 557 272
+rect 499 232 557 238
+rect -599 188 -553 200
+rect -599 -188 -593 188
+rect -559 -188 -553 188
+rect -599 -200 -553 -188
+rect -503 188 -457 200
+rect -503 -188 -497 188
+rect -463 -188 -457 188
+rect -503 -200 -457 -188
+rect -407 188 -361 200
+rect -407 -188 -401 188
+rect -367 -188 -361 188
+rect -407 -200 -361 -188
+rect -311 188 -265 200
+rect -311 -188 -305 188
+rect -271 -188 -265 188
+rect -311 -200 -265 -188
+rect -215 188 -169 200
+rect -215 -188 -209 188
+rect -175 -188 -169 188
+rect -215 -200 -169 -188
+rect -119 188 -73 200
+rect -119 -188 -113 188
+rect -79 -188 -73 188
+rect -119 -200 -73 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 73 188 119 200
+rect 73 -188 79 188
+rect 113 -188 119 188
+rect 73 -200 119 -188
+rect 169 188 215 200
+rect 169 -188 175 188
+rect 209 -188 215 188
+rect 169 -200 215 -188
+rect 265 188 311 200
+rect 265 -188 271 188
+rect 305 -188 311 188
+rect 265 -200 311 -188
+rect 361 188 407 200
+rect 361 -188 367 188
+rect 401 -188 407 188
+rect 361 -200 407 -188
+rect 457 188 503 200
+rect 457 -188 463 188
+rect 497 -188 503 188
+rect 457 -200 503 -188
+rect 553 188 599 200
+rect 553 -188 559 188
+rect 593 -188 599 188
+rect 553 -200 599 -188
+rect -557 -238 -499 -232
+rect -557 -272 -545 -238
+rect -511 -272 -499 -238
+rect -557 -278 -499 -272
+rect -365 -238 -307 -232
+rect -365 -272 -353 -238
+rect -319 -272 -307 -238
+rect -365 -278 -307 -272
+rect -173 -238 -115 -232
+rect -173 -272 -161 -238
+rect -127 -272 -115 -238
+rect -173 -278 -115 -272
+rect 19 -238 77 -232
+rect 19 -272 31 -238
+rect 65 -272 77 -238
+rect 19 -278 77 -272
+rect 211 -238 269 -232
+rect 211 -272 223 -238
+rect 257 -272 269 -238
+rect 211 -278 269 -272
+rect 403 -238 461 -232
+rect 403 -272 415 -238
+rect 449 -272 461 -238
+rect 403 -278 461 -272
+<< properties >>
+string FIXED_BBOX -690 -357 690 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 12 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_GCG47N.mag b/mag/tia/sky130_fd_pr__nfet_01v8_GCG47N.mag
new file mode 100644
index 0000000..d0ddb30
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_GCG47N.mag
@@ -0,0 +1,276 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645789405
+<< pwell >>
+rect -941 -810 941 810
+<< nmos >>
+rect -745 -600 -545 600
+rect -487 -600 -287 600
+rect -229 -600 -29 600
+rect 29 -600 229 600
+rect 287 -600 487 600
+rect 545 -600 745 600
+<< ndiff >>
+rect -803 588 -745 600
+rect -803 -588 -791 588
+rect -757 -588 -745 588
+rect -803 -600 -745 -588
+rect -545 588 -487 600
+rect -545 -588 -533 588
+rect -499 -588 -487 588
+rect -545 -600 -487 -588
+rect -287 588 -229 600
+rect -287 -588 -275 588
+rect -241 -588 -229 588
+rect -287 -600 -229 -588
+rect -29 588 29 600
+rect -29 -588 -17 588
+rect 17 -588 29 588
+rect -29 -600 29 -588
+rect 229 588 287 600
+rect 229 -588 241 588
+rect 275 -588 287 588
+rect 229 -600 287 -588
+rect 487 588 545 600
+rect 487 -588 499 588
+rect 533 -588 545 588
+rect 487 -600 545 -588
+rect 745 588 803 600
+rect 745 -588 757 588
+rect 791 -588 803 588
+rect 745 -600 803 -588
+<< ndiffc >>
+rect -791 -588 -757 588
+rect -533 -588 -499 588
+rect -275 -588 -241 588
+rect -17 -588 17 588
+rect 241 -588 275 588
+rect 499 -588 533 588
+rect 757 -588 791 588
+<< psubdiff >>
+rect -905 740 -809 774
+rect 809 740 905 774
+rect -905 678 -871 740
+rect 871 678 905 740
+rect -905 -740 -871 -678
+rect 871 -740 905 -678
+rect -905 -774 -809 -740
+rect 809 -774 905 -740
+<< psubdiffcont >>
+rect -809 740 809 774
+rect -905 -678 -871 678
+rect 871 -678 905 678
+rect -809 -774 809 -740
+<< poly >>
+rect -745 672 -545 688
+rect -745 638 -729 672
+rect -561 638 -545 672
+rect -745 600 -545 638
+rect -487 672 -287 688
+rect -487 638 -471 672
+rect -303 638 -287 672
+rect -487 600 -287 638
+rect -229 672 -29 688
+rect -229 638 -213 672
+rect -45 638 -29 672
+rect -229 600 -29 638
+rect 29 672 229 688
+rect 29 638 45 672
+rect 213 638 229 672
+rect 29 600 229 638
+rect 287 672 487 688
+rect 287 638 303 672
+rect 471 638 487 672
+rect 287 600 487 638
+rect 545 672 745 688
+rect 545 638 561 672
+rect 729 638 745 672
+rect 545 600 745 638
+rect -745 -638 -545 -600
+rect -745 -672 -729 -638
+rect -561 -672 -545 -638
+rect -745 -688 -545 -672
+rect -487 -638 -287 -600
+rect -487 -672 -471 -638
+rect -303 -672 -287 -638
+rect -487 -688 -287 -672
+rect -229 -638 -29 -600
+rect -229 -672 -213 -638
+rect -45 -672 -29 -638
+rect -229 -688 -29 -672
+rect 29 -638 229 -600
+rect 29 -672 45 -638
+rect 213 -672 229 -638
+rect 29 -688 229 -672
+rect 287 -638 487 -600
+rect 287 -672 303 -638
+rect 471 -672 487 -638
+rect 287 -688 487 -672
+rect 545 -638 745 -600
+rect 545 -672 561 -638
+rect 729 -672 745 -638
+rect 545 -688 745 -672
+<< polycont >>
+rect -729 638 -561 672
+rect -471 638 -303 672
+rect -213 638 -45 672
+rect 45 638 213 672
+rect 303 638 471 672
+rect 561 638 729 672
+rect -729 -672 -561 -638
+rect -471 -672 -303 -638
+rect -213 -672 -45 -638
+rect 45 -672 213 -638
+rect 303 -672 471 -638
+rect 561 -672 729 -638
+<< locali >>
+rect -905 740 -809 774
+rect 809 740 905 774
+rect -905 678 -871 740
+rect 871 678 905 740
+rect -745 638 -729 672
+rect -561 638 -545 672
+rect -487 638 -471 672
+rect -303 638 -287 672
+rect -229 638 -213 672
+rect -45 638 -29 672
+rect 29 638 45 672
+rect 213 638 229 672
+rect 287 638 303 672
+rect 471 638 487 672
+rect 545 638 561 672
+rect 729 638 745 672
+rect -791 588 -757 604
+rect -791 -604 -757 -588
+rect -533 588 -499 604
+rect -533 -604 -499 -588
+rect -275 588 -241 604
+rect -275 -604 -241 -588
+rect -17 588 17 604
+rect -17 -604 17 -588
+rect 241 588 275 604
+rect 241 -604 275 -588
+rect 499 588 533 604
+rect 499 -604 533 -588
+rect 757 588 791 604
+rect 757 -604 791 -588
+rect -745 -672 -729 -638
+rect -561 -672 -545 -638
+rect -487 -672 -471 -638
+rect -303 -672 -287 -638
+rect -229 -672 -213 -638
+rect -45 -672 -29 -638
+rect 29 -672 45 -638
+rect 213 -672 229 -638
+rect 287 -672 303 -638
+rect 471 -672 487 -638
+rect 545 -672 561 -638
+rect 729 -672 745 -638
+rect -905 -740 -871 -678
+rect 871 -740 905 -678
+rect -905 -774 -809 -740
+rect 809 -774 905 -740
+<< viali >>
+rect -729 638 -561 672
+rect -471 638 -303 672
+rect -213 638 -45 672
+rect 45 638 213 672
+rect 303 638 471 672
+rect 561 638 729 672
+rect -791 -588 -757 588
+rect -533 -588 -499 588
+rect -275 -588 -241 588
+rect -17 -588 17 588
+rect 241 -588 275 588
+rect 499 -588 533 588
+rect 757 -588 791 588
+rect -729 -672 -561 -638
+rect -471 -672 -303 -638
+rect -213 -672 -45 -638
+rect 45 -672 213 -638
+rect 303 -672 471 -638
+rect 561 -672 729 -638
+<< metal1 >>
+rect -741 672 -549 678
+rect -741 638 -729 672
+rect -561 638 -549 672
+rect -741 632 -549 638
+rect -483 672 -291 678
+rect -483 638 -471 672
+rect -303 638 -291 672
+rect -483 632 -291 638
+rect -225 672 -33 678
+rect -225 638 -213 672
+rect -45 638 -33 672
+rect -225 632 -33 638
+rect 33 672 225 678
+rect 33 638 45 672
+rect 213 638 225 672
+rect 33 632 225 638
+rect 291 672 483 678
+rect 291 638 303 672
+rect 471 638 483 672
+rect 291 632 483 638
+rect 549 672 741 678
+rect 549 638 561 672
+rect 729 638 741 672
+rect 549 632 741 638
+rect -797 588 -751 600
+rect -797 -588 -791 588
+rect -757 -588 -751 588
+rect -797 -600 -751 -588
+rect -539 588 -493 600
+rect -539 -588 -533 588
+rect -499 -588 -493 588
+rect -539 -600 -493 -588
+rect -281 588 -235 600
+rect -281 -588 -275 588
+rect -241 -588 -235 588
+rect -281 -600 -235 -588
+rect -23 588 23 600
+rect -23 -588 -17 588
+rect 17 -588 23 588
+rect -23 -600 23 -588
+rect 235 588 281 600
+rect 235 -588 241 588
+rect 275 -588 281 588
+rect 235 -600 281 -588
+rect 493 588 539 600
+rect 493 -588 499 588
+rect 533 -588 539 588
+rect 493 -600 539 -588
+rect 751 588 797 600
+rect 751 -588 757 588
+rect 791 -588 797 588
+rect 751 -600 797 -588
+rect -741 -638 -549 -632
+rect -741 -672 -729 -638
+rect -561 -672 -549 -638
+rect -741 -678 -549 -672
+rect -483 -638 -291 -632
+rect -483 -672 -471 -638
+rect -303 -672 -291 -638
+rect -483 -678 -291 -672
+rect -225 -638 -33 -632
+rect -225 -672 -213 -638
+rect -45 -672 -33 -638
+rect -225 -678 -33 -672
+rect 33 -638 225 -632
+rect 33 -672 45 -638
+rect 213 -672 225 -638
+rect 33 -678 225 -672
+rect 291 -638 483 -632
+rect 291 -672 303 -638
+rect 471 -672 483 -638
+rect 291 -678 483 -672
+rect 549 -638 741 -632
+rect 549 -672 561 -638
+rect 729 -672 741 -638
+rect 549 -678 741 -672
+<< properties >>
+string FIXED_BBOX -888 -757 888 757
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 6 l 1 m 1 nf 6 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_H9U3RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_H9U3RB.mag
new file mode 100644
index 0000000..1cfd442
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_H9U3RB.mag
@@ -0,0 +1,805 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645787783
+<< error_p >>
+rect -1107 272 -1049 278
+rect -911 272 -853 278
+rect -715 272 -657 278
+rect -519 272 -461 278
+rect -323 272 -265 278
+rect -127 272 -69 278
+rect 69 272 127 278
+rect 265 272 323 278
+rect 461 272 519 278
+rect 657 272 715 278
+rect 853 272 911 278
+rect 1049 272 1107 278
+rect -1107 238 -1095 272
+rect -911 238 -899 272
+rect -715 238 -703 272
+rect -519 238 -507 272
+rect -323 238 -311 272
+rect -127 238 -115 272
+rect 69 238 81 272
+rect 265 238 277 272
+rect 461 238 473 272
+rect 657 238 669 272
+rect 853 238 865 272
+rect 1049 238 1061 272
+rect -1107 232 -1049 238
+rect -911 232 -853 238
+rect -715 232 -657 238
+rect -519 232 -461 238
+rect -323 232 -265 238
+rect -127 232 -69 238
+rect 69 232 127 238
+rect 265 232 323 238
+rect 461 232 519 238
+rect 657 232 715 238
+rect 853 232 911 238
+rect 1049 232 1107 238
+rect -1205 -238 -1147 -232
+rect -1009 -238 -951 -232
+rect -813 -238 -755 -232
+rect -617 -238 -559 -232
+rect -421 -238 -363 -232
+rect -225 -238 -167 -232
+rect -29 -238 29 -232
+rect 167 -238 225 -232
+rect 363 -238 421 -232
+rect 559 -238 617 -232
+rect 755 -238 813 -232
+rect 951 -238 1009 -232
+rect 1147 -238 1205 -232
+rect -1205 -272 -1193 -238
+rect -1009 -272 -997 -238
+rect -813 -272 -801 -238
+rect -617 -272 -605 -238
+rect -421 -272 -409 -238
+rect -225 -272 -213 -238
+rect -29 -272 -17 -238
+rect 167 -272 179 -238
+rect 363 -272 375 -238
+rect 559 -272 571 -238
+rect 755 -272 767 -238
+rect 951 -272 963 -238
+rect 1147 -272 1159 -238
+rect -1205 -278 -1147 -272
+rect -1009 -278 -951 -272
+rect -813 -278 -755 -272
+rect -617 -278 -559 -272
+rect -421 -278 -363 -272
+rect -225 -278 -167 -272
+rect -29 -278 29 -272
+rect 167 -278 225 -272
+rect 363 -278 421 -272
+rect 559 -278 617 -272
+rect 755 -278 813 -272
+rect 951 -278 1009 -272
+rect 1147 -278 1205 -272
+<< pwell >>
+rect -1392 -410 1392 410
+<< nmos >>
+rect -1196 -200 -1156 200
+rect -1098 -200 -1058 200
+rect -1000 -200 -960 200
+rect -902 -200 -862 200
+rect -804 -200 -764 200
+rect -706 -200 -666 200
+rect -608 -200 -568 200
+rect -510 -200 -470 200
+rect -412 -200 -372 200
+rect -314 -200 -274 200
+rect -216 -200 -176 200
+rect -118 -200 -78 200
+rect -20 -200 20 200
+rect 78 -200 118 200
+rect 176 -200 216 200
+rect 274 -200 314 200
+rect 372 -200 412 200
+rect 470 -200 510 200
+rect 568 -200 608 200
+rect 666 -200 706 200
+rect 764 -200 804 200
+rect 862 -200 902 200
+rect 960 -200 1000 200
+rect 1058 -200 1098 200
+rect 1156 -200 1196 200
+<< ndiff >>
+rect -1254 188 -1196 200
+rect -1254 -188 -1242 188
+rect -1208 -188 -1196 188
+rect -1254 -200 -1196 -188
+rect -1156 188 -1098 200
+rect -1156 -188 -1144 188
+rect -1110 -188 -1098 188
+rect -1156 -200 -1098 -188
+rect -1058 188 -1000 200
+rect -1058 -188 -1046 188
+rect -1012 -188 -1000 188
+rect -1058 -200 -1000 -188
+rect -960 188 -902 200
+rect -960 -188 -948 188
+rect -914 -188 -902 188
+rect -960 -200 -902 -188
+rect -862 188 -804 200
+rect -862 -188 -850 188
+rect -816 -188 -804 188
+rect -862 -200 -804 -188
+rect -764 188 -706 200
+rect -764 -188 -752 188
+rect -718 -188 -706 188
+rect -764 -200 -706 -188
+rect -666 188 -608 200
+rect -666 -188 -654 188
+rect -620 -188 -608 188
+rect -666 -200 -608 -188
+rect -568 188 -510 200
+rect -568 -188 -556 188
+rect -522 -188 -510 188
+rect -568 -200 -510 -188
+rect -470 188 -412 200
+rect -470 -188 -458 188
+rect -424 -188 -412 188
+rect -470 -200 -412 -188
+rect -372 188 -314 200
+rect -372 -188 -360 188
+rect -326 -188 -314 188
+rect -372 -200 -314 -188
+rect -274 188 -216 200
+rect -274 -188 -262 188
+rect -228 -188 -216 188
+rect -274 -200 -216 -188
+rect -176 188 -118 200
+rect -176 -188 -164 188
+rect -130 -188 -118 188
+rect -176 -200 -118 -188
+rect -78 188 -20 200
+rect -78 -188 -66 188
+rect -32 -188 -20 188
+rect -78 -200 -20 -188
+rect 20 188 78 200
+rect 20 -188 32 188
+rect 66 -188 78 188
+rect 20 -200 78 -188
+rect 118 188 176 200
+rect 118 -188 130 188
+rect 164 -188 176 188
+rect 118 -200 176 -188
+rect 216 188 274 200
+rect 216 -188 228 188
+rect 262 -188 274 188
+rect 216 -200 274 -188
+rect 314 188 372 200
+rect 314 -188 326 188
+rect 360 -188 372 188
+rect 314 -200 372 -188
+rect 412 188 470 200
+rect 412 -188 424 188
+rect 458 -188 470 188
+rect 412 -200 470 -188
+rect 510 188 568 200
+rect 510 -188 522 188
+rect 556 -188 568 188
+rect 510 -200 568 -188
+rect 608 188 666 200
+rect 608 -188 620 188
+rect 654 -188 666 188
+rect 608 -200 666 -188
+rect 706 188 764 200
+rect 706 -188 718 188
+rect 752 -188 764 188
+rect 706 -200 764 -188
+rect 804 188 862 200
+rect 804 -188 816 188
+rect 850 -188 862 188
+rect 804 -200 862 -188
+rect 902 188 960 200
+rect 902 -188 914 188
+rect 948 -188 960 188
+rect 902 -200 960 -188
+rect 1000 188 1058 200
+rect 1000 -188 1012 188
+rect 1046 -188 1058 188
+rect 1000 -200 1058 -188
+rect 1098 188 1156 200
+rect 1098 -188 1110 188
+rect 1144 -188 1156 188
+rect 1098 -200 1156 -188
+rect 1196 188 1254 200
+rect 1196 -188 1208 188
+rect 1242 -188 1254 188
+rect 1196 -200 1254 -188
+<< ndiffc >>
+rect -1242 -188 -1208 188
+rect -1144 -188 -1110 188
+rect -1046 -188 -1012 188
+rect -948 -188 -914 188
+rect -850 -188 -816 188
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+rect 816 -188 850 188
+rect 914 -188 948 188
+rect 1012 -188 1046 188
+rect 1110 -188 1144 188
+rect 1208 -188 1242 188
+<< psubdiff >>
+rect -1356 340 -1260 374
+rect 1260 340 1356 374
+rect -1356 278 -1322 340
+rect 1322 278 1356 340
+rect -1356 -340 -1322 -278
+rect 1322 -340 1356 -278
+rect -1356 -374 -1260 -340
+rect 1260 -374 1356 -340
+<< psubdiffcont >>
+rect -1260 340 1260 374
+rect -1356 -278 -1322 278
+rect 1322 -278 1356 278
+rect -1260 -374 1260 -340
+<< poly >>
+rect -1111 272 -1045 288
+rect -1111 238 -1095 272
+rect -1061 238 -1045 272
+rect -1196 200 -1156 226
+rect -1111 222 -1045 238
+rect -915 272 -849 288
+rect -915 238 -899 272
+rect -865 238 -849 272
+rect -1098 200 -1058 222
+rect -1000 200 -960 226
+rect -915 222 -849 238
+rect -719 272 -653 288
+rect -719 238 -703 272
+rect -669 238 -653 272
+rect -902 200 -862 222
+rect -804 200 -764 226
+rect -719 222 -653 238
+rect -523 272 -457 288
+rect -523 238 -507 272
+rect -473 238 -457 272
+rect -706 200 -666 222
+rect -608 200 -568 226
+rect -523 222 -457 238
+rect -327 272 -261 288
+rect -327 238 -311 272
+rect -277 238 -261 272
+rect -510 200 -470 222
+rect -412 200 -372 226
+rect -327 222 -261 238
+rect -131 272 -65 288
+rect -131 238 -115 272
+rect -81 238 -65 272
+rect -314 200 -274 222
+rect -216 200 -176 226
+rect -131 222 -65 238
+rect 65 272 131 288
+rect 65 238 81 272
+rect 115 238 131 272
+rect -118 200 -78 222
+rect -20 200 20 226
+rect 65 222 131 238
+rect 261 272 327 288
+rect 261 238 277 272
+rect 311 238 327 272
+rect 78 200 118 222
+rect 176 200 216 226
+rect 261 222 327 238
+rect 457 272 523 288
+rect 457 238 473 272
+rect 507 238 523 272
+rect 274 200 314 222
+rect 372 200 412 226
+rect 457 222 523 238
+rect 653 272 719 288
+rect 653 238 669 272
+rect 703 238 719 272
+rect 470 200 510 222
+rect 568 200 608 226
+rect 653 222 719 238
+rect 849 272 915 288
+rect 849 238 865 272
+rect 899 238 915 272
+rect 666 200 706 222
+rect 764 200 804 226
+rect 849 222 915 238
+rect 1045 272 1111 288
+rect 1045 238 1061 272
+rect 1095 238 1111 272
+rect 862 200 902 222
+rect 960 200 1000 226
+rect 1045 222 1111 238
+rect 1058 200 1098 222
+rect 1156 200 1196 226
+rect -1196 -222 -1156 -200
+rect -1209 -238 -1143 -222
+rect -1098 -226 -1058 -200
+rect -1000 -222 -960 -200
+rect -1209 -272 -1193 -238
+rect -1159 -272 -1143 -238
+rect -1209 -288 -1143 -272
+rect -1013 -238 -947 -222
+rect -902 -226 -862 -200
+rect -804 -222 -764 -200
+rect -1013 -272 -997 -238
+rect -963 -272 -947 -238
+rect -1013 -288 -947 -272
+rect -817 -238 -751 -222
+rect -706 -226 -666 -200
+rect -608 -222 -568 -200
+rect -817 -272 -801 -238
+rect -767 -272 -751 -238
+rect -817 -288 -751 -272
+rect -621 -238 -555 -222
+rect -510 -226 -470 -200
+rect -412 -222 -372 -200
+rect -621 -272 -605 -238
+rect -571 -272 -555 -238
+rect -621 -288 -555 -272
+rect -425 -238 -359 -222
+rect -314 -226 -274 -200
+rect -216 -222 -176 -200
+rect -425 -272 -409 -238
+rect -375 -272 -359 -238
+rect -425 -288 -359 -272
+rect -229 -238 -163 -222
+rect -118 -226 -78 -200
+rect -20 -222 20 -200
+rect -229 -272 -213 -238
+rect -179 -272 -163 -238
+rect -229 -288 -163 -272
+rect -33 -238 33 -222
+rect 78 -226 118 -200
+rect 176 -222 216 -200
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+rect 163 -238 229 -222
+rect 274 -226 314 -200
+rect 372 -222 412 -200
+rect 163 -272 179 -238
+rect 213 -272 229 -238
+rect 163 -288 229 -272
+rect 359 -238 425 -222
+rect 470 -226 510 -200
+rect 568 -222 608 -200
+rect 359 -272 375 -238
+rect 409 -272 425 -238
+rect 359 -288 425 -272
+rect 555 -238 621 -222
+rect 666 -226 706 -200
+rect 764 -222 804 -200
+rect 555 -272 571 -238
+rect 605 -272 621 -238
+rect 555 -288 621 -272
+rect 751 -238 817 -222
+rect 862 -226 902 -200
+rect 960 -222 1000 -200
+rect 751 -272 767 -238
+rect 801 -272 817 -238
+rect 751 -288 817 -272
+rect 947 -238 1013 -222
+rect 1058 -226 1098 -200
+rect 1156 -222 1196 -200
+rect 947 -272 963 -238
+rect 997 -272 1013 -238
+rect 947 -288 1013 -272
+rect 1143 -238 1209 -222
+rect 1143 -272 1159 -238
+rect 1193 -272 1209 -238
+rect 1143 -288 1209 -272
+<< polycont >>
+rect -1095 238 -1061 272
+rect -899 238 -865 272
+rect -703 238 -669 272
+rect -507 238 -473 272
+rect -311 238 -277 272
+rect -115 238 -81 272
+rect 81 238 115 272
+rect 277 238 311 272
+rect 473 238 507 272
+rect 669 238 703 272
+rect 865 238 899 272
+rect 1061 238 1095 272
+rect -1193 -272 -1159 -238
+rect -997 -272 -963 -238
+rect -801 -272 -767 -238
+rect -605 -272 -571 -238
+rect -409 -272 -375 -238
+rect -213 -272 -179 -238
+rect -17 -272 17 -238
+rect 179 -272 213 -238
+rect 375 -272 409 -238
+rect 571 -272 605 -238
+rect 767 -272 801 -238
+rect 963 -272 997 -238
+rect 1159 -272 1193 -238
+<< locali >>
+rect -1356 340 -1260 374
+rect 1260 340 1356 374
+rect -1356 278 -1322 340
+rect 1322 278 1356 340
+rect -1111 238 -1095 272
+rect -1061 238 -1045 272
+rect -915 238 -899 272
+rect -865 238 -849 272
+rect -719 238 -703 272
+rect -669 238 -653 272
+rect -523 238 -507 272
+rect -473 238 -457 272
+rect -327 238 -311 272
+rect -277 238 -261 272
+rect -131 238 -115 272
+rect -81 238 -65 272
+rect 65 238 81 272
+rect 115 238 131 272
+rect 261 238 277 272
+rect 311 238 327 272
+rect 457 238 473 272
+rect 507 238 523 272
+rect 653 238 669 272
+rect 703 238 719 272
+rect 849 238 865 272
+rect 899 238 915 272
+rect 1045 238 1061 272
+rect 1095 238 1111 272
+rect -1242 188 -1208 204
+rect -1242 -204 -1208 -188
+rect -1144 188 -1110 204
+rect -1144 -204 -1110 -188
+rect -1046 188 -1012 204
+rect -1046 -204 -1012 -188
+rect -948 188 -914 204
+rect -948 -204 -914 -188
+rect -850 188 -816 204
+rect -850 -204 -816 -188
+rect -752 188 -718 204
+rect -752 -204 -718 -188
+rect -654 188 -620 204
+rect -654 -204 -620 -188
+rect -556 188 -522 204
+rect -556 -204 -522 -188
+rect -458 188 -424 204
+rect -458 -204 -424 -188
+rect -360 188 -326 204
+rect -360 -204 -326 -188
+rect -262 188 -228 204
+rect -262 -204 -228 -188
+rect -164 188 -130 204
+rect -164 -204 -130 -188
+rect -66 188 -32 204
+rect -66 -204 -32 -188
+rect 32 188 66 204
+rect 32 -204 66 -188
+rect 130 188 164 204
+rect 130 -204 164 -188
+rect 228 188 262 204
+rect 228 -204 262 -188
+rect 326 188 360 204
+rect 326 -204 360 -188
+rect 424 188 458 204
+rect 424 -204 458 -188
+rect 522 188 556 204
+rect 522 -204 556 -188
+rect 620 188 654 204
+rect 620 -204 654 -188
+rect 718 188 752 204
+rect 718 -204 752 -188
+rect 816 188 850 204
+rect 816 -204 850 -188
+rect 914 188 948 204
+rect 914 -204 948 -188
+rect 1012 188 1046 204
+rect 1012 -204 1046 -188
+rect 1110 188 1144 204
+rect 1110 -204 1144 -188
+rect 1208 188 1242 204
+rect 1208 -204 1242 -188
+rect -1209 -272 -1193 -238
+rect -1159 -272 -1143 -238
+rect -1013 -272 -997 -238
+rect -963 -272 -947 -238
+rect -817 -272 -801 -238
+rect -767 -272 -751 -238
+rect -621 -272 -605 -238
+rect -571 -272 -555 -238
+rect -425 -272 -409 -238
+rect -375 -272 -359 -238
+rect -229 -272 -213 -238
+rect -179 -272 -163 -238
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect 163 -272 179 -238
+rect 213 -272 229 -238
+rect 359 -272 375 -238
+rect 409 -272 425 -238
+rect 555 -272 571 -238
+rect 605 -272 621 -238
+rect 751 -272 767 -238
+rect 801 -272 817 -238
+rect 947 -272 963 -238
+rect 997 -272 1013 -238
+rect 1143 -272 1159 -238
+rect 1193 -272 1209 -238
+rect -1356 -340 -1322 -278
+rect 1322 -340 1356 -278
+rect -1356 -374 -1260 -340
+rect 1260 -374 1356 -340
+<< viali >>
+rect -1095 238 -1061 272
+rect -899 238 -865 272
+rect -703 238 -669 272
+rect -507 238 -473 272
+rect -311 238 -277 272
+rect -115 238 -81 272
+rect 81 238 115 272
+rect 277 238 311 272
+rect 473 238 507 272
+rect 669 238 703 272
+rect 865 238 899 272
+rect 1061 238 1095 272
+rect -1242 -188 -1208 188
+rect -1144 -188 -1110 188
+rect -1046 -188 -1012 188
+rect -948 -188 -914 188
+rect -850 -188 -816 188
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+rect 816 -188 850 188
+rect 914 -188 948 188
+rect 1012 -188 1046 188
+rect 1110 -188 1144 188
+rect 1208 -188 1242 188
+rect -1193 -272 -1159 -238
+rect -997 -272 -963 -238
+rect -801 -272 -767 -238
+rect -605 -272 -571 -238
+rect -409 -272 -375 -238
+rect -213 -272 -179 -238
+rect -17 -272 17 -238
+rect 179 -272 213 -238
+rect 375 -272 409 -238
+rect 571 -272 605 -238
+rect 767 -272 801 -238
+rect 963 -272 997 -238
+rect 1159 -272 1193 -238
+<< metal1 >>
+rect -1107 272 -1049 278
+rect -1107 238 -1095 272
+rect -1061 238 -1049 272
+rect -1107 232 -1049 238
+rect -911 272 -853 278
+rect -911 238 -899 272
+rect -865 238 -853 272
+rect -911 232 -853 238
+rect -715 272 -657 278
+rect -715 238 -703 272
+rect -669 238 -657 272
+rect -715 232 -657 238
+rect -519 272 -461 278
+rect -519 238 -507 272
+rect -473 238 -461 272
+rect -519 232 -461 238
+rect -323 272 -265 278
+rect -323 238 -311 272
+rect -277 238 -265 272
+rect -323 232 -265 238
+rect -127 272 -69 278
+rect -127 238 -115 272
+rect -81 238 -69 272
+rect -127 232 -69 238
+rect 69 272 127 278
+rect 69 238 81 272
+rect 115 238 127 272
+rect 69 232 127 238
+rect 265 272 323 278
+rect 265 238 277 272
+rect 311 238 323 272
+rect 265 232 323 238
+rect 461 272 519 278
+rect 461 238 473 272
+rect 507 238 519 272
+rect 461 232 519 238
+rect 657 272 715 278
+rect 657 238 669 272
+rect 703 238 715 272
+rect 657 232 715 238
+rect 853 272 911 278
+rect 853 238 865 272
+rect 899 238 911 272
+rect 853 232 911 238
+rect 1049 272 1107 278
+rect 1049 238 1061 272
+rect 1095 238 1107 272
+rect 1049 232 1107 238
+rect -1248 188 -1202 200
+rect -1248 -188 -1242 188
+rect -1208 -188 -1202 188
+rect -1248 -200 -1202 -188
+rect -1150 188 -1104 200
+rect -1150 -188 -1144 188
+rect -1110 -188 -1104 188
+rect -1150 -200 -1104 -188
+rect -1052 188 -1006 200
+rect -1052 -188 -1046 188
+rect -1012 -188 -1006 188
+rect -1052 -200 -1006 -188
+rect -954 188 -908 200
+rect -954 -188 -948 188
+rect -914 -188 -908 188
+rect -954 -200 -908 -188
+rect -856 188 -810 200
+rect -856 -188 -850 188
+rect -816 -188 -810 188
+rect -856 -200 -810 -188
+rect -758 188 -712 200
+rect -758 -188 -752 188
+rect -718 -188 -712 188
+rect -758 -200 -712 -188
+rect -660 188 -614 200
+rect -660 -188 -654 188
+rect -620 -188 -614 188
+rect -660 -200 -614 -188
+rect -562 188 -516 200
+rect -562 -188 -556 188
+rect -522 -188 -516 188
+rect -562 -200 -516 -188
+rect -464 188 -418 200
+rect -464 -188 -458 188
+rect -424 -188 -418 188
+rect -464 -200 -418 -188
+rect -366 188 -320 200
+rect -366 -188 -360 188
+rect -326 -188 -320 188
+rect -366 -200 -320 -188
+rect -268 188 -222 200
+rect -268 -188 -262 188
+rect -228 -188 -222 188
+rect -268 -200 -222 -188
+rect -170 188 -124 200
+rect -170 -188 -164 188
+rect -130 -188 -124 188
+rect -170 -200 -124 -188
+rect -72 188 -26 200
+rect -72 -188 -66 188
+rect -32 -188 -26 188
+rect -72 -200 -26 -188
+rect 26 188 72 200
+rect 26 -188 32 188
+rect 66 -188 72 188
+rect 26 -200 72 -188
+rect 124 188 170 200
+rect 124 -188 130 188
+rect 164 -188 170 188
+rect 124 -200 170 -188
+rect 222 188 268 200
+rect 222 -188 228 188
+rect 262 -188 268 188
+rect 222 -200 268 -188
+rect 320 188 366 200
+rect 320 -188 326 188
+rect 360 -188 366 188
+rect 320 -200 366 -188
+rect 418 188 464 200
+rect 418 -188 424 188
+rect 458 -188 464 188
+rect 418 -200 464 -188
+rect 516 188 562 200
+rect 516 -188 522 188
+rect 556 -188 562 188
+rect 516 -200 562 -188
+rect 614 188 660 200
+rect 614 -188 620 188
+rect 654 -188 660 188
+rect 614 -200 660 -188
+rect 712 188 758 200
+rect 712 -188 718 188
+rect 752 -188 758 188
+rect 712 -200 758 -188
+rect 810 188 856 200
+rect 810 -188 816 188
+rect 850 -188 856 188
+rect 810 -200 856 -188
+rect 908 188 954 200
+rect 908 -188 914 188
+rect 948 -188 954 188
+rect 908 -200 954 -188
+rect 1006 188 1052 200
+rect 1006 -188 1012 188
+rect 1046 -188 1052 188
+rect 1006 -200 1052 -188
+rect 1104 188 1150 200
+rect 1104 -188 1110 188
+rect 1144 -188 1150 188
+rect 1104 -200 1150 -188
+rect 1202 188 1248 200
+rect 1202 -188 1208 188
+rect 1242 -188 1248 188
+rect 1202 -200 1248 -188
+rect -1205 -238 -1147 -232
+rect -1205 -272 -1193 -238
+rect -1159 -272 -1147 -238
+rect -1205 -278 -1147 -272
+rect -1009 -238 -951 -232
+rect -1009 -272 -997 -238
+rect -963 -272 -951 -238
+rect -1009 -278 -951 -272
+rect -813 -238 -755 -232
+rect -813 -272 -801 -238
+rect -767 -272 -755 -238
+rect -813 -278 -755 -272
+rect -617 -238 -559 -232
+rect -617 -272 -605 -238
+rect -571 -272 -559 -238
+rect -617 -278 -559 -272
+rect -421 -238 -363 -232
+rect -421 -272 -409 -238
+rect -375 -272 -363 -238
+rect -421 -278 -363 -272
+rect -225 -238 -167 -232
+rect -225 -272 -213 -238
+rect -179 -272 -167 -238
+rect -225 -278 -167 -272
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+rect 167 -238 225 -232
+rect 167 -272 179 -238
+rect 213 -272 225 -238
+rect 167 -278 225 -272
+rect 363 -238 421 -232
+rect 363 -272 375 -238
+rect 409 -272 421 -238
+rect 363 -278 421 -272
+rect 559 -238 617 -232
+rect 559 -272 571 -238
+rect 605 -272 617 -238
+rect 559 -278 617 -272
+rect 755 -238 813 -232
+rect 755 -272 767 -238
+rect 801 -272 813 -238
+rect 755 -278 813 -272
+rect 951 -238 1009 -232
+rect 951 -272 963 -238
+rect 997 -272 1009 -238
+rect 951 -278 1009 -272
+rect 1147 -238 1205 -232
+rect 1147 -272 1159 -238
+rect 1193 -272 1205 -238
+rect 1147 -278 1205 -272
+<< properties >>
+string FIXED_BBOX -1339 -357 1339 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 1 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_M9YALJ.mag b/mag/tia/sky130_fd_pr__nfet_01v8_M9YALJ.mag
new file mode 100644
index 0000000..0d1c11a
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_M9YALJ.mag
@@ -0,0 +1,6091 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645790779
+<< error_p >>
+rect -2381 1199 -2323 1205
+rect -2189 1199 -2131 1205
+rect -1997 1199 -1939 1205
+rect -1805 1199 -1747 1205
+rect -1613 1199 -1555 1205
+rect -1421 1199 -1363 1205
+rect -1229 1199 -1171 1205
+rect -1037 1199 -979 1205
+rect -845 1199 -787 1205
+rect -653 1199 -595 1205
+rect -461 1199 -403 1205
+rect -269 1199 -211 1205
+rect -77 1199 -19 1205
+rect 115 1199 173 1205
+rect 307 1199 365 1205
+rect 499 1199 557 1205
+rect 691 1199 749 1205
+rect 883 1199 941 1205
+rect 1075 1199 1133 1205
+rect 1267 1199 1325 1205
+rect 1459 1199 1517 1205
+rect 1651 1199 1709 1205
+rect 1843 1199 1901 1205
+rect 2035 1199 2093 1205
+rect 2227 1199 2285 1205
+rect -2381 1165 -2369 1199
+rect -2189 1165 -2177 1199
+rect -1997 1165 -1985 1199
+rect -1805 1165 -1793 1199
+rect -1613 1165 -1601 1199
+rect -1421 1165 -1409 1199
+rect -1229 1165 -1217 1199
+rect -1037 1165 -1025 1199
+rect -845 1165 -833 1199
+rect -653 1165 -641 1199
+rect -461 1165 -449 1199
+rect -269 1165 -257 1199
+rect -77 1165 -65 1199
+rect 115 1165 127 1199
+rect 307 1165 319 1199
+rect 499 1165 511 1199
+rect 691 1165 703 1199
+rect 883 1165 895 1199
+rect 1075 1165 1087 1199
+rect 1267 1165 1279 1199
+rect 1459 1165 1471 1199
+rect 1651 1165 1663 1199
+rect 1843 1165 1855 1199
+rect 2035 1165 2047 1199
+rect 2227 1165 2239 1199
+rect -2381 1159 -2323 1165
+rect -2189 1159 -2131 1165
+rect -1997 1159 -1939 1165
+rect -1805 1159 -1747 1165
+rect -1613 1159 -1555 1165
+rect -1421 1159 -1363 1165
+rect -1229 1159 -1171 1165
+rect -1037 1159 -979 1165
+rect -845 1159 -787 1165
+rect -653 1159 -595 1165
+rect -461 1159 -403 1165
+rect -269 1159 -211 1165
+rect -77 1159 -19 1165
+rect 115 1159 173 1165
+rect 307 1159 365 1165
+rect 499 1159 557 1165
+rect 691 1159 749 1165
+rect 883 1159 941 1165
+rect 1075 1159 1133 1165
+rect 1267 1159 1325 1165
+rect 1459 1159 1517 1165
+rect 1651 1159 1709 1165
+rect 1843 1159 1901 1165
+rect 2035 1159 2093 1165
+rect 2227 1159 2285 1165
+rect -2285 689 -2227 695
+rect -2093 689 -2035 695
+rect -1901 689 -1843 695
+rect -1709 689 -1651 695
+rect -1517 689 -1459 695
+rect -1325 689 -1267 695
+rect -1133 689 -1075 695
+rect -941 689 -883 695
+rect -749 689 -691 695
+rect -557 689 -499 695
+rect -365 689 -307 695
+rect -173 689 -115 695
+rect 19 689 77 695
+rect 211 689 269 695
+rect 403 689 461 695
+rect 595 689 653 695
+rect 787 689 845 695
+rect 979 689 1037 695
+rect 1171 689 1229 695
+rect 1363 689 1421 695
+rect 1555 689 1613 695
+rect 1747 689 1805 695
+rect 1939 689 1997 695
+rect 2131 689 2189 695
+rect 2323 689 2381 695
+rect -2285 655 -2273 689
+rect -2093 655 -2081 689
+rect -1901 655 -1889 689
+rect -1709 655 -1697 689
+rect -1517 655 -1505 689
+rect -1325 655 -1313 689
+rect -1133 655 -1121 689
+rect -941 655 -929 689
+rect -749 655 -737 689
+rect -557 655 -545 689
+rect -365 655 -353 689
+rect -173 655 -161 689
+rect 19 655 31 689
+rect 211 655 223 689
+rect 403 655 415 689
+rect 595 655 607 689
+rect 787 655 799 689
+rect 979 655 991 689
+rect 1171 655 1183 689
+rect 1363 655 1375 689
+rect 1555 655 1567 689
+rect 1747 655 1759 689
+rect 1939 655 1951 689
+rect 2131 655 2143 689
+rect 2323 655 2335 689
+rect -2285 649 -2227 655
+rect -2093 649 -2035 655
+rect -1901 649 -1843 655
+rect -1709 649 -1651 655
+rect -1517 649 -1459 655
+rect -1325 649 -1267 655
+rect -1133 649 -1075 655
+rect -941 649 -883 655
+rect -749 649 -691 655
+rect -557 649 -499 655
+rect -365 649 -307 655
+rect -173 649 -115 655
+rect 19 649 77 655
+rect 211 649 269 655
+rect 403 649 461 655
+rect 595 649 653 655
+rect 787 649 845 655
+rect 979 649 1037 655
+rect 1171 649 1229 655
+rect 1363 649 1421 655
+rect 1555 649 1613 655
+rect 1747 649 1805 655
+rect 1939 649 1997 655
+rect 2131 649 2189 655
+rect 2323 649 2381 655
+rect -2285 581 -2227 587
+rect -2093 581 -2035 587
+rect -1901 581 -1843 587
+rect -1709 581 -1651 587
+rect -1517 581 -1459 587
+rect -1325 581 -1267 587
+rect -1133 581 -1075 587
+rect -941 581 -883 587
+rect -749 581 -691 587
+rect -557 581 -499 587
+rect -365 581 -307 587
+rect -173 581 -115 587
+rect 19 581 77 587
+rect 211 581 269 587
+rect 403 581 461 587
+rect 595 581 653 587
+rect 787 581 845 587
+rect 979 581 1037 587
+rect 1171 581 1229 587
+rect 1363 581 1421 587
+rect 1555 581 1613 587
+rect 1747 581 1805 587
+rect 1939 581 1997 587
+rect 2131 581 2189 587
+rect 2323 581 2381 587
+rect -2285 547 -2273 581
+rect -2093 547 -2081 581
+rect -1901 547 -1889 581
+rect -1709 547 -1697 581
+rect -1517 547 -1505 581
+rect -1325 547 -1313 581
+rect -1133 547 -1121 581
+rect -941 547 -929 581
+rect -749 547 -737 581
+rect -557 547 -545 581
+rect -365 547 -353 581
+rect -173 547 -161 581
+rect 19 547 31 581
+rect 211 547 223 581
+rect 403 547 415 581
+rect 595 547 607 581
+rect 787 547 799 581
+rect 979 547 991 581
+rect 1171 547 1183 581
+rect 1363 547 1375 581
+rect 1555 547 1567 581
+rect 1747 547 1759 581
+rect 1939 547 1951 581
+rect 2131 547 2143 581
+rect 2323 547 2335 581
+rect -2285 541 -2227 547
+rect -2093 541 -2035 547
+rect -1901 541 -1843 547
+rect -1709 541 -1651 547
+rect -1517 541 -1459 547
+rect -1325 541 -1267 547
+rect -1133 541 -1075 547
+rect -941 541 -883 547
+rect -749 541 -691 547
+rect -557 541 -499 547
+rect -365 541 -307 547
+rect -173 541 -115 547
+rect 19 541 77 547
+rect 211 541 269 547
+rect 403 541 461 547
+rect 595 541 653 547
+rect 787 541 845 547
+rect 979 541 1037 547
+rect 1171 541 1229 547
+rect 1363 541 1421 547
+rect 1555 541 1613 547
+rect 1747 541 1805 547
+rect 1939 541 1997 547
+rect 2131 541 2189 547
+rect 2323 541 2381 547
+rect -2381 71 -2323 77
+rect -2189 71 -2131 77
+rect -1997 71 -1939 77
+rect -1805 71 -1747 77
+rect -1613 71 -1555 77
+rect -1421 71 -1363 77
+rect -1229 71 -1171 77
+rect -1037 71 -979 77
+rect -845 71 -787 77
+rect -653 71 -595 77
+rect -461 71 -403 77
+rect -269 71 -211 77
+rect -77 71 -19 77
+rect 115 71 173 77
+rect 307 71 365 77
+rect 499 71 557 77
+rect 691 71 749 77
+rect 883 71 941 77
+rect 1075 71 1133 77
+rect 1267 71 1325 77
+rect 1459 71 1517 77
+rect 1651 71 1709 77
+rect 1843 71 1901 77
+rect 2035 71 2093 77
+rect 2227 71 2285 77
+rect -2381 37 -2369 71
+rect -2189 37 -2177 71
+rect -1997 37 -1985 71
+rect -1805 37 -1793 71
+rect -1613 37 -1601 71
+rect -1421 37 -1409 71
+rect -1229 37 -1217 71
+rect -1037 37 -1025 71
+rect -845 37 -833 71
+rect -653 37 -641 71
+rect -461 37 -449 71
+rect -269 37 -257 71
+rect -77 37 -65 71
+rect 115 37 127 71
+rect 307 37 319 71
+rect 499 37 511 71
+rect 691 37 703 71
+rect 883 37 895 71
+rect 1075 37 1087 71
+rect 1267 37 1279 71
+rect 1459 37 1471 71
+rect 1651 37 1663 71
+rect 1843 37 1855 71
+rect 2035 37 2047 71
+rect 2227 37 2239 71
+rect -2381 31 -2323 37
+rect -2189 31 -2131 37
+rect -1997 31 -1939 37
+rect -1805 31 -1747 37
+rect -1613 31 -1555 37
+rect -1421 31 -1363 37
+rect -1229 31 -1171 37
+rect -1037 31 -979 37
+rect -845 31 -787 37
+rect -653 31 -595 37
+rect -461 31 -403 37
+rect -269 31 -211 37
+rect -77 31 -19 37
+rect 115 31 173 37
+rect 307 31 365 37
+rect 499 31 557 37
+rect 691 31 749 37
+rect 883 31 941 37
+rect 1075 31 1133 37
+rect 1267 31 1325 37
+rect 1459 31 1517 37
+rect 1651 31 1709 37
+rect 1843 31 1901 37
+rect 2035 31 2093 37
+rect 2227 31 2285 37
+rect -2381 -37 -2323 -31
+rect -2189 -37 -2131 -31
+rect -1997 -37 -1939 -31
+rect -1805 -37 -1747 -31
+rect -1613 -37 -1555 -31
+rect -1421 -37 -1363 -31
+rect -1229 -37 -1171 -31
+rect -1037 -37 -979 -31
+rect -845 -37 -787 -31
+rect -653 -37 -595 -31
+rect -461 -37 -403 -31
+rect -269 -37 -211 -31
+rect -77 -37 -19 -31
+rect 115 -37 173 -31
+rect 307 -37 365 -31
+rect 499 -37 557 -31
+rect 691 -37 749 -31
+rect 883 -37 941 -31
+rect 1075 -37 1133 -31
+rect 1267 -37 1325 -31
+rect 1459 -37 1517 -31
+rect 1651 -37 1709 -31
+rect 1843 -37 1901 -31
+rect 2035 -37 2093 -31
+rect 2227 -37 2285 -31
+rect -2381 -71 -2369 -37
+rect -2189 -71 -2177 -37
+rect -1997 -71 -1985 -37
+rect -1805 -71 -1793 -37
+rect -1613 -71 -1601 -37
+rect -1421 -71 -1409 -37
+rect -1229 -71 -1217 -37
+rect -1037 -71 -1025 -37
+rect -845 -71 -833 -37
+rect -653 -71 -641 -37
+rect -461 -71 -449 -37
+rect -269 -71 -257 -37
+rect -77 -71 -65 -37
+rect 115 -71 127 -37
+rect 307 -71 319 -37
+rect 499 -71 511 -37
+rect 691 -71 703 -37
+rect 883 -71 895 -37
+rect 1075 -71 1087 -37
+rect 1267 -71 1279 -37
+rect 1459 -71 1471 -37
+rect 1651 -71 1663 -37
+rect 1843 -71 1855 -37
+rect 2035 -71 2047 -37
+rect 2227 -71 2239 -37
+rect -2381 -77 -2323 -71
+rect -2189 -77 -2131 -71
+rect -1997 -77 -1939 -71
+rect -1805 -77 -1747 -71
+rect -1613 -77 -1555 -71
+rect -1421 -77 -1363 -71
+rect -1229 -77 -1171 -71
+rect -1037 -77 -979 -71
+rect -845 -77 -787 -71
+rect -653 -77 -595 -71
+rect -461 -77 -403 -71
+rect -269 -77 -211 -71
+rect -77 -77 -19 -71
+rect 115 -77 173 -71
+rect 307 -77 365 -71
+rect 499 -77 557 -71
+rect 691 -77 749 -71
+rect 883 -77 941 -71
+rect 1075 -77 1133 -71
+rect 1267 -77 1325 -71
+rect 1459 -77 1517 -71
+rect 1651 -77 1709 -71
+rect 1843 -77 1901 -71
+rect 2035 -77 2093 -71
+rect 2227 -77 2285 -71
+rect -2285 -547 -2227 -541
+rect -2093 -547 -2035 -541
+rect -1901 -547 -1843 -541
+rect -1709 -547 -1651 -541
+rect -1517 -547 -1459 -541
+rect -1325 -547 -1267 -541
+rect -1133 -547 -1075 -541
+rect -941 -547 -883 -541
+rect -749 -547 -691 -541
+rect -557 -547 -499 -541
+rect -365 -547 -307 -541
+rect -173 -547 -115 -541
+rect 19 -547 77 -541
+rect 211 -547 269 -541
+rect 403 -547 461 -541
+rect 595 -547 653 -541
+rect 787 -547 845 -541
+rect 979 -547 1037 -541
+rect 1171 -547 1229 -541
+rect 1363 -547 1421 -541
+rect 1555 -547 1613 -541
+rect 1747 -547 1805 -541
+rect 1939 -547 1997 -541
+rect 2131 -547 2189 -541
+rect 2323 -547 2381 -541
+rect -2285 -581 -2273 -547
+rect -2093 -581 -2081 -547
+rect -1901 -581 -1889 -547
+rect -1709 -581 -1697 -547
+rect -1517 -581 -1505 -547
+rect -1325 -581 -1313 -547
+rect -1133 -581 -1121 -547
+rect -941 -581 -929 -547
+rect -749 -581 -737 -547
+rect -557 -581 -545 -547
+rect -365 -581 -353 -547
+rect -173 -581 -161 -547
+rect 19 -581 31 -547
+rect 211 -581 223 -547
+rect 403 -581 415 -547
+rect 595 -581 607 -547
+rect 787 -581 799 -547
+rect 979 -581 991 -547
+rect 1171 -581 1183 -547
+rect 1363 -581 1375 -547
+rect 1555 -581 1567 -547
+rect 1747 -581 1759 -547
+rect 1939 -581 1951 -547
+rect 2131 -581 2143 -547
+rect 2323 -581 2335 -547
+rect -2285 -587 -2227 -581
+rect -2093 -587 -2035 -581
+rect -1901 -587 -1843 -581
+rect -1709 -587 -1651 -581
+rect -1517 -587 -1459 -581
+rect -1325 -587 -1267 -581
+rect -1133 -587 -1075 -581
+rect -941 -587 -883 -581
+rect -749 -587 -691 -581
+rect -557 -587 -499 -581
+rect -365 -587 -307 -581
+rect -173 -587 -115 -581
+rect 19 -587 77 -581
+rect 211 -587 269 -581
+rect 403 -587 461 -581
+rect 595 -587 653 -581
+rect 787 -587 845 -581
+rect 979 -587 1037 -581
+rect 1171 -587 1229 -581
+rect 1363 -587 1421 -581
+rect 1555 -587 1613 -581
+rect 1747 -587 1805 -581
+rect 1939 -587 1997 -581
+rect 2131 -587 2189 -581
+rect 2323 -587 2381 -581
+rect -2285 -655 -2227 -649
+rect -2093 -655 -2035 -649
+rect -1901 -655 -1843 -649
+rect -1709 -655 -1651 -649
+rect -1517 -655 -1459 -649
+rect -1325 -655 -1267 -649
+rect -1133 -655 -1075 -649
+rect -941 -655 -883 -649
+rect -749 -655 -691 -649
+rect -557 -655 -499 -649
+rect -365 -655 -307 -649
+rect -173 -655 -115 -649
+rect 19 -655 77 -649
+rect 211 -655 269 -649
+rect 403 -655 461 -649
+rect 595 -655 653 -649
+rect 787 -655 845 -649
+rect 979 -655 1037 -649
+rect 1171 -655 1229 -649
+rect 1363 -655 1421 -649
+rect 1555 -655 1613 -649
+rect 1747 -655 1805 -649
+rect 1939 -655 1997 -649
+rect 2131 -655 2189 -649
+rect 2323 -655 2381 -649
+rect -2285 -689 -2273 -655
+rect -2093 -689 -2081 -655
+rect -1901 -689 -1889 -655
+rect -1709 -689 -1697 -655
+rect -1517 -689 -1505 -655
+rect -1325 -689 -1313 -655
+rect -1133 -689 -1121 -655
+rect -941 -689 -929 -655
+rect -749 -689 -737 -655
+rect -557 -689 -545 -655
+rect -365 -689 -353 -655
+rect -173 -689 -161 -655
+rect 19 -689 31 -655
+rect 211 -689 223 -655
+rect 403 -689 415 -655
+rect 595 -689 607 -655
+rect 787 -689 799 -655
+rect 979 -689 991 -655
+rect 1171 -689 1183 -655
+rect 1363 -689 1375 -655
+rect 1555 -689 1567 -655
+rect 1747 -689 1759 -655
+rect 1939 -689 1951 -655
+rect 2131 -689 2143 -655
+rect 2323 -689 2335 -655
+rect -2285 -695 -2227 -689
+rect -2093 -695 -2035 -689
+rect -1901 -695 -1843 -689
+rect -1709 -695 -1651 -689
+rect -1517 -695 -1459 -689
+rect -1325 -695 -1267 -689
+rect -1133 -695 -1075 -689
+rect -941 -695 -883 -689
+rect -749 -695 -691 -689
+rect -557 -695 -499 -689
+rect -365 -695 -307 -689
+rect -173 -695 -115 -689
+rect 19 -695 77 -689
+rect 211 -695 269 -689
+rect 403 -695 461 -689
+rect 595 -695 653 -689
+rect 787 -695 845 -689
+rect 979 -695 1037 -689
+rect 1171 -695 1229 -689
+rect 1363 -695 1421 -689
+rect 1555 -695 1613 -689
+rect 1747 -695 1805 -689
+rect 1939 -695 1997 -689
+rect 2131 -695 2189 -689
+rect 2323 -695 2381 -689
+rect -2381 -1165 -2323 -1159
+rect -2189 -1165 -2131 -1159
+rect -1997 -1165 -1939 -1159
+rect -1805 -1165 -1747 -1159
+rect -1613 -1165 -1555 -1159
+rect -1421 -1165 -1363 -1159
+rect -1229 -1165 -1171 -1159
+rect -1037 -1165 -979 -1159
+rect -845 -1165 -787 -1159
+rect -653 -1165 -595 -1159
+rect -461 -1165 -403 -1159
+rect -269 -1165 -211 -1159
+rect -77 -1165 -19 -1159
+rect 115 -1165 173 -1159
+rect 307 -1165 365 -1159
+rect 499 -1165 557 -1159
+rect 691 -1165 749 -1159
+rect 883 -1165 941 -1159
+rect 1075 -1165 1133 -1159
+rect 1267 -1165 1325 -1159
+rect 1459 -1165 1517 -1159
+rect 1651 -1165 1709 -1159
+rect 1843 -1165 1901 -1159
+rect 2035 -1165 2093 -1159
+rect 2227 -1165 2285 -1159
+rect -2381 -1199 -2369 -1165
+rect -2189 -1199 -2177 -1165
+rect -1997 -1199 -1985 -1165
+rect -1805 -1199 -1793 -1165
+rect -1613 -1199 -1601 -1165
+rect -1421 -1199 -1409 -1165
+rect -1229 -1199 -1217 -1165
+rect -1037 -1199 -1025 -1165
+rect -845 -1199 -833 -1165
+rect -653 -1199 -641 -1165
+rect -461 -1199 -449 -1165
+rect -269 -1199 -257 -1165
+rect -77 -1199 -65 -1165
+rect 115 -1199 127 -1165
+rect 307 -1199 319 -1165
+rect 499 -1199 511 -1165
+rect 691 -1199 703 -1165
+rect 883 -1199 895 -1165
+rect 1075 -1199 1087 -1165
+rect 1267 -1199 1279 -1165
+rect 1459 -1199 1471 -1165
+rect 1651 -1199 1663 -1165
+rect 1843 -1199 1855 -1165
+rect 2035 -1199 2047 -1165
+rect 2227 -1199 2239 -1165
+rect -2381 -1205 -2323 -1199
+rect -2189 -1205 -2131 -1199
+rect -1997 -1205 -1939 -1199
+rect -1805 -1205 -1747 -1199
+rect -1613 -1205 -1555 -1199
+rect -1421 -1205 -1363 -1199
+rect -1229 -1205 -1171 -1199
+rect -1037 -1205 -979 -1199
+rect -845 -1205 -787 -1199
+rect -653 -1205 -595 -1199
+rect -461 -1205 -403 -1199
+rect -269 -1205 -211 -1199
+rect -77 -1205 -19 -1199
+rect 115 -1205 173 -1199
+rect 307 -1205 365 -1199
+rect 499 -1205 557 -1199
+rect 691 -1205 749 -1199
+rect 883 -1205 941 -1199
+rect 1075 -1205 1133 -1199
+rect 1267 -1205 1325 -1199
+rect 1459 -1205 1517 -1199
+rect 1651 -1205 1709 -1199
+rect 1843 -1205 1901 -1199
+rect 2035 -1205 2093 -1199
+rect 2227 -1205 2285 -1199
+<< pwell >>
+rect -2567 -1337 2567 1337
+<< nmos >>
+rect -2367 727 -2337 1127
+rect -2271 727 -2241 1127
+rect -2175 727 -2145 1127
+rect -2079 727 -2049 1127
+rect -1983 727 -1953 1127
+rect -1887 727 -1857 1127
+rect -1791 727 -1761 1127
+rect -1695 727 -1665 1127
+rect -1599 727 -1569 1127
+rect -1503 727 -1473 1127
+rect -1407 727 -1377 1127
+rect -1311 727 -1281 1127
+rect -1215 727 -1185 1127
+rect -1119 727 -1089 1127
+rect -1023 727 -993 1127
+rect -927 727 -897 1127
+rect -831 727 -801 1127
+rect -735 727 -705 1127
+rect -639 727 -609 1127
+rect -543 727 -513 1127
+rect -447 727 -417 1127
+rect -351 727 -321 1127
+rect -255 727 -225 1127
+rect -159 727 -129 1127
+rect -63 727 -33 1127
+rect 33 727 63 1127
+rect 129 727 159 1127
+rect 225 727 255 1127
+rect 321 727 351 1127
+rect 417 727 447 1127
+rect 513 727 543 1127
+rect 609 727 639 1127
+rect 705 727 735 1127
+rect 801 727 831 1127
+rect 897 727 927 1127
+rect 993 727 1023 1127
+rect 1089 727 1119 1127
+rect 1185 727 1215 1127
+rect 1281 727 1311 1127
+rect 1377 727 1407 1127
+rect 1473 727 1503 1127
+rect 1569 727 1599 1127
+rect 1665 727 1695 1127
+rect 1761 727 1791 1127
+rect 1857 727 1887 1127
+rect 1953 727 1983 1127
+rect 2049 727 2079 1127
+rect 2145 727 2175 1127
+rect 2241 727 2271 1127
+rect 2337 727 2367 1127
+rect -2367 109 -2337 509
+rect -2271 109 -2241 509
+rect -2175 109 -2145 509
+rect -2079 109 -2049 509
+rect -1983 109 -1953 509
+rect -1887 109 -1857 509
+rect -1791 109 -1761 509
+rect -1695 109 -1665 509
+rect -1599 109 -1569 509
+rect -1503 109 -1473 509
+rect -1407 109 -1377 509
+rect -1311 109 -1281 509
+rect -1215 109 -1185 509
+rect -1119 109 -1089 509
+rect -1023 109 -993 509
+rect -927 109 -897 509
+rect -831 109 -801 509
+rect -735 109 -705 509
+rect -639 109 -609 509
+rect -543 109 -513 509
+rect -447 109 -417 509
+rect -351 109 -321 509
+rect -255 109 -225 509
+rect -159 109 -129 509
+rect -63 109 -33 509
+rect 33 109 63 509
+rect 129 109 159 509
+rect 225 109 255 509
+rect 321 109 351 509
+rect 417 109 447 509
+rect 513 109 543 509
+rect 609 109 639 509
+rect 705 109 735 509
+rect 801 109 831 509
+rect 897 109 927 509
+rect 993 109 1023 509
+rect 1089 109 1119 509
+rect 1185 109 1215 509
+rect 1281 109 1311 509
+rect 1377 109 1407 509
+rect 1473 109 1503 509
+rect 1569 109 1599 509
+rect 1665 109 1695 509
+rect 1761 109 1791 509
+rect 1857 109 1887 509
+rect 1953 109 1983 509
+rect 2049 109 2079 509
+rect 2145 109 2175 509
+rect 2241 109 2271 509
+rect 2337 109 2367 509
+rect -2367 -509 -2337 -109
+rect -2271 -509 -2241 -109
+rect -2175 -509 -2145 -109
+rect -2079 -509 -2049 -109
+rect -1983 -509 -1953 -109
+rect -1887 -509 -1857 -109
+rect -1791 -509 -1761 -109
+rect -1695 -509 -1665 -109
+rect -1599 -509 -1569 -109
+rect -1503 -509 -1473 -109
+rect -1407 -509 -1377 -109
+rect -1311 -509 -1281 -109
+rect -1215 -509 -1185 -109
+rect -1119 -509 -1089 -109
+rect -1023 -509 -993 -109
+rect -927 -509 -897 -109
+rect -831 -509 -801 -109
+rect -735 -509 -705 -109
+rect -639 -509 -609 -109
+rect -543 -509 -513 -109
+rect -447 -509 -417 -109
+rect -351 -509 -321 -109
+rect -255 -509 -225 -109
+rect -159 -509 -129 -109
+rect -63 -509 -33 -109
+rect 33 -509 63 -109
+rect 129 -509 159 -109
+rect 225 -509 255 -109
+rect 321 -509 351 -109
+rect 417 -509 447 -109
+rect 513 -509 543 -109
+rect 609 -509 639 -109
+rect 705 -509 735 -109
+rect 801 -509 831 -109
+rect 897 -509 927 -109
+rect 993 -509 1023 -109
+rect 1089 -509 1119 -109
+rect 1185 -509 1215 -109
+rect 1281 -509 1311 -109
+rect 1377 -509 1407 -109
+rect 1473 -509 1503 -109
+rect 1569 -509 1599 -109
+rect 1665 -509 1695 -109
+rect 1761 -509 1791 -109
+rect 1857 -509 1887 -109
+rect 1953 -509 1983 -109
+rect 2049 -509 2079 -109
+rect 2145 -509 2175 -109
+rect 2241 -509 2271 -109
+rect 2337 -509 2367 -109
+rect -2367 -1127 -2337 -727
+rect -2271 -1127 -2241 -727
+rect -2175 -1127 -2145 -727
+rect -2079 -1127 -2049 -727
+rect -1983 -1127 -1953 -727
+rect -1887 -1127 -1857 -727
+rect -1791 -1127 -1761 -727
+rect -1695 -1127 -1665 -727
+rect -1599 -1127 -1569 -727
+rect -1503 -1127 -1473 -727
+rect -1407 -1127 -1377 -727
+rect -1311 -1127 -1281 -727
+rect -1215 -1127 -1185 -727
+rect -1119 -1127 -1089 -727
+rect -1023 -1127 -993 -727
+rect -927 -1127 -897 -727
+rect -831 -1127 -801 -727
+rect -735 -1127 -705 -727
+rect -639 -1127 -609 -727
+rect -543 -1127 -513 -727
+rect -447 -1127 -417 -727
+rect -351 -1127 -321 -727
+rect -255 -1127 -225 -727
+rect -159 -1127 -129 -727
+rect -63 -1127 -33 -727
+rect 33 -1127 63 -727
+rect 129 -1127 159 -727
+rect 225 -1127 255 -727
+rect 321 -1127 351 -727
+rect 417 -1127 447 -727
+rect 513 -1127 543 -727
+rect 609 -1127 639 -727
+rect 705 -1127 735 -727
+rect 801 -1127 831 -727
+rect 897 -1127 927 -727
+rect 993 -1127 1023 -727
+rect 1089 -1127 1119 -727
+rect 1185 -1127 1215 -727
+rect 1281 -1127 1311 -727
+rect 1377 -1127 1407 -727
+rect 1473 -1127 1503 -727
+rect 1569 -1127 1599 -727
+rect 1665 -1127 1695 -727
+rect 1761 -1127 1791 -727
+rect 1857 -1127 1887 -727
+rect 1953 -1127 1983 -727
+rect 2049 -1127 2079 -727
+rect 2145 -1127 2175 -727
+rect 2241 -1127 2271 -727
+rect 2337 -1127 2367 -727
+<< ndiff >>
+rect -2429 1115 -2367 1127
+rect -2429 739 -2417 1115
+rect -2383 739 -2367 1115
+rect -2429 727 -2367 739
+rect -2337 1115 -2271 1127
+rect -2337 739 -2321 1115
+rect -2287 739 -2271 1115
+rect -2337 727 -2271 739
+rect -2241 1115 -2175 1127
+rect -2241 739 -2225 1115
+rect -2191 739 -2175 1115
+rect -2241 727 -2175 739
+rect -2145 1115 -2079 1127
+rect -2145 739 -2129 1115
+rect -2095 739 -2079 1115
+rect -2145 727 -2079 739
+rect -2049 1115 -1983 1127
+rect -2049 739 -2033 1115
+rect -1999 739 -1983 1115
+rect -2049 727 -1983 739
+rect -1953 1115 -1887 1127
+rect -1953 739 -1937 1115
+rect -1903 739 -1887 1115
+rect -1953 727 -1887 739
+rect -1857 1115 -1791 1127
+rect -1857 739 -1841 1115
+rect -1807 739 -1791 1115
+rect -1857 727 -1791 739
+rect -1761 1115 -1695 1127
+rect -1761 739 -1745 1115
+rect -1711 739 -1695 1115
+rect -1761 727 -1695 739
+rect -1665 1115 -1599 1127
+rect -1665 739 -1649 1115
+rect -1615 739 -1599 1115
+rect -1665 727 -1599 739
+rect -1569 1115 -1503 1127
+rect -1569 739 -1553 1115
+rect -1519 739 -1503 1115
+rect -1569 727 -1503 739
+rect -1473 1115 -1407 1127
+rect -1473 739 -1457 1115
+rect -1423 739 -1407 1115
+rect -1473 727 -1407 739
+rect -1377 1115 -1311 1127
+rect -1377 739 -1361 1115
+rect -1327 739 -1311 1115
+rect -1377 727 -1311 739
+rect -1281 1115 -1215 1127
+rect -1281 739 -1265 1115
+rect -1231 739 -1215 1115
+rect -1281 727 -1215 739
+rect -1185 1115 -1119 1127
+rect -1185 739 -1169 1115
+rect -1135 739 -1119 1115
+rect -1185 727 -1119 739
+rect -1089 1115 -1023 1127
+rect -1089 739 -1073 1115
+rect -1039 739 -1023 1115
+rect -1089 727 -1023 739
+rect -993 1115 -927 1127
+rect -993 739 -977 1115
+rect -943 739 -927 1115
+rect -993 727 -927 739
+rect -897 1115 -831 1127
+rect -897 739 -881 1115
+rect -847 739 -831 1115
+rect -897 727 -831 739
+rect -801 1115 -735 1127
+rect -801 739 -785 1115
+rect -751 739 -735 1115
+rect -801 727 -735 739
+rect -705 1115 -639 1127
+rect -705 739 -689 1115
+rect -655 739 -639 1115
+rect -705 727 -639 739
+rect -609 1115 -543 1127
+rect -609 739 -593 1115
+rect -559 739 -543 1115
+rect -609 727 -543 739
+rect -513 1115 -447 1127
+rect -513 739 -497 1115
+rect -463 739 -447 1115
+rect -513 727 -447 739
+rect -417 1115 -351 1127
+rect -417 739 -401 1115
+rect -367 739 -351 1115
+rect -417 727 -351 739
+rect -321 1115 -255 1127
+rect -321 739 -305 1115
+rect -271 739 -255 1115
+rect -321 727 -255 739
+rect -225 1115 -159 1127
+rect -225 739 -209 1115
+rect -175 739 -159 1115
+rect -225 727 -159 739
+rect -129 1115 -63 1127
+rect -129 739 -113 1115
+rect -79 739 -63 1115
+rect -129 727 -63 739
+rect -33 1115 33 1127
+rect -33 739 -17 1115
+rect 17 739 33 1115
+rect -33 727 33 739
+rect 63 1115 129 1127
+rect 63 739 79 1115
+rect 113 739 129 1115
+rect 63 727 129 739
+rect 159 1115 225 1127
+rect 159 739 175 1115
+rect 209 739 225 1115
+rect 159 727 225 739
+rect 255 1115 321 1127
+rect 255 739 271 1115
+rect 305 739 321 1115
+rect 255 727 321 739
+rect 351 1115 417 1127
+rect 351 739 367 1115
+rect 401 739 417 1115
+rect 351 727 417 739
+rect 447 1115 513 1127
+rect 447 739 463 1115
+rect 497 739 513 1115
+rect 447 727 513 739
+rect 543 1115 609 1127
+rect 543 739 559 1115
+rect 593 739 609 1115
+rect 543 727 609 739
+rect 639 1115 705 1127
+rect 639 739 655 1115
+rect 689 739 705 1115
+rect 639 727 705 739
+rect 735 1115 801 1127
+rect 735 739 751 1115
+rect 785 739 801 1115
+rect 735 727 801 739
+rect 831 1115 897 1127
+rect 831 739 847 1115
+rect 881 739 897 1115
+rect 831 727 897 739
+rect 927 1115 993 1127
+rect 927 739 943 1115
+rect 977 739 993 1115
+rect 927 727 993 739
+rect 1023 1115 1089 1127
+rect 1023 739 1039 1115
+rect 1073 739 1089 1115
+rect 1023 727 1089 739
+rect 1119 1115 1185 1127
+rect 1119 739 1135 1115
+rect 1169 739 1185 1115
+rect 1119 727 1185 739
+rect 1215 1115 1281 1127
+rect 1215 739 1231 1115
+rect 1265 739 1281 1115
+rect 1215 727 1281 739
+rect 1311 1115 1377 1127
+rect 1311 739 1327 1115
+rect 1361 739 1377 1115
+rect 1311 727 1377 739
+rect 1407 1115 1473 1127
+rect 1407 739 1423 1115
+rect 1457 739 1473 1115
+rect 1407 727 1473 739
+rect 1503 1115 1569 1127
+rect 1503 739 1519 1115
+rect 1553 739 1569 1115
+rect 1503 727 1569 739
+rect 1599 1115 1665 1127
+rect 1599 739 1615 1115
+rect 1649 739 1665 1115
+rect 1599 727 1665 739
+rect 1695 1115 1761 1127
+rect 1695 739 1711 1115
+rect 1745 739 1761 1115
+rect 1695 727 1761 739
+rect 1791 1115 1857 1127
+rect 1791 739 1807 1115
+rect 1841 739 1857 1115
+rect 1791 727 1857 739
+rect 1887 1115 1953 1127
+rect 1887 739 1903 1115
+rect 1937 739 1953 1115
+rect 1887 727 1953 739
+rect 1983 1115 2049 1127
+rect 1983 739 1999 1115
+rect 2033 739 2049 1115
+rect 1983 727 2049 739
+rect 2079 1115 2145 1127
+rect 2079 739 2095 1115
+rect 2129 739 2145 1115
+rect 2079 727 2145 739
+rect 2175 1115 2241 1127
+rect 2175 739 2191 1115
+rect 2225 739 2241 1115
+rect 2175 727 2241 739
+rect 2271 1115 2337 1127
+rect 2271 739 2287 1115
+rect 2321 739 2337 1115
+rect 2271 727 2337 739
+rect 2367 1115 2429 1127
+rect 2367 739 2383 1115
+rect 2417 739 2429 1115
+rect 2367 727 2429 739
+rect -2429 497 -2367 509
+rect -2429 121 -2417 497
+rect -2383 121 -2367 497
+rect -2429 109 -2367 121
+rect -2337 497 -2271 509
+rect -2337 121 -2321 497
+rect -2287 121 -2271 497
+rect -2337 109 -2271 121
+rect -2241 497 -2175 509
+rect -2241 121 -2225 497
+rect -2191 121 -2175 497
+rect -2241 109 -2175 121
+rect -2145 497 -2079 509
+rect -2145 121 -2129 497
+rect -2095 121 -2079 497
+rect -2145 109 -2079 121
+rect -2049 497 -1983 509
+rect -2049 121 -2033 497
+rect -1999 121 -1983 497
+rect -2049 109 -1983 121
+rect -1953 497 -1887 509
+rect -1953 121 -1937 497
+rect -1903 121 -1887 497
+rect -1953 109 -1887 121
+rect -1857 497 -1791 509
+rect -1857 121 -1841 497
+rect -1807 121 -1791 497
+rect -1857 109 -1791 121
+rect -1761 497 -1695 509
+rect -1761 121 -1745 497
+rect -1711 121 -1695 497
+rect -1761 109 -1695 121
+rect -1665 497 -1599 509
+rect -1665 121 -1649 497
+rect -1615 121 -1599 497
+rect -1665 109 -1599 121
+rect -1569 497 -1503 509
+rect -1569 121 -1553 497
+rect -1519 121 -1503 497
+rect -1569 109 -1503 121
+rect -1473 497 -1407 509
+rect -1473 121 -1457 497
+rect -1423 121 -1407 497
+rect -1473 109 -1407 121
+rect -1377 497 -1311 509
+rect -1377 121 -1361 497
+rect -1327 121 -1311 497
+rect -1377 109 -1311 121
+rect -1281 497 -1215 509
+rect -1281 121 -1265 497
+rect -1231 121 -1215 497
+rect -1281 109 -1215 121
+rect -1185 497 -1119 509
+rect -1185 121 -1169 497
+rect -1135 121 -1119 497
+rect -1185 109 -1119 121
+rect -1089 497 -1023 509
+rect -1089 121 -1073 497
+rect -1039 121 -1023 497
+rect -1089 109 -1023 121
+rect -993 497 -927 509
+rect -993 121 -977 497
+rect -943 121 -927 497
+rect -993 109 -927 121
+rect -897 497 -831 509
+rect -897 121 -881 497
+rect -847 121 -831 497
+rect -897 109 -831 121
+rect -801 497 -735 509
+rect -801 121 -785 497
+rect -751 121 -735 497
+rect -801 109 -735 121
+rect -705 497 -639 509
+rect -705 121 -689 497
+rect -655 121 -639 497
+rect -705 109 -639 121
+rect -609 497 -543 509
+rect -609 121 -593 497
+rect -559 121 -543 497
+rect -609 109 -543 121
+rect -513 497 -447 509
+rect -513 121 -497 497
+rect -463 121 -447 497
+rect -513 109 -447 121
+rect -417 497 -351 509
+rect -417 121 -401 497
+rect -367 121 -351 497
+rect -417 109 -351 121
+rect -321 497 -255 509
+rect -321 121 -305 497
+rect -271 121 -255 497
+rect -321 109 -255 121
+rect -225 497 -159 509
+rect -225 121 -209 497
+rect -175 121 -159 497
+rect -225 109 -159 121
+rect -129 497 -63 509
+rect -129 121 -113 497
+rect -79 121 -63 497
+rect -129 109 -63 121
+rect -33 497 33 509
+rect -33 121 -17 497
+rect 17 121 33 497
+rect -33 109 33 121
+rect 63 497 129 509
+rect 63 121 79 497
+rect 113 121 129 497
+rect 63 109 129 121
+rect 159 497 225 509
+rect 159 121 175 497
+rect 209 121 225 497
+rect 159 109 225 121
+rect 255 497 321 509
+rect 255 121 271 497
+rect 305 121 321 497
+rect 255 109 321 121
+rect 351 497 417 509
+rect 351 121 367 497
+rect 401 121 417 497
+rect 351 109 417 121
+rect 447 497 513 509
+rect 447 121 463 497
+rect 497 121 513 497
+rect 447 109 513 121
+rect 543 497 609 509
+rect 543 121 559 497
+rect 593 121 609 497
+rect 543 109 609 121
+rect 639 497 705 509
+rect 639 121 655 497
+rect 689 121 705 497
+rect 639 109 705 121
+rect 735 497 801 509
+rect 735 121 751 497
+rect 785 121 801 497
+rect 735 109 801 121
+rect 831 497 897 509
+rect 831 121 847 497
+rect 881 121 897 497
+rect 831 109 897 121
+rect 927 497 993 509
+rect 927 121 943 497
+rect 977 121 993 497
+rect 927 109 993 121
+rect 1023 497 1089 509
+rect 1023 121 1039 497
+rect 1073 121 1089 497
+rect 1023 109 1089 121
+rect 1119 497 1185 509
+rect 1119 121 1135 497
+rect 1169 121 1185 497
+rect 1119 109 1185 121
+rect 1215 497 1281 509
+rect 1215 121 1231 497
+rect 1265 121 1281 497
+rect 1215 109 1281 121
+rect 1311 497 1377 509
+rect 1311 121 1327 497
+rect 1361 121 1377 497
+rect 1311 109 1377 121
+rect 1407 497 1473 509
+rect 1407 121 1423 497
+rect 1457 121 1473 497
+rect 1407 109 1473 121
+rect 1503 497 1569 509
+rect 1503 121 1519 497
+rect 1553 121 1569 497
+rect 1503 109 1569 121
+rect 1599 497 1665 509
+rect 1599 121 1615 497
+rect 1649 121 1665 497
+rect 1599 109 1665 121
+rect 1695 497 1761 509
+rect 1695 121 1711 497
+rect 1745 121 1761 497
+rect 1695 109 1761 121
+rect 1791 497 1857 509
+rect 1791 121 1807 497
+rect 1841 121 1857 497
+rect 1791 109 1857 121
+rect 1887 497 1953 509
+rect 1887 121 1903 497
+rect 1937 121 1953 497
+rect 1887 109 1953 121
+rect 1983 497 2049 509
+rect 1983 121 1999 497
+rect 2033 121 2049 497
+rect 1983 109 2049 121
+rect 2079 497 2145 509
+rect 2079 121 2095 497
+rect 2129 121 2145 497
+rect 2079 109 2145 121
+rect 2175 497 2241 509
+rect 2175 121 2191 497
+rect 2225 121 2241 497
+rect 2175 109 2241 121
+rect 2271 497 2337 509
+rect 2271 121 2287 497
+rect 2321 121 2337 497
+rect 2271 109 2337 121
+rect 2367 497 2429 509
+rect 2367 121 2383 497
+rect 2417 121 2429 497
+rect 2367 109 2429 121
+rect -2429 -121 -2367 -109
+rect -2429 -497 -2417 -121
+rect -2383 -497 -2367 -121
+rect -2429 -509 -2367 -497
+rect -2337 -121 -2271 -109
+rect -2337 -497 -2321 -121
+rect -2287 -497 -2271 -121
+rect -2337 -509 -2271 -497
+rect -2241 -121 -2175 -109
+rect -2241 -497 -2225 -121
+rect -2191 -497 -2175 -121
+rect -2241 -509 -2175 -497
+rect -2145 -121 -2079 -109
+rect -2145 -497 -2129 -121
+rect -2095 -497 -2079 -121
+rect -2145 -509 -2079 -497
+rect -2049 -121 -1983 -109
+rect -2049 -497 -2033 -121
+rect -1999 -497 -1983 -121
+rect -2049 -509 -1983 -497
+rect -1953 -121 -1887 -109
+rect -1953 -497 -1937 -121
+rect -1903 -497 -1887 -121
+rect -1953 -509 -1887 -497
+rect -1857 -121 -1791 -109
+rect -1857 -497 -1841 -121
+rect -1807 -497 -1791 -121
+rect -1857 -509 -1791 -497
+rect -1761 -121 -1695 -109
+rect -1761 -497 -1745 -121
+rect -1711 -497 -1695 -121
+rect -1761 -509 -1695 -497
+rect -1665 -121 -1599 -109
+rect -1665 -497 -1649 -121
+rect -1615 -497 -1599 -121
+rect -1665 -509 -1599 -497
+rect -1569 -121 -1503 -109
+rect -1569 -497 -1553 -121
+rect -1519 -497 -1503 -121
+rect -1569 -509 -1503 -497
+rect -1473 -121 -1407 -109
+rect -1473 -497 -1457 -121
+rect -1423 -497 -1407 -121
+rect -1473 -509 -1407 -497
+rect -1377 -121 -1311 -109
+rect -1377 -497 -1361 -121
+rect -1327 -497 -1311 -121
+rect -1377 -509 -1311 -497
+rect -1281 -121 -1215 -109
+rect -1281 -497 -1265 -121
+rect -1231 -497 -1215 -121
+rect -1281 -509 -1215 -497
+rect -1185 -121 -1119 -109
+rect -1185 -497 -1169 -121
+rect -1135 -497 -1119 -121
+rect -1185 -509 -1119 -497
+rect -1089 -121 -1023 -109
+rect -1089 -497 -1073 -121
+rect -1039 -497 -1023 -121
+rect -1089 -509 -1023 -497
+rect -993 -121 -927 -109
+rect -993 -497 -977 -121
+rect -943 -497 -927 -121
+rect -993 -509 -927 -497
+rect -897 -121 -831 -109
+rect -897 -497 -881 -121
+rect -847 -497 -831 -121
+rect -897 -509 -831 -497
+rect -801 -121 -735 -109
+rect -801 -497 -785 -121
+rect -751 -497 -735 -121
+rect -801 -509 -735 -497
+rect -705 -121 -639 -109
+rect -705 -497 -689 -121
+rect -655 -497 -639 -121
+rect -705 -509 -639 -497
+rect -609 -121 -543 -109
+rect -609 -497 -593 -121
+rect -559 -497 -543 -121
+rect -609 -509 -543 -497
+rect -513 -121 -447 -109
+rect -513 -497 -497 -121
+rect -463 -497 -447 -121
+rect -513 -509 -447 -497
+rect -417 -121 -351 -109
+rect -417 -497 -401 -121
+rect -367 -497 -351 -121
+rect -417 -509 -351 -497
+rect -321 -121 -255 -109
+rect -321 -497 -305 -121
+rect -271 -497 -255 -121
+rect -321 -509 -255 -497
+rect -225 -121 -159 -109
+rect -225 -497 -209 -121
+rect -175 -497 -159 -121
+rect -225 -509 -159 -497
+rect -129 -121 -63 -109
+rect -129 -497 -113 -121
+rect -79 -497 -63 -121
+rect -129 -509 -63 -497
+rect -33 -121 33 -109
+rect -33 -497 -17 -121
+rect 17 -497 33 -121
+rect -33 -509 33 -497
+rect 63 -121 129 -109
+rect 63 -497 79 -121
+rect 113 -497 129 -121
+rect 63 -509 129 -497
+rect 159 -121 225 -109
+rect 159 -497 175 -121
+rect 209 -497 225 -121
+rect 159 -509 225 -497
+rect 255 -121 321 -109
+rect 255 -497 271 -121
+rect 305 -497 321 -121
+rect 255 -509 321 -497
+rect 351 -121 417 -109
+rect 351 -497 367 -121
+rect 401 -497 417 -121
+rect 351 -509 417 -497
+rect 447 -121 513 -109
+rect 447 -497 463 -121
+rect 497 -497 513 -121
+rect 447 -509 513 -497
+rect 543 -121 609 -109
+rect 543 -497 559 -121
+rect 593 -497 609 -121
+rect 543 -509 609 -497
+rect 639 -121 705 -109
+rect 639 -497 655 -121
+rect 689 -497 705 -121
+rect 639 -509 705 -497
+rect 735 -121 801 -109
+rect 735 -497 751 -121
+rect 785 -497 801 -121
+rect 735 -509 801 -497
+rect 831 -121 897 -109
+rect 831 -497 847 -121
+rect 881 -497 897 -121
+rect 831 -509 897 -497
+rect 927 -121 993 -109
+rect 927 -497 943 -121
+rect 977 -497 993 -121
+rect 927 -509 993 -497
+rect 1023 -121 1089 -109
+rect 1023 -497 1039 -121
+rect 1073 -497 1089 -121
+rect 1023 -509 1089 -497
+rect 1119 -121 1185 -109
+rect 1119 -497 1135 -121
+rect 1169 -497 1185 -121
+rect 1119 -509 1185 -497
+rect 1215 -121 1281 -109
+rect 1215 -497 1231 -121
+rect 1265 -497 1281 -121
+rect 1215 -509 1281 -497
+rect 1311 -121 1377 -109
+rect 1311 -497 1327 -121
+rect 1361 -497 1377 -121
+rect 1311 -509 1377 -497
+rect 1407 -121 1473 -109
+rect 1407 -497 1423 -121
+rect 1457 -497 1473 -121
+rect 1407 -509 1473 -497
+rect 1503 -121 1569 -109
+rect 1503 -497 1519 -121
+rect 1553 -497 1569 -121
+rect 1503 -509 1569 -497
+rect 1599 -121 1665 -109
+rect 1599 -497 1615 -121
+rect 1649 -497 1665 -121
+rect 1599 -509 1665 -497
+rect 1695 -121 1761 -109
+rect 1695 -497 1711 -121
+rect 1745 -497 1761 -121
+rect 1695 -509 1761 -497
+rect 1791 -121 1857 -109
+rect 1791 -497 1807 -121
+rect 1841 -497 1857 -121
+rect 1791 -509 1857 -497
+rect 1887 -121 1953 -109
+rect 1887 -497 1903 -121
+rect 1937 -497 1953 -121
+rect 1887 -509 1953 -497
+rect 1983 -121 2049 -109
+rect 1983 -497 1999 -121
+rect 2033 -497 2049 -121
+rect 1983 -509 2049 -497
+rect 2079 -121 2145 -109
+rect 2079 -497 2095 -121
+rect 2129 -497 2145 -121
+rect 2079 -509 2145 -497
+rect 2175 -121 2241 -109
+rect 2175 -497 2191 -121
+rect 2225 -497 2241 -121
+rect 2175 -509 2241 -497
+rect 2271 -121 2337 -109
+rect 2271 -497 2287 -121
+rect 2321 -497 2337 -121
+rect 2271 -509 2337 -497
+rect 2367 -121 2429 -109
+rect 2367 -497 2383 -121
+rect 2417 -497 2429 -121
+rect 2367 -509 2429 -497
+rect -2429 -739 -2367 -727
+rect -2429 -1115 -2417 -739
+rect -2383 -1115 -2367 -739
+rect -2429 -1127 -2367 -1115
+rect -2337 -739 -2271 -727
+rect -2337 -1115 -2321 -739
+rect -2287 -1115 -2271 -739
+rect -2337 -1127 -2271 -1115
+rect -2241 -739 -2175 -727
+rect -2241 -1115 -2225 -739
+rect -2191 -1115 -2175 -739
+rect -2241 -1127 -2175 -1115
+rect -2145 -739 -2079 -727
+rect -2145 -1115 -2129 -739
+rect -2095 -1115 -2079 -739
+rect -2145 -1127 -2079 -1115
+rect -2049 -739 -1983 -727
+rect -2049 -1115 -2033 -739
+rect -1999 -1115 -1983 -739
+rect -2049 -1127 -1983 -1115
+rect -1953 -739 -1887 -727
+rect -1953 -1115 -1937 -739
+rect -1903 -1115 -1887 -739
+rect -1953 -1127 -1887 -1115
+rect -1857 -739 -1791 -727
+rect -1857 -1115 -1841 -739
+rect -1807 -1115 -1791 -739
+rect -1857 -1127 -1791 -1115
+rect -1761 -739 -1695 -727
+rect -1761 -1115 -1745 -739
+rect -1711 -1115 -1695 -739
+rect -1761 -1127 -1695 -1115
+rect -1665 -739 -1599 -727
+rect -1665 -1115 -1649 -739
+rect -1615 -1115 -1599 -739
+rect -1665 -1127 -1599 -1115
+rect -1569 -739 -1503 -727
+rect -1569 -1115 -1553 -739
+rect -1519 -1115 -1503 -739
+rect -1569 -1127 -1503 -1115
+rect -1473 -739 -1407 -727
+rect -1473 -1115 -1457 -739
+rect -1423 -1115 -1407 -739
+rect -1473 -1127 -1407 -1115
+rect -1377 -739 -1311 -727
+rect -1377 -1115 -1361 -739
+rect -1327 -1115 -1311 -739
+rect -1377 -1127 -1311 -1115
+rect -1281 -739 -1215 -727
+rect -1281 -1115 -1265 -739
+rect -1231 -1115 -1215 -739
+rect -1281 -1127 -1215 -1115
+rect -1185 -739 -1119 -727
+rect -1185 -1115 -1169 -739
+rect -1135 -1115 -1119 -739
+rect -1185 -1127 -1119 -1115
+rect -1089 -739 -1023 -727
+rect -1089 -1115 -1073 -739
+rect -1039 -1115 -1023 -739
+rect -1089 -1127 -1023 -1115
+rect -993 -739 -927 -727
+rect -993 -1115 -977 -739
+rect -943 -1115 -927 -739
+rect -993 -1127 -927 -1115
+rect -897 -739 -831 -727
+rect -897 -1115 -881 -739
+rect -847 -1115 -831 -739
+rect -897 -1127 -831 -1115
+rect -801 -739 -735 -727
+rect -801 -1115 -785 -739
+rect -751 -1115 -735 -739
+rect -801 -1127 -735 -1115
+rect -705 -739 -639 -727
+rect -705 -1115 -689 -739
+rect -655 -1115 -639 -739
+rect -705 -1127 -639 -1115
+rect -609 -739 -543 -727
+rect -609 -1115 -593 -739
+rect -559 -1115 -543 -739
+rect -609 -1127 -543 -1115
+rect -513 -739 -447 -727
+rect -513 -1115 -497 -739
+rect -463 -1115 -447 -739
+rect -513 -1127 -447 -1115
+rect -417 -739 -351 -727
+rect -417 -1115 -401 -739
+rect -367 -1115 -351 -739
+rect -417 -1127 -351 -1115
+rect -321 -739 -255 -727
+rect -321 -1115 -305 -739
+rect -271 -1115 -255 -739
+rect -321 -1127 -255 -1115
+rect -225 -739 -159 -727
+rect -225 -1115 -209 -739
+rect -175 -1115 -159 -739
+rect -225 -1127 -159 -1115
+rect -129 -739 -63 -727
+rect -129 -1115 -113 -739
+rect -79 -1115 -63 -739
+rect -129 -1127 -63 -1115
+rect -33 -739 33 -727
+rect -33 -1115 -17 -739
+rect 17 -1115 33 -739
+rect -33 -1127 33 -1115
+rect 63 -739 129 -727
+rect 63 -1115 79 -739
+rect 113 -1115 129 -739
+rect 63 -1127 129 -1115
+rect 159 -739 225 -727
+rect 159 -1115 175 -739
+rect 209 -1115 225 -739
+rect 159 -1127 225 -1115
+rect 255 -739 321 -727
+rect 255 -1115 271 -739
+rect 305 -1115 321 -739
+rect 255 -1127 321 -1115
+rect 351 -739 417 -727
+rect 351 -1115 367 -739
+rect 401 -1115 417 -739
+rect 351 -1127 417 -1115
+rect 447 -739 513 -727
+rect 447 -1115 463 -739
+rect 497 -1115 513 -739
+rect 447 -1127 513 -1115
+rect 543 -739 609 -727
+rect 543 -1115 559 -739
+rect 593 -1115 609 -739
+rect 543 -1127 609 -1115
+rect 639 -739 705 -727
+rect 639 -1115 655 -739
+rect 689 -1115 705 -739
+rect 639 -1127 705 -1115
+rect 735 -739 801 -727
+rect 735 -1115 751 -739
+rect 785 -1115 801 -739
+rect 735 -1127 801 -1115
+rect 831 -739 897 -727
+rect 831 -1115 847 -739
+rect 881 -1115 897 -739
+rect 831 -1127 897 -1115
+rect 927 -739 993 -727
+rect 927 -1115 943 -739
+rect 977 -1115 993 -739
+rect 927 -1127 993 -1115
+rect 1023 -739 1089 -727
+rect 1023 -1115 1039 -739
+rect 1073 -1115 1089 -739
+rect 1023 -1127 1089 -1115
+rect 1119 -739 1185 -727
+rect 1119 -1115 1135 -739
+rect 1169 -1115 1185 -739
+rect 1119 -1127 1185 -1115
+rect 1215 -739 1281 -727
+rect 1215 -1115 1231 -739
+rect 1265 -1115 1281 -739
+rect 1215 -1127 1281 -1115
+rect 1311 -739 1377 -727
+rect 1311 -1115 1327 -739
+rect 1361 -1115 1377 -739
+rect 1311 -1127 1377 -1115
+rect 1407 -739 1473 -727
+rect 1407 -1115 1423 -739
+rect 1457 -1115 1473 -739
+rect 1407 -1127 1473 -1115
+rect 1503 -739 1569 -727
+rect 1503 -1115 1519 -739
+rect 1553 -1115 1569 -739
+rect 1503 -1127 1569 -1115
+rect 1599 -739 1665 -727
+rect 1599 -1115 1615 -739
+rect 1649 -1115 1665 -739
+rect 1599 -1127 1665 -1115
+rect 1695 -739 1761 -727
+rect 1695 -1115 1711 -739
+rect 1745 -1115 1761 -739
+rect 1695 -1127 1761 -1115
+rect 1791 -739 1857 -727
+rect 1791 -1115 1807 -739
+rect 1841 -1115 1857 -739
+rect 1791 -1127 1857 -1115
+rect 1887 -739 1953 -727
+rect 1887 -1115 1903 -739
+rect 1937 -1115 1953 -739
+rect 1887 -1127 1953 -1115
+rect 1983 -739 2049 -727
+rect 1983 -1115 1999 -739
+rect 2033 -1115 2049 -739
+rect 1983 -1127 2049 -1115
+rect 2079 -739 2145 -727
+rect 2079 -1115 2095 -739
+rect 2129 -1115 2145 -739
+rect 2079 -1127 2145 -1115
+rect 2175 -739 2241 -727
+rect 2175 -1115 2191 -739
+rect 2225 -1115 2241 -739
+rect 2175 -1127 2241 -1115
+rect 2271 -739 2337 -727
+rect 2271 -1115 2287 -739
+rect 2321 -1115 2337 -739
+rect 2271 -1127 2337 -1115
+rect 2367 -739 2429 -727
+rect 2367 -1115 2383 -739
+rect 2417 -1115 2429 -739
+rect 2367 -1127 2429 -1115
+<< ndiffc >>
+rect -2417 739 -2383 1115
+rect -2321 739 -2287 1115
+rect -2225 739 -2191 1115
+rect -2129 739 -2095 1115
+rect -2033 739 -1999 1115
+rect -1937 739 -1903 1115
+rect -1841 739 -1807 1115
+rect -1745 739 -1711 1115
+rect -1649 739 -1615 1115
+rect -1553 739 -1519 1115
+rect -1457 739 -1423 1115
+rect -1361 739 -1327 1115
+rect -1265 739 -1231 1115
+rect -1169 739 -1135 1115
+rect -1073 739 -1039 1115
+rect -977 739 -943 1115
+rect -881 739 -847 1115
+rect -785 739 -751 1115
+rect -689 739 -655 1115
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect 655 739 689 1115
+rect 751 739 785 1115
+rect 847 739 881 1115
+rect 943 739 977 1115
+rect 1039 739 1073 1115
+rect 1135 739 1169 1115
+rect 1231 739 1265 1115
+rect 1327 739 1361 1115
+rect 1423 739 1457 1115
+rect 1519 739 1553 1115
+rect 1615 739 1649 1115
+rect 1711 739 1745 1115
+rect 1807 739 1841 1115
+rect 1903 739 1937 1115
+rect 1999 739 2033 1115
+rect 2095 739 2129 1115
+rect 2191 739 2225 1115
+rect 2287 739 2321 1115
+rect 2383 739 2417 1115
+rect -2417 121 -2383 497
+rect -2321 121 -2287 497
+rect -2225 121 -2191 497
+rect -2129 121 -2095 497
+rect -2033 121 -1999 497
+rect -1937 121 -1903 497
+rect -1841 121 -1807 497
+rect -1745 121 -1711 497
+rect -1649 121 -1615 497
+rect -1553 121 -1519 497
+rect -1457 121 -1423 497
+rect -1361 121 -1327 497
+rect -1265 121 -1231 497
+rect -1169 121 -1135 497
+rect -1073 121 -1039 497
+rect -977 121 -943 497
+rect -881 121 -847 497
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect 847 121 881 497
+rect 943 121 977 497
+rect 1039 121 1073 497
+rect 1135 121 1169 497
+rect 1231 121 1265 497
+rect 1327 121 1361 497
+rect 1423 121 1457 497
+rect 1519 121 1553 497
+rect 1615 121 1649 497
+rect 1711 121 1745 497
+rect 1807 121 1841 497
+rect 1903 121 1937 497
+rect 1999 121 2033 497
+rect 2095 121 2129 497
+rect 2191 121 2225 497
+rect 2287 121 2321 497
+rect 2383 121 2417 497
+rect -2417 -497 -2383 -121
+rect -2321 -497 -2287 -121
+rect -2225 -497 -2191 -121
+rect -2129 -497 -2095 -121
+rect -2033 -497 -1999 -121
+rect -1937 -497 -1903 -121
+rect -1841 -497 -1807 -121
+rect -1745 -497 -1711 -121
+rect -1649 -497 -1615 -121
+rect -1553 -497 -1519 -121
+rect -1457 -497 -1423 -121
+rect -1361 -497 -1327 -121
+rect -1265 -497 -1231 -121
+rect -1169 -497 -1135 -121
+rect -1073 -497 -1039 -121
+rect -977 -497 -943 -121
+rect -881 -497 -847 -121
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect 847 -497 881 -121
+rect 943 -497 977 -121
+rect 1039 -497 1073 -121
+rect 1135 -497 1169 -121
+rect 1231 -497 1265 -121
+rect 1327 -497 1361 -121
+rect 1423 -497 1457 -121
+rect 1519 -497 1553 -121
+rect 1615 -497 1649 -121
+rect 1711 -497 1745 -121
+rect 1807 -497 1841 -121
+rect 1903 -497 1937 -121
+rect 1999 -497 2033 -121
+rect 2095 -497 2129 -121
+rect 2191 -497 2225 -121
+rect 2287 -497 2321 -121
+rect 2383 -497 2417 -121
+rect -2417 -1115 -2383 -739
+rect -2321 -1115 -2287 -739
+rect -2225 -1115 -2191 -739
+rect -2129 -1115 -2095 -739
+rect -2033 -1115 -1999 -739
+rect -1937 -1115 -1903 -739
+rect -1841 -1115 -1807 -739
+rect -1745 -1115 -1711 -739
+rect -1649 -1115 -1615 -739
+rect -1553 -1115 -1519 -739
+rect -1457 -1115 -1423 -739
+rect -1361 -1115 -1327 -739
+rect -1265 -1115 -1231 -739
+rect -1169 -1115 -1135 -739
+rect -1073 -1115 -1039 -739
+rect -977 -1115 -943 -739
+rect -881 -1115 -847 -739
+rect -785 -1115 -751 -739
+rect -689 -1115 -655 -739
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+rect 655 -1115 689 -739
+rect 751 -1115 785 -739
+rect 847 -1115 881 -739
+rect 943 -1115 977 -739
+rect 1039 -1115 1073 -739
+rect 1135 -1115 1169 -739
+rect 1231 -1115 1265 -739
+rect 1327 -1115 1361 -739
+rect 1423 -1115 1457 -739
+rect 1519 -1115 1553 -739
+rect 1615 -1115 1649 -739
+rect 1711 -1115 1745 -739
+rect 1807 -1115 1841 -739
+rect 1903 -1115 1937 -739
+rect 1999 -1115 2033 -739
+rect 2095 -1115 2129 -739
+rect 2191 -1115 2225 -739
+rect 2287 -1115 2321 -739
+rect 2383 -1115 2417 -739
+<< psubdiff >>
+rect -2531 1267 -2435 1301
+rect 2435 1267 2531 1301
+rect -2531 1205 -2497 1267
+rect 2497 1205 2531 1267
+rect -2531 -1267 -2497 -1205
+rect 2497 -1267 2531 -1205
+rect -2531 -1301 -2435 -1267
+rect 2435 -1301 2531 -1267
+<< psubdiffcont >>
+rect -2435 1267 2435 1301
+rect -2531 -1205 -2497 1205
+rect 2497 -1205 2531 1205
+rect -2435 -1301 2435 -1267
+<< poly >>
+rect -2385 1199 -2319 1215
+rect -2385 1165 -2369 1199
+rect -2335 1165 -2319 1199
+rect -2385 1149 -2319 1165
+rect -2193 1199 -2127 1215
+rect -2193 1165 -2177 1199
+rect -2143 1165 -2127 1199
+rect -2367 1127 -2337 1149
+rect -2271 1127 -2241 1153
+rect -2193 1149 -2127 1165
+rect -2001 1199 -1935 1215
+rect -2001 1165 -1985 1199
+rect -1951 1165 -1935 1199
+rect -2175 1127 -2145 1149
+rect -2079 1127 -2049 1153
+rect -2001 1149 -1935 1165
+rect -1809 1199 -1743 1215
+rect -1809 1165 -1793 1199
+rect -1759 1165 -1743 1199
+rect -1983 1127 -1953 1149
+rect -1887 1127 -1857 1153
+rect -1809 1149 -1743 1165
+rect -1617 1199 -1551 1215
+rect -1617 1165 -1601 1199
+rect -1567 1165 -1551 1199
+rect -1791 1127 -1761 1149
+rect -1695 1127 -1665 1153
+rect -1617 1149 -1551 1165
+rect -1425 1199 -1359 1215
+rect -1425 1165 -1409 1199
+rect -1375 1165 -1359 1199
+rect -1599 1127 -1569 1149
+rect -1503 1127 -1473 1153
+rect -1425 1149 -1359 1165
+rect -1233 1199 -1167 1215
+rect -1233 1165 -1217 1199
+rect -1183 1165 -1167 1199
+rect -1407 1127 -1377 1149
+rect -1311 1127 -1281 1153
+rect -1233 1149 -1167 1165
+rect -1041 1199 -975 1215
+rect -1041 1165 -1025 1199
+rect -991 1165 -975 1199
+rect -1215 1127 -1185 1149
+rect -1119 1127 -1089 1153
+rect -1041 1149 -975 1165
+rect -849 1199 -783 1215
+rect -849 1165 -833 1199
+rect -799 1165 -783 1199
+rect -1023 1127 -993 1149
+rect -927 1127 -897 1153
+rect -849 1149 -783 1165
+rect -657 1199 -591 1215
+rect -657 1165 -641 1199
+rect -607 1165 -591 1199
+rect -831 1127 -801 1149
+rect -735 1127 -705 1153
+rect -657 1149 -591 1165
+rect -465 1199 -399 1215
+rect -465 1165 -449 1199
+rect -415 1165 -399 1199
+rect -639 1127 -609 1149
+rect -543 1127 -513 1153
+rect -465 1149 -399 1165
+rect -273 1199 -207 1215
+rect -273 1165 -257 1199
+rect -223 1165 -207 1199
+rect -447 1127 -417 1149
+rect -351 1127 -321 1153
+rect -273 1149 -207 1165
+rect -81 1199 -15 1215
+rect -81 1165 -65 1199
+rect -31 1165 -15 1199
+rect -255 1127 -225 1149
+rect -159 1127 -129 1153
+rect -81 1149 -15 1165
+rect 111 1199 177 1215
+rect 111 1165 127 1199
+rect 161 1165 177 1199
+rect -63 1127 -33 1149
+rect 33 1127 63 1153
+rect 111 1149 177 1165
+rect 303 1199 369 1215
+rect 303 1165 319 1199
+rect 353 1165 369 1199
+rect 129 1127 159 1149
+rect 225 1127 255 1153
+rect 303 1149 369 1165
+rect 495 1199 561 1215
+rect 495 1165 511 1199
+rect 545 1165 561 1199
+rect 321 1127 351 1149
+rect 417 1127 447 1153
+rect 495 1149 561 1165
+rect 687 1199 753 1215
+rect 687 1165 703 1199
+rect 737 1165 753 1199
+rect 513 1127 543 1149
+rect 609 1127 639 1153
+rect 687 1149 753 1165
+rect 879 1199 945 1215
+rect 879 1165 895 1199
+rect 929 1165 945 1199
+rect 705 1127 735 1149
+rect 801 1127 831 1153
+rect 879 1149 945 1165
+rect 1071 1199 1137 1215
+rect 1071 1165 1087 1199
+rect 1121 1165 1137 1199
+rect 897 1127 927 1149
+rect 993 1127 1023 1153
+rect 1071 1149 1137 1165
+rect 1263 1199 1329 1215
+rect 1263 1165 1279 1199
+rect 1313 1165 1329 1199
+rect 1089 1127 1119 1149
+rect 1185 1127 1215 1153
+rect 1263 1149 1329 1165
+rect 1455 1199 1521 1215
+rect 1455 1165 1471 1199
+rect 1505 1165 1521 1199
+rect 1281 1127 1311 1149
+rect 1377 1127 1407 1153
+rect 1455 1149 1521 1165
+rect 1647 1199 1713 1215
+rect 1647 1165 1663 1199
+rect 1697 1165 1713 1199
+rect 1473 1127 1503 1149
+rect 1569 1127 1599 1153
+rect 1647 1149 1713 1165
+rect 1839 1199 1905 1215
+rect 1839 1165 1855 1199
+rect 1889 1165 1905 1199
+rect 1665 1127 1695 1149
+rect 1761 1127 1791 1153
+rect 1839 1149 1905 1165
+rect 2031 1199 2097 1215
+rect 2031 1165 2047 1199
+rect 2081 1165 2097 1199
+rect 1857 1127 1887 1149
+rect 1953 1127 1983 1153
+rect 2031 1149 2097 1165
+rect 2223 1199 2289 1215
+rect 2223 1165 2239 1199
+rect 2273 1165 2289 1199
+rect 2049 1127 2079 1149
+rect 2145 1127 2175 1153
+rect 2223 1149 2289 1165
+rect 2241 1127 2271 1149
+rect 2337 1127 2367 1153
+rect -2367 701 -2337 727
+rect -2271 705 -2241 727
+rect -2289 689 -2223 705
+rect -2175 701 -2145 727
+rect -2079 705 -2049 727
+rect -2289 655 -2273 689
+rect -2239 655 -2223 689
+rect -2289 639 -2223 655
+rect -2097 689 -2031 705
+rect -1983 701 -1953 727
+rect -1887 705 -1857 727
+rect -2097 655 -2081 689
+rect -2047 655 -2031 689
+rect -2097 639 -2031 655
+rect -1905 689 -1839 705
+rect -1791 701 -1761 727
+rect -1695 705 -1665 727
+rect -1905 655 -1889 689
+rect -1855 655 -1839 689
+rect -1905 639 -1839 655
+rect -1713 689 -1647 705
+rect -1599 701 -1569 727
+rect -1503 705 -1473 727
+rect -1713 655 -1697 689
+rect -1663 655 -1647 689
+rect -1713 639 -1647 655
+rect -1521 689 -1455 705
+rect -1407 701 -1377 727
+rect -1311 705 -1281 727
+rect -1521 655 -1505 689
+rect -1471 655 -1455 689
+rect -1521 639 -1455 655
+rect -1329 689 -1263 705
+rect -1215 701 -1185 727
+rect -1119 705 -1089 727
+rect -1329 655 -1313 689
+rect -1279 655 -1263 689
+rect -1329 639 -1263 655
+rect -1137 689 -1071 705
+rect -1023 701 -993 727
+rect -927 705 -897 727
+rect -1137 655 -1121 689
+rect -1087 655 -1071 689
+rect -1137 639 -1071 655
+rect -945 689 -879 705
+rect -831 701 -801 727
+rect -735 705 -705 727
+rect -945 655 -929 689
+rect -895 655 -879 689
+rect -945 639 -879 655
+rect -753 689 -687 705
+rect -639 701 -609 727
+rect -543 705 -513 727
+rect -753 655 -737 689
+rect -703 655 -687 689
+rect -753 639 -687 655
+rect -561 689 -495 705
+rect -447 701 -417 727
+rect -351 705 -321 727
+rect -561 655 -545 689
+rect -511 655 -495 689
+rect -561 639 -495 655
+rect -369 689 -303 705
+rect -255 701 -225 727
+rect -159 705 -129 727
+rect -369 655 -353 689
+rect -319 655 -303 689
+rect -369 639 -303 655
+rect -177 689 -111 705
+rect -63 701 -33 727
+rect 33 705 63 727
+rect -177 655 -161 689
+rect -127 655 -111 689
+rect -177 639 -111 655
+rect 15 689 81 705
+rect 129 701 159 727
+rect 225 705 255 727
+rect 15 655 31 689
+rect 65 655 81 689
+rect 15 639 81 655
+rect 207 689 273 705
+rect 321 701 351 727
+rect 417 705 447 727
+rect 207 655 223 689
+rect 257 655 273 689
+rect 207 639 273 655
+rect 399 689 465 705
+rect 513 701 543 727
+rect 609 705 639 727
+rect 399 655 415 689
+rect 449 655 465 689
+rect 399 639 465 655
+rect 591 689 657 705
+rect 705 701 735 727
+rect 801 705 831 727
+rect 591 655 607 689
+rect 641 655 657 689
+rect 591 639 657 655
+rect 783 689 849 705
+rect 897 701 927 727
+rect 993 705 1023 727
+rect 783 655 799 689
+rect 833 655 849 689
+rect 783 639 849 655
+rect 975 689 1041 705
+rect 1089 701 1119 727
+rect 1185 705 1215 727
+rect 975 655 991 689
+rect 1025 655 1041 689
+rect 975 639 1041 655
+rect 1167 689 1233 705
+rect 1281 701 1311 727
+rect 1377 705 1407 727
+rect 1167 655 1183 689
+rect 1217 655 1233 689
+rect 1167 639 1233 655
+rect 1359 689 1425 705
+rect 1473 701 1503 727
+rect 1569 705 1599 727
+rect 1359 655 1375 689
+rect 1409 655 1425 689
+rect 1359 639 1425 655
+rect 1551 689 1617 705
+rect 1665 701 1695 727
+rect 1761 705 1791 727
+rect 1551 655 1567 689
+rect 1601 655 1617 689
+rect 1551 639 1617 655
+rect 1743 689 1809 705
+rect 1857 701 1887 727
+rect 1953 705 1983 727
+rect 1743 655 1759 689
+rect 1793 655 1809 689
+rect 1743 639 1809 655
+rect 1935 689 2001 705
+rect 2049 701 2079 727
+rect 2145 705 2175 727
+rect 1935 655 1951 689
+rect 1985 655 2001 689
+rect 1935 639 2001 655
+rect 2127 689 2193 705
+rect 2241 701 2271 727
+rect 2337 705 2367 727
+rect 2127 655 2143 689
+rect 2177 655 2193 689
+rect 2127 639 2193 655
+rect 2319 689 2385 705
+rect 2319 655 2335 689
+rect 2369 655 2385 689
+rect 2319 639 2385 655
+rect -2289 581 -2223 597
+rect -2289 547 -2273 581
+rect -2239 547 -2223 581
+rect -2367 509 -2337 535
+rect -2289 531 -2223 547
+rect -2097 581 -2031 597
+rect -2097 547 -2081 581
+rect -2047 547 -2031 581
+rect -2271 509 -2241 531
+rect -2175 509 -2145 535
+rect -2097 531 -2031 547
+rect -1905 581 -1839 597
+rect -1905 547 -1889 581
+rect -1855 547 -1839 581
+rect -2079 509 -2049 531
+rect -1983 509 -1953 535
+rect -1905 531 -1839 547
+rect -1713 581 -1647 597
+rect -1713 547 -1697 581
+rect -1663 547 -1647 581
+rect -1887 509 -1857 531
+rect -1791 509 -1761 535
+rect -1713 531 -1647 547
+rect -1521 581 -1455 597
+rect -1521 547 -1505 581
+rect -1471 547 -1455 581
+rect -1695 509 -1665 531
+rect -1599 509 -1569 535
+rect -1521 531 -1455 547
+rect -1329 581 -1263 597
+rect -1329 547 -1313 581
+rect -1279 547 -1263 581
+rect -1503 509 -1473 531
+rect -1407 509 -1377 535
+rect -1329 531 -1263 547
+rect -1137 581 -1071 597
+rect -1137 547 -1121 581
+rect -1087 547 -1071 581
+rect -1311 509 -1281 531
+rect -1215 509 -1185 535
+rect -1137 531 -1071 547
+rect -945 581 -879 597
+rect -945 547 -929 581
+rect -895 547 -879 581
+rect -1119 509 -1089 531
+rect -1023 509 -993 535
+rect -945 531 -879 547
+rect -753 581 -687 597
+rect -753 547 -737 581
+rect -703 547 -687 581
+rect -927 509 -897 531
+rect -831 509 -801 535
+rect -753 531 -687 547
+rect -561 581 -495 597
+rect -561 547 -545 581
+rect -511 547 -495 581
+rect -735 509 -705 531
+rect -639 509 -609 535
+rect -561 531 -495 547
+rect -369 581 -303 597
+rect -369 547 -353 581
+rect -319 547 -303 581
+rect -543 509 -513 531
+rect -447 509 -417 535
+rect -369 531 -303 547
+rect -177 581 -111 597
+rect -177 547 -161 581
+rect -127 547 -111 581
+rect -351 509 -321 531
+rect -255 509 -225 535
+rect -177 531 -111 547
+rect 15 581 81 597
+rect 15 547 31 581
+rect 65 547 81 581
+rect -159 509 -129 531
+rect -63 509 -33 535
+rect 15 531 81 547
+rect 207 581 273 597
+rect 207 547 223 581
+rect 257 547 273 581
+rect 33 509 63 531
+rect 129 509 159 535
+rect 207 531 273 547
+rect 399 581 465 597
+rect 399 547 415 581
+rect 449 547 465 581
+rect 225 509 255 531
+rect 321 509 351 535
+rect 399 531 465 547
+rect 591 581 657 597
+rect 591 547 607 581
+rect 641 547 657 581
+rect 417 509 447 531
+rect 513 509 543 535
+rect 591 531 657 547
+rect 783 581 849 597
+rect 783 547 799 581
+rect 833 547 849 581
+rect 609 509 639 531
+rect 705 509 735 535
+rect 783 531 849 547
+rect 975 581 1041 597
+rect 975 547 991 581
+rect 1025 547 1041 581
+rect 801 509 831 531
+rect 897 509 927 535
+rect 975 531 1041 547
+rect 1167 581 1233 597
+rect 1167 547 1183 581
+rect 1217 547 1233 581
+rect 993 509 1023 531
+rect 1089 509 1119 535
+rect 1167 531 1233 547
+rect 1359 581 1425 597
+rect 1359 547 1375 581
+rect 1409 547 1425 581
+rect 1185 509 1215 531
+rect 1281 509 1311 535
+rect 1359 531 1425 547
+rect 1551 581 1617 597
+rect 1551 547 1567 581
+rect 1601 547 1617 581
+rect 1377 509 1407 531
+rect 1473 509 1503 535
+rect 1551 531 1617 547
+rect 1743 581 1809 597
+rect 1743 547 1759 581
+rect 1793 547 1809 581
+rect 1569 509 1599 531
+rect 1665 509 1695 535
+rect 1743 531 1809 547
+rect 1935 581 2001 597
+rect 1935 547 1951 581
+rect 1985 547 2001 581
+rect 1761 509 1791 531
+rect 1857 509 1887 535
+rect 1935 531 2001 547
+rect 2127 581 2193 597
+rect 2127 547 2143 581
+rect 2177 547 2193 581
+rect 1953 509 1983 531
+rect 2049 509 2079 535
+rect 2127 531 2193 547
+rect 2319 581 2385 597
+rect 2319 547 2335 581
+rect 2369 547 2385 581
+rect 2145 509 2175 531
+rect 2241 509 2271 535
+rect 2319 531 2385 547
+rect 2337 509 2367 531
+rect -2367 87 -2337 109
+rect -2385 71 -2319 87
+rect -2271 83 -2241 109
+rect -2175 87 -2145 109
+rect -2385 37 -2369 71
+rect -2335 37 -2319 71
+rect -2385 21 -2319 37
+rect -2193 71 -2127 87
+rect -2079 83 -2049 109
+rect -1983 87 -1953 109
+rect -2193 37 -2177 71
+rect -2143 37 -2127 71
+rect -2193 21 -2127 37
+rect -2001 71 -1935 87
+rect -1887 83 -1857 109
+rect -1791 87 -1761 109
+rect -2001 37 -1985 71
+rect -1951 37 -1935 71
+rect -2001 21 -1935 37
+rect -1809 71 -1743 87
+rect -1695 83 -1665 109
+rect -1599 87 -1569 109
+rect -1809 37 -1793 71
+rect -1759 37 -1743 71
+rect -1809 21 -1743 37
+rect -1617 71 -1551 87
+rect -1503 83 -1473 109
+rect -1407 87 -1377 109
+rect -1617 37 -1601 71
+rect -1567 37 -1551 71
+rect -1617 21 -1551 37
+rect -1425 71 -1359 87
+rect -1311 83 -1281 109
+rect -1215 87 -1185 109
+rect -1425 37 -1409 71
+rect -1375 37 -1359 71
+rect -1425 21 -1359 37
+rect -1233 71 -1167 87
+rect -1119 83 -1089 109
+rect -1023 87 -993 109
+rect -1233 37 -1217 71
+rect -1183 37 -1167 71
+rect -1233 21 -1167 37
+rect -1041 71 -975 87
+rect -927 83 -897 109
+rect -831 87 -801 109
+rect -1041 37 -1025 71
+rect -991 37 -975 71
+rect -1041 21 -975 37
+rect -849 71 -783 87
+rect -735 83 -705 109
+rect -639 87 -609 109
+rect -849 37 -833 71
+rect -799 37 -783 71
+rect -849 21 -783 37
+rect -657 71 -591 87
+rect -543 83 -513 109
+rect -447 87 -417 109
+rect -657 37 -641 71
+rect -607 37 -591 71
+rect -657 21 -591 37
+rect -465 71 -399 87
+rect -351 83 -321 109
+rect -255 87 -225 109
+rect -465 37 -449 71
+rect -415 37 -399 71
+rect -465 21 -399 37
+rect -273 71 -207 87
+rect -159 83 -129 109
+rect -63 87 -33 109
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -273 21 -207 37
+rect -81 71 -15 87
+rect 33 83 63 109
+rect 129 87 159 109
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect -81 21 -15 37
+rect 111 71 177 87
+rect 225 83 255 109
+rect 321 87 351 109
+rect 111 37 127 71
+rect 161 37 177 71
+rect 111 21 177 37
+rect 303 71 369 87
+rect 417 83 447 109
+rect 513 87 543 109
+rect 303 37 319 71
+rect 353 37 369 71
+rect 303 21 369 37
+rect 495 71 561 87
+rect 609 83 639 109
+rect 705 87 735 109
+rect 495 37 511 71
+rect 545 37 561 71
+rect 495 21 561 37
+rect 687 71 753 87
+rect 801 83 831 109
+rect 897 87 927 109
+rect 687 37 703 71
+rect 737 37 753 71
+rect 687 21 753 37
+rect 879 71 945 87
+rect 993 83 1023 109
+rect 1089 87 1119 109
+rect 879 37 895 71
+rect 929 37 945 71
+rect 879 21 945 37
+rect 1071 71 1137 87
+rect 1185 83 1215 109
+rect 1281 87 1311 109
+rect 1071 37 1087 71
+rect 1121 37 1137 71
+rect 1071 21 1137 37
+rect 1263 71 1329 87
+rect 1377 83 1407 109
+rect 1473 87 1503 109
+rect 1263 37 1279 71
+rect 1313 37 1329 71
+rect 1263 21 1329 37
+rect 1455 71 1521 87
+rect 1569 83 1599 109
+rect 1665 87 1695 109
+rect 1455 37 1471 71
+rect 1505 37 1521 71
+rect 1455 21 1521 37
+rect 1647 71 1713 87
+rect 1761 83 1791 109
+rect 1857 87 1887 109
+rect 1647 37 1663 71
+rect 1697 37 1713 71
+rect 1647 21 1713 37
+rect 1839 71 1905 87
+rect 1953 83 1983 109
+rect 2049 87 2079 109
+rect 1839 37 1855 71
+rect 1889 37 1905 71
+rect 1839 21 1905 37
+rect 2031 71 2097 87
+rect 2145 83 2175 109
+rect 2241 87 2271 109
+rect 2031 37 2047 71
+rect 2081 37 2097 71
+rect 2031 21 2097 37
+rect 2223 71 2289 87
+rect 2337 83 2367 109
+rect 2223 37 2239 71
+rect 2273 37 2289 71
+rect 2223 21 2289 37
+rect -2385 -37 -2319 -21
+rect -2385 -71 -2369 -37
+rect -2335 -71 -2319 -37
+rect -2385 -87 -2319 -71
+rect -2193 -37 -2127 -21
+rect -2193 -71 -2177 -37
+rect -2143 -71 -2127 -37
+rect -2367 -109 -2337 -87
+rect -2271 -109 -2241 -83
+rect -2193 -87 -2127 -71
+rect -2001 -37 -1935 -21
+rect -2001 -71 -1985 -37
+rect -1951 -71 -1935 -37
+rect -2175 -109 -2145 -87
+rect -2079 -109 -2049 -83
+rect -2001 -87 -1935 -71
+rect -1809 -37 -1743 -21
+rect -1809 -71 -1793 -37
+rect -1759 -71 -1743 -37
+rect -1983 -109 -1953 -87
+rect -1887 -109 -1857 -83
+rect -1809 -87 -1743 -71
+rect -1617 -37 -1551 -21
+rect -1617 -71 -1601 -37
+rect -1567 -71 -1551 -37
+rect -1791 -109 -1761 -87
+rect -1695 -109 -1665 -83
+rect -1617 -87 -1551 -71
+rect -1425 -37 -1359 -21
+rect -1425 -71 -1409 -37
+rect -1375 -71 -1359 -37
+rect -1599 -109 -1569 -87
+rect -1503 -109 -1473 -83
+rect -1425 -87 -1359 -71
+rect -1233 -37 -1167 -21
+rect -1233 -71 -1217 -37
+rect -1183 -71 -1167 -37
+rect -1407 -109 -1377 -87
+rect -1311 -109 -1281 -83
+rect -1233 -87 -1167 -71
+rect -1041 -37 -975 -21
+rect -1041 -71 -1025 -37
+rect -991 -71 -975 -37
+rect -1215 -109 -1185 -87
+rect -1119 -109 -1089 -83
+rect -1041 -87 -975 -71
+rect -849 -37 -783 -21
+rect -849 -71 -833 -37
+rect -799 -71 -783 -37
+rect -1023 -109 -993 -87
+rect -927 -109 -897 -83
+rect -849 -87 -783 -71
+rect -657 -37 -591 -21
+rect -657 -71 -641 -37
+rect -607 -71 -591 -37
+rect -831 -109 -801 -87
+rect -735 -109 -705 -83
+rect -657 -87 -591 -71
+rect -465 -37 -399 -21
+rect -465 -71 -449 -37
+rect -415 -71 -399 -37
+rect -639 -109 -609 -87
+rect -543 -109 -513 -83
+rect -465 -87 -399 -71
+rect -273 -37 -207 -21
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -447 -109 -417 -87
+rect -351 -109 -321 -83
+rect -273 -87 -207 -71
+rect -81 -37 -15 -21
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect -255 -109 -225 -87
+rect -159 -109 -129 -83
+rect -81 -87 -15 -71
+rect 111 -37 177 -21
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect -63 -109 -33 -87
+rect 33 -109 63 -83
+rect 111 -87 177 -71
+rect 303 -37 369 -21
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect 129 -109 159 -87
+rect 225 -109 255 -83
+rect 303 -87 369 -71
+rect 495 -37 561 -21
+rect 495 -71 511 -37
+rect 545 -71 561 -37
+rect 321 -109 351 -87
+rect 417 -109 447 -83
+rect 495 -87 561 -71
+rect 687 -37 753 -21
+rect 687 -71 703 -37
+rect 737 -71 753 -37
+rect 513 -109 543 -87
+rect 609 -109 639 -83
+rect 687 -87 753 -71
+rect 879 -37 945 -21
+rect 879 -71 895 -37
+rect 929 -71 945 -37
+rect 705 -109 735 -87
+rect 801 -109 831 -83
+rect 879 -87 945 -71
+rect 1071 -37 1137 -21
+rect 1071 -71 1087 -37
+rect 1121 -71 1137 -37
+rect 897 -109 927 -87
+rect 993 -109 1023 -83
+rect 1071 -87 1137 -71
+rect 1263 -37 1329 -21
+rect 1263 -71 1279 -37
+rect 1313 -71 1329 -37
+rect 1089 -109 1119 -87
+rect 1185 -109 1215 -83
+rect 1263 -87 1329 -71
+rect 1455 -37 1521 -21
+rect 1455 -71 1471 -37
+rect 1505 -71 1521 -37
+rect 1281 -109 1311 -87
+rect 1377 -109 1407 -83
+rect 1455 -87 1521 -71
+rect 1647 -37 1713 -21
+rect 1647 -71 1663 -37
+rect 1697 -71 1713 -37
+rect 1473 -109 1503 -87
+rect 1569 -109 1599 -83
+rect 1647 -87 1713 -71
+rect 1839 -37 1905 -21
+rect 1839 -71 1855 -37
+rect 1889 -71 1905 -37
+rect 1665 -109 1695 -87
+rect 1761 -109 1791 -83
+rect 1839 -87 1905 -71
+rect 2031 -37 2097 -21
+rect 2031 -71 2047 -37
+rect 2081 -71 2097 -37
+rect 1857 -109 1887 -87
+rect 1953 -109 1983 -83
+rect 2031 -87 2097 -71
+rect 2223 -37 2289 -21
+rect 2223 -71 2239 -37
+rect 2273 -71 2289 -37
+rect 2049 -109 2079 -87
+rect 2145 -109 2175 -83
+rect 2223 -87 2289 -71
+rect 2241 -109 2271 -87
+rect 2337 -109 2367 -83
+rect -2367 -535 -2337 -509
+rect -2271 -531 -2241 -509
+rect -2289 -547 -2223 -531
+rect -2175 -535 -2145 -509
+rect -2079 -531 -2049 -509
+rect -2289 -581 -2273 -547
+rect -2239 -581 -2223 -547
+rect -2289 -597 -2223 -581
+rect -2097 -547 -2031 -531
+rect -1983 -535 -1953 -509
+rect -1887 -531 -1857 -509
+rect -2097 -581 -2081 -547
+rect -2047 -581 -2031 -547
+rect -2097 -597 -2031 -581
+rect -1905 -547 -1839 -531
+rect -1791 -535 -1761 -509
+rect -1695 -531 -1665 -509
+rect -1905 -581 -1889 -547
+rect -1855 -581 -1839 -547
+rect -1905 -597 -1839 -581
+rect -1713 -547 -1647 -531
+rect -1599 -535 -1569 -509
+rect -1503 -531 -1473 -509
+rect -1713 -581 -1697 -547
+rect -1663 -581 -1647 -547
+rect -1713 -597 -1647 -581
+rect -1521 -547 -1455 -531
+rect -1407 -535 -1377 -509
+rect -1311 -531 -1281 -509
+rect -1521 -581 -1505 -547
+rect -1471 -581 -1455 -547
+rect -1521 -597 -1455 -581
+rect -1329 -547 -1263 -531
+rect -1215 -535 -1185 -509
+rect -1119 -531 -1089 -509
+rect -1329 -581 -1313 -547
+rect -1279 -581 -1263 -547
+rect -1329 -597 -1263 -581
+rect -1137 -547 -1071 -531
+rect -1023 -535 -993 -509
+rect -927 -531 -897 -509
+rect -1137 -581 -1121 -547
+rect -1087 -581 -1071 -547
+rect -1137 -597 -1071 -581
+rect -945 -547 -879 -531
+rect -831 -535 -801 -509
+rect -735 -531 -705 -509
+rect -945 -581 -929 -547
+rect -895 -581 -879 -547
+rect -945 -597 -879 -581
+rect -753 -547 -687 -531
+rect -639 -535 -609 -509
+rect -543 -531 -513 -509
+rect -753 -581 -737 -547
+rect -703 -581 -687 -547
+rect -753 -597 -687 -581
+rect -561 -547 -495 -531
+rect -447 -535 -417 -509
+rect -351 -531 -321 -509
+rect -561 -581 -545 -547
+rect -511 -581 -495 -547
+rect -561 -597 -495 -581
+rect -369 -547 -303 -531
+rect -255 -535 -225 -509
+rect -159 -531 -129 -509
+rect -369 -581 -353 -547
+rect -319 -581 -303 -547
+rect -369 -597 -303 -581
+rect -177 -547 -111 -531
+rect -63 -535 -33 -509
+rect 33 -531 63 -509
+rect -177 -581 -161 -547
+rect -127 -581 -111 -547
+rect -177 -597 -111 -581
+rect 15 -547 81 -531
+rect 129 -535 159 -509
+rect 225 -531 255 -509
+rect 15 -581 31 -547
+rect 65 -581 81 -547
+rect 15 -597 81 -581
+rect 207 -547 273 -531
+rect 321 -535 351 -509
+rect 417 -531 447 -509
+rect 207 -581 223 -547
+rect 257 -581 273 -547
+rect 207 -597 273 -581
+rect 399 -547 465 -531
+rect 513 -535 543 -509
+rect 609 -531 639 -509
+rect 399 -581 415 -547
+rect 449 -581 465 -547
+rect 399 -597 465 -581
+rect 591 -547 657 -531
+rect 705 -535 735 -509
+rect 801 -531 831 -509
+rect 591 -581 607 -547
+rect 641 -581 657 -547
+rect 591 -597 657 -581
+rect 783 -547 849 -531
+rect 897 -535 927 -509
+rect 993 -531 1023 -509
+rect 783 -581 799 -547
+rect 833 -581 849 -547
+rect 783 -597 849 -581
+rect 975 -547 1041 -531
+rect 1089 -535 1119 -509
+rect 1185 -531 1215 -509
+rect 975 -581 991 -547
+rect 1025 -581 1041 -547
+rect 975 -597 1041 -581
+rect 1167 -547 1233 -531
+rect 1281 -535 1311 -509
+rect 1377 -531 1407 -509
+rect 1167 -581 1183 -547
+rect 1217 -581 1233 -547
+rect 1167 -597 1233 -581
+rect 1359 -547 1425 -531
+rect 1473 -535 1503 -509
+rect 1569 -531 1599 -509
+rect 1359 -581 1375 -547
+rect 1409 -581 1425 -547
+rect 1359 -597 1425 -581
+rect 1551 -547 1617 -531
+rect 1665 -535 1695 -509
+rect 1761 -531 1791 -509
+rect 1551 -581 1567 -547
+rect 1601 -581 1617 -547
+rect 1551 -597 1617 -581
+rect 1743 -547 1809 -531
+rect 1857 -535 1887 -509
+rect 1953 -531 1983 -509
+rect 1743 -581 1759 -547
+rect 1793 -581 1809 -547
+rect 1743 -597 1809 -581
+rect 1935 -547 2001 -531
+rect 2049 -535 2079 -509
+rect 2145 -531 2175 -509
+rect 1935 -581 1951 -547
+rect 1985 -581 2001 -547
+rect 1935 -597 2001 -581
+rect 2127 -547 2193 -531
+rect 2241 -535 2271 -509
+rect 2337 -531 2367 -509
+rect 2127 -581 2143 -547
+rect 2177 -581 2193 -547
+rect 2127 -597 2193 -581
+rect 2319 -547 2385 -531
+rect 2319 -581 2335 -547
+rect 2369 -581 2385 -547
+rect 2319 -597 2385 -581
+rect -2289 -655 -2223 -639
+rect -2289 -689 -2273 -655
+rect -2239 -689 -2223 -655
+rect -2367 -727 -2337 -701
+rect -2289 -705 -2223 -689
+rect -2097 -655 -2031 -639
+rect -2097 -689 -2081 -655
+rect -2047 -689 -2031 -655
+rect -2271 -727 -2241 -705
+rect -2175 -727 -2145 -701
+rect -2097 -705 -2031 -689
+rect -1905 -655 -1839 -639
+rect -1905 -689 -1889 -655
+rect -1855 -689 -1839 -655
+rect -2079 -727 -2049 -705
+rect -1983 -727 -1953 -701
+rect -1905 -705 -1839 -689
+rect -1713 -655 -1647 -639
+rect -1713 -689 -1697 -655
+rect -1663 -689 -1647 -655
+rect -1887 -727 -1857 -705
+rect -1791 -727 -1761 -701
+rect -1713 -705 -1647 -689
+rect -1521 -655 -1455 -639
+rect -1521 -689 -1505 -655
+rect -1471 -689 -1455 -655
+rect -1695 -727 -1665 -705
+rect -1599 -727 -1569 -701
+rect -1521 -705 -1455 -689
+rect -1329 -655 -1263 -639
+rect -1329 -689 -1313 -655
+rect -1279 -689 -1263 -655
+rect -1503 -727 -1473 -705
+rect -1407 -727 -1377 -701
+rect -1329 -705 -1263 -689
+rect -1137 -655 -1071 -639
+rect -1137 -689 -1121 -655
+rect -1087 -689 -1071 -655
+rect -1311 -727 -1281 -705
+rect -1215 -727 -1185 -701
+rect -1137 -705 -1071 -689
+rect -945 -655 -879 -639
+rect -945 -689 -929 -655
+rect -895 -689 -879 -655
+rect -1119 -727 -1089 -705
+rect -1023 -727 -993 -701
+rect -945 -705 -879 -689
+rect -753 -655 -687 -639
+rect -753 -689 -737 -655
+rect -703 -689 -687 -655
+rect -927 -727 -897 -705
+rect -831 -727 -801 -701
+rect -753 -705 -687 -689
+rect -561 -655 -495 -639
+rect -561 -689 -545 -655
+rect -511 -689 -495 -655
+rect -735 -727 -705 -705
+rect -639 -727 -609 -701
+rect -561 -705 -495 -689
+rect -369 -655 -303 -639
+rect -369 -689 -353 -655
+rect -319 -689 -303 -655
+rect -543 -727 -513 -705
+rect -447 -727 -417 -701
+rect -369 -705 -303 -689
+rect -177 -655 -111 -639
+rect -177 -689 -161 -655
+rect -127 -689 -111 -655
+rect -351 -727 -321 -705
+rect -255 -727 -225 -701
+rect -177 -705 -111 -689
+rect 15 -655 81 -639
+rect 15 -689 31 -655
+rect 65 -689 81 -655
+rect -159 -727 -129 -705
+rect -63 -727 -33 -701
+rect 15 -705 81 -689
+rect 207 -655 273 -639
+rect 207 -689 223 -655
+rect 257 -689 273 -655
+rect 33 -727 63 -705
+rect 129 -727 159 -701
+rect 207 -705 273 -689
+rect 399 -655 465 -639
+rect 399 -689 415 -655
+rect 449 -689 465 -655
+rect 225 -727 255 -705
+rect 321 -727 351 -701
+rect 399 -705 465 -689
+rect 591 -655 657 -639
+rect 591 -689 607 -655
+rect 641 -689 657 -655
+rect 417 -727 447 -705
+rect 513 -727 543 -701
+rect 591 -705 657 -689
+rect 783 -655 849 -639
+rect 783 -689 799 -655
+rect 833 -689 849 -655
+rect 609 -727 639 -705
+rect 705 -727 735 -701
+rect 783 -705 849 -689
+rect 975 -655 1041 -639
+rect 975 -689 991 -655
+rect 1025 -689 1041 -655
+rect 801 -727 831 -705
+rect 897 -727 927 -701
+rect 975 -705 1041 -689
+rect 1167 -655 1233 -639
+rect 1167 -689 1183 -655
+rect 1217 -689 1233 -655
+rect 993 -727 1023 -705
+rect 1089 -727 1119 -701
+rect 1167 -705 1233 -689
+rect 1359 -655 1425 -639
+rect 1359 -689 1375 -655
+rect 1409 -689 1425 -655
+rect 1185 -727 1215 -705
+rect 1281 -727 1311 -701
+rect 1359 -705 1425 -689
+rect 1551 -655 1617 -639
+rect 1551 -689 1567 -655
+rect 1601 -689 1617 -655
+rect 1377 -727 1407 -705
+rect 1473 -727 1503 -701
+rect 1551 -705 1617 -689
+rect 1743 -655 1809 -639
+rect 1743 -689 1759 -655
+rect 1793 -689 1809 -655
+rect 1569 -727 1599 -705
+rect 1665 -727 1695 -701
+rect 1743 -705 1809 -689
+rect 1935 -655 2001 -639
+rect 1935 -689 1951 -655
+rect 1985 -689 2001 -655
+rect 1761 -727 1791 -705
+rect 1857 -727 1887 -701
+rect 1935 -705 2001 -689
+rect 2127 -655 2193 -639
+rect 2127 -689 2143 -655
+rect 2177 -689 2193 -655
+rect 1953 -727 1983 -705
+rect 2049 -727 2079 -701
+rect 2127 -705 2193 -689
+rect 2319 -655 2385 -639
+rect 2319 -689 2335 -655
+rect 2369 -689 2385 -655
+rect 2145 -727 2175 -705
+rect 2241 -727 2271 -701
+rect 2319 -705 2385 -689
+rect 2337 -727 2367 -705
+rect -2367 -1149 -2337 -1127
+rect -2385 -1165 -2319 -1149
+rect -2271 -1153 -2241 -1127
+rect -2175 -1149 -2145 -1127
+rect -2385 -1199 -2369 -1165
+rect -2335 -1199 -2319 -1165
+rect -2385 -1215 -2319 -1199
+rect -2193 -1165 -2127 -1149
+rect -2079 -1153 -2049 -1127
+rect -1983 -1149 -1953 -1127
+rect -2193 -1199 -2177 -1165
+rect -2143 -1199 -2127 -1165
+rect -2193 -1215 -2127 -1199
+rect -2001 -1165 -1935 -1149
+rect -1887 -1153 -1857 -1127
+rect -1791 -1149 -1761 -1127
+rect -2001 -1199 -1985 -1165
+rect -1951 -1199 -1935 -1165
+rect -2001 -1215 -1935 -1199
+rect -1809 -1165 -1743 -1149
+rect -1695 -1153 -1665 -1127
+rect -1599 -1149 -1569 -1127
+rect -1809 -1199 -1793 -1165
+rect -1759 -1199 -1743 -1165
+rect -1809 -1215 -1743 -1199
+rect -1617 -1165 -1551 -1149
+rect -1503 -1153 -1473 -1127
+rect -1407 -1149 -1377 -1127
+rect -1617 -1199 -1601 -1165
+rect -1567 -1199 -1551 -1165
+rect -1617 -1215 -1551 -1199
+rect -1425 -1165 -1359 -1149
+rect -1311 -1153 -1281 -1127
+rect -1215 -1149 -1185 -1127
+rect -1425 -1199 -1409 -1165
+rect -1375 -1199 -1359 -1165
+rect -1425 -1215 -1359 -1199
+rect -1233 -1165 -1167 -1149
+rect -1119 -1153 -1089 -1127
+rect -1023 -1149 -993 -1127
+rect -1233 -1199 -1217 -1165
+rect -1183 -1199 -1167 -1165
+rect -1233 -1215 -1167 -1199
+rect -1041 -1165 -975 -1149
+rect -927 -1153 -897 -1127
+rect -831 -1149 -801 -1127
+rect -1041 -1199 -1025 -1165
+rect -991 -1199 -975 -1165
+rect -1041 -1215 -975 -1199
+rect -849 -1165 -783 -1149
+rect -735 -1153 -705 -1127
+rect -639 -1149 -609 -1127
+rect -849 -1199 -833 -1165
+rect -799 -1199 -783 -1165
+rect -849 -1215 -783 -1199
+rect -657 -1165 -591 -1149
+rect -543 -1153 -513 -1127
+rect -447 -1149 -417 -1127
+rect -657 -1199 -641 -1165
+rect -607 -1199 -591 -1165
+rect -657 -1215 -591 -1199
+rect -465 -1165 -399 -1149
+rect -351 -1153 -321 -1127
+rect -255 -1149 -225 -1127
+rect -465 -1199 -449 -1165
+rect -415 -1199 -399 -1165
+rect -465 -1215 -399 -1199
+rect -273 -1165 -207 -1149
+rect -159 -1153 -129 -1127
+rect -63 -1149 -33 -1127
+rect -273 -1199 -257 -1165
+rect -223 -1199 -207 -1165
+rect -273 -1215 -207 -1199
+rect -81 -1165 -15 -1149
+rect 33 -1153 63 -1127
+rect 129 -1149 159 -1127
+rect -81 -1199 -65 -1165
+rect -31 -1199 -15 -1165
+rect -81 -1215 -15 -1199
+rect 111 -1165 177 -1149
+rect 225 -1153 255 -1127
+rect 321 -1149 351 -1127
+rect 111 -1199 127 -1165
+rect 161 -1199 177 -1165
+rect 111 -1215 177 -1199
+rect 303 -1165 369 -1149
+rect 417 -1153 447 -1127
+rect 513 -1149 543 -1127
+rect 303 -1199 319 -1165
+rect 353 -1199 369 -1165
+rect 303 -1215 369 -1199
+rect 495 -1165 561 -1149
+rect 609 -1153 639 -1127
+rect 705 -1149 735 -1127
+rect 495 -1199 511 -1165
+rect 545 -1199 561 -1165
+rect 495 -1215 561 -1199
+rect 687 -1165 753 -1149
+rect 801 -1153 831 -1127
+rect 897 -1149 927 -1127
+rect 687 -1199 703 -1165
+rect 737 -1199 753 -1165
+rect 687 -1215 753 -1199
+rect 879 -1165 945 -1149
+rect 993 -1153 1023 -1127
+rect 1089 -1149 1119 -1127
+rect 879 -1199 895 -1165
+rect 929 -1199 945 -1165
+rect 879 -1215 945 -1199
+rect 1071 -1165 1137 -1149
+rect 1185 -1153 1215 -1127
+rect 1281 -1149 1311 -1127
+rect 1071 -1199 1087 -1165
+rect 1121 -1199 1137 -1165
+rect 1071 -1215 1137 -1199
+rect 1263 -1165 1329 -1149
+rect 1377 -1153 1407 -1127
+rect 1473 -1149 1503 -1127
+rect 1263 -1199 1279 -1165
+rect 1313 -1199 1329 -1165
+rect 1263 -1215 1329 -1199
+rect 1455 -1165 1521 -1149
+rect 1569 -1153 1599 -1127
+rect 1665 -1149 1695 -1127
+rect 1455 -1199 1471 -1165
+rect 1505 -1199 1521 -1165
+rect 1455 -1215 1521 -1199
+rect 1647 -1165 1713 -1149
+rect 1761 -1153 1791 -1127
+rect 1857 -1149 1887 -1127
+rect 1647 -1199 1663 -1165
+rect 1697 -1199 1713 -1165
+rect 1647 -1215 1713 -1199
+rect 1839 -1165 1905 -1149
+rect 1953 -1153 1983 -1127
+rect 2049 -1149 2079 -1127
+rect 1839 -1199 1855 -1165
+rect 1889 -1199 1905 -1165
+rect 1839 -1215 1905 -1199
+rect 2031 -1165 2097 -1149
+rect 2145 -1153 2175 -1127
+rect 2241 -1149 2271 -1127
+rect 2031 -1199 2047 -1165
+rect 2081 -1199 2097 -1165
+rect 2031 -1215 2097 -1199
+rect 2223 -1165 2289 -1149
+rect 2337 -1153 2367 -1127
+rect 2223 -1199 2239 -1165
+rect 2273 -1199 2289 -1165
+rect 2223 -1215 2289 -1199
+<< polycont >>
+rect -2369 1165 -2335 1199
+rect -2177 1165 -2143 1199
+rect -1985 1165 -1951 1199
+rect -1793 1165 -1759 1199
+rect -1601 1165 -1567 1199
+rect -1409 1165 -1375 1199
+rect -1217 1165 -1183 1199
+rect -1025 1165 -991 1199
+rect -833 1165 -799 1199
+rect -641 1165 -607 1199
+rect -449 1165 -415 1199
+rect -257 1165 -223 1199
+rect -65 1165 -31 1199
+rect 127 1165 161 1199
+rect 319 1165 353 1199
+rect 511 1165 545 1199
+rect 703 1165 737 1199
+rect 895 1165 929 1199
+rect 1087 1165 1121 1199
+rect 1279 1165 1313 1199
+rect 1471 1165 1505 1199
+rect 1663 1165 1697 1199
+rect 1855 1165 1889 1199
+rect 2047 1165 2081 1199
+rect 2239 1165 2273 1199
+rect -2273 655 -2239 689
+rect -2081 655 -2047 689
+rect -1889 655 -1855 689
+rect -1697 655 -1663 689
+rect -1505 655 -1471 689
+rect -1313 655 -1279 689
+rect -1121 655 -1087 689
+rect -929 655 -895 689
+rect -737 655 -703 689
+rect -545 655 -511 689
+rect -353 655 -319 689
+rect -161 655 -127 689
+rect 31 655 65 689
+rect 223 655 257 689
+rect 415 655 449 689
+rect 607 655 641 689
+rect 799 655 833 689
+rect 991 655 1025 689
+rect 1183 655 1217 689
+rect 1375 655 1409 689
+rect 1567 655 1601 689
+rect 1759 655 1793 689
+rect 1951 655 1985 689
+rect 2143 655 2177 689
+rect 2335 655 2369 689
+rect -2273 547 -2239 581
+rect -2081 547 -2047 581
+rect -1889 547 -1855 581
+rect -1697 547 -1663 581
+rect -1505 547 -1471 581
+rect -1313 547 -1279 581
+rect -1121 547 -1087 581
+rect -929 547 -895 581
+rect -737 547 -703 581
+rect -545 547 -511 581
+rect -353 547 -319 581
+rect -161 547 -127 581
+rect 31 547 65 581
+rect 223 547 257 581
+rect 415 547 449 581
+rect 607 547 641 581
+rect 799 547 833 581
+rect 991 547 1025 581
+rect 1183 547 1217 581
+rect 1375 547 1409 581
+rect 1567 547 1601 581
+rect 1759 547 1793 581
+rect 1951 547 1985 581
+rect 2143 547 2177 581
+rect 2335 547 2369 581
+rect -2369 37 -2335 71
+rect -2177 37 -2143 71
+rect -1985 37 -1951 71
+rect -1793 37 -1759 71
+rect -1601 37 -1567 71
+rect -1409 37 -1375 71
+rect -1217 37 -1183 71
+rect -1025 37 -991 71
+rect -833 37 -799 71
+rect -641 37 -607 71
+rect -449 37 -415 71
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect 511 37 545 71
+rect 703 37 737 71
+rect 895 37 929 71
+rect 1087 37 1121 71
+rect 1279 37 1313 71
+rect 1471 37 1505 71
+rect 1663 37 1697 71
+rect 1855 37 1889 71
+rect 2047 37 2081 71
+rect 2239 37 2273 71
+rect -2369 -71 -2335 -37
+rect -2177 -71 -2143 -37
+rect -1985 -71 -1951 -37
+rect -1793 -71 -1759 -37
+rect -1601 -71 -1567 -37
+rect -1409 -71 -1375 -37
+rect -1217 -71 -1183 -37
+rect -1025 -71 -991 -37
+rect -833 -71 -799 -37
+rect -641 -71 -607 -37
+rect -449 -71 -415 -37
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect 511 -71 545 -37
+rect 703 -71 737 -37
+rect 895 -71 929 -37
+rect 1087 -71 1121 -37
+rect 1279 -71 1313 -37
+rect 1471 -71 1505 -37
+rect 1663 -71 1697 -37
+rect 1855 -71 1889 -37
+rect 2047 -71 2081 -37
+rect 2239 -71 2273 -37
+rect -2273 -581 -2239 -547
+rect -2081 -581 -2047 -547
+rect -1889 -581 -1855 -547
+rect -1697 -581 -1663 -547
+rect -1505 -581 -1471 -547
+rect -1313 -581 -1279 -547
+rect -1121 -581 -1087 -547
+rect -929 -581 -895 -547
+rect -737 -581 -703 -547
+rect -545 -581 -511 -547
+rect -353 -581 -319 -547
+rect -161 -581 -127 -547
+rect 31 -581 65 -547
+rect 223 -581 257 -547
+rect 415 -581 449 -547
+rect 607 -581 641 -547
+rect 799 -581 833 -547
+rect 991 -581 1025 -547
+rect 1183 -581 1217 -547
+rect 1375 -581 1409 -547
+rect 1567 -581 1601 -547
+rect 1759 -581 1793 -547
+rect 1951 -581 1985 -547
+rect 2143 -581 2177 -547
+rect 2335 -581 2369 -547
+rect -2273 -689 -2239 -655
+rect -2081 -689 -2047 -655
+rect -1889 -689 -1855 -655
+rect -1697 -689 -1663 -655
+rect -1505 -689 -1471 -655
+rect -1313 -689 -1279 -655
+rect -1121 -689 -1087 -655
+rect -929 -689 -895 -655
+rect -737 -689 -703 -655
+rect -545 -689 -511 -655
+rect -353 -689 -319 -655
+rect -161 -689 -127 -655
+rect 31 -689 65 -655
+rect 223 -689 257 -655
+rect 415 -689 449 -655
+rect 607 -689 641 -655
+rect 799 -689 833 -655
+rect 991 -689 1025 -655
+rect 1183 -689 1217 -655
+rect 1375 -689 1409 -655
+rect 1567 -689 1601 -655
+rect 1759 -689 1793 -655
+rect 1951 -689 1985 -655
+rect 2143 -689 2177 -655
+rect 2335 -689 2369 -655
+rect -2369 -1199 -2335 -1165
+rect -2177 -1199 -2143 -1165
+rect -1985 -1199 -1951 -1165
+rect -1793 -1199 -1759 -1165
+rect -1601 -1199 -1567 -1165
+rect -1409 -1199 -1375 -1165
+rect -1217 -1199 -1183 -1165
+rect -1025 -1199 -991 -1165
+rect -833 -1199 -799 -1165
+rect -641 -1199 -607 -1165
+rect -449 -1199 -415 -1165
+rect -257 -1199 -223 -1165
+rect -65 -1199 -31 -1165
+rect 127 -1199 161 -1165
+rect 319 -1199 353 -1165
+rect 511 -1199 545 -1165
+rect 703 -1199 737 -1165
+rect 895 -1199 929 -1165
+rect 1087 -1199 1121 -1165
+rect 1279 -1199 1313 -1165
+rect 1471 -1199 1505 -1165
+rect 1663 -1199 1697 -1165
+rect 1855 -1199 1889 -1165
+rect 2047 -1199 2081 -1165
+rect 2239 -1199 2273 -1165
+<< locali >>
+rect -2531 1267 -2435 1301
+rect 2435 1267 2531 1301
+rect -2531 1205 -2497 1267
+rect 2497 1205 2531 1267
+rect -2385 1165 -2369 1199
+rect -2335 1165 -2319 1199
+rect -2193 1165 -2177 1199
+rect -2143 1165 -2127 1199
+rect -2001 1165 -1985 1199
+rect -1951 1165 -1935 1199
+rect -1809 1165 -1793 1199
+rect -1759 1165 -1743 1199
+rect -1617 1165 -1601 1199
+rect -1567 1165 -1551 1199
+rect -1425 1165 -1409 1199
+rect -1375 1165 -1359 1199
+rect -1233 1165 -1217 1199
+rect -1183 1165 -1167 1199
+rect -1041 1165 -1025 1199
+rect -991 1165 -975 1199
+rect -849 1165 -833 1199
+rect -799 1165 -783 1199
+rect -657 1165 -641 1199
+rect -607 1165 -591 1199
+rect -465 1165 -449 1199
+rect -415 1165 -399 1199
+rect -273 1165 -257 1199
+rect -223 1165 -207 1199
+rect -81 1165 -65 1199
+rect -31 1165 -15 1199
+rect 111 1165 127 1199
+rect 161 1165 177 1199
+rect 303 1165 319 1199
+rect 353 1165 369 1199
+rect 495 1165 511 1199
+rect 545 1165 561 1199
+rect 687 1165 703 1199
+rect 737 1165 753 1199
+rect 879 1165 895 1199
+rect 929 1165 945 1199
+rect 1071 1165 1087 1199
+rect 1121 1165 1137 1199
+rect 1263 1165 1279 1199
+rect 1313 1165 1329 1199
+rect 1455 1165 1471 1199
+rect 1505 1165 1521 1199
+rect 1647 1165 1663 1199
+rect 1697 1165 1713 1199
+rect 1839 1165 1855 1199
+rect 1889 1165 1905 1199
+rect 2031 1165 2047 1199
+rect 2081 1165 2097 1199
+rect 2223 1165 2239 1199
+rect 2273 1165 2289 1199
+rect -2417 1115 -2383 1131
+rect -2417 723 -2383 739
+rect -2321 1115 -2287 1131
+rect -2321 723 -2287 739
+rect -2225 1115 -2191 1131
+rect -2225 723 -2191 739
+rect -2129 1115 -2095 1131
+rect -2129 723 -2095 739
+rect -2033 1115 -1999 1131
+rect -2033 723 -1999 739
+rect -1937 1115 -1903 1131
+rect -1937 723 -1903 739
+rect -1841 1115 -1807 1131
+rect -1841 723 -1807 739
+rect -1745 1115 -1711 1131
+rect -1745 723 -1711 739
+rect -1649 1115 -1615 1131
+rect -1649 723 -1615 739
+rect -1553 1115 -1519 1131
+rect -1553 723 -1519 739
+rect -1457 1115 -1423 1131
+rect -1457 723 -1423 739
+rect -1361 1115 -1327 1131
+rect -1361 723 -1327 739
+rect -1265 1115 -1231 1131
+rect -1265 723 -1231 739
+rect -1169 1115 -1135 1131
+rect -1169 723 -1135 739
+rect -1073 1115 -1039 1131
+rect -1073 723 -1039 739
+rect -977 1115 -943 1131
+rect -977 723 -943 739
+rect -881 1115 -847 1131
+rect -881 723 -847 739
+rect -785 1115 -751 1131
+rect -785 723 -751 739
+rect -689 1115 -655 1131
+rect -689 723 -655 739
+rect -593 1115 -559 1131
+rect -593 723 -559 739
+rect -497 1115 -463 1131
+rect -497 723 -463 739
+rect -401 1115 -367 1131
+rect -401 723 -367 739
+rect -305 1115 -271 1131
+rect -305 723 -271 739
+rect -209 1115 -175 1131
+rect -209 723 -175 739
+rect -113 1115 -79 1131
+rect -113 723 -79 739
+rect -17 1115 17 1131
+rect -17 723 17 739
+rect 79 1115 113 1131
+rect 79 723 113 739
+rect 175 1115 209 1131
+rect 175 723 209 739
+rect 271 1115 305 1131
+rect 271 723 305 739
+rect 367 1115 401 1131
+rect 367 723 401 739
+rect 463 1115 497 1131
+rect 463 723 497 739
+rect 559 1115 593 1131
+rect 559 723 593 739
+rect 655 1115 689 1131
+rect 655 723 689 739
+rect 751 1115 785 1131
+rect 751 723 785 739
+rect 847 1115 881 1131
+rect 847 723 881 739
+rect 943 1115 977 1131
+rect 943 723 977 739
+rect 1039 1115 1073 1131
+rect 1039 723 1073 739
+rect 1135 1115 1169 1131
+rect 1135 723 1169 739
+rect 1231 1115 1265 1131
+rect 1231 723 1265 739
+rect 1327 1115 1361 1131
+rect 1327 723 1361 739
+rect 1423 1115 1457 1131
+rect 1423 723 1457 739
+rect 1519 1115 1553 1131
+rect 1519 723 1553 739
+rect 1615 1115 1649 1131
+rect 1615 723 1649 739
+rect 1711 1115 1745 1131
+rect 1711 723 1745 739
+rect 1807 1115 1841 1131
+rect 1807 723 1841 739
+rect 1903 1115 1937 1131
+rect 1903 723 1937 739
+rect 1999 1115 2033 1131
+rect 1999 723 2033 739
+rect 2095 1115 2129 1131
+rect 2095 723 2129 739
+rect 2191 1115 2225 1131
+rect 2191 723 2225 739
+rect 2287 1115 2321 1131
+rect 2287 723 2321 739
+rect 2383 1115 2417 1131
+rect 2383 723 2417 739
+rect -2289 655 -2273 689
+rect -2239 655 -2223 689
+rect -2097 655 -2081 689
+rect -2047 655 -2031 689
+rect -1905 655 -1889 689
+rect -1855 655 -1839 689
+rect -1713 655 -1697 689
+rect -1663 655 -1647 689
+rect -1521 655 -1505 689
+rect -1471 655 -1455 689
+rect -1329 655 -1313 689
+rect -1279 655 -1263 689
+rect -1137 655 -1121 689
+rect -1087 655 -1071 689
+rect -945 655 -929 689
+rect -895 655 -879 689
+rect -753 655 -737 689
+rect -703 655 -687 689
+rect -561 655 -545 689
+rect -511 655 -495 689
+rect -369 655 -353 689
+rect -319 655 -303 689
+rect -177 655 -161 689
+rect -127 655 -111 689
+rect 15 655 31 689
+rect 65 655 81 689
+rect 207 655 223 689
+rect 257 655 273 689
+rect 399 655 415 689
+rect 449 655 465 689
+rect 591 655 607 689
+rect 641 655 657 689
+rect 783 655 799 689
+rect 833 655 849 689
+rect 975 655 991 689
+rect 1025 655 1041 689
+rect 1167 655 1183 689
+rect 1217 655 1233 689
+rect 1359 655 1375 689
+rect 1409 655 1425 689
+rect 1551 655 1567 689
+rect 1601 655 1617 689
+rect 1743 655 1759 689
+rect 1793 655 1809 689
+rect 1935 655 1951 689
+rect 1985 655 2001 689
+rect 2127 655 2143 689
+rect 2177 655 2193 689
+rect 2319 655 2335 689
+rect 2369 655 2385 689
+rect -2289 547 -2273 581
+rect -2239 547 -2223 581
+rect -2097 547 -2081 581
+rect -2047 547 -2031 581
+rect -1905 547 -1889 581
+rect -1855 547 -1839 581
+rect -1713 547 -1697 581
+rect -1663 547 -1647 581
+rect -1521 547 -1505 581
+rect -1471 547 -1455 581
+rect -1329 547 -1313 581
+rect -1279 547 -1263 581
+rect -1137 547 -1121 581
+rect -1087 547 -1071 581
+rect -945 547 -929 581
+rect -895 547 -879 581
+rect -753 547 -737 581
+rect -703 547 -687 581
+rect -561 547 -545 581
+rect -511 547 -495 581
+rect -369 547 -353 581
+rect -319 547 -303 581
+rect -177 547 -161 581
+rect -127 547 -111 581
+rect 15 547 31 581
+rect 65 547 81 581
+rect 207 547 223 581
+rect 257 547 273 581
+rect 399 547 415 581
+rect 449 547 465 581
+rect 591 547 607 581
+rect 641 547 657 581
+rect 783 547 799 581
+rect 833 547 849 581
+rect 975 547 991 581
+rect 1025 547 1041 581
+rect 1167 547 1183 581
+rect 1217 547 1233 581
+rect 1359 547 1375 581
+rect 1409 547 1425 581
+rect 1551 547 1567 581
+rect 1601 547 1617 581
+rect 1743 547 1759 581
+rect 1793 547 1809 581
+rect 1935 547 1951 581
+rect 1985 547 2001 581
+rect 2127 547 2143 581
+rect 2177 547 2193 581
+rect 2319 547 2335 581
+rect 2369 547 2385 581
+rect -2417 497 -2383 513
+rect -2417 105 -2383 121
+rect -2321 497 -2287 513
+rect -2321 105 -2287 121
+rect -2225 497 -2191 513
+rect -2225 105 -2191 121
+rect -2129 497 -2095 513
+rect -2129 105 -2095 121
+rect -2033 497 -1999 513
+rect -2033 105 -1999 121
+rect -1937 497 -1903 513
+rect -1937 105 -1903 121
+rect -1841 497 -1807 513
+rect -1841 105 -1807 121
+rect -1745 497 -1711 513
+rect -1745 105 -1711 121
+rect -1649 497 -1615 513
+rect -1649 105 -1615 121
+rect -1553 497 -1519 513
+rect -1553 105 -1519 121
+rect -1457 497 -1423 513
+rect -1457 105 -1423 121
+rect -1361 497 -1327 513
+rect -1361 105 -1327 121
+rect -1265 497 -1231 513
+rect -1265 105 -1231 121
+rect -1169 497 -1135 513
+rect -1169 105 -1135 121
+rect -1073 497 -1039 513
+rect -1073 105 -1039 121
+rect -977 497 -943 513
+rect -977 105 -943 121
+rect -881 497 -847 513
+rect -881 105 -847 121
+rect -785 497 -751 513
+rect -785 105 -751 121
+rect -689 497 -655 513
+rect -689 105 -655 121
+rect -593 497 -559 513
+rect -593 105 -559 121
+rect -497 497 -463 513
+rect -497 105 -463 121
+rect -401 497 -367 513
+rect -401 105 -367 121
+rect -305 497 -271 513
+rect -305 105 -271 121
+rect -209 497 -175 513
+rect -209 105 -175 121
+rect -113 497 -79 513
+rect -113 105 -79 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 79 497 113 513
+rect 79 105 113 121
+rect 175 497 209 513
+rect 175 105 209 121
+rect 271 497 305 513
+rect 271 105 305 121
+rect 367 497 401 513
+rect 367 105 401 121
+rect 463 497 497 513
+rect 463 105 497 121
+rect 559 497 593 513
+rect 559 105 593 121
+rect 655 497 689 513
+rect 655 105 689 121
+rect 751 497 785 513
+rect 751 105 785 121
+rect 847 497 881 513
+rect 847 105 881 121
+rect 943 497 977 513
+rect 943 105 977 121
+rect 1039 497 1073 513
+rect 1039 105 1073 121
+rect 1135 497 1169 513
+rect 1135 105 1169 121
+rect 1231 497 1265 513
+rect 1231 105 1265 121
+rect 1327 497 1361 513
+rect 1327 105 1361 121
+rect 1423 497 1457 513
+rect 1423 105 1457 121
+rect 1519 497 1553 513
+rect 1519 105 1553 121
+rect 1615 497 1649 513
+rect 1615 105 1649 121
+rect 1711 497 1745 513
+rect 1711 105 1745 121
+rect 1807 497 1841 513
+rect 1807 105 1841 121
+rect 1903 497 1937 513
+rect 1903 105 1937 121
+rect 1999 497 2033 513
+rect 1999 105 2033 121
+rect 2095 497 2129 513
+rect 2095 105 2129 121
+rect 2191 497 2225 513
+rect 2191 105 2225 121
+rect 2287 497 2321 513
+rect 2287 105 2321 121
+rect 2383 497 2417 513
+rect 2383 105 2417 121
+rect -2385 37 -2369 71
+rect -2335 37 -2319 71
+rect -2193 37 -2177 71
+rect -2143 37 -2127 71
+rect -2001 37 -1985 71
+rect -1951 37 -1935 71
+rect -1809 37 -1793 71
+rect -1759 37 -1743 71
+rect -1617 37 -1601 71
+rect -1567 37 -1551 71
+rect -1425 37 -1409 71
+rect -1375 37 -1359 71
+rect -1233 37 -1217 71
+rect -1183 37 -1167 71
+rect -1041 37 -1025 71
+rect -991 37 -975 71
+rect -849 37 -833 71
+rect -799 37 -783 71
+rect -657 37 -641 71
+rect -607 37 -591 71
+rect -465 37 -449 71
+rect -415 37 -399 71
+rect -273 37 -257 71
+rect -223 37 -207 71
+rect -81 37 -65 71
+rect -31 37 -15 71
+rect 111 37 127 71
+rect 161 37 177 71
+rect 303 37 319 71
+rect 353 37 369 71
+rect 495 37 511 71
+rect 545 37 561 71
+rect 687 37 703 71
+rect 737 37 753 71
+rect 879 37 895 71
+rect 929 37 945 71
+rect 1071 37 1087 71
+rect 1121 37 1137 71
+rect 1263 37 1279 71
+rect 1313 37 1329 71
+rect 1455 37 1471 71
+rect 1505 37 1521 71
+rect 1647 37 1663 71
+rect 1697 37 1713 71
+rect 1839 37 1855 71
+rect 1889 37 1905 71
+rect 2031 37 2047 71
+rect 2081 37 2097 71
+rect 2223 37 2239 71
+rect 2273 37 2289 71
+rect -2385 -71 -2369 -37
+rect -2335 -71 -2319 -37
+rect -2193 -71 -2177 -37
+rect -2143 -71 -2127 -37
+rect -2001 -71 -1985 -37
+rect -1951 -71 -1935 -37
+rect -1809 -71 -1793 -37
+rect -1759 -71 -1743 -37
+rect -1617 -71 -1601 -37
+rect -1567 -71 -1551 -37
+rect -1425 -71 -1409 -37
+rect -1375 -71 -1359 -37
+rect -1233 -71 -1217 -37
+rect -1183 -71 -1167 -37
+rect -1041 -71 -1025 -37
+rect -991 -71 -975 -37
+rect -849 -71 -833 -37
+rect -799 -71 -783 -37
+rect -657 -71 -641 -37
+rect -607 -71 -591 -37
+rect -465 -71 -449 -37
+rect -415 -71 -399 -37
+rect -273 -71 -257 -37
+rect -223 -71 -207 -37
+rect -81 -71 -65 -37
+rect -31 -71 -15 -37
+rect 111 -71 127 -37
+rect 161 -71 177 -37
+rect 303 -71 319 -37
+rect 353 -71 369 -37
+rect 495 -71 511 -37
+rect 545 -71 561 -37
+rect 687 -71 703 -37
+rect 737 -71 753 -37
+rect 879 -71 895 -37
+rect 929 -71 945 -37
+rect 1071 -71 1087 -37
+rect 1121 -71 1137 -37
+rect 1263 -71 1279 -37
+rect 1313 -71 1329 -37
+rect 1455 -71 1471 -37
+rect 1505 -71 1521 -37
+rect 1647 -71 1663 -37
+rect 1697 -71 1713 -37
+rect 1839 -71 1855 -37
+rect 1889 -71 1905 -37
+rect 2031 -71 2047 -37
+rect 2081 -71 2097 -37
+rect 2223 -71 2239 -37
+rect 2273 -71 2289 -37
+rect -2417 -121 -2383 -105
+rect -2417 -513 -2383 -497
+rect -2321 -121 -2287 -105
+rect -2321 -513 -2287 -497
+rect -2225 -121 -2191 -105
+rect -2225 -513 -2191 -497
+rect -2129 -121 -2095 -105
+rect -2129 -513 -2095 -497
+rect -2033 -121 -1999 -105
+rect -2033 -513 -1999 -497
+rect -1937 -121 -1903 -105
+rect -1937 -513 -1903 -497
+rect -1841 -121 -1807 -105
+rect -1841 -513 -1807 -497
+rect -1745 -121 -1711 -105
+rect -1745 -513 -1711 -497
+rect -1649 -121 -1615 -105
+rect -1649 -513 -1615 -497
+rect -1553 -121 -1519 -105
+rect -1553 -513 -1519 -497
+rect -1457 -121 -1423 -105
+rect -1457 -513 -1423 -497
+rect -1361 -121 -1327 -105
+rect -1361 -513 -1327 -497
+rect -1265 -121 -1231 -105
+rect -1265 -513 -1231 -497
+rect -1169 -121 -1135 -105
+rect -1169 -513 -1135 -497
+rect -1073 -121 -1039 -105
+rect -1073 -513 -1039 -497
+rect -977 -121 -943 -105
+rect -977 -513 -943 -497
+rect -881 -121 -847 -105
+rect -881 -513 -847 -497
+rect -785 -121 -751 -105
+rect -785 -513 -751 -497
+rect -689 -121 -655 -105
+rect -689 -513 -655 -497
+rect -593 -121 -559 -105
+rect -593 -513 -559 -497
+rect -497 -121 -463 -105
+rect -497 -513 -463 -497
+rect -401 -121 -367 -105
+rect -401 -513 -367 -497
+rect -305 -121 -271 -105
+rect -305 -513 -271 -497
+rect -209 -121 -175 -105
+rect -209 -513 -175 -497
+rect -113 -121 -79 -105
+rect -113 -513 -79 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 79 -121 113 -105
+rect 79 -513 113 -497
+rect 175 -121 209 -105
+rect 175 -513 209 -497
+rect 271 -121 305 -105
+rect 271 -513 305 -497
+rect 367 -121 401 -105
+rect 367 -513 401 -497
+rect 463 -121 497 -105
+rect 463 -513 497 -497
+rect 559 -121 593 -105
+rect 559 -513 593 -497
+rect 655 -121 689 -105
+rect 655 -513 689 -497
+rect 751 -121 785 -105
+rect 751 -513 785 -497
+rect 847 -121 881 -105
+rect 847 -513 881 -497
+rect 943 -121 977 -105
+rect 943 -513 977 -497
+rect 1039 -121 1073 -105
+rect 1039 -513 1073 -497
+rect 1135 -121 1169 -105
+rect 1135 -513 1169 -497
+rect 1231 -121 1265 -105
+rect 1231 -513 1265 -497
+rect 1327 -121 1361 -105
+rect 1327 -513 1361 -497
+rect 1423 -121 1457 -105
+rect 1423 -513 1457 -497
+rect 1519 -121 1553 -105
+rect 1519 -513 1553 -497
+rect 1615 -121 1649 -105
+rect 1615 -513 1649 -497
+rect 1711 -121 1745 -105
+rect 1711 -513 1745 -497
+rect 1807 -121 1841 -105
+rect 1807 -513 1841 -497
+rect 1903 -121 1937 -105
+rect 1903 -513 1937 -497
+rect 1999 -121 2033 -105
+rect 1999 -513 2033 -497
+rect 2095 -121 2129 -105
+rect 2095 -513 2129 -497
+rect 2191 -121 2225 -105
+rect 2191 -513 2225 -497
+rect 2287 -121 2321 -105
+rect 2287 -513 2321 -497
+rect 2383 -121 2417 -105
+rect 2383 -513 2417 -497
+rect -2289 -581 -2273 -547
+rect -2239 -581 -2223 -547
+rect -2097 -581 -2081 -547
+rect -2047 -581 -2031 -547
+rect -1905 -581 -1889 -547
+rect -1855 -581 -1839 -547
+rect -1713 -581 -1697 -547
+rect -1663 -581 -1647 -547
+rect -1521 -581 -1505 -547
+rect -1471 -581 -1455 -547
+rect -1329 -581 -1313 -547
+rect -1279 -581 -1263 -547
+rect -1137 -581 -1121 -547
+rect -1087 -581 -1071 -547
+rect -945 -581 -929 -547
+rect -895 -581 -879 -547
+rect -753 -581 -737 -547
+rect -703 -581 -687 -547
+rect -561 -581 -545 -547
+rect -511 -581 -495 -547
+rect -369 -581 -353 -547
+rect -319 -581 -303 -547
+rect -177 -581 -161 -547
+rect -127 -581 -111 -547
+rect 15 -581 31 -547
+rect 65 -581 81 -547
+rect 207 -581 223 -547
+rect 257 -581 273 -547
+rect 399 -581 415 -547
+rect 449 -581 465 -547
+rect 591 -581 607 -547
+rect 641 -581 657 -547
+rect 783 -581 799 -547
+rect 833 -581 849 -547
+rect 975 -581 991 -547
+rect 1025 -581 1041 -547
+rect 1167 -581 1183 -547
+rect 1217 -581 1233 -547
+rect 1359 -581 1375 -547
+rect 1409 -581 1425 -547
+rect 1551 -581 1567 -547
+rect 1601 -581 1617 -547
+rect 1743 -581 1759 -547
+rect 1793 -581 1809 -547
+rect 1935 -581 1951 -547
+rect 1985 -581 2001 -547
+rect 2127 -581 2143 -547
+rect 2177 -581 2193 -547
+rect 2319 -581 2335 -547
+rect 2369 -581 2385 -547
+rect -2289 -689 -2273 -655
+rect -2239 -689 -2223 -655
+rect -2097 -689 -2081 -655
+rect -2047 -689 -2031 -655
+rect -1905 -689 -1889 -655
+rect -1855 -689 -1839 -655
+rect -1713 -689 -1697 -655
+rect -1663 -689 -1647 -655
+rect -1521 -689 -1505 -655
+rect -1471 -689 -1455 -655
+rect -1329 -689 -1313 -655
+rect -1279 -689 -1263 -655
+rect -1137 -689 -1121 -655
+rect -1087 -689 -1071 -655
+rect -945 -689 -929 -655
+rect -895 -689 -879 -655
+rect -753 -689 -737 -655
+rect -703 -689 -687 -655
+rect -561 -689 -545 -655
+rect -511 -689 -495 -655
+rect -369 -689 -353 -655
+rect -319 -689 -303 -655
+rect -177 -689 -161 -655
+rect -127 -689 -111 -655
+rect 15 -689 31 -655
+rect 65 -689 81 -655
+rect 207 -689 223 -655
+rect 257 -689 273 -655
+rect 399 -689 415 -655
+rect 449 -689 465 -655
+rect 591 -689 607 -655
+rect 641 -689 657 -655
+rect 783 -689 799 -655
+rect 833 -689 849 -655
+rect 975 -689 991 -655
+rect 1025 -689 1041 -655
+rect 1167 -689 1183 -655
+rect 1217 -689 1233 -655
+rect 1359 -689 1375 -655
+rect 1409 -689 1425 -655
+rect 1551 -689 1567 -655
+rect 1601 -689 1617 -655
+rect 1743 -689 1759 -655
+rect 1793 -689 1809 -655
+rect 1935 -689 1951 -655
+rect 1985 -689 2001 -655
+rect 2127 -689 2143 -655
+rect 2177 -689 2193 -655
+rect 2319 -689 2335 -655
+rect 2369 -689 2385 -655
+rect -2417 -739 -2383 -723
+rect -2417 -1131 -2383 -1115
+rect -2321 -739 -2287 -723
+rect -2321 -1131 -2287 -1115
+rect -2225 -739 -2191 -723
+rect -2225 -1131 -2191 -1115
+rect -2129 -739 -2095 -723
+rect -2129 -1131 -2095 -1115
+rect -2033 -739 -1999 -723
+rect -2033 -1131 -1999 -1115
+rect -1937 -739 -1903 -723
+rect -1937 -1131 -1903 -1115
+rect -1841 -739 -1807 -723
+rect -1841 -1131 -1807 -1115
+rect -1745 -739 -1711 -723
+rect -1745 -1131 -1711 -1115
+rect -1649 -739 -1615 -723
+rect -1649 -1131 -1615 -1115
+rect -1553 -739 -1519 -723
+rect -1553 -1131 -1519 -1115
+rect -1457 -739 -1423 -723
+rect -1457 -1131 -1423 -1115
+rect -1361 -739 -1327 -723
+rect -1361 -1131 -1327 -1115
+rect -1265 -739 -1231 -723
+rect -1265 -1131 -1231 -1115
+rect -1169 -739 -1135 -723
+rect -1169 -1131 -1135 -1115
+rect -1073 -739 -1039 -723
+rect -1073 -1131 -1039 -1115
+rect -977 -739 -943 -723
+rect -977 -1131 -943 -1115
+rect -881 -739 -847 -723
+rect -881 -1131 -847 -1115
+rect -785 -739 -751 -723
+rect -785 -1131 -751 -1115
+rect -689 -739 -655 -723
+rect -689 -1131 -655 -1115
+rect -593 -739 -559 -723
+rect -593 -1131 -559 -1115
+rect -497 -739 -463 -723
+rect -497 -1131 -463 -1115
+rect -401 -739 -367 -723
+rect -401 -1131 -367 -1115
+rect -305 -739 -271 -723
+rect -305 -1131 -271 -1115
+rect -209 -739 -175 -723
+rect -209 -1131 -175 -1115
+rect -113 -739 -79 -723
+rect -113 -1131 -79 -1115
+rect -17 -739 17 -723
+rect -17 -1131 17 -1115
+rect 79 -739 113 -723
+rect 79 -1131 113 -1115
+rect 175 -739 209 -723
+rect 175 -1131 209 -1115
+rect 271 -739 305 -723
+rect 271 -1131 305 -1115
+rect 367 -739 401 -723
+rect 367 -1131 401 -1115
+rect 463 -739 497 -723
+rect 463 -1131 497 -1115
+rect 559 -739 593 -723
+rect 559 -1131 593 -1115
+rect 655 -739 689 -723
+rect 655 -1131 689 -1115
+rect 751 -739 785 -723
+rect 751 -1131 785 -1115
+rect 847 -739 881 -723
+rect 847 -1131 881 -1115
+rect 943 -739 977 -723
+rect 943 -1131 977 -1115
+rect 1039 -739 1073 -723
+rect 1039 -1131 1073 -1115
+rect 1135 -739 1169 -723
+rect 1135 -1131 1169 -1115
+rect 1231 -739 1265 -723
+rect 1231 -1131 1265 -1115
+rect 1327 -739 1361 -723
+rect 1327 -1131 1361 -1115
+rect 1423 -739 1457 -723
+rect 1423 -1131 1457 -1115
+rect 1519 -739 1553 -723
+rect 1519 -1131 1553 -1115
+rect 1615 -739 1649 -723
+rect 1615 -1131 1649 -1115
+rect 1711 -739 1745 -723
+rect 1711 -1131 1745 -1115
+rect 1807 -739 1841 -723
+rect 1807 -1131 1841 -1115
+rect 1903 -739 1937 -723
+rect 1903 -1131 1937 -1115
+rect 1999 -739 2033 -723
+rect 1999 -1131 2033 -1115
+rect 2095 -739 2129 -723
+rect 2095 -1131 2129 -1115
+rect 2191 -739 2225 -723
+rect 2191 -1131 2225 -1115
+rect 2287 -739 2321 -723
+rect 2287 -1131 2321 -1115
+rect 2383 -739 2417 -723
+rect 2383 -1131 2417 -1115
+rect -2385 -1199 -2369 -1165
+rect -2335 -1199 -2319 -1165
+rect -2193 -1199 -2177 -1165
+rect -2143 -1199 -2127 -1165
+rect -2001 -1199 -1985 -1165
+rect -1951 -1199 -1935 -1165
+rect -1809 -1199 -1793 -1165
+rect -1759 -1199 -1743 -1165
+rect -1617 -1199 -1601 -1165
+rect -1567 -1199 -1551 -1165
+rect -1425 -1199 -1409 -1165
+rect -1375 -1199 -1359 -1165
+rect -1233 -1199 -1217 -1165
+rect -1183 -1199 -1167 -1165
+rect -1041 -1199 -1025 -1165
+rect -991 -1199 -975 -1165
+rect -849 -1199 -833 -1165
+rect -799 -1199 -783 -1165
+rect -657 -1199 -641 -1165
+rect -607 -1199 -591 -1165
+rect -465 -1199 -449 -1165
+rect -415 -1199 -399 -1165
+rect -273 -1199 -257 -1165
+rect -223 -1199 -207 -1165
+rect -81 -1199 -65 -1165
+rect -31 -1199 -15 -1165
+rect 111 -1199 127 -1165
+rect 161 -1199 177 -1165
+rect 303 -1199 319 -1165
+rect 353 -1199 369 -1165
+rect 495 -1199 511 -1165
+rect 545 -1199 561 -1165
+rect 687 -1199 703 -1165
+rect 737 -1199 753 -1165
+rect 879 -1199 895 -1165
+rect 929 -1199 945 -1165
+rect 1071 -1199 1087 -1165
+rect 1121 -1199 1137 -1165
+rect 1263 -1199 1279 -1165
+rect 1313 -1199 1329 -1165
+rect 1455 -1199 1471 -1165
+rect 1505 -1199 1521 -1165
+rect 1647 -1199 1663 -1165
+rect 1697 -1199 1713 -1165
+rect 1839 -1199 1855 -1165
+rect 1889 -1199 1905 -1165
+rect 2031 -1199 2047 -1165
+rect 2081 -1199 2097 -1165
+rect 2223 -1199 2239 -1165
+rect 2273 -1199 2289 -1165
+rect -2531 -1267 -2497 -1205
+rect 2497 -1267 2531 -1205
+rect -2531 -1301 -2435 -1267
+rect 2435 -1301 2531 -1267
+<< viali >>
+rect -2369 1165 -2335 1199
+rect -2177 1165 -2143 1199
+rect -1985 1165 -1951 1199
+rect -1793 1165 -1759 1199
+rect -1601 1165 -1567 1199
+rect -1409 1165 -1375 1199
+rect -1217 1165 -1183 1199
+rect -1025 1165 -991 1199
+rect -833 1165 -799 1199
+rect -641 1165 -607 1199
+rect -449 1165 -415 1199
+rect -257 1165 -223 1199
+rect -65 1165 -31 1199
+rect 127 1165 161 1199
+rect 319 1165 353 1199
+rect 511 1165 545 1199
+rect 703 1165 737 1199
+rect 895 1165 929 1199
+rect 1087 1165 1121 1199
+rect 1279 1165 1313 1199
+rect 1471 1165 1505 1199
+rect 1663 1165 1697 1199
+rect 1855 1165 1889 1199
+rect 2047 1165 2081 1199
+rect 2239 1165 2273 1199
+rect -2417 739 -2383 1115
+rect -2321 739 -2287 1115
+rect -2225 739 -2191 1115
+rect -2129 739 -2095 1115
+rect -2033 739 -1999 1115
+rect -1937 739 -1903 1115
+rect -1841 739 -1807 1115
+rect -1745 739 -1711 1115
+rect -1649 739 -1615 1115
+rect -1553 739 -1519 1115
+rect -1457 739 -1423 1115
+rect -1361 739 -1327 1115
+rect -1265 739 -1231 1115
+rect -1169 739 -1135 1115
+rect -1073 739 -1039 1115
+rect -977 739 -943 1115
+rect -881 739 -847 1115
+rect -785 739 -751 1115
+rect -689 739 -655 1115
+rect -593 739 -559 1115
+rect -497 739 -463 1115
+rect -401 739 -367 1115
+rect -305 739 -271 1115
+rect -209 739 -175 1115
+rect -113 739 -79 1115
+rect -17 739 17 1115
+rect 79 739 113 1115
+rect 175 739 209 1115
+rect 271 739 305 1115
+rect 367 739 401 1115
+rect 463 739 497 1115
+rect 559 739 593 1115
+rect 655 739 689 1115
+rect 751 739 785 1115
+rect 847 739 881 1115
+rect 943 739 977 1115
+rect 1039 739 1073 1115
+rect 1135 739 1169 1115
+rect 1231 739 1265 1115
+rect 1327 739 1361 1115
+rect 1423 739 1457 1115
+rect 1519 739 1553 1115
+rect 1615 739 1649 1115
+rect 1711 739 1745 1115
+rect 1807 739 1841 1115
+rect 1903 739 1937 1115
+rect 1999 739 2033 1115
+rect 2095 739 2129 1115
+rect 2191 739 2225 1115
+rect 2287 739 2321 1115
+rect 2383 739 2417 1115
+rect -2273 655 -2239 689
+rect -2081 655 -2047 689
+rect -1889 655 -1855 689
+rect -1697 655 -1663 689
+rect -1505 655 -1471 689
+rect -1313 655 -1279 689
+rect -1121 655 -1087 689
+rect -929 655 -895 689
+rect -737 655 -703 689
+rect -545 655 -511 689
+rect -353 655 -319 689
+rect -161 655 -127 689
+rect 31 655 65 689
+rect 223 655 257 689
+rect 415 655 449 689
+rect 607 655 641 689
+rect 799 655 833 689
+rect 991 655 1025 689
+rect 1183 655 1217 689
+rect 1375 655 1409 689
+rect 1567 655 1601 689
+rect 1759 655 1793 689
+rect 1951 655 1985 689
+rect 2143 655 2177 689
+rect 2335 655 2369 689
+rect -2273 547 -2239 581
+rect -2081 547 -2047 581
+rect -1889 547 -1855 581
+rect -1697 547 -1663 581
+rect -1505 547 -1471 581
+rect -1313 547 -1279 581
+rect -1121 547 -1087 581
+rect -929 547 -895 581
+rect -737 547 -703 581
+rect -545 547 -511 581
+rect -353 547 -319 581
+rect -161 547 -127 581
+rect 31 547 65 581
+rect 223 547 257 581
+rect 415 547 449 581
+rect 607 547 641 581
+rect 799 547 833 581
+rect 991 547 1025 581
+rect 1183 547 1217 581
+rect 1375 547 1409 581
+rect 1567 547 1601 581
+rect 1759 547 1793 581
+rect 1951 547 1985 581
+rect 2143 547 2177 581
+rect 2335 547 2369 581
+rect -2417 121 -2383 497
+rect -2321 121 -2287 497
+rect -2225 121 -2191 497
+rect -2129 121 -2095 497
+rect -2033 121 -1999 497
+rect -1937 121 -1903 497
+rect -1841 121 -1807 497
+rect -1745 121 -1711 497
+rect -1649 121 -1615 497
+rect -1553 121 -1519 497
+rect -1457 121 -1423 497
+rect -1361 121 -1327 497
+rect -1265 121 -1231 497
+rect -1169 121 -1135 497
+rect -1073 121 -1039 497
+rect -977 121 -943 497
+rect -881 121 -847 497
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect 847 121 881 497
+rect 943 121 977 497
+rect 1039 121 1073 497
+rect 1135 121 1169 497
+rect 1231 121 1265 497
+rect 1327 121 1361 497
+rect 1423 121 1457 497
+rect 1519 121 1553 497
+rect 1615 121 1649 497
+rect 1711 121 1745 497
+rect 1807 121 1841 497
+rect 1903 121 1937 497
+rect 1999 121 2033 497
+rect 2095 121 2129 497
+rect 2191 121 2225 497
+rect 2287 121 2321 497
+rect 2383 121 2417 497
+rect -2369 37 -2335 71
+rect -2177 37 -2143 71
+rect -1985 37 -1951 71
+rect -1793 37 -1759 71
+rect -1601 37 -1567 71
+rect -1409 37 -1375 71
+rect -1217 37 -1183 71
+rect -1025 37 -991 71
+rect -833 37 -799 71
+rect -641 37 -607 71
+rect -449 37 -415 71
+rect -257 37 -223 71
+rect -65 37 -31 71
+rect 127 37 161 71
+rect 319 37 353 71
+rect 511 37 545 71
+rect 703 37 737 71
+rect 895 37 929 71
+rect 1087 37 1121 71
+rect 1279 37 1313 71
+rect 1471 37 1505 71
+rect 1663 37 1697 71
+rect 1855 37 1889 71
+rect 2047 37 2081 71
+rect 2239 37 2273 71
+rect -2369 -71 -2335 -37
+rect -2177 -71 -2143 -37
+rect -1985 -71 -1951 -37
+rect -1793 -71 -1759 -37
+rect -1601 -71 -1567 -37
+rect -1409 -71 -1375 -37
+rect -1217 -71 -1183 -37
+rect -1025 -71 -991 -37
+rect -833 -71 -799 -37
+rect -641 -71 -607 -37
+rect -449 -71 -415 -37
+rect -257 -71 -223 -37
+rect -65 -71 -31 -37
+rect 127 -71 161 -37
+rect 319 -71 353 -37
+rect 511 -71 545 -37
+rect 703 -71 737 -37
+rect 895 -71 929 -37
+rect 1087 -71 1121 -37
+rect 1279 -71 1313 -37
+rect 1471 -71 1505 -37
+rect 1663 -71 1697 -37
+rect 1855 -71 1889 -37
+rect 2047 -71 2081 -37
+rect 2239 -71 2273 -37
+rect -2417 -497 -2383 -121
+rect -2321 -497 -2287 -121
+rect -2225 -497 -2191 -121
+rect -2129 -497 -2095 -121
+rect -2033 -497 -1999 -121
+rect -1937 -497 -1903 -121
+rect -1841 -497 -1807 -121
+rect -1745 -497 -1711 -121
+rect -1649 -497 -1615 -121
+rect -1553 -497 -1519 -121
+rect -1457 -497 -1423 -121
+rect -1361 -497 -1327 -121
+rect -1265 -497 -1231 -121
+rect -1169 -497 -1135 -121
+rect -1073 -497 -1039 -121
+rect -977 -497 -943 -121
+rect -881 -497 -847 -121
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect 847 -497 881 -121
+rect 943 -497 977 -121
+rect 1039 -497 1073 -121
+rect 1135 -497 1169 -121
+rect 1231 -497 1265 -121
+rect 1327 -497 1361 -121
+rect 1423 -497 1457 -121
+rect 1519 -497 1553 -121
+rect 1615 -497 1649 -121
+rect 1711 -497 1745 -121
+rect 1807 -497 1841 -121
+rect 1903 -497 1937 -121
+rect 1999 -497 2033 -121
+rect 2095 -497 2129 -121
+rect 2191 -497 2225 -121
+rect 2287 -497 2321 -121
+rect 2383 -497 2417 -121
+rect -2273 -581 -2239 -547
+rect -2081 -581 -2047 -547
+rect -1889 -581 -1855 -547
+rect -1697 -581 -1663 -547
+rect -1505 -581 -1471 -547
+rect -1313 -581 -1279 -547
+rect -1121 -581 -1087 -547
+rect -929 -581 -895 -547
+rect -737 -581 -703 -547
+rect -545 -581 -511 -547
+rect -353 -581 -319 -547
+rect -161 -581 -127 -547
+rect 31 -581 65 -547
+rect 223 -581 257 -547
+rect 415 -581 449 -547
+rect 607 -581 641 -547
+rect 799 -581 833 -547
+rect 991 -581 1025 -547
+rect 1183 -581 1217 -547
+rect 1375 -581 1409 -547
+rect 1567 -581 1601 -547
+rect 1759 -581 1793 -547
+rect 1951 -581 1985 -547
+rect 2143 -581 2177 -547
+rect 2335 -581 2369 -547
+rect -2273 -689 -2239 -655
+rect -2081 -689 -2047 -655
+rect -1889 -689 -1855 -655
+rect -1697 -689 -1663 -655
+rect -1505 -689 -1471 -655
+rect -1313 -689 -1279 -655
+rect -1121 -689 -1087 -655
+rect -929 -689 -895 -655
+rect -737 -689 -703 -655
+rect -545 -689 -511 -655
+rect -353 -689 -319 -655
+rect -161 -689 -127 -655
+rect 31 -689 65 -655
+rect 223 -689 257 -655
+rect 415 -689 449 -655
+rect 607 -689 641 -655
+rect 799 -689 833 -655
+rect 991 -689 1025 -655
+rect 1183 -689 1217 -655
+rect 1375 -689 1409 -655
+rect 1567 -689 1601 -655
+rect 1759 -689 1793 -655
+rect 1951 -689 1985 -655
+rect 2143 -689 2177 -655
+rect 2335 -689 2369 -655
+rect -2417 -1115 -2383 -739
+rect -2321 -1115 -2287 -739
+rect -2225 -1115 -2191 -739
+rect -2129 -1115 -2095 -739
+rect -2033 -1115 -1999 -739
+rect -1937 -1115 -1903 -739
+rect -1841 -1115 -1807 -739
+rect -1745 -1115 -1711 -739
+rect -1649 -1115 -1615 -739
+rect -1553 -1115 -1519 -739
+rect -1457 -1115 -1423 -739
+rect -1361 -1115 -1327 -739
+rect -1265 -1115 -1231 -739
+rect -1169 -1115 -1135 -739
+rect -1073 -1115 -1039 -739
+rect -977 -1115 -943 -739
+rect -881 -1115 -847 -739
+rect -785 -1115 -751 -739
+rect -689 -1115 -655 -739
+rect -593 -1115 -559 -739
+rect -497 -1115 -463 -739
+rect -401 -1115 -367 -739
+rect -305 -1115 -271 -739
+rect -209 -1115 -175 -739
+rect -113 -1115 -79 -739
+rect -17 -1115 17 -739
+rect 79 -1115 113 -739
+rect 175 -1115 209 -739
+rect 271 -1115 305 -739
+rect 367 -1115 401 -739
+rect 463 -1115 497 -739
+rect 559 -1115 593 -739
+rect 655 -1115 689 -739
+rect 751 -1115 785 -739
+rect 847 -1115 881 -739
+rect 943 -1115 977 -739
+rect 1039 -1115 1073 -739
+rect 1135 -1115 1169 -739
+rect 1231 -1115 1265 -739
+rect 1327 -1115 1361 -739
+rect 1423 -1115 1457 -739
+rect 1519 -1115 1553 -739
+rect 1615 -1115 1649 -739
+rect 1711 -1115 1745 -739
+rect 1807 -1115 1841 -739
+rect 1903 -1115 1937 -739
+rect 1999 -1115 2033 -739
+rect 2095 -1115 2129 -739
+rect 2191 -1115 2225 -739
+rect 2287 -1115 2321 -739
+rect 2383 -1115 2417 -739
+rect -2369 -1199 -2335 -1165
+rect -2177 -1199 -2143 -1165
+rect -1985 -1199 -1951 -1165
+rect -1793 -1199 -1759 -1165
+rect -1601 -1199 -1567 -1165
+rect -1409 -1199 -1375 -1165
+rect -1217 -1199 -1183 -1165
+rect -1025 -1199 -991 -1165
+rect -833 -1199 -799 -1165
+rect -641 -1199 -607 -1165
+rect -449 -1199 -415 -1165
+rect -257 -1199 -223 -1165
+rect -65 -1199 -31 -1165
+rect 127 -1199 161 -1165
+rect 319 -1199 353 -1165
+rect 511 -1199 545 -1165
+rect 703 -1199 737 -1165
+rect 895 -1199 929 -1165
+rect 1087 -1199 1121 -1165
+rect 1279 -1199 1313 -1165
+rect 1471 -1199 1505 -1165
+rect 1663 -1199 1697 -1165
+rect 1855 -1199 1889 -1165
+rect 2047 -1199 2081 -1165
+rect 2239 -1199 2273 -1165
+<< metal1 >>
+rect -2381 1199 -2323 1205
+rect -2381 1165 -2369 1199
+rect -2335 1165 -2323 1199
+rect -2381 1159 -2323 1165
+rect -2189 1199 -2131 1205
+rect -2189 1165 -2177 1199
+rect -2143 1165 -2131 1199
+rect -2189 1159 -2131 1165
+rect -1997 1199 -1939 1205
+rect -1997 1165 -1985 1199
+rect -1951 1165 -1939 1199
+rect -1997 1159 -1939 1165
+rect -1805 1199 -1747 1205
+rect -1805 1165 -1793 1199
+rect -1759 1165 -1747 1199
+rect -1805 1159 -1747 1165
+rect -1613 1199 -1555 1205
+rect -1613 1165 -1601 1199
+rect -1567 1165 -1555 1199
+rect -1613 1159 -1555 1165
+rect -1421 1199 -1363 1205
+rect -1421 1165 -1409 1199
+rect -1375 1165 -1363 1199
+rect -1421 1159 -1363 1165
+rect -1229 1199 -1171 1205
+rect -1229 1165 -1217 1199
+rect -1183 1165 -1171 1199
+rect -1229 1159 -1171 1165
+rect -1037 1199 -979 1205
+rect -1037 1165 -1025 1199
+rect -991 1165 -979 1199
+rect -1037 1159 -979 1165
+rect -845 1199 -787 1205
+rect -845 1165 -833 1199
+rect -799 1165 -787 1199
+rect -845 1159 -787 1165
+rect -653 1199 -595 1205
+rect -653 1165 -641 1199
+rect -607 1165 -595 1199
+rect -653 1159 -595 1165
+rect -461 1199 -403 1205
+rect -461 1165 -449 1199
+rect -415 1165 -403 1199
+rect -461 1159 -403 1165
+rect -269 1199 -211 1205
+rect -269 1165 -257 1199
+rect -223 1165 -211 1199
+rect -269 1159 -211 1165
+rect -77 1199 -19 1205
+rect -77 1165 -65 1199
+rect -31 1165 -19 1199
+rect -77 1159 -19 1165
+rect 115 1199 173 1205
+rect 115 1165 127 1199
+rect 161 1165 173 1199
+rect 115 1159 173 1165
+rect 307 1199 365 1205
+rect 307 1165 319 1199
+rect 353 1165 365 1199
+rect 307 1159 365 1165
+rect 499 1199 557 1205
+rect 499 1165 511 1199
+rect 545 1165 557 1199
+rect 499 1159 557 1165
+rect 691 1199 749 1205
+rect 691 1165 703 1199
+rect 737 1165 749 1199
+rect 691 1159 749 1165
+rect 883 1199 941 1205
+rect 883 1165 895 1199
+rect 929 1165 941 1199
+rect 883 1159 941 1165
+rect 1075 1199 1133 1205
+rect 1075 1165 1087 1199
+rect 1121 1165 1133 1199
+rect 1075 1159 1133 1165
+rect 1267 1199 1325 1205
+rect 1267 1165 1279 1199
+rect 1313 1165 1325 1199
+rect 1267 1159 1325 1165
+rect 1459 1199 1517 1205
+rect 1459 1165 1471 1199
+rect 1505 1165 1517 1199
+rect 1459 1159 1517 1165
+rect 1651 1199 1709 1205
+rect 1651 1165 1663 1199
+rect 1697 1165 1709 1199
+rect 1651 1159 1709 1165
+rect 1843 1199 1901 1205
+rect 1843 1165 1855 1199
+rect 1889 1165 1901 1199
+rect 1843 1159 1901 1165
+rect 2035 1199 2093 1205
+rect 2035 1165 2047 1199
+rect 2081 1165 2093 1199
+rect 2035 1159 2093 1165
+rect 2227 1199 2285 1205
+rect 2227 1165 2239 1199
+rect 2273 1165 2285 1199
+rect 2227 1159 2285 1165
+rect -2423 1115 -2377 1127
+rect -2423 739 -2417 1115
+rect -2383 739 -2377 1115
+rect -2423 727 -2377 739
+rect -2327 1115 -2281 1127
+rect -2327 739 -2321 1115
+rect -2287 739 -2281 1115
+rect -2327 727 -2281 739
+rect -2231 1115 -2185 1127
+rect -2231 739 -2225 1115
+rect -2191 739 -2185 1115
+rect -2231 727 -2185 739
+rect -2135 1115 -2089 1127
+rect -2135 739 -2129 1115
+rect -2095 739 -2089 1115
+rect -2135 727 -2089 739
+rect -2039 1115 -1993 1127
+rect -2039 739 -2033 1115
+rect -1999 739 -1993 1115
+rect -2039 727 -1993 739
+rect -1943 1115 -1897 1127
+rect -1943 739 -1937 1115
+rect -1903 739 -1897 1115
+rect -1943 727 -1897 739
+rect -1847 1115 -1801 1127
+rect -1847 739 -1841 1115
+rect -1807 739 -1801 1115
+rect -1847 727 -1801 739
+rect -1751 1115 -1705 1127
+rect -1751 739 -1745 1115
+rect -1711 739 -1705 1115
+rect -1751 727 -1705 739
+rect -1655 1115 -1609 1127
+rect -1655 739 -1649 1115
+rect -1615 739 -1609 1115
+rect -1655 727 -1609 739
+rect -1559 1115 -1513 1127
+rect -1559 739 -1553 1115
+rect -1519 739 -1513 1115
+rect -1559 727 -1513 739
+rect -1463 1115 -1417 1127
+rect -1463 739 -1457 1115
+rect -1423 739 -1417 1115
+rect -1463 727 -1417 739
+rect -1367 1115 -1321 1127
+rect -1367 739 -1361 1115
+rect -1327 739 -1321 1115
+rect -1367 727 -1321 739
+rect -1271 1115 -1225 1127
+rect -1271 739 -1265 1115
+rect -1231 739 -1225 1115
+rect -1271 727 -1225 739
+rect -1175 1115 -1129 1127
+rect -1175 739 -1169 1115
+rect -1135 739 -1129 1115
+rect -1175 727 -1129 739
+rect -1079 1115 -1033 1127
+rect -1079 739 -1073 1115
+rect -1039 739 -1033 1115
+rect -1079 727 -1033 739
+rect -983 1115 -937 1127
+rect -983 739 -977 1115
+rect -943 739 -937 1115
+rect -983 727 -937 739
+rect -887 1115 -841 1127
+rect -887 739 -881 1115
+rect -847 739 -841 1115
+rect -887 727 -841 739
+rect -791 1115 -745 1127
+rect -791 739 -785 1115
+rect -751 739 -745 1115
+rect -791 727 -745 739
+rect -695 1115 -649 1127
+rect -695 739 -689 1115
+rect -655 739 -649 1115
+rect -695 727 -649 739
+rect -599 1115 -553 1127
+rect -599 739 -593 1115
+rect -559 739 -553 1115
+rect -599 727 -553 739
+rect -503 1115 -457 1127
+rect -503 739 -497 1115
+rect -463 739 -457 1115
+rect -503 727 -457 739
+rect -407 1115 -361 1127
+rect -407 739 -401 1115
+rect -367 739 -361 1115
+rect -407 727 -361 739
+rect -311 1115 -265 1127
+rect -311 739 -305 1115
+rect -271 739 -265 1115
+rect -311 727 -265 739
+rect -215 1115 -169 1127
+rect -215 739 -209 1115
+rect -175 739 -169 1115
+rect -215 727 -169 739
+rect -119 1115 -73 1127
+rect -119 739 -113 1115
+rect -79 739 -73 1115
+rect -119 727 -73 739
+rect -23 1115 23 1127
+rect -23 739 -17 1115
+rect 17 739 23 1115
+rect -23 727 23 739
+rect 73 1115 119 1127
+rect 73 739 79 1115
+rect 113 739 119 1115
+rect 73 727 119 739
+rect 169 1115 215 1127
+rect 169 739 175 1115
+rect 209 739 215 1115
+rect 169 727 215 739
+rect 265 1115 311 1127
+rect 265 739 271 1115
+rect 305 739 311 1115
+rect 265 727 311 739
+rect 361 1115 407 1127
+rect 361 739 367 1115
+rect 401 739 407 1115
+rect 361 727 407 739
+rect 457 1115 503 1127
+rect 457 739 463 1115
+rect 497 739 503 1115
+rect 457 727 503 739
+rect 553 1115 599 1127
+rect 553 739 559 1115
+rect 593 739 599 1115
+rect 553 727 599 739
+rect 649 1115 695 1127
+rect 649 739 655 1115
+rect 689 739 695 1115
+rect 649 727 695 739
+rect 745 1115 791 1127
+rect 745 739 751 1115
+rect 785 739 791 1115
+rect 745 727 791 739
+rect 841 1115 887 1127
+rect 841 739 847 1115
+rect 881 739 887 1115
+rect 841 727 887 739
+rect 937 1115 983 1127
+rect 937 739 943 1115
+rect 977 739 983 1115
+rect 937 727 983 739
+rect 1033 1115 1079 1127
+rect 1033 739 1039 1115
+rect 1073 739 1079 1115
+rect 1033 727 1079 739
+rect 1129 1115 1175 1127
+rect 1129 739 1135 1115
+rect 1169 739 1175 1115
+rect 1129 727 1175 739
+rect 1225 1115 1271 1127
+rect 1225 739 1231 1115
+rect 1265 739 1271 1115
+rect 1225 727 1271 739
+rect 1321 1115 1367 1127
+rect 1321 739 1327 1115
+rect 1361 739 1367 1115
+rect 1321 727 1367 739
+rect 1417 1115 1463 1127
+rect 1417 739 1423 1115
+rect 1457 739 1463 1115
+rect 1417 727 1463 739
+rect 1513 1115 1559 1127
+rect 1513 739 1519 1115
+rect 1553 739 1559 1115
+rect 1513 727 1559 739
+rect 1609 1115 1655 1127
+rect 1609 739 1615 1115
+rect 1649 739 1655 1115
+rect 1609 727 1655 739
+rect 1705 1115 1751 1127
+rect 1705 739 1711 1115
+rect 1745 739 1751 1115
+rect 1705 727 1751 739
+rect 1801 1115 1847 1127
+rect 1801 739 1807 1115
+rect 1841 739 1847 1115
+rect 1801 727 1847 739
+rect 1897 1115 1943 1127
+rect 1897 739 1903 1115
+rect 1937 739 1943 1115
+rect 1897 727 1943 739
+rect 1993 1115 2039 1127
+rect 1993 739 1999 1115
+rect 2033 739 2039 1115
+rect 1993 727 2039 739
+rect 2089 1115 2135 1127
+rect 2089 739 2095 1115
+rect 2129 739 2135 1115
+rect 2089 727 2135 739
+rect 2185 1115 2231 1127
+rect 2185 739 2191 1115
+rect 2225 739 2231 1115
+rect 2185 727 2231 739
+rect 2281 1115 2327 1127
+rect 2281 739 2287 1115
+rect 2321 739 2327 1115
+rect 2281 727 2327 739
+rect 2377 1115 2423 1127
+rect 2377 739 2383 1115
+rect 2417 739 2423 1115
+rect 2377 727 2423 739
+rect -2285 689 -2227 695
+rect -2285 655 -2273 689
+rect -2239 655 -2227 689
+rect -2285 649 -2227 655
+rect -2093 689 -2035 695
+rect -2093 655 -2081 689
+rect -2047 655 -2035 689
+rect -2093 649 -2035 655
+rect -1901 689 -1843 695
+rect -1901 655 -1889 689
+rect -1855 655 -1843 689
+rect -1901 649 -1843 655
+rect -1709 689 -1651 695
+rect -1709 655 -1697 689
+rect -1663 655 -1651 689
+rect -1709 649 -1651 655
+rect -1517 689 -1459 695
+rect -1517 655 -1505 689
+rect -1471 655 -1459 689
+rect -1517 649 -1459 655
+rect -1325 689 -1267 695
+rect -1325 655 -1313 689
+rect -1279 655 -1267 689
+rect -1325 649 -1267 655
+rect -1133 689 -1075 695
+rect -1133 655 -1121 689
+rect -1087 655 -1075 689
+rect -1133 649 -1075 655
+rect -941 689 -883 695
+rect -941 655 -929 689
+rect -895 655 -883 689
+rect -941 649 -883 655
+rect -749 689 -691 695
+rect -749 655 -737 689
+rect -703 655 -691 689
+rect -749 649 -691 655
+rect -557 689 -499 695
+rect -557 655 -545 689
+rect -511 655 -499 689
+rect -557 649 -499 655
+rect -365 689 -307 695
+rect -365 655 -353 689
+rect -319 655 -307 689
+rect -365 649 -307 655
+rect -173 689 -115 695
+rect -173 655 -161 689
+rect -127 655 -115 689
+rect -173 649 -115 655
+rect 19 689 77 695
+rect 19 655 31 689
+rect 65 655 77 689
+rect 19 649 77 655
+rect 211 689 269 695
+rect 211 655 223 689
+rect 257 655 269 689
+rect 211 649 269 655
+rect 403 689 461 695
+rect 403 655 415 689
+rect 449 655 461 689
+rect 403 649 461 655
+rect 595 689 653 695
+rect 595 655 607 689
+rect 641 655 653 689
+rect 595 649 653 655
+rect 787 689 845 695
+rect 787 655 799 689
+rect 833 655 845 689
+rect 787 649 845 655
+rect 979 689 1037 695
+rect 979 655 991 689
+rect 1025 655 1037 689
+rect 979 649 1037 655
+rect 1171 689 1229 695
+rect 1171 655 1183 689
+rect 1217 655 1229 689
+rect 1171 649 1229 655
+rect 1363 689 1421 695
+rect 1363 655 1375 689
+rect 1409 655 1421 689
+rect 1363 649 1421 655
+rect 1555 689 1613 695
+rect 1555 655 1567 689
+rect 1601 655 1613 689
+rect 1555 649 1613 655
+rect 1747 689 1805 695
+rect 1747 655 1759 689
+rect 1793 655 1805 689
+rect 1747 649 1805 655
+rect 1939 689 1997 695
+rect 1939 655 1951 689
+rect 1985 655 1997 689
+rect 1939 649 1997 655
+rect 2131 689 2189 695
+rect 2131 655 2143 689
+rect 2177 655 2189 689
+rect 2131 649 2189 655
+rect 2323 689 2381 695
+rect 2323 655 2335 689
+rect 2369 655 2381 689
+rect 2323 649 2381 655
+rect -2285 581 -2227 587
+rect -2285 547 -2273 581
+rect -2239 547 -2227 581
+rect -2285 541 -2227 547
+rect -2093 581 -2035 587
+rect -2093 547 -2081 581
+rect -2047 547 -2035 581
+rect -2093 541 -2035 547
+rect -1901 581 -1843 587
+rect -1901 547 -1889 581
+rect -1855 547 -1843 581
+rect -1901 541 -1843 547
+rect -1709 581 -1651 587
+rect -1709 547 -1697 581
+rect -1663 547 -1651 581
+rect -1709 541 -1651 547
+rect -1517 581 -1459 587
+rect -1517 547 -1505 581
+rect -1471 547 -1459 581
+rect -1517 541 -1459 547
+rect -1325 581 -1267 587
+rect -1325 547 -1313 581
+rect -1279 547 -1267 581
+rect -1325 541 -1267 547
+rect -1133 581 -1075 587
+rect -1133 547 -1121 581
+rect -1087 547 -1075 581
+rect -1133 541 -1075 547
+rect -941 581 -883 587
+rect -941 547 -929 581
+rect -895 547 -883 581
+rect -941 541 -883 547
+rect -749 581 -691 587
+rect -749 547 -737 581
+rect -703 547 -691 581
+rect -749 541 -691 547
+rect -557 581 -499 587
+rect -557 547 -545 581
+rect -511 547 -499 581
+rect -557 541 -499 547
+rect -365 581 -307 587
+rect -365 547 -353 581
+rect -319 547 -307 581
+rect -365 541 -307 547
+rect -173 581 -115 587
+rect -173 547 -161 581
+rect -127 547 -115 581
+rect -173 541 -115 547
+rect 19 581 77 587
+rect 19 547 31 581
+rect 65 547 77 581
+rect 19 541 77 547
+rect 211 581 269 587
+rect 211 547 223 581
+rect 257 547 269 581
+rect 211 541 269 547
+rect 403 581 461 587
+rect 403 547 415 581
+rect 449 547 461 581
+rect 403 541 461 547
+rect 595 581 653 587
+rect 595 547 607 581
+rect 641 547 653 581
+rect 595 541 653 547
+rect 787 581 845 587
+rect 787 547 799 581
+rect 833 547 845 581
+rect 787 541 845 547
+rect 979 581 1037 587
+rect 979 547 991 581
+rect 1025 547 1037 581
+rect 979 541 1037 547
+rect 1171 581 1229 587
+rect 1171 547 1183 581
+rect 1217 547 1229 581
+rect 1171 541 1229 547
+rect 1363 581 1421 587
+rect 1363 547 1375 581
+rect 1409 547 1421 581
+rect 1363 541 1421 547
+rect 1555 581 1613 587
+rect 1555 547 1567 581
+rect 1601 547 1613 581
+rect 1555 541 1613 547
+rect 1747 581 1805 587
+rect 1747 547 1759 581
+rect 1793 547 1805 581
+rect 1747 541 1805 547
+rect 1939 581 1997 587
+rect 1939 547 1951 581
+rect 1985 547 1997 581
+rect 1939 541 1997 547
+rect 2131 581 2189 587
+rect 2131 547 2143 581
+rect 2177 547 2189 581
+rect 2131 541 2189 547
+rect 2323 581 2381 587
+rect 2323 547 2335 581
+rect 2369 547 2381 581
+rect 2323 541 2381 547
+rect -2423 497 -2377 509
+rect -2423 121 -2417 497
+rect -2383 121 -2377 497
+rect -2423 109 -2377 121
+rect -2327 497 -2281 509
+rect -2327 121 -2321 497
+rect -2287 121 -2281 497
+rect -2327 109 -2281 121
+rect -2231 497 -2185 509
+rect -2231 121 -2225 497
+rect -2191 121 -2185 497
+rect -2231 109 -2185 121
+rect -2135 497 -2089 509
+rect -2135 121 -2129 497
+rect -2095 121 -2089 497
+rect -2135 109 -2089 121
+rect -2039 497 -1993 509
+rect -2039 121 -2033 497
+rect -1999 121 -1993 497
+rect -2039 109 -1993 121
+rect -1943 497 -1897 509
+rect -1943 121 -1937 497
+rect -1903 121 -1897 497
+rect -1943 109 -1897 121
+rect -1847 497 -1801 509
+rect -1847 121 -1841 497
+rect -1807 121 -1801 497
+rect -1847 109 -1801 121
+rect -1751 497 -1705 509
+rect -1751 121 -1745 497
+rect -1711 121 -1705 497
+rect -1751 109 -1705 121
+rect -1655 497 -1609 509
+rect -1655 121 -1649 497
+rect -1615 121 -1609 497
+rect -1655 109 -1609 121
+rect -1559 497 -1513 509
+rect -1559 121 -1553 497
+rect -1519 121 -1513 497
+rect -1559 109 -1513 121
+rect -1463 497 -1417 509
+rect -1463 121 -1457 497
+rect -1423 121 -1417 497
+rect -1463 109 -1417 121
+rect -1367 497 -1321 509
+rect -1367 121 -1361 497
+rect -1327 121 -1321 497
+rect -1367 109 -1321 121
+rect -1271 497 -1225 509
+rect -1271 121 -1265 497
+rect -1231 121 -1225 497
+rect -1271 109 -1225 121
+rect -1175 497 -1129 509
+rect -1175 121 -1169 497
+rect -1135 121 -1129 497
+rect -1175 109 -1129 121
+rect -1079 497 -1033 509
+rect -1079 121 -1073 497
+rect -1039 121 -1033 497
+rect -1079 109 -1033 121
+rect -983 497 -937 509
+rect -983 121 -977 497
+rect -943 121 -937 497
+rect -983 109 -937 121
+rect -887 497 -841 509
+rect -887 121 -881 497
+rect -847 121 -841 497
+rect -887 109 -841 121
+rect -791 497 -745 509
+rect -791 121 -785 497
+rect -751 121 -745 497
+rect -791 109 -745 121
+rect -695 497 -649 509
+rect -695 121 -689 497
+rect -655 121 -649 497
+rect -695 109 -649 121
+rect -599 497 -553 509
+rect -599 121 -593 497
+rect -559 121 -553 497
+rect -599 109 -553 121
+rect -503 497 -457 509
+rect -503 121 -497 497
+rect -463 121 -457 497
+rect -503 109 -457 121
+rect -407 497 -361 509
+rect -407 121 -401 497
+rect -367 121 -361 497
+rect -407 109 -361 121
+rect -311 497 -265 509
+rect -311 121 -305 497
+rect -271 121 -265 497
+rect -311 109 -265 121
+rect -215 497 -169 509
+rect -215 121 -209 497
+rect -175 121 -169 497
+rect -215 109 -169 121
+rect -119 497 -73 509
+rect -119 121 -113 497
+rect -79 121 -73 497
+rect -119 109 -73 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 73 497 119 509
+rect 73 121 79 497
+rect 113 121 119 497
+rect 73 109 119 121
+rect 169 497 215 509
+rect 169 121 175 497
+rect 209 121 215 497
+rect 169 109 215 121
+rect 265 497 311 509
+rect 265 121 271 497
+rect 305 121 311 497
+rect 265 109 311 121
+rect 361 497 407 509
+rect 361 121 367 497
+rect 401 121 407 497
+rect 361 109 407 121
+rect 457 497 503 509
+rect 457 121 463 497
+rect 497 121 503 497
+rect 457 109 503 121
+rect 553 497 599 509
+rect 553 121 559 497
+rect 593 121 599 497
+rect 553 109 599 121
+rect 649 497 695 509
+rect 649 121 655 497
+rect 689 121 695 497
+rect 649 109 695 121
+rect 745 497 791 509
+rect 745 121 751 497
+rect 785 121 791 497
+rect 745 109 791 121
+rect 841 497 887 509
+rect 841 121 847 497
+rect 881 121 887 497
+rect 841 109 887 121
+rect 937 497 983 509
+rect 937 121 943 497
+rect 977 121 983 497
+rect 937 109 983 121
+rect 1033 497 1079 509
+rect 1033 121 1039 497
+rect 1073 121 1079 497
+rect 1033 109 1079 121
+rect 1129 497 1175 509
+rect 1129 121 1135 497
+rect 1169 121 1175 497
+rect 1129 109 1175 121
+rect 1225 497 1271 509
+rect 1225 121 1231 497
+rect 1265 121 1271 497
+rect 1225 109 1271 121
+rect 1321 497 1367 509
+rect 1321 121 1327 497
+rect 1361 121 1367 497
+rect 1321 109 1367 121
+rect 1417 497 1463 509
+rect 1417 121 1423 497
+rect 1457 121 1463 497
+rect 1417 109 1463 121
+rect 1513 497 1559 509
+rect 1513 121 1519 497
+rect 1553 121 1559 497
+rect 1513 109 1559 121
+rect 1609 497 1655 509
+rect 1609 121 1615 497
+rect 1649 121 1655 497
+rect 1609 109 1655 121
+rect 1705 497 1751 509
+rect 1705 121 1711 497
+rect 1745 121 1751 497
+rect 1705 109 1751 121
+rect 1801 497 1847 509
+rect 1801 121 1807 497
+rect 1841 121 1847 497
+rect 1801 109 1847 121
+rect 1897 497 1943 509
+rect 1897 121 1903 497
+rect 1937 121 1943 497
+rect 1897 109 1943 121
+rect 1993 497 2039 509
+rect 1993 121 1999 497
+rect 2033 121 2039 497
+rect 1993 109 2039 121
+rect 2089 497 2135 509
+rect 2089 121 2095 497
+rect 2129 121 2135 497
+rect 2089 109 2135 121
+rect 2185 497 2231 509
+rect 2185 121 2191 497
+rect 2225 121 2231 497
+rect 2185 109 2231 121
+rect 2281 497 2327 509
+rect 2281 121 2287 497
+rect 2321 121 2327 497
+rect 2281 109 2327 121
+rect 2377 497 2423 509
+rect 2377 121 2383 497
+rect 2417 121 2423 497
+rect 2377 109 2423 121
+rect -2381 71 -2323 77
+rect -2381 37 -2369 71
+rect -2335 37 -2323 71
+rect -2381 31 -2323 37
+rect -2189 71 -2131 77
+rect -2189 37 -2177 71
+rect -2143 37 -2131 71
+rect -2189 31 -2131 37
+rect -1997 71 -1939 77
+rect -1997 37 -1985 71
+rect -1951 37 -1939 71
+rect -1997 31 -1939 37
+rect -1805 71 -1747 77
+rect -1805 37 -1793 71
+rect -1759 37 -1747 71
+rect -1805 31 -1747 37
+rect -1613 71 -1555 77
+rect -1613 37 -1601 71
+rect -1567 37 -1555 71
+rect -1613 31 -1555 37
+rect -1421 71 -1363 77
+rect -1421 37 -1409 71
+rect -1375 37 -1363 71
+rect -1421 31 -1363 37
+rect -1229 71 -1171 77
+rect -1229 37 -1217 71
+rect -1183 37 -1171 71
+rect -1229 31 -1171 37
+rect -1037 71 -979 77
+rect -1037 37 -1025 71
+rect -991 37 -979 71
+rect -1037 31 -979 37
+rect -845 71 -787 77
+rect -845 37 -833 71
+rect -799 37 -787 71
+rect -845 31 -787 37
+rect -653 71 -595 77
+rect -653 37 -641 71
+rect -607 37 -595 71
+rect -653 31 -595 37
+rect -461 71 -403 77
+rect -461 37 -449 71
+rect -415 37 -403 71
+rect -461 31 -403 37
+rect -269 71 -211 77
+rect -269 37 -257 71
+rect -223 37 -211 71
+rect -269 31 -211 37
+rect -77 71 -19 77
+rect -77 37 -65 71
+rect -31 37 -19 71
+rect -77 31 -19 37
+rect 115 71 173 77
+rect 115 37 127 71
+rect 161 37 173 71
+rect 115 31 173 37
+rect 307 71 365 77
+rect 307 37 319 71
+rect 353 37 365 71
+rect 307 31 365 37
+rect 499 71 557 77
+rect 499 37 511 71
+rect 545 37 557 71
+rect 499 31 557 37
+rect 691 71 749 77
+rect 691 37 703 71
+rect 737 37 749 71
+rect 691 31 749 37
+rect 883 71 941 77
+rect 883 37 895 71
+rect 929 37 941 71
+rect 883 31 941 37
+rect 1075 71 1133 77
+rect 1075 37 1087 71
+rect 1121 37 1133 71
+rect 1075 31 1133 37
+rect 1267 71 1325 77
+rect 1267 37 1279 71
+rect 1313 37 1325 71
+rect 1267 31 1325 37
+rect 1459 71 1517 77
+rect 1459 37 1471 71
+rect 1505 37 1517 71
+rect 1459 31 1517 37
+rect 1651 71 1709 77
+rect 1651 37 1663 71
+rect 1697 37 1709 71
+rect 1651 31 1709 37
+rect 1843 71 1901 77
+rect 1843 37 1855 71
+rect 1889 37 1901 71
+rect 1843 31 1901 37
+rect 2035 71 2093 77
+rect 2035 37 2047 71
+rect 2081 37 2093 71
+rect 2035 31 2093 37
+rect 2227 71 2285 77
+rect 2227 37 2239 71
+rect 2273 37 2285 71
+rect 2227 31 2285 37
+rect -2381 -37 -2323 -31
+rect -2381 -71 -2369 -37
+rect -2335 -71 -2323 -37
+rect -2381 -77 -2323 -71
+rect -2189 -37 -2131 -31
+rect -2189 -71 -2177 -37
+rect -2143 -71 -2131 -37
+rect -2189 -77 -2131 -71
+rect -1997 -37 -1939 -31
+rect -1997 -71 -1985 -37
+rect -1951 -71 -1939 -37
+rect -1997 -77 -1939 -71
+rect -1805 -37 -1747 -31
+rect -1805 -71 -1793 -37
+rect -1759 -71 -1747 -37
+rect -1805 -77 -1747 -71
+rect -1613 -37 -1555 -31
+rect -1613 -71 -1601 -37
+rect -1567 -71 -1555 -37
+rect -1613 -77 -1555 -71
+rect -1421 -37 -1363 -31
+rect -1421 -71 -1409 -37
+rect -1375 -71 -1363 -37
+rect -1421 -77 -1363 -71
+rect -1229 -37 -1171 -31
+rect -1229 -71 -1217 -37
+rect -1183 -71 -1171 -37
+rect -1229 -77 -1171 -71
+rect -1037 -37 -979 -31
+rect -1037 -71 -1025 -37
+rect -991 -71 -979 -37
+rect -1037 -77 -979 -71
+rect -845 -37 -787 -31
+rect -845 -71 -833 -37
+rect -799 -71 -787 -37
+rect -845 -77 -787 -71
+rect -653 -37 -595 -31
+rect -653 -71 -641 -37
+rect -607 -71 -595 -37
+rect -653 -77 -595 -71
+rect -461 -37 -403 -31
+rect -461 -71 -449 -37
+rect -415 -71 -403 -37
+rect -461 -77 -403 -71
+rect -269 -37 -211 -31
+rect -269 -71 -257 -37
+rect -223 -71 -211 -37
+rect -269 -77 -211 -71
+rect -77 -37 -19 -31
+rect -77 -71 -65 -37
+rect -31 -71 -19 -37
+rect -77 -77 -19 -71
+rect 115 -37 173 -31
+rect 115 -71 127 -37
+rect 161 -71 173 -37
+rect 115 -77 173 -71
+rect 307 -37 365 -31
+rect 307 -71 319 -37
+rect 353 -71 365 -37
+rect 307 -77 365 -71
+rect 499 -37 557 -31
+rect 499 -71 511 -37
+rect 545 -71 557 -37
+rect 499 -77 557 -71
+rect 691 -37 749 -31
+rect 691 -71 703 -37
+rect 737 -71 749 -37
+rect 691 -77 749 -71
+rect 883 -37 941 -31
+rect 883 -71 895 -37
+rect 929 -71 941 -37
+rect 883 -77 941 -71
+rect 1075 -37 1133 -31
+rect 1075 -71 1087 -37
+rect 1121 -71 1133 -37
+rect 1075 -77 1133 -71
+rect 1267 -37 1325 -31
+rect 1267 -71 1279 -37
+rect 1313 -71 1325 -37
+rect 1267 -77 1325 -71
+rect 1459 -37 1517 -31
+rect 1459 -71 1471 -37
+rect 1505 -71 1517 -37
+rect 1459 -77 1517 -71
+rect 1651 -37 1709 -31
+rect 1651 -71 1663 -37
+rect 1697 -71 1709 -37
+rect 1651 -77 1709 -71
+rect 1843 -37 1901 -31
+rect 1843 -71 1855 -37
+rect 1889 -71 1901 -37
+rect 1843 -77 1901 -71
+rect 2035 -37 2093 -31
+rect 2035 -71 2047 -37
+rect 2081 -71 2093 -37
+rect 2035 -77 2093 -71
+rect 2227 -37 2285 -31
+rect 2227 -71 2239 -37
+rect 2273 -71 2285 -37
+rect 2227 -77 2285 -71
+rect -2423 -121 -2377 -109
+rect -2423 -497 -2417 -121
+rect -2383 -497 -2377 -121
+rect -2423 -509 -2377 -497
+rect -2327 -121 -2281 -109
+rect -2327 -497 -2321 -121
+rect -2287 -497 -2281 -121
+rect -2327 -509 -2281 -497
+rect -2231 -121 -2185 -109
+rect -2231 -497 -2225 -121
+rect -2191 -497 -2185 -121
+rect -2231 -509 -2185 -497
+rect -2135 -121 -2089 -109
+rect -2135 -497 -2129 -121
+rect -2095 -497 -2089 -121
+rect -2135 -509 -2089 -497
+rect -2039 -121 -1993 -109
+rect -2039 -497 -2033 -121
+rect -1999 -497 -1993 -121
+rect -2039 -509 -1993 -497
+rect -1943 -121 -1897 -109
+rect -1943 -497 -1937 -121
+rect -1903 -497 -1897 -121
+rect -1943 -509 -1897 -497
+rect -1847 -121 -1801 -109
+rect -1847 -497 -1841 -121
+rect -1807 -497 -1801 -121
+rect -1847 -509 -1801 -497
+rect -1751 -121 -1705 -109
+rect -1751 -497 -1745 -121
+rect -1711 -497 -1705 -121
+rect -1751 -509 -1705 -497
+rect -1655 -121 -1609 -109
+rect -1655 -497 -1649 -121
+rect -1615 -497 -1609 -121
+rect -1655 -509 -1609 -497
+rect -1559 -121 -1513 -109
+rect -1559 -497 -1553 -121
+rect -1519 -497 -1513 -121
+rect -1559 -509 -1513 -497
+rect -1463 -121 -1417 -109
+rect -1463 -497 -1457 -121
+rect -1423 -497 -1417 -121
+rect -1463 -509 -1417 -497
+rect -1367 -121 -1321 -109
+rect -1367 -497 -1361 -121
+rect -1327 -497 -1321 -121
+rect -1367 -509 -1321 -497
+rect -1271 -121 -1225 -109
+rect -1271 -497 -1265 -121
+rect -1231 -497 -1225 -121
+rect -1271 -509 -1225 -497
+rect -1175 -121 -1129 -109
+rect -1175 -497 -1169 -121
+rect -1135 -497 -1129 -121
+rect -1175 -509 -1129 -497
+rect -1079 -121 -1033 -109
+rect -1079 -497 -1073 -121
+rect -1039 -497 -1033 -121
+rect -1079 -509 -1033 -497
+rect -983 -121 -937 -109
+rect -983 -497 -977 -121
+rect -943 -497 -937 -121
+rect -983 -509 -937 -497
+rect -887 -121 -841 -109
+rect -887 -497 -881 -121
+rect -847 -497 -841 -121
+rect -887 -509 -841 -497
+rect -791 -121 -745 -109
+rect -791 -497 -785 -121
+rect -751 -497 -745 -121
+rect -791 -509 -745 -497
+rect -695 -121 -649 -109
+rect -695 -497 -689 -121
+rect -655 -497 -649 -121
+rect -695 -509 -649 -497
+rect -599 -121 -553 -109
+rect -599 -497 -593 -121
+rect -559 -497 -553 -121
+rect -599 -509 -553 -497
+rect -503 -121 -457 -109
+rect -503 -497 -497 -121
+rect -463 -497 -457 -121
+rect -503 -509 -457 -497
+rect -407 -121 -361 -109
+rect -407 -497 -401 -121
+rect -367 -497 -361 -121
+rect -407 -509 -361 -497
+rect -311 -121 -265 -109
+rect -311 -497 -305 -121
+rect -271 -497 -265 -121
+rect -311 -509 -265 -497
+rect -215 -121 -169 -109
+rect -215 -497 -209 -121
+rect -175 -497 -169 -121
+rect -215 -509 -169 -497
+rect -119 -121 -73 -109
+rect -119 -497 -113 -121
+rect -79 -497 -73 -121
+rect -119 -509 -73 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 73 -121 119 -109
+rect 73 -497 79 -121
+rect 113 -497 119 -121
+rect 73 -509 119 -497
+rect 169 -121 215 -109
+rect 169 -497 175 -121
+rect 209 -497 215 -121
+rect 169 -509 215 -497
+rect 265 -121 311 -109
+rect 265 -497 271 -121
+rect 305 -497 311 -121
+rect 265 -509 311 -497
+rect 361 -121 407 -109
+rect 361 -497 367 -121
+rect 401 -497 407 -121
+rect 361 -509 407 -497
+rect 457 -121 503 -109
+rect 457 -497 463 -121
+rect 497 -497 503 -121
+rect 457 -509 503 -497
+rect 553 -121 599 -109
+rect 553 -497 559 -121
+rect 593 -497 599 -121
+rect 553 -509 599 -497
+rect 649 -121 695 -109
+rect 649 -497 655 -121
+rect 689 -497 695 -121
+rect 649 -509 695 -497
+rect 745 -121 791 -109
+rect 745 -497 751 -121
+rect 785 -497 791 -121
+rect 745 -509 791 -497
+rect 841 -121 887 -109
+rect 841 -497 847 -121
+rect 881 -497 887 -121
+rect 841 -509 887 -497
+rect 937 -121 983 -109
+rect 937 -497 943 -121
+rect 977 -497 983 -121
+rect 937 -509 983 -497
+rect 1033 -121 1079 -109
+rect 1033 -497 1039 -121
+rect 1073 -497 1079 -121
+rect 1033 -509 1079 -497
+rect 1129 -121 1175 -109
+rect 1129 -497 1135 -121
+rect 1169 -497 1175 -121
+rect 1129 -509 1175 -497
+rect 1225 -121 1271 -109
+rect 1225 -497 1231 -121
+rect 1265 -497 1271 -121
+rect 1225 -509 1271 -497
+rect 1321 -121 1367 -109
+rect 1321 -497 1327 -121
+rect 1361 -497 1367 -121
+rect 1321 -509 1367 -497
+rect 1417 -121 1463 -109
+rect 1417 -497 1423 -121
+rect 1457 -497 1463 -121
+rect 1417 -509 1463 -497
+rect 1513 -121 1559 -109
+rect 1513 -497 1519 -121
+rect 1553 -497 1559 -121
+rect 1513 -509 1559 -497
+rect 1609 -121 1655 -109
+rect 1609 -497 1615 -121
+rect 1649 -497 1655 -121
+rect 1609 -509 1655 -497
+rect 1705 -121 1751 -109
+rect 1705 -497 1711 -121
+rect 1745 -497 1751 -121
+rect 1705 -509 1751 -497
+rect 1801 -121 1847 -109
+rect 1801 -497 1807 -121
+rect 1841 -497 1847 -121
+rect 1801 -509 1847 -497
+rect 1897 -121 1943 -109
+rect 1897 -497 1903 -121
+rect 1937 -497 1943 -121
+rect 1897 -509 1943 -497
+rect 1993 -121 2039 -109
+rect 1993 -497 1999 -121
+rect 2033 -497 2039 -121
+rect 1993 -509 2039 -497
+rect 2089 -121 2135 -109
+rect 2089 -497 2095 -121
+rect 2129 -497 2135 -121
+rect 2089 -509 2135 -497
+rect 2185 -121 2231 -109
+rect 2185 -497 2191 -121
+rect 2225 -497 2231 -121
+rect 2185 -509 2231 -497
+rect 2281 -121 2327 -109
+rect 2281 -497 2287 -121
+rect 2321 -497 2327 -121
+rect 2281 -509 2327 -497
+rect 2377 -121 2423 -109
+rect 2377 -497 2383 -121
+rect 2417 -497 2423 -121
+rect 2377 -509 2423 -497
+rect -2285 -547 -2227 -541
+rect -2285 -581 -2273 -547
+rect -2239 -581 -2227 -547
+rect -2285 -587 -2227 -581
+rect -2093 -547 -2035 -541
+rect -2093 -581 -2081 -547
+rect -2047 -581 -2035 -547
+rect -2093 -587 -2035 -581
+rect -1901 -547 -1843 -541
+rect -1901 -581 -1889 -547
+rect -1855 -581 -1843 -547
+rect -1901 -587 -1843 -581
+rect -1709 -547 -1651 -541
+rect -1709 -581 -1697 -547
+rect -1663 -581 -1651 -547
+rect -1709 -587 -1651 -581
+rect -1517 -547 -1459 -541
+rect -1517 -581 -1505 -547
+rect -1471 -581 -1459 -547
+rect -1517 -587 -1459 -581
+rect -1325 -547 -1267 -541
+rect -1325 -581 -1313 -547
+rect -1279 -581 -1267 -547
+rect -1325 -587 -1267 -581
+rect -1133 -547 -1075 -541
+rect -1133 -581 -1121 -547
+rect -1087 -581 -1075 -547
+rect -1133 -587 -1075 -581
+rect -941 -547 -883 -541
+rect -941 -581 -929 -547
+rect -895 -581 -883 -547
+rect -941 -587 -883 -581
+rect -749 -547 -691 -541
+rect -749 -581 -737 -547
+rect -703 -581 -691 -547
+rect -749 -587 -691 -581
+rect -557 -547 -499 -541
+rect -557 -581 -545 -547
+rect -511 -581 -499 -547
+rect -557 -587 -499 -581
+rect -365 -547 -307 -541
+rect -365 -581 -353 -547
+rect -319 -581 -307 -547
+rect -365 -587 -307 -581
+rect -173 -547 -115 -541
+rect -173 -581 -161 -547
+rect -127 -581 -115 -547
+rect -173 -587 -115 -581
+rect 19 -547 77 -541
+rect 19 -581 31 -547
+rect 65 -581 77 -547
+rect 19 -587 77 -581
+rect 211 -547 269 -541
+rect 211 -581 223 -547
+rect 257 -581 269 -547
+rect 211 -587 269 -581
+rect 403 -547 461 -541
+rect 403 -581 415 -547
+rect 449 -581 461 -547
+rect 403 -587 461 -581
+rect 595 -547 653 -541
+rect 595 -581 607 -547
+rect 641 -581 653 -547
+rect 595 -587 653 -581
+rect 787 -547 845 -541
+rect 787 -581 799 -547
+rect 833 -581 845 -547
+rect 787 -587 845 -581
+rect 979 -547 1037 -541
+rect 979 -581 991 -547
+rect 1025 -581 1037 -547
+rect 979 -587 1037 -581
+rect 1171 -547 1229 -541
+rect 1171 -581 1183 -547
+rect 1217 -581 1229 -547
+rect 1171 -587 1229 -581
+rect 1363 -547 1421 -541
+rect 1363 -581 1375 -547
+rect 1409 -581 1421 -547
+rect 1363 -587 1421 -581
+rect 1555 -547 1613 -541
+rect 1555 -581 1567 -547
+rect 1601 -581 1613 -547
+rect 1555 -587 1613 -581
+rect 1747 -547 1805 -541
+rect 1747 -581 1759 -547
+rect 1793 -581 1805 -547
+rect 1747 -587 1805 -581
+rect 1939 -547 1997 -541
+rect 1939 -581 1951 -547
+rect 1985 -581 1997 -547
+rect 1939 -587 1997 -581
+rect 2131 -547 2189 -541
+rect 2131 -581 2143 -547
+rect 2177 -581 2189 -547
+rect 2131 -587 2189 -581
+rect 2323 -547 2381 -541
+rect 2323 -581 2335 -547
+rect 2369 -581 2381 -547
+rect 2323 -587 2381 -581
+rect -2285 -655 -2227 -649
+rect -2285 -689 -2273 -655
+rect -2239 -689 -2227 -655
+rect -2285 -695 -2227 -689
+rect -2093 -655 -2035 -649
+rect -2093 -689 -2081 -655
+rect -2047 -689 -2035 -655
+rect -2093 -695 -2035 -689
+rect -1901 -655 -1843 -649
+rect -1901 -689 -1889 -655
+rect -1855 -689 -1843 -655
+rect -1901 -695 -1843 -689
+rect -1709 -655 -1651 -649
+rect -1709 -689 -1697 -655
+rect -1663 -689 -1651 -655
+rect -1709 -695 -1651 -689
+rect -1517 -655 -1459 -649
+rect -1517 -689 -1505 -655
+rect -1471 -689 -1459 -655
+rect -1517 -695 -1459 -689
+rect -1325 -655 -1267 -649
+rect -1325 -689 -1313 -655
+rect -1279 -689 -1267 -655
+rect -1325 -695 -1267 -689
+rect -1133 -655 -1075 -649
+rect -1133 -689 -1121 -655
+rect -1087 -689 -1075 -655
+rect -1133 -695 -1075 -689
+rect -941 -655 -883 -649
+rect -941 -689 -929 -655
+rect -895 -689 -883 -655
+rect -941 -695 -883 -689
+rect -749 -655 -691 -649
+rect -749 -689 -737 -655
+rect -703 -689 -691 -655
+rect -749 -695 -691 -689
+rect -557 -655 -499 -649
+rect -557 -689 -545 -655
+rect -511 -689 -499 -655
+rect -557 -695 -499 -689
+rect -365 -655 -307 -649
+rect -365 -689 -353 -655
+rect -319 -689 -307 -655
+rect -365 -695 -307 -689
+rect -173 -655 -115 -649
+rect -173 -689 -161 -655
+rect -127 -689 -115 -655
+rect -173 -695 -115 -689
+rect 19 -655 77 -649
+rect 19 -689 31 -655
+rect 65 -689 77 -655
+rect 19 -695 77 -689
+rect 211 -655 269 -649
+rect 211 -689 223 -655
+rect 257 -689 269 -655
+rect 211 -695 269 -689
+rect 403 -655 461 -649
+rect 403 -689 415 -655
+rect 449 -689 461 -655
+rect 403 -695 461 -689
+rect 595 -655 653 -649
+rect 595 -689 607 -655
+rect 641 -689 653 -655
+rect 595 -695 653 -689
+rect 787 -655 845 -649
+rect 787 -689 799 -655
+rect 833 -689 845 -655
+rect 787 -695 845 -689
+rect 979 -655 1037 -649
+rect 979 -689 991 -655
+rect 1025 -689 1037 -655
+rect 979 -695 1037 -689
+rect 1171 -655 1229 -649
+rect 1171 -689 1183 -655
+rect 1217 -689 1229 -655
+rect 1171 -695 1229 -689
+rect 1363 -655 1421 -649
+rect 1363 -689 1375 -655
+rect 1409 -689 1421 -655
+rect 1363 -695 1421 -689
+rect 1555 -655 1613 -649
+rect 1555 -689 1567 -655
+rect 1601 -689 1613 -655
+rect 1555 -695 1613 -689
+rect 1747 -655 1805 -649
+rect 1747 -689 1759 -655
+rect 1793 -689 1805 -655
+rect 1747 -695 1805 -689
+rect 1939 -655 1997 -649
+rect 1939 -689 1951 -655
+rect 1985 -689 1997 -655
+rect 1939 -695 1997 -689
+rect 2131 -655 2189 -649
+rect 2131 -689 2143 -655
+rect 2177 -689 2189 -655
+rect 2131 -695 2189 -689
+rect 2323 -655 2381 -649
+rect 2323 -689 2335 -655
+rect 2369 -689 2381 -655
+rect 2323 -695 2381 -689
+rect -2423 -739 -2377 -727
+rect -2423 -1115 -2417 -739
+rect -2383 -1115 -2377 -739
+rect -2423 -1127 -2377 -1115
+rect -2327 -739 -2281 -727
+rect -2327 -1115 -2321 -739
+rect -2287 -1115 -2281 -739
+rect -2327 -1127 -2281 -1115
+rect -2231 -739 -2185 -727
+rect -2231 -1115 -2225 -739
+rect -2191 -1115 -2185 -739
+rect -2231 -1127 -2185 -1115
+rect -2135 -739 -2089 -727
+rect -2135 -1115 -2129 -739
+rect -2095 -1115 -2089 -739
+rect -2135 -1127 -2089 -1115
+rect -2039 -739 -1993 -727
+rect -2039 -1115 -2033 -739
+rect -1999 -1115 -1993 -739
+rect -2039 -1127 -1993 -1115
+rect -1943 -739 -1897 -727
+rect -1943 -1115 -1937 -739
+rect -1903 -1115 -1897 -739
+rect -1943 -1127 -1897 -1115
+rect -1847 -739 -1801 -727
+rect -1847 -1115 -1841 -739
+rect -1807 -1115 -1801 -739
+rect -1847 -1127 -1801 -1115
+rect -1751 -739 -1705 -727
+rect -1751 -1115 -1745 -739
+rect -1711 -1115 -1705 -739
+rect -1751 -1127 -1705 -1115
+rect -1655 -739 -1609 -727
+rect -1655 -1115 -1649 -739
+rect -1615 -1115 -1609 -739
+rect -1655 -1127 -1609 -1115
+rect -1559 -739 -1513 -727
+rect -1559 -1115 -1553 -739
+rect -1519 -1115 -1513 -739
+rect -1559 -1127 -1513 -1115
+rect -1463 -739 -1417 -727
+rect -1463 -1115 -1457 -739
+rect -1423 -1115 -1417 -739
+rect -1463 -1127 -1417 -1115
+rect -1367 -739 -1321 -727
+rect -1367 -1115 -1361 -739
+rect -1327 -1115 -1321 -739
+rect -1367 -1127 -1321 -1115
+rect -1271 -739 -1225 -727
+rect -1271 -1115 -1265 -739
+rect -1231 -1115 -1225 -739
+rect -1271 -1127 -1225 -1115
+rect -1175 -739 -1129 -727
+rect -1175 -1115 -1169 -739
+rect -1135 -1115 -1129 -739
+rect -1175 -1127 -1129 -1115
+rect -1079 -739 -1033 -727
+rect -1079 -1115 -1073 -739
+rect -1039 -1115 -1033 -739
+rect -1079 -1127 -1033 -1115
+rect -983 -739 -937 -727
+rect -983 -1115 -977 -739
+rect -943 -1115 -937 -739
+rect -983 -1127 -937 -1115
+rect -887 -739 -841 -727
+rect -887 -1115 -881 -739
+rect -847 -1115 -841 -739
+rect -887 -1127 -841 -1115
+rect -791 -739 -745 -727
+rect -791 -1115 -785 -739
+rect -751 -1115 -745 -739
+rect -791 -1127 -745 -1115
+rect -695 -739 -649 -727
+rect -695 -1115 -689 -739
+rect -655 -1115 -649 -739
+rect -695 -1127 -649 -1115
+rect -599 -739 -553 -727
+rect -599 -1115 -593 -739
+rect -559 -1115 -553 -739
+rect -599 -1127 -553 -1115
+rect -503 -739 -457 -727
+rect -503 -1115 -497 -739
+rect -463 -1115 -457 -739
+rect -503 -1127 -457 -1115
+rect -407 -739 -361 -727
+rect -407 -1115 -401 -739
+rect -367 -1115 -361 -739
+rect -407 -1127 -361 -1115
+rect -311 -739 -265 -727
+rect -311 -1115 -305 -739
+rect -271 -1115 -265 -739
+rect -311 -1127 -265 -1115
+rect -215 -739 -169 -727
+rect -215 -1115 -209 -739
+rect -175 -1115 -169 -739
+rect -215 -1127 -169 -1115
+rect -119 -739 -73 -727
+rect -119 -1115 -113 -739
+rect -79 -1115 -73 -739
+rect -119 -1127 -73 -1115
+rect -23 -739 23 -727
+rect -23 -1115 -17 -739
+rect 17 -1115 23 -739
+rect -23 -1127 23 -1115
+rect 73 -739 119 -727
+rect 73 -1115 79 -739
+rect 113 -1115 119 -739
+rect 73 -1127 119 -1115
+rect 169 -739 215 -727
+rect 169 -1115 175 -739
+rect 209 -1115 215 -739
+rect 169 -1127 215 -1115
+rect 265 -739 311 -727
+rect 265 -1115 271 -739
+rect 305 -1115 311 -739
+rect 265 -1127 311 -1115
+rect 361 -739 407 -727
+rect 361 -1115 367 -739
+rect 401 -1115 407 -739
+rect 361 -1127 407 -1115
+rect 457 -739 503 -727
+rect 457 -1115 463 -739
+rect 497 -1115 503 -739
+rect 457 -1127 503 -1115
+rect 553 -739 599 -727
+rect 553 -1115 559 -739
+rect 593 -1115 599 -739
+rect 553 -1127 599 -1115
+rect 649 -739 695 -727
+rect 649 -1115 655 -739
+rect 689 -1115 695 -739
+rect 649 -1127 695 -1115
+rect 745 -739 791 -727
+rect 745 -1115 751 -739
+rect 785 -1115 791 -739
+rect 745 -1127 791 -1115
+rect 841 -739 887 -727
+rect 841 -1115 847 -739
+rect 881 -1115 887 -739
+rect 841 -1127 887 -1115
+rect 937 -739 983 -727
+rect 937 -1115 943 -739
+rect 977 -1115 983 -739
+rect 937 -1127 983 -1115
+rect 1033 -739 1079 -727
+rect 1033 -1115 1039 -739
+rect 1073 -1115 1079 -739
+rect 1033 -1127 1079 -1115
+rect 1129 -739 1175 -727
+rect 1129 -1115 1135 -739
+rect 1169 -1115 1175 -739
+rect 1129 -1127 1175 -1115
+rect 1225 -739 1271 -727
+rect 1225 -1115 1231 -739
+rect 1265 -1115 1271 -739
+rect 1225 -1127 1271 -1115
+rect 1321 -739 1367 -727
+rect 1321 -1115 1327 -739
+rect 1361 -1115 1367 -739
+rect 1321 -1127 1367 -1115
+rect 1417 -739 1463 -727
+rect 1417 -1115 1423 -739
+rect 1457 -1115 1463 -739
+rect 1417 -1127 1463 -1115
+rect 1513 -739 1559 -727
+rect 1513 -1115 1519 -739
+rect 1553 -1115 1559 -739
+rect 1513 -1127 1559 -1115
+rect 1609 -739 1655 -727
+rect 1609 -1115 1615 -739
+rect 1649 -1115 1655 -739
+rect 1609 -1127 1655 -1115
+rect 1705 -739 1751 -727
+rect 1705 -1115 1711 -739
+rect 1745 -1115 1751 -739
+rect 1705 -1127 1751 -1115
+rect 1801 -739 1847 -727
+rect 1801 -1115 1807 -739
+rect 1841 -1115 1847 -739
+rect 1801 -1127 1847 -1115
+rect 1897 -739 1943 -727
+rect 1897 -1115 1903 -739
+rect 1937 -1115 1943 -739
+rect 1897 -1127 1943 -1115
+rect 1993 -739 2039 -727
+rect 1993 -1115 1999 -739
+rect 2033 -1115 2039 -739
+rect 1993 -1127 2039 -1115
+rect 2089 -739 2135 -727
+rect 2089 -1115 2095 -739
+rect 2129 -1115 2135 -739
+rect 2089 -1127 2135 -1115
+rect 2185 -739 2231 -727
+rect 2185 -1115 2191 -739
+rect 2225 -1115 2231 -739
+rect 2185 -1127 2231 -1115
+rect 2281 -739 2327 -727
+rect 2281 -1115 2287 -739
+rect 2321 -1115 2327 -739
+rect 2281 -1127 2327 -1115
+rect 2377 -739 2423 -727
+rect 2377 -1115 2383 -739
+rect 2417 -1115 2423 -739
+rect 2377 -1127 2423 -1115
+rect -2381 -1165 -2323 -1159
+rect -2381 -1199 -2369 -1165
+rect -2335 -1199 -2323 -1165
+rect -2381 -1205 -2323 -1199
+rect -2189 -1165 -2131 -1159
+rect -2189 -1199 -2177 -1165
+rect -2143 -1199 -2131 -1165
+rect -2189 -1205 -2131 -1199
+rect -1997 -1165 -1939 -1159
+rect -1997 -1199 -1985 -1165
+rect -1951 -1199 -1939 -1165
+rect -1997 -1205 -1939 -1199
+rect -1805 -1165 -1747 -1159
+rect -1805 -1199 -1793 -1165
+rect -1759 -1199 -1747 -1165
+rect -1805 -1205 -1747 -1199
+rect -1613 -1165 -1555 -1159
+rect -1613 -1199 -1601 -1165
+rect -1567 -1199 -1555 -1165
+rect -1613 -1205 -1555 -1199
+rect -1421 -1165 -1363 -1159
+rect -1421 -1199 -1409 -1165
+rect -1375 -1199 -1363 -1165
+rect -1421 -1205 -1363 -1199
+rect -1229 -1165 -1171 -1159
+rect -1229 -1199 -1217 -1165
+rect -1183 -1199 -1171 -1165
+rect -1229 -1205 -1171 -1199
+rect -1037 -1165 -979 -1159
+rect -1037 -1199 -1025 -1165
+rect -991 -1199 -979 -1165
+rect -1037 -1205 -979 -1199
+rect -845 -1165 -787 -1159
+rect -845 -1199 -833 -1165
+rect -799 -1199 -787 -1165
+rect -845 -1205 -787 -1199
+rect -653 -1165 -595 -1159
+rect -653 -1199 -641 -1165
+rect -607 -1199 -595 -1165
+rect -653 -1205 -595 -1199
+rect -461 -1165 -403 -1159
+rect -461 -1199 -449 -1165
+rect -415 -1199 -403 -1165
+rect -461 -1205 -403 -1199
+rect -269 -1165 -211 -1159
+rect -269 -1199 -257 -1165
+rect -223 -1199 -211 -1165
+rect -269 -1205 -211 -1199
+rect -77 -1165 -19 -1159
+rect -77 -1199 -65 -1165
+rect -31 -1199 -19 -1165
+rect -77 -1205 -19 -1199
+rect 115 -1165 173 -1159
+rect 115 -1199 127 -1165
+rect 161 -1199 173 -1165
+rect 115 -1205 173 -1199
+rect 307 -1165 365 -1159
+rect 307 -1199 319 -1165
+rect 353 -1199 365 -1165
+rect 307 -1205 365 -1199
+rect 499 -1165 557 -1159
+rect 499 -1199 511 -1165
+rect 545 -1199 557 -1165
+rect 499 -1205 557 -1199
+rect 691 -1165 749 -1159
+rect 691 -1199 703 -1165
+rect 737 -1199 749 -1165
+rect 691 -1205 749 -1199
+rect 883 -1165 941 -1159
+rect 883 -1199 895 -1165
+rect 929 -1199 941 -1165
+rect 883 -1205 941 -1199
+rect 1075 -1165 1133 -1159
+rect 1075 -1199 1087 -1165
+rect 1121 -1199 1133 -1165
+rect 1075 -1205 1133 -1199
+rect 1267 -1165 1325 -1159
+rect 1267 -1199 1279 -1165
+rect 1313 -1199 1325 -1165
+rect 1267 -1205 1325 -1199
+rect 1459 -1165 1517 -1159
+rect 1459 -1199 1471 -1165
+rect 1505 -1199 1517 -1165
+rect 1459 -1205 1517 -1199
+rect 1651 -1165 1709 -1159
+rect 1651 -1199 1663 -1165
+rect 1697 -1199 1709 -1165
+rect 1651 -1205 1709 -1199
+rect 1843 -1165 1901 -1159
+rect 1843 -1199 1855 -1165
+rect 1889 -1199 1901 -1165
+rect 1843 -1205 1901 -1199
+rect 2035 -1165 2093 -1159
+rect 2035 -1199 2047 -1165
+rect 2081 -1199 2093 -1165
+rect 2035 -1205 2093 -1199
+rect 2227 -1165 2285 -1159
+rect 2227 -1199 2239 -1165
+rect 2273 -1199 2285 -1165
+rect 2227 -1205 2285 -1199
+<< properties >>
+string FIXED_BBOX -2514 -1284 2514 1284
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 4 nf 50 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_MN7CLJ.mag b/mag/tia/sky130_fd_pr__nfet_01v8_MN7CLJ.mag
new file mode 100644
index 0000000..dfa82c1
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_MN7CLJ.mag
@@ -0,0 +1,3067 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645790779
+<< error_p >>
+rect -2381 581 -2323 587
+rect -2189 581 -2131 587
+rect -1997 581 -1939 587
+rect -1805 581 -1747 587
+rect -1613 581 -1555 587
+rect -1421 581 -1363 587
+rect -1229 581 -1171 587
+rect -1037 581 -979 587
+rect -845 581 -787 587
+rect -653 581 -595 587
+rect -461 581 -403 587
+rect -269 581 -211 587
+rect -77 581 -19 587
+rect 115 581 173 587
+rect 307 581 365 587
+rect 499 581 557 587
+rect 691 581 749 587
+rect 883 581 941 587
+rect 1075 581 1133 587
+rect 1267 581 1325 587
+rect 1459 581 1517 587
+rect 1651 581 1709 587
+rect 1843 581 1901 587
+rect 2035 581 2093 587
+rect 2227 581 2285 587
+rect -2381 547 -2369 581
+rect -2189 547 -2177 581
+rect -1997 547 -1985 581
+rect -1805 547 -1793 581
+rect -1613 547 -1601 581
+rect -1421 547 -1409 581
+rect -1229 547 -1217 581
+rect -1037 547 -1025 581
+rect -845 547 -833 581
+rect -653 547 -641 581
+rect -461 547 -449 581
+rect -269 547 -257 581
+rect -77 547 -65 581
+rect 115 547 127 581
+rect 307 547 319 581
+rect 499 547 511 581
+rect 691 547 703 581
+rect 883 547 895 581
+rect 1075 547 1087 581
+rect 1267 547 1279 581
+rect 1459 547 1471 581
+rect 1651 547 1663 581
+rect 1843 547 1855 581
+rect 2035 547 2047 581
+rect 2227 547 2239 581
+rect -2381 541 -2323 547
+rect -2189 541 -2131 547
+rect -1997 541 -1939 547
+rect -1805 541 -1747 547
+rect -1613 541 -1555 547
+rect -1421 541 -1363 547
+rect -1229 541 -1171 547
+rect -1037 541 -979 547
+rect -845 541 -787 547
+rect -653 541 -595 547
+rect -461 541 -403 547
+rect -269 541 -211 547
+rect -77 541 -19 547
+rect 115 541 173 547
+rect 307 541 365 547
+rect 499 541 557 547
+rect 691 541 749 547
+rect 883 541 941 547
+rect 1075 541 1133 547
+rect 1267 541 1325 547
+rect 1459 541 1517 547
+rect 1651 541 1709 547
+rect 1843 541 1901 547
+rect 2035 541 2093 547
+rect 2227 541 2285 547
+rect -2285 71 -2227 77
+rect -2093 71 -2035 77
+rect -1901 71 -1843 77
+rect -1709 71 -1651 77
+rect -1517 71 -1459 77
+rect -1325 71 -1267 77
+rect -1133 71 -1075 77
+rect -941 71 -883 77
+rect -749 71 -691 77
+rect -557 71 -499 77
+rect -365 71 -307 77
+rect -173 71 -115 77
+rect 19 71 77 77
+rect 211 71 269 77
+rect 403 71 461 77
+rect 595 71 653 77
+rect 787 71 845 77
+rect 979 71 1037 77
+rect 1171 71 1229 77
+rect 1363 71 1421 77
+rect 1555 71 1613 77
+rect 1747 71 1805 77
+rect 1939 71 1997 77
+rect 2131 71 2189 77
+rect 2323 71 2381 77
+rect -2285 37 -2273 71
+rect -2093 37 -2081 71
+rect -1901 37 -1889 71
+rect -1709 37 -1697 71
+rect -1517 37 -1505 71
+rect -1325 37 -1313 71
+rect -1133 37 -1121 71
+rect -941 37 -929 71
+rect -749 37 -737 71
+rect -557 37 -545 71
+rect -365 37 -353 71
+rect -173 37 -161 71
+rect 19 37 31 71
+rect 211 37 223 71
+rect 403 37 415 71
+rect 595 37 607 71
+rect 787 37 799 71
+rect 979 37 991 71
+rect 1171 37 1183 71
+rect 1363 37 1375 71
+rect 1555 37 1567 71
+rect 1747 37 1759 71
+rect 1939 37 1951 71
+rect 2131 37 2143 71
+rect 2323 37 2335 71
+rect -2285 31 -2227 37
+rect -2093 31 -2035 37
+rect -1901 31 -1843 37
+rect -1709 31 -1651 37
+rect -1517 31 -1459 37
+rect -1325 31 -1267 37
+rect -1133 31 -1075 37
+rect -941 31 -883 37
+rect -749 31 -691 37
+rect -557 31 -499 37
+rect -365 31 -307 37
+rect -173 31 -115 37
+rect 19 31 77 37
+rect 211 31 269 37
+rect 403 31 461 37
+rect 595 31 653 37
+rect 787 31 845 37
+rect 979 31 1037 37
+rect 1171 31 1229 37
+rect 1363 31 1421 37
+rect 1555 31 1613 37
+rect 1747 31 1805 37
+rect 1939 31 1997 37
+rect 2131 31 2189 37
+rect 2323 31 2381 37
+rect -2285 -37 -2227 -31
+rect -2093 -37 -2035 -31
+rect -1901 -37 -1843 -31
+rect -1709 -37 -1651 -31
+rect -1517 -37 -1459 -31
+rect -1325 -37 -1267 -31
+rect -1133 -37 -1075 -31
+rect -941 -37 -883 -31
+rect -749 -37 -691 -31
+rect -557 -37 -499 -31
+rect -365 -37 -307 -31
+rect -173 -37 -115 -31
+rect 19 -37 77 -31
+rect 211 -37 269 -31
+rect 403 -37 461 -31
+rect 595 -37 653 -31
+rect 787 -37 845 -31
+rect 979 -37 1037 -31
+rect 1171 -37 1229 -31
+rect 1363 -37 1421 -31
+rect 1555 -37 1613 -31
+rect 1747 -37 1805 -31
+rect 1939 -37 1997 -31
+rect 2131 -37 2189 -31
+rect 2323 -37 2381 -31
+rect -2285 -71 -2273 -37
+rect -2093 -71 -2081 -37
+rect -1901 -71 -1889 -37
+rect -1709 -71 -1697 -37
+rect -1517 -71 -1505 -37
+rect -1325 -71 -1313 -37
+rect -1133 -71 -1121 -37
+rect -941 -71 -929 -37
+rect -749 -71 -737 -37
+rect -557 -71 -545 -37
+rect -365 -71 -353 -37
+rect -173 -71 -161 -37
+rect 19 -71 31 -37
+rect 211 -71 223 -37
+rect 403 -71 415 -37
+rect 595 -71 607 -37
+rect 787 -71 799 -37
+rect 979 -71 991 -37
+rect 1171 -71 1183 -37
+rect 1363 -71 1375 -37
+rect 1555 -71 1567 -37
+rect 1747 -71 1759 -37
+rect 1939 -71 1951 -37
+rect 2131 -71 2143 -37
+rect 2323 -71 2335 -37
+rect -2285 -77 -2227 -71
+rect -2093 -77 -2035 -71
+rect -1901 -77 -1843 -71
+rect -1709 -77 -1651 -71
+rect -1517 -77 -1459 -71
+rect -1325 -77 -1267 -71
+rect -1133 -77 -1075 -71
+rect -941 -77 -883 -71
+rect -749 -77 -691 -71
+rect -557 -77 -499 -71
+rect -365 -77 -307 -71
+rect -173 -77 -115 -71
+rect 19 -77 77 -71
+rect 211 -77 269 -71
+rect 403 -77 461 -71
+rect 595 -77 653 -71
+rect 787 -77 845 -71
+rect 979 -77 1037 -71
+rect 1171 -77 1229 -71
+rect 1363 -77 1421 -71
+rect 1555 -77 1613 -71
+rect 1747 -77 1805 -71
+rect 1939 -77 1997 -71
+rect 2131 -77 2189 -71
+rect 2323 -77 2381 -71
+rect -2381 -547 -2323 -541
+rect -2189 -547 -2131 -541
+rect -1997 -547 -1939 -541
+rect -1805 -547 -1747 -541
+rect -1613 -547 -1555 -541
+rect -1421 -547 -1363 -541
+rect -1229 -547 -1171 -541
+rect -1037 -547 -979 -541
+rect -845 -547 -787 -541
+rect -653 -547 -595 -541
+rect -461 -547 -403 -541
+rect -269 -547 -211 -541
+rect -77 -547 -19 -541
+rect 115 -547 173 -541
+rect 307 -547 365 -541
+rect 499 -547 557 -541
+rect 691 -547 749 -541
+rect 883 -547 941 -541
+rect 1075 -547 1133 -541
+rect 1267 -547 1325 -541
+rect 1459 -547 1517 -541
+rect 1651 -547 1709 -541
+rect 1843 -547 1901 -541
+rect 2035 -547 2093 -541
+rect 2227 -547 2285 -541
+rect -2381 -581 -2369 -547
+rect -2189 -581 -2177 -547
+rect -1997 -581 -1985 -547
+rect -1805 -581 -1793 -547
+rect -1613 -581 -1601 -547
+rect -1421 -581 -1409 -547
+rect -1229 -581 -1217 -547
+rect -1037 -581 -1025 -547
+rect -845 -581 -833 -547
+rect -653 -581 -641 -547
+rect -461 -581 -449 -547
+rect -269 -581 -257 -547
+rect -77 -581 -65 -547
+rect 115 -581 127 -547
+rect 307 -581 319 -547
+rect 499 -581 511 -547
+rect 691 -581 703 -547
+rect 883 -581 895 -547
+rect 1075 -581 1087 -547
+rect 1267 -581 1279 -547
+rect 1459 -581 1471 -547
+rect 1651 -581 1663 -547
+rect 1843 -581 1855 -547
+rect 2035 -581 2047 -547
+rect 2227 -581 2239 -547
+rect -2381 -587 -2323 -581
+rect -2189 -587 -2131 -581
+rect -1997 -587 -1939 -581
+rect -1805 -587 -1747 -581
+rect -1613 -587 -1555 -581
+rect -1421 -587 -1363 -581
+rect -1229 -587 -1171 -581
+rect -1037 -587 -979 -581
+rect -845 -587 -787 -581
+rect -653 -587 -595 -581
+rect -461 -587 -403 -581
+rect -269 -587 -211 -581
+rect -77 -587 -19 -581
+rect 115 -587 173 -581
+rect 307 -587 365 -581
+rect 499 -587 557 -581
+rect 691 -587 749 -581
+rect 883 -587 941 -581
+rect 1075 -587 1133 -581
+rect 1267 -587 1325 -581
+rect 1459 -587 1517 -581
+rect 1651 -587 1709 -581
+rect 1843 -587 1901 -581
+rect 2035 -587 2093 -581
+rect 2227 -587 2285 -581
+<< pwell >>
+rect -2567 -719 2567 719
+<< nmos >>
+rect -2367 109 -2337 509
+rect -2271 109 -2241 509
+rect -2175 109 -2145 509
+rect -2079 109 -2049 509
+rect -1983 109 -1953 509
+rect -1887 109 -1857 509
+rect -1791 109 -1761 509
+rect -1695 109 -1665 509
+rect -1599 109 -1569 509
+rect -1503 109 -1473 509
+rect -1407 109 -1377 509
+rect -1311 109 -1281 509
+rect -1215 109 -1185 509
+rect -1119 109 -1089 509
+rect -1023 109 -993 509
+rect -927 109 -897 509
+rect -831 109 -801 509
+rect -735 109 -705 509
+rect -639 109 -609 509
+rect -543 109 -513 509
+rect -447 109 -417 509
+rect -351 109 -321 509
+rect -255 109 -225 509
+rect -159 109 -129 509
+rect -63 109 -33 509
+rect 33 109 63 509
+rect 129 109 159 509
+rect 225 109 255 509
+rect 321 109 351 509
+rect 417 109 447 509
+rect 513 109 543 509
+rect 609 109 639 509
+rect 705 109 735 509
+rect 801 109 831 509
+rect 897 109 927 509
+rect 993 109 1023 509
+rect 1089 109 1119 509
+rect 1185 109 1215 509
+rect 1281 109 1311 509
+rect 1377 109 1407 509
+rect 1473 109 1503 509
+rect 1569 109 1599 509
+rect 1665 109 1695 509
+rect 1761 109 1791 509
+rect 1857 109 1887 509
+rect 1953 109 1983 509
+rect 2049 109 2079 509
+rect 2145 109 2175 509
+rect 2241 109 2271 509
+rect 2337 109 2367 509
+rect -2367 -509 -2337 -109
+rect -2271 -509 -2241 -109
+rect -2175 -509 -2145 -109
+rect -2079 -509 -2049 -109
+rect -1983 -509 -1953 -109
+rect -1887 -509 -1857 -109
+rect -1791 -509 -1761 -109
+rect -1695 -509 -1665 -109
+rect -1599 -509 -1569 -109
+rect -1503 -509 -1473 -109
+rect -1407 -509 -1377 -109
+rect -1311 -509 -1281 -109
+rect -1215 -509 -1185 -109
+rect -1119 -509 -1089 -109
+rect -1023 -509 -993 -109
+rect -927 -509 -897 -109
+rect -831 -509 -801 -109
+rect -735 -509 -705 -109
+rect -639 -509 -609 -109
+rect -543 -509 -513 -109
+rect -447 -509 -417 -109
+rect -351 -509 -321 -109
+rect -255 -509 -225 -109
+rect -159 -509 -129 -109
+rect -63 -509 -33 -109
+rect 33 -509 63 -109
+rect 129 -509 159 -109
+rect 225 -509 255 -109
+rect 321 -509 351 -109
+rect 417 -509 447 -109
+rect 513 -509 543 -109
+rect 609 -509 639 -109
+rect 705 -509 735 -109
+rect 801 -509 831 -109
+rect 897 -509 927 -109
+rect 993 -509 1023 -109
+rect 1089 -509 1119 -109
+rect 1185 -509 1215 -109
+rect 1281 -509 1311 -109
+rect 1377 -509 1407 -109
+rect 1473 -509 1503 -109
+rect 1569 -509 1599 -109
+rect 1665 -509 1695 -109
+rect 1761 -509 1791 -109
+rect 1857 -509 1887 -109
+rect 1953 -509 1983 -109
+rect 2049 -509 2079 -109
+rect 2145 -509 2175 -109
+rect 2241 -509 2271 -109
+rect 2337 -509 2367 -109
+<< ndiff >>
+rect -2429 497 -2367 509
+rect -2429 121 -2417 497
+rect -2383 121 -2367 497
+rect -2429 109 -2367 121
+rect -2337 497 -2271 509
+rect -2337 121 -2321 497
+rect -2287 121 -2271 497
+rect -2337 109 -2271 121
+rect -2241 497 -2175 509
+rect -2241 121 -2225 497
+rect -2191 121 -2175 497
+rect -2241 109 -2175 121
+rect -2145 497 -2079 509
+rect -2145 121 -2129 497
+rect -2095 121 -2079 497
+rect -2145 109 -2079 121
+rect -2049 497 -1983 509
+rect -2049 121 -2033 497
+rect -1999 121 -1983 497
+rect -2049 109 -1983 121
+rect -1953 497 -1887 509
+rect -1953 121 -1937 497
+rect -1903 121 -1887 497
+rect -1953 109 -1887 121
+rect -1857 497 -1791 509
+rect -1857 121 -1841 497
+rect -1807 121 -1791 497
+rect -1857 109 -1791 121
+rect -1761 497 -1695 509
+rect -1761 121 -1745 497
+rect -1711 121 -1695 497
+rect -1761 109 -1695 121
+rect -1665 497 -1599 509
+rect -1665 121 -1649 497
+rect -1615 121 -1599 497
+rect -1665 109 -1599 121
+rect -1569 497 -1503 509
+rect -1569 121 -1553 497
+rect -1519 121 -1503 497
+rect -1569 109 -1503 121
+rect -1473 497 -1407 509
+rect -1473 121 -1457 497
+rect -1423 121 -1407 497
+rect -1473 109 -1407 121
+rect -1377 497 -1311 509
+rect -1377 121 -1361 497
+rect -1327 121 -1311 497
+rect -1377 109 -1311 121
+rect -1281 497 -1215 509
+rect -1281 121 -1265 497
+rect -1231 121 -1215 497
+rect -1281 109 -1215 121
+rect -1185 497 -1119 509
+rect -1185 121 -1169 497
+rect -1135 121 -1119 497
+rect -1185 109 -1119 121
+rect -1089 497 -1023 509
+rect -1089 121 -1073 497
+rect -1039 121 -1023 497
+rect -1089 109 -1023 121
+rect -993 497 -927 509
+rect -993 121 -977 497
+rect -943 121 -927 497
+rect -993 109 -927 121
+rect -897 497 -831 509
+rect -897 121 -881 497
+rect -847 121 -831 497
+rect -897 109 -831 121
+rect -801 497 -735 509
+rect -801 121 -785 497
+rect -751 121 -735 497
+rect -801 109 -735 121
+rect -705 497 -639 509
+rect -705 121 -689 497
+rect -655 121 -639 497
+rect -705 109 -639 121
+rect -609 497 -543 509
+rect -609 121 -593 497
+rect -559 121 -543 497
+rect -609 109 -543 121
+rect -513 497 -447 509
+rect -513 121 -497 497
+rect -463 121 -447 497
+rect -513 109 -447 121
+rect -417 497 -351 509
+rect -417 121 -401 497
+rect -367 121 -351 497
+rect -417 109 -351 121
+rect -321 497 -255 509
+rect -321 121 -305 497
+rect -271 121 -255 497
+rect -321 109 -255 121
+rect -225 497 -159 509
+rect -225 121 -209 497
+rect -175 121 -159 497
+rect -225 109 -159 121
+rect -129 497 -63 509
+rect -129 121 -113 497
+rect -79 121 -63 497
+rect -129 109 -63 121
+rect -33 497 33 509
+rect -33 121 -17 497
+rect 17 121 33 497
+rect -33 109 33 121
+rect 63 497 129 509
+rect 63 121 79 497
+rect 113 121 129 497
+rect 63 109 129 121
+rect 159 497 225 509
+rect 159 121 175 497
+rect 209 121 225 497
+rect 159 109 225 121
+rect 255 497 321 509
+rect 255 121 271 497
+rect 305 121 321 497
+rect 255 109 321 121
+rect 351 497 417 509
+rect 351 121 367 497
+rect 401 121 417 497
+rect 351 109 417 121
+rect 447 497 513 509
+rect 447 121 463 497
+rect 497 121 513 497
+rect 447 109 513 121
+rect 543 497 609 509
+rect 543 121 559 497
+rect 593 121 609 497
+rect 543 109 609 121
+rect 639 497 705 509
+rect 639 121 655 497
+rect 689 121 705 497
+rect 639 109 705 121
+rect 735 497 801 509
+rect 735 121 751 497
+rect 785 121 801 497
+rect 735 109 801 121
+rect 831 497 897 509
+rect 831 121 847 497
+rect 881 121 897 497
+rect 831 109 897 121
+rect 927 497 993 509
+rect 927 121 943 497
+rect 977 121 993 497
+rect 927 109 993 121
+rect 1023 497 1089 509
+rect 1023 121 1039 497
+rect 1073 121 1089 497
+rect 1023 109 1089 121
+rect 1119 497 1185 509
+rect 1119 121 1135 497
+rect 1169 121 1185 497
+rect 1119 109 1185 121
+rect 1215 497 1281 509
+rect 1215 121 1231 497
+rect 1265 121 1281 497
+rect 1215 109 1281 121
+rect 1311 497 1377 509
+rect 1311 121 1327 497
+rect 1361 121 1377 497
+rect 1311 109 1377 121
+rect 1407 497 1473 509
+rect 1407 121 1423 497
+rect 1457 121 1473 497
+rect 1407 109 1473 121
+rect 1503 497 1569 509
+rect 1503 121 1519 497
+rect 1553 121 1569 497
+rect 1503 109 1569 121
+rect 1599 497 1665 509
+rect 1599 121 1615 497
+rect 1649 121 1665 497
+rect 1599 109 1665 121
+rect 1695 497 1761 509
+rect 1695 121 1711 497
+rect 1745 121 1761 497
+rect 1695 109 1761 121
+rect 1791 497 1857 509
+rect 1791 121 1807 497
+rect 1841 121 1857 497
+rect 1791 109 1857 121
+rect 1887 497 1953 509
+rect 1887 121 1903 497
+rect 1937 121 1953 497
+rect 1887 109 1953 121
+rect 1983 497 2049 509
+rect 1983 121 1999 497
+rect 2033 121 2049 497
+rect 1983 109 2049 121
+rect 2079 497 2145 509
+rect 2079 121 2095 497
+rect 2129 121 2145 497
+rect 2079 109 2145 121
+rect 2175 497 2241 509
+rect 2175 121 2191 497
+rect 2225 121 2241 497
+rect 2175 109 2241 121
+rect 2271 497 2337 509
+rect 2271 121 2287 497
+rect 2321 121 2337 497
+rect 2271 109 2337 121
+rect 2367 497 2429 509
+rect 2367 121 2383 497
+rect 2417 121 2429 497
+rect 2367 109 2429 121
+rect -2429 -121 -2367 -109
+rect -2429 -497 -2417 -121
+rect -2383 -497 -2367 -121
+rect -2429 -509 -2367 -497
+rect -2337 -121 -2271 -109
+rect -2337 -497 -2321 -121
+rect -2287 -497 -2271 -121
+rect -2337 -509 -2271 -497
+rect -2241 -121 -2175 -109
+rect -2241 -497 -2225 -121
+rect -2191 -497 -2175 -121
+rect -2241 -509 -2175 -497
+rect -2145 -121 -2079 -109
+rect -2145 -497 -2129 -121
+rect -2095 -497 -2079 -121
+rect -2145 -509 -2079 -497
+rect -2049 -121 -1983 -109
+rect -2049 -497 -2033 -121
+rect -1999 -497 -1983 -121
+rect -2049 -509 -1983 -497
+rect -1953 -121 -1887 -109
+rect -1953 -497 -1937 -121
+rect -1903 -497 -1887 -121
+rect -1953 -509 -1887 -497
+rect -1857 -121 -1791 -109
+rect -1857 -497 -1841 -121
+rect -1807 -497 -1791 -121
+rect -1857 -509 -1791 -497
+rect -1761 -121 -1695 -109
+rect -1761 -497 -1745 -121
+rect -1711 -497 -1695 -121
+rect -1761 -509 -1695 -497
+rect -1665 -121 -1599 -109
+rect -1665 -497 -1649 -121
+rect -1615 -497 -1599 -121
+rect -1665 -509 -1599 -497
+rect -1569 -121 -1503 -109
+rect -1569 -497 -1553 -121
+rect -1519 -497 -1503 -121
+rect -1569 -509 -1503 -497
+rect -1473 -121 -1407 -109
+rect -1473 -497 -1457 -121
+rect -1423 -497 -1407 -121
+rect -1473 -509 -1407 -497
+rect -1377 -121 -1311 -109
+rect -1377 -497 -1361 -121
+rect -1327 -497 -1311 -121
+rect -1377 -509 -1311 -497
+rect -1281 -121 -1215 -109
+rect -1281 -497 -1265 -121
+rect -1231 -497 -1215 -121
+rect -1281 -509 -1215 -497
+rect -1185 -121 -1119 -109
+rect -1185 -497 -1169 -121
+rect -1135 -497 -1119 -121
+rect -1185 -509 -1119 -497
+rect -1089 -121 -1023 -109
+rect -1089 -497 -1073 -121
+rect -1039 -497 -1023 -121
+rect -1089 -509 -1023 -497
+rect -993 -121 -927 -109
+rect -993 -497 -977 -121
+rect -943 -497 -927 -121
+rect -993 -509 -927 -497
+rect -897 -121 -831 -109
+rect -897 -497 -881 -121
+rect -847 -497 -831 -121
+rect -897 -509 -831 -497
+rect -801 -121 -735 -109
+rect -801 -497 -785 -121
+rect -751 -497 -735 -121
+rect -801 -509 -735 -497
+rect -705 -121 -639 -109
+rect -705 -497 -689 -121
+rect -655 -497 -639 -121
+rect -705 -509 -639 -497
+rect -609 -121 -543 -109
+rect -609 -497 -593 -121
+rect -559 -497 -543 -121
+rect -609 -509 -543 -497
+rect -513 -121 -447 -109
+rect -513 -497 -497 -121
+rect -463 -497 -447 -121
+rect -513 -509 -447 -497
+rect -417 -121 -351 -109
+rect -417 -497 -401 -121
+rect -367 -497 -351 -121
+rect -417 -509 -351 -497
+rect -321 -121 -255 -109
+rect -321 -497 -305 -121
+rect -271 -497 -255 -121
+rect -321 -509 -255 -497
+rect -225 -121 -159 -109
+rect -225 -497 -209 -121
+rect -175 -497 -159 -121
+rect -225 -509 -159 -497
+rect -129 -121 -63 -109
+rect -129 -497 -113 -121
+rect -79 -497 -63 -121
+rect -129 -509 -63 -497
+rect -33 -121 33 -109
+rect -33 -497 -17 -121
+rect 17 -497 33 -121
+rect -33 -509 33 -497
+rect 63 -121 129 -109
+rect 63 -497 79 -121
+rect 113 -497 129 -121
+rect 63 -509 129 -497
+rect 159 -121 225 -109
+rect 159 -497 175 -121
+rect 209 -497 225 -121
+rect 159 -509 225 -497
+rect 255 -121 321 -109
+rect 255 -497 271 -121
+rect 305 -497 321 -121
+rect 255 -509 321 -497
+rect 351 -121 417 -109
+rect 351 -497 367 -121
+rect 401 -497 417 -121
+rect 351 -509 417 -497
+rect 447 -121 513 -109
+rect 447 -497 463 -121
+rect 497 -497 513 -121
+rect 447 -509 513 -497
+rect 543 -121 609 -109
+rect 543 -497 559 -121
+rect 593 -497 609 -121
+rect 543 -509 609 -497
+rect 639 -121 705 -109
+rect 639 -497 655 -121
+rect 689 -497 705 -121
+rect 639 -509 705 -497
+rect 735 -121 801 -109
+rect 735 -497 751 -121
+rect 785 -497 801 -121
+rect 735 -509 801 -497
+rect 831 -121 897 -109
+rect 831 -497 847 -121
+rect 881 -497 897 -121
+rect 831 -509 897 -497
+rect 927 -121 993 -109
+rect 927 -497 943 -121
+rect 977 -497 993 -121
+rect 927 -509 993 -497
+rect 1023 -121 1089 -109
+rect 1023 -497 1039 -121
+rect 1073 -497 1089 -121
+rect 1023 -509 1089 -497
+rect 1119 -121 1185 -109
+rect 1119 -497 1135 -121
+rect 1169 -497 1185 -121
+rect 1119 -509 1185 -497
+rect 1215 -121 1281 -109
+rect 1215 -497 1231 -121
+rect 1265 -497 1281 -121
+rect 1215 -509 1281 -497
+rect 1311 -121 1377 -109
+rect 1311 -497 1327 -121
+rect 1361 -497 1377 -121
+rect 1311 -509 1377 -497
+rect 1407 -121 1473 -109
+rect 1407 -497 1423 -121
+rect 1457 -497 1473 -121
+rect 1407 -509 1473 -497
+rect 1503 -121 1569 -109
+rect 1503 -497 1519 -121
+rect 1553 -497 1569 -121
+rect 1503 -509 1569 -497
+rect 1599 -121 1665 -109
+rect 1599 -497 1615 -121
+rect 1649 -497 1665 -121
+rect 1599 -509 1665 -497
+rect 1695 -121 1761 -109
+rect 1695 -497 1711 -121
+rect 1745 -497 1761 -121
+rect 1695 -509 1761 -497
+rect 1791 -121 1857 -109
+rect 1791 -497 1807 -121
+rect 1841 -497 1857 -121
+rect 1791 -509 1857 -497
+rect 1887 -121 1953 -109
+rect 1887 -497 1903 -121
+rect 1937 -497 1953 -121
+rect 1887 -509 1953 -497
+rect 1983 -121 2049 -109
+rect 1983 -497 1999 -121
+rect 2033 -497 2049 -121
+rect 1983 -509 2049 -497
+rect 2079 -121 2145 -109
+rect 2079 -497 2095 -121
+rect 2129 -497 2145 -121
+rect 2079 -509 2145 -497
+rect 2175 -121 2241 -109
+rect 2175 -497 2191 -121
+rect 2225 -497 2241 -121
+rect 2175 -509 2241 -497
+rect 2271 -121 2337 -109
+rect 2271 -497 2287 -121
+rect 2321 -497 2337 -121
+rect 2271 -509 2337 -497
+rect 2367 -121 2429 -109
+rect 2367 -497 2383 -121
+rect 2417 -497 2429 -121
+rect 2367 -509 2429 -497
+<< ndiffc >>
+rect -2417 121 -2383 497
+rect -2321 121 -2287 497
+rect -2225 121 -2191 497
+rect -2129 121 -2095 497
+rect -2033 121 -1999 497
+rect -1937 121 -1903 497
+rect -1841 121 -1807 497
+rect -1745 121 -1711 497
+rect -1649 121 -1615 497
+rect -1553 121 -1519 497
+rect -1457 121 -1423 497
+rect -1361 121 -1327 497
+rect -1265 121 -1231 497
+rect -1169 121 -1135 497
+rect -1073 121 -1039 497
+rect -977 121 -943 497
+rect -881 121 -847 497
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect 847 121 881 497
+rect 943 121 977 497
+rect 1039 121 1073 497
+rect 1135 121 1169 497
+rect 1231 121 1265 497
+rect 1327 121 1361 497
+rect 1423 121 1457 497
+rect 1519 121 1553 497
+rect 1615 121 1649 497
+rect 1711 121 1745 497
+rect 1807 121 1841 497
+rect 1903 121 1937 497
+rect 1999 121 2033 497
+rect 2095 121 2129 497
+rect 2191 121 2225 497
+rect 2287 121 2321 497
+rect 2383 121 2417 497
+rect -2417 -497 -2383 -121
+rect -2321 -497 -2287 -121
+rect -2225 -497 -2191 -121
+rect -2129 -497 -2095 -121
+rect -2033 -497 -1999 -121
+rect -1937 -497 -1903 -121
+rect -1841 -497 -1807 -121
+rect -1745 -497 -1711 -121
+rect -1649 -497 -1615 -121
+rect -1553 -497 -1519 -121
+rect -1457 -497 -1423 -121
+rect -1361 -497 -1327 -121
+rect -1265 -497 -1231 -121
+rect -1169 -497 -1135 -121
+rect -1073 -497 -1039 -121
+rect -977 -497 -943 -121
+rect -881 -497 -847 -121
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect 847 -497 881 -121
+rect 943 -497 977 -121
+rect 1039 -497 1073 -121
+rect 1135 -497 1169 -121
+rect 1231 -497 1265 -121
+rect 1327 -497 1361 -121
+rect 1423 -497 1457 -121
+rect 1519 -497 1553 -121
+rect 1615 -497 1649 -121
+rect 1711 -497 1745 -121
+rect 1807 -497 1841 -121
+rect 1903 -497 1937 -121
+rect 1999 -497 2033 -121
+rect 2095 -497 2129 -121
+rect 2191 -497 2225 -121
+rect 2287 -497 2321 -121
+rect 2383 -497 2417 -121
+<< psubdiff >>
+rect -2531 649 -2435 683
+rect 2435 649 2531 683
+rect -2531 587 -2497 649
+rect 2497 587 2531 649
+rect -2531 -649 -2497 -587
+rect 2497 -649 2531 -587
+rect -2531 -683 -2435 -649
+rect 2435 -683 2531 -649
+<< psubdiffcont >>
+rect -2435 649 2435 683
+rect -2531 -587 -2497 587
+rect 2497 -587 2531 587
+rect -2435 -683 2435 -649
+<< poly >>
+rect -2385 581 -2319 597
+rect -2385 547 -2369 581
+rect -2335 547 -2319 581
+rect -2385 531 -2319 547
+rect -2193 581 -2127 597
+rect -2193 547 -2177 581
+rect -2143 547 -2127 581
+rect -2367 509 -2337 531
+rect -2271 509 -2241 535
+rect -2193 531 -2127 547
+rect -2001 581 -1935 597
+rect -2001 547 -1985 581
+rect -1951 547 -1935 581
+rect -2175 509 -2145 531
+rect -2079 509 -2049 535
+rect -2001 531 -1935 547
+rect -1809 581 -1743 597
+rect -1809 547 -1793 581
+rect -1759 547 -1743 581
+rect -1983 509 -1953 531
+rect -1887 509 -1857 535
+rect -1809 531 -1743 547
+rect -1617 581 -1551 597
+rect -1617 547 -1601 581
+rect -1567 547 -1551 581
+rect -1791 509 -1761 531
+rect -1695 509 -1665 535
+rect -1617 531 -1551 547
+rect -1425 581 -1359 597
+rect -1425 547 -1409 581
+rect -1375 547 -1359 581
+rect -1599 509 -1569 531
+rect -1503 509 -1473 535
+rect -1425 531 -1359 547
+rect -1233 581 -1167 597
+rect -1233 547 -1217 581
+rect -1183 547 -1167 581
+rect -1407 509 -1377 531
+rect -1311 509 -1281 535
+rect -1233 531 -1167 547
+rect -1041 581 -975 597
+rect -1041 547 -1025 581
+rect -991 547 -975 581
+rect -1215 509 -1185 531
+rect -1119 509 -1089 535
+rect -1041 531 -975 547
+rect -849 581 -783 597
+rect -849 547 -833 581
+rect -799 547 -783 581
+rect -1023 509 -993 531
+rect -927 509 -897 535
+rect -849 531 -783 547
+rect -657 581 -591 597
+rect -657 547 -641 581
+rect -607 547 -591 581
+rect -831 509 -801 531
+rect -735 509 -705 535
+rect -657 531 -591 547
+rect -465 581 -399 597
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -639 509 -609 531
+rect -543 509 -513 535
+rect -465 531 -399 547
+rect -273 581 -207 597
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -447 509 -417 531
+rect -351 509 -321 535
+rect -273 531 -207 547
+rect -81 581 -15 597
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect -255 509 -225 531
+rect -159 509 -129 535
+rect -81 531 -15 547
+rect 111 581 177 597
+rect 111 547 127 581
+rect 161 547 177 581
+rect -63 509 -33 531
+rect 33 509 63 535
+rect 111 531 177 547
+rect 303 581 369 597
+rect 303 547 319 581
+rect 353 547 369 581
+rect 129 509 159 531
+rect 225 509 255 535
+rect 303 531 369 547
+rect 495 581 561 597
+rect 495 547 511 581
+rect 545 547 561 581
+rect 321 509 351 531
+rect 417 509 447 535
+rect 495 531 561 547
+rect 687 581 753 597
+rect 687 547 703 581
+rect 737 547 753 581
+rect 513 509 543 531
+rect 609 509 639 535
+rect 687 531 753 547
+rect 879 581 945 597
+rect 879 547 895 581
+rect 929 547 945 581
+rect 705 509 735 531
+rect 801 509 831 535
+rect 879 531 945 547
+rect 1071 581 1137 597
+rect 1071 547 1087 581
+rect 1121 547 1137 581
+rect 897 509 927 531
+rect 993 509 1023 535
+rect 1071 531 1137 547
+rect 1263 581 1329 597
+rect 1263 547 1279 581
+rect 1313 547 1329 581
+rect 1089 509 1119 531
+rect 1185 509 1215 535
+rect 1263 531 1329 547
+rect 1455 581 1521 597
+rect 1455 547 1471 581
+rect 1505 547 1521 581
+rect 1281 509 1311 531
+rect 1377 509 1407 535
+rect 1455 531 1521 547
+rect 1647 581 1713 597
+rect 1647 547 1663 581
+rect 1697 547 1713 581
+rect 1473 509 1503 531
+rect 1569 509 1599 535
+rect 1647 531 1713 547
+rect 1839 581 1905 597
+rect 1839 547 1855 581
+rect 1889 547 1905 581
+rect 1665 509 1695 531
+rect 1761 509 1791 535
+rect 1839 531 1905 547
+rect 2031 581 2097 597
+rect 2031 547 2047 581
+rect 2081 547 2097 581
+rect 1857 509 1887 531
+rect 1953 509 1983 535
+rect 2031 531 2097 547
+rect 2223 581 2289 597
+rect 2223 547 2239 581
+rect 2273 547 2289 581
+rect 2049 509 2079 531
+rect 2145 509 2175 535
+rect 2223 531 2289 547
+rect 2241 509 2271 531
+rect 2337 509 2367 535
+rect -2367 83 -2337 109
+rect -2271 87 -2241 109
+rect -2289 71 -2223 87
+rect -2175 83 -2145 109
+rect -2079 87 -2049 109
+rect -2289 37 -2273 71
+rect -2239 37 -2223 71
+rect -2289 21 -2223 37
+rect -2097 71 -2031 87
+rect -1983 83 -1953 109
+rect -1887 87 -1857 109
+rect -2097 37 -2081 71
+rect -2047 37 -2031 71
+rect -2097 21 -2031 37
+rect -1905 71 -1839 87
+rect -1791 83 -1761 109
+rect -1695 87 -1665 109
+rect -1905 37 -1889 71
+rect -1855 37 -1839 71
+rect -1905 21 -1839 37
+rect -1713 71 -1647 87
+rect -1599 83 -1569 109
+rect -1503 87 -1473 109
+rect -1713 37 -1697 71
+rect -1663 37 -1647 71
+rect -1713 21 -1647 37
+rect -1521 71 -1455 87
+rect -1407 83 -1377 109
+rect -1311 87 -1281 109
+rect -1521 37 -1505 71
+rect -1471 37 -1455 71
+rect -1521 21 -1455 37
+rect -1329 71 -1263 87
+rect -1215 83 -1185 109
+rect -1119 87 -1089 109
+rect -1329 37 -1313 71
+rect -1279 37 -1263 71
+rect -1329 21 -1263 37
+rect -1137 71 -1071 87
+rect -1023 83 -993 109
+rect -927 87 -897 109
+rect -1137 37 -1121 71
+rect -1087 37 -1071 71
+rect -1137 21 -1071 37
+rect -945 71 -879 87
+rect -831 83 -801 109
+rect -735 87 -705 109
+rect -945 37 -929 71
+rect -895 37 -879 71
+rect -945 21 -879 37
+rect -753 71 -687 87
+rect -639 83 -609 109
+rect -543 87 -513 109
+rect -753 37 -737 71
+rect -703 37 -687 71
+rect -753 21 -687 37
+rect -561 71 -495 87
+rect -447 83 -417 109
+rect -351 87 -321 109
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -561 21 -495 37
+rect -369 71 -303 87
+rect -255 83 -225 109
+rect -159 87 -129 109
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -369 21 -303 37
+rect -177 71 -111 87
+rect -63 83 -33 109
+rect 33 87 63 109
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect -177 21 -111 37
+rect 15 71 81 87
+rect 129 83 159 109
+rect 225 87 255 109
+rect 15 37 31 71
+rect 65 37 81 71
+rect 15 21 81 37
+rect 207 71 273 87
+rect 321 83 351 109
+rect 417 87 447 109
+rect 207 37 223 71
+rect 257 37 273 71
+rect 207 21 273 37
+rect 399 71 465 87
+rect 513 83 543 109
+rect 609 87 639 109
+rect 399 37 415 71
+rect 449 37 465 71
+rect 399 21 465 37
+rect 591 71 657 87
+rect 705 83 735 109
+rect 801 87 831 109
+rect 591 37 607 71
+rect 641 37 657 71
+rect 591 21 657 37
+rect 783 71 849 87
+rect 897 83 927 109
+rect 993 87 1023 109
+rect 783 37 799 71
+rect 833 37 849 71
+rect 783 21 849 37
+rect 975 71 1041 87
+rect 1089 83 1119 109
+rect 1185 87 1215 109
+rect 975 37 991 71
+rect 1025 37 1041 71
+rect 975 21 1041 37
+rect 1167 71 1233 87
+rect 1281 83 1311 109
+rect 1377 87 1407 109
+rect 1167 37 1183 71
+rect 1217 37 1233 71
+rect 1167 21 1233 37
+rect 1359 71 1425 87
+rect 1473 83 1503 109
+rect 1569 87 1599 109
+rect 1359 37 1375 71
+rect 1409 37 1425 71
+rect 1359 21 1425 37
+rect 1551 71 1617 87
+rect 1665 83 1695 109
+rect 1761 87 1791 109
+rect 1551 37 1567 71
+rect 1601 37 1617 71
+rect 1551 21 1617 37
+rect 1743 71 1809 87
+rect 1857 83 1887 109
+rect 1953 87 1983 109
+rect 1743 37 1759 71
+rect 1793 37 1809 71
+rect 1743 21 1809 37
+rect 1935 71 2001 87
+rect 2049 83 2079 109
+rect 2145 87 2175 109
+rect 1935 37 1951 71
+rect 1985 37 2001 71
+rect 1935 21 2001 37
+rect 2127 71 2193 87
+rect 2241 83 2271 109
+rect 2337 87 2367 109
+rect 2127 37 2143 71
+rect 2177 37 2193 71
+rect 2127 21 2193 37
+rect 2319 71 2385 87
+rect 2319 37 2335 71
+rect 2369 37 2385 71
+rect 2319 21 2385 37
+rect -2289 -37 -2223 -21
+rect -2289 -71 -2273 -37
+rect -2239 -71 -2223 -37
+rect -2367 -109 -2337 -83
+rect -2289 -87 -2223 -71
+rect -2097 -37 -2031 -21
+rect -2097 -71 -2081 -37
+rect -2047 -71 -2031 -37
+rect -2271 -109 -2241 -87
+rect -2175 -109 -2145 -83
+rect -2097 -87 -2031 -71
+rect -1905 -37 -1839 -21
+rect -1905 -71 -1889 -37
+rect -1855 -71 -1839 -37
+rect -2079 -109 -2049 -87
+rect -1983 -109 -1953 -83
+rect -1905 -87 -1839 -71
+rect -1713 -37 -1647 -21
+rect -1713 -71 -1697 -37
+rect -1663 -71 -1647 -37
+rect -1887 -109 -1857 -87
+rect -1791 -109 -1761 -83
+rect -1713 -87 -1647 -71
+rect -1521 -37 -1455 -21
+rect -1521 -71 -1505 -37
+rect -1471 -71 -1455 -37
+rect -1695 -109 -1665 -87
+rect -1599 -109 -1569 -83
+rect -1521 -87 -1455 -71
+rect -1329 -37 -1263 -21
+rect -1329 -71 -1313 -37
+rect -1279 -71 -1263 -37
+rect -1503 -109 -1473 -87
+rect -1407 -109 -1377 -83
+rect -1329 -87 -1263 -71
+rect -1137 -37 -1071 -21
+rect -1137 -71 -1121 -37
+rect -1087 -71 -1071 -37
+rect -1311 -109 -1281 -87
+rect -1215 -109 -1185 -83
+rect -1137 -87 -1071 -71
+rect -945 -37 -879 -21
+rect -945 -71 -929 -37
+rect -895 -71 -879 -37
+rect -1119 -109 -1089 -87
+rect -1023 -109 -993 -83
+rect -945 -87 -879 -71
+rect -753 -37 -687 -21
+rect -753 -71 -737 -37
+rect -703 -71 -687 -37
+rect -927 -109 -897 -87
+rect -831 -109 -801 -83
+rect -753 -87 -687 -71
+rect -561 -37 -495 -21
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -735 -109 -705 -87
+rect -639 -109 -609 -83
+rect -561 -87 -495 -71
+rect -369 -37 -303 -21
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -543 -109 -513 -87
+rect -447 -109 -417 -83
+rect -369 -87 -303 -71
+rect -177 -37 -111 -21
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect -351 -109 -321 -87
+rect -255 -109 -225 -83
+rect -177 -87 -111 -71
+rect 15 -37 81 -21
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect -159 -109 -129 -87
+rect -63 -109 -33 -83
+rect 15 -87 81 -71
+rect 207 -37 273 -21
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 33 -109 63 -87
+rect 129 -109 159 -83
+rect 207 -87 273 -71
+rect 399 -37 465 -21
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 225 -109 255 -87
+rect 321 -109 351 -83
+rect 399 -87 465 -71
+rect 591 -37 657 -21
+rect 591 -71 607 -37
+rect 641 -71 657 -37
+rect 417 -109 447 -87
+rect 513 -109 543 -83
+rect 591 -87 657 -71
+rect 783 -37 849 -21
+rect 783 -71 799 -37
+rect 833 -71 849 -37
+rect 609 -109 639 -87
+rect 705 -109 735 -83
+rect 783 -87 849 -71
+rect 975 -37 1041 -21
+rect 975 -71 991 -37
+rect 1025 -71 1041 -37
+rect 801 -109 831 -87
+rect 897 -109 927 -83
+rect 975 -87 1041 -71
+rect 1167 -37 1233 -21
+rect 1167 -71 1183 -37
+rect 1217 -71 1233 -37
+rect 993 -109 1023 -87
+rect 1089 -109 1119 -83
+rect 1167 -87 1233 -71
+rect 1359 -37 1425 -21
+rect 1359 -71 1375 -37
+rect 1409 -71 1425 -37
+rect 1185 -109 1215 -87
+rect 1281 -109 1311 -83
+rect 1359 -87 1425 -71
+rect 1551 -37 1617 -21
+rect 1551 -71 1567 -37
+rect 1601 -71 1617 -37
+rect 1377 -109 1407 -87
+rect 1473 -109 1503 -83
+rect 1551 -87 1617 -71
+rect 1743 -37 1809 -21
+rect 1743 -71 1759 -37
+rect 1793 -71 1809 -37
+rect 1569 -109 1599 -87
+rect 1665 -109 1695 -83
+rect 1743 -87 1809 -71
+rect 1935 -37 2001 -21
+rect 1935 -71 1951 -37
+rect 1985 -71 2001 -37
+rect 1761 -109 1791 -87
+rect 1857 -109 1887 -83
+rect 1935 -87 2001 -71
+rect 2127 -37 2193 -21
+rect 2127 -71 2143 -37
+rect 2177 -71 2193 -37
+rect 1953 -109 1983 -87
+rect 2049 -109 2079 -83
+rect 2127 -87 2193 -71
+rect 2319 -37 2385 -21
+rect 2319 -71 2335 -37
+rect 2369 -71 2385 -37
+rect 2145 -109 2175 -87
+rect 2241 -109 2271 -83
+rect 2319 -87 2385 -71
+rect 2337 -109 2367 -87
+rect -2367 -531 -2337 -509
+rect -2385 -547 -2319 -531
+rect -2271 -535 -2241 -509
+rect -2175 -531 -2145 -509
+rect -2385 -581 -2369 -547
+rect -2335 -581 -2319 -547
+rect -2385 -597 -2319 -581
+rect -2193 -547 -2127 -531
+rect -2079 -535 -2049 -509
+rect -1983 -531 -1953 -509
+rect -2193 -581 -2177 -547
+rect -2143 -581 -2127 -547
+rect -2193 -597 -2127 -581
+rect -2001 -547 -1935 -531
+rect -1887 -535 -1857 -509
+rect -1791 -531 -1761 -509
+rect -2001 -581 -1985 -547
+rect -1951 -581 -1935 -547
+rect -2001 -597 -1935 -581
+rect -1809 -547 -1743 -531
+rect -1695 -535 -1665 -509
+rect -1599 -531 -1569 -509
+rect -1809 -581 -1793 -547
+rect -1759 -581 -1743 -547
+rect -1809 -597 -1743 -581
+rect -1617 -547 -1551 -531
+rect -1503 -535 -1473 -509
+rect -1407 -531 -1377 -509
+rect -1617 -581 -1601 -547
+rect -1567 -581 -1551 -547
+rect -1617 -597 -1551 -581
+rect -1425 -547 -1359 -531
+rect -1311 -535 -1281 -509
+rect -1215 -531 -1185 -509
+rect -1425 -581 -1409 -547
+rect -1375 -581 -1359 -547
+rect -1425 -597 -1359 -581
+rect -1233 -547 -1167 -531
+rect -1119 -535 -1089 -509
+rect -1023 -531 -993 -509
+rect -1233 -581 -1217 -547
+rect -1183 -581 -1167 -547
+rect -1233 -597 -1167 -581
+rect -1041 -547 -975 -531
+rect -927 -535 -897 -509
+rect -831 -531 -801 -509
+rect -1041 -581 -1025 -547
+rect -991 -581 -975 -547
+rect -1041 -597 -975 -581
+rect -849 -547 -783 -531
+rect -735 -535 -705 -509
+rect -639 -531 -609 -509
+rect -849 -581 -833 -547
+rect -799 -581 -783 -547
+rect -849 -597 -783 -581
+rect -657 -547 -591 -531
+rect -543 -535 -513 -509
+rect -447 -531 -417 -509
+rect -657 -581 -641 -547
+rect -607 -581 -591 -547
+rect -657 -597 -591 -581
+rect -465 -547 -399 -531
+rect -351 -535 -321 -509
+rect -255 -531 -225 -509
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -465 -597 -399 -581
+rect -273 -547 -207 -531
+rect -159 -535 -129 -509
+rect -63 -531 -33 -509
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -273 -597 -207 -581
+rect -81 -547 -15 -531
+rect 33 -535 63 -509
+rect 129 -531 159 -509
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect -81 -597 -15 -581
+rect 111 -547 177 -531
+rect 225 -535 255 -509
+rect 321 -531 351 -509
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 111 -597 177 -581
+rect 303 -547 369 -531
+rect 417 -535 447 -509
+rect 513 -531 543 -509
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 303 -597 369 -581
+rect 495 -547 561 -531
+rect 609 -535 639 -509
+rect 705 -531 735 -509
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect 495 -597 561 -581
+rect 687 -547 753 -531
+rect 801 -535 831 -509
+rect 897 -531 927 -509
+rect 687 -581 703 -547
+rect 737 -581 753 -547
+rect 687 -597 753 -581
+rect 879 -547 945 -531
+rect 993 -535 1023 -509
+rect 1089 -531 1119 -509
+rect 879 -581 895 -547
+rect 929 -581 945 -547
+rect 879 -597 945 -581
+rect 1071 -547 1137 -531
+rect 1185 -535 1215 -509
+rect 1281 -531 1311 -509
+rect 1071 -581 1087 -547
+rect 1121 -581 1137 -547
+rect 1071 -597 1137 -581
+rect 1263 -547 1329 -531
+rect 1377 -535 1407 -509
+rect 1473 -531 1503 -509
+rect 1263 -581 1279 -547
+rect 1313 -581 1329 -547
+rect 1263 -597 1329 -581
+rect 1455 -547 1521 -531
+rect 1569 -535 1599 -509
+rect 1665 -531 1695 -509
+rect 1455 -581 1471 -547
+rect 1505 -581 1521 -547
+rect 1455 -597 1521 -581
+rect 1647 -547 1713 -531
+rect 1761 -535 1791 -509
+rect 1857 -531 1887 -509
+rect 1647 -581 1663 -547
+rect 1697 -581 1713 -547
+rect 1647 -597 1713 -581
+rect 1839 -547 1905 -531
+rect 1953 -535 1983 -509
+rect 2049 -531 2079 -509
+rect 1839 -581 1855 -547
+rect 1889 -581 1905 -547
+rect 1839 -597 1905 -581
+rect 2031 -547 2097 -531
+rect 2145 -535 2175 -509
+rect 2241 -531 2271 -509
+rect 2031 -581 2047 -547
+rect 2081 -581 2097 -547
+rect 2031 -597 2097 -581
+rect 2223 -547 2289 -531
+rect 2337 -535 2367 -509
+rect 2223 -581 2239 -547
+rect 2273 -581 2289 -547
+rect 2223 -597 2289 -581
+<< polycont >>
+rect -2369 547 -2335 581
+rect -2177 547 -2143 581
+rect -1985 547 -1951 581
+rect -1793 547 -1759 581
+rect -1601 547 -1567 581
+rect -1409 547 -1375 581
+rect -1217 547 -1183 581
+rect -1025 547 -991 581
+rect -833 547 -799 581
+rect -641 547 -607 581
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect 703 547 737 581
+rect 895 547 929 581
+rect 1087 547 1121 581
+rect 1279 547 1313 581
+rect 1471 547 1505 581
+rect 1663 547 1697 581
+rect 1855 547 1889 581
+rect 2047 547 2081 581
+rect 2239 547 2273 581
+rect -2273 37 -2239 71
+rect -2081 37 -2047 71
+rect -1889 37 -1855 71
+rect -1697 37 -1663 71
+rect -1505 37 -1471 71
+rect -1313 37 -1279 71
+rect -1121 37 -1087 71
+rect -929 37 -895 71
+rect -737 37 -703 71
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect 607 37 641 71
+rect 799 37 833 71
+rect 991 37 1025 71
+rect 1183 37 1217 71
+rect 1375 37 1409 71
+rect 1567 37 1601 71
+rect 1759 37 1793 71
+rect 1951 37 1985 71
+rect 2143 37 2177 71
+rect 2335 37 2369 71
+rect -2273 -71 -2239 -37
+rect -2081 -71 -2047 -37
+rect -1889 -71 -1855 -37
+rect -1697 -71 -1663 -37
+rect -1505 -71 -1471 -37
+rect -1313 -71 -1279 -37
+rect -1121 -71 -1087 -37
+rect -929 -71 -895 -37
+rect -737 -71 -703 -37
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect 607 -71 641 -37
+rect 799 -71 833 -37
+rect 991 -71 1025 -37
+rect 1183 -71 1217 -37
+rect 1375 -71 1409 -37
+rect 1567 -71 1601 -37
+rect 1759 -71 1793 -37
+rect 1951 -71 1985 -37
+rect 2143 -71 2177 -37
+rect 2335 -71 2369 -37
+rect -2369 -581 -2335 -547
+rect -2177 -581 -2143 -547
+rect -1985 -581 -1951 -547
+rect -1793 -581 -1759 -547
+rect -1601 -581 -1567 -547
+rect -1409 -581 -1375 -547
+rect -1217 -581 -1183 -547
+rect -1025 -581 -991 -547
+rect -833 -581 -799 -547
+rect -641 -581 -607 -547
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect 703 -581 737 -547
+rect 895 -581 929 -547
+rect 1087 -581 1121 -547
+rect 1279 -581 1313 -547
+rect 1471 -581 1505 -547
+rect 1663 -581 1697 -547
+rect 1855 -581 1889 -547
+rect 2047 -581 2081 -547
+rect 2239 -581 2273 -547
+<< locali >>
+rect -2531 649 -2435 683
+rect 2435 649 2531 683
+rect -2531 587 -2497 649
+rect 2497 587 2531 649
+rect -2385 547 -2369 581
+rect -2335 547 -2319 581
+rect -2193 547 -2177 581
+rect -2143 547 -2127 581
+rect -2001 547 -1985 581
+rect -1951 547 -1935 581
+rect -1809 547 -1793 581
+rect -1759 547 -1743 581
+rect -1617 547 -1601 581
+rect -1567 547 -1551 581
+rect -1425 547 -1409 581
+rect -1375 547 -1359 581
+rect -1233 547 -1217 581
+rect -1183 547 -1167 581
+rect -1041 547 -1025 581
+rect -991 547 -975 581
+rect -849 547 -833 581
+rect -799 547 -783 581
+rect -657 547 -641 581
+rect -607 547 -591 581
+rect -465 547 -449 581
+rect -415 547 -399 581
+rect -273 547 -257 581
+rect -223 547 -207 581
+rect -81 547 -65 581
+rect -31 547 -15 581
+rect 111 547 127 581
+rect 161 547 177 581
+rect 303 547 319 581
+rect 353 547 369 581
+rect 495 547 511 581
+rect 545 547 561 581
+rect 687 547 703 581
+rect 737 547 753 581
+rect 879 547 895 581
+rect 929 547 945 581
+rect 1071 547 1087 581
+rect 1121 547 1137 581
+rect 1263 547 1279 581
+rect 1313 547 1329 581
+rect 1455 547 1471 581
+rect 1505 547 1521 581
+rect 1647 547 1663 581
+rect 1697 547 1713 581
+rect 1839 547 1855 581
+rect 1889 547 1905 581
+rect 2031 547 2047 581
+rect 2081 547 2097 581
+rect 2223 547 2239 581
+rect 2273 547 2289 581
+rect -2417 497 -2383 513
+rect -2417 105 -2383 121
+rect -2321 497 -2287 513
+rect -2321 105 -2287 121
+rect -2225 497 -2191 513
+rect -2225 105 -2191 121
+rect -2129 497 -2095 513
+rect -2129 105 -2095 121
+rect -2033 497 -1999 513
+rect -2033 105 -1999 121
+rect -1937 497 -1903 513
+rect -1937 105 -1903 121
+rect -1841 497 -1807 513
+rect -1841 105 -1807 121
+rect -1745 497 -1711 513
+rect -1745 105 -1711 121
+rect -1649 497 -1615 513
+rect -1649 105 -1615 121
+rect -1553 497 -1519 513
+rect -1553 105 -1519 121
+rect -1457 497 -1423 513
+rect -1457 105 -1423 121
+rect -1361 497 -1327 513
+rect -1361 105 -1327 121
+rect -1265 497 -1231 513
+rect -1265 105 -1231 121
+rect -1169 497 -1135 513
+rect -1169 105 -1135 121
+rect -1073 497 -1039 513
+rect -1073 105 -1039 121
+rect -977 497 -943 513
+rect -977 105 -943 121
+rect -881 497 -847 513
+rect -881 105 -847 121
+rect -785 497 -751 513
+rect -785 105 -751 121
+rect -689 497 -655 513
+rect -689 105 -655 121
+rect -593 497 -559 513
+rect -593 105 -559 121
+rect -497 497 -463 513
+rect -497 105 -463 121
+rect -401 497 -367 513
+rect -401 105 -367 121
+rect -305 497 -271 513
+rect -305 105 -271 121
+rect -209 497 -175 513
+rect -209 105 -175 121
+rect -113 497 -79 513
+rect -113 105 -79 121
+rect -17 497 17 513
+rect -17 105 17 121
+rect 79 497 113 513
+rect 79 105 113 121
+rect 175 497 209 513
+rect 175 105 209 121
+rect 271 497 305 513
+rect 271 105 305 121
+rect 367 497 401 513
+rect 367 105 401 121
+rect 463 497 497 513
+rect 463 105 497 121
+rect 559 497 593 513
+rect 559 105 593 121
+rect 655 497 689 513
+rect 655 105 689 121
+rect 751 497 785 513
+rect 751 105 785 121
+rect 847 497 881 513
+rect 847 105 881 121
+rect 943 497 977 513
+rect 943 105 977 121
+rect 1039 497 1073 513
+rect 1039 105 1073 121
+rect 1135 497 1169 513
+rect 1135 105 1169 121
+rect 1231 497 1265 513
+rect 1231 105 1265 121
+rect 1327 497 1361 513
+rect 1327 105 1361 121
+rect 1423 497 1457 513
+rect 1423 105 1457 121
+rect 1519 497 1553 513
+rect 1519 105 1553 121
+rect 1615 497 1649 513
+rect 1615 105 1649 121
+rect 1711 497 1745 513
+rect 1711 105 1745 121
+rect 1807 497 1841 513
+rect 1807 105 1841 121
+rect 1903 497 1937 513
+rect 1903 105 1937 121
+rect 1999 497 2033 513
+rect 1999 105 2033 121
+rect 2095 497 2129 513
+rect 2095 105 2129 121
+rect 2191 497 2225 513
+rect 2191 105 2225 121
+rect 2287 497 2321 513
+rect 2287 105 2321 121
+rect 2383 497 2417 513
+rect 2383 105 2417 121
+rect -2289 37 -2273 71
+rect -2239 37 -2223 71
+rect -2097 37 -2081 71
+rect -2047 37 -2031 71
+rect -1905 37 -1889 71
+rect -1855 37 -1839 71
+rect -1713 37 -1697 71
+rect -1663 37 -1647 71
+rect -1521 37 -1505 71
+rect -1471 37 -1455 71
+rect -1329 37 -1313 71
+rect -1279 37 -1263 71
+rect -1137 37 -1121 71
+rect -1087 37 -1071 71
+rect -945 37 -929 71
+rect -895 37 -879 71
+rect -753 37 -737 71
+rect -703 37 -687 71
+rect -561 37 -545 71
+rect -511 37 -495 71
+rect -369 37 -353 71
+rect -319 37 -303 71
+rect -177 37 -161 71
+rect -127 37 -111 71
+rect 15 37 31 71
+rect 65 37 81 71
+rect 207 37 223 71
+rect 257 37 273 71
+rect 399 37 415 71
+rect 449 37 465 71
+rect 591 37 607 71
+rect 641 37 657 71
+rect 783 37 799 71
+rect 833 37 849 71
+rect 975 37 991 71
+rect 1025 37 1041 71
+rect 1167 37 1183 71
+rect 1217 37 1233 71
+rect 1359 37 1375 71
+rect 1409 37 1425 71
+rect 1551 37 1567 71
+rect 1601 37 1617 71
+rect 1743 37 1759 71
+rect 1793 37 1809 71
+rect 1935 37 1951 71
+rect 1985 37 2001 71
+rect 2127 37 2143 71
+rect 2177 37 2193 71
+rect 2319 37 2335 71
+rect 2369 37 2385 71
+rect -2289 -71 -2273 -37
+rect -2239 -71 -2223 -37
+rect -2097 -71 -2081 -37
+rect -2047 -71 -2031 -37
+rect -1905 -71 -1889 -37
+rect -1855 -71 -1839 -37
+rect -1713 -71 -1697 -37
+rect -1663 -71 -1647 -37
+rect -1521 -71 -1505 -37
+rect -1471 -71 -1455 -37
+rect -1329 -71 -1313 -37
+rect -1279 -71 -1263 -37
+rect -1137 -71 -1121 -37
+rect -1087 -71 -1071 -37
+rect -945 -71 -929 -37
+rect -895 -71 -879 -37
+rect -753 -71 -737 -37
+rect -703 -71 -687 -37
+rect -561 -71 -545 -37
+rect -511 -71 -495 -37
+rect -369 -71 -353 -37
+rect -319 -71 -303 -37
+rect -177 -71 -161 -37
+rect -127 -71 -111 -37
+rect 15 -71 31 -37
+rect 65 -71 81 -37
+rect 207 -71 223 -37
+rect 257 -71 273 -37
+rect 399 -71 415 -37
+rect 449 -71 465 -37
+rect 591 -71 607 -37
+rect 641 -71 657 -37
+rect 783 -71 799 -37
+rect 833 -71 849 -37
+rect 975 -71 991 -37
+rect 1025 -71 1041 -37
+rect 1167 -71 1183 -37
+rect 1217 -71 1233 -37
+rect 1359 -71 1375 -37
+rect 1409 -71 1425 -37
+rect 1551 -71 1567 -37
+rect 1601 -71 1617 -37
+rect 1743 -71 1759 -37
+rect 1793 -71 1809 -37
+rect 1935 -71 1951 -37
+rect 1985 -71 2001 -37
+rect 2127 -71 2143 -37
+rect 2177 -71 2193 -37
+rect 2319 -71 2335 -37
+rect 2369 -71 2385 -37
+rect -2417 -121 -2383 -105
+rect -2417 -513 -2383 -497
+rect -2321 -121 -2287 -105
+rect -2321 -513 -2287 -497
+rect -2225 -121 -2191 -105
+rect -2225 -513 -2191 -497
+rect -2129 -121 -2095 -105
+rect -2129 -513 -2095 -497
+rect -2033 -121 -1999 -105
+rect -2033 -513 -1999 -497
+rect -1937 -121 -1903 -105
+rect -1937 -513 -1903 -497
+rect -1841 -121 -1807 -105
+rect -1841 -513 -1807 -497
+rect -1745 -121 -1711 -105
+rect -1745 -513 -1711 -497
+rect -1649 -121 -1615 -105
+rect -1649 -513 -1615 -497
+rect -1553 -121 -1519 -105
+rect -1553 -513 -1519 -497
+rect -1457 -121 -1423 -105
+rect -1457 -513 -1423 -497
+rect -1361 -121 -1327 -105
+rect -1361 -513 -1327 -497
+rect -1265 -121 -1231 -105
+rect -1265 -513 -1231 -497
+rect -1169 -121 -1135 -105
+rect -1169 -513 -1135 -497
+rect -1073 -121 -1039 -105
+rect -1073 -513 -1039 -497
+rect -977 -121 -943 -105
+rect -977 -513 -943 -497
+rect -881 -121 -847 -105
+rect -881 -513 -847 -497
+rect -785 -121 -751 -105
+rect -785 -513 -751 -497
+rect -689 -121 -655 -105
+rect -689 -513 -655 -497
+rect -593 -121 -559 -105
+rect -593 -513 -559 -497
+rect -497 -121 -463 -105
+rect -497 -513 -463 -497
+rect -401 -121 -367 -105
+rect -401 -513 -367 -497
+rect -305 -121 -271 -105
+rect -305 -513 -271 -497
+rect -209 -121 -175 -105
+rect -209 -513 -175 -497
+rect -113 -121 -79 -105
+rect -113 -513 -79 -497
+rect -17 -121 17 -105
+rect -17 -513 17 -497
+rect 79 -121 113 -105
+rect 79 -513 113 -497
+rect 175 -121 209 -105
+rect 175 -513 209 -497
+rect 271 -121 305 -105
+rect 271 -513 305 -497
+rect 367 -121 401 -105
+rect 367 -513 401 -497
+rect 463 -121 497 -105
+rect 463 -513 497 -497
+rect 559 -121 593 -105
+rect 559 -513 593 -497
+rect 655 -121 689 -105
+rect 655 -513 689 -497
+rect 751 -121 785 -105
+rect 751 -513 785 -497
+rect 847 -121 881 -105
+rect 847 -513 881 -497
+rect 943 -121 977 -105
+rect 943 -513 977 -497
+rect 1039 -121 1073 -105
+rect 1039 -513 1073 -497
+rect 1135 -121 1169 -105
+rect 1135 -513 1169 -497
+rect 1231 -121 1265 -105
+rect 1231 -513 1265 -497
+rect 1327 -121 1361 -105
+rect 1327 -513 1361 -497
+rect 1423 -121 1457 -105
+rect 1423 -513 1457 -497
+rect 1519 -121 1553 -105
+rect 1519 -513 1553 -497
+rect 1615 -121 1649 -105
+rect 1615 -513 1649 -497
+rect 1711 -121 1745 -105
+rect 1711 -513 1745 -497
+rect 1807 -121 1841 -105
+rect 1807 -513 1841 -497
+rect 1903 -121 1937 -105
+rect 1903 -513 1937 -497
+rect 1999 -121 2033 -105
+rect 1999 -513 2033 -497
+rect 2095 -121 2129 -105
+rect 2095 -513 2129 -497
+rect 2191 -121 2225 -105
+rect 2191 -513 2225 -497
+rect 2287 -121 2321 -105
+rect 2287 -513 2321 -497
+rect 2383 -121 2417 -105
+rect 2383 -513 2417 -497
+rect -2385 -581 -2369 -547
+rect -2335 -581 -2319 -547
+rect -2193 -581 -2177 -547
+rect -2143 -581 -2127 -547
+rect -2001 -581 -1985 -547
+rect -1951 -581 -1935 -547
+rect -1809 -581 -1793 -547
+rect -1759 -581 -1743 -547
+rect -1617 -581 -1601 -547
+rect -1567 -581 -1551 -547
+rect -1425 -581 -1409 -547
+rect -1375 -581 -1359 -547
+rect -1233 -581 -1217 -547
+rect -1183 -581 -1167 -547
+rect -1041 -581 -1025 -547
+rect -991 -581 -975 -547
+rect -849 -581 -833 -547
+rect -799 -581 -783 -547
+rect -657 -581 -641 -547
+rect -607 -581 -591 -547
+rect -465 -581 -449 -547
+rect -415 -581 -399 -547
+rect -273 -581 -257 -547
+rect -223 -581 -207 -547
+rect -81 -581 -65 -547
+rect -31 -581 -15 -547
+rect 111 -581 127 -547
+rect 161 -581 177 -547
+rect 303 -581 319 -547
+rect 353 -581 369 -547
+rect 495 -581 511 -547
+rect 545 -581 561 -547
+rect 687 -581 703 -547
+rect 737 -581 753 -547
+rect 879 -581 895 -547
+rect 929 -581 945 -547
+rect 1071 -581 1087 -547
+rect 1121 -581 1137 -547
+rect 1263 -581 1279 -547
+rect 1313 -581 1329 -547
+rect 1455 -581 1471 -547
+rect 1505 -581 1521 -547
+rect 1647 -581 1663 -547
+rect 1697 -581 1713 -547
+rect 1839 -581 1855 -547
+rect 1889 -581 1905 -547
+rect 2031 -581 2047 -547
+rect 2081 -581 2097 -547
+rect 2223 -581 2239 -547
+rect 2273 -581 2289 -547
+rect -2531 -649 -2497 -587
+rect 2497 -649 2531 -587
+rect -2531 -683 -2435 -649
+rect 2435 -683 2531 -649
+<< viali >>
+rect -2369 547 -2335 581
+rect -2177 547 -2143 581
+rect -1985 547 -1951 581
+rect -1793 547 -1759 581
+rect -1601 547 -1567 581
+rect -1409 547 -1375 581
+rect -1217 547 -1183 581
+rect -1025 547 -991 581
+rect -833 547 -799 581
+rect -641 547 -607 581
+rect -449 547 -415 581
+rect -257 547 -223 581
+rect -65 547 -31 581
+rect 127 547 161 581
+rect 319 547 353 581
+rect 511 547 545 581
+rect 703 547 737 581
+rect 895 547 929 581
+rect 1087 547 1121 581
+rect 1279 547 1313 581
+rect 1471 547 1505 581
+rect 1663 547 1697 581
+rect 1855 547 1889 581
+rect 2047 547 2081 581
+rect 2239 547 2273 581
+rect -2417 121 -2383 497
+rect -2321 121 -2287 497
+rect -2225 121 -2191 497
+rect -2129 121 -2095 497
+rect -2033 121 -1999 497
+rect -1937 121 -1903 497
+rect -1841 121 -1807 497
+rect -1745 121 -1711 497
+rect -1649 121 -1615 497
+rect -1553 121 -1519 497
+rect -1457 121 -1423 497
+rect -1361 121 -1327 497
+rect -1265 121 -1231 497
+rect -1169 121 -1135 497
+rect -1073 121 -1039 497
+rect -977 121 -943 497
+rect -881 121 -847 497
+rect -785 121 -751 497
+rect -689 121 -655 497
+rect -593 121 -559 497
+rect -497 121 -463 497
+rect -401 121 -367 497
+rect -305 121 -271 497
+rect -209 121 -175 497
+rect -113 121 -79 497
+rect -17 121 17 497
+rect 79 121 113 497
+rect 175 121 209 497
+rect 271 121 305 497
+rect 367 121 401 497
+rect 463 121 497 497
+rect 559 121 593 497
+rect 655 121 689 497
+rect 751 121 785 497
+rect 847 121 881 497
+rect 943 121 977 497
+rect 1039 121 1073 497
+rect 1135 121 1169 497
+rect 1231 121 1265 497
+rect 1327 121 1361 497
+rect 1423 121 1457 497
+rect 1519 121 1553 497
+rect 1615 121 1649 497
+rect 1711 121 1745 497
+rect 1807 121 1841 497
+rect 1903 121 1937 497
+rect 1999 121 2033 497
+rect 2095 121 2129 497
+rect 2191 121 2225 497
+rect 2287 121 2321 497
+rect 2383 121 2417 497
+rect -2273 37 -2239 71
+rect -2081 37 -2047 71
+rect -1889 37 -1855 71
+rect -1697 37 -1663 71
+rect -1505 37 -1471 71
+rect -1313 37 -1279 71
+rect -1121 37 -1087 71
+rect -929 37 -895 71
+rect -737 37 -703 71
+rect -545 37 -511 71
+rect -353 37 -319 71
+rect -161 37 -127 71
+rect 31 37 65 71
+rect 223 37 257 71
+rect 415 37 449 71
+rect 607 37 641 71
+rect 799 37 833 71
+rect 991 37 1025 71
+rect 1183 37 1217 71
+rect 1375 37 1409 71
+rect 1567 37 1601 71
+rect 1759 37 1793 71
+rect 1951 37 1985 71
+rect 2143 37 2177 71
+rect 2335 37 2369 71
+rect -2273 -71 -2239 -37
+rect -2081 -71 -2047 -37
+rect -1889 -71 -1855 -37
+rect -1697 -71 -1663 -37
+rect -1505 -71 -1471 -37
+rect -1313 -71 -1279 -37
+rect -1121 -71 -1087 -37
+rect -929 -71 -895 -37
+rect -737 -71 -703 -37
+rect -545 -71 -511 -37
+rect -353 -71 -319 -37
+rect -161 -71 -127 -37
+rect 31 -71 65 -37
+rect 223 -71 257 -37
+rect 415 -71 449 -37
+rect 607 -71 641 -37
+rect 799 -71 833 -37
+rect 991 -71 1025 -37
+rect 1183 -71 1217 -37
+rect 1375 -71 1409 -37
+rect 1567 -71 1601 -37
+rect 1759 -71 1793 -37
+rect 1951 -71 1985 -37
+rect 2143 -71 2177 -37
+rect 2335 -71 2369 -37
+rect -2417 -497 -2383 -121
+rect -2321 -497 -2287 -121
+rect -2225 -497 -2191 -121
+rect -2129 -497 -2095 -121
+rect -2033 -497 -1999 -121
+rect -1937 -497 -1903 -121
+rect -1841 -497 -1807 -121
+rect -1745 -497 -1711 -121
+rect -1649 -497 -1615 -121
+rect -1553 -497 -1519 -121
+rect -1457 -497 -1423 -121
+rect -1361 -497 -1327 -121
+rect -1265 -497 -1231 -121
+rect -1169 -497 -1135 -121
+rect -1073 -497 -1039 -121
+rect -977 -497 -943 -121
+rect -881 -497 -847 -121
+rect -785 -497 -751 -121
+rect -689 -497 -655 -121
+rect -593 -497 -559 -121
+rect -497 -497 -463 -121
+rect -401 -497 -367 -121
+rect -305 -497 -271 -121
+rect -209 -497 -175 -121
+rect -113 -497 -79 -121
+rect -17 -497 17 -121
+rect 79 -497 113 -121
+rect 175 -497 209 -121
+rect 271 -497 305 -121
+rect 367 -497 401 -121
+rect 463 -497 497 -121
+rect 559 -497 593 -121
+rect 655 -497 689 -121
+rect 751 -497 785 -121
+rect 847 -497 881 -121
+rect 943 -497 977 -121
+rect 1039 -497 1073 -121
+rect 1135 -497 1169 -121
+rect 1231 -497 1265 -121
+rect 1327 -497 1361 -121
+rect 1423 -497 1457 -121
+rect 1519 -497 1553 -121
+rect 1615 -497 1649 -121
+rect 1711 -497 1745 -121
+rect 1807 -497 1841 -121
+rect 1903 -497 1937 -121
+rect 1999 -497 2033 -121
+rect 2095 -497 2129 -121
+rect 2191 -497 2225 -121
+rect 2287 -497 2321 -121
+rect 2383 -497 2417 -121
+rect -2369 -581 -2335 -547
+rect -2177 -581 -2143 -547
+rect -1985 -581 -1951 -547
+rect -1793 -581 -1759 -547
+rect -1601 -581 -1567 -547
+rect -1409 -581 -1375 -547
+rect -1217 -581 -1183 -547
+rect -1025 -581 -991 -547
+rect -833 -581 -799 -547
+rect -641 -581 -607 -547
+rect -449 -581 -415 -547
+rect -257 -581 -223 -547
+rect -65 -581 -31 -547
+rect 127 -581 161 -547
+rect 319 -581 353 -547
+rect 511 -581 545 -547
+rect 703 -581 737 -547
+rect 895 -581 929 -547
+rect 1087 -581 1121 -547
+rect 1279 -581 1313 -547
+rect 1471 -581 1505 -547
+rect 1663 -581 1697 -547
+rect 1855 -581 1889 -547
+rect 2047 -581 2081 -547
+rect 2239 -581 2273 -547
+<< metal1 >>
+rect -2381 581 -2323 587
+rect -2381 547 -2369 581
+rect -2335 547 -2323 581
+rect -2381 541 -2323 547
+rect -2189 581 -2131 587
+rect -2189 547 -2177 581
+rect -2143 547 -2131 581
+rect -2189 541 -2131 547
+rect -1997 581 -1939 587
+rect -1997 547 -1985 581
+rect -1951 547 -1939 581
+rect -1997 541 -1939 547
+rect -1805 581 -1747 587
+rect -1805 547 -1793 581
+rect -1759 547 -1747 581
+rect -1805 541 -1747 547
+rect -1613 581 -1555 587
+rect -1613 547 -1601 581
+rect -1567 547 -1555 581
+rect -1613 541 -1555 547
+rect -1421 581 -1363 587
+rect -1421 547 -1409 581
+rect -1375 547 -1363 581
+rect -1421 541 -1363 547
+rect -1229 581 -1171 587
+rect -1229 547 -1217 581
+rect -1183 547 -1171 581
+rect -1229 541 -1171 547
+rect -1037 581 -979 587
+rect -1037 547 -1025 581
+rect -991 547 -979 581
+rect -1037 541 -979 547
+rect -845 581 -787 587
+rect -845 547 -833 581
+rect -799 547 -787 581
+rect -845 541 -787 547
+rect -653 581 -595 587
+rect -653 547 -641 581
+rect -607 547 -595 581
+rect -653 541 -595 547
+rect -461 581 -403 587
+rect -461 547 -449 581
+rect -415 547 -403 581
+rect -461 541 -403 547
+rect -269 581 -211 587
+rect -269 547 -257 581
+rect -223 547 -211 581
+rect -269 541 -211 547
+rect -77 581 -19 587
+rect -77 547 -65 581
+rect -31 547 -19 581
+rect -77 541 -19 547
+rect 115 581 173 587
+rect 115 547 127 581
+rect 161 547 173 581
+rect 115 541 173 547
+rect 307 581 365 587
+rect 307 547 319 581
+rect 353 547 365 581
+rect 307 541 365 547
+rect 499 581 557 587
+rect 499 547 511 581
+rect 545 547 557 581
+rect 499 541 557 547
+rect 691 581 749 587
+rect 691 547 703 581
+rect 737 547 749 581
+rect 691 541 749 547
+rect 883 581 941 587
+rect 883 547 895 581
+rect 929 547 941 581
+rect 883 541 941 547
+rect 1075 581 1133 587
+rect 1075 547 1087 581
+rect 1121 547 1133 581
+rect 1075 541 1133 547
+rect 1267 581 1325 587
+rect 1267 547 1279 581
+rect 1313 547 1325 581
+rect 1267 541 1325 547
+rect 1459 581 1517 587
+rect 1459 547 1471 581
+rect 1505 547 1517 581
+rect 1459 541 1517 547
+rect 1651 581 1709 587
+rect 1651 547 1663 581
+rect 1697 547 1709 581
+rect 1651 541 1709 547
+rect 1843 581 1901 587
+rect 1843 547 1855 581
+rect 1889 547 1901 581
+rect 1843 541 1901 547
+rect 2035 581 2093 587
+rect 2035 547 2047 581
+rect 2081 547 2093 581
+rect 2035 541 2093 547
+rect 2227 581 2285 587
+rect 2227 547 2239 581
+rect 2273 547 2285 581
+rect 2227 541 2285 547
+rect -2423 497 -2377 509
+rect -2423 121 -2417 497
+rect -2383 121 -2377 497
+rect -2423 109 -2377 121
+rect -2327 497 -2281 509
+rect -2327 121 -2321 497
+rect -2287 121 -2281 497
+rect -2327 109 -2281 121
+rect -2231 497 -2185 509
+rect -2231 121 -2225 497
+rect -2191 121 -2185 497
+rect -2231 109 -2185 121
+rect -2135 497 -2089 509
+rect -2135 121 -2129 497
+rect -2095 121 -2089 497
+rect -2135 109 -2089 121
+rect -2039 497 -1993 509
+rect -2039 121 -2033 497
+rect -1999 121 -1993 497
+rect -2039 109 -1993 121
+rect -1943 497 -1897 509
+rect -1943 121 -1937 497
+rect -1903 121 -1897 497
+rect -1943 109 -1897 121
+rect -1847 497 -1801 509
+rect -1847 121 -1841 497
+rect -1807 121 -1801 497
+rect -1847 109 -1801 121
+rect -1751 497 -1705 509
+rect -1751 121 -1745 497
+rect -1711 121 -1705 497
+rect -1751 109 -1705 121
+rect -1655 497 -1609 509
+rect -1655 121 -1649 497
+rect -1615 121 -1609 497
+rect -1655 109 -1609 121
+rect -1559 497 -1513 509
+rect -1559 121 -1553 497
+rect -1519 121 -1513 497
+rect -1559 109 -1513 121
+rect -1463 497 -1417 509
+rect -1463 121 -1457 497
+rect -1423 121 -1417 497
+rect -1463 109 -1417 121
+rect -1367 497 -1321 509
+rect -1367 121 -1361 497
+rect -1327 121 -1321 497
+rect -1367 109 -1321 121
+rect -1271 497 -1225 509
+rect -1271 121 -1265 497
+rect -1231 121 -1225 497
+rect -1271 109 -1225 121
+rect -1175 497 -1129 509
+rect -1175 121 -1169 497
+rect -1135 121 -1129 497
+rect -1175 109 -1129 121
+rect -1079 497 -1033 509
+rect -1079 121 -1073 497
+rect -1039 121 -1033 497
+rect -1079 109 -1033 121
+rect -983 497 -937 509
+rect -983 121 -977 497
+rect -943 121 -937 497
+rect -983 109 -937 121
+rect -887 497 -841 509
+rect -887 121 -881 497
+rect -847 121 -841 497
+rect -887 109 -841 121
+rect -791 497 -745 509
+rect -791 121 -785 497
+rect -751 121 -745 497
+rect -791 109 -745 121
+rect -695 497 -649 509
+rect -695 121 -689 497
+rect -655 121 -649 497
+rect -695 109 -649 121
+rect -599 497 -553 509
+rect -599 121 -593 497
+rect -559 121 -553 497
+rect -599 109 -553 121
+rect -503 497 -457 509
+rect -503 121 -497 497
+rect -463 121 -457 497
+rect -503 109 -457 121
+rect -407 497 -361 509
+rect -407 121 -401 497
+rect -367 121 -361 497
+rect -407 109 -361 121
+rect -311 497 -265 509
+rect -311 121 -305 497
+rect -271 121 -265 497
+rect -311 109 -265 121
+rect -215 497 -169 509
+rect -215 121 -209 497
+rect -175 121 -169 497
+rect -215 109 -169 121
+rect -119 497 -73 509
+rect -119 121 -113 497
+rect -79 121 -73 497
+rect -119 109 -73 121
+rect -23 497 23 509
+rect -23 121 -17 497
+rect 17 121 23 497
+rect -23 109 23 121
+rect 73 497 119 509
+rect 73 121 79 497
+rect 113 121 119 497
+rect 73 109 119 121
+rect 169 497 215 509
+rect 169 121 175 497
+rect 209 121 215 497
+rect 169 109 215 121
+rect 265 497 311 509
+rect 265 121 271 497
+rect 305 121 311 497
+rect 265 109 311 121
+rect 361 497 407 509
+rect 361 121 367 497
+rect 401 121 407 497
+rect 361 109 407 121
+rect 457 497 503 509
+rect 457 121 463 497
+rect 497 121 503 497
+rect 457 109 503 121
+rect 553 497 599 509
+rect 553 121 559 497
+rect 593 121 599 497
+rect 553 109 599 121
+rect 649 497 695 509
+rect 649 121 655 497
+rect 689 121 695 497
+rect 649 109 695 121
+rect 745 497 791 509
+rect 745 121 751 497
+rect 785 121 791 497
+rect 745 109 791 121
+rect 841 497 887 509
+rect 841 121 847 497
+rect 881 121 887 497
+rect 841 109 887 121
+rect 937 497 983 509
+rect 937 121 943 497
+rect 977 121 983 497
+rect 937 109 983 121
+rect 1033 497 1079 509
+rect 1033 121 1039 497
+rect 1073 121 1079 497
+rect 1033 109 1079 121
+rect 1129 497 1175 509
+rect 1129 121 1135 497
+rect 1169 121 1175 497
+rect 1129 109 1175 121
+rect 1225 497 1271 509
+rect 1225 121 1231 497
+rect 1265 121 1271 497
+rect 1225 109 1271 121
+rect 1321 497 1367 509
+rect 1321 121 1327 497
+rect 1361 121 1367 497
+rect 1321 109 1367 121
+rect 1417 497 1463 509
+rect 1417 121 1423 497
+rect 1457 121 1463 497
+rect 1417 109 1463 121
+rect 1513 497 1559 509
+rect 1513 121 1519 497
+rect 1553 121 1559 497
+rect 1513 109 1559 121
+rect 1609 497 1655 509
+rect 1609 121 1615 497
+rect 1649 121 1655 497
+rect 1609 109 1655 121
+rect 1705 497 1751 509
+rect 1705 121 1711 497
+rect 1745 121 1751 497
+rect 1705 109 1751 121
+rect 1801 497 1847 509
+rect 1801 121 1807 497
+rect 1841 121 1847 497
+rect 1801 109 1847 121
+rect 1897 497 1943 509
+rect 1897 121 1903 497
+rect 1937 121 1943 497
+rect 1897 109 1943 121
+rect 1993 497 2039 509
+rect 1993 121 1999 497
+rect 2033 121 2039 497
+rect 1993 109 2039 121
+rect 2089 497 2135 509
+rect 2089 121 2095 497
+rect 2129 121 2135 497
+rect 2089 109 2135 121
+rect 2185 497 2231 509
+rect 2185 121 2191 497
+rect 2225 121 2231 497
+rect 2185 109 2231 121
+rect 2281 497 2327 509
+rect 2281 121 2287 497
+rect 2321 121 2327 497
+rect 2281 109 2327 121
+rect 2377 497 2423 509
+rect 2377 121 2383 497
+rect 2417 121 2423 497
+rect 2377 109 2423 121
+rect -2285 71 -2227 77
+rect -2285 37 -2273 71
+rect -2239 37 -2227 71
+rect -2285 31 -2227 37
+rect -2093 71 -2035 77
+rect -2093 37 -2081 71
+rect -2047 37 -2035 71
+rect -2093 31 -2035 37
+rect -1901 71 -1843 77
+rect -1901 37 -1889 71
+rect -1855 37 -1843 71
+rect -1901 31 -1843 37
+rect -1709 71 -1651 77
+rect -1709 37 -1697 71
+rect -1663 37 -1651 71
+rect -1709 31 -1651 37
+rect -1517 71 -1459 77
+rect -1517 37 -1505 71
+rect -1471 37 -1459 71
+rect -1517 31 -1459 37
+rect -1325 71 -1267 77
+rect -1325 37 -1313 71
+rect -1279 37 -1267 71
+rect -1325 31 -1267 37
+rect -1133 71 -1075 77
+rect -1133 37 -1121 71
+rect -1087 37 -1075 71
+rect -1133 31 -1075 37
+rect -941 71 -883 77
+rect -941 37 -929 71
+rect -895 37 -883 71
+rect -941 31 -883 37
+rect -749 71 -691 77
+rect -749 37 -737 71
+rect -703 37 -691 71
+rect -749 31 -691 37
+rect -557 71 -499 77
+rect -557 37 -545 71
+rect -511 37 -499 71
+rect -557 31 -499 37
+rect -365 71 -307 77
+rect -365 37 -353 71
+rect -319 37 -307 71
+rect -365 31 -307 37
+rect -173 71 -115 77
+rect -173 37 -161 71
+rect -127 37 -115 71
+rect -173 31 -115 37
+rect 19 71 77 77
+rect 19 37 31 71
+rect 65 37 77 71
+rect 19 31 77 37
+rect 211 71 269 77
+rect 211 37 223 71
+rect 257 37 269 71
+rect 211 31 269 37
+rect 403 71 461 77
+rect 403 37 415 71
+rect 449 37 461 71
+rect 403 31 461 37
+rect 595 71 653 77
+rect 595 37 607 71
+rect 641 37 653 71
+rect 595 31 653 37
+rect 787 71 845 77
+rect 787 37 799 71
+rect 833 37 845 71
+rect 787 31 845 37
+rect 979 71 1037 77
+rect 979 37 991 71
+rect 1025 37 1037 71
+rect 979 31 1037 37
+rect 1171 71 1229 77
+rect 1171 37 1183 71
+rect 1217 37 1229 71
+rect 1171 31 1229 37
+rect 1363 71 1421 77
+rect 1363 37 1375 71
+rect 1409 37 1421 71
+rect 1363 31 1421 37
+rect 1555 71 1613 77
+rect 1555 37 1567 71
+rect 1601 37 1613 71
+rect 1555 31 1613 37
+rect 1747 71 1805 77
+rect 1747 37 1759 71
+rect 1793 37 1805 71
+rect 1747 31 1805 37
+rect 1939 71 1997 77
+rect 1939 37 1951 71
+rect 1985 37 1997 71
+rect 1939 31 1997 37
+rect 2131 71 2189 77
+rect 2131 37 2143 71
+rect 2177 37 2189 71
+rect 2131 31 2189 37
+rect 2323 71 2381 77
+rect 2323 37 2335 71
+rect 2369 37 2381 71
+rect 2323 31 2381 37
+rect -2285 -37 -2227 -31
+rect -2285 -71 -2273 -37
+rect -2239 -71 -2227 -37
+rect -2285 -77 -2227 -71
+rect -2093 -37 -2035 -31
+rect -2093 -71 -2081 -37
+rect -2047 -71 -2035 -37
+rect -2093 -77 -2035 -71
+rect -1901 -37 -1843 -31
+rect -1901 -71 -1889 -37
+rect -1855 -71 -1843 -37
+rect -1901 -77 -1843 -71
+rect -1709 -37 -1651 -31
+rect -1709 -71 -1697 -37
+rect -1663 -71 -1651 -37
+rect -1709 -77 -1651 -71
+rect -1517 -37 -1459 -31
+rect -1517 -71 -1505 -37
+rect -1471 -71 -1459 -37
+rect -1517 -77 -1459 -71
+rect -1325 -37 -1267 -31
+rect -1325 -71 -1313 -37
+rect -1279 -71 -1267 -37
+rect -1325 -77 -1267 -71
+rect -1133 -37 -1075 -31
+rect -1133 -71 -1121 -37
+rect -1087 -71 -1075 -37
+rect -1133 -77 -1075 -71
+rect -941 -37 -883 -31
+rect -941 -71 -929 -37
+rect -895 -71 -883 -37
+rect -941 -77 -883 -71
+rect -749 -37 -691 -31
+rect -749 -71 -737 -37
+rect -703 -71 -691 -37
+rect -749 -77 -691 -71
+rect -557 -37 -499 -31
+rect -557 -71 -545 -37
+rect -511 -71 -499 -37
+rect -557 -77 -499 -71
+rect -365 -37 -307 -31
+rect -365 -71 -353 -37
+rect -319 -71 -307 -37
+rect -365 -77 -307 -71
+rect -173 -37 -115 -31
+rect -173 -71 -161 -37
+rect -127 -71 -115 -37
+rect -173 -77 -115 -71
+rect 19 -37 77 -31
+rect 19 -71 31 -37
+rect 65 -71 77 -37
+rect 19 -77 77 -71
+rect 211 -37 269 -31
+rect 211 -71 223 -37
+rect 257 -71 269 -37
+rect 211 -77 269 -71
+rect 403 -37 461 -31
+rect 403 -71 415 -37
+rect 449 -71 461 -37
+rect 403 -77 461 -71
+rect 595 -37 653 -31
+rect 595 -71 607 -37
+rect 641 -71 653 -37
+rect 595 -77 653 -71
+rect 787 -37 845 -31
+rect 787 -71 799 -37
+rect 833 -71 845 -37
+rect 787 -77 845 -71
+rect 979 -37 1037 -31
+rect 979 -71 991 -37
+rect 1025 -71 1037 -37
+rect 979 -77 1037 -71
+rect 1171 -37 1229 -31
+rect 1171 -71 1183 -37
+rect 1217 -71 1229 -37
+rect 1171 -77 1229 -71
+rect 1363 -37 1421 -31
+rect 1363 -71 1375 -37
+rect 1409 -71 1421 -37
+rect 1363 -77 1421 -71
+rect 1555 -37 1613 -31
+rect 1555 -71 1567 -37
+rect 1601 -71 1613 -37
+rect 1555 -77 1613 -71
+rect 1747 -37 1805 -31
+rect 1747 -71 1759 -37
+rect 1793 -71 1805 -37
+rect 1747 -77 1805 -71
+rect 1939 -37 1997 -31
+rect 1939 -71 1951 -37
+rect 1985 -71 1997 -37
+rect 1939 -77 1997 -71
+rect 2131 -37 2189 -31
+rect 2131 -71 2143 -37
+rect 2177 -71 2189 -37
+rect 2131 -77 2189 -71
+rect 2323 -37 2381 -31
+rect 2323 -71 2335 -37
+rect 2369 -71 2381 -37
+rect 2323 -77 2381 -71
+rect -2423 -121 -2377 -109
+rect -2423 -497 -2417 -121
+rect -2383 -497 -2377 -121
+rect -2423 -509 -2377 -497
+rect -2327 -121 -2281 -109
+rect -2327 -497 -2321 -121
+rect -2287 -497 -2281 -121
+rect -2327 -509 -2281 -497
+rect -2231 -121 -2185 -109
+rect -2231 -497 -2225 -121
+rect -2191 -497 -2185 -121
+rect -2231 -509 -2185 -497
+rect -2135 -121 -2089 -109
+rect -2135 -497 -2129 -121
+rect -2095 -497 -2089 -121
+rect -2135 -509 -2089 -497
+rect -2039 -121 -1993 -109
+rect -2039 -497 -2033 -121
+rect -1999 -497 -1993 -121
+rect -2039 -509 -1993 -497
+rect -1943 -121 -1897 -109
+rect -1943 -497 -1937 -121
+rect -1903 -497 -1897 -121
+rect -1943 -509 -1897 -497
+rect -1847 -121 -1801 -109
+rect -1847 -497 -1841 -121
+rect -1807 -497 -1801 -121
+rect -1847 -509 -1801 -497
+rect -1751 -121 -1705 -109
+rect -1751 -497 -1745 -121
+rect -1711 -497 -1705 -121
+rect -1751 -509 -1705 -497
+rect -1655 -121 -1609 -109
+rect -1655 -497 -1649 -121
+rect -1615 -497 -1609 -121
+rect -1655 -509 -1609 -497
+rect -1559 -121 -1513 -109
+rect -1559 -497 -1553 -121
+rect -1519 -497 -1513 -121
+rect -1559 -509 -1513 -497
+rect -1463 -121 -1417 -109
+rect -1463 -497 -1457 -121
+rect -1423 -497 -1417 -121
+rect -1463 -509 -1417 -497
+rect -1367 -121 -1321 -109
+rect -1367 -497 -1361 -121
+rect -1327 -497 -1321 -121
+rect -1367 -509 -1321 -497
+rect -1271 -121 -1225 -109
+rect -1271 -497 -1265 -121
+rect -1231 -497 -1225 -121
+rect -1271 -509 -1225 -497
+rect -1175 -121 -1129 -109
+rect -1175 -497 -1169 -121
+rect -1135 -497 -1129 -121
+rect -1175 -509 -1129 -497
+rect -1079 -121 -1033 -109
+rect -1079 -497 -1073 -121
+rect -1039 -497 -1033 -121
+rect -1079 -509 -1033 -497
+rect -983 -121 -937 -109
+rect -983 -497 -977 -121
+rect -943 -497 -937 -121
+rect -983 -509 -937 -497
+rect -887 -121 -841 -109
+rect -887 -497 -881 -121
+rect -847 -497 -841 -121
+rect -887 -509 -841 -497
+rect -791 -121 -745 -109
+rect -791 -497 -785 -121
+rect -751 -497 -745 -121
+rect -791 -509 -745 -497
+rect -695 -121 -649 -109
+rect -695 -497 -689 -121
+rect -655 -497 -649 -121
+rect -695 -509 -649 -497
+rect -599 -121 -553 -109
+rect -599 -497 -593 -121
+rect -559 -497 -553 -121
+rect -599 -509 -553 -497
+rect -503 -121 -457 -109
+rect -503 -497 -497 -121
+rect -463 -497 -457 -121
+rect -503 -509 -457 -497
+rect -407 -121 -361 -109
+rect -407 -497 -401 -121
+rect -367 -497 -361 -121
+rect -407 -509 -361 -497
+rect -311 -121 -265 -109
+rect -311 -497 -305 -121
+rect -271 -497 -265 -121
+rect -311 -509 -265 -497
+rect -215 -121 -169 -109
+rect -215 -497 -209 -121
+rect -175 -497 -169 -121
+rect -215 -509 -169 -497
+rect -119 -121 -73 -109
+rect -119 -497 -113 -121
+rect -79 -497 -73 -121
+rect -119 -509 -73 -497
+rect -23 -121 23 -109
+rect -23 -497 -17 -121
+rect 17 -497 23 -121
+rect -23 -509 23 -497
+rect 73 -121 119 -109
+rect 73 -497 79 -121
+rect 113 -497 119 -121
+rect 73 -509 119 -497
+rect 169 -121 215 -109
+rect 169 -497 175 -121
+rect 209 -497 215 -121
+rect 169 -509 215 -497
+rect 265 -121 311 -109
+rect 265 -497 271 -121
+rect 305 -497 311 -121
+rect 265 -509 311 -497
+rect 361 -121 407 -109
+rect 361 -497 367 -121
+rect 401 -497 407 -121
+rect 361 -509 407 -497
+rect 457 -121 503 -109
+rect 457 -497 463 -121
+rect 497 -497 503 -121
+rect 457 -509 503 -497
+rect 553 -121 599 -109
+rect 553 -497 559 -121
+rect 593 -497 599 -121
+rect 553 -509 599 -497
+rect 649 -121 695 -109
+rect 649 -497 655 -121
+rect 689 -497 695 -121
+rect 649 -509 695 -497
+rect 745 -121 791 -109
+rect 745 -497 751 -121
+rect 785 -497 791 -121
+rect 745 -509 791 -497
+rect 841 -121 887 -109
+rect 841 -497 847 -121
+rect 881 -497 887 -121
+rect 841 -509 887 -497
+rect 937 -121 983 -109
+rect 937 -497 943 -121
+rect 977 -497 983 -121
+rect 937 -509 983 -497
+rect 1033 -121 1079 -109
+rect 1033 -497 1039 -121
+rect 1073 -497 1079 -121
+rect 1033 -509 1079 -497
+rect 1129 -121 1175 -109
+rect 1129 -497 1135 -121
+rect 1169 -497 1175 -121
+rect 1129 -509 1175 -497
+rect 1225 -121 1271 -109
+rect 1225 -497 1231 -121
+rect 1265 -497 1271 -121
+rect 1225 -509 1271 -497
+rect 1321 -121 1367 -109
+rect 1321 -497 1327 -121
+rect 1361 -497 1367 -121
+rect 1321 -509 1367 -497
+rect 1417 -121 1463 -109
+rect 1417 -497 1423 -121
+rect 1457 -497 1463 -121
+rect 1417 -509 1463 -497
+rect 1513 -121 1559 -109
+rect 1513 -497 1519 -121
+rect 1553 -497 1559 -121
+rect 1513 -509 1559 -497
+rect 1609 -121 1655 -109
+rect 1609 -497 1615 -121
+rect 1649 -497 1655 -121
+rect 1609 -509 1655 -497
+rect 1705 -121 1751 -109
+rect 1705 -497 1711 -121
+rect 1745 -497 1751 -121
+rect 1705 -509 1751 -497
+rect 1801 -121 1847 -109
+rect 1801 -497 1807 -121
+rect 1841 -497 1847 -121
+rect 1801 -509 1847 -497
+rect 1897 -121 1943 -109
+rect 1897 -497 1903 -121
+rect 1937 -497 1943 -121
+rect 1897 -509 1943 -497
+rect 1993 -121 2039 -109
+rect 1993 -497 1999 -121
+rect 2033 -497 2039 -121
+rect 1993 -509 2039 -497
+rect 2089 -121 2135 -109
+rect 2089 -497 2095 -121
+rect 2129 -497 2135 -121
+rect 2089 -509 2135 -497
+rect 2185 -121 2231 -109
+rect 2185 -497 2191 -121
+rect 2225 -497 2231 -121
+rect 2185 -509 2231 -497
+rect 2281 -121 2327 -109
+rect 2281 -497 2287 -121
+rect 2321 -497 2327 -121
+rect 2281 -509 2327 -497
+rect 2377 -121 2423 -109
+rect 2377 -497 2383 -121
+rect 2417 -497 2423 -121
+rect 2377 -509 2423 -497
+rect -2381 -547 -2323 -541
+rect -2381 -581 -2369 -547
+rect -2335 -581 -2323 -547
+rect -2381 -587 -2323 -581
+rect -2189 -547 -2131 -541
+rect -2189 -581 -2177 -547
+rect -2143 -581 -2131 -547
+rect -2189 -587 -2131 -581
+rect -1997 -547 -1939 -541
+rect -1997 -581 -1985 -547
+rect -1951 -581 -1939 -547
+rect -1997 -587 -1939 -581
+rect -1805 -547 -1747 -541
+rect -1805 -581 -1793 -547
+rect -1759 -581 -1747 -547
+rect -1805 -587 -1747 -581
+rect -1613 -547 -1555 -541
+rect -1613 -581 -1601 -547
+rect -1567 -581 -1555 -547
+rect -1613 -587 -1555 -581
+rect -1421 -547 -1363 -541
+rect -1421 -581 -1409 -547
+rect -1375 -581 -1363 -547
+rect -1421 -587 -1363 -581
+rect -1229 -547 -1171 -541
+rect -1229 -581 -1217 -547
+rect -1183 -581 -1171 -547
+rect -1229 -587 -1171 -581
+rect -1037 -547 -979 -541
+rect -1037 -581 -1025 -547
+rect -991 -581 -979 -547
+rect -1037 -587 -979 -581
+rect -845 -547 -787 -541
+rect -845 -581 -833 -547
+rect -799 -581 -787 -547
+rect -845 -587 -787 -581
+rect -653 -547 -595 -541
+rect -653 -581 -641 -547
+rect -607 -581 -595 -547
+rect -653 -587 -595 -581
+rect -461 -547 -403 -541
+rect -461 -581 -449 -547
+rect -415 -581 -403 -547
+rect -461 -587 -403 -581
+rect -269 -547 -211 -541
+rect -269 -581 -257 -547
+rect -223 -581 -211 -547
+rect -269 -587 -211 -581
+rect -77 -547 -19 -541
+rect -77 -581 -65 -547
+rect -31 -581 -19 -547
+rect -77 -587 -19 -581
+rect 115 -547 173 -541
+rect 115 -581 127 -547
+rect 161 -581 173 -547
+rect 115 -587 173 -581
+rect 307 -547 365 -541
+rect 307 -581 319 -547
+rect 353 -581 365 -547
+rect 307 -587 365 -581
+rect 499 -547 557 -541
+rect 499 -581 511 -547
+rect 545 -581 557 -547
+rect 499 -587 557 -581
+rect 691 -547 749 -541
+rect 691 -581 703 -547
+rect 737 -581 749 -547
+rect 691 -587 749 -581
+rect 883 -547 941 -541
+rect 883 -581 895 -547
+rect 929 -581 941 -547
+rect 883 -587 941 -581
+rect 1075 -547 1133 -541
+rect 1075 -581 1087 -547
+rect 1121 -581 1133 -547
+rect 1075 -587 1133 -581
+rect 1267 -547 1325 -541
+rect 1267 -581 1279 -547
+rect 1313 -581 1325 -547
+rect 1267 -587 1325 -581
+rect 1459 -547 1517 -541
+rect 1459 -581 1471 -547
+rect 1505 -581 1517 -547
+rect 1459 -587 1517 -581
+rect 1651 -547 1709 -541
+rect 1651 -581 1663 -547
+rect 1697 -581 1709 -547
+rect 1651 -587 1709 -581
+rect 1843 -547 1901 -541
+rect 1843 -581 1855 -547
+rect 1889 -581 1901 -547
+rect 1843 -587 1901 -581
+rect 2035 -547 2093 -541
+rect 2035 -581 2047 -547
+rect 2081 -581 2093 -547
+rect 2035 -587 2093 -581
+rect 2227 -547 2285 -541
+rect 2227 -581 2239 -547
+rect 2273 -581 2285 -547
+rect 2227 -587 2285 -581
+<< properties >>
+string FIXED_BBOX -2514 -666 2514 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 50 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_NFP4RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_NFP4RB.mag
new file mode 100644
index 0000000..2bfa864
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_NFP4RB.mag
@@ -0,0 +1,505 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645781187
+<< error_p >>
+rect -617 272 -559 278
+rect -421 272 -363 278
+rect -225 272 -167 278
+rect -29 272 29 278
+rect 167 272 225 278
+rect 363 272 421 278
+rect 559 272 617 278
+rect -617 238 -605 272
+rect -421 238 -409 272
+rect -225 238 -213 272
+rect -29 238 -17 272
+rect 167 238 179 272
+rect 363 238 375 272
+rect 559 238 571 272
+rect -617 232 -559 238
+rect -421 232 -363 238
+rect -225 232 -167 238
+rect -29 232 29 238
+rect 167 232 225 238
+rect 363 232 421 238
+rect 559 232 617 238
+rect -715 -238 -657 -232
+rect -519 -238 -461 -232
+rect -323 -238 -265 -232
+rect -127 -238 -69 -232
+rect 69 -238 127 -232
+rect 265 -238 323 -232
+rect 461 -238 519 -232
+rect 657 -238 715 -232
+rect -715 -272 -703 -238
+rect -519 -272 -507 -238
+rect -323 -272 -311 -238
+rect -127 -272 -115 -238
+rect 69 -272 81 -238
+rect 265 -272 277 -238
+rect 461 -272 473 -238
+rect 657 -272 669 -238
+rect -715 -278 -657 -272
+rect -519 -278 -461 -272
+rect -323 -278 -265 -272
+rect -127 -278 -69 -272
+rect 69 -278 127 -272
+rect 265 -278 323 -272
+rect 461 -278 519 -272
+rect 657 -278 715 -272
+<< pwell >>
+rect -902 -410 902 410
+<< nmos >>
+rect -706 -200 -666 200
+rect -608 -200 -568 200
+rect -510 -200 -470 200
+rect -412 -200 -372 200
+rect -314 -200 -274 200
+rect -216 -200 -176 200
+rect -118 -200 -78 200
+rect -20 -200 20 200
+rect 78 -200 118 200
+rect 176 -200 216 200
+rect 274 -200 314 200
+rect 372 -200 412 200
+rect 470 -200 510 200
+rect 568 -200 608 200
+rect 666 -200 706 200
+<< ndiff >>
+rect -764 188 -706 200
+rect -764 -188 -752 188
+rect -718 -188 -706 188
+rect -764 -200 -706 -188
+rect -666 188 -608 200
+rect -666 -188 -654 188
+rect -620 -188 -608 188
+rect -666 -200 -608 -188
+rect -568 188 -510 200
+rect -568 -188 -556 188
+rect -522 -188 -510 188
+rect -568 -200 -510 -188
+rect -470 188 -412 200
+rect -470 -188 -458 188
+rect -424 -188 -412 188
+rect -470 -200 -412 -188
+rect -372 188 -314 200
+rect -372 -188 -360 188
+rect -326 -188 -314 188
+rect -372 -200 -314 -188
+rect -274 188 -216 200
+rect -274 -188 -262 188
+rect -228 -188 -216 188
+rect -274 -200 -216 -188
+rect -176 188 -118 200
+rect -176 -188 -164 188
+rect -130 -188 -118 188
+rect -176 -200 -118 -188
+rect -78 188 -20 200
+rect -78 -188 -66 188
+rect -32 -188 -20 188
+rect -78 -200 -20 -188
+rect 20 188 78 200
+rect 20 -188 32 188
+rect 66 -188 78 188
+rect 20 -200 78 -188
+rect 118 188 176 200
+rect 118 -188 130 188
+rect 164 -188 176 188
+rect 118 -200 176 -188
+rect 216 188 274 200
+rect 216 -188 228 188
+rect 262 -188 274 188
+rect 216 -200 274 -188
+rect 314 188 372 200
+rect 314 -188 326 188
+rect 360 -188 372 188
+rect 314 -200 372 -188
+rect 412 188 470 200
+rect 412 -188 424 188
+rect 458 -188 470 188
+rect 412 -200 470 -188
+rect 510 188 568 200
+rect 510 -188 522 188
+rect 556 -188 568 188
+rect 510 -200 568 -188
+rect 608 188 666 200
+rect 608 -188 620 188
+rect 654 -188 666 188
+rect 608 -200 666 -188
+rect 706 188 764 200
+rect 706 -188 718 188
+rect 752 -188 764 188
+rect 706 -200 764 -188
+<< ndiffc >>
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+<< psubdiff >>
+rect -866 340 -770 374
+rect 770 340 866 374
+rect -866 278 -832 340
+rect 832 278 866 340
+rect -866 -340 -832 -278
+rect 832 -340 866 -278
+rect -866 -374 -770 -340
+rect 770 -374 866 -340
+<< psubdiffcont >>
+rect -770 340 770 374
+rect -866 -278 -832 278
+rect 832 -278 866 278
+rect -770 -374 770 -340
+<< poly >>
+rect -621 272 -555 288
+rect -621 238 -605 272
+rect -571 238 -555 272
+rect -706 200 -666 226
+rect -621 222 -555 238
+rect -425 272 -359 288
+rect -425 238 -409 272
+rect -375 238 -359 272
+rect -608 200 -568 222
+rect -510 200 -470 226
+rect -425 222 -359 238
+rect -229 272 -163 288
+rect -229 238 -213 272
+rect -179 238 -163 272
+rect -412 200 -372 222
+rect -314 200 -274 226
+rect -229 222 -163 238
+rect -33 272 33 288
+rect -33 238 -17 272
+rect 17 238 33 272
+rect -216 200 -176 222
+rect -118 200 -78 226
+rect -33 222 33 238
+rect 163 272 229 288
+rect 163 238 179 272
+rect 213 238 229 272
+rect -20 200 20 222
+rect 78 200 118 226
+rect 163 222 229 238
+rect 359 272 425 288
+rect 359 238 375 272
+rect 409 238 425 272
+rect 176 200 216 222
+rect 274 200 314 226
+rect 359 222 425 238
+rect 555 272 621 288
+rect 555 238 571 272
+rect 605 238 621 272
+rect 372 200 412 222
+rect 470 200 510 226
+rect 555 222 621 238
+rect 568 200 608 222
+rect 666 200 706 226
+rect -706 -222 -666 -200
+rect -719 -238 -653 -222
+rect -608 -226 -568 -200
+rect -510 -222 -470 -200
+rect -719 -272 -703 -238
+rect -669 -272 -653 -238
+rect -719 -288 -653 -272
+rect -523 -238 -457 -222
+rect -412 -226 -372 -200
+rect -314 -222 -274 -200
+rect -523 -272 -507 -238
+rect -473 -272 -457 -238
+rect -523 -288 -457 -272
+rect -327 -238 -261 -222
+rect -216 -226 -176 -200
+rect -118 -222 -78 -200
+rect -327 -272 -311 -238
+rect -277 -272 -261 -238
+rect -327 -288 -261 -272
+rect -131 -238 -65 -222
+rect -20 -226 20 -200
+rect 78 -222 118 -200
+rect -131 -272 -115 -238
+rect -81 -272 -65 -238
+rect -131 -288 -65 -272
+rect 65 -238 131 -222
+rect 176 -226 216 -200
+rect 274 -222 314 -200
+rect 65 -272 81 -238
+rect 115 -272 131 -238
+rect 65 -288 131 -272
+rect 261 -238 327 -222
+rect 372 -226 412 -200
+rect 470 -222 510 -200
+rect 261 -272 277 -238
+rect 311 -272 327 -238
+rect 261 -288 327 -272
+rect 457 -238 523 -222
+rect 568 -226 608 -200
+rect 666 -222 706 -200
+rect 457 -272 473 -238
+rect 507 -272 523 -238
+rect 457 -288 523 -272
+rect 653 -238 719 -222
+rect 653 -272 669 -238
+rect 703 -272 719 -238
+rect 653 -288 719 -272
+<< polycont >>
+rect -605 238 -571 272
+rect -409 238 -375 272
+rect -213 238 -179 272
+rect -17 238 17 272
+rect 179 238 213 272
+rect 375 238 409 272
+rect 571 238 605 272
+rect -703 -272 -669 -238
+rect -507 -272 -473 -238
+rect -311 -272 -277 -238
+rect -115 -272 -81 -238
+rect 81 -272 115 -238
+rect 277 -272 311 -238
+rect 473 -272 507 -238
+rect 669 -272 703 -238
+<< locali >>
+rect -866 340 -770 374
+rect 770 340 866 374
+rect -866 278 -832 340
+rect 832 278 866 340
+rect -621 238 -605 272
+rect -571 238 -555 272
+rect -425 238 -409 272
+rect -375 238 -359 272
+rect -229 238 -213 272
+rect -179 238 -163 272
+rect -33 238 -17 272
+rect 17 238 33 272
+rect 163 238 179 272
+rect 213 238 229 272
+rect 359 238 375 272
+rect 409 238 425 272
+rect 555 238 571 272
+rect 605 238 621 272
+rect -752 188 -718 204
+rect -752 -204 -718 -188
+rect -654 188 -620 204
+rect -654 -204 -620 -188
+rect -556 188 -522 204
+rect -556 -204 -522 -188
+rect -458 188 -424 204
+rect -458 -204 -424 -188
+rect -360 188 -326 204
+rect -360 -204 -326 -188
+rect -262 188 -228 204
+rect -262 -204 -228 -188
+rect -164 188 -130 204
+rect -164 -204 -130 -188
+rect -66 188 -32 204
+rect -66 -204 -32 -188
+rect 32 188 66 204
+rect 32 -204 66 -188
+rect 130 188 164 204
+rect 130 -204 164 -188
+rect 228 188 262 204
+rect 228 -204 262 -188
+rect 326 188 360 204
+rect 326 -204 360 -188
+rect 424 188 458 204
+rect 424 -204 458 -188
+rect 522 188 556 204
+rect 522 -204 556 -188
+rect 620 188 654 204
+rect 620 -204 654 -188
+rect 718 188 752 204
+rect 718 -204 752 -188
+rect -719 -272 -703 -238
+rect -669 -272 -653 -238
+rect -523 -272 -507 -238
+rect -473 -272 -457 -238
+rect -327 -272 -311 -238
+rect -277 -272 -261 -238
+rect -131 -272 -115 -238
+rect -81 -272 -65 -238
+rect 65 -272 81 -238
+rect 115 -272 131 -238
+rect 261 -272 277 -238
+rect 311 -272 327 -238
+rect 457 -272 473 -238
+rect 507 -272 523 -238
+rect 653 -272 669 -238
+rect 703 -272 719 -238
+rect -866 -340 -832 -278
+rect 832 -340 866 -278
+rect -866 -374 -770 -340
+rect 770 -374 866 -340
+<< viali >>
+rect -605 238 -571 272
+rect -409 238 -375 272
+rect -213 238 -179 272
+rect -17 238 17 272
+rect 179 238 213 272
+rect 375 238 409 272
+rect 571 238 605 272
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+rect -703 -272 -669 -238
+rect -507 -272 -473 -238
+rect -311 -272 -277 -238
+rect -115 -272 -81 -238
+rect 81 -272 115 -238
+rect 277 -272 311 -238
+rect 473 -272 507 -238
+rect 669 -272 703 -238
+<< metal1 >>
+rect -617 272 -559 278
+rect -617 238 -605 272
+rect -571 238 -559 272
+rect -617 232 -559 238
+rect -421 272 -363 278
+rect -421 238 -409 272
+rect -375 238 -363 272
+rect -421 232 -363 238
+rect -225 272 -167 278
+rect -225 238 -213 272
+rect -179 238 -167 272
+rect -225 232 -167 238
+rect -29 272 29 278
+rect -29 238 -17 272
+rect 17 238 29 272
+rect -29 232 29 238
+rect 167 272 225 278
+rect 167 238 179 272
+rect 213 238 225 272
+rect 167 232 225 238
+rect 363 272 421 278
+rect 363 238 375 272
+rect 409 238 421 272
+rect 363 232 421 238
+rect 559 272 617 278
+rect 559 238 571 272
+rect 605 238 617 272
+rect 559 232 617 238
+rect -758 188 -712 200
+rect -758 -188 -752 188
+rect -718 -188 -712 188
+rect -758 -200 -712 -188
+rect -660 188 -614 200
+rect -660 -188 -654 188
+rect -620 -188 -614 188
+rect -660 -200 -614 -188
+rect -562 188 -516 200
+rect -562 -188 -556 188
+rect -522 -188 -516 188
+rect -562 -200 -516 -188
+rect -464 188 -418 200
+rect -464 -188 -458 188
+rect -424 -188 -418 188
+rect -464 -200 -418 -188
+rect -366 188 -320 200
+rect -366 -188 -360 188
+rect -326 -188 -320 188
+rect -366 -200 -320 -188
+rect -268 188 -222 200
+rect -268 -188 -262 188
+rect -228 -188 -222 188
+rect -268 -200 -222 -188
+rect -170 188 -124 200
+rect -170 -188 -164 188
+rect -130 -188 -124 188
+rect -170 -200 -124 -188
+rect -72 188 -26 200
+rect -72 -188 -66 188
+rect -32 -188 -26 188
+rect -72 -200 -26 -188
+rect 26 188 72 200
+rect 26 -188 32 188
+rect 66 -188 72 188
+rect 26 -200 72 -188
+rect 124 188 170 200
+rect 124 -188 130 188
+rect 164 -188 170 188
+rect 124 -200 170 -188
+rect 222 188 268 200
+rect 222 -188 228 188
+rect 262 -188 268 188
+rect 222 -200 268 -188
+rect 320 188 366 200
+rect 320 -188 326 188
+rect 360 -188 366 188
+rect 320 -200 366 -188
+rect 418 188 464 200
+rect 418 -188 424 188
+rect 458 -188 464 188
+rect 418 -200 464 -188
+rect 516 188 562 200
+rect 516 -188 522 188
+rect 556 -188 562 188
+rect 516 -200 562 -188
+rect 614 188 660 200
+rect 614 -188 620 188
+rect 654 -188 660 188
+rect 614 -200 660 -188
+rect 712 188 758 200
+rect 712 -188 718 188
+rect 752 -188 758 188
+rect 712 -200 758 -188
+rect -715 -238 -657 -232
+rect -715 -272 -703 -238
+rect -669 -272 -657 -238
+rect -715 -278 -657 -272
+rect -519 -238 -461 -232
+rect -519 -272 -507 -238
+rect -473 -272 -461 -238
+rect -519 -278 -461 -272
+rect -323 -238 -265 -232
+rect -323 -272 -311 -238
+rect -277 -272 -265 -238
+rect -323 -278 -265 -272
+rect -127 -238 -69 -232
+rect -127 -272 -115 -238
+rect -81 -272 -69 -238
+rect -127 -278 -69 -272
+rect 69 -238 127 -232
+rect 69 -272 81 -238
+rect 115 -272 127 -238
+rect 69 -278 127 -272
+rect 265 -238 323 -232
+rect 265 -272 277 -238
+rect 311 -272 323 -238
+rect 265 -278 323 -272
+rect 461 -238 519 -232
+rect 461 -272 473 -238
+rect 507 -272 519 -238
+rect 461 -278 519 -272
+rect 657 -238 715 -232
+rect 657 -272 669 -238
+rect 703 -272 715 -238
+rect 657 -278 715 -272
+<< properties >>
+string FIXED_BBOX -849 -357 849 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 1 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_RE4MKQ.mag b/mag/tia/sky130_fd_pr__nfet_01v8_RE4MKQ.mag
new file mode 100644
index 0000000..2cc9054
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_RE4MKQ.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645790779
+<< error_p >>
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+<< pwell >>
+rect -1367 -719 1367 719
+<< nmos >>
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+<< ndiff >>
+rect -1229 497 -1167 509
+rect -1229 121 -1217 497
+rect -1183 121 -1167 497
+rect -1229 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1229 509
+rect 1167 121 1183 497
+rect 1217 121 1229 497
+rect 1167 109 1229 121
+rect -1229 -121 -1167 -109
+rect -1229 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1229 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1229 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1229 -121
+rect 1167 -509 1229 -497
+<< ndiffc >>
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+<< psubdiff >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< psubdiffcont >>
+rect -1235 649 1235 683
+rect -1331 -587 -1297 587
+rect 1297 -587 1331 587
+rect -1235 -683 1235 -649
+<< poly >>
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1137 509 1167 531
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect -1167 -531 -1137 -509
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+<< polycont >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< locali >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< viali >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< metal1 >>
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+<< properties >>
+string FIXED_BBOX -1314 -666 1314 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.ext b/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.ext
new file mode 100644
index 0000000..93b86fc
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.ext
@@ -0,0 +1,953 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1167_n1127#" 929 155.176 1167 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_n1127#" 882 12.2058 1071 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_n1127#" 882 12.2058 975 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_n1127#" 882 12.2058 879 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_n1127#" 882 12.2058 783 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_n1127#" 882 12.2058 687 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_n1127#" 882 12.2058 591 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n1127#" 882 12.2058 495 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n1127#" 882 12.2058 399 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n1127#" 882 12.2058 303 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n1127#" 882 12.2058 207 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n1127#" 882 12.2058 111 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n1127#" 882 12.2058 15 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n1127#" 882 12.2058 -81 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n1127#" 882 12.2058 -177 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n1127#" 882 12.2058 -273 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n1127#" 882 12.2058 -369 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n1127#" 882 12.2058 -465 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n1127#" 882 12.2058 -561 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n1127#" 882 12.2058 -657 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n1127#" 882 12.2058 -753 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n1127#" 882 12.2058 -849 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n1127#" 882 12.2058 -945 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n1127#" 882 12.2058 -1041 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n1127#" 882 12.2058 -1137 -1127 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n1127#" 929 155.176 -1229 -1127 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n1215#" 837 133.292 1119 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_n1215#" 837 96.6422 927 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n705#" 837 82.0127 1023 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_n1215#" 837 96.6422 735 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_n705#" 837 62.121 831 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n1215#" 837 96.6422 543 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_n705#" 837 62.121 639 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_n1215#" 837 96.6422 351 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_n705#" 837 62.121 447 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n1215#" 837 96.6422 159 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_n705#" 837 62.121 255 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n1215#" 837 96.6422 -33 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n705#" 837 62.121 63 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n1215#" 837 96.6422 -225 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n705#" 837 62.121 -129 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n1215#" 837 96.6422 -417 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n705#" 837 62.121 -321 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n1215#" 837 96.6422 -609 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n705#" 837 62.121 -513 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n1215#" 837 96.6422 -801 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n705#" 837 62.121 -705 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n1215#" 837 96.6422 -993 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n705#" 837 62.121 -897 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n1215#" 837 133.546 -1185 -1215 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n705#" 837 82.2668 -1089 -705 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_n509#" 929 147.132 1167 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_n509#" 882 4.30285 1071 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_n509#" 882 4.30285 975 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_n509#" 882 4.30285 879 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_n509#" 882 4.30285 783 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_n509#" 882 4.30285 687 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_n509#" 882 4.30285 591 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_n509#" 882 4.30285 495 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_n509#" 882 4.30285 399 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_n509#" 882 4.30285 303 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_n509#" 882 4.30285 207 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n509#" 882 4.30285 111 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n509#" 882 4.30285 15 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n509#" 882 4.30285 -81 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n509#" 882 4.30285 -177 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_n509#" 882 4.30285 -273 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_n509#" 882 4.30285 -369 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_n509#" 882 4.30285 -465 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_n509#" 882 4.30285 -561 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_n509#" 882 4.30285 -657 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_n509#" 882 4.30285 -753 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_n509#" 882 4.30285 -849 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_n509#" 882 4.30285 -945 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_n509#" 882 4.30285 -1041 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_n509#" 882 4.30285 -1137 -509 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_n509#" 929 147.132 -1229 -509 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_n597#" 837 72.0768 1023 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1119_n87#" 837 88.628 1119 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_n597#" 837 52.1851 831 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_n87#" 837 51.9786 927 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_n597#" 837 52.1851 639 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_n87#" 837 51.9786 735 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_n597#" 837 52.1851 447 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_n87#" 837 51.9786 543 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_n597#" 837 52.1851 255 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_n87#" 837 51.9786 351 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_n597#" 837 52.1851 63 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_n87#" 837 51.9786 159 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n597#" 837 52.1851 -129 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n87#" 837 51.9786 -33 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_n597#" 837 52.1851 -321 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n87#" 837 51.9786 -225 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_n597#" 837 52.1851 -513 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_n87#" 837 51.9786 -417 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_n597#" 837 52.1851 -705 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_n87#" 837 51.9786 -609 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_n597#" 837 52.1851 -897 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_n87#" 837 51.9786 -801 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_n597#" 837 72.3309 -1089 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_n87#" 837 51.9786 -993 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_n87#" 837 88.8821 -1185 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_109#" 929 147.273 1167 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_109#" 882 4.30285 1071 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_109#" 882 4.30285 975 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_109#" 882 4.30285 879 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_109#" 882 4.30285 783 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_109#" 882 4.30285 687 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_109#" 882 4.30285 591 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_109#" 882 4.30285 495 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_109#" 882 4.30285 399 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_109#" 882 4.30285 303 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_109#" 882 4.30285 207 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_109#" 882 4.30285 111 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_109#" 882 4.30285 15 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_109#" 882 4.30285 -81 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_109#" 882 4.30285 -177 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_109#" 882 4.30285 -273 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_109#" 882 4.30285 -369 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_109#" 882 4.30285 -465 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_109#" 882 4.30285 -561 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_109#" 882 4.30285 -657 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_109#" 882 4.30285 -753 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_109#" 882 4.30285 -849 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_109#" 882 4.30285 -945 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_109#" 882 4.30285 -1041 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_109#" 882 4.30285 -1137 109 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_109#" 929 147.273 -1229 109 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1119_21#" 837 88.8346 1119 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_21#" 837 52.1851 927 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1023_531#" 837 71.8703 1023 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_21#" 837 52.1851 735 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_531#" 837 51.9786 831 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_21#" 837 52.1851 543 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_531#" 837 51.9786 639 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_21#" 837 52.1851 351 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_531#" 837 51.9786 447 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_21#" 837 52.1851 159 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_531#" 837 51.9786 255 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 837 52.1851 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_531#" 837 51.9786 63 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_21#" 837 52.1851 -225 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_531#" 837 51.9786 -129 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_21#" 837 52.1851 -417 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_531#" 837 51.9786 -321 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_21#" 837 52.1851 -609 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_531#" 837 51.9786 -513 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_21#" 837 52.1851 -801 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_531#" 837 51.9786 -705 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_21#" 837 52.1851 -993 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_531#" 837 51.9786 -897 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_21#" 837 89.0887 -1185 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_531#" 837 72.1243 -1089 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1167_727#" 929 155.264 1167 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1071_727#" 882 12.4348 1071 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_975_727#" 882 12.4348 975 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_879_727#" 882 12.4348 879 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_783_727#" 882 12.4348 783 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_687_727#" 882 12.4348 687 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_591_727#" 882 12.4348 591 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_495_727#" 882 12.4348 495 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_399_727#" 882 12.4348 399 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_303_727#" 882 12.4348 303 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_207_727#" 882 12.4348 207 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_727#" 882 12.4348 111 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_727#" 882 12.4348 15 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_727#" 882 12.4348 -81 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_727#" 882 12.4348 -177 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n273_727#" 882 12.4348 -273 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n369_727#" 882 12.4348 -369 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n465_727#" 882 12.4348 -465 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n561_727#" 882 12.4348 -561 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n657_727#" 882 12.4348 -657 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n753_727#" 882 12.4348 -753 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n849_727#" 882 12.4348 -849 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n945_727#" 882 12.4348 -945 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1041_727#" 882 12.4348 -1041 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1137_727#" 882 12.4348 -1137 727 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1229_727#" 929 155.264 -1229 727 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1023_639#" 837 82.2192 1023 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1119_1149#" 837 133.292 1119 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_831_639#" 837 62.3276 831 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_927_1149#" 837 96.6422 927 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_639_639#" 837 62.3276 639 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_735_1149#" 837 96.6422 735 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_447_639#" 837 62.3276 447 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_543_1149#" 837 96.6422 543 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_255_639#" 837 62.3276 255 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_351_1149#" 837 96.6422 351 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_639#" 837 62.3276 63 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_159_1149#" 837 96.6422 159 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_639#" 837 62.3276 -129 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_1149#" 837 96.6422 -33 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n321_639#" 837 62.3276 -321 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_1149#" 837 96.6422 -225 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n513_639#" 837 62.3276 -513 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n417_1149#" 837 96.6422 -417 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n705_639#" 837 62.3276 -705 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n609_1149#" 837 96.6422 -609 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n897_639#" 837 62.3276 -897 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n801_1149#" 837 96.6422 -801 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1089_639#" 837 82.4733 -1089 639 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n993_1149#" 837 96.6422 -993 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1185_1149#" 837 133.546 -1185 1149 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1331_n1301#" 0 0 -1331 -1301 ppd 0 0 0 0 0 0 0 0 0 0 353328 20784 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 353328 20784 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_351_n1215#" "a_303_n1127#" 6.25956
+cap "a_447_n705#" "a_399_n1127#" 6.25956
+cap "a_879_n509#" "a_879_n1127#" 12.3196
+cap "a_n849_n509#" "a_n753_n509#" 479.458
+cap "a_1071_109#" "a_1023_531#" 6.25956
+cap "a_n801_1149#" "a_n801_21#" 6.73951
+cap "a_351_1149#" "a_399_727#" 6.25956
+cap "a_927_21#" "a_1023_531#" 14.1667
+cap "a_n561_n1127#" "a_n609_n1215#" 6.25956
+cap "a_n465_n1127#" "a_n513_n705#" 6.25956
+cap "a_n81_n509#" "a_n129_n597#" 6.25956
+cap "a_15_n509#" "a_n33_n87#" 6.25956
+cap "a_n657_109#" "a_n657_n509#" 12.3196
+cap "a_n1185_21#" "a_n1185_1149#" 6.73951
+cap "a_591_n1127#" "a_687_n1127#" 479.458
+cap "a_831_531#" "a_831_n597#" 6.73951
+cap "a_n1089_531#" "a_n897_531#" 28.5878
+cap "a_831_n705#" "a_927_n1215#" 14.1667
+cap "a_n417_n87#" "a_n513_n597#" 14.1667
+cap "a_351_1149#" "a_351_21#" 6.73951
+cap "a_1119_1149#" "a_1071_727#" 6.25956
+cap "a_n321_531#" "a_n513_531#" 28.5878
+cap "a_n129_531#" "a_n129_639#" 86.2066
+cap "a_n321_639#" "a_n225_1149#" 14.1667
+cap "a_n225_1149#" "a_n33_1149#" 28.5878
+cap "a_927_21#" "a_735_21#" 28.5878
+cap "a_543_1149#" "a_447_639#" 14.1667
+cap "a_207_n509#" "a_303_n509#" 479.458
+cap "a_n129_531#" "a_n81_109#" 6.25956
+cap "a_783_109#" "a_783_727#" 12.3196
+cap "a_495_727#" "a_447_639#" 6.25956
+cap "a_n561_727#" "a_n561_109#" 12.3196
+cap "a_1071_n509#" "a_1023_n597#" 6.25956
+cap "a_1167_n509#" "a_1119_n87#" 6.25956
+cap "a_543_n87#" "a_639_n597#" 14.1667
+cap "a_n321_531#" "a_n417_21#" 14.1667
+cap "a_n129_639#" "a_n81_727#" 6.25956
+cap "a_n801_1149#" "a_n849_727#" 6.25956
+cap "a_15_n509#" "a_111_n509#" 479.458
+cap "a_n561_n509#" "a_n513_n597#" 6.25956
+cap "a_n465_n509#" "a_n417_n87#" 6.25956
+cap "a_n513_639#" "a_n561_727#" 6.25956
+cap "a_n801_n1215#" "a_n609_n1215#" 28.5878
+cap "a_n81_727#" "a_n81_109#" 12.3196
+cap "a_n273_109#" "a_n273_727#" 12.3196
+cap "a_n321_n705#" "a_n129_n705#" 28.5878
+cap "a_63_639#" "a_63_531#" 86.2066
+cap "a_1071_n1127#" "a_1167_n1127#" 479.458
+cap "a_n369_727#" "a_n273_727#" 479.458
+cap "a_n225_n1215#" "a_n33_n1215#" 28.5878
+cap "a_n129_n597#" "a_63_n597#" 28.5878
+cap "a_n897_n597#" "a_n897_n705#" 86.2066
+cap "a_n417_21#" "a_n417_1149#" 6.73951
+cap "a_111_n509#" "a_111_n1127#" 12.3196
+cap "a_n1089_n597#" "a_n1089_n705#" 86.2066
+cap "a_n801_n87#" "a_n705_n597#" 14.1667
+cap "a_n273_n1127#" "a_n177_n1127#" 479.458
+cap "a_n177_n509#" "a_n177_n1127#" 12.3196
+cap "a_n177_n509#" "a_n81_n509#" 479.458
+cap "a_n561_727#" "a_n609_1149#" 6.25956
+cap "a_n945_727#" "a_n849_727#" 479.458
+cap "a_n33_n1215#" "a_159_n1215#" 28.5878
+cap "a_351_n87#" "a_543_n87#" 28.5878
+cap "a_n369_n509#" "a_n369_n1127#" 12.3196
+cap "a_n369_n509#" "a_n273_n509#" 479.458
+cap "a_n801_1149#" "a_n897_639#" 14.1667
+cap "a_n273_n509#" "a_n273_109#" 12.3196
+cap "a_159_1149#" "a_255_639#" 14.1667
+cap "a_n753_n1127#" "a_n657_n1127#" 479.458
+cap "a_n561_n509#" "a_n465_n509#" 479.458
+cap "a_879_n509#" "a_927_n87#" 6.25956
+cap "a_n273_727#" "a_n225_1149#" 6.25956
+cap "a_n417_n87#" "a_n417_n1215#" 6.73951
+cap "a_927_1149#" "a_831_639#" 14.1667
+cap "a_783_n509#" "a_831_n597#" 6.25956
+cap "a_159_n1215#" "a_351_n1215#" 28.5878
+cap "a_n993_n1215#" "a_n801_n1215#" 28.5878
+cap "a_n33_n87#" "a_n129_n597#" 14.1667
+cap "a_735_21#" "a_543_21#" 28.5878
+cap "a_n129_639#" "a_n225_1149#" 14.1667
+cap "a_831_531#" "a_1023_531#" 28.5878
+cap "a_n897_639#" "a_n945_727#" 6.25956
+cap "a_735_1149#" "a_687_727#" 6.25956
+cap "a_n225_n87#" "a_n225_21#" 86.2066
+cap "a_543_n1215#" "a_591_n1127#" 6.25956
+cap "a_639_n705#" "a_687_n1127#" 6.25956
+cap "a_495_n509#" "a_591_n509#" 479.458
+cap "a_n1041_n1127#" "a_n1041_n509#" 12.3196
+cap "a_207_109#" "a_303_109#" 479.458
+cap "a_927_n1215#" "a_879_n1127#" 6.25956
+cap "a_1023_n705#" "a_975_n1127#" 6.25956
+cap "a_15_727#" "a_63_639#" 6.25956
+cap "a_n81_n1127#" "a_n33_n1215#" 6.25956
+cap "a_15_n1127#" "a_63_n705#" 6.25956
+cap "a_639_n597#" "a_831_n597#" 28.5878
+cap "a_n1041_109#" "a_n1137_109#" 479.458
+cap "a_n897_639#" "a_n705_639#" 28.5878
+cap "a_n705_n597#" "a_n657_n509#" 6.25956
+cap "a_447_531#" "a_255_531#" 28.5878
+cap "a_255_639#" "a_255_531#" 86.2066
+cap "a_831_531#" "a_735_21#" 14.1667
+cap "a_447_531#" "a_543_21#" 14.1667
+cap "a_n705_531#" "a_n513_531#" 28.5878
+cap "a_351_n87#" "a_351_n1215#" 6.73951
+cap "a_159_1149#" "a_159_21#" 6.73951
+cap "a_n513_639#" "a_n417_1149#" 14.1667
+cap "a_831_639#" "a_783_727#" 6.25956
+cap "a_n1185_n1215#" "a_n993_n1215#" 28.5878
+cap "a_n225_n87#" "a_n225_n1215#" 6.73951
+cap "a_n417_21#" "a_n513_531#" 14.1667
+cap "a_63_n597#" "a_63_531#" 6.73951
+cap "a_n609_1149#" "a_n417_1149#" 28.5878
+cap "a_303_727#" "a_255_639#" 6.25956
+cap "a_n897_531#" "a_n801_21#" 14.1667
+cap "a_447_639#" "a_639_639#" 28.5878
+cap "a_1071_n509#" "a_1167_n509#" 479.458
+cap "a_783_n509#" "a_783_n1127#" 12.3196
+cap "a_n561_727#" "a_n465_727#" 479.458
+cap "a_n321_n705#" "a_n417_n1215#" 14.1667
+cap "a_495_n1127#" "a_591_n1127#" 479.458
+cap "a_831_n705#" "a_735_n1215#" 14.1667
+cap "a_495_n509#" "a_447_n597#" 6.25956
+cap "a_591_n509#" "a_543_n87#" 6.25956
+cap "a_n801_n87#" "a_n801_n1215#" 6.73951
+cap "a_n321_n597#" "a_n513_n597#" 28.5878
+cap "a_n657_109#" "a_n657_727#" 12.3196
+cap "a_159_n87#" "a_63_n597#" 14.1667
+cap "a_255_531#" "a_159_21#" 14.1667
+cap "a_n705_639#" "a_n657_727#" 6.25956
+cap "a_735_n1215#" "a_639_n705#" 14.1667
+cap "a_111_n509#" "a_207_n509#" 479.458
+cap "a_n609_21#" "a_n513_531#" 14.1667
+cap "a_n609_21#" "a_n705_531#" 14.1667
+cap "a_159_1149#" "a_111_727#" 6.25956
+cap "a_927_n1215#" "a_927_n87#" 6.73951
+cap "a_n1185_n87#" "a_n1185_21#" 86.2066
+cap "a_n657_n1127#" "a_n609_n1215#" 6.25956
+cap "a_303_109#" "a_351_21#" 6.25956
+cap "a_639_n705#" "a_543_n1215#" 14.1667
+cap "a_n609_21#" "a_n609_n87#" 86.2066
+cap "a_975_n1127#" "a_1071_n1127#" 479.458
+cap "a_687_109#" "a_735_21#" 6.25956
+cap "a_n321_531#" "a_n369_109#" 6.25956
+cap "a_n513_531#" "a_n561_109#" 6.25956
+cap "a_n609_21#" "a_n417_21#" 28.5878
+cap "a_n129_n705#" "a_63_n705#" 28.5878
+cap "a_n1229_n509#" "a_n1137_n509#" 479.458
+cap "a_15_727#" "a_n33_1149#" 6.25956
+cap "a_n33_n87#" "a_159_n87#" 28.5878
+cap "a_n225_21#" "a_n129_531#" 14.1667
+cap "a_n1041_727#" "a_n1041_109#" 12.3196
+cap "a_n513_639#" "a_n513_531#" 86.2066
+cap "a_n369_n1127#" "a_n273_n1127#" 479.458
+cap "a_n273_n509#" "a_n273_n1127#" 12.3196
+cap "a_n273_n509#" "a_n177_n509#" 479.458
+cap "a_n993_n87#" "a_n1185_n87#" 28.5878
+cap "a_n465_n509#" "a_n465_n1127#" 12.3196
+cap "a_1023_n597#" "a_927_n87#" 14.1667
+cap "a_543_n87#" "a_447_n597#" 14.1667
+cap "a_n801_n87#" "a_n801_21#" 86.2066
+cap "a_n897_639#" "a_n897_531#" 86.2066
+cap "a_n849_n1127#" "a_n753_n1127#" 479.458
+cap "a_n753_109#" "a_n705_531#" 6.25956
+cap "a_n705_n705#" "a_n753_n1127#" 6.25956
+cap "a_n513_n597#" "a_n513_n705#" 86.2066
+cap "a_n465_727#" "a_n417_1149#" 6.25956
+cap "a_n993_21#" "a_n1185_21#" 28.5878
+cap "a_n945_n509#" "a_n849_n509#" 479.458
+cap "a_n225_21#" "a_n273_109#" 6.25956
+cap "a_879_727#" "a_831_639#" 6.25956
+cap "a_n993_n87#" "a_n1089_n597#" 14.1667
+cap "a_447_639#" "a_447_531#" 86.2066
+cap "a_447_639#" "a_255_639#" 28.5878
+cap "a_n849_727#" "a_n753_727#" 479.458
+cap "a_n1229_727#" "a_n1229_109#" 12.3196
+cap "a_n1137_n1127#" "a_n1137_n509#" 12.3196
+cap "a_159_n87#" "a_111_n509#" 6.25956
+cap "a_n321_531#" "a_n321_639#" 86.2066
+cap "a_15_n509#" "a_15_109#" 12.3196
+cap "a_879_727#" "a_927_1149#" 6.25956
+cap "a_n465_n1127#" "a_n417_n1215#" 6.25956
+cap "a_n369_n1127#" "a_n321_n705#" 6.25956
+cap "a_n609_21#" "a_n561_109#" 6.25956
+cap "a_n993_n87#" "a_n993_21#" 86.2066
+cap "a_n753_109#" "a_n849_109#" 479.458
+cap "a_1023_n705#" "a_1119_n1215#" 14.1667
+cap "a_n1229_109#" "a_n1137_109#" 479.458
+cap "a_n1041_727#" "a_n1089_639#" 6.25956
+cap "a_n513_n597#" "a_n513_531#" 6.73951
+cap "a_543_1149#" "a_735_1149#" 28.5878
+cap "a_n1185_n1215#" "a_n1137_n1127#" 6.25956
+cap "a_n1089_n705#" "a_n1041_n1127#" 6.25956
+cap "a_783_109#" "a_879_109#" 479.458
+cap "a_1023_639#" "a_831_639#" 28.5878
+cap "a_n225_21#" "a_n225_1149#" 6.73951
+cap "a_n321_639#" "a_n417_1149#" 14.1667
+cap "a_n1089_n705#" "a_n897_n705#" 28.5878
+cap "a_n609_n87#" "a_n513_n597#" 14.1667
+cap "a_1071_n509#" "a_1071_109#" 12.3196
+cap "a_n225_n87#" "a_n129_n597#" 14.1667
+cap "a_n609_21#" "a_n609_1149#" 6.73951
+cap "a_1023_639#" "a_927_1149#" 14.1667
+cap "a_159_n1215#" "a_111_n1127#" 6.25956
+cap "a_591_109#" "a_495_109#" 479.458
+cap "a_n561_n1127#" "a_n657_n1127#" 479.458
+cap "a_735_n87#" "a_927_n87#" 28.5878
+cap "a_n33_21#" "a_n33_1149#" 6.73951
+cap "a_975_n509#" "a_1071_n509#" 479.458
+cap "a_n513_n705#" "a_n417_n1215#" 14.1667
+cap "a_1119_n87#" "a_1119_n1215#" 6.73951
+cap "a_255_n597#" "a_303_n509#" 6.25956
+cap "a_351_n87#" "a_399_n509#" 6.25956
+cap "a_879_727#" "a_783_727#" 479.458
+cap "a_n1229_727#" "a_n1137_727#" 479.458
+cap "a_399_n1127#" "a_495_n1127#" 479.458
+cap "a_n513_639#" "a_n609_1149#" 14.1667
+cap "a_n417_21#" "a_n369_109#" 6.25956
+cap "a_207_109#" "a_255_531#" 6.25956
+cap "a_63_n597#" "a_63_n705#" 86.2066
+cap "a_n225_n87#" "a_n417_n87#" 28.5878
+cap "a_n465_109#" "a_n513_531#" 6.25956
+cap "a_495_727#" "a_399_727#" 479.458
+cap "a_n273_727#" "a_n177_727#" 479.458
+cap "a_255_531#" "a_63_531#" 28.5878
+cap "a_687_727#" "a_783_727#" 479.458
+cap "a_n129_639#" "a_n177_727#" 6.25956
+cap "a_n33_n87#" "a_n33_21#" 86.2066
+cap "a_n1041_109#" "a_n945_109#" 479.458
+cap "a_399_109#" "a_447_531#" 6.25956
+cap "a_n1137_727#" "a_n1137_109#" 12.3196
+cap "a_255_n705#" "a_351_n1215#" 14.1667
+cap "a_n993_21#" "a_n897_531#" 14.1667
+cap "a_n177_109#" "a_n81_109#" 479.458
+cap "a_n465_109#" "a_n417_21#" 6.25956
+cap "a_n753_727#" "a_n657_727#" 479.458
+cap "a_159_1149#" "a_207_727#" 6.25956
+cap "a_399_109#" "a_399_n509#" 12.3196
+cap "a_831_n705#" "a_831_n597#" 86.2066
+cap "a_n321_n597#" "a_n273_n509#" 6.25956
+cap "a_n225_n87#" "a_n177_n509#" 6.25956
+cap "a_n801_n87#" "a_n849_n509#" 6.25956
+cap "a_879_109#" "a_975_109#" 479.458
+cap "a_n945_109#" "a_n993_21#" 6.25956
+cap "a_447_n705#" "a_543_n1215#" 14.1667
+cap "a_n705_n705#" "a_n609_n1215#" 14.1667
+cap "a_n1089_531#" "a_n1089_n597#" 6.73951
+cap "a_879_n1127#" "a_975_n1127#" 479.458
+cap "a_n1089_531#" "a_n1041_109#" 6.25956
+cap "a_n801_1149#" "a_n993_1149#" 28.5878
+cap "a_591_109#" "a_639_531#" 6.25956
+cap "a_1119_n1215#" "a_1071_n1127#" 6.25956
+cap "a_879_n509#" "a_879_109#" 12.3196
+cap "a_n465_n1127#" "a_n369_n1127#" 479.458
+cap "a_n753_109#" "a_n753_n509#" 12.3196
+cap "a_n657_n1127#" "a_n657_n509#" 12.3196
+cap "a_n1089_531#" "a_n993_21#" 14.1667
+cap "a_n561_n509#" "a_n561_n1127#" 12.3196
+cap "a_n33_21#" "a_n81_109#" 6.25956
+cap "a_n1229_109#" "a_n1185_21#" 6.25956
+cap "a_n945_727#" "a_n993_1149#" 6.25956
+cap "a_255_n597#" "a_63_n597#" 28.5878
+cap "a_n945_n1127#" "a_n849_n1127#" 479.458
+cap "a_255_n705#" "a_303_n1127#" 6.25956
+cap "a_591_n509#" "a_639_n597#" 6.25956
+cap "a_687_n509#" "a_687_n1127#" 12.3196
+cap "a_n1229_n509#" "a_n1185_n87#" 6.25956
+cap "a_111_109#" "a_111_n509#" 12.3196
+cap "a_n705_n705#" "a_n705_n597#" 86.2066
+cap "a_n993_n87#" "a_n897_n597#" 14.1667
+cap "a_n129_531#" "a_n129_n597#" 6.73951
+cap "a_n465_109#" "a_n561_109#" 479.458
+cap "a_735_1149#" "a_639_639#" 14.1667
+cap "a_351_n1215#" "a_399_n1127#" 6.25956
+cap "a_447_n705#" "a_495_n1127#" 6.25956
+cap "a_n1041_727#" "a_n993_1149#" 6.25956
+cap "a_831_n705#" "a_783_n1127#" 6.25956
+cap "a_n513_639#" "a_n465_727#" 6.25956
+cap "a_255_531#" "a_351_21#" 14.1667
+cap "a_207_727#" "a_303_727#" 479.458
+cap "a_543_21#" "a_351_21#" 28.5878
+cap "a_927_21#" "a_975_109#" 6.25956
+cap "a_975_109#" "a_1071_109#" 479.458
+cap "a_n1089_531#" "a_n1089_639#" 86.2066
+cap "a_n273_n1127#" "a_n225_n1215#" 6.25956
+cap "a_n177_n1127#" "a_n129_n705#" 6.25956
+cap "a_n1185_n87#" "a_n1137_n509#" 6.25956
+cap "a_1167_109#" "a_1119_21#" 6.25956
+cap "a_303_727#" "a_399_727#" 479.458
+cap "a_687_n509#" "a_735_n87#" 6.25956
+cap "a_n705_531#" "a_n657_109#" 6.25956
+cap "a_735_n1215#" "a_927_n1215#" 28.5878
+cap "a_n1041_727#" "a_n1137_727#" 479.458
+cap "a_n705_531#" "a_n705_639#" 86.2066
+cap "a_975_n509#" "a_975_109#" 12.3196
+cap "a_63_531#" "a_15_109#" 6.25956
+cap "a_n1185_n87#" "a_n1185_n1215#" 6.73951
+cap "a_n897_n597#" "a_n945_n509#" 6.25956
+cap "a_n1089_n597#" "a_n1137_n509#" 6.25956
+cap "a_n993_n87#" "a_n1041_n509#" 6.25956
+cap "a_831_531#" "a_783_109#" 6.25956
+cap "a_n513_639#" "a_n321_639#" 28.5878
+cap "a_n561_n509#" "a_n657_n509#" 479.458
+cap "a_1167_727#" "a_1167_109#" 12.3196
+cap "a_447_n597#" "a_639_n597#" 28.5878
+cap "a_1071_109#" "a_1119_21#" 6.25956
+cap "a_495_n509#" "a_495_109#" 12.3196
+cap "a_n897_639#" "a_n849_727#" 6.25956
+cap "a_447_n597#" "a_447_531#" 6.73951
+cap "a_879_n509#" "a_975_n509#" 479.458
+cap "a_n465_n509#" "a_n513_n597#" 6.25956
+cap "a_n369_n509#" "a_n417_n87#" 6.25956
+cap "a_975_109#" "a_975_727#" 12.3196
+cap "a_n513_n705#" "a_n609_n1215#" 14.1667
+cap "a_927_21#" "a_1119_21#" 28.5878
+cap "a_303_n1127#" "a_399_n1127#" 479.458
+cap "a_n321_n705#" "a_n225_n1215#" 14.1667
+cap "a_735_1149#" "a_735_21#" 6.73951
+cap "a_447_n597#" "a_399_n509#" 6.25956
+cap "a_63_n705#" "a_n33_n1215#" 14.1667
+cap "a_n897_n597#" "a_n897_531#" 6.73951
+cap "a_927_21#" "a_927_1149#" 6.73951
+cap "a_927_21#" "a_927_n87#" 86.2066
+cap "a_n897_n597#" "a_n705_n597#" 28.5878
+cap "a_303_109#" "a_303_n509#" 12.3196
+cap "a_255_n705#" "a_159_n1215#" 14.1667
+cap "a_351_n87#" "a_447_n597#" 14.1667
+cap "a_n225_n87#" "a_n321_n597#" 14.1667
+cap "a_351_1149#" "a_543_1149#" 28.5878
+cap "a_n609_21#" "a_n657_109#" 6.25956
+cap "a_n129_531#" "a_63_531#" 28.5878
+cap "a_n801_1149#" "a_n609_1149#" 28.5878
+cap "a_159_n87#" "a_159_n1215#" 6.73951
+cap "a_879_n509#" "a_831_n597#" 6.25956
+cap "a_975_n509#" "a_927_n87#" 6.25956
+cap "a_735_n1215#" "a_687_n1127#" 6.25956
+cap "a_n849_n1127#" "a_n801_n1215#" 6.25956
+cap "a_n1041_n509#" "a_n945_n509#" 479.458
+cap "a_1167_727#" "a_1071_727#" 479.458
+cap "a_15_727#" "a_15_109#" 12.3196
+cap "a_63_639#" "a_n33_1149#" 14.1667
+cap "a_n465_109#" "a_n369_109#" 479.458
+cap "a_n657_109#" "a_n561_109#" 479.458
+cap "a_447_n705#" "a_351_n1215#" 14.1667
+cap "a_n705_n705#" "a_n801_n1215#" 14.1667
+cap "a_783_n1127#" "a_879_n1127#" 479.458
+cap "a_n465_n509#" "a_n465_109#" 12.3196
+cap "a_927_1149#" "a_975_727#" 6.25956
+cap "a_n609_n87#" "a_n609_n1215#" 6.73951
+cap "a_351_1149#" "a_159_1149#" 28.5878
+cap "a_n1089_639#" "a_n1185_1149#" 14.1667
+cap "a_639_n705#" "a_639_n597#" 86.2066
+cap "a_n993_21#" "a_n801_21#" 28.5878
+cap "a_1167_n509#" "a_1167_n1127#" 12.3196
+cap "a_n225_21#" "a_n321_531#" 14.1667
+cap "a_n513_639#" "a_n705_639#" 28.5878
+cap "a_927_n1215#" "a_975_n1127#" 6.25956
+cap "a_1023_n705#" "a_1071_n1127#" 6.25956
+cap "a_n225_21#" "a_n177_109#" 6.25956
+cap "a_447_639#" "a_399_727#" 6.25956
+cap "a_n465_109#" "a_n465_727#" 12.3196
+cap "a_n561_n1127#" "a_n465_n1127#" 479.458
+cap "a_783_109#" "a_735_21#" 6.25956
+cap "a_687_109#" "a_783_109#" 479.458
+cap "a_15_n1127#" "a_n33_n1215#" 6.25956
+cap "a_n753_n1127#" "a_n753_n509#" 12.3196
+cap "a_783_n509#" "a_783_109#" 12.3196
+cap "a_207_109#" "a_159_21#" 6.25956
+cap "a_495_727#" "a_495_109#" 12.3196
+cap "a_927_n87#" "a_831_n597#" 14.1667
+cap "a_n753_109#" "a_n657_109#" 479.458
+cap "a_735_n1215#" "a_735_n87#" 6.73951
+cap "a_63_531#" "a_159_21#" 14.1667
+cap "a_n609_1149#" "a_n705_639#" 14.1667
+cap "a_207_727#" "a_255_639#" 6.25956
+cap "a_351_n87#" "a_159_n87#" 28.5878
+cap "a_n1041_n1127#" "a_n945_n1127#" 479.458
+cap "a_n705_531#" "a_n897_531#" 28.5878
+cap "a_n993_n1215#" "a_n1041_n1127#" 6.25956
+cap "a_n897_n705#" "a_n945_n1127#" 6.25956
+cap "a_591_n509#" "a_591_n1127#" 12.3196
+cap "a_n897_n705#" "a_n993_n1215#" 14.1667
+cap "a_n705_531#" "a_n705_n597#" 6.73951
+cap "a_n801_n87#" "a_n897_n597#" 14.1667
+cap "a_831_531#" "a_831_639#" 86.2066
+cap "a_n609_n87#" "a_n705_n597#" 14.1667
+cap "a_975_109#" "a_1023_531#" 6.25956
+cap "a_879_109#" "a_879_727#" 12.3196
+cap "a_n225_21#" "a_n33_21#" 28.5878
+cap "a_15_727#" "a_n81_727#" 479.458
+cap "a_159_n87#" "a_159_21#" 86.2066
+cap "a_255_n597#" "a_255_531#" 6.73951
+cap "a_447_531#" "a_351_21#" 14.1667
+cap "a_n561_n1127#" "a_n513_n705#" 6.25956
+cap "a_n177_n509#" "a_n129_n597#" 6.25956
+cap "a_n1229_n509#" "a_n1229_n1127#" 12.3196
+cap "a_n81_n509#" "a_n33_n87#" 6.25956
+cap "a_831_639#" "a_639_639#" 28.5878
+cap "a_n129_639#" "a_63_639#" 28.5878
+cap "a_831_n705#" "a_1023_n705#" 28.5878
+cap "a_n849_109#" "a_n897_531#" 6.25956
+cap "a_351_1149#" "a_303_727#" 6.25956
+cap "a_399_n509#" "a_399_n1127#" 12.3196
+cap "a_n1229_n509#" "a_n1229_109#" 12.3196
+cap "a_591_109#" "a_591_727#" 12.3196
+cap "a_n33_21#" "a_15_109#" 6.25956
+cap "a_351_n87#" "a_351_21#" 86.2066
+cap "a_n945_109#" "a_n849_109#" 479.458
+cap "a_735_n1215#" "a_543_n1215#" 28.5878
+cap "a_n129_531#" "a_n321_531#" 28.5878
+cap "a_n129_531#" "a_n177_109#" 6.25956
+cap "a_495_109#" "a_543_21#" 6.25956
+cap "a_1023_531#" "a_1119_21#" 14.1667
+cap "a_975_n509#" "a_1023_n597#" 6.25956
+cap "a_1071_n509#" "a_1119_n87#" 6.25956
+cap "a_15_109#" "a_111_109#" 479.458
+cap "a_399_109#" "a_399_727#" 12.3196
+cap "a_n1229_n1127#" "a_n1137_n1127#" 479.458
+cap "a_n177_727#" "a_n81_727#" 479.458
+cap "a_207_n1127#" "a_303_n1127#" 479.458
+cap "a_n1229_n1127#" "a_n1185_n1215#" 6.25956
+cap "a_n81_n509#" "a_n81_109#" 12.3196
+cap "a_159_21#" "a_351_21#" 28.5878
+cap "a_879_n509#" "a_783_n509#" 479.458
+cap "a_n321_n597#" "a_n369_n509#" 6.25956
+cap "a_399_109#" "a_351_21#" 6.25956
+cap "a_n129_n705#" "a_n33_n1215#" 14.1667
+cap "a_1119_1149#" "a_1119_21#" 6.73951
+cap "a_n33_n87#" "a_63_n597#" 14.1667
+cap "a_n273_109#" "a_n321_531#" 6.25956
+cap "a_n801_n87#" "a_n609_n87#" 28.5878
+cap "a_927_1149#" "a_1119_1149#" 28.5878
+cap "a_159_1149#" "a_63_639#" 14.1667
+cap "a_207_109#" "a_207_n509#" 12.3196
+cap "a_n273_109#" "a_n177_109#" 479.458
+cap "a_n1089_n597#" "a_n1185_n87#" 14.1667
+cap "a_63_n705#" "a_159_n1215#" 14.1667
+cap "a_n225_21#" "a_n417_21#" 28.5878
+cap "a_n1089_639#" "a_n897_639#" 28.5878
+cap "a_591_727#" "a_687_727#" 479.458
+cap "a_1023_n597#" "a_831_n597#" 28.5878
+cap "a_543_n87#" "a_735_n87#" 28.5878
+cap "a_n129_531#" "a_n33_21#" 14.1667
+cap "a_n1185_1149#" "a_n993_1149#" 28.5878
+cap "a_n705_n705#" "a_n657_n1127#" 6.25956
+cap "a_n1137_n509#" "a_n1041_n509#" 479.458
+cap "a_207_727#" "a_111_727#" 479.458
+cap "a_15_727#" "a_111_727#" 479.458
+cap "a_n369_727#" "a_n417_1149#" 6.25956
+cap "a_591_109#" "a_543_21#" 6.25956
+cap "a_n1185_21#" "a_n1137_109#" 6.25956
+cap "a_1167_727#" "a_1119_1149#" 6.25956
+cap "a_n897_n705#" "a_n801_n1215#" 14.1667
+cap "a_1167_n509#" "a_1167_109#" 12.3196
+cap "a_n273_727#" "a_n321_639#" 6.25956
+cap "a_543_21#" "a_639_531#" 14.1667
+cap "a_n177_727#" "a_n225_1149#" 6.25956
+cap "a_n1137_727#" "a_n1185_1149#" 6.25956
+cap "a_n129_639#" "a_n321_639#" 28.5878
+cap "a_543_n1215#" "a_495_n1127#" 6.25956
+cap "a_639_n705#" "a_591_n1127#" 6.25956
+cap "a_1071_n509#" "a_1071_n1127#" 12.3196
+cap "a_63_n597#" "a_111_n509#" 6.25956
+cap "a_159_n87#" "a_207_n509#" 6.25956
+cap "a_1023_639#" "a_1071_727#" 6.25956
+cap "a_879_727#" "a_975_727#" 479.458
+cap "a_n129_639#" "a_n33_1149#" 14.1667
+cap "a_n369_n1127#" "a_n417_n1215#" 6.25956
+cap "a_n273_n1127#" "a_n321_n705#" 6.25956
+cap "a_n849_n1127#" "a_n849_n509#" 12.3196
+cap "a_351_1149#" "a_447_639#" 14.1667
+cap "a_n225_1149#" "a_n417_1149#" 28.5878
+cap "a_n1041_109#" "a_n993_21#" 6.25956
+cap "a_927_n1215#" "a_1119_n1215#" 28.5878
+cap "a_n33_21#" "a_159_21#" 28.5878
+cap "a_n801_1149#" "a_n705_639#" 14.1667
+cap "a_n1137_n1127#" "a_n1041_n1127#" 479.458
+cap "a_n705_n597#" "a_n753_n509#" 6.25956
+cap "a_n609_n87#" "a_n657_n509#" 6.25956
+cap "a_n561_727#" "a_n657_727#" 479.458
+cap "a_63_n705#" "a_111_n1127#" 6.25956
+cap "a_495_n509#" "a_495_n1127#" 12.3196
+cap "a_n753_109#" "a_n753_727#" 12.3196
+cap "a_n705_n597#" "a_n513_n597#" 28.5878
+cap "a_159_21#" "a_111_109#" 6.25956
+cap "a_n1089_n705#" "a_n993_n1215#" 14.1667
+cap "a_543_n87#" "a_543_n1215#" 6.73951
+cap "a_n321_n597#" "a_n129_n597#" 28.5878
+cap "a_831_531#" "a_639_531#" 28.5878
+cap "a_1023_639#" "a_975_727#" 6.25956
+cap "a_351_1149#" "a_255_639#" 14.1667
+cap "a_159_n1215#" "a_207_n1127#" 6.25956
+cap "a_639_531#" "a_639_639#" 86.2066
+cap "a_n1041_727#" "a_n945_727#" 479.458
+cap "a_735_n87#" "a_831_n597#" 14.1667
+cap "a_n705_531#" "a_n801_21#" 14.1667
+cap "a_n609_n1215#" "a_n417_n1215#" 28.5878
+cap "a_1023_n597#" "a_1023_531#" 6.73951
+cap "a_159_1149#" "a_n33_1149#" 28.5878
+cap "a_495_n509#" "a_543_n87#" 6.25956
+cap "a_303_109#" "a_255_531#" 6.25956
+cap "a_207_727#" "a_207_109#" 12.3196
+cap "a_303_n509#" "a_303_n1127#" 12.3196
+cap "a_n321_n597#" "a_n417_n87#" 14.1667
+cap "a_n81_n1127#" "a_15_n1127#" 479.458
+cap "a_15_n509#" "a_15_n1127#" 12.3196
+cap "a_351_n87#" "a_255_n597#" 14.1667
+cap "a_831_n705#" "a_639_n705#" 28.5878
+cap "a_783_n1127#" "a_687_n1127#" 479.458
+cap "a_495_109#" "a_447_531#" 6.25956
+cap "a_15_n1127#" "a_111_n1127#" 479.458
+cap "a_n849_109#" "a_n801_21#" 6.25956
+cap "a_639_639#" "a_687_727#" 6.25956
+cap "a_111_727#" "a_111_109#" 12.3196
+cap "a_n897_n597#" "a_n849_n509#" 6.25956
+cap "a_n801_n87#" "a_n753_n509#" 6.25956
+cap "a_303_727#" "a_303_109#" 12.3196
+cap "a_351_n1215#" "a_543_n1215#" 28.5878
+cap "a_927_21#" "a_879_109#" 6.25956
+cap "a_111_n1127#" "a_207_n1127#" 479.458
+cap "a_591_109#" "a_687_109#" 479.458
+cap "a_n177_n509#" "a_n177_109#" 12.3196
+cap "a_n33_n87#" "a_n33_n1215#" 6.73951
+cap "a_n897_639#" "a_n993_1149#" 14.1667
+cap "a_687_109#" "a_687_n509#" 12.3196
+cap "a_n129_n705#" "a_n225_n1215#" 14.1667
+cap "a_687_n509#" "a_783_n509#" 479.458
+cap "a_687_109#" "a_639_531#" 6.25956
+cap "a_1119_n87#" "a_1119_21#" 86.2066
+cap "a_n609_21#" "a_n801_21#" 28.5878
+cap "a_735_21#" "a_639_531#" 14.1667
+cap "a_1119_n1215#" "a_1167_n1127#" 6.25956
+cap "a_n1089_531#" "a_n1137_109#" 6.25956
+cap "a_1167_109#" "a_1071_109#" 479.458
+cap "a_1119_n87#" "a_927_n87#" 28.5878
+cap "a_687_n509#" "a_639_n597#" 6.25956
+cap "a_1023_639#" "a_1023_531#" 86.2066
+cap "a_399_109#" "a_495_109#" 479.458
+cap "a_n849_109#" "a_n849_727#" 12.3196
+cap "a_n321_n597#" "a_n321_n705#" 86.2066
+cap "a_639_531#" "a_639_n597#" 6.73951
+cap "a_543_1149#" "a_495_727#" 6.25956
+cap "a_447_531#" "a_639_531#" 28.5878
+cap "a_591_727#" "a_495_727#" 479.458
+cap "a_543_1149#" "a_591_727#" 6.25956
+cap "a_n1089_n597#" "a_n897_n597#" 28.5878
+cap "a_n753_109#" "a_n801_21#" 6.25956
+cap "a_687_109#" "a_687_727#" 12.3196
+cap "a_975_n509#" "a_975_n1127#" 12.3196
+cap "a_n753_n509#" "a_n657_n509#" 479.458
+cap "a_255_639#" "a_63_639#" 28.5878
+cap "a_1023_639#" "a_1119_1149#" 14.1667
+cap "a_735_n1215#" "a_783_n1127#" 6.25956
+cap "a_831_n705#" "a_879_n1127#" 6.25956
+cap "a_n177_n1127#" "a_n225_n1215#" 6.25956
+cap "a_n81_n1127#" "a_n129_n705#" 6.25956
+cap "a_n945_109#" "a_n945_727#" 12.3196
+cap "a_735_21#" "a_735_n87#" 86.2066
+cap "a_n33_21#" "a_63_531#" 14.1667
+cap "a_783_n509#" "a_735_n87#" 6.25956
+cap "a_1071_727#" "a_1071_109#" 12.3196
+cap "a_1023_n705#" "a_927_n1215#" 14.1667
+cap "a_n1089_n705#" "a_n1137_n1127#" 6.25956
+cap "a_207_109#" "a_111_109#" 479.458
+cap "a_n801_1149#" "a_n753_727#" 6.25956
+cap "a_63_531#" "a_111_109#" 6.25956
+cap "a_n1229_727#" "a_n1185_1149#" 6.25956
+cap "a_n1089_n705#" "a_n1185_n1215#" 14.1667
+cap "a_n609_n87#" "a_n417_n87#" 28.5878
+cap "a_447_n597#" "a_447_n705#" 86.2066
+cap "a_n225_n87#" "a_n33_n87#" 28.5878
+cap "a_303_n509#" "a_399_n509#" 479.458
+cap "a_n417_21#" "a_n417_n87#" 86.2066
+cap "a_831_531#" "a_879_109#" 6.25956
+cap "a_n1089_n597#" "a_n1041_n509#" 6.25956
+cap "a_n993_n87#" "a_n945_n509#" 6.25956
+cap "a_735_n87#" "a_639_n597#" 14.1667
+cap "a_n1041_109#" "a_n1041_n509#" 12.3196
+cap "a_n849_109#" "a_n849_n509#" 12.3196
+cap "a_n513_n705#" "a_n321_n705#" 28.5878
+cap "a_1023_n597#" "a_1023_n705#" 86.2066
+cap "a_255_n597#" "a_207_n509#" 6.25956
+cap "a_351_n87#" "a_303_n509#" 6.25956
+cap "a_n417_n1215#" "a_n225_n1215#" 28.5878
+cap "a_543_n87#" "a_543_21#" 86.2066
+cap "a_n993_21#" "a_n993_1149#" 6.73951
+cap "a_n1137_n509#" "a_n1137_109#" 12.3196
+cap "a_1071_727#" "a_975_727#" 479.458
+cap "a_63_n705#" "a_255_n705#" 28.5878
+cap "a_n561_n509#" "a_n609_n87#" 6.25956
+cap "a_543_1149#" "a_543_21#" 6.73951
+cap "a_207_n509#" "a_207_n1127#" 12.3196
+cap "a_n993_n87#" "a_n993_n1215#" 6.73951
+cap "a_735_1149#" "a_831_639#" 14.1667
+cap "a_n81_n509#" "a_n81_n1127#" 12.3196
+cap "a_n81_n509#" "a_15_n509#" 479.458
+cap "a_n177_n1127#" "a_n81_n1127#" 479.458
+cap "a_n705_639#" "a_n753_727#" 6.25956
+cap "a_n321_n597#" "a_n321_531#" 6.73951
+cap "a_n1089_531#" "a_n1185_21#" 14.1667
+cap "a_255_n705#" "a_447_n705#" 28.5878
+cap "a_255_n597#" "a_447_n597#" 28.5878
+cap "a_n369_n509#" "a_n369_109#" 12.3196
+cap "a_n177_727#" "a_n177_109#" 12.3196
+cap "a_1119_n87#" "a_1023_n597#" 14.1667
+cap "a_735_1149#" "a_927_1149#" 28.5878
+cap "a_n465_n509#" "a_n369_n509#" 479.458
+cap "a_n273_109#" "a_n369_109#" 479.458
+cap "a_n753_n1127#" "a_n801_n1215#" 6.25956
+cap "a_n369_727#" "a_n369_109#" 12.3196
+cap "a_n225_n87#" "a_n273_n509#" 6.25956
+cap "a_447_n705#" "a_639_n705#" 28.5878
+cap "a_n705_n705#" "a_n513_n705#" 28.5878
+cap "a_n129_n597#" "a_n129_n705#" 86.2066
+cap "a_n1089_639#" "a_n993_1149#" 14.1667
+cap "a_591_109#" "a_591_n509#" 12.3196
+cap "a_591_n509#" "a_687_n509#" 479.458
+cap "a_n369_727#" "a_n465_727#" 479.458
+cap "a_n945_n1127#" "a_n945_n509#" 12.3196
+cap "a_831_531#" "a_927_21#" 14.1667
+cap "a_543_1149#" "a_639_639#" 14.1667
+cap "a_591_727#" "a_639_639#" 6.25956
+cap "a_63_639#" "a_111_727#" 6.25956
+cap "a_255_n597#" "a_255_n705#" 86.2066
+cap "a_399_109#" "a_303_109#" 479.458
+cap "a_n945_109#" "a_n945_n509#" 12.3196
+cap "a_n1089_639#" "a_n1137_727#" 6.25956
+cap "a_15_n509#" "a_63_n597#" 6.25956
+cap "a_735_1149#" "a_783_727#" 6.25956
+cap "a_n81_727#" "a_n33_1149#" 6.25956
+cap "a_255_n597#" "a_159_n87#" 14.1667
+cap "a_n561_n509#" "a_n561_109#" 12.3196
+cap "a_n993_n1215#" "a_n945_n1127#" 6.25956
+cap "a_255_n705#" "a_207_n1127#" 6.25956
+cap "a_n897_n705#" "a_n849_n1127#" 6.25956
+cap "a_n609_1149#" "a_n657_727#" 6.25956
+cap "a_n897_n705#" "a_n705_n705#" 28.5878
+cap "a_15_109#" "a_n81_109#" 479.458
+cap "a_n945_109#" "a_n897_531#" 6.25956
+cap "a_n993_n87#" "a_n801_n87#" 28.5878
+cap "a_495_n509#" "a_399_n509#" 479.458
+cap "a_n369_727#" "a_n321_639#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8 1137 -1127 1138 -1126 l=30 w=400 "a_n1331_n1301#" "a_1119_n1215#" 60 0 "a_1071_n1127#" 400 0 "a_1167_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 -1127 1042 -1126 l=30 w=400 "a_n1331_n1301#" "a_1023_n705#" 60 0 "a_975_n1127#" 400 0 "a_1071_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 -1127 946 -1126 l=30 w=400 "a_n1331_n1301#" "a_927_n1215#" 60 0 "a_879_n1127#" 400 0 "a_975_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 -1127 850 -1126 l=30 w=400 "a_n1331_n1301#" "a_831_n705#" 60 0 "a_783_n1127#" 400 0 "a_879_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 -1127 754 -1126 l=30 w=400 "a_n1331_n1301#" "a_735_n1215#" 60 0 "a_687_n1127#" 400 0 "a_783_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 -1127 658 -1126 l=30 w=400 "a_n1331_n1301#" "a_639_n705#" 60 0 "a_591_n1127#" 400 0 "a_687_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 -1127 562 -1126 l=30 w=400 "a_n1331_n1301#" "a_543_n1215#" 60 0 "a_495_n1127#" 400 0 "a_591_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 -1127 466 -1126 l=30 w=400 "a_n1331_n1301#" "a_447_n705#" 60 0 "a_399_n1127#" 400 0 "a_495_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 -1127 370 -1126 l=30 w=400 "a_n1331_n1301#" "a_351_n1215#" 60 0 "a_303_n1127#" 400 0 "a_399_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 -1127 274 -1126 l=30 w=400 "a_n1331_n1301#" "a_255_n705#" 60 0 "a_207_n1127#" 400 0 "a_303_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 -1127 178 -1126 l=30 w=400 "a_n1331_n1301#" "a_159_n1215#" 60 0 "a_111_n1127#" 400 0 "a_207_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 -1127 82 -1126 l=30 w=400 "a_n1331_n1301#" "a_63_n705#" 60 0 "a_15_n1127#" 400 0 "a_111_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -1127 -14 -1126 l=30 w=400 "a_n1331_n1301#" "a_n33_n1215#" 60 0 "a_n81_n1127#" 400 0 "a_15_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -1127 -110 -1126 l=30 w=400 "a_n1331_n1301#" "a_n129_n705#" 60 0 "a_n177_n1127#" 400 0 "a_n81_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -1127 -206 -1126 l=30 w=400 "a_n1331_n1301#" "a_n225_n1215#" 60 0 "a_n273_n1127#" 400 0 "a_n177_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 -1127 -302 -1126 l=30 w=400 "a_n1331_n1301#" "a_n321_n705#" 60 0 "a_n369_n1127#" 400 0 "a_n273_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 -1127 -398 -1126 l=30 w=400 "a_n1331_n1301#" "a_n417_n1215#" 60 0 "a_n465_n1127#" 400 0 "a_n369_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 -1127 -494 -1126 l=30 w=400 "a_n1331_n1301#" "a_n513_n705#" 60 0 "a_n561_n1127#" 400 0 "a_n465_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 -1127 -590 -1126 l=30 w=400 "a_n1331_n1301#" "a_n609_n1215#" 60 0 "a_n657_n1127#" 400 0 "a_n561_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 -1127 -686 -1126 l=30 w=400 "a_n1331_n1301#" "a_n705_n705#" 60 0 "a_n753_n1127#" 400 0 "a_n657_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 -1127 -782 -1126 l=30 w=400 "a_n1331_n1301#" "a_n801_n1215#" 60 0 "a_n849_n1127#" 400 0 "a_n753_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 -1127 -878 -1126 l=30 w=400 "a_n1331_n1301#" "a_n897_n705#" 60 0 "a_n945_n1127#" 400 0 "a_n849_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 -1127 -974 -1126 l=30 w=400 "a_n1331_n1301#" "a_n993_n1215#" 60 0 "a_n1041_n1127#" 400 0 "a_n945_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 -1127 -1070 -1126 l=30 w=400 "a_n1331_n1301#" "a_n1089_n705#" 60 0 "a_n1137_n1127#" 400 0 "a_n1041_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 -1127 -1166 -1126 l=30 w=400 "a_n1331_n1301#" "a_n1185_n1215#" 60 0 "a_n1229_n1127#" 400 0 "a_n1137_n1127#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1137 -509 1138 -508 l=30 w=400 "a_n1331_n1301#" "a_1119_n87#" 60 0 "a_1071_n509#" 400 0 "a_1167_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 -509 1042 -508 l=30 w=400 "a_n1331_n1301#" "a_1023_n597#" 60 0 "a_975_n509#" 400 0 "a_1071_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 -509 946 -508 l=30 w=400 "a_n1331_n1301#" "a_927_n87#" 60 0 "a_879_n509#" 400 0 "a_975_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 -509 850 -508 l=30 w=400 "a_n1331_n1301#" "a_831_n597#" 60 0 "a_783_n509#" 400 0 "a_879_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 -509 754 -508 l=30 w=400 "a_n1331_n1301#" "a_735_n87#" 60 0 "a_687_n509#" 400 0 "a_783_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 -509 658 -508 l=30 w=400 "a_n1331_n1301#" "a_639_n597#" 60 0 "a_591_n509#" 400 0 "a_687_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 -509 562 -508 l=30 w=400 "a_n1331_n1301#" "a_543_n87#" 60 0 "a_495_n509#" 400 0 "a_591_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 -509 466 -508 l=30 w=400 "a_n1331_n1301#" "a_447_n597#" 60 0 "a_399_n509#" 400 0 "a_495_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 -509 370 -508 l=30 w=400 "a_n1331_n1301#" "a_351_n87#" 60 0 "a_303_n509#" 400 0 "a_399_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 -509 274 -508 l=30 w=400 "a_n1331_n1301#" "a_255_n597#" 60 0 "a_207_n509#" 400 0 "a_303_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 -509 178 -508 l=30 w=400 "a_n1331_n1301#" "a_159_n87#" 60 0 "a_111_n509#" 400 0 "a_207_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 -509 82 -508 l=30 w=400 "a_n1331_n1301#" "a_63_n597#" 60 0 "a_15_n509#" 400 0 "a_111_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -509 -14 -508 l=30 w=400 "a_n1331_n1301#" "a_n33_n87#" 60 0 "a_n81_n509#" 400 0 "a_15_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -509 -110 -508 l=30 w=400 "a_n1331_n1301#" "a_n129_n597#" 60 0 "a_n177_n509#" 400 0 "a_n81_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -509 -206 -508 l=30 w=400 "a_n1331_n1301#" "a_n225_n87#" 60 0 "a_n273_n509#" 400 0 "a_n177_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 -509 -302 -508 l=30 w=400 "a_n1331_n1301#" "a_n321_n597#" 60 0 "a_n369_n509#" 400 0 "a_n273_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 -509 -398 -508 l=30 w=400 "a_n1331_n1301#" "a_n417_n87#" 60 0 "a_n465_n509#" 400 0 "a_n369_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 -509 -494 -508 l=30 w=400 "a_n1331_n1301#" "a_n513_n597#" 60 0 "a_n561_n509#" 400 0 "a_n465_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 -509 -590 -508 l=30 w=400 "a_n1331_n1301#" "a_n609_n87#" 60 0 "a_n657_n509#" 400 0 "a_n561_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 -509 -686 -508 l=30 w=400 "a_n1331_n1301#" "a_n705_n597#" 60 0 "a_n753_n509#" 400 0 "a_n657_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 -509 -782 -508 l=30 w=400 "a_n1331_n1301#" "a_n801_n87#" 60 0 "a_n849_n509#" 400 0 "a_n753_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 -509 -878 -508 l=30 w=400 "a_n1331_n1301#" "a_n897_n597#" 60 0 "a_n945_n509#" 400 0 "a_n849_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 -509 -974 -508 l=30 w=400 "a_n1331_n1301#" "a_n993_n87#" 60 0 "a_n1041_n509#" 400 0 "a_n945_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 -509 -1070 -508 l=30 w=400 "a_n1331_n1301#" "a_n1089_n597#" 60 0 "a_n1137_n509#" 400 0 "a_n1041_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 -509 -1166 -508 l=30 w=400 "a_n1331_n1301#" "a_n1185_n87#" 60 0 "a_n1229_n509#" 400 0 "a_n1137_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1137 109 1138 110 l=30 w=400 "a_n1331_n1301#" "a_1119_21#" 60 0 "a_1071_109#" 400 0 "a_1167_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 109 1042 110 l=30 w=400 "a_n1331_n1301#" "a_1023_531#" 60 0 "a_975_109#" 400 0 "a_1071_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 109 946 110 l=30 w=400 "a_n1331_n1301#" "a_927_21#" 60 0 "a_879_109#" 400 0 "a_975_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 109 850 110 l=30 w=400 "a_n1331_n1301#" "a_831_531#" 60 0 "a_783_109#" 400 0 "a_879_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 109 754 110 l=30 w=400 "a_n1331_n1301#" "a_735_21#" 60 0 "a_687_109#" 400 0 "a_783_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 109 658 110 l=30 w=400 "a_n1331_n1301#" "a_639_531#" 60 0 "a_591_109#" 400 0 "a_687_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 109 562 110 l=30 w=400 "a_n1331_n1301#" "a_543_21#" 60 0 "a_495_109#" 400 0 "a_591_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 109 466 110 l=30 w=400 "a_n1331_n1301#" "a_447_531#" 60 0 "a_399_109#" 400 0 "a_495_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 109 370 110 l=30 w=400 "a_n1331_n1301#" "a_351_21#" 60 0 "a_303_109#" 400 0 "a_399_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 109 274 110 l=30 w=400 "a_n1331_n1301#" "a_255_531#" 60 0 "a_207_109#" 400 0 "a_303_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 109 178 110 l=30 w=400 "a_n1331_n1301#" "a_159_21#" 60 0 "a_111_109#" 400 0 "a_207_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 109 82 110 l=30 w=400 "a_n1331_n1301#" "a_63_531#" 60 0 "a_15_109#" 400 0 "a_111_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 109 -14 110 l=30 w=400 "a_n1331_n1301#" "a_n33_21#" 60 0 "a_n81_109#" 400 0 "a_15_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 109 -110 110 l=30 w=400 "a_n1331_n1301#" "a_n129_531#" 60 0 "a_n177_109#" 400 0 "a_n81_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 109 -206 110 l=30 w=400 "a_n1331_n1301#" "a_n225_21#" 60 0 "a_n273_109#" 400 0 "a_n177_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 109 -302 110 l=30 w=400 "a_n1331_n1301#" "a_n321_531#" 60 0 "a_n369_109#" 400 0 "a_n273_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 109 -398 110 l=30 w=400 "a_n1331_n1301#" "a_n417_21#" 60 0 "a_n465_109#" 400 0 "a_n369_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 109 -494 110 l=30 w=400 "a_n1331_n1301#" "a_n513_531#" 60 0 "a_n561_109#" 400 0 "a_n465_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 109 -590 110 l=30 w=400 "a_n1331_n1301#" "a_n609_21#" 60 0 "a_n657_109#" 400 0 "a_n561_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 109 -686 110 l=30 w=400 "a_n1331_n1301#" "a_n705_531#" 60 0 "a_n753_109#" 400 0 "a_n657_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 109 -782 110 l=30 w=400 "a_n1331_n1301#" "a_n801_21#" 60 0 "a_n849_109#" 400 0 "a_n753_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 109 -878 110 l=30 w=400 "a_n1331_n1301#" "a_n897_531#" 60 0 "a_n945_109#" 400 0 "a_n849_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 109 -974 110 l=30 w=400 "a_n1331_n1301#" "a_n993_21#" 60 0 "a_n1041_109#" 400 0 "a_n945_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 109 -1070 110 l=30 w=400 "a_n1331_n1301#" "a_n1089_531#" 60 0 "a_n1137_109#" 400 0 "a_n1041_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 109 -1166 110 l=30 w=400 "a_n1331_n1301#" "a_n1185_21#" 60 0 "a_n1229_109#" 400 0 "a_n1137_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1137 727 1138 728 l=30 w=400 "a_n1331_n1301#" "a_1119_1149#" 60 0 "a_1071_727#" 400 0 "a_1167_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1041 727 1042 728 l=30 w=400 "a_n1331_n1301#" "a_1023_639#" 60 0 "a_975_727#" 400 0 "a_1071_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 945 727 946 728 l=30 w=400 "a_n1331_n1301#" "a_927_1149#" 60 0 "a_879_727#" 400 0 "a_975_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 849 727 850 728 l=30 w=400 "a_n1331_n1301#" "a_831_639#" 60 0 "a_783_727#" 400 0 "a_879_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 753 727 754 728 l=30 w=400 "a_n1331_n1301#" "a_735_1149#" 60 0 "a_687_727#" 400 0 "a_783_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 657 727 658 728 l=30 w=400 "a_n1331_n1301#" "a_639_639#" 60 0 "a_591_727#" 400 0 "a_687_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 561 727 562 728 l=30 w=400 "a_n1331_n1301#" "a_543_1149#" 60 0 "a_495_727#" 400 0 "a_591_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 465 727 466 728 l=30 w=400 "a_n1331_n1301#" "a_447_639#" 60 0 "a_399_727#" 400 0 "a_495_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 369 727 370 728 l=30 w=400 "a_n1331_n1301#" "a_351_1149#" 60 0 "a_303_727#" 400 0 "a_399_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 273 727 274 728 l=30 w=400 "a_n1331_n1301#" "a_255_639#" 60 0 "a_207_727#" 400 0 "a_303_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 177 727 178 728 l=30 w=400 "a_n1331_n1301#" "a_159_1149#" 60 0 "a_111_727#" 400 0 "a_207_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 727 82 728 l=30 w=400 "a_n1331_n1301#" "a_63_639#" 60 0 "a_15_727#" 400 0 "a_111_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 727 -14 728 l=30 w=400 "a_n1331_n1301#" "a_n33_1149#" 60 0 "a_n81_727#" 400 0 "a_15_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 727 -110 728 l=30 w=400 "a_n1331_n1301#" "a_n129_639#" 60 0 "a_n177_727#" 400 0 "a_n81_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 727 -206 728 l=30 w=400 "a_n1331_n1301#" "a_n225_1149#" 60 0 "a_n273_727#" 400 0 "a_n177_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -303 727 -302 728 l=30 w=400 "a_n1331_n1301#" "a_n321_639#" 60 0 "a_n369_727#" 400 0 "a_n273_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -399 727 -398 728 l=30 w=400 "a_n1331_n1301#" "a_n417_1149#" 60 0 "a_n465_727#" 400 0 "a_n369_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -495 727 -494 728 l=30 w=400 "a_n1331_n1301#" "a_n513_639#" 60 0 "a_n561_727#" 400 0 "a_n465_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -591 727 -590 728 l=30 w=400 "a_n1331_n1301#" "a_n609_1149#" 60 0 "a_n657_727#" 400 0 "a_n561_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -687 727 -686 728 l=30 w=400 "a_n1331_n1301#" "a_n705_639#" 60 0 "a_n753_727#" 400 0 "a_n657_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -783 727 -782 728 l=30 w=400 "a_n1331_n1301#" "a_n801_1149#" 60 0 "a_n849_727#" 400 0 "a_n753_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -879 727 -878 728 l=30 w=400 "a_n1331_n1301#" "a_n897_639#" 60 0 "a_n945_727#" 400 0 "a_n849_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -975 727 -974 728 l=30 w=400 "a_n1331_n1301#" "a_n993_1149#" 60 0 "a_n1041_727#" 400 0 "a_n945_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1071 727 -1070 728 l=30 w=400 "a_n1331_n1301#" "a_n1089_639#" 60 0 "a_n1137_727#" 400 0 "a_n1041_727#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1167 727 -1166 728 l=30 w=400 "a_n1331_n1301#" "a_n1185_1149#" 60 0 "a_n1229_727#" 400 0 "a_n1137_727#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.mag b/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.mag
new file mode 100644
index 0000000..ecfa507
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_RRWALQ.mag
@@ -0,0 +1,3091 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -1181 1199 -1123 1205
+rect -989 1199 -931 1205
+rect -797 1199 -739 1205
+rect -605 1199 -547 1205
+rect -413 1199 -355 1205
+rect -221 1199 -163 1205
+rect -29 1199 29 1205
+rect 163 1199 221 1205
+rect 355 1199 413 1205
+rect 547 1199 605 1205
+rect 739 1199 797 1205
+rect 931 1199 989 1205
+rect 1123 1199 1181 1205
+rect -1181 1165 -1169 1199
+rect -989 1165 -977 1199
+rect -797 1165 -785 1199
+rect -605 1165 -593 1199
+rect -413 1165 -401 1199
+rect -221 1165 -209 1199
+rect -29 1165 -17 1199
+rect 163 1165 175 1199
+rect 355 1165 367 1199
+rect 547 1165 559 1199
+rect 739 1165 751 1199
+rect 931 1165 943 1199
+rect 1123 1165 1135 1199
+rect -1181 1159 -1123 1165
+rect -989 1159 -931 1165
+rect -797 1159 -739 1165
+rect -605 1159 -547 1165
+rect -413 1159 -355 1165
+rect -221 1159 -163 1165
+rect -29 1159 29 1165
+rect 163 1159 221 1165
+rect 355 1159 413 1165
+rect 547 1159 605 1165
+rect 739 1159 797 1165
+rect 931 1159 989 1165
+rect 1123 1159 1181 1165
+rect -1085 689 -1027 695
+rect -893 689 -835 695
+rect -701 689 -643 695
+rect -509 689 -451 695
+rect -317 689 -259 695
+rect -125 689 -67 695
+rect 67 689 125 695
+rect 259 689 317 695
+rect 451 689 509 695
+rect 643 689 701 695
+rect 835 689 893 695
+rect 1027 689 1085 695
+rect -1085 655 -1073 689
+rect -893 655 -881 689
+rect -701 655 -689 689
+rect -509 655 -497 689
+rect -317 655 -305 689
+rect -125 655 -113 689
+rect 67 655 79 689
+rect 259 655 271 689
+rect 451 655 463 689
+rect 643 655 655 689
+rect 835 655 847 689
+rect 1027 655 1039 689
+rect -1085 649 -1027 655
+rect -893 649 -835 655
+rect -701 649 -643 655
+rect -509 649 -451 655
+rect -317 649 -259 655
+rect -125 649 -67 655
+rect 67 649 125 655
+rect 259 649 317 655
+rect 451 649 509 655
+rect 643 649 701 655
+rect 835 649 893 655
+rect 1027 649 1085 655
+rect -1085 581 -1027 587
+rect -893 581 -835 587
+rect -701 581 -643 587
+rect -509 581 -451 587
+rect -317 581 -259 587
+rect -125 581 -67 587
+rect 67 581 125 587
+rect 259 581 317 587
+rect 451 581 509 587
+rect 643 581 701 587
+rect 835 581 893 587
+rect 1027 581 1085 587
+rect -1085 547 -1073 581
+rect -893 547 -881 581
+rect -701 547 -689 581
+rect -509 547 -497 581
+rect -317 547 -305 581
+rect -125 547 -113 581
+rect 67 547 79 581
+rect 259 547 271 581
+rect 451 547 463 581
+rect 643 547 655 581
+rect 835 547 847 581
+rect 1027 547 1039 581
+rect -1085 541 -1027 547
+rect -893 541 -835 547
+rect -701 541 -643 547
+rect -509 541 -451 547
+rect -317 541 -259 547
+rect -125 541 -67 547
+rect 67 541 125 547
+rect 259 541 317 547
+rect 451 541 509 547
+rect 643 541 701 547
+rect 835 541 893 547
+rect 1027 541 1085 547
+rect -1181 71 -1123 77
+rect -989 71 -931 77
+rect -797 71 -739 77
+rect -605 71 -547 77
+rect -413 71 -355 77
+rect -221 71 -163 77
+rect -29 71 29 77
+rect 163 71 221 77
+rect 355 71 413 77
+rect 547 71 605 77
+rect 739 71 797 77
+rect 931 71 989 77
+rect 1123 71 1181 77
+rect -1181 37 -1169 71
+rect -989 37 -977 71
+rect -797 37 -785 71
+rect -605 37 -593 71
+rect -413 37 -401 71
+rect -221 37 -209 71
+rect -29 37 -17 71
+rect 163 37 175 71
+rect 355 37 367 71
+rect 547 37 559 71
+rect 739 37 751 71
+rect 931 37 943 71
+rect 1123 37 1135 71
+rect -1181 31 -1123 37
+rect -989 31 -931 37
+rect -797 31 -739 37
+rect -605 31 -547 37
+rect -413 31 -355 37
+rect -221 31 -163 37
+rect -29 31 29 37
+rect 163 31 221 37
+rect 355 31 413 37
+rect 547 31 605 37
+rect 739 31 797 37
+rect 931 31 989 37
+rect 1123 31 1181 37
+rect -1181 -37 -1123 -31
+rect -989 -37 -931 -31
+rect -797 -37 -739 -31
+rect -605 -37 -547 -31
+rect -413 -37 -355 -31
+rect -221 -37 -163 -31
+rect -29 -37 29 -31
+rect 163 -37 221 -31
+rect 355 -37 413 -31
+rect 547 -37 605 -31
+rect 739 -37 797 -31
+rect 931 -37 989 -31
+rect 1123 -37 1181 -31
+rect -1181 -71 -1169 -37
+rect -989 -71 -977 -37
+rect -797 -71 -785 -37
+rect -605 -71 -593 -37
+rect -413 -71 -401 -37
+rect -221 -71 -209 -37
+rect -29 -71 -17 -37
+rect 163 -71 175 -37
+rect 355 -71 367 -37
+rect 547 -71 559 -37
+rect 739 -71 751 -37
+rect 931 -71 943 -37
+rect 1123 -71 1135 -37
+rect -1181 -77 -1123 -71
+rect -989 -77 -931 -71
+rect -797 -77 -739 -71
+rect -605 -77 -547 -71
+rect -413 -77 -355 -71
+rect -221 -77 -163 -71
+rect -29 -77 29 -71
+rect 163 -77 221 -71
+rect 355 -77 413 -71
+rect 547 -77 605 -71
+rect 739 -77 797 -71
+rect 931 -77 989 -71
+rect 1123 -77 1181 -71
+rect -1085 -547 -1027 -541
+rect -893 -547 -835 -541
+rect -701 -547 -643 -541
+rect -509 -547 -451 -541
+rect -317 -547 -259 -541
+rect -125 -547 -67 -541
+rect 67 -547 125 -541
+rect 259 -547 317 -541
+rect 451 -547 509 -541
+rect 643 -547 701 -541
+rect 835 -547 893 -541
+rect 1027 -547 1085 -541
+rect -1085 -581 -1073 -547
+rect -893 -581 -881 -547
+rect -701 -581 -689 -547
+rect -509 -581 -497 -547
+rect -317 -581 -305 -547
+rect -125 -581 -113 -547
+rect 67 -581 79 -547
+rect 259 -581 271 -547
+rect 451 -581 463 -547
+rect 643 -581 655 -547
+rect 835 -581 847 -547
+rect 1027 -581 1039 -547
+rect -1085 -587 -1027 -581
+rect -893 -587 -835 -581
+rect -701 -587 -643 -581
+rect -509 -587 -451 -581
+rect -317 -587 -259 -581
+rect -125 -587 -67 -581
+rect 67 -587 125 -581
+rect 259 -587 317 -581
+rect 451 -587 509 -581
+rect 643 -587 701 -581
+rect 835 -587 893 -581
+rect 1027 -587 1085 -581
+rect -1085 -655 -1027 -649
+rect -893 -655 -835 -649
+rect -701 -655 -643 -649
+rect -509 -655 -451 -649
+rect -317 -655 -259 -649
+rect -125 -655 -67 -649
+rect 67 -655 125 -649
+rect 259 -655 317 -649
+rect 451 -655 509 -649
+rect 643 -655 701 -649
+rect 835 -655 893 -649
+rect 1027 -655 1085 -649
+rect -1085 -689 -1073 -655
+rect -893 -689 -881 -655
+rect -701 -689 -689 -655
+rect -509 -689 -497 -655
+rect -317 -689 -305 -655
+rect -125 -689 -113 -655
+rect 67 -689 79 -655
+rect 259 -689 271 -655
+rect 451 -689 463 -655
+rect 643 -689 655 -655
+rect 835 -689 847 -655
+rect 1027 -689 1039 -655
+rect -1085 -695 -1027 -689
+rect -893 -695 -835 -689
+rect -701 -695 -643 -689
+rect -509 -695 -451 -689
+rect -317 -695 -259 -689
+rect -125 -695 -67 -689
+rect 67 -695 125 -689
+rect 259 -695 317 -689
+rect 451 -695 509 -689
+rect 643 -695 701 -689
+rect 835 -695 893 -689
+rect 1027 -695 1085 -689
+rect -1181 -1165 -1123 -1159
+rect -989 -1165 -931 -1159
+rect -797 -1165 -739 -1159
+rect -605 -1165 -547 -1159
+rect -413 -1165 -355 -1159
+rect -221 -1165 -163 -1159
+rect -29 -1165 29 -1159
+rect 163 -1165 221 -1159
+rect 355 -1165 413 -1159
+rect 547 -1165 605 -1159
+rect 739 -1165 797 -1159
+rect 931 -1165 989 -1159
+rect 1123 -1165 1181 -1159
+rect -1181 -1199 -1169 -1165
+rect -989 -1199 -977 -1165
+rect -797 -1199 -785 -1165
+rect -605 -1199 -593 -1165
+rect -413 -1199 -401 -1165
+rect -221 -1199 -209 -1165
+rect -29 -1199 -17 -1165
+rect 163 -1199 175 -1165
+rect 355 -1199 367 -1165
+rect 547 -1199 559 -1165
+rect 739 -1199 751 -1165
+rect 931 -1199 943 -1165
+rect 1123 -1199 1135 -1165
+rect -1181 -1205 -1123 -1199
+rect -989 -1205 -931 -1199
+rect -797 -1205 -739 -1199
+rect -605 -1205 -547 -1199
+rect -413 -1205 -355 -1199
+rect -221 -1205 -163 -1199
+rect -29 -1205 29 -1199
+rect 163 -1205 221 -1199
+rect 355 -1205 413 -1199
+rect 547 -1205 605 -1199
+rect 739 -1205 797 -1199
+rect 931 -1205 989 -1199
+rect 1123 -1205 1181 -1199
+<< pwell >>
+rect -1367 -1337 1367 1337
+<< nmos >>
+rect -1167 727 -1137 1127
+rect -1071 727 -1041 1127
+rect -975 727 -945 1127
+rect -879 727 -849 1127
+rect -783 727 -753 1127
+rect -687 727 -657 1127
+rect -591 727 -561 1127
+rect -495 727 -465 1127
+rect -399 727 -369 1127
+rect -303 727 -273 1127
+rect -207 727 -177 1127
+rect -111 727 -81 1127
+rect -15 727 15 1127
+rect 81 727 111 1127
+rect 177 727 207 1127
+rect 273 727 303 1127
+rect 369 727 399 1127
+rect 465 727 495 1127
+rect 561 727 591 1127
+rect 657 727 687 1127
+rect 753 727 783 1127
+rect 849 727 879 1127
+rect 945 727 975 1127
+rect 1041 727 1071 1127
+rect 1137 727 1167 1127
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+rect -1167 -1127 -1137 -727
+rect -1071 -1127 -1041 -727
+rect -975 -1127 -945 -727
+rect -879 -1127 -849 -727
+rect -783 -1127 -753 -727
+rect -687 -1127 -657 -727
+rect -591 -1127 -561 -727
+rect -495 -1127 -465 -727
+rect -399 -1127 -369 -727
+rect -303 -1127 -273 -727
+rect -207 -1127 -177 -727
+rect -111 -1127 -81 -727
+rect -15 -1127 15 -727
+rect 81 -1127 111 -727
+rect 177 -1127 207 -727
+rect 273 -1127 303 -727
+rect 369 -1127 399 -727
+rect 465 -1127 495 -727
+rect 561 -1127 591 -727
+rect 657 -1127 687 -727
+rect 753 -1127 783 -727
+rect 849 -1127 879 -727
+rect 945 -1127 975 -727
+rect 1041 -1127 1071 -727
+rect 1137 -1127 1167 -727
+<< ndiff >>
+rect -1229 1115 -1167 1127
+rect -1229 739 -1217 1115
+rect -1183 739 -1167 1115
+rect -1229 727 -1167 739
+rect -1137 1115 -1071 1127
+rect -1137 739 -1121 1115
+rect -1087 739 -1071 1115
+rect -1137 727 -1071 739
+rect -1041 1115 -975 1127
+rect -1041 739 -1025 1115
+rect -991 739 -975 1115
+rect -1041 727 -975 739
+rect -945 1115 -879 1127
+rect -945 739 -929 1115
+rect -895 739 -879 1115
+rect -945 727 -879 739
+rect -849 1115 -783 1127
+rect -849 739 -833 1115
+rect -799 739 -783 1115
+rect -849 727 -783 739
+rect -753 1115 -687 1127
+rect -753 739 -737 1115
+rect -703 739 -687 1115
+rect -753 727 -687 739
+rect -657 1115 -591 1127
+rect -657 739 -641 1115
+rect -607 739 -591 1115
+rect -657 727 -591 739
+rect -561 1115 -495 1127
+rect -561 739 -545 1115
+rect -511 739 -495 1115
+rect -561 727 -495 739
+rect -465 1115 -399 1127
+rect -465 739 -449 1115
+rect -415 739 -399 1115
+rect -465 727 -399 739
+rect -369 1115 -303 1127
+rect -369 739 -353 1115
+rect -319 739 -303 1115
+rect -369 727 -303 739
+rect -273 1115 -207 1127
+rect -273 739 -257 1115
+rect -223 739 -207 1115
+rect -273 727 -207 739
+rect -177 1115 -111 1127
+rect -177 739 -161 1115
+rect -127 739 -111 1115
+rect -177 727 -111 739
+rect -81 1115 -15 1127
+rect -81 739 -65 1115
+rect -31 739 -15 1115
+rect -81 727 -15 739
+rect 15 1115 81 1127
+rect 15 739 31 1115
+rect 65 739 81 1115
+rect 15 727 81 739
+rect 111 1115 177 1127
+rect 111 739 127 1115
+rect 161 739 177 1115
+rect 111 727 177 739
+rect 207 1115 273 1127
+rect 207 739 223 1115
+rect 257 739 273 1115
+rect 207 727 273 739
+rect 303 1115 369 1127
+rect 303 739 319 1115
+rect 353 739 369 1115
+rect 303 727 369 739
+rect 399 1115 465 1127
+rect 399 739 415 1115
+rect 449 739 465 1115
+rect 399 727 465 739
+rect 495 1115 561 1127
+rect 495 739 511 1115
+rect 545 739 561 1115
+rect 495 727 561 739
+rect 591 1115 657 1127
+rect 591 739 607 1115
+rect 641 739 657 1115
+rect 591 727 657 739
+rect 687 1115 753 1127
+rect 687 739 703 1115
+rect 737 739 753 1115
+rect 687 727 753 739
+rect 783 1115 849 1127
+rect 783 739 799 1115
+rect 833 739 849 1115
+rect 783 727 849 739
+rect 879 1115 945 1127
+rect 879 739 895 1115
+rect 929 739 945 1115
+rect 879 727 945 739
+rect 975 1115 1041 1127
+rect 975 739 991 1115
+rect 1025 739 1041 1115
+rect 975 727 1041 739
+rect 1071 1115 1137 1127
+rect 1071 739 1087 1115
+rect 1121 739 1137 1115
+rect 1071 727 1137 739
+rect 1167 1115 1229 1127
+rect 1167 739 1183 1115
+rect 1217 739 1229 1115
+rect 1167 727 1229 739
+rect -1229 497 -1167 509
+rect -1229 121 -1217 497
+rect -1183 121 -1167 497
+rect -1229 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1229 509
+rect 1167 121 1183 497
+rect 1217 121 1229 497
+rect 1167 109 1229 121
+rect -1229 -121 -1167 -109
+rect -1229 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1229 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1229 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1229 -121
+rect 1167 -509 1229 -497
+rect -1229 -739 -1167 -727
+rect -1229 -1115 -1217 -739
+rect -1183 -1115 -1167 -739
+rect -1229 -1127 -1167 -1115
+rect -1137 -739 -1071 -727
+rect -1137 -1115 -1121 -739
+rect -1087 -1115 -1071 -739
+rect -1137 -1127 -1071 -1115
+rect -1041 -739 -975 -727
+rect -1041 -1115 -1025 -739
+rect -991 -1115 -975 -739
+rect -1041 -1127 -975 -1115
+rect -945 -739 -879 -727
+rect -945 -1115 -929 -739
+rect -895 -1115 -879 -739
+rect -945 -1127 -879 -1115
+rect -849 -739 -783 -727
+rect -849 -1115 -833 -739
+rect -799 -1115 -783 -739
+rect -849 -1127 -783 -1115
+rect -753 -739 -687 -727
+rect -753 -1115 -737 -739
+rect -703 -1115 -687 -739
+rect -753 -1127 -687 -1115
+rect -657 -739 -591 -727
+rect -657 -1115 -641 -739
+rect -607 -1115 -591 -739
+rect -657 -1127 -591 -1115
+rect -561 -739 -495 -727
+rect -561 -1115 -545 -739
+rect -511 -1115 -495 -739
+rect -561 -1127 -495 -1115
+rect -465 -739 -399 -727
+rect -465 -1115 -449 -739
+rect -415 -1115 -399 -739
+rect -465 -1127 -399 -1115
+rect -369 -739 -303 -727
+rect -369 -1115 -353 -739
+rect -319 -1115 -303 -739
+rect -369 -1127 -303 -1115
+rect -273 -739 -207 -727
+rect -273 -1115 -257 -739
+rect -223 -1115 -207 -739
+rect -273 -1127 -207 -1115
+rect -177 -739 -111 -727
+rect -177 -1115 -161 -739
+rect -127 -1115 -111 -739
+rect -177 -1127 -111 -1115
+rect -81 -739 -15 -727
+rect -81 -1115 -65 -739
+rect -31 -1115 -15 -739
+rect -81 -1127 -15 -1115
+rect 15 -739 81 -727
+rect 15 -1115 31 -739
+rect 65 -1115 81 -739
+rect 15 -1127 81 -1115
+rect 111 -739 177 -727
+rect 111 -1115 127 -739
+rect 161 -1115 177 -739
+rect 111 -1127 177 -1115
+rect 207 -739 273 -727
+rect 207 -1115 223 -739
+rect 257 -1115 273 -739
+rect 207 -1127 273 -1115
+rect 303 -739 369 -727
+rect 303 -1115 319 -739
+rect 353 -1115 369 -739
+rect 303 -1127 369 -1115
+rect 399 -739 465 -727
+rect 399 -1115 415 -739
+rect 449 -1115 465 -739
+rect 399 -1127 465 -1115
+rect 495 -739 561 -727
+rect 495 -1115 511 -739
+rect 545 -1115 561 -739
+rect 495 -1127 561 -1115
+rect 591 -739 657 -727
+rect 591 -1115 607 -739
+rect 641 -1115 657 -739
+rect 591 -1127 657 -1115
+rect 687 -739 753 -727
+rect 687 -1115 703 -739
+rect 737 -1115 753 -739
+rect 687 -1127 753 -1115
+rect 783 -739 849 -727
+rect 783 -1115 799 -739
+rect 833 -1115 849 -739
+rect 783 -1127 849 -1115
+rect 879 -739 945 -727
+rect 879 -1115 895 -739
+rect 929 -1115 945 -739
+rect 879 -1127 945 -1115
+rect 975 -739 1041 -727
+rect 975 -1115 991 -739
+rect 1025 -1115 1041 -739
+rect 975 -1127 1041 -1115
+rect 1071 -739 1137 -727
+rect 1071 -1115 1087 -739
+rect 1121 -1115 1137 -739
+rect 1071 -1127 1137 -1115
+rect 1167 -739 1229 -727
+rect 1167 -1115 1183 -739
+rect 1217 -1115 1229 -739
+rect 1167 -1127 1229 -1115
+<< ndiffc >>
+rect -1217 739 -1183 1115
+rect -1121 739 -1087 1115
+rect -1025 739 -991 1115
+rect -929 739 -895 1115
+rect -833 739 -799 1115
+rect -737 739 -703 1115
+rect -641 739 -607 1115
+rect -545 739 -511 1115
+rect -449 739 -415 1115
+rect -353 739 -319 1115
+rect -257 739 -223 1115
+rect -161 739 -127 1115
+rect -65 739 -31 1115
+rect 31 739 65 1115
+rect 127 739 161 1115
+rect 223 739 257 1115
+rect 319 739 353 1115
+rect 415 739 449 1115
+rect 511 739 545 1115
+rect 607 739 641 1115
+rect 703 739 737 1115
+rect 799 739 833 1115
+rect 895 739 929 1115
+rect 991 739 1025 1115
+rect 1087 739 1121 1115
+rect 1183 739 1217 1115
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1217 -1115 -1183 -739
+rect -1121 -1115 -1087 -739
+rect -1025 -1115 -991 -739
+rect -929 -1115 -895 -739
+rect -833 -1115 -799 -739
+rect -737 -1115 -703 -739
+rect -641 -1115 -607 -739
+rect -545 -1115 -511 -739
+rect -449 -1115 -415 -739
+rect -353 -1115 -319 -739
+rect -257 -1115 -223 -739
+rect -161 -1115 -127 -739
+rect -65 -1115 -31 -739
+rect 31 -1115 65 -739
+rect 127 -1115 161 -739
+rect 223 -1115 257 -739
+rect 319 -1115 353 -739
+rect 415 -1115 449 -739
+rect 511 -1115 545 -739
+rect 607 -1115 641 -739
+rect 703 -1115 737 -739
+rect 799 -1115 833 -739
+rect 895 -1115 929 -739
+rect 991 -1115 1025 -739
+rect 1087 -1115 1121 -739
+rect 1183 -1115 1217 -739
+<< psubdiff >>
+rect -1331 1267 -1235 1301
+rect 1235 1267 1331 1301
+rect -1331 1205 -1297 1267
+rect 1297 1205 1331 1267
+rect -1331 -1267 -1297 -1205
+rect 1297 -1267 1331 -1205
+rect -1331 -1301 -1235 -1267
+rect 1235 -1301 1331 -1267
+<< psubdiffcont >>
+rect -1235 1267 1235 1301
+rect -1331 -1205 -1297 1205
+rect 1297 -1205 1331 1205
+rect -1235 -1301 1235 -1267
+<< poly >>
+rect -1185 1199 -1119 1215
+rect -1185 1165 -1169 1199
+rect -1135 1165 -1119 1199
+rect -1185 1149 -1119 1165
+rect -993 1199 -927 1215
+rect -993 1165 -977 1199
+rect -943 1165 -927 1199
+rect -1167 1127 -1137 1149
+rect -1071 1127 -1041 1153
+rect -993 1149 -927 1165
+rect -801 1199 -735 1215
+rect -801 1165 -785 1199
+rect -751 1165 -735 1199
+rect -975 1127 -945 1149
+rect -879 1127 -849 1153
+rect -801 1149 -735 1165
+rect -609 1199 -543 1215
+rect -609 1165 -593 1199
+rect -559 1165 -543 1199
+rect -783 1127 -753 1149
+rect -687 1127 -657 1153
+rect -609 1149 -543 1165
+rect -417 1199 -351 1215
+rect -417 1165 -401 1199
+rect -367 1165 -351 1199
+rect -591 1127 -561 1149
+rect -495 1127 -465 1153
+rect -417 1149 -351 1165
+rect -225 1199 -159 1215
+rect -225 1165 -209 1199
+rect -175 1165 -159 1199
+rect -399 1127 -369 1149
+rect -303 1127 -273 1153
+rect -225 1149 -159 1165
+rect -33 1199 33 1215
+rect -33 1165 -17 1199
+rect 17 1165 33 1199
+rect -207 1127 -177 1149
+rect -111 1127 -81 1153
+rect -33 1149 33 1165
+rect 159 1199 225 1215
+rect 159 1165 175 1199
+rect 209 1165 225 1199
+rect -15 1127 15 1149
+rect 81 1127 111 1153
+rect 159 1149 225 1165
+rect 351 1199 417 1215
+rect 351 1165 367 1199
+rect 401 1165 417 1199
+rect 177 1127 207 1149
+rect 273 1127 303 1153
+rect 351 1149 417 1165
+rect 543 1199 609 1215
+rect 543 1165 559 1199
+rect 593 1165 609 1199
+rect 369 1127 399 1149
+rect 465 1127 495 1153
+rect 543 1149 609 1165
+rect 735 1199 801 1215
+rect 735 1165 751 1199
+rect 785 1165 801 1199
+rect 561 1127 591 1149
+rect 657 1127 687 1153
+rect 735 1149 801 1165
+rect 927 1199 993 1215
+rect 927 1165 943 1199
+rect 977 1165 993 1199
+rect 753 1127 783 1149
+rect 849 1127 879 1153
+rect 927 1149 993 1165
+rect 1119 1199 1185 1215
+rect 1119 1165 1135 1199
+rect 1169 1165 1185 1199
+rect 945 1127 975 1149
+rect 1041 1127 1071 1153
+rect 1119 1149 1185 1165
+rect 1137 1127 1167 1149
+rect -1167 701 -1137 727
+rect -1071 705 -1041 727
+rect -1089 689 -1023 705
+rect -975 701 -945 727
+rect -879 705 -849 727
+rect -1089 655 -1073 689
+rect -1039 655 -1023 689
+rect -1089 639 -1023 655
+rect -897 689 -831 705
+rect -783 701 -753 727
+rect -687 705 -657 727
+rect -897 655 -881 689
+rect -847 655 -831 689
+rect -897 639 -831 655
+rect -705 689 -639 705
+rect -591 701 -561 727
+rect -495 705 -465 727
+rect -705 655 -689 689
+rect -655 655 -639 689
+rect -705 639 -639 655
+rect -513 689 -447 705
+rect -399 701 -369 727
+rect -303 705 -273 727
+rect -513 655 -497 689
+rect -463 655 -447 689
+rect -513 639 -447 655
+rect -321 689 -255 705
+rect -207 701 -177 727
+rect -111 705 -81 727
+rect -321 655 -305 689
+rect -271 655 -255 689
+rect -321 639 -255 655
+rect -129 689 -63 705
+rect -15 701 15 727
+rect 81 705 111 727
+rect -129 655 -113 689
+rect -79 655 -63 689
+rect -129 639 -63 655
+rect 63 689 129 705
+rect 177 701 207 727
+rect 273 705 303 727
+rect 63 655 79 689
+rect 113 655 129 689
+rect 63 639 129 655
+rect 255 689 321 705
+rect 369 701 399 727
+rect 465 705 495 727
+rect 255 655 271 689
+rect 305 655 321 689
+rect 255 639 321 655
+rect 447 689 513 705
+rect 561 701 591 727
+rect 657 705 687 727
+rect 447 655 463 689
+rect 497 655 513 689
+rect 447 639 513 655
+rect 639 689 705 705
+rect 753 701 783 727
+rect 849 705 879 727
+rect 639 655 655 689
+rect 689 655 705 689
+rect 639 639 705 655
+rect 831 689 897 705
+rect 945 701 975 727
+rect 1041 705 1071 727
+rect 831 655 847 689
+rect 881 655 897 689
+rect 831 639 897 655
+rect 1023 689 1089 705
+rect 1137 701 1167 727
+rect 1023 655 1039 689
+rect 1073 655 1089 689
+rect 1023 639 1089 655
+rect -1089 581 -1023 597
+rect -1089 547 -1073 581
+rect -1039 547 -1023 581
+rect -1167 509 -1137 535
+rect -1089 531 -1023 547
+rect -897 581 -831 597
+rect -897 547 -881 581
+rect -847 547 -831 581
+rect -1071 509 -1041 531
+rect -975 509 -945 535
+rect -897 531 -831 547
+rect -705 581 -639 597
+rect -705 547 -689 581
+rect -655 547 -639 581
+rect -879 509 -849 531
+rect -783 509 -753 535
+rect -705 531 -639 547
+rect -513 581 -447 597
+rect -513 547 -497 581
+rect -463 547 -447 581
+rect -687 509 -657 531
+rect -591 509 -561 535
+rect -513 531 -447 547
+rect -321 581 -255 597
+rect -321 547 -305 581
+rect -271 547 -255 581
+rect -495 509 -465 531
+rect -399 509 -369 535
+rect -321 531 -255 547
+rect -129 581 -63 597
+rect -129 547 -113 581
+rect -79 547 -63 581
+rect -303 509 -273 531
+rect -207 509 -177 535
+rect -129 531 -63 547
+rect 63 581 129 597
+rect 63 547 79 581
+rect 113 547 129 581
+rect -111 509 -81 531
+rect -15 509 15 535
+rect 63 531 129 547
+rect 255 581 321 597
+rect 255 547 271 581
+rect 305 547 321 581
+rect 81 509 111 531
+rect 177 509 207 535
+rect 255 531 321 547
+rect 447 581 513 597
+rect 447 547 463 581
+rect 497 547 513 581
+rect 273 509 303 531
+rect 369 509 399 535
+rect 447 531 513 547
+rect 639 581 705 597
+rect 639 547 655 581
+rect 689 547 705 581
+rect 465 509 495 531
+rect 561 509 591 535
+rect 639 531 705 547
+rect 831 581 897 597
+rect 831 547 847 581
+rect 881 547 897 581
+rect 657 509 687 531
+rect 753 509 783 535
+rect 831 531 897 547
+rect 1023 581 1089 597
+rect 1023 547 1039 581
+rect 1073 547 1089 581
+rect 849 509 879 531
+rect 945 509 975 535
+rect 1023 531 1089 547
+rect 1041 509 1071 531
+rect 1137 509 1167 535
+rect -1167 87 -1137 109
+rect -1185 71 -1119 87
+rect -1071 83 -1041 109
+rect -975 87 -945 109
+rect -1185 37 -1169 71
+rect -1135 37 -1119 71
+rect -1185 21 -1119 37
+rect -993 71 -927 87
+rect -879 83 -849 109
+rect -783 87 -753 109
+rect -993 37 -977 71
+rect -943 37 -927 71
+rect -993 21 -927 37
+rect -801 71 -735 87
+rect -687 83 -657 109
+rect -591 87 -561 109
+rect -801 37 -785 71
+rect -751 37 -735 71
+rect -801 21 -735 37
+rect -609 71 -543 87
+rect -495 83 -465 109
+rect -399 87 -369 109
+rect -609 37 -593 71
+rect -559 37 -543 71
+rect -609 21 -543 37
+rect -417 71 -351 87
+rect -303 83 -273 109
+rect -207 87 -177 109
+rect -417 37 -401 71
+rect -367 37 -351 71
+rect -417 21 -351 37
+rect -225 71 -159 87
+rect -111 83 -81 109
+rect -15 87 15 109
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -225 21 -159 37
+rect -33 71 33 87
+rect 81 83 111 109
+rect 177 87 207 109
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 159 71 225 87
+rect 273 83 303 109
+rect 369 87 399 109
+rect 159 37 175 71
+rect 209 37 225 71
+rect 159 21 225 37
+rect 351 71 417 87
+rect 465 83 495 109
+rect 561 87 591 109
+rect 351 37 367 71
+rect 401 37 417 71
+rect 351 21 417 37
+rect 543 71 609 87
+rect 657 83 687 109
+rect 753 87 783 109
+rect 543 37 559 71
+rect 593 37 609 71
+rect 543 21 609 37
+rect 735 71 801 87
+rect 849 83 879 109
+rect 945 87 975 109
+rect 735 37 751 71
+rect 785 37 801 71
+rect 735 21 801 37
+rect 927 71 993 87
+rect 1041 83 1071 109
+rect 1137 87 1167 109
+rect 927 37 943 71
+rect 977 37 993 71
+rect 927 21 993 37
+rect 1119 71 1185 87
+rect 1119 37 1135 71
+rect 1169 37 1185 71
+rect 1119 21 1185 37
+rect -1185 -37 -1119 -21
+rect -1185 -71 -1169 -37
+rect -1135 -71 -1119 -37
+rect -1185 -87 -1119 -71
+rect -993 -37 -927 -21
+rect -993 -71 -977 -37
+rect -943 -71 -927 -37
+rect -1167 -109 -1137 -87
+rect -1071 -109 -1041 -83
+rect -993 -87 -927 -71
+rect -801 -37 -735 -21
+rect -801 -71 -785 -37
+rect -751 -71 -735 -37
+rect -975 -109 -945 -87
+rect -879 -109 -849 -83
+rect -801 -87 -735 -71
+rect -609 -37 -543 -21
+rect -609 -71 -593 -37
+rect -559 -71 -543 -37
+rect -783 -109 -753 -87
+rect -687 -109 -657 -83
+rect -609 -87 -543 -71
+rect -417 -37 -351 -21
+rect -417 -71 -401 -37
+rect -367 -71 -351 -37
+rect -591 -109 -561 -87
+rect -495 -109 -465 -83
+rect -417 -87 -351 -71
+rect -225 -37 -159 -21
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -399 -109 -369 -87
+rect -303 -109 -273 -83
+rect -225 -87 -159 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -207 -109 -177 -87
+rect -111 -109 -81 -83
+rect -33 -87 33 -71
+rect 159 -37 225 -21
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect -15 -109 15 -87
+rect 81 -109 111 -83
+rect 159 -87 225 -71
+rect 351 -37 417 -21
+rect 351 -71 367 -37
+rect 401 -71 417 -37
+rect 177 -109 207 -87
+rect 273 -109 303 -83
+rect 351 -87 417 -71
+rect 543 -37 609 -21
+rect 543 -71 559 -37
+rect 593 -71 609 -37
+rect 369 -109 399 -87
+rect 465 -109 495 -83
+rect 543 -87 609 -71
+rect 735 -37 801 -21
+rect 735 -71 751 -37
+rect 785 -71 801 -37
+rect 561 -109 591 -87
+rect 657 -109 687 -83
+rect 735 -87 801 -71
+rect 927 -37 993 -21
+rect 927 -71 943 -37
+rect 977 -71 993 -37
+rect 753 -109 783 -87
+rect 849 -109 879 -83
+rect 927 -87 993 -71
+rect 1119 -37 1185 -21
+rect 1119 -71 1135 -37
+rect 1169 -71 1185 -37
+rect 945 -109 975 -87
+rect 1041 -109 1071 -83
+rect 1119 -87 1185 -71
+rect 1137 -109 1167 -87
+rect -1167 -535 -1137 -509
+rect -1071 -531 -1041 -509
+rect -1089 -547 -1023 -531
+rect -975 -535 -945 -509
+rect -879 -531 -849 -509
+rect -1089 -581 -1073 -547
+rect -1039 -581 -1023 -547
+rect -1089 -597 -1023 -581
+rect -897 -547 -831 -531
+rect -783 -535 -753 -509
+rect -687 -531 -657 -509
+rect -897 -581 -881 -547
+rect -847 -581 -831 -547
+rect -897 -597 -831 -581
+rect -705 -547 -639 -531
+rect -591 -535 -561 -509
+rect -495 -531 -465 -509
+rect -705 -581 -689 -547
+rect -655 -581 -639 -547
+rect -705 -597 -639 -581
+rect -513 -547 -447 -531
+rect -399 -535 -369 -509
+rect -303 -531 -273 -509
+rect -513 -581 -497 -547
+rect -463 -581 -447 -547
+rect -513 -597 -447 -581
+rect -321 -547 -255 -531
+rect -207 -535 -177 -509
+rect -111 -531 -81 -509
+rect -321 -581 -305 -547
+rect -271 -581 -255 -547
+rect -321 -597 -255 -581
+rect -129 -547 -63 -531
+rect -15 -535 15 -509
+rect 81 -531 111 -509
+rect -129 -581 -113 -547
+rect -79 -581 -63 -547
+rect -129 -597 -63 -581
+rect 63 -547 129 -531
+rect 177 -535 207 -509
+rect 273 -531 303 -509
+rect 63 -581 79 -547
+rect 113 -581 129 -547
+rect 63 -597 129 -581
+rect 255 -547 321 -531
+rect 369 -535 399 -509
+rect 465 -531 495 -509
+rect 255 -581 271 -547
+rect 305 -581 321 -547
+rect 255 -597 321 -581
+rect 447 -547 513 -531
+rect 561 -535 591 -509
+rect 657 -531 687 -509
+rect 447 -581 463 -547
+rect 497 -581 513 -547
+rect 447 -597 513 -581
+rect 639 -547 705 -531
+rect 753 -535 783 -509
+rect 849 -531 879 -509
+rect 639 -581 655 -547
+rect 689 -581 705 -547
+rect 639 -597 705 -581
+rect 831 -547 897 -531
+rect 945 -535 975 -509
+rect 1041 -531 1071 -509
+rect 831 -581 847 -547
+rect 881 -581 897 -547
+rect 831 -597 897 -581
+rect 1023 -547 1089 -531
+rect 1137 -535 1167 -509
+rect 1023 -581 1039 -547
+rect 1073 -581 1089 -547
+rect 1023 -597 1089 -581
+rect -1089 -655 -1023 -639
+rect -1089 -689 -1073 -655
+rect -1039 -689 -1023 -655
+rect -1167 -727 -1137 -701
+rect -1089 -705 -1023 -689
+rect -897 -655 -831 -639
+rect -897 -689 -881 -655
+rect -847 -689 -831 -655
+rect -1071 -727 -1041 -705
+rect -975 -727 -945 -701
+rect -897 -705 -831 -689
+rect -705 -655 -639 -639
+rect -705 -689 -689 -655
+rect -655 -689 -639 -655
+rect -879 -727 -849 -705
+rect -783 -727 -753 -701
+rect -705 -705 -639 -689
+rect -513 -655 -447 -639
+rect -513 -689 -497 -655
+rect -463 -689 -447 -655
+rect -687 -727 -657 -705
+rect -591 -727 -561 -701
+rect -513 -705 -447 -689
+rect -321 -655 -255 -639
+rect -321 -689 -305 -655
+rect -271 -689 -255 -655
+rect -495 -727 -465 -705
+rect -399 -727 -369 -701
+rect -321 -705 -255 -689
+rect -129 -655 -63 -639
+rect -129 -689 -113 -655
+rect -79 -689 -63 -655
+rect -303 -727 -273 -705
+rect -207 -727 -177 -701
+rect -129 -705 -63 -689
+rect 63 -655 129 -639
+rect 63 -689 79 -655
+rect 113 -689 129 -655
+rect -111 -727 -81 -705
+rect -15 -727 15 -701
+rect 63 -705 129 -689
+rect 255 -655 321 -639
+rect 255 -689 271 -655
+rect 305 -689 321 -655
+rect 81 -727 111 -705
+rect 177 -727 207 -701
+rect 255 -705 321 -689
+rect 447 -655 513 -639
+rect 447 -689 463 -655
+rect 497 -689 513 -655
+rect 273 -727 303 -705
+rect 369 -727 399 -701
+rect 447 -705 513 -689
+rect 639 -655 705 -639
+rect 639 -689 655 -655
+rect 689 -689 705 -655
+rect 465 -727 495 -705
+rect 561 -727 591 -701
+rect 639 -705 705 -689
+rect 831 -655 897 -639
+rect 831 -689 847 -655
+rect 881 -689 897 -655
+rect 657 -727 687 -705
+rect 753 -727 783 -701
+rect 831 -705 897 -689
+rect 1023 -655 1089 -639
+rect 1023 -689 1039 -655
+rect 1073 -689 1089 -655
+rect 849 -727 879 -705
+rect 945 -727 975 -701
+rect 1023 -705 1089 -689
+rect 1041 -727 1071 -705
+rect 1137 -727 1167 -701
+rect -1167 -1149 -1137 -1127
+rect -1185 -1165 -1119 -1149
+rect -1071 -1153 -1041 -1127
+rect -975 -1149 -945 -1127
+rect -1185 -1199 -1169 -1165
+rect -1135 -1199 -1119 -1165
+rect -1185 -1215 -1119 -1199
+rect -993 -1165 -927 -1149
+rect -879 -1153 -849 -1127
+rect -783 -1149 -753 -1127
+rect -993 -1199 -977 -1165
+rect -943 -1199 -927 -1165
+rect -993 -1215 -927 -1199
+rect -801 -1165 -735 -1149
+rect -687 -1153 -657 -1127
+rect -591 -1149 -561 -1127
+rect -801 -1199 -785 -1165
+rect -751 -1199 -735 -1165
+rect -801 -1215 -735 -1199
+rect -609 -1165 -543 -1149
+rect -495 -1153 -465 -1127
+rect -399 -1149 -369 -1127
+rect -609 -1199 -593 -1165
+rect -559 -1199 -543 -1165
+rect -609 -1215 -543 -1199
+rect -417 -1165 -351 -1149
+rect -303 -1153 -273 -1127
+rect -207 -1149 -177 -1127
+rect -417 -1199 -401 -1165
+rect -367 -1199 -351 -1165
+rect -417 -1215 -351 -1199
+rect -225 -1165 -159 -1149
+rect -111 -1153 -81 -1127
+rect -15 -1149 15 -1127
+rect -225 -1199 -209 -1165
+rect -175 -1199 -159 -1165
+rect -225 -1215 -159 -1199
+rect -33 -1165 33 -1149
+rect 81 -1153 111 -1127
+rect 177 -1149 207 -1127
+rect -33 -1199 -17 -1165
+rect 17 -1199 33 -1165
+rect -33 -1215 33 -1199
+rect 159 -1165 225 -1149
+rect 273 -1153 303 -1127
+rect 369 -1149 399 -1127
+rect 159 -1199 175 -1165
+rect 209 -1199 225 -1165
+rect 159 -1215 225 -1199
+rect 351 -1165 417 -1149
+rect 465 -1153 495 -1127
+rect 561 -1149 591 -1127
+rect 351 -1199 367 -1165
+rect 401 -1199 417 -1165
+rect 351 -1215 417 -1199
+rect 543 -1165 609 -1149
+rect 657 -1153 687 -1127
+rect 753 -1149 783 -1127
+rect 543 -1199 559 -1165
+rect 593 -1199 609 -1165
+rect 543 -1215 609 -1199
+rect 735 -1165 801 -1149
+rect 849 -1153 879 -1127
+rect 945 -1149 975 -1127
+rect 735 -1199 751 -1165
+rect 785 -1199 801 -1165
+rect 735 -1215 801 -1199
+rect 927 -1165 993 -1149
+rect 1041 -1153 1071 -1127
+rect 1137 -1149 1167 -1127
+rect 927 -1199 943 -1165
+rect 977 -1199 993 -1165
+rect 927 -1215 993 -1199
+rect 1119 -1165 1185 -1149
+rect 1119 -1199 1135 -1165
+rect 1169 -1199 1185 -1165
+rect 1119 -1215 1185 -1199
+<< polycont >>
+rect -1169 1165 -1135 1199
+rect -977 1165 -943 1199
+rect -785 1165 -751 1199
+rect -593 1165 -559 1199
+rect -401 1165 -367 1199
+rect -209 1165 -175 1199
+rect -17 1165 17 1199
+rect 175 1165 209 1199
+rect 367 1165 401 1199
+rect 559 1165 593 1199
+rect 751 1165 785 1199
+rect 943 1165 977 1199
+rect 1135 1165 1169 1199
+rect -1073 655 -1039 689
+rect -881 655 -847 689
+rect -689 655 -655 689
+rect -497 655 -463 689
+rect -305 655 -271 689
+rect -113 655 -79 689
+rect 79 655 113 689
+rect 271 655 305 689
+rect 463 655 497 689
+rect 655 655 689 689
+rect 847 655 881 689
+rect 1039 655 1073 689
+rect -1073 547 -1039 581
+rect -881 547 -847 581
+rect -689 547 -655 581
+rect -497 547 -463 581
+rect -305 547 -271 581
+rect -113 547 -79 581
+rect 79 547 113 581
+rect 271 547 305 581
+rect 463 547 497 581
+rect 655 547 689 581
+rect 847 547 881 581
+rect 1039 547 1073 581
+rect -1169 37 -1135 71
+rect -977 37 -943 71
+rect -785 37 -751 71
+rect -593 37 -559 71
+rect -401 37 -367 71
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect 367 37 401 71
+rect 559 37 593 71
+rect 751 37 785 71
+rect 943 37 977 71
+rect 1135 37 1169 71
+rect -1169 -71 -1135 -37
+rect -977 -71 -943 -37
+rect -785 -71 -751 -37
+rect -593 -71 -559 -37
+rect -401 -71 -367 -37
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect 367 -71 401 -37
+rect 559 -71 593 -37
+rect 751 -71 785 -37
+rect 943 -71 977 -37
+rect 1135 -71 1169 -37
+rect -1073 -581 -1039 -547
+rect -881 -581 -847 -547
+rect -689 -581 -655 -547
+rect -497 -581 -463 -547
+rect -305 -581 -271 -547
+rect -113 -581 -79 -547
+rect 79 -581 113 -547
+rect 271 -581 305 -547
+rect 463 -581 497 -547
+rect 655 -581 689 -547
+rect 847 -581 881 -547
+rect 1039 -581 1073 -547
+rect -1073 -689 -1039 -655
+rect -881 -689 -847 -655
+rect -689 -689 -655 -655
+rect -497 -689 -463 -655
+rect -305 -689 -271 -655
+rect -113 -689 -79 -655
+rect 79 -689 113 -655
+rect 271 -689 305 -655
+rect 463 -689 497 -655
+rect 655 -689 689 -655
+rect 847 -689 881 -655
+rect 1039 -689 1073 -655
+rect -1169 -1199 -1135 -1165
+rect -977 -1199 -943 -1165
+rect -785 -1199 -751 -1165
+rect -593 -1199 -559 -1165
+rect -401 -1199 -367 -1165
+rect -209 -1199 -175 -1165
+rect -17 -1199 17 -1165
+rect 175 -1199 209 -1165
+rect 367 -1199 401 -1165
+rect 559 -1199 593 -1165
+rect 751 -1199 785 -1165
+rect 943 -1199 977 -1165
+rect 1135 -1199 1169 -1165
+<< locali >>
+rect -1331 1267 -1235 1301
+rect 1235 1267 1331 1301
+rect -1331 1205 -1297 1267
+rect 1297 1205 1331 1267
+rect -1185 1165 -1169 1199
+rect -1135 1165 -1119 1199
+rect -993 1165 -977 1199
+rect -943 1165 -927 1199
+rect -801 1165 -785 1199
+rect -751 1165 -735 1199
+rect -609 1165 -593 1199
+rect -559 1165 -543 1199
+rect -417 1165 -401 1199
+rect -367 1165 -351 1199
+rect -225 1165 -209 1199
+rect -175 1165 -159 1199
+rect -33 1165 -17 1199
+rect 17 1165 33 1199
+rect 159 1165 175 1199
+rect 209 1165 225 1199
+rect 351 1165 367 1199
+rect 401 1165 417 1199
+rect 543 1165 559 1199
+rect 593 1165 609 1199
+rect 735 1165 751 1199
+rect 785 1165 801 1199
+rect 927 1165 943 1199
+rect 977 1165 993 1199
+rect 1119 1165 1135 1199
+rect 1169 1165 1185 1199
+rect -1217 1115 -1183 1131
+rect -1217 723 -1183 739
+rect -1121 1115 -1087 1131
+rect -1121 723 -1087 739
+rect -1025 1115 -991 1131
+rect -1025 723 -991 739
+rect -929 1115 -895 1131
+rect -929 723 -895 739
+rect -833 1115 -799 1131
+rect -833 723 -799 739
+rect -737 1115 -703 1131
+rect -737 723 -703 739
+rect -641 1115 -607 1131
+rect -641 723 -607 739
+rect -545 1115 -511 1131
+rect -545 723 -511 739
+rect -449 1115 -415 1131
+rect -449 723 -415 739
+rect -353 1115 -319 1131
+rect -353 723 -319 739
+rect -257 1115 -223 1131
+rect -257 723 -223 739
+rect -161 1115 -127 1131
+rect -161 723 -127 739
+rect -65 1115 -31 1131
+rect -65 723 -31 739
+rect 31 1115 65 1131
+rect 31 723 65 739
+rect 127 1115 161 1131
+rect 127 723 161 739
+rect 223 1115 257 1131
+rect 223 723 257 739
+rect 319 1115 353 1131
+rect 319 723 353 739
+rect 415 1115 449 1131
+rect 415 723 449 739
+rect 511 1115 545 1131
+rect 511 723 545 739
+rect 607 1115 641 1131
+rect 607 723 641 739
+rect 703 1115 737 1131
+rect 703 723 737 739
+rect 799 1115 833 1131
+rect 799 723 833 739
+rect 895 1115 929 1131
+rect 895 723 929 739
+rect 991 1115 1025 1131
+rect 991 723 1025 739
+rect 1087 1115 1121 1131
+rect 1087 723 1121 739
+rect 1183 1115 1217 1131
+rect 1183 723 1217 739
+rect -1089 655 -1073 689
+rect -1039 655 -1023 689
+rect -897 655 -881 689
+rect -847 655 -831 689
+rect -705 655 -689 689
+rect -655 655 -639 689
+rect -513 655 -497 689
+rect -463 655 -447 689
+rect -321 655 -305 689
+rect -271 655 -255 689
+rect -129 655 -113 689
+rect -79 655 -63 689
+rect 63 655 79 689
+rect 113 655 129 689
+rect 255 655 271 689
+rect 305 655 321 689
+rect 447 655 463 689
+rect 497 655 513 689
+rect 639 655 655 689
+rect 689 655 705 689
+rect 831 655 847 689
+rect 881 655 897 689
+rect 1023 655 1039 689
+rect 1073 655 1089 689
+rect -1089 547 -1073 581
+rect -1039 547 -1023 581
+rect -897 547 -881 581
+rect -847 547 -831 581
+rect -705 547 -689 581
+rect -655 547 -639 581
+rect -513 547 -497 581
+rect -463 547 -447 581
+rect -321 547 -305 581
+rect -271 547 -255 581
+rect -129 547 -113 581
+rect -79 547 -63 581
+rect 63 547 79 581
+rect 113 547 129 581
+rect 255 547 271 581
+rect 305 547 321 581
+rect 447 547 463 581
+rect 497 547 513 581
+rect 639 547 655 581
+rect 689 547 705 581
+rect 831 547 847 581
+rect 881 547 897 581
+rect 1023 547 1039 581
+rect 1073 547 1089 581
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect -1185 37 -1169 71
+rect -1135 37 -1119 71
+rect -993 37 -977 71
+rect -943 37 -927 71
+rect -801 37 -785 71
+rect -751 37 -735 71
+rect -609 37 -593 71
+rect -559 37 -543 71
+rect -417 37 -401 71
+rect -367 37 -351 71
+rect -225 37 -209 71
+rect -175 37 -159 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 159 37 175 71
+rect 209 37 225 71
+rect 351 37 367 71
+rect 401 37 417 71
+rect 543 37 559 71
+rect 593 37 609 71
+rect 735 37 751 71
+rect 785 37 801 71
+rect 927 37 943 71
+rect 977 37 993 71
+rect 1119 37 1135 71
+rect 1169 37 1185 71
+rect -1185 -71 -1169 -37
+rect -1135 -71 -1119 -37
+rect -993 -71 -977 -37
+rect -943 -71 -927 -37
+rect -801 -71 -785 -37
+rect -751 -71 -735 -37
+rect -609 -71 -593 -37
+rect -559 -71 -543 -37
+rect -417 -71 -401 -37
+rect -367 -71 -351 -37
+rect -225 -71 -209 -37
+rect -175 -71 -159 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 159 -71 175 -37
+rect 209 -71 225 -37
+rect 351 -71 367 -37
+rect 401 -71 417 -37
+rect 543 -71 559 -37
+rect 593 -71 609 -37
+rect 735 -71 751 -37
+rect 785 -71 801 -37
+rect 927 -71 943 -37
+rect 977 -71 993 -37
+rect 1119 -71 1135 -37
+rect 1169 -71 1185 -37
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect -1089 -581 -1073 -547
+rect -1039 -581 -1023 -547
+rect -897 -581 -881 -547
+rect -847 -581 -831 -547
+rect -705 -581 -689 -547
+rect -655 -581 -639 -547
+rect -513 -581 -497 -547
+rect -463 -581 -447 -547
+rect -321 -581 -305 -547
+rect -271 -581 -255 -547
+rect -129 -581 -113 -547
+rect -79 -581 -63 -547
+rect 63 -581 79 -547
+rect 113 -581 129 -547
+rect 255 -581 271 -547
+rect 305 -581 321 -547
+rect 447 -581 463 -547
+rect 497 -581 513 -547
+rect 639 -581 655 -547
+rect 689 -581 705 -547
+rect 831 -581 847 -547
+rect 881 -581 897 -547
+rect 1023 -581 1039 -547
+rect 1073 -581 1089 -547
+rect -1089 -689 -1073 -655
+rect -1039 -689 -1023 -655
+rect -897 -689 -881 -655
+rect -847 -689 -831 -655
+rect -705 -689 -689 -655
+rect -655 -689 -639 -655
+rect -513 -689 -497 -655
+rect -463 -689 -447 -655
+rect -321 -689 -305 -655
+rect -271 -689 -255 -655
+rect -129 -689 -113 -655
+rect -79 -689 -63 -655
+rect 63 -689 79 -655
+rect 113 -689 129 -655
+rect 255 -689 271 -655
+rect 305 -689 321 -655
+rect 447 -689 463 -655
+rect 497 -689 513 -655
+rect 639 -689 655 -655
+rect 689 -689 705 -655
+rect 831 -689 847 -655
+rect 881 -689 897 -655
+rect 1023 -689 1039 -655
+rect 1073 -689 1089 -655
+rect -1217 -739 -1183 -723
+rect -1217 -1131 -1183 -1115
+rect -1121 -739 -1087 -723
+rect -1121 -1131 -1087 -1115
+rect -1025 -739 -991 -723
+rect -1025 -1131 -991 -1115
+rect -929 -739 -895 -723
+rect -929 -1131 -895 -1115
+rect -833 -739 -799 -723
+rect -833 -1131 -799 -1115
+rect -737 -739 -703 -723
+rect -737 -1131 -703 -1115
+rect -641 -739 -607 -723
+rect -641 -1131 -607 -1115
+rect -545 -739 -511 -723
+rect -545 -1131 -511 -1115
+rect -449 -739 -415 -723
+rect -449 -1131 -415 -1115
+rect -353 -739 -319 -723
+rect -353 -1131 -319 -1115
+rect -257 -739 -223 -723
+rect -257 -1131 -223 -1115
+rect -161 -739 -127 -723
+rect -161 -1131 -127 -1115
+rect -65 -739 -31 -723
+rect -65 -1131 -31 -1115
+rect 31 -739 65 -723
+rect 31 -1131 65 -1115
+rect 127 -739 161 -723
+rect 127 -1131 161 -1115
+rect 223 -739 257 -723
+rect 223 -1131 257 -1115
+rect 319 -739 353 -723
+rect 319 -1131 353 -1115
+rect 415 -739 449 -723
+rect 415 -1131 449 -1115
+rect 511 -739 545 -723
+rect 511 -1131 545 -1115
+rect 607 -739 641 -723
+rect 607 -1131 641 -1115
+rect 703 -739 737 -723
+rect 703 -1131 737 -1115
+rect 799 -739 833 -723
+rect 799 -1131 833 -1115
+rect 895 -739 929 -723
+rect 895 -1131 929 -1115
+rect 991 -739 1025 -723
+rect 991 -1131 1025 -1115
+rect 1087 -739 1121 -723
+rect 1087 -1131 1121 -1115
+rect 1183 -739 1217 -723
+rect 1183 -1131 1217 -1115
+rect -1185 -1199 -1169 -1165
+rect -1135 -1199 -1119 -1165
+rect -993 -1199 -977 -1165
+rect -943 -1199 -927 -1165
+rect -801 -1199 -785 -1165
+rect -751 -1199 -735 -1165
+rect -609 -1199 -593 -1165
+rect -559 -1199 -543 -1165
+rect -417 -1199 -401 -1165
+rect -367 -1199 -351 -1165
+rect -225 -1199 -209 -1165
+rect -175 -1199 -159 -1165
+rect -33 -1199 -17 -1165
+rect 17 -1199 33 -1165
+rect 159 -1199 175 -1165
+rect 209 -1199 225 -1165
+rect 351 -1199 367 -1165
+rect 401 -1199 417 -1165
+rect 543 -1199 559 -1165
+rect 593 -1199 609 -1165
+rect 735 -1199 751 -1165
+rect 785 -1199 801 -1165
+rect 927 -1199 943 -1165
+rect 977 -1199 993 -1165
+rect 1119 -1199 1135 -1165
+rect 1169 -1199 1185 -1165
+rect -1331 -1267 -1297 -1205
+rect 1297 -1267 1331 -1205
+rect -1331 -1301 -1235 -1267
+rect 1235 -1301 1331 -1267
+<< viali >>
+rect -1169 1165 -1135 1199
+rect -977 1165 -943 1199
+rect -785 1165 -751 1199
+rect -593 1165 -559 1199
+rect -401 1165 -367 1199
+rect -209 1165 -175 1199
+rect -17 1165 17 1199
+rect 175 1165 209 1199
+rect 367 1165 401 1199
+rect 559 1165 593 1199
+rect 751 1165 785 1199
+rect 943 1165 977 1199
+rect 1135 1165 1169 1199
+rect -1217 739 -1183 1115
+rect -1121 739 -1087 1115
+rect -1025 739 -991 1115
+rect -929 739 -895 1115
+rect -833 739 -799 1115
+rect -737 739 -703 1115
+rect -641 739 -607 1115
+rect -545 739 -511 1115
+rect -449 739 -415 1115
+rect -353 739 -319 1115
+rect -257 739 -223 1115
+rect -161 739 -127 1115
+rect -65 739 -31 1115
+rect 31 739 65 1115
+rect 127 739 161 1115
+rect 223 739 257 1115
+rect 319 739 353 1115
+rect 415 739 449 1115
+rect 511 739 545 1115
+rect 607 739 641 1115
+rect 703 739 737 1115
+rect 799 739 833 1115
+rect 895 739 929 1115
+rect 991 739 1025 1115
+rect 1087 739 1121 1115
+rect 1183 739 1217 1115
+rect -1073 655 -1039 689
+rect -881 655 -847 689
+rect -689 655 -655 689
+rect -497 655 -463 689
+rect -305 655 -271 689
+rect -113 655 -79 689
+rect 79 655 113 689
+rect 271 655 305 689
+rect 463 655 497 689
+rect 655 655 689 689
+rect 847 655 881 689
+rect 1039 655 1073 689
+rect -1073 547 -1039 581
+rect -881 547 -847 581
+rect -689 547 -655 581
+rect -497 547 -463 581
+rect -305 547 -271 581
+rect -113 547 -79 581
+rect 79 547 113 581
+rect 271 547 305 581
+rect 463 547 497 581
+rect 655 547 689 581
+rect 847 547 881 581
+rect 1039 547 1073 581
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1169 37 -1135 71
+rect -977 37 -943 71
+rect -785 37 -751 71
+rect -593 37 -559 71
+rect -401 37 -367 71
+rect -209 37 -175 71
+rect -17 37 17 71
+rect 175 37 209 71
+rect 367 37 401 71
+rect 559 37 593 71
+rect 751 37 785 71
+rect 943 37 977 71
+rect 1135 37 1169 71
+rect -1169 -71 -1135 -37
+rect -977 -71 -943 -37
+rect -785 -71 -751 -37
+rect -593 -71 -559 -37
+rect -401 -71 -367 -37
+rect -209 -71 -175 -37
+rect -17 -71 17 -37
+rect 175 -71 209 -37
+rect 367 -71 401 -37
+rect 559 -71 593 -37
+rect 751 -71 785 -37
+rect 943 -71 977 -37
+rect 1135 -71 1169 -37
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1073 -581 -1039 -547
+rect -881 -581 -847 -547
+rect -689 -581 -655 -547
+rect -497 -581 -463 -547
+rect -305 -581 -271 -547
+rect -113 -581 -79 -547
+rect 79 -581 113 -547
+rect 271 -581 305 -547
+rect 463 -581 497 -547
+rect 655 -581 689 -547
+rect 847 -581 881 -547
+rect 1039 -581 1073 -547
+rect -1073 -689 -1039 -655
+rect -881 -689 -847 -655
+rect -689 -689 -655 -655
+rect -497 -689 -463 -655
+rect -305 -689 -271 -655
+rect -113 -689 -79 -655
+rect 79 -689 113 -655
+rect 271 -689 305 -655
+rect 463 -689 497 -655
+rect 655 -689 689 -655
+rect 847 -689 881 -655
+rect 1039 -689 1073 -655
+rect -1217 -1115 -1183 -739
+rect -1121 -1115 -1087 -739
+rect -1025 -1115 -991 -739
+rect -929 -1115 -895 -739
+rect -833 -1115 -799 -739
+rect -737 -1115 -703 -739
+rect -641 -1115 -607 -739
+rect -545 -1115 -511 -739
+rect -449 -1115 -415 -739
+rect -353 -1115 -319 -739
+rect -257 -1115 -223 -739
+rect -161 -1115 -127 -739
+rect -65 -1115 -31 -739
+rect 31 -1115 65 -739
+rect 127 -1115 161 -739
+rect 223 -1115 257 -739
+rect 319 -1115 353 -739
+rect 415 -1115 449 -739
+rect 511 -1115 545 -739
+rect 607 -1115 641 -739
+rect 703 -1115 737 -739
+rect 799 -1115 833 -739
+rect 895 -1115 929 -739
+rect 991 -1115 1025 -739
+rect 1087 -1115 1121 -739
+rect 1183 -1115 1217 -739
+rect -1169 -1199 -1135 -1165
+rect -977 -1199 -943 -1165
+rect -785 -1199 -751 -1165
+rect -593 -1199 -559 -1165
+rect -401 -1199 -367 -1165
+rect -209 -1199 -175 -1165
+rect -17 -1199 17 -1165
+rect 175 -1199 209 -1165
+rect 367 -1199 401 -1165
+rect 559 -1199 593 -1165
+rect 751 -1199 785 -1165
+rect 943 -1199 977 -1165
+rect 1135 -1199 1169 -1165
+<< metal1 >>
+rect -1181 1199 -1123 1205
+rect -1181 1165 -1169 1199
+rect -1135 1165 -1123 1199
+rect -1181 1159 -1123 1165
+rect -989 1199 -931 1205
+rect -989 1165 -977 1199
+rect -943 1165 -931 1199
+rect -989 1159 -931 1165
+rect -797 1199 -739 1205
+rect -797 1165 -785 1199
+rect -751 1165 -739 1199
+rect -797 1159 -739 1165
+rect -605 1199 -547 1205
+rect -605 1165 -593 1199
+rect -559 1165 -547 1199
+rect -605 1159 -547 1165
+rect -413 1199 -355 1205
+rect -413 1165 -401 1199
+rect -367 1165 -355 1199
+rect -413 1159 -355 1165
+rect -221 1199 -163 1205
+rect -221 1165 -209 1199
+rect -175 1165 -163 1199
+rect -221 1159 -163 1165
+rect -29 1199 29 1205
+rect -29 1165 -17 1199
+rect 17 1165 29 1199
+rect -29 1159 29 1165
+rect 163 1199 221 1205
+rect 163 1165 175 1199
+rect 209 1165 221 1199
+rect 163 1159 221 1165
+rect 355 1199 413 1205
+rect 355 1165 367 1199
+rect 401 1165 413 1199
+rect 355 1159 413 1165
+rect 547 1199 605 1205
+rect 547 1165 559 1199
+rect 593 1165 605 1199
+rect 547 1159 605 1165
+rect 739 1199 797 1205
+rect 739 1165 751 1199
+rect 785 1165 797 1199
+rect 739 1159 797 1165
+rect 931 1199 989 1205
+rect 931 1165 943 1199
+rect 977 1165 989 1199
+rect 931 1159 989 1165
+rect 1123 1199 1181 1205
+rect 1123 1165 1135 1199
+rect 1169 1165 1181 1199
+rect 1123 1159 1181 1165
+rect -1223 1115 -1177 1127
+rect -1223 739 -1217 1115
+rect -1183 739 -1177 1115
+rect -1223 727 -1177 739
+rect -1127 1115 -1081 1127
+rect -1127 739 -1121 1115
+rect -1087 739 -1081 1115
+rect -1127 727 -1081 739
+rect -1031 1115 -985 1127
+rect -1031 739 -1025 1115
+rect -991 739 -985 1115
+rect -1031 727 -985 739
+rect -935 1115 -889 1127
+rect -935 739 -929 1115
+rect -895 739 -889 1115
+rect -935 727 -889 739
+rect -839 1115 -793 1127
+rect -839 739 -833 1115
+rect -799 739 -793 1115
+rect -839 727 -793 739
+rect -743 1115 -697 1127
+rect -743 739 -737 1115
+rect -703 739 -697 1115
+rect -743 727 -697 739
+rect -647 1115 -601 1127
+rect -647 739 -641 1115
+rect -607 739 -601 1115
+rect -647 727 -601 739
+rect -551 1115 -505 1127
+rect -551 739 -545 1115
+rect -511 739 -505 1115
+rect -551 727 -505 739
+rect -455 1115 -409 1127
+rect -455 739 -449 1115
+rect -415 739 -409 1115
+rect -455 727 -409 739
+rect -359 1115 -313 1127
+rect -359 739 -353 1115
+rect -319 739 -313 1115
+rect -359 727 -313 739
+rect -263 1115 -217 1127
+rect -263 739 -257 1115
+rect -223 739 -217 1115
+rect -263 727 -217 739
+rect -167 1115 -121 1127
+rect -167 739 -161 1115
+rect -127 739 -121 1115
+rect -167 727 -121 739
+rect -71 1115 -25 1127
+rect -71 739 -65 1115
+rect -31 739 -25 1115
+rect -71 727 -25 739
+rect 25 1115 71 1127
+rect 25 739 31 1115
+rect 65 739 71 1115
+rect 25 727 71 739
+rect 121 1115 167 1127
+rect 121 739 127 1115
+rect 161 739 167 1115
+rect 121 727 167 739
+rect 217 1115 263 1127
+rect 217 739 223 1115
+rect 257 739 263 1115
+rect 217 727 263 739
+rect 313 1115 359 1127
+rect 313 739 319 1115
+rect 353 739 359 1115
+rect 313 727 359 739
+rect 409 1115 455 1127
+rect 409 739 415 1115
+rect 449 739 455 1115
+rect 409 727 455 739
+rect 505 1115 551 1127
+rect 505 739 511 1115
+rect 545 739 551 1115
+rect 505 727 551 739
+rect 601 1115 647 1127
+rect 601 739 607 1115
+rect 641 739 647 1115
+rect 601 727 647 739
+rect 697 1115 743 1127
+rect 697 739 703 1115
+rect 737 739 743 1115
+rect 697 727 743 739
+rect 793 1115 839 1127
+rect 793 739 799 1115
+rect 833 739 839 1115
+rect 793 727 839 739
+rect 889 1115 935 1127
+rect 889 739 895 1115
+rect 929 739 935 1115
+rect 889 727 935 739
+rect 985 1115 1031 1127
+rect 985 739 991 1115
+rect 1025 739 1031 1115
+rect 985 727 1031 739
+rect 1081 1115 1127 1127
+rect 1081 739 1087 1115
+rect 1121 739 1127 1115
+rect 1081 727 1127 739
+rect 1177 1115 1223 1127
+rect 1177 739 1183 1115
+rect 1217 739 1223 1115
+rect 1177 727 1223 739
+rect -1085 689 -1027 695
+rect -1085 655 -1073 689
+rect -1039 655 -1027 689
+rect -1085 649 -1027 655
+rect -893 689 -835 695
+rect -893 655 -881 689
+rect -847 655 -835 689
+rect -893 649 -835 655
+rect -701 689 -643 695
+rect -701 655 -689 689
+rect -655 655 -643 689
+rect -701 649 -643 655
+rect -509 689 -451 695
+rect -509 655 -497 689
+rect -463 655 -451 689
+rect -509 649 -451 655
+rect -317 689 -259 695
+rect -317 655 -305 689
+rect -271 655 -259 689
+rect -317 649 -259 655
+rect -125 689 -67 695
+rect -125 655 -113 689
+rect -79 655 -67 689
+rect -125 649 -67 655
+rect 67 689 125 695
+rect 67 655 79 689
+rect 113 655 125 689
+rect 67 649 125 655
+rect 259 689 317 695
+rect 259 655 271 689
+rect 305 655 317 689
+rect 259 649 317 655
+rect 451 689 509 695
+rect 451 655 463 689
+rect 497 655 509 689
+rect 451 649 509 655
+rect 643 689 701 695
+rect 643 655 655 689
+rect 689 655 701 689
+rect 643 649 701 655
+rect 835 689 893 695
+rect 835 655 847 689
+rect 881 655 893 689
+rect 835 649 893 655
+rect 1027 689 1085 695
+rect 1027 655 1039 689
+rect 1073 655 1085 689
+rect 1027 649 1085 655
+rect -1085 581 -1027 587
+rect -1085 547 -1073 581
+rect -1039 547 -1027 581
+rect -1085 541 -1027 547
+rect -893 581 -835 587
+rect -893 547 -881 581
+rect -847 547 -835 581
+rect -893 541 -835 547
+rect -701 581 -643 587
+rect -701 547 -689 581
+rect -655 547 -643 581
+rect -701 541 -643 547
+rect -509 581 -451 587
+rect -509 547 -497 581
+rect -463 547 -451 581
+rect -509 541 -451 547
+rect -317 581 -259 587
+rect -317 547 -305 581
+rect -271 547 -259 581
+rect -317 541 -259 547
+rect -125 581 -67 587
+rect -125 547 -113 581
+rect -79 547 -67 581
+rect -125 541 -67 547
+rect 67 581 125 587
+rect 67 547 79 581
+rect 113 547 125 581
+rect 67 541 125 547
+rect 259 581 317 587
+rect 259 547 271 581
+rect 305 547 317 581
+rect 259 541 317 547
+rect 451 581 509 587
+rect 451 547 463 581
+rect 497 547 509 581
+rect 451 541 509 547
+rect 643 581 701 587
+rect 643 547 655 581
+rect 689 547 701 581
+rect 643 541 701 547
+rect 835 581 893 587
+rect 835 547 847 581
+rect 881 547 893 581
+rect 835 541 893 547
+rect 1027 581 1085 587
+rect 1027 547 1039 581
+rect 1073 547 1085 581
+rect 1027 541 1085 547
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect -1181 71 -1123 77
+rect -1181 37 -1169 71
+rect -1135 37 -1123 71
+rect -1181 31 -1123 37
+rect -989 71 -931 77
+rect -989 37 -977 71
+rect -943 37 -931 71
+rect -989 31 -931 37
+rect -797 71 -739 77
+rect -797 37 -785 71
+rect -751 37 -739 71
+rect -797 31 -739 37
+rect -605 71 -547 77
+rect -605 37 -593 71
+rect -559 37 -547 71
+rect -605 31 -547 37
+rect -413 71 -355 77
+rect -413 37 -401 71
+rect -367 37 -355 71
+rect -413 31 -355 37
+rect -221 71 -163 77
+rect -221 37 -209 71
+rect -175 37 -163 71
+rect -221 31 -163 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 163 71 221 77
+rect 163 37 175 71
+rect 209 37 221 71
+rect 163 31 221 37
+rect 355 71 413 77
+rect 355 37 367 71
+rect 401 37 413 71
+rect 355 31 413 37
+rect 547 71 605 77
+rect 547 37 559 71
+rect 593 37 605 71
+rect 547 31 605 37
+rect 739 71 797 77
+rect 739 37 751 71
+rect 785 37 797 71
+rect 739 31 797 37
+rect 931 71 989 77
+rect 931 37 943 71
+rect 977 37 989 71
+rect 931 31 989 37
+rect 1123 71 1181 77
+rect 1123 37 1135 71
+rect 1169 37 1181 71
+rect 1123 31 1181 37
+rect -1181 -37 -1123 -31
+rect -1181 -71 -1169 -37
+rect -1135 -71 -1123 -37
+rect -1181 -77 -1123 -71
+rect -989 -37 -931 -31
+rect -989 -71 -977 -37
+rect -943 -71 -931 -37
+rect -989 -77 -931 -71
+rect -797 -37 -739 -31
+rect -797 -71 -785 -37
+rect -751 -71 -739 -37
+rect -797 -77 -739 -71
+rect -605 -37 -547 -31
+rect -605 -71 -593 -37
+rect -559 -71 -547 -37
+rect -605 -77 -547 -71
+rect -413 -37 -355 -31
+rect -413 -71 -401 -37
+rect -367 -71 -355 -37
+rect -413 -77 -355 -71
+rect -221 -37 -163 -31
+rect -221 -71 -209 -37
+rect -175 -71 -163 -37
+rect -221 -77 -163 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 163 -37 221 -31
+rect 163 -71 175 -37
+rect 209 -71 221 -37
+rect 163 -77 221 -71
+rect 355 -37 413 -31
+rect 355 -71 367 -37
+rect 401 -71 413 -37
+rect 355 -77 413 -71
+rect 547 -37 605 -31
+rect 547 -71 559 -37
+rect 593 -71 605 -37
+rect 547 -77 605 -71
+rect 739 -37 797 -31
+rect 739 -71 751 -37
+rect 785 -71 797 -37
+rect 739 -77 797 -71
+rect 931 -37 989 -31
+rect 931 -71 943 -37
+rect 977 -71 989 -37
+rect 931 -77 989 -71
+rect 1123 -37 1181 -31
+rect 1123 -71 1135 -37
+rect 1169 -71 1181 -37
+rect 1123 -77 1181 -71
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect -1085 -547 -1027 -541
+rect -1085 -581 -1073 -547
+rect -1039 -581 -1027 -547
+rect -1085 -587 -1027 -581
+rect -893 -547 -835 -541
+rect -893 -581 -881 -547
+rect -847 -581 -835 -547
+rect -893 -587 -835 -581
+rect -701 -547 -643 -541
+rect -701 -581 -689 -547
+rect -655 -581 -643 -547
+rect -701 -587 -643 -581
+rect -509 -547 -451 -541
+rect -509 -581 -497 -547
+rect -463 -581 -451 -547
+rect -509 -587 -451 -581
+rect -317 -547 -259 -541
+rect -317 -581 -305 -547
+rect -271 -581 -259 -547
+rect -317 -587 -259 -581
+rect -125 -547 -67 -541
+rect -125 -581 -113 -547
+rect -79 -581 -67 -547
+rect -125 -587 -67 -581
+rect 67 -547 125 -541
+rect 67 -581 79 -547
+rect 113 -581 125 -547
+rect 67 -587 125 -581
+rect 259 -547 317 -541
+rect 259 -581 271 -547
+rect 305 -581 317 -547
+rect 259 -587 317 -581
+rect 451 -547 509 -541
+rect 451 -581 463 -547
+rect 497 -581 509 -547
+rect 451 -587 509 -581
+rect 643 -547 701 -541
+rect 643 -581 655 -547
+rect 689 -581 701 -547
+rect 643 -587 701 -581
+rect 835 -547 893 -541
+rect 835 -581 847 -547
+rect 881 -581 893 -547
+rect 835 -587 893 -581
+rect 1027 -547 1085 -541
+rect 1027 -581 1039 -547
+rect 1073 -581 1085 -547
+rect 1027 -587 1085 -581
+rect -1085 -655 -1027 -649
+rect -1085 -689 -1073 -655
+rect -1039 -689 -1027 -655
+rect -1085 -695 -1027 -689
+rect -893 -655 -835 -649
+rect -893 -689 -881 -655
+rect -847 -689 -835 -655
+rect -893 -695 -835 -689
+rect -701 -655 -643 -649
+rect -701 -689 -689 -655
+rect -655 -689 -643 -655
+rect -701 -695 -643 -689
+rect -509 -655 -451 -649
+rect -509 -689 -497 -655
+rect -463 -689 -451 -655
+rect -509 -695 -451 -689
+rect -317 -655 -259 -649
+rect -317 -689 -305 -655
+rect -271 -689 -259 -655
+rect -317 -695 -259 -689
+rect -125 -655 -67 -649
+rect -125 -689 -113 -655
+rect -79 -689 -67 -655
+rect -125 -695 -67 -689
+rect 67 -655 125 -649
+rect 67 -689 79 -655
+rect 113 -689 125 -655
+rect 67 -695 125 -689
+rect 259 -655 317 -649
+rect 259 -689 271 -655
+rect 305 -689 317 -655
+rect 259 -695 317 -689
+rect 451 -655 509 -649
+rect 451 -689 463 -655
+rect 497 -689 509 -655
+rect 451 -695 509 -689
+rect 643 -655 701 -649
+rect 643 -689 655 -655
+rect 689 -689 701 -655
+rect 643 -695 701 -689
+rect 835 -655 893 -649
+rect 835 -689 847 -655
+rect 881 -689 893 -655
+rect 835 -695 893 -689
+rect 1027 -655 1085 -649
+rect 1027 -689 1039 -655
+rect 1073 -689 1085 -655
+rect 1027 -695 1085 -689
+rect -1223 -739 -1177 -727
+rect -1223 -1115 -1217 -739
+rect -1183 -1115 -1177 -739
+rect -1223 -1127 -1177 -1115
+rect -1127 -739 -1081 -727
+rect -1127 -1115 -1121 -739
+rect -1087 -1115 -1081 -739
+rect -1127 -1127 -1081 -1115
+rect -1031 -739 -985 -727
+rect -1031 -1115 -1025 -739
+rect -991 -1115 -985 -739
+rect -1031 -1127 -985 -1115
+rect -935 -739 -889 -727
+rect -935 -1115 -929 -739
+rect -895 -1115 -889 -739
+rect -935 -1127 -889 -1115
+rect -839 -739 -793 -727
+rect -839 -1115 -833 -739
+rect -799 -1115 -793 -739
+rect -839 -1127 -793 -1115
+rect -743 -739 -697 -727
+rect -743 -1115 -737 -739
+rect -703 -1115 -697 -739
+rect -743 -1127 -697 -1115
+rect -647 -739 -601 -727
+rect -647 -1115 -641 -739
+rect -607 -1115 -601 -739
+rect -647 -1127 -601 -1115
+rect -551 -739 -505 -727
+rect -551 -1115 -545 -739
+rect -511 -1115 -505 -739
+rect -551 -1127 -505 -1115
+rect -455 -739 -409 -727
+rect -455 -1115 -449 -739
+rect -415 -1115 -409 -739
+rect -455 -1127 -409 -1115
+rect -359 -739 -313 -727
+rect -359 -1115 -353 -739
+rect -319 -1115 -313 -739
+rect -359 -1127 -313 -1115
+rect -263 -739 -217 -727
+rect -263 -1115 -257 -739
+rect -223 -1115 -217 -739
+rect -263 -1127 -217 -1115
+rect -167 -739 -121 -727
+rect -167 -1115 -161 -739
+rect -127 -1115 -121 -739
+rect -167 -1127 -121 -1115
+rect -71 -739 -25 -727
+rect -71 -1115 -65 -739
+rect -31 -1115 -25 -739
+rect -71 -1127 -25 -1115
+rect 25 -739 71 -727
+rect 25 -1115 31 -739
+rect 65 -1115 71 -739
+rect 25 -1127 71 -1115
+rect 121 -739 167 -727
+rect 121 -1115 127 -739
+rect 161 -1115 167 -739
+rect 121 -1127 167 -1115
+rect 217 -739 263 -727
+rect 217 -1115 223 -739
+rect 257 -1115 263 -739
+rect 217 -1127 263 -1115
+rect 313 -739 359 -727
+rect 313 -1115 319 -739
+rect 353 -1115 359 -739
+rect 313 -1127 359 -1115
+rect 409 -739 455 -727
+rect 409 -1115 415 -739
+rect 449 -1115 455 -739
+rect 409 -1127 455 -1115
+rect 505 -739 551 -727
+rect 505 -1115 511 -739
+rect 545 -1115 551 -739
+rect 505 -1127 551 -1115
+rect 601 -739 647 -727
+rect 601 -1115 607 -739
+rect 641 -1115 647 -739
+rect 601 -1127 647 -1115
+rect 697 -739 743 -727
+rect 697 -1115 703 -739
+rect 737 -1115 743 -739
+rect 697 -1127 743 -1115
+rect 793 -739 839 -727
+rect 793 -1115 799 -739
+rect 833 -1115 839 -739
+rect 793 -1127 839 -1115
+rect 889 -739 935 -727
+rect 889 -1115 895 -739
+rect 929 -1115 935 -739
+rect 889 -1127 935 -1115
+rect 985 -739 1031 -727
+rect 985 -1115 991 -739
+rect 1025 -1115 1031 -739
+rect 985 -1127 1031 -1115
+rect 1081 -739 1127 -727
+rect 1081 -1115 1087 -739
+rect 1121 -1115 1127 -739
+rect 1081 -1127 1127 -1115
+rect 1177 -739 1223 -727
+rect 1177 -1115 1183 -739
+rect 1217 -1115 1223 -739
+rect 1177 -1127 1223 -1115
+rect -1181 -1165 -1123 -1159
+rect -1181 -1199 -1169 -1165
+rect -1135 -1199 -1123 -1165
+rect -1181 -1205 -1123 -1199
+rect -989 -1165 -931 -1159
+rect -989 -1199 -977 -1165
+rect -943 -1199 -931 -1165
+rect -989 -1205 -931 -1199
+rect -797 -1165 -739 -1159
+rect -797 -1199 -785 -1165
+rect -751 -1199 -739 -1165
+rect -797 -1205 -739 -1199
+rect -605 -1165 -547 -1159
+rect -605 -1199 -593 -1165
+rect -559 -1199 -547 -1165
+rect -605 -1205 -547 -1199
+rect -413 -1165 -355 -1159
+rect -413 -1199 -401 -1165
+rect -367 -1199 -355 -1165
+rect -413 -1205 -355 -1199
+rect -221 -1165 -163 -1159
+rect -221 -1199 -209 -1165
+rect -175 -1199 -163 -1165
+rect -221 -1205 -163 -1199
+rect -29 -1165 29 -1159
+rect -29 -1199 -17 -1165
+rect 17 -1199 29 -1165
+rect -29 -1205 29 -1199
+rect 163 -1165 221 -1159
+rect 163 -1199 175 -1165
+rect 209 -1199 221 -1165
+rect 163 -1205 221 -1199
+rect 355 -1165 413 -1159
+rect 355 -1199 367 -1165
+rect 401 -1199 413 -1165
+rect 355 -1205 413 -1199
+rect 547 -1165 605 -1159
+rect 547 -1199 559 -1165
+rect 593 -1199 605 -1165
+rect 547 -1205 605 -1199
+rect 739 -1165 797 -1159
+rect 739 -1199 751 -1165
+rect 785 -1199 797 -1165
+rect 739 -1205 797 -1199
+rect 931 -1165 989 -1159
+rect 931 -1199 943 -1165
+rect 977 -1199 989 -1165
+rect 931 -1205 989 -1199
+rect 1123 -1165 1181 -1159
+rect 1123 -1199 1135 -1165
+rect 1169 -1199 1181 -1165
+rect 1123 -1205 1181 -1199
+<< properties >>
+string FIXED_BBOX -1314 -1284 1314 1284
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 4 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.ext b/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.ext
new file mode 100644
index 0000000..64bdac4
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.ext
@@ -0,0 +1,46 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_207_n200#" 929 163.598 207 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_111_n200#" 882 20.3377 111 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_15_n200#" 882 20.3377 15 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n81_n200#" 882 20.3377 -81 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n177_n200#" 882 20.3377 -177 -200 ndif 0 0 0 0 0 0 0 0 26400 932 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n269_n200#" 929 163.598 -269 -200 ndif 0 0 0 0 0 0 0 0 24800 924 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_159_n288#" 837 143.434 159 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n288#" 837 106.785 -33 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_63_222#" 837 126.676 63 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n225_n288#" 837 143.688 -225 -288 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n129_222#" 837 126.93 -129 222 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17796 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n371_n374#" 0 0 -371 -374 ppd 0 0 0 0 0 0 0 0 0 0 96696 5688 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 96696 5688 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_159_n288#" "a_63_222#" 14.1667
+cap "a_n177_n200#" "a_n269_n200#" 479.458
+cap "a_111_n200#" "a_63_222#" 6.25956
+cap "a_159_n288#" "a_207_n200#" 6.25956
+cap "a_111_n200#" "a_207_n200#" 479.458
+cap "a_n225_n288#" "a_n129_222#" 14.1667
+cap "a_n81_n200#" "a_n129_222#" 6.25956
+cap "a_n33_n288#" "a_15_n200#" 6.25956
+cap "a_n129_222#" "a_63_222#" 28.5878
+cap "a_n33_n288#" "a_159_n288#" 28.5878
+cap "a_n225_n288#" "a_n269_n200#" 6.25956
+cap "a_111_n200#" "a_15_n200#" 479.458
+cap "a_n225_n288#" "a_n177_n200#" 6.25956
+cap "a_n81_n200#" "a_n177_n200#" 479.458
+cap "a_159_n288#" "a_111_n200#" 6.25956
+cap "a_n33_n288#" "a_n225_n288#" 28.5878
+cap "a_n177_n200#" "a_n129_222#" 6.25956
+cap "a_n33_n288#" "a_n81_n200#" 6.25956
+cap "a_n33_n288#" "a_63_222#" 14.1667
+cap "a_n33_n288#" "a_n129_222#" 14.1667
+cap "a_15_n200#" "a_n81_n200#" 479.458
+cap "a_15_n200#" "a_63_222#" 6.25956
+device msubckt sky130_fd_pr__nfet_01v8 177 -200 178 -199 l=30 w=400 "a_n371_n374#" "a_159_n288#" 60 0 "a_111_n200#" 400 0 "a_207_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 81 -200 82 -199 l=30 w=400 "a_n371_n374#" "a_63_222#" 60 0 "a_15_n200#" 400 0 "a_111_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -15 -200 -14 -199 l=30 w=400 "a_n371_n374#" "a_n33_n288#" 60 0 "a_n81_n200#" 400 0 "a_15_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -111 -200 -110 -199 l=30 w=400 "a_n371_n374#" "a_n129_222#" 60 0 "a_n177_n200#" 400 0 "a_n81_n200#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -207 -200 -206 -199 l=30 w=400 "a_n371_n374#" "a_n225_n288#" 60 0 "a_n269_n200#" 400 0 "a_n177_n200#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.mag b/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.mag
new file mode 100644
index 0000000..c1faf17
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_SC2JGL.mag
@@ -0,0 +1,205 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -125 272 -67 278
+rect 67 272 125 278
+rect -125 238 -113 272
+rect 67 238 79 272
+rect -125 232 -67 238
+rect 67 232 125 238
+rect -221 -238 -163 -232
+rect -29 -238 29 -232
+rect 163 -238 221 -232
+rect -221 -272 -209 -238
+rect -29 -272 -17 -238
+rect 163 -272 175 -238
+rect -221 -278 -163 -272
+rect -29 -278 29 -272
+rect 163 -278 221 -272
+<< pwell >>
+rect -407 -410 407 410
+<< nmos >>
+rect -207 -200 -177 200
+rect -111 -200 -81 200
+rect -15 -200 15 200
+rect 81 -200 111 200
+rect 177 -200 207 200
+<< ndiff >>
+rect -269 188 -207 200
+rect -269 -188 -257 188
+rect -223 -188 -207 188
+rect -269 -200 -207 -188
+rect -177 188 -111 200
+rect -177 -188 -161 188
+rect -127 -188 -111 188
+rect -177 -200 -111 -188
+rect -81 188 -15 200
+rect -81 -188 -65 188
+rect -31 -188 -15 188
+rect -81 -200 -15 -188
+rect 15 188 81 200
+rect 15 -188 31 188
+rect 65 -188 81 188
+rect 15 -200 81 -188
+rect 111 188 177 200
+rect 111 -188 127 188
+rect 161 -188 177 188
+rect 111 -200 177 -188
+rect 207 188 269 200
+rect 207 -188 223 188
+rect 257 -188 269 188
+rect 207 -200 269 -188
+<< ndiffc >>
+rect -257 -188 -223 188
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+rect 223 -188 257 188
+<< psubdiff >>
+rect -371 340 -275 374
+rect 275 340 371 374
+rect -371 278 -337 340
+rect 337 278 371 340
+rect -371 -340 -337 -278
+rect 337 -340 371 -278
+rect -371 -374 -275 -340
+rect 275 -374 371 -340
+<< psubdiffcont >>
+rect -275 340 275 374
+rect -371 -278 -337 278
+rect 337 -278 371 278
+rect -275 -374 275 -340
+<< poly >>
+rect -129 272 -63 288
+rect -129 238 -113 272
+rect -79 238 -63 272
+rect -207 200 -177 226
+rect -129 222 -63 238
+rect 63 272 129 288
+rect 63 238 79 272
+rect 113 238 129 272
+rect -111 200 -81 222
+rect -15 200 15 226
+rect 63 222 129 238
+rect 81 200 111 222
+rect 177 200 207 226
+rect -207 -222 -177 -200
+rect -225 -238 -159 -222
+rect -111 -226 -81 -200
+rect -15 -222 15 -200
+rect -225 -272 -209 -238
+rect -175 -272 -159 -238
+rect -225 -288 -159 -272
+rect -33 -238 33 -222
+rect 81 -226 111 -200
+rect 177 -222 207 -200
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect -33 -288 33 -272
+rect 159 -238 225 -222
+rect 159 -272 175 -238
+rect 209 -272 225 -238
+rect 159 -288 225 -272
+<< polycont >>
+rect -113 238 -79 272
+rect 79 238 113 272
+rect -209 -272 -175 -238
+rect -17 -272 17 -238
+rect 175 -272 209 -238
+<< locali >>
+rect -371 340 -275 374
+rect 275 340 371 374
+rect -371 278 -337 340
+rect 337 278 371 340
+rect -129 238 -113 272
+rect -79 238 -63 272
+rect 63 238 79 272
+rect 113 238 129 272
+rect -257 188 -223 204
+rect -257 -204 -223 -188
+rect -161 188 -127 204
+rect -161 -204 -127 -188
+rect -65 188 -31 204
+rect -65 -204 -31 -188
+rect 31 188 65 204
+rect 31 -204 65 -188
+rect 127 188 161 204
+rect 127 -204 161 -188
+rect 223 188 257 204
+rect 223 -204 257 -188
+rect -225 -272 -209 -238
+rect -175 -272 -159 -238
+rect -33 -272 -17 -238
+rect 17 -272 33 -238
+rect 159 -272 175 -238
+rect 209 -272 225 -238
+rect -371 -340 -337 -278
+rect 337 -340 371 -278
+rect -371 -374 -275 -340
+rect 275 -374 371 -340
+<< viali >>
+rect -113 238 -79 272
+rect 79 238 113 272
+rect -257 -188 -223 188
+rect -161 -188 -127 188
+rect -65 -188 -31 188
+rect 31 -188 65 188
+rect 127 -188 161 188
+rect 223 -188 257 188
+rect -209 -272 -175 -238
+rect -17 -272 17 -238
+rect 175 -272 209 -238
+<< metal1 >>
+rect -125 272 -67 278
+rect -125 238 -113 272
+rect -79 238 -67 272
+rect -125 232 -67 238
+rect 67 272 125 278
+rect 67 238 79 272
+rect 113 238 125 272
+rect 67 232 125 238
+rect -263 188 -217 200
+rect -263 -188 -257 188
+rect -223 -188 -217 188
+rect -263 -200 -217 -188
+rect -167 188 -121 200
+rect -167 -188 -161 188
+rect -127 -188 -121 188
+rect -167 -200 -121 -188
+rect -71 188 -25 200
+rect -71 -188 -65 188
+rect -31 -188 -25 188
+rect -71 -200 -25 -188
+rect 25 188 71 200
+rect 25 -188 31 188
+rect 65 -188 71 188
+rect 25 -200 71 -188
+rect 121 188 167 200
+rect 121 -188 127 188
+rect 161 -188 167 188
+rect 121 -200 167 -188
+rect 217 188 263 200
+rect 217 -188 223 188
+rect 257 -188 263 188
+rect 217 -200 263 -188
+rect -221 -238 -163 -232
+rect -221 -272 -209 -238
+rect -175 -272 -163 -238
+rect -221 -278 -163 -272
+rect -29 -238 29 -232
+rect -29 -272 -17 -238
+rect 17 -272 29 -238
+rect -29 -278 29 -272
+rect 163 -238 221 -232
+rect 163 -272 175 -238
+rect 209 -272 221 -238
+rect 163 -278 221 -272
+<< properties >>
+string FIXED_BBOX -354 -357 354 357
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.150 m 1 nf 5 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_ZRA4RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_ZRA4RB.mag
new file mode 100644
index 0000000..1f11bd8
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_ZRA4RB.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645781187
+<< error_p >>
+rect -1205 581 -1147 587
+rect -1009 581 -951 587
+rect -813 581 -755 587
+rect -617 581 -559 587
+rect -421 581 -363 587
+rect -225 581 -167 587
+rect -29 581 29 587
+rect 167 581 225 587
+rect 363 581 421 587
+rect 559 581 617 587
+rect 755 581 813 587
+rect 951 581 1009 587
+rect 1147 581 1205 587
+rect -1205 547 -1193 581
+rect -1009 547 -997 581
+rect -813 547 -801 581
+rect -617 547 -605 581
+rect -421 547 -409 581
+rect -225 547 -213 581
+rect -29 547 -17 581
+rect 167 547 179 581
+rect 363 547 375 581
+rect 559 547 571 581
+rect 755 547 767 581
+rect 951 547 963 581
+rect 1147 547 1159 581
+rect -1205 541 -1147 547
+rect -1009 541 -951 547
+rect -813 541 -755 547
+rect -617 541 -559 547
+rect -421 541 -363 547
+rect -225 541 -167 547
+rect -29 541 29 547
+rect 167 541 225 547
+rect 363 541 421 547
+rect 559 541 617 547
+rect 755 541 813 547
+rect 951 541 1009 547
+rect 1147 541 1205 547
+rect -1107 71 -1049 77
+rect -911 71 -853 77
+rect -715 71 -657 77
+rect -519 71 -461 77
+rect -323 71 -265 77
+rect -127 71 -69 77
+rect 69 71 127 77
+rect 265 71 323 77
+rect 461 71 519 77
+rect 657 71 715 77
+rect 853 71 911 77
+rect 1049 71 1107 77
+rect -1107 37 -1095 71
+rect -911 37 -899 71
+rect -715 37 -703 71
+rect -519 37 -507 71
+rect -323 37 -311 71
+rect -127 37 -115 71
+rect 69 37 81 71
+rect 265 37 277 71
+rect 461 37 473 71
+rect 657 37 669 71
+rect 853 37 865 71
+rect 1049 37 1061 71
+rect -1107 31 -1049 37
+rect -911 31 -853 37
+rect -715 31 -657 37
+rect -519 31 -461 37
+rect -323 31 -265 37
+rect -127 31 -69 37
+rect 69 31 127 37
+rect 265 31 323 37
+rect 461 31 519 37
+rect 657 31 715 37
+rect 853 31 911 37
+rect 1049 31 1107 37
+rect -1107 -37 -1049 -31
+rect -911 -37 -853 -31
+rect -715 -37 -657 -31
+rect -519 -37 -461 -31
+rect -323 -37 -265 -31
+rect -127 -37 -69 -31
+rect 69 -37 127 -31
+rect 265 -37 323 -31
+rect 461 -37 519 -31
+rect 657 -37 715 -31
+rect 853 -37 911 -31
+rect 1049 -37 1107 -31
+rect -1107 -71 -1095 -37
+rect -911 -71 -899 -37
+rect -715 -71 -703 -37
+rect -519 -71 -507 -37
+rect -323 -71 -311 -37
+rect -127 -71 -115 -37
+rect 69 -71 81 -37
+rect 265 -71 277 -37
+rect 461 -71 473 -37
+rect 657 -71 669 -37
+rect 853 -71 865 -37
+rect 1049 -71 1061 -37
+rect -1107 -77 -1049 -71
+rect -911 -77 -853 -71
+rect -715 -77 -657 -71
+rect -519 -77 -461 -71
+rect -323 -77 -265 -71
+rect -127 -77 -69 -71
+rect 69 -77 127 -71
+rect 265 -77 323 -71
+rect 461 -77 519 -71
+rect 657 -77 715 -71
+rect 853 -77 911 -71
+rect 1049 -77 1107 -71
+rect -1205 -547 -1147 -541
+rect -1009 -547 -951 -541
+rect -813 -547 -755 -541
+rect -617 -547 -559 -541
+rect -421 -547 -363 -541
+rect -225 -547 -167 -541
+rect -29 -547 29 -541
+rect 167 -547 225 -541
+rect 363 -547 421 -541
+rect 559 -547 617 -541
+rect 755 -547 813 -541
+rect 951 -547 1009 -541
+rect 1147 -547 1205 -541
+rect -1205 -581 -1193 -547
+rect -1009 -581 -997 -547
+rect -813 -581 -801 -547
+rect -617 -581 -605 -547
+rect -421 -581 -409 -547
+rect -225 -581 -213 -547
+rect -29 -581 -17 -547
+rect 167 -581 179 -547
+rect 363 -581 375 -547
+rect 559 -581 571 -547
+rect 755 -581 767 -547
+rect 951 -581 963 -547
+rect 1147 -581 1159 -547
+rect -1205 -587 -1147 -581
+rect -1009 -587 -951 -581
+rect -813 -587 -755 -581
+rect -617 -587 -559 -581
+rect -421 -587 -363 -581
+rect -225 -587 -167 -581
+rect -29 -587 29 -581
+rect 167 -587 225 -581
+rect 363 -587 421 -581
+rect 559 -587 617 -581
+rect 755 -587 813 -581
+rect 951 -587 1009 -581
+rect 1147 -587 1205 -581
+<< pwell >>
+rect -1392 -719 1392 719
+<< nmos >>
+rect -1196 109 -1156 509
+rect -1098 109 -1058 509
+rect -1000 109 -960 509
+rect -902 109 -862 509
+rect -804 109 -764 509
+rect -706 109 -666 509
+rect -608 109 -568 509
+rect -510 109 -470 509
+rect -412 109 -372 509
+rect -314 109 -274 509
+rect -216 109 -176 509
+rect -118 109 -78 509
+rect -20 109 20 509
+rect 78 109 118 509
+rect 176 109 216 509
+rect 274 109 314 509
+rect 372 109 412 509
+rect 470 109 510 509
+rect 568 109 608 509
+rect 666 109 706 509
+rect 764 109 804 509
+rect 862 109 902 509
+rect 960 109 1000 509
+rect 1058 109 1098 509
+rect 1156 109 1196 509
+rect -1196 -509 -1156 -109
+rect -1098 -509 -1058 -109
+rect -1000 -509 -960 -109
+rect -902 -509 -862 -109
+rect -804 -509 -764 -109
+rect -706 -509 -666 -109
+rect -608 -509 -568 -109
+rect -510 -509 -470 -109
+rect -412 -509 -372 -109
+rect -314 -509 -274 -109
+rect -216 -509 -176 -109
+rect -118 -509 -78 -109
+rect -20 -509 20 -109
+rect 78 -509 118 -109
+rect 176 -509 216 -109
+rect 274 -509 314 -109
+rect 372 -509 412 -109
+rect 470 -509 510 -109
+rect 568 -509 608 -109
+rect 666 -509 706 -109
+rect 764 -509 804 -109
+rect 862 -509 902 -109
+rect 960 -509 1000 -109
+rect 1058 -509 1098 -109
+rect 1156 -509 1196 -109
+<< ndiff >>
+rect -1254 497 -1196 509
+rect -1254 121 -1242 497
+rect -1208 121 -1196 497
+rect -1254 109 -1196 121
+rect -1156 497 -1098 509
+rect -1156 121 -1144 497
+rect -1110 121 -1098 497
+rect -1156 109 -1098 121
+rect -1058 497 -1000 509
+rect -1058 121 -1046 497
+rect -1012 121 -1000 497
+rect -1058 109 -1000 121
+rect -960 497 -902 509
+rect -960 121 -948 497
+rect -914 121 -902 497
+rect -960 109 -902 121
+rect -862 497 -804 509
+rect -862 121 -850 497
+rect -816 121 -804 497
+rect -862 109 -804 121
+rect -764 497 -706 509
+rect -764 121 -752 497
+rect -718 121 -706 497
+rect -764 109 -706 121
+rect -666 497 -608 509
+rect -666 121 -654 497
+rect -620 121 -608 497
+rect -666 109 -608 121
+rect -568 497 -510 509
+rect -568 121 -556 497
+rect -522 121 -510 497
+rect -568 109 -510 121
+rect -470 497 -412 509
+rect -470 121 -458 497
+rect -424 121 -412 497
+rect -470 109 -412 121
+rect -372 497 -314 509
+rect -372 121 -360 497
+rect -326 121 -314 497
+rect -372 109 -314 121
+rect -274 497 -216 509
+rect -274 121 -262 497
+rect -228 121 -216 497
+rect -274 109 -216 121
+rect -176 497 -118 509
+rect -176 121 -164 497
+rect -130 121 -118 497
+rect -176 109 -118 121
+rect -78 497 -20 509
+rect -78 121 -66 497
+rect -32 121 -20 497
+rect -78 109 -20 121
+rect 20 497 78 509
+rect 20 121 32 497
+rect 66 121 78 497
+rect 20 109 78 121
+rect 118 497 176 509
+rect 118 121 130 497
+rect 164 121 176 497
+rect 118 109 176 121
+rect 216 497 274 509
+rect 216 121 228 497
+rect 262 121 274 497
+rect 216 109 274 121
+rect 314 497 372 509
+rect 314 121 326 497
+rect 360 121 372 497
+rect 314 109 372 121
+rect 412 497 470 509
+rect 412 121 424 497
+rect 458 121 470 497
+rect 412 109 470 121
+rect 510 497 568 509
+rect 510 121 522 497
+rect 556 121 568 497
+rect 510 109 568 121
+rect 608 497 666 509
+rect 608 121 620 497
+rect 654 121 666 497
+rect 608 109 666 121
+rect 706 497 764 509
+rect 706 121 718 497
+rect 752 121 764 497
+rect 706 109 764 121
+rect 804 497 862 509
+rect 804 121 816 497
+rect 850 121 862 497
+rect 804 109 862 121
+rect 902 497 960 509
+rect 902 121 914 497
+rect 948 121 960 497
+rect 902 109 960 121
+rect 1000 497 1058 509
+rect 1000 121 1012 497
+rect 1046 121 1058 497
+rect 1000 109 1058 121
+rect 1098 497 1156 509
+rect 1098 121 1110 497
+rect 1144 121 1156 497
+rect 1098 109 1156 121
+rect 1196 497 1254 509
+rect 1196 121 1208 497
+rect 1242 121 1254 497
+rect 1196 109 1254 121
+rect -1254 -121 -1196 -109
+rect -1254 -497 -1242 -121
+rect -1208 -497 -1196 -121
+rect -1254 -509 -1196 -497
+rect -1156 -121 -1098 -109
+rect -1156 -497 -1144 -121
+rect -1110 -497 -1098 -121
+rect -1156 -509 -1098 -497
+rect -1058 -121 -1000 -109
+rect -1058 -497 -1046 -121
+rect -1012 -497 -1000 -121
+rect -1058 -509 -1000 -497
+rect -960 -121 -902 -109
+rect -960 -497 -948 -121
+rect -914 -497 -902 -121
+rect -960 -509 -902 -497
+rect -862 -121 -804 -109
+rect -862 -497 -850 -121
+rect -816 -497 -804 -121
+rect -862 -509 -804 -497
+rect -764 -121 -706 -109
+rect -764 -497 -752 -121
+rect -718 -497 -706 -121
+rect -764 -509 -706 -497
+rect -666 -121 -608 -109
+rect -666 -497 -654 -121
+rect -620 -497 -608 -121
+rect -666 -509 -608 -497
+rect -568 -121 -510 -109
+rect -568 -497 -556 -121
+rect -522 -497 -510 -121
+rect -568 -509 -510 -497
+rect -470 -121 -412 -109
+rect -470 -497 -458 -121
+rect -424 -497 -412 -121
+rect -470 -509 -412 -497
+rect -372 -121 -314 -109
+rect -372 -497 -360 -121
+rect -326 -497 -314 -121
+rect -372 -509 -314 -497
+rect -274 -121 -216 -109
+rect -274 -497 -262 -121
+rect -228 -497 -216 -121
+rect -274 -509 -216 -497
+rect -176 -121 -118 -109
+rect -176 -497 -164 -121
+rect -130 -497 -118 -121
+rect -176 -509 -118 -497
+rect -78 -121 -20 -109
+rect -78 -497 -66 -121
+rect -32 -497 -20 -121
+rect -78 -509 -20 -497
+rect 20 -121 78 -109
+rect 20 -497 32 -121
+rect 66 -497 78 -121
+rect 20 -509 78 -497
+rect 118 -121 176 -109
+rect 118 -497 130 -121
+rect 164 -497 176 -121
+rect 118 -509 176 -497
+rect 216 -121 274 -109
+rect 216 -497 228 -121
+rect 262 -497 274 -121
+rect 216 -509 274 -497
+rect 314 -121 372 -109
+rect 314 -497 326 -121
+rect 360 -497 372 -121
+rect 314 -509 372 -497
+rect 412 -121 470 -109
+rect 412 -497 424 -121
+rect 458 -497 470 -121
+rect 412 -509 470 -497
+rect 510 -121 568 -109
+rect 510 -497 522 -121
+rect 556 -497 568 -121
+rect 510 -509 568 -497
+rect 608 -121 666 -109
+rect 608 -497 620 -121
+rect 654 -497 666 -121
+rect 608 -509 666 -497
+rect 706 -121 764 -109
+rect 706 -497 718 -121
+rect 752 -497 764 -121
+rect 706 -509 764 -497
+rect 804 -121 862 -109
+rect 804 -497 816 -121
+rect 850 -497 862 -121
+rect 804 -509 862 -497
+rect 902 -121 960 -109
+rect 902 -497 914 -121
+rect 948 -497 960 -121
+rect 902 -509 960 -497
+rect 1000 -121 1058 -109
+rect 1000 -497 1012 -121
+rect 1046 -497 1058 -121
+rect 1000 -509 1058 -497
+rect 1098 -121 1156 -109
+rect 1098 -497 1110 -121
+rect 1144 -497 1156 -121
+rect 1098 -509 1156 -497
+rect 1196 -121 1254 -109
+rect 1196 -497 1208 -121
+rect 1242 -497 1254 -121
+rect 1196 -509 1254 -497
+<< ndiffc >>
+rect -1242 121 -1208 497
+rect -1144 121 -1110 497
+rect -1046 121 -1012 497
+rect -948 121 -914 497
+rect -850 121 -816 497
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect 816 121 850 497
+rect 914 121 948 497
+rect 1012 121 1046 497
+rect 1110 121 1144 497
+rect 1208 121 1242 497
+rect -1242 -497 -1208 -121
+rect -1144 -497 -1110 -121
+rect -1046 -497 -1012 -121
+rect -948 -497 -914 -121
+rect -850 -497 -816 -121
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect 816 -497 850 -121
+rect 914 -497 948 -121
+rect 1012 -497 1046 -121
+rect 1110 -497 1144 -121
+rect 1208 -497 1242 -121
+<< psubdiff >>
+rect -1356 649 -1260 683
+rect 1260 649 1356 683
+rect -1356 587 -1322 649
+rect 1322 587 1356 649
+rect -1356 -649 -1322 -587
+rect 1322 -649 1356 -587
+rect -1356 -683 -1260 -649
+rect 1260 -683 1356 -649
+<< psubdiffcont >>
+rect -1260 649 1260 683
+rect -1356 -587 -1322 587
+rect 1322 -587 1356 587
+rect -1260 -683 1260 -649
+<< poly >>
+rect -1209 581 -1143 597
+rect -1209 547 -1193 581
+rect -1159 547 -1143 581
+rect -1209 531 -1143 547
+rect -1013 581 -947 597
+rect -1013 547 -997 581
+rect -963 547 -947 581
+rect -1196 509 -1156 531
+rect -1098 509 -1058 535
+rect -1013 531 -947 547
+rect -817 581 -751 597
+rect -817 547 -801 581
+rect -767 547 -751 581
+rect -1000 509 -960 531
+rect -902 509 -862 535
+rect -817 531 -751 547
+rect -621 581 -555 597
+rect -621 547 -605 581
+rect -571 547 -555 581
+rect -804 509 -764 531
+rect -706 509 -666 535
+rect -621 531 -555 547
+rect -425 581 -359 597
+rect -425 547 -409 581
+rect -375 547 -359 581
+rect -608 509 -568 531
+rect -510 509 -470 535
+rect -425 531 -359 547
+rect -229 581 -163 597
+rect -229 547 -213 581
+rect -179 547 -163 581
+rect -412 509 -372 531
+rect -314 509 -274 535
+rect -229 531 -163 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -216 509 -176 531
+rect -118 509 -78 535
+rect -33 531 33 547
+rect 163 581 229 597
+rect 163 547 179 581
+rect 213 547 229 581
+rect -20 509 20 531
+rect 78 509 118 535
+rect 163 531 229 547
+rect 359 581 425 597
+rect 359 547 375 581
+rect 409 547 425 581
+rect 176 509 216 531
+rect 274 509 314 535
+rect 359 531 425 547
+rect 555 581 621 597
+rect 555 547 571 581
+rect 605 547 621 581
+rect 372 509 412 531
+rect 470 509 510 535
+rect 555 531 621 547
+rect 751 581 817 597
+rect 751 547 767 581
+rect 801 547 817 581
+rect 568 509 608 531
+rect 666 509 706 535
+rect 751 531 817 547
+rect 947 581 1013 597
+rect 947 547 963 581
+rect 997 547 1013 581
+rect 764 509 804 531
+rect 862 509 902 535
+rect 947 531 1013 547
+rect 1143 581 1209 597
+rect 1143 547 1159 581
+rect 1193 547 1209 581
+rect 960 509 1000 531
+rect 1058 509 1098 535
+rect 1143 531 1209 547
+rect 1156 509 1196 531
+rect -1196 83 -1156 109
+rect -1098 87 -1058 109
+rect -1111 71 -1045 87
+rect -1000 83 -960 109
+rect -902 87 -862 109
+rect -1111 37 -1095 71
+rect -1061 37 -1045 71
+rect -1111 21 -1045 37
+rect -915 71 -849 87
+rect -804 83 -764 109
+rect -706 87 -666 109
+rect -915 37 -899 71
+rect -865 37 -849 71
+rect -915 21 -849 37
+rect -719 71 -653 87
+rect -608 83 -568 109
+rect -510 87 -470 109
+rect -719 37 -703 71
+rect -669 37 -653 71
+rect -719 21 -653 37
+rect -523 71 -457 87
+rect -412 83 -372 109
+rect -314 87 -274 109
+rect -523 37 -507 71
+rect -473 37 -457 71
+rect -523 21 -457 37
+rect -327 71 -261 87
+rect -216 83 -176 109
+rect -118 87 -78 109
+rect -327 37 -311 71
+rect -277 37 -261 71
+rect -327 21 -261 37
+rect -131 71 -65 87
+rect -20 83 20 109
+rect 78 87 118 109
+rect -131 37 -115 71
+rect -81 37 -65 71
+rect -131 21 -65 37
+rect 65 71 131 87
+rect 176 83 216 109
+rect 274 87 314 109
+rect 65 37 81 71
+rect 115 37 131 71
+rect 65 21 131 37
+rect 261 71 327 87
+rect 372 83 412 109
+rect 470 87 510 109
+rect 261 37 277 71
+rect 311 37 327 71
+rect 261 21 327 37
+rect 457 71 523 87
+rect 568 83 608 109
+rect 666 87 706 109
+rect 457 37 473 71
+rect 507 37 523 71
+rect 457 21 523 37
+rect 653 71 719 87
+rect 764 83 804 109
+rect 862 87 902 109
+rect 653 37 669 71
+rect 703 37 719 71
+rect 653 21 719 37
+rect 849 71 915 87
+rect 960 83 1000 109
+rect 1058 87 1098 109
+rect 849 37 865 71
+rect 899 37 915 71
+rect 849 21 915 37
+rect 1045 71 1111 87
+rect 1156 83 1196 109
+rect 1045 37 1061 71
+rect 1095 37 1111 71
+rect 1045 21 1111 37
+rect -1111 -37 -1045 -21
+rect -1111 -71 -1095 -37
+rect -1061 -71 -1045 -37
+rect -1196 -109 -1156 -83
+rect -1111 -87 -1045 -71
+rect -915 -37 -849 -21
+rect -915 -71 -899 -37
+rect -865 -71 -849 -37
+rect -1098 -109 -1058 -87
+rect -1000 -109 -960 -83
+rect -915 -87 -849 -71
+rect -719 -37 -653 -21
+rect -719 -71 -703 -37
+rect -669 -71 -653 -37
+rect -902 -109 -862 -87
+rect -804 -109 -764 -83
+rect -719 -87 -653 -71
+rect -523 -37 -457 -21
+rect -523 -71 -507 -37
+rect -473 -71 -457 -37
+rect -706 -109 -666 -87
+rect -608 -109 -568 -83
+rect -523 -87 -457 -71
+rect -327 -37 -261 -21
+rect -327 -71 -311 -37
+rect -277 -71 -261 -37
+rect -510 -109 -470 -87
+rect -412 -109 -372 -83
+rect -327 -87 -261 -71
+rect -131 -37 -65 -21
+rect -131 -71 -115 -37
+rect -81 -71 -65 -37
+rect -314 -109 -274 -87
+rect -216 -109 -176 -83
+rect -131 -87 -65 -71
+rect 65 -37 131 -21
+rect 65 -71 81 -37
+rect 115 -71 131 -37
+rect -118 -109 -78 -87
+rect -20 -109 20 -83
+rect 65 -87 131 -71
+rect 261 -37 327 -21
+rect 261 -71 277 -37
+rect 311 -71 327 -37
+rect 78 -109 118 -87
+rect 176 -109 216 -83
+rect 261 -87 327 -71
+rect 457 -37 523 -21
+rect 457 -71 473 -37
+rect 507 -71 523 -37
+rect 274 -109 314 -87
+rect 372 -109 412 -83
+rect 457 -87 523 -71
+rect 653 -37 719 -21
+rect 653 -71 669 -37
+rect 703 -71 719 -37
+rect 470 -109 510 -87
+rect 568 -109 608 -83
+rect 653 -87 719 -71
+rect 849 -37 915 -21
+rect 849 -71 865 -37
+rect 899 -71 915 -37
+rect 666 -109 706 -87
+rect 764 -109 804 -83
+rect 849 -87 915 -71
+rect 1045 -37 1111 -21
+rect 1045 -71 1061 -37
+rect 1095 -71 1111 -37
+rect 862 -109 902 -87
+rect 960 -109 1000 -83
+rect 1045 -87 1111 -71
+rect 1058 -109 1098 -87
+rect 1156 -109 1196 -83
+rect -1196 -531 -1156 -509
+rect -1209 -547 -1143 -531
+rect -1098 -535 -1058 -509
+rect -1000 -531 -960 -509
+rect -1209 -581 -1193 -547
+rect -1159 -581 -1143 -547
+rect -1209 -597 -1143 -581
+rect -1013 -547 -947 -531
+rect -902 -535 -862 -509
+rect -804 -531 -764 -509
+rect -1013 -581 -997 -547
+rect -963 -581 -947 -547
+rect -1013 -597 -947 -581
+rect -817 -547 -751 -531
+rect -706 -535 -666 -509
+rect -608 -531 -568 -509
+rect -817 -581 -801 -547
+rect -767 -581 -751 -547
+rect -817 -597 -751 -581
+rect -621 -547 -555 -531
+rect -510 -535 -470 -509
+rect -412 -531 -372 -509
+rect -621 -581 -605 -547
+rect -571 -581 -555 -547
+rect -621 -597 -555 -581
+rect -425 -547 -359 -531
+rect -314 -535 -274 -509
+rect -216 -531 -176 -509
+rect -425 -581 -409 -547
+rect -375 -581 -359 -547
+rect -425 -597 -359 -581
+rect -229 -547 -163 -531
+rect -118 -535 -78 -509
+rect -20 -531 20 -509
+rect -229 -581 -213 -547
+rect -179 -581 -163 -547
+rect -229 -597 -163 -581
+rect -33 -547 33 -531
+rect 78 -535 118 -509
+rect 176 -531 216 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 163 -547 229 -531
+rect 274 -535 314 -509
+rect 372 -531 412 -509
+rect 163 -581 179 -547
+rect 213 -581 229 -547
+rect 163 -597 229 -581
+rect 359 -547 425 -531
+rect 470 -535 510 -509
+rect 568 -531 608 -509
+rect 359 -581 375 -547
+rect 409 -581 425 -547
+rect 359 -597 425 -581
+rect 555 -547 621 -531
+rect 666 -535 706 -509
+rect 764 -531 804 -509
+rect 555 -581 571 -547
+rect 605 -581 621 -547
+rect 555 -597 621 -581
+rect 751 -547 817 -531
+rect 862 -535 902 -509
+rect 960 -531 1000 -509
+rect 751 -581 767 -547
+rect 801 -581 817 -547
+rect 751 -597 817 -581
+rect 947 -547 1013 -531
+rect 1058 -535 1098 -509
+rect 1156 -531 1196 -509
+rect 947 -581 963 -547
+rect 997 -581 1013 -547
+rect 947 -597 1013 -581
+rect 1143 -547 1209 -531
+rect 1143 -581 1159 -547
+rect 1193 -581 1209 -547
+rect 1143 -597 1209 -581
+<< polycont >>
+rect -1193 547 -1159 581
+rect -997 547 -963 581
+rect -801 547 -767 581
+rect -605 547 -571 581
+rect -409 547 -375 581
+rect -213 547 -179 581
+rect -17 547 17 581
+rect 179 547 213 581
+rect 375 547 409 581
+rect 571 547 605 581
+rect 767 547 801 581
+rect 963 547 997 581
+rect 1159 547 1193 581
+rect -1095 37 -1061 71
+rect -899 37 -865 71
+rect -703 37 -669 71
+rect -507 37 -473 71
+rect -311 37 -277 71
+rect -115 37 -81 71
+rect 81 37 115 71
+rect 277 37 311 71
+rect 473 37 507 71
+rect 669 37 703 71
+rect 865 37 899 71
+rect 1061 37 1095 71
+rect -1095 -71 -1061 -37
+rect -899 -71 -865 -37
+rect -703 -71 -669 -37
+rect -507 -71 -473 -37
+rect -311 -71 -277 -37
+rect -115 -71 -81 -37
+rect 81 -71 115 -37
+rect 277 -71 311 -37
+rect 473 -71 507 -37
+rect 669 -71 703 -37
+rect 865 -71 899 -37
+rect 1061 -71 1095 -37
+rect -1193 -581 -1159 -547
+rect -997 -581 -963 -547
+rect -801 -581 -767 -547
+rect -605 -581 -571 -547
+rect -409 -581 -375 -547
+rect -213 -581 -179 -547
+rect -17 -581 17 -547
+rect 179 -581 213 -547
+rect 375 -581 409 -547
+rect 571 -581 605 -547
+rect 767 -581 801 -547
+rect 963 -581 997 -547
+rect 1159 -581 1193 -547
+<< locali >>
+rect -1356 649 -1260 683
+rect 1260 649 1356 683
+rect -1356 587 -1322 649
+rect 1322 587 1356 649
+rect -1209 547 -1193 581
+rect -1159 547 -1143 581
+rect -1013 547 -997 581
+rect -963 547 -947 581
+rect -817 547 -801 581
+rect -767 547 -751 581
+rect -621 547 -605 581
+rect -571 547 -555 581
+rect -425 547 -409 581
+rect -375 547 -359 581
+rect -229 547 -213 581
+rect -179 547 -163 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 163 547 179 581
+rect 213 547 229 581
+rect 359 547 375 581
+rect 409 547 425 581
+rect 555 547 571 581
+rect 605 547 621 581
+rect 751 547 767 581
+rect 801 547 817 581
+rect 947 547 963 581
+rect 997 547 1013 581
+rect 1143 547 1159 581
+rect 1193 547 1209 581
+rect -1242 497 -1208 513
+rect -1242 105 -1208 121
+rect -1144 497 -1110 513
+rect -1144 105 -1110 121
+rect -1046 497 -1012 513
+rect -1046 105 -1012 121
+rect -948 497 -914 513
+rect -948 105 -914 121
+rect -850 497 -816 513
+rect -850 105 -816 121
+rect -752 497 -718 513
+rect -752 105 -718 121
+rect -654 497 -620 513
+rect -654 105 -620 121
+rect -556 497 -522 513
+rect -556 105 -522 121
+rect -458 497 -424 513
+rect -458 105 -424 121
+rect -360 497 -326 513
+rect -360 105 -326 121
+rect -262 497 -228 513
+rect -262 105 -228 121
+rect -164 497 -130 513
+rect -164 105 -130 121
+rect -66 497 -32 513
+rect -66 105 -32 121
+rect 32 497 66 513
+rect 32 105 66 121
+rect 130 497 164 513
+rect 130 105 164 121
+rect 228 497 262 513
+rect 228 105 262 121
+rect 326 497 360 513
+rect 326 105 360 121
+rect 424 497 458 513
+rect 424 105 458 121
+rect 522 497 556 513
+rect 522 105 556 121
+rect 620 497 654 513
+rect 620 105 654 121
+rect 718 497 752 513
+rect 718 105 752 121
+rect 816 497 850 513
+rect 816 105 850 121
+rect 914 497 948 513
+rect 914 105 948 121
+rect 1012 497 1046 513
+rect 1012 105 1046 121
+rect 1110 497 1144 513
+rect 1110 105 1144 121
+rect 1208 497 1242 513
+rect 1208 105 1242 121
+rect -1111 37 -1095 71
+rect -1061 37 -1045 71
+rect -915 37 -899 71
+rect -865 37 -849 71
+rect -719 37 -703 71
+rect -669 37 -653 71
+rect -523 37 -507 71
+rect -473 37 -457 71
+rect -327 37 -311 71
+rect -277 37 -261 71
+rect -131 37 -115 71
+rect -81 37 -65 71
+rect 65 37 81 71
+rect 115 37 131 71
+rect 261 37 277 71
+rect 311 37 327 71
+rect 457 37 473 71
+rect 507 37 523 71
+rect 653 37 669 71
+rect 703 37 719 71
+rect 849 37 865 71
+rect 899 37 915 71
+rect 1045 37 1061 71
+rect 1095 37 1111 71
+rect -1111 -71 -1095 -37
+rect -1061 -71 -1045 -37
+rect -915 -71 -899 -37
+rect -865 -71 -849 -37
+rect -719 -71 -703 -37
+rect -669 -71 -653 -37
+rect -523 -71 -507 -37
+rect -473 -71 -457 -37
+rect -327 -71 -311 -37
+rect -277 -71 -261 -37
+rect -131 -71 -115 -37
+rect -81 -71 -65 -37
+rect 65 -71 81 -37
+rect 115 -71 131 -37
+rect 261 -71 277 -37
+rect 311 -71 327 -37
+rect 457 -71 473 -37
+rect 507 -71 523 -37
+rect 653 -71 669 -37
+rect 703 -71 719 -37
+rect 849 -71 865 -37
+rect 899 -71 915 -37
+rect 1045 -71 1061 -37
+rect 1095 -71 1111 -37
+rect -1242 -121 -1208 -105
+rect -1242 -513 -1208 -497
+rect -1144 -121 -1110 -105
+rect -1144 -513 -1110 -497
+rect -1046 -121 -1012 -105
+rect -1046 -513 -1012 -497
+rect -948 -121 -914 -105
+rect -948 -513 -914 -497
+rect -850 -121 -816 -105
+rect -850 -513 -816 -497
+rect -752 -121 -718 -105
+rect -752 -513 -718 -497
+rect -654 -121 -620 -105
+rect -654 -513 -620 -497
+rect -556 -121 -522 -105
+rect -556 -513 -522 -497
+rect -458 -121 -424 -105
+rect -458 -513 -424 -497
+rect -360 -121 -326 -105
+rect -360 -513 -326 -497
+rect -262 -121 -228 -105
+rect -262 -513 -228 -497
+rect -164 -121 -130 -105
+rect -164 -513 -130 -497
+rect -66 -121 -32 -105
+rect -66 -513 -32 -497
+rect 32 -121 66 -105
+rect 32 -513 66 -497
+rect 130 -121 164 -105
+rect 130 -513 164 -497
+rect 228 -121 262 -105
+rect 228 -513 262 -497
+rect 326 -121 360 -105
+rect 326 -513 360 -497
+rect 424 -121 458 -105
+rect 424 -513 458 -497
+rect 522 -121 556 -105
+rect 522 -513 556 -497
+rect 620 -121 654 -105
+rect 620 -513 654 -497
+rect 718 -121 752 -105
+rect 718 -513 752 -497
+rect 816 -121 850 -105
+rect 816 -513 850 -497
+rect 914 -121 948 -105
+rect 914 -513 948 -497
+rect 1012 -121 1046 -105
+rect 1012 -513 1046 -497
+rect 1110 -121 1144 -105
+rect 1110 -513 1144 -497
+rect 1208 -121 1242 -105
+rect 1208 -513 1242 -497
+rect -1209 -581 -1193 -547
+rect -1159 -581 -1143 -547
+rect -1013 -581 -997 -547
+rect -963 -581 -947 -547
+rect -817 -581 -801 -547
+rect -767 -581 -751 -547
+rect -621 -581 -605 -547
+rect -571 -581 -555 -547
+rect -425 -581 -409 -547
+rect -375 -581 -359 -547
+rect -229 -581 -213 -547
+rect -179 -581 -163 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 163 -581 179 -547
+rect 213 -581 229 -547
+rect 359 -581 375 -547
+rect 409 -581 425 -547
+rect 555 -581 571 -547
+rect 605 -581 621 -547
+rect 751 -581 767 -547
+rect 801 -581 817 -547
+rect 947 -581 963 -547
+rect 997 -581 1013 -547
+rect 1143 -581 1159 -547
+rect 1193 -581 1209 -547
+rect -1356 -649 -1322 -587
+rect 1322 -649 1356 -587
+rect -1356 -683 -1260 -649
+rect 1260 -683 1356 -649
+<< viali >>
+rect -1193 547 -1159 581
+rect -997 547 -963 581
+rect -801 547 -767 581
+rect -605 547 -571 581
+rect -409 547 -375 581
+rect -213 547 -179 581
+rect -17 547 17 581
+rect 179 547 213 581
+rect 375 547 409 581
+rect 571 547 605 581
+rect 767 547 801 581
+rect 963 547 997 581
+rect 1159 547 1193 581
+rect -1242 121 -1208 497
+rect -1144 121 -1110 497
+rect -1046 121 -1012 497
+rect -948 121 -914 497
+rect -850 121 -816 497
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect 816 121 850 497
+rect 914 121 948 497
+rect 1012 121 1046 497
+rect 1110 121 1144 497
+rect 1208 121 1242 497
+rect -1095 37 -1061 71
+rect -899 37 -865 71
+rect -703 37 -669 71
+rect -507 37 -473 71
+rect -311 37 -277 71
+rect -115 37 -81 71
+rect 81 37 115 71
+rect 277 37 311 71
+rect 473 37 507 71
+rect 669 37 703 71
+rect 865 37 899 71
+rect 1061 37 1095 71
+rect -1095 -71 -1061 -37
+rect -899 -71 -865 -37
+rect -703 -71 -669 -37
+rect -507 -71 -473 -37
+rect -311 -71 -277 -37
+rect -115 -71 -81 -37
+rect 81 -71 115 -37
+rect 277 -71 311 -37
+rect 473 -71 507 -37
+rect 669 -71 703 -37
+rect 865 -71 899 -37
+rect 1061 -71 1095 -37
+rect -1242 -497 -1208 -121
+rect -1144 -497 -1110 -121
+rect -1046 -497 -1012 -121
+rect -948 -497 -914 -121
+rect -850 -497 -816 -121
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect 816 -497 850 -121
+rect 914 -497 948 -121
+rect 1012 -497 1046 -121
+rect 1110 -497 1144 -121
+rect 1208 -497 1242 -121
+rect -1193 -581 -1159 -547
+rect -997 -581 -963 -547
+rect -801 -581 -767 -547
+rect -605 -581 -571 -547
+rect -409 -581 -375 -547
+rect -213 -581 -179 -547
+rect -17 -581 17 -547
+rect 179 -581 213 -547
+rect 375 -581 409 -547
+rect 571 -581 605 -547
+rect 767 -581 801 -547
+rect 963 -581 997 -547
+rect 1159 -581 1193 -547
+<< metal1 >>
+rect -1205 581 -1147 587
+rect -1205 547 -1193 581
+rect -1159 547 -1147 581
+rect -1205 541 -1147 547
+rect -1009 581 -951 587
+rect -1009 547 -997 581
+rect -963 547 -951 581
+rect -1009 541 -951 547
+rect -813 581 -755 587
+rect -813 547 -801 581
+rect -767 547 -755 581
+rect -813 541 -755 547
+rect -617 581 -559 587
+rect -617 547 -605 581
+rect -571 547 -559 581
+rect -617 541 -559 547
+rect -421 581 -363 587
+rect -421 547 -409 581
+rect -375 547 -363 581
+rect -421 541 -363 547
+rect -225 581 -167 587
+rect -225 547 -213 581
+rect -179 547 -167 581
+rect -225 541 -167 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 167 581 225 587
+rect 167 547 179 581
+rect 213 547 225 581
+rect 167 541 225 547
+rect 363 581 421 587
+rect 363 547 375 581
+rect 409 547 421 581
+rect 363 541 421 547
+rect 559 581 617 587
+rect 559 547 571 581
+rect 605 547 617 581
+rect 559 541 617 547
+rect 755 581 813 587
+rect 755 547 767 581
+rect 801 547 813 581
+rect 755 541 813 547
+rect 951 581 1009 587
+rect 951 547 963 581
+rect 997 547 1009 581
+rect 951 541 1009 547
+rect 1147 581 1205 587
+rect 1147 547 1159 581
+rect 1193 547 1205 581
+rect 1147 541 1205 547
+rect -1248 497 -1202 509
+rect -1248 121 -1242 497
+rect -1208 121 -1202 497
+rect -1248 109 -1202 121
+rect -1150 497 -1104 509
+rect -1150 121 -1144 497
+rect -1110 121 -1104 497
+rect -1150 109 -1104 121
+rect -1052 497 -1006 509
+rect -1052 121 -1046 497
+rect -1012 121 -1006 497
+rect -1052 109 -1006 121
+rect -954 497 -908 509
+rect -954 121 -948 497
+rect -914 121 -908 497
+rect -954 109 -908 121
+rect -856 497 -810 509
+rect -856 121 -850 497
+rect -816 121 -810 497
+rect -856 109 -810 121
+rect -758 497 -712 509
+rect -758 121 -752 497
+rect -718 121 -712 497
+rect -758 109 -712 121
+rect -660 497 -614 509
+rect -660 121 -654 497
+rect -620 121 -614 497
+rect -660 109 -614 121
+rect -562 497 -516 509
+rect -562 121 -556 497
+rect -522 121 -516 497
+rect -562 109 -516 121
+rect -464 497 -418 509
+rect -464 121 -458 497
+rect -424 121 -418 497
+rect -464 109 -418 121
+rect -366 497 -320 509
+rect -366 121 -360 497
+rect -326 121 -320 497
+rect -366 109 -320 121
+rect -268 497 -222 509
+rect -268 121 -262 497
+rect -228 121 -222 497
+rect -268 109 -222 121
+rect -170 497 -124 509
+rect -170 121 -164 497
+rect -130 121 -124 497
+rect -170 109 -124 121
+rect -72 497 -26 509
+rect -72 121 -66 497
+rect -32 121 -26 497
+rect -72 109 -26 121
+rect 26 497 72 509
+rect 26 121 32 497
+rect 66 121 72 497
+rect 26 109 72 121
+rect 124 497 170 509
+rect 124 121 130 497
+rect 164 121 170 497
+rect 124 109 170 121
+rect 222 497 268 509
+rect 222 121 228 497
+rect 262 121 268 497
+rect 222 109 268 121
+rect 320 497 366 509
+rect 320 121 326 497
+rect 360 121 366 497
+rect 320 109 366 121
+rect 418 497 464 509
+rect 418 121 424 497
+rect 458 121 464 497
+rect 418 109 464 121
+rect 516 497 562 509
+rect 516 121 522 497
+rect 556 121 562 497
+rect 516 109 562 121
+rect 614 497 660 509
+rect 614 121 620 497
+rect 654 121 660 497
+rect 614 109 660 121
+rect 712 497 758 509
+rect 712 121 718 497
+rect 752 121 758 497
+rect 712 109 758 121
+rect 810 497 856 509
+rect 810 121 816 497
+rect 850 121 856 497
+rect 810 109 856 121
+rect 908 497 954 509
+rect 908 121 914 497
+rect 948 121 954 497
+rect 908 109 954 121
+rect 1006 497 1052 509
+rect 1006 121 1012 497
+rect 1046 121 1052 497
+rect 1006 109 1052 121
+rect 1104 497 1150 509
+rect 1104 121 1110 497
+rect 1144 121 1150 497
+rect 1104 109 1150 121
+rect 1202 497 1248 509
+rect 1202 121 1208 497
+rect 1242 121 1248 497
+rect 1202 109 1248 121
+rect -1107 71 -1049 77
+rect -1107 37 -1095 71
+rect -1061 37 -1049 71
+rect -1107 31 -1049 37
+rect -911 71 -853 77
+rect -911 37 -899 71
+rect -865 37 -853 71
+rect -911 31 -853 37
+rect -715 71 -657 77
+rect -715 37 -703 71
+rect -669 37 -657 71
+rect -715 31 -657 37
+rect -519 71 -461 77
+rect -519 37 -507 71
+rect -473 37 -461 71
+rect -519 31 -461 37
+rect -323 71 -265 77
+rect -323 37 -311 71
+rect -277 37 -265 71
+rect -323 31 -265 37
+rect -127 71 -69 77
+rect -127 37 -115 71
+rect -81 37 -69 71
+rect -127 31 -69 37
+rect 69 71 127 77
+rect 69 37 81 71
+rect 115 37 127 71
+rect 69 31 127 37
+rect 265 71 323 77
+rect 265 37 277 71
+rect 311 37 323 71
+rect 265 31 323 37
+rect 461 71 519 77
+rect 461 37 473 71
+rect 507 37 519 71
+rect 461 31 519 37
+rect 657 71 715 77
+rect 657 37 669 71
+rect 703 37 715 71
+rect 657 31 715 37
+rect 853 71 911 77
+rect 853 37 865 71
+rect 899 37 911 71
+rect 853 31 911 37
+rect 1049 71 1107 77
+rect 1049 37 1061 71
+rect 1095 37 1107 71
+rect 1049 31 1107 37
+rect -1107 -37 -1049 -31
+rect -1107 -71 -1095 -37
+rect -1061 -71 -1049 -37
+rect -1107 -77 -1049 -71
+rect -911 -37 -853 -31
+rect -911 -71 -899 -37
+rect -865 -71 -853 -37
+rect -911 -77 -853 -71
+rect -715 -37 -657 -31
+rect -715 -71 -703 -37
+rect -669 -71 -657 -37
+rect -715 -77 -657 -71
+rect -519 -37 -461 -31
+rect -519 -71 -507 -37
+rect -473 -71 -461 -37
+rect -519 -77 -461 -71
+rect -323 -37 -265 -31
+rect -323 -71 -311 -37
+rect -277 -71 -265 -37
+rect -323 -77 -265 -71
+rect -127 -37 -69 -31
+rect -127 -71 -115 -37
+rect -81 -71 -69 -37
+rect -127 -77 -69 -71
+rect 69 -37 127 -31
+rect 69 -71 81 -37
+rect 115 -71 127 -37
+rect 69 -77 127 -71
+rect 265 -37 323 -31
+rect 265 -71 277 -37
+rect 311 -71 323 -37
+rect 265 -77 323 -71
+rect 461 -37 519 -31
+rect 461 -71 473 -37
+rect 507 -71 519 -37
+rect 461 -77 519 -71
+rect 657 -37 715 -31
+rect 657 -71 669 -37
+rect 703 -71 715 -37
+rect 657 -77 715 -71
+rect 853 -37 911 -31
+rect 853 -71 865 -37
+rect 899 -71 911 -37
+rect 853 -77 911 -71
+rect 1049 -37 1107 -31
+rect 1049 -71 1061 -37
+rect 1095 -71 1107 -37
+rect 1049 -77 1107 -71
+rect -1248 -121 -1202 -109
+rect -1248 -497 -1242 -121
+rect -1208 -497 -1202 -121
+rect -1248 -509 -1202 -497
+rect -1150 -121 -1104 -109
+rect -1150 -497 -1144 -121
+rect -1110 -497 -1104 -121
+rect -1150 -509 -1104 -497
+rect -1052 -121 -1006 -109
+rect -1052 -497 -1046 -121
+rect -1012 -497 -1006 -121
+rect -1052 -509 -1006 -497
+rect -954 -121 -908 -109
+rect -954 -497 -948 -121
+rect -914 -497 -908 -121
+rect -954 -509 -908 -497
+rect -856 -121 -810 -109
+rect -856 -497 -850 -121
+rect -816 -497 -810 -121
+rect -856 -509 -810 -497
+rect -758 -121 -712 -109
+rect -758 -497 -752 -121
+rect -718 -497 -712 -121
+rect -758 -509 -712 -497
+rect -660 -121 -614 -109
+rect -660 -497 -654 -121
+rect -620 -497 -614 -121
+rect -660 -509 -614 -497
+rect -562 -121 -516 -109
+rect -562 -497 -556 -121
+rect -522 -497 -516 -121
+rect -562 -509 -516 -497
+rect -464 -121 -418 -109
+rect -464 -497 -458 -121
+rect -424 -497 -418 -121
+rect -464 -509 -418 -497
+rect -366 -121 -320 -109
+rect -366 -497 -360 -121
+rect -326 -497 -320 -121
+rect -366 -509 -320 -497
+rect -268 -121 -222 -109
+rect -268 -497 -262 -121
+rect -228 -497 -222 -121
+rect -268 -509 -222 -497
+rect -170 -121 -124 -109
+rect -170 -497 -164 -121
+rect -130 -497 -124 -121
+rect -170 -509 -124 -497
+rect -72 -121 -26 -109
+rect -72 -497 -66 -121
+rect -32 -497 -26 -121
+rect -72 -509 -26 -497
+rect 26 -121 72 -109
+rect 26 -497 32 -121
+rect 66 -497 72 -121
+rect 26 -509 72 -497
+rect 124 -121 170 -109
+rect 124 -497 130 -121
+rect 164 -497 170 -121
+rect 124 -509 170 -497
+rect 222 -121 268 -109
+rect 222 -497 228 -121
+rect 262 -497 268 -121
+rect 222 -509 268 -497
+rect 320 -121 366 -109
+rect 320 -497 326 -121
+rect 360 -497 366 -121
+rect 320 -509 366 -497
+rect 418 -121 464 -109
+rect 418 -497 424 -121
+rect 458 -497 464 -121
+rect 418 -509 464 -497
+rect 516 -121 562 -109
+rect 516 -497 522 -121
+rect 556 -497 562 -121
+rect 516 -509 562 -497
+rect 614 -121 660 -109
+rect 614 -497 620 -121
+rect 654 -497 660 -121
+rect 614 -509 660 -497
+rect 712 -121 758 -109
+rect 712 -497 718 -121
+rect 752 -497 758 -121
+rect 712 -509 758 -497
+rect 810 -121 856 -109
+rect 810 -497 816 -121
+rect 850 -497 856 -121
+rect 810 -509 856 -497
+rect 908 -121 954 -109
+rect 908 -497 914 -121
+rect 948 -497 954 -121
+rect 908 -509 954 -497
+rect 1006 -121 1052 -109
+rect 1006 -497 1012 -121
+rect 1046 -497 1052 -121
+rect 1006 -509 1052 -497
+rect 1104 -121 1150 -109
+rect 1104 -497 1110 -121
+rect 1144 -497 1150 -121
+rect 1104 -509 1150 -497
+rect 1202 -121 1248 -109
+rect 1202 -497 1208 -121
+rect 1242 -497 1248 -121
+rect 1202 -509 1248 -497
+rect -1205 -547 -1147 -541
+rect -1205 -581 -1193 -547
+rect -1159 -581 -1147 -547
+rect -1205 -587 -1147 -581
+rect -1009 -547 -951 -541
+rect -1009 -581 -997 -547
+rect -963 -581 -951 -547
+rect -1009 -587 -951 -581
+rect -813 -547 -755 -541
+rect -813 -581 -801 -547
+rect -767 -581 -755 -547
+rect -813 -587 -755 -581
+rect -617 -547 -559 -541
+rect -617 -581 -605 -547
+rect -571 -581 -559 -547
+rect -617 -587 -559 -581
+rect -421 -547 -363 -541
+rect -421 -581 -409 -547
+rect -375 -581 -363 -547
+rect -421 -587 -363 -581
+rect -225 -547 -167 -541
+rect -225 -581 -213 -547
+rect -179 -581 -167 -547
+rect -225 -587 -167 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 167 -547 225 -541
+rect 167 -581 179 -547
+rect 213 -581 225 -547
+rect 167 -587 225 -581
+rect 363 -547 421 -541
+rect 363 -581 375 -547
+rect 409 -581 421 -547
+rect 363 -587 421 -581
+rect 559 -547 617 -541
+rect 559 -581 571 -547
+rect 605 -581 617 -547
+rect 559 -587 617 -581
+rect 755 -547 813 -541
+rect 755 -581 767 -547
+rect 801 -581 813 -547
+rect 755 -587 813 -581
+rect 951 -547 1009 -541
+rect 951 -581 963 -547
+rect 997 -581 1009 -547
+rect 951 -587 1009 -581
+rect 1147 -547 1205 -541
+rect 1147 -581 1159 -547
+rect 1193 -581 1205 -547
+rect 1147 -587 1205 -581
+<< properties >>
+string FIXED_BBOX -1339 -666 1339 666
+string gencell sky130_fd_pr__nfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.ext b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.ext
new file mode 100644
index 0000000..65c721f
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.ext
@@ -0,0 +1,289 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_706_n509#" 982 155.274 706 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_n509#" 982 12.3589 608 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_n509#" 982 12.3589 510 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_n509#" 982 12.3589 412 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_n509#" 982 12.3589 314 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_n509#" 982 12.3589 216 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_n509#" 982 12.3589 118 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_n509#" 982 12.3589 20 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n509#" 982 12.3589 -78 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_n509#" 982 12.3459 -176 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_n509#" 982 12.3589 -274 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_n509#" 982 12.3459 -372 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_n509#" 982 12.3589 -470 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_n509#" 982 12.3459 -568 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_n509#" 982 12.3589 -666 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_n509#" 982 155.274 -764 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_653_n597#" 653 137.701 653 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_n597#" 653 101.111 457 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_555_n87#" 653 88.6582 555 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_n597#" 653 101.111 261 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_n87#" 653 68.9052 359 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_n597#" 653 101.111 65 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_n87#" 653 68.9052 163 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_n597#" 653 101.111 -131 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n87#" 653 68.9052 -33 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_n597#" 653 101.111 -327 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n87#" 653 68.9052 -229 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_n597#" 653 101.111 -523 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_n87#" 653 68.9052 -425 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_n597#" 653 137.955 -719 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_n87#" 653 88.9121 -621 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_706_109#" 982 155.382 706 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_109#" 982 12.5568 608 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_109#" 982 12.556 510 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_109#" 982 12.5568 412 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_109#" 982 12.556 314 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_109#" 982 12.5568 216 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_109#" 982 12.556 118 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_109#" 982 12.5568 20 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_109#" 982 12.556 -78 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_109#" 982 12.6336 -176 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_109#" 982 12.556 -274 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_109#" 982 12.6336 -372 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_109#" 982 12.556 -470 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_109#" 982 12.6336 -568 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_109#" 982 12.556 -666 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_109#" 982 155.459 -764 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_555_21#" 653 88.8647 555 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_653_531#" 653 137.701 653 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_21#" 653 69.1118 359 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_531#" 653 101.111 457 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_21#" 653 69.1118 163 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_531#" 653 101.111 261 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 653 69.1118 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_531#" 653 101.111 65 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_21#" 653 69.1118 -229 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_531#" 653 101.111 -131 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_21#" 653 69.1118 -425 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_531#" 653 101.111 -327 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_21#" 653 89.1187 -621 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_531#" 653 101.111 -523 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_531#" 653 137.955 -719 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n866_n683#" 0 0 -866 -683 ppd 0 0 0 0 0 0 0 0 0 0 206040 12120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 206040 12120 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_65_n597#" "a_n33_n87#" 15.9188
+cap "a_n78_n509#" "a_n131_n597#" 4.2829
+cap "a_20_109#" "a_n78_109#" 462.346
+cap "a_65_n597#" "a_20_n509#" 4.2829
+cap "a_261_531#" "a_314_109#" 4.2829
+cap "a_n176_n509#" "a_n131_531#" 0.0429448
+cap "a_608_109#" "a_608_n509#" 12.3196
+cap "a_653_531#" "a_706_109#" 4.2829
+cap "a_n523_531#" "a_n621_21#" 15.9188
+cap "a_n131_531#" "a_65_531#" 27.7308
+cap "a_n78_n509#" "a_n33_n87#" 4.2829
+cap "a_n176_n509#" "a_n274_n509#" 462.346
+cap "a_163_21#" "a_65_531#" 15.9188
+cap "a_n78_n509#" "a_20_n509#" 462.346
+cap "a_n176_n509#" "a_n229_n87#" 4.2829
+cap "a_n327_531#" "a_n229_21#" 15.9188
+cap "a_n719_n597#" "a_n764_n509#" 4.2829
+cap "a_510_109#" "a_510_n509#" 12.3196
+cap "a_261_n597#" "a_216_n509#" 4.2829
+cap "a_n327_n597#" "a_n327_531#" 7.7636
+cap "a_n131_531#" "a_n78_109#" 4.2829
+cap "a_457_531#" "a_653_531#" 27.7308
+cap "a_412_109#" "a_412_n509#" 12.3196
+cap "a_359_21#" "a_314_109#" 4.2829
+cap "a_n372_109#" "a_n327_n597#" 0.0429448
+cap "a_n33_21#" "a_n33_n87#" 86.2066
+cap "a_n176_109#" "a_n131_n597#" 0.0429448
+cap "a_412_n509#" "a_314_n509#" 462.346
+cap "a_118_n509#" "a_20_n509#" 462.346
+cap "a_706_n509#" "a_608_n509#" 462.346
+cap "a_n372_109#" "a_n425_n87#" 0.197183
+cap "a_608_109#" "a_653_531#" 4.2829
+cap "a_n327_n597#" "a_n523_n597#" 27.7308
+cap "a_n327_531#" "a_n274_109#" 4.2829
+cap "a_163_n87#" "a_163_21#" 86.2066
+cap "a_n523_n597#" "a_n425_n87#" 15.9188
+cap "a_n621_n87#" "a_n568_n509#" 4.2829
+cap "a_n621_21#" "a_n568_109#" 4.2829
+cap "a_n621_21#" "a_n425_21#" 27.7308
+cap "a_n176_n509#" "a_n229_21#" 0.197183
+cap "a_n372_109#" "a_n274_109#" 462.346
+cap "a_65_n597#" "a_118_n509#" 4.2829
+cap "a_261_531#" "a_216_109#" 4.2829
+cap "a_608_n509#" "a_510_n509#" 462.346
+cap "a_n274_n509#" "a_n229_n87#" 4.2829
+cap "a_n372_n509#" "a_n425_21#" 0.197183
+cap "a_457_n597#" "a_653_n597#" 27.7308
+cap "a_n523_n597#" "a_n621_n87#" 15.9188
+cap "a_n523_531#" "a_n470_109#" 4.2829
+cap "a_n719_531#" "a_n764_109#" 4.2829
+cap "a_261_531#" "a_65_531#" 27.7308
+cap "a_n425_n87#" "a_n470_n509#" 4.2829
+cap "a_n131_531#" "a_n229_21#" 15.9188
+cap "a_412_109#" "a_359_21#" 4.2829
+cap "a_n523_531#" "a_n568_n509#" 0.0429448
+cap "a_n523_531#" "a_n327_531#" 27.7308
+cap "a_457_531#" "a_412_109#" 4.2829
+cap "a_n327_n597#" "a_n274_n509#" 4.2829
+cap "a_n229_21#" "a_n229_n87#" 86.2066
+cap "a_118_n509#" "a_118_109#" 12.3196
+cap "a_457_n597#" "a_412_n509#" 4.2829
+cap "a_n666_n509#" "a_n666_109#" 12.3196
+cap "a_n327_n597#" "a_n229_n87#" 15.9188
+cap "a_261_531#" "a_163_21#" 15.9188
+cap "a_261_n597#" "a_314_n509#" 4.2829
+cap "a_n523_531#" "a_n523_n597#" 7.7636
+cap "a_n764_109#" "a_n666_109#" 462.346
+cap "a_n719_n597#" "a_n523_n597#" 27.7308
+cap "a_118_n509#" "a_216_n509#" 462.346
+cap "a_n425_n87#" "a_n229_n87#" 27.7308
+cap "a_555_n87#" "a_359_n87#" 27.7308
+cap "a_n274_n509#" "a_n274_109#" 12.3196
+cap "a_n425_21#" "a_n470_109#" 4.2829
+cap "a_n568_109#" "a_n470_109#" 462.346
+cap "a_n666_n509#" "a_n621_n87#" 4.2829
+cap "a_n568_n509#" "a_n568_109#" 12.3196
+cap "a_n176_n509#" "a_n131_n597#" 4.2829
+cap "a_555_21#" "a_359_21#" 27.7308
+cap "a_n719_531#" "a_n666_109#" 4.2829
+cap "a_n327_531#" "a_n425_21#" 15.9188
+cap "a_359_21#" "a_163_21#" 27.7308
+cap "a_457_531#" "a_555_21#" 15.9188
+cap "a_359_n87#" "a_314_n509#" 4.2829
+cap "a_412_109#" "a_510_109#" 462.346
+cap "a_555_n87#" "a_510_n509#" 4.2829
+cap "a_n372_109#" "a_n425_21#" 4.2829
+cap "a_20_109#" "a_20_n509#" 12.3196
+cap "a_n327_n597#" "a_n425_n87#" 15.9188
+cap "a_608_109#" "a_555_21#" 4.2829
+cap "a_n523_n597#" "a_n568_109#" 0.0429448
+cap "a_555_n87#" "a_608_n509#" 4.2829
+cap "a_n621_21#" "a_n568_n509#" 0.197183
+cap "a_163_n87#" "a_261_n597#" 15.9188
+cap "a_n274_109#" "a_n229_21#" 4.2829
+cap "a_n719_n597#" "a_n666_n509#" 4.2829
+cap "a_n131_531#" "a_n131_n597#" 7.7636
+cap "a_n764_109#" "a_n719_n597#" 0.0429448
+cap "a_457_n597#" "a_457_531#" 7.7636
+cap "a_65_n597#" "a_65_531#" 7.7636
+cap "a_n372_n509#" "a_n327_531#" 0.0429448
+cap "a_457_n597#" "a_261_n597#" 27.7308
+cap "a_n78_n509#" "a_n176_n509#" 462.346
+cap "a_n131_n597#" "a_n229_n87#" 15.9188
+cap "a_n621_n87#" "a_n425_n87#" 27.7308
+cap "a_n372_109#" "a_n372_n509#" 12.3196
+cap "a_163_n87#" "a_n33_n87#" 27.7308
+cap "a_510_109#" "a_555_21#" 4.2829
+cap "a_163_n87#" "a_359_n87#" 27.7308
+cap "a_n719_531#" "a_n523_531#" 27.7308
+cap "a_n33_n87#" "a_n229_n87#" 27.7308
+cap "a_n719_531#" "a_n719_n597#" 7.7636
+cap "a_216_109#" "a_118_109#" 462.346
+cap "a_706_n509#" "a_653_n597#" 4.2829
+cap "a_n33_21#" "a_20_109#" 4.2829
+cap "a_65_n597#" "a_163_n87#" 15.9188
+cap "a_216_109#" "a_216_n509#" 12.3196
+cap "a_261_531#" "a_359_21#" 15.9188
+cap "a_n78_n509#" "a_n78_109#" 12.3196
+cap "a_457_n597#" "a_359_n87#" 15.9188
+cap "a_n33_21#" "a_65_531#" 15.9188
+cap "a_20_109#" "a_118_109#" 462.346
+cap "a_216_n509#" "a_314_n509#" 462.346
+cap "a_457_531#" "a_261_531#" 27.7308
+cap "a_261_531#" "a_261_n597#" 7.7636
+cap "a_n176_109#" "a_n176_n509#" 12.3196
+cap "a_118_109#" "a_65_531#" 4.2829
+cap "a_n327_n597#" "a_n131_n597#" 27.7308
+cap "a_n372_n509#" "a_n470_n509#" 462.346
+cap "a_412_109#" "a_314_109#" 462.346
+cap "a_216_109#" "a_314_109#" 462.346
+cap "a_608_n509#" "a_653_n597#" 4.2829
+cap "a_412_n509#" "a_359_n87#" 4.2829
+cap "a_n33_21#" "a_n78_109#" 4.2829
+cap "a_314_109#" "a_314_n509#" 12.3196
+cap "a_n33_21#" "a_n131_531#" 15.9188
+cap "a_457_n597#" "a_510_n509#" 4.2829
+cap "a_n33_21#" "a_163_21#" 27.7308
+cap "a_n372_109#" "a_n470_109#" 462.346
+cap "a_163_n87#" "a_118_n509#" 4.2829
+cap "a_608_109#" "a_706_109#" 462.346
+cap "a_n719_n597#" "a_n621_n87#" 15.9188
+cap "a_n372_n509#" "a_n274_n509#" 462.346
+cap "a_163_21#" "a_118_109#" 4.2829
+cap "a_n176_109#" "a_n78_109#" 462.346
+cap "a_n666_n509#" "a_n764_n509#" 462.346
+cap "a_457_531#" "a_359_21#" 15.9188
+cap "a_n176_109#" "a_n131_531#" 4.2829
+cap "a_n425_21#" "a_n229_21#" 27.7308
+cap "a_n764_109#" "a_n764_n509#" 12.3196
+cap "a_555_21#" "a_653_531#" 15.9188
+cap "a_510_n509#" "a_412_n509#" 462.346
+cap "a_n523_n597#" "a_n568_n509#" 4.2829
+cap "a_n372_109#" "a_n327_531#" 4.2829
+cap "a_n719_531#" "a_n621_21#" 15.9188
+cap "a_163_n87#" "a_216_n509#" 4.2829
+cap "a_n425_21#" "a_n425_n87#" 86.2066
+cap "a_653_n597#" "a_653_531#" 7.7636
+cap "a_n176_109#" "a_n229_n87#" 0.197183
+cap "a_n666_109#" "a_n568_109#" 462.346
+cap "a_n470_n509#" "a_n470_109#" 12.3196
+cap "a_n719_531#" "a_n764_n509#" 0.0429448
+cap "a_706_n509#" "a_706_109#" 12.3196
+cap "a_359_21#" "a_359_n87#" 86.2066
+cap "a_n33_21#" "a_n229_21#" 27.7308
+cap "a_n621_n87#" "a_n568_109#" 0.197183
+cap "a_n470_n509#" "a_n568_n509#" 462.346
+cap "a_n372_n509#" "a_n327_n597#" 4.2829
+cap "a_n666_109#" "a_n621_21#" 4.2829
+cap "a_359_n87#" "a_261_n597#" 15.9188
+cap "a_n372_n509#" "a_n425_n87#" 4.2829
+cap "a_n176_109#" "a_n229_21#" 4.2829
+cap "a_457_531#" "a_510_109#" 4.2829
+cap "a_555_n87#" "a_555_21#" 86.2066
+cap "a_n131_n597#" "a_n33_n87#" 15.9188
+cap "a_n666_n509#" "a_n568_n509#" 462.346
+cap "a_65_n597#" "a_261_n597#" 27.7308
+cap "a_n523_n597#" "a_n470_n509#" 4.2829
+cap "a_n621_21#" "a_n621_n87#" 86.2066
+cap "a_555_n87#" "a_653_n597#" 15.9188
+cap "a_n327_531#" "a_n131_531#" 27.7308
+cap "a_608_109#" "a_510_109#" 462.346
+cap "a_20_109#" "a_65_531#" 4.2829
+cap "a_n176_109#" "a_n274_109#" 462.346
+cap "a_20_n509#" "a_n33_n87#" 4.2829
+cap "a_n523_531#" "a_n568_109#" 4.2829
+cap "a_65_n597#" "a_n131_n597#" 27.7308
+cap "a_n523_531#" "a_n425_21#" 15.9188
+cap "a_163_21#" "a_216_109#" 4.2829
+cap "a_457_n597#" "a_555_n87#" 15.9188
+device msubckt sky130_fd_pr__nfet_01v8_lvt 666 -509 667 -508 l=40 w=400 "a_n866_n683#" "a_653_n597#" 80 0 "a_608_n509#" 400 0 "a_706_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 568 -509 569 -508 l=40 w=400 "a_n866_n683#" "a_555_n87#" 80 0 "a_510_n509#" 400 0 "a_608_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 470 -509 471 -508 l=40 w=400 "a_n866_n683#" "a_457_n597#" 80 0 "a_412_n509#" 400 0 "a_510_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 372 -509 373 -508 l=40 w=400 "a_n866_n683#" "a_359_n87#" 80 0 "a_314_n509#" 400 0 "a_412_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 274 -509 275 -508 l=40 w=400 "a_n866_n683#" "a_261_n597#" 80 0 "a_216_n509#" 400 0 "a_314_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 176 -509 177 -508 l=40 w=400 "a_n866_n683#" "a_163_n87#" 80 0 "a_118_n509#" 400 0 "a_216_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 78 -509 79 -508 l=40 w=400 "a_n866_n683#" "a_65_n597#" 80 0 "a_20_n509#" 400 0 "a_118_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -20 -509 -19 -508 l=40 w=400 "a_n866_n683#" "a_n33_n87#" 80 0 "a_n78_n509#" 400 0 "a_20_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -118 -509 -117 -508 l=40 w=400 "a_n866_n683#" "a_n131_n597#" 80 0 "a_n176_n509#" 400 0 "a_n78_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -216 -509 -215 -508 l=40 w=400 "a_n866_n683#" "a_n229_n87#" 80 0 "a_n274_n509#" 400 0 "a_n176_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -314 -509 -313 -508 l=40 w=400 "a_n866_n683#" "a_n327_n597#" 80 0 "a_n372_n509#" 400 0 "a_n274_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -412 -509 -411 -508 l=40 w=400 "a_n866_n683#" "a_n425_n87#" 80 0 "a_n470_n509#" 400 0 "a_n372_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -510 -509 -509 -508 l=40 w=400 "a_n866_n683#" "a_n523_n597#" 80 0 "a_n568_n509#" 400 0 "a_n470_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -608 -509 -607 -508 l=40 w=400 "a_n866_n683#" "a_n621_n87#" 80 0 "a_n666_n509#" 400 0 "a_n568_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -706 -509 -705 -508 l=40 w=400 "a_n866_n683#" "a_n719_n597#" 80 0 "a_n764_n509#" 400 0 "a_n666_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 666 109 667 110 l=40 w=400 "a_n866_n683#" "a_653_531#" 80 0 "a_608_109#" 400 0 "a_706_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 568 109 569 110 l=40 w=400 "a_n866_n683#" "a_555_21#" 80 0 "a_510_109#" 400 0 "a_608_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 470 109 471 110 l=40 w=400 "a_n866_n683#" "a_457_531#" 80 0 "a_412_109#" 400 0 "a_510_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 372 109 373 110 l=40 w=400 "a_n866_n683#" "a_359_21#" 80 0 "a_314_109#" 400 0 "a_412_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 274 109 275 110 l=40 w=400 "a_n866_n683#" "a_261_531#" 80 0 "a_216_109#" 400 0 "a_314_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 176 109 177 110 l=40 w=400 "a_n866_n683#" "a_163_21#" 80 0 "a_118_109#" 400 0 "a_216_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 78 109 79 110 l=40 w=400 "a_n866_n683#" "a_65_531#" 80 0 "a_20_109#" 400 0 "a_118_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -20 109 -19 110 l=40 w=400 "a_n866_n683#" "a_n33_21#" 80 0 "a_n78_109#" 400 0 "a_20_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -118 109 -117 110 l=40 w=400 "a_n866_n683#" "a_n131_531#" 80 0 "a_n176_109#" 400 0 "a_n78_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -216 109 -215 110 l=40 w=400 "a_n866_n683#" "a_n229_21#" 80 0 "a_n274_109#" 400 0 "a_n176_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -314 109 -313 110 l=40 w=400 "a_n866_n683#" "a_n327_531#" 80 0 "a_n372_109#" 400 0 "a_n274_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -412 109 -411 110 l=40 w=400 "a_n866_n683#" "a_n425_21#" 80 0 "a_n470_109#" 400 0 "a_n372_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -510 109 -509 110 l=40 w=400 "a_n866_n683#" "a_n523_531#" 80 0 "a_n568_109#" 400 0 "a_n470_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -608 109 -607 110 l=40 w=400 "a_n866_n683#" "a_n621_21#" 80 0 "a_n666_109#" 400 0 "a_n568_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -706 109 -705 110 l=40 w=400 "a_n866_n683#" "a_n719_531#" 80 0 "a_n764_109#" 400 0 "a_n666_109#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.mag
new file mode 100644
index 0000000..d81de50
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_62U3RB.mag
@@ -0,0 +1,967 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -715 581 -657 587
+rect -519 581 -461 587
+rect -323 581 -265 587
+rect -127 581 -69 587
+rect 69 581 127 587
+rect 265 581 323 587
+rect 461 581 519 587
+rect 657 581 715 587
+rect -715 547 -703 581
+rect -519 547 -507 581
+rect -323 547 -311 581
+rect -127 547 -115 581
+rect 69 547 81 581
+rect 265 547 277 581
+rect 461 547 473 581
+rect 657 547 669 581
+rect -715 541 -657 547
+rect -519 541 -461 547
+rect -323 541 -265 547
+rect -127 541 -69 547
+rect 69 541 127 547
+rect 265 541 323 547
+rect 461 541 519 547
+rect 657 541 715 547
+rect -617 71 -559 77
+rect -421 71 -363 77
+rect -225 71 -167 77
+rect -29 71 29 77
+rect 167 71 225 77
+rect 363 71 421 77
+rect 559 71 617 77
+rect -617 37 -605 71
+rect -421 37 -409 71
+rect -225 37 -213 71
+rect -29 37 -17 71
+rect 167 37 179 71
+rect 363 37 375 71
+rect 559 37 571 71
+rect -617 31 -559 37
+rect -421 31 -363 37
+rect -225 31 -167 37
+rect -29 31 29 37
+rect 167 31 225 37
+rect 363 31 421 37
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -421 -37 -363 -31
+rect -225 -37 -167 -31
+rect -29 -37 29 -31
+rect 167 -37 225 -31
+rect 363 -37 421 -31
+rect 559 -37 617 -31
+rect -617 -71 -605 -37
+rect -421 -71 -409 -37
+rect -225 -71 -213 -37
+rect -29 -71 -17 -37
+rect 167 -71 179 -37
+rect 363 -71 375 -37
+rect 559 -71 571 -37
+rect -617 -77 -559 -71
+rect -421 -77 -363 -71
+rect -225 -77 -167 -71
+rect -29 -77 29 -71
+rect 167 -77 225 -71
+rect 363 -77 421 -71
+rect 559 -77 617 -71
+rect -715 -547 -657 -541
+rect -519 -547 -461 -541
+rect -323 -547 -265 -541
+rect -127 -547 -69 -541
+rect 69 -547 127 -541
+rect 265 -547 323 -541
+rect 461 -547 519 -541
+rect 657 -547 715 -541
+rect -715 -581 -703 -547
+rect -519 -581 -507 -547
+rect -323 -581 -311 -547
+rect -127 -581 -115 -547
+rect 69 -581 81 -547
+rect 265 -581 277 -547
+rect 461 -581 473 -547
+rect 657 -581 669 -547
+rect -715 -587 -657 -581
+rect -519 -587 -461 -581
+rect -323 -587 -265 -581
+rect -127 -587 -69 -581
+rect 69 -587 127 -581
+rect 265 -587 323 -581
+rect 461 -587 519 -581
+rect 657 -587 715 -581
+<< pwell >>
+rect -902 -719 902 719
+<< nmoslvt >>
+rect -706 109 -666 509
+rect -608 109 -568 509
+rect -510 109 -470 509
+rect -412 109 -372 509
+rect -314 109 -274 509
+rect -216 109 -176 509
+rect -118 109 -78 509
+rect -20 109 20 509
+rect 78 109 118 509
+rect 176 109 216 509
+rect 274 109 314 509
+rect 372 109 412 509
+rect 470 109 510 509
+rect 568 109 608 509
+rect 666 109 706 509
+rect -706 -509 -666 -109
+rect -608 -509 -568 -109
+rect -510 -509 -470 -109
+rect -412 -509 -372 -109
+rect -314 -509 -274 -109
+rect -216 -509 -176 -109
+rect -118 -509 -78 -109
+rect -20 -509 20 -109
+rect 78 -509 118 -109
+rect 176 -509 216 -109
+rect 274 -509 314 -109
+rect 372 -509 412 -109
+rect 470 -509 510 -109
+rect 568 -509 608 -109
+rect 666 -509 706 -109
+<< ndiff >>
+rect -764 497 -706 509
+rect -764 121 -752 497
+rect -718 121 -706 497
+rect -764 109 -706 121
+rect -666 497 -608 509
+rect -666 121 -654 497
+rect -620 121 -608 497
+rect -666 109 -608 121
+rect -568 497 -510 509
+rect -568 121 -556 497
+rect -522 121 -510 497
+rect -568 109 -510 121
+rect -470 497 -412 509
+rect -470 121 -458 497
+rect -424 121 -412 497
+rect -470 109 -412 121
+rect -372 497 -314 509
+rect -372 121 -360 497
+rect -326 121 -314 497
+rect -372 109 -314 121
+rect -274 497 -216 509
+rect -274 121 -262 497
+rect -228 121 -216 497
+rect -274 109 -216 121
+rect -176 497 -118 509
+rect -176 121 -164 497
+rect -130 121 -118 497
+rect -176 109 -118 121
+rect -78 497 -20 509
+rect -78 121 -66 497
+rect -32 121 -20 497
+rect -78 109 -20 121
+rect 20 497 78 509
+rect 20 121 32 497
+rect 66 121 78 497
+rect 20 109 78 121
+rect 118 497 176 509
+rect 118 121 130 497
+rect 164 121 176 497
+rect 118 109 176 121
+rect 216 497 274 509
+rect 216 121 228 497
+rect 262 121 274 497
+rect 216 109 274 121
+rect 314 497 372 509
+rect 314 121 326 497
+rect 360 121 372 497
+rect 314 109 372 121
+rect 412 497 470 509
+rect 412 121 424 497
+rect 458 121 470 497
+rect 412 109 470 121
+rect 510 497 568 509
+rect 510 121 522 497
+rect 556 121 568 497
+rect 510 109 568 121
+rect 608 497 666 509
+rect 608 121 620 497
+rect 654 121 666 497
+rect 608 109 666 121
+rect 706 497 764 509
+rect 706 121 718 497
+rect 752 121 764 497
+rect 706 109 764 121
+rect -764 -121 -706 -109
+rect -764 -497 -752 -121
+rect -718 -497 -706 -121
+rect -764 -509 -706 -497
+rect -666 -121 -608 -109
+rect -666 -497 -654 -121
+rect -620 -497 -608 -121
+rect -666 -509 -608 -497
+rect -568 -121 -510 -109
+rect -568 -497 -556 -121
+rect -522 -497 -510 -121
+rect -568 -509 -510 -497
+rect -470 -121 -412 -109
+rect -470 -497 -458 -121
+rect -424 -497 -412 -121
+rect -470 -509 -412 -497
+rect -372 -121 -314 -109
+rect -372 -497 -360 -121
+rect -326 -497 -314 -121
+rect -372 -509 -314 -497
+rect -274 -121 -216 -109
+rect -274 -497 -262 -121
+rect -228 -497 -216 -121
+rect -274 -509 -216 -497
+rect -176 -121 -118 -109
+rect -176 -497 -164 -121
+rect -130 -497 -118 -121
+rect -176 -509 -118 -497
+rect -78 -121 -20 -109
+rect -78 -497 -66 -121
+rect -32 -497 -20 -121
+rect -78 -509 -20 -497
+rect 20 -121 78 -109
+rect 20 -497 32 -121
+rect 66 -497 78 -121
+rect 20 -509 78 -497
+rect 118 -121 176 -109
+rect 118 -497 130 -121
+rect 164 -497 176 -121
+rect 118 -509 176 -497
+rect 216 -121 274 -109
+rect 216 -497 228 -121
+rect 262 -497 274 -121
+rect 216 -509 274 -497
+rect 314 -121 372 -109
+rect 314 -497 326 -121
+rect 360 -497 372 -121
+rect 314 -509 372 -497
+rect 412 -121 470 -109
+rect 412 -497 424 -121
+rect 458 -497 470 -121
+rect 412 -509 470 -497
+rect 510 -121 568 -109
+rect 510 -497 522 -121
+rect 556 -497 568 -121
+rect 510 -509 568 -497
+rect 608 -121 666 -109
+rect 608 -497 620 -121
+rect 654 -497 666 -121
+rect 608 -509 666 -497
+rect 706 -121 764 -109
+rect 706 -497 718 -121
+rect 752 -497 764 -121
+rect 706 -509 764 -497
+<< ndiffc >>
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+<< psubdiff >>
+rect -866 649 -770 683
+rect 770 649 866 683
+rect -866 587 -832 649
+rect 832 587 866 649
+rect -866 -649 -832 -587
+rect 832 -649 866 -587
+rect -866 -683 -770 -649
+rect 770 -683 866 -649
+<< psubdiffcont >>
+rect -770 649 770 683
+rect -866 -587 -832 587
+rect 832 -587 866 587
+rect -770 -683 770 -649
+<< poly >>
+rect -719 581 -653 597
+rect -719 547 -703 581
+rect -669 547 -653 581
+rect -719 531 -653 547
+rect -523 581 -457 597
+rect -523 547 -507 581
+rect -473 547 -457 581
+rect -706 509 -666 531
+rect -608 509 -568 535
+rect -523 531 -457 547
+rect -327 581 -261 597
+rect -327 547 -311 581
+rect -277 547 -261 581
+rect -510 509 -470 531
+rect -412 509 -372 535
+rect -327 531 -261 547
+rect -131 581 -65 597
+rect -131 547 -115 581
+rect -81 547 -65 581
+rect -314 509 -274 531
+rect -216 509 -176 535
+rect -131 531 -65 547
+rect 65 581 131 597
+rect 65 547 81 581
+rect 115 547 131 581
+rect -118 509 -78 531
+rect -20 509 20 535
+rect 65 531 131 547
+rect 261 581 327 597
+rect 261 547 277 581
+rect 311 547 327 581
+rect 78 509 118 531
+rect 176 509 216 535
+rect 261 531 327 547
+rect 457 581 523 597
+rect 457 547 473 581
+rect 507 547 523 581
+rect 274 509 314 531
+rect 372 509 412 535
+rect 457 531 523 547
+rect 653 581 719 597
+rect 653 547 669 581
+rect 703 547 719 581
+rect 470 509 510 531
+rect 568 509 608 535
+rect 653 531 719 547
+rect 666 509 706 531
+rect -706 83 -666 109
+rect -608 87 -568 109
+rect -621 71 -555 87
+rect -510 83 -470 109
+rect -412 87 -372 109
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -621 21 -555 37
+rect -425 71 -359 87
+rect -314 83 -274 109
+rect -216 87 -176 109
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -425 21 -359 37
+rect -229 71 -163 87
+rect -118 83 -78 109
+rect -20 87 20 109
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -229 21 -163 37
+rect -33 71 33 87
+rect 78 83 118 109
+rect 176 87 216 109
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 163 71 229 87
+rect 274 83 314 109
+rect 372 87 412 109
+rect 163 37 179 71
+rect 213 37 229 71
+rect 163 21 229 37
+rect 359 71 425 87
+rect 470 83 510 109
+rect 568 87 608 109
+rect 359 37 375 71
+rect 409 37 425 71
+rect 359 21 425 37
+rect 555 71 621 87
+rect 666 83 706 109
+rect 555 37 571 71
+rect 605 37 621 71
+rect 555 21 621 37
+rect -621 -37 -555 -21
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -706 -109 -666 -83
+rect -621 -87 -555 -71
+rect -425 -37 -359 -21
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -608 -109 -568 -87
+rect -510 -109 -470 -83
+rect -425 -87 -359 -71
+rect -229 -37 -163 -21
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -412 -109 -372 -87
+rect -314 -109 -274 -83
+rect -229 -87 -163 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -216 -109 -176 -87
+rect -118 -109 -78 -83
+rect -33 -87 33 -71
+rect 163 -37 229 -21
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect -20 -109 20 -87
+rect 78 -109 118 -83
+rect 163 -87 229 -71
+rect 359 -37 425 -21
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 176 -109 216 -87
+rect 274 -109 314 -83
+rect 359 -87 425 -71
+rect 555 -37 621 -21
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect 372 -109 412 -87
+rect 470 -109 510 -83
+rect 555 -87 621 -71
+rect 568 -109 608 -87
+rect 666 -109 706 -83
+rect -706 -531 -666 -509
+rect -719 -547 -653 -531
+rect -608 -535 -568 -509
+rect -510 -531 -470 -509
+rect -719 -581 -703 -547
+rect -669 -581 -653 -547
+rect -719 -597 -653 -581
+rect -523 -547 -457 -531
+rect -412 -535 -372 -509
+rect -314 -531 -274 -509
+rect -523 -581 -507 -547
+rect -473 -581 -457 -547
+rect -523 -597 -457 -581
+rect -327 -547 -261 -531
+rect -216 -535 -176 -509
+rect -118 -531 -78 -509
+rect -327 -581 -311 -547
+rect -277 -581 -261 -547
+rect -327 -597 -261 -581
+rect -131 -547 -65 -531
+rect -20 -535 20 -509
+rect 78 -531 118 -509
+rect -131 -581 -115 -547
+rect -81 -581 -65 -547
+rect -131 -597 -65 -581
+rect 65 -547 131 -531
+rect 176 -535 216 -509
+rect 274 -531 314 -509
+rect 65 -581 81 -547
+rect 115 -581 131 -547
+rect 65 -597 131 -581
+rect 261 -547 327 -531
+rect 372 -535 412 -509
+rect 470 -531 510 -509
+rect 261 -581 277 -547
+rect 311 -581 327 -547
+rect 261 -597 327 -581
+rect 457 -547 523 -531
+rect 568 -535 608 -509
+rect 666 -531 706 -509
+rect 457 -581 473 -547
+rect 507 -581 523 -547
+rect 457 -597 523 -581
+rect 653 -547 719 -531
+rect 653 -581 669 -547
+rect 703 -581 719 -547
+rect 653 -597 719 -581
+<< polycont >>
+rect -703 547 -669 581
+rect -507 547 -473 581
+rect -311 547 -277 581
+rect -115 547 -81 581
+rect 81 547 115 581
+rect 277 547 311 581
+rect 473 547 507 581
+rect 669 547 703 581
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -703 -581 -669 -547
+rect -507 -581 -473 -547
+rect -311 -581 -277 -547
+rect -115 -581 -81 -547
+rect 81 -581 115 -547
+rect 277 -581 311 -547
+rect 473 -581 507 -547
+rect 669 -581 703 -547
+<< locali >>
+rect -866 649 -770 683
+rect 770 649 866 683
+rect -866 587 -832 649
+rect 832 587 866 649
+rect -719 547 -703 581
+rect -669 547 -653 581
+rect -523 547 -507 581
+rect -473 547 -457 581
+rect -327 547 -311 581
+rect -277 547 -261 581
+rect -131 547 -115 581
+rect -81 547 -65 581
+rect 65 547 81 581
+rect 115 547 131 581
+rect 261 547 277 581
+rect 311 547 327 581
+rect 457 547 473 581
+rect 507 547 523 581
+rect 653 547 669 581
+rect 703 547 719 581
+rect -752 497 -718 513
+rect -752 105 -718 121
+rect -654 497 -620 513
+rect -654 105 -620 121
+rect -556 497 -522 513
+rect -556 105 -522 121
+rect -458 497 -424 513
+rect -458 105 -424 121
+rect -360 497 -326 513
+rect -360 105 -326 121
+rect -262 497 -228 513
+rect -262 105 -228 121
+rect -164 497 -130 513
+rect -164 105 -130 121
+rect -66 497 -32 513
+rect -66 105 -32 121
+rect 32 497 66 513
+rect 32 105 66 121
+rect 130 497 164 513
+rect 130 105 164 121
+rect 228 497 262 513
+rect 228 105 262 121
+rect 326 497 360 513
+rect 326 105 360 121
+rect 424 497 458 513
+rect 424 105 458 121
+rect 522 497 556 513
+rect 522 105 556 121
+rect 620 497 654 513
+rect 620 105 654 121
+rect 718 497 752 513
+rect 718 105 752 121
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 163 37 179 71
+rect 213 37 229 71
+rect 359 37 375 71
+rect 409 37 425 71
+rect 555 37 571 71
+rect 605 37 621 71
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect -752 -121 -718 -105
+rect -752 -513 -718 -497
+rect -654 -121 -620 -105
+rect -654 -513 -620 -497
+rect -556 -121 -522 -105
+rect -556 -513 -522 -497
+rect -458 -121 -424 -105
+rect -458 -513 -424 -497
+rect -360 -121 -326 -105
+rect -360 -513 -326 -497
+rect -262 -121 -228 -105
+rect -262 -513 -228 -497
+rect -164 -121 -130 -105
+rect -164 -513 -130 -497
+rect -66 -121 -32 -105
+rect -66 -513 -32 -497
+rect 32 -121 66 -105
+rect 32 -513 66 -497
+rect 130 -121 164 -105
+rect 130 -513 164 -497
+rect 228 -121 262 -105
+rect 228 -513 262 -497
+rect 326 -121 360 -105
+rect 326 -513 360 -497
+rect 424 -121 458 -105
+rect 424 -513 458 -497
+rect 522 -121 556 -105
+rect 522 -513 556 -497
+rect 620 -121 654 -105
+rect 620 -513 654 -497
+rect 718 -121 752 -105
+rect 718 -513 752 -497
+rect -719 -581 -703 -547
+rect -669 -581 -653 -547
+rect -523 -581 -507 -547
+rect -473 -581 -457 -547
+rect -327 -581 -311 -547
+rect -277 -581 -261 -547
+rect -131 -581 -115 -547
+rect -81 -581 -65 -547
+rect 65 -581 81 -547
+rect 115 -581 131 -547
+rect 261 -581 277 -547
+rect 311 -581 327 -547
+rect 457 -581 473 -547
+rect 507 -581 523 -547
+rect 653 -581 669 -547
+rect 703 -581 719 -547
+rect -866 -649 -832 -587
+rect 832 -649 866 -587
+rect -866 -683 -770 -649
+rect 770 -683 866 -649
+<< viali >>
+rect -703 547 -669 581
+rect -507 547 -473 581
+rect -311 547 -277 581
+rect -115 547 -81 581
+rect 81 547 115 581
+rect 277 547 311 581
+rect 473 547 507 581
+rect 669 547 703 581
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect -703 -581 -669 -547
+rect -507 -581 -473 -547
+rect -311 -581 -277 -547
+rect -115 -581 -81 -547
+rect 81 -581 115 -547
+rect 277 -581 311 -547
+rect 473 -581 507 -547
+rect 669 -581 703 -547
+<< metal1 >>
+rect -715 581 -657 587
+rect -715 547 -703 581
+rect -669 547 -657 581
+rect -715 541 -657 547
+rect -519 581 -461 587
+rect -519 547 -507 581
+rect -473 547 -461 581
+rect -519 541 -461 547
+rect -323 581 -265 587
+rect -323 547 -311 581
+rect -277 547 -265 581
+rect -323 541 -265 547
+rect -127 581 -69 587
+rect -127 547 -115 581
+rect -81 547 -69 581
+rect -127 541 -69 547
+rect 69 581 127 587
+rect 69 547 81 581
+rect 115 547 127 581
+rect 69 541 127 547
+rect 265 581 323 587
+rect 265 547 277 581
+rect 311 547 323 581
+rect 265 541 323 547
+rect 461 581 519 587
+rect 461 547 473 581
+rect 507 547 519 581
+rect 461 541 519 547
+rect 657 581 715 587
+rect 657 547 669 581
+rect 703 547 715 581
+rect 657 541 715 547
+rect -758 497 -712 509
+rect -758 121 -752 497
+rect -718 121 -712 497
+rect -758 109 -712 121
+rect -660 497 -614 509
+rect -660 121 -654 497
+rect -620 121 -614 497
+rect -660 109 -614 121
+rect -562 497 -516 509
+rect -562 121 -556 497
+rect -522 121 -516 497
+rect -562 109 -516 121
+rect -464 497 -418 509
+rect -464 121 -458 497
+rect -424 121 -418 497
+rect -464 109 -418 121
+rect -366 497 -320 509
+rect -366 121 -360 497
+rect -326 121 -320 497
+rect -366 109 -320 121
+rect -268 497 -222 509
+rect -268 121 -262 497
+rect -228 121 -222 497
+rect -268 109 -222 121
+rect -170 497 -124 509
+rect -170 121 -164 497
+rect -130 121 -124 497
+rect -170 109 -124 121
+rect -72 497 -26 509
+rect -72 121 -66 497
+rect -32 121 -26 497
+rect -72 109 -26 121
+rect 26 497 72 509
+rect 26 121 32 497
+rect 66 121 72 497
+rect 26 109 72 121
+rect 124 497 170 509
+rect 124 121 130 497
+rect 164 121 170 497
+rect 124 109 170 121
+rect 222 497 268 509
+rect 222 121 228 497
+rect 262 121 268 497
+rect 222 109 268 121
+rect 320 497 366 509
+rect 320 121 326 497
+rect 360 121 366 497
+rect 320 109 366 121
+rect 418 497 464 509
+rect 418 121 424 497
+rect 458 121 464 497
+rect 418 109 464 121
+rect 516 497 562 509
+rect 516 121 522 497
+rect 556 121 562 497
+rect 516 109 562 121
+rect 614 497 660 509
+rect 614 121 620 497
+rect 654 121 660 497
+rect 614 109 660 121
+rect 712 497 758 509
+rect 712 121 718 497
+rect 752 121 758 497
+rect 712 109 758 121
+rect -617 71 -559 77
+rect -617 37 -605 71
+rect -571 37 -559 71
+rect -617 31 -559 37
+rect -421 71 -363 77
+rect -421 37 -409 71
+rect -375 37 -363 71
+rect -421 31 -363 37
+rect -225 71 -167 77
+rect -225 37 -213 71
+rect -179 37 -167 71
+rect -225 31 -167 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 167 71 225 77
+rect 167 37 179 71
+rect 213 37 225 71
+rect 167 31 225 37
+rect 363 71 421 77
+rect 363 37 375 71
+rect 409 37 421 71
+rect 363 31 421 37
+rect 559 71 617 77
+rect 559 37 571 71
+rect 605 37 617 71
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -617 -71 -605 -37
+rect -571 -71 -559 -37
+rect -617 -77 -559 -71
+rect -421 -37 -363 -31
+rect -421 -71 -409 -37
+rect -375 -71 -363 -37
+rect -421 -77 -363 -71
+rect -225 -37 -167 -31
+rect -225 -71 -213 -37
+rect -179 -71 -167 -37
+rect -225 -77 -167 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 167 -37 225 -31
+rect 167 -71 179 -37
+rect 213 -71 225 -37
+rect 167 -77 225 -71
+rect 363 -37 421 -31
+rect 363 -71 375 -37
+rect 409 -71 421 -37
+rect 363 -77 421 -71
+rect 559 -37 617 -31
+rect 559 -71 571 -37
+rect 605 -71 617 -37
+rect 559 -77 617 -71
+rect -758 -121 -712 -109
+rect -758 -497 -752 -121
+rect -718 -497 -712 -121
+rect -758 -509 -712 -497
+rect -660 -121 -614 -109
+rect -660 -497 -654 -121
+rect -620 -497 -614 -121
+rect -660 -509 -614 -497
+rect -562 -121 -516 -109
+rect -562 -497 -556 -121
+rect -522 -497 -516 -121
+rect -562 -509 -516 -497
+rect -464 -121 -418 -109
+rect -464 -497 -458 -121
+rect -424 -497 -418 -121
+rect -464 -509 -418 -497
+rect -366 -121 -320 -109
+rect -366 -497 -360 -121
+rect -326 -497 -320 -121
+rect -366 -509 -320 -497
+rect -268 -121 -222 -109
+rect -268 -497 -262 -121
+rect -228 -497 -222 -121
+rect -268 -509 -222 -497
+rect -170 -121 -124 -109
+rect -170 -497 -164 -121
+rect -130 -497 -124 -121
+rect -170 -509 -124 -497
+rect -72 -121 -26 -109
+rect -72 -497 -66 -121
+rect -32 -497 -26 -121
+rect -72 -509 -26 -497
+rect 26 -121 72 -109
+rect 26 -497 32 -121
+rect 66 -497 72 -121
+rect 26 -509 72 -497
+rect 124 -121 170 -109
+rect 124 -497 130 -121
+rect 164 -497 170 -121
+rect 124 -509 170 -497
+rect 222 -121 268 -109
+rect 222 -497 228 -121
+rect 262 -497 268 -121
+rect 222 -509 268 -497
+rect 320 -121 366 -109
+rect 320 -497 326 -121
+rect 360 -497 366 -121
+rect 320 -509 366 -497
+rect 418 -121 464 -109
+rect 418 -497 424 -121
+rect 458 -497 464 -121
+rect 418 -509 464 -497
+rect 516 -121 562 -109
+rect 516 -497 522 -121
+rect 556 -497 562 -121
+rect 516 -509 562 -497
+rect 614 -121 660 -109
+rect 614 -497 620 -121
+rect 654 -497 660 -121
+rect 614 -509 660 -497
+rect 712 -121 758 -109
+rect 712 -497 718 -121
+rect 752 -497 758 -121
+rect 712 -509 758 -497
+rect -715 -547 -657 -541
+rect -715 -581 -703 -547
+rect -669 -581 -657 -547
+rect -715 -587 -657 -581
+rect -519 -547 -461 -541
+rect -519 -581 -507 -547
+rect -473 -581 -461 -547
+rect -519 -587 -461 -581
+rect -323 -547 -265 -541
+rect -323 -581 -311 -547
+rect -277 -581 -265 -547
+rect -323 -587 -265 -581
+rect -127 -547 -69 -541
+rect -127 -581 -115 -547
+rect -81 -581 -69 -547
+rect -127 -587 -69 -581
+rect 69 -547 127 -541
+rect 69 -581 81 -547
+rect 115 -581 127 -547
+rect 69 -587 127 -581
+rect 265 -547 323 -541
+rect 265 -581 277 -547
+rect 311 -581 323 -547
+rect 265 -587 323 -581
+rect 461 -547 519 -541
+rect 461 -581 473 -547
+rect 507 -581 519 -547
+rect 461 -587 519 -581
+rect 657 -547 715 -541
+rect 657 -581 669 -547
+rect 703 -581 715 -547
+rect 657 -587 715 -581
+<< properties >>
+string FIXED_BBOX -849 -666 849 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.2 m 2 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag
new file mode 100644
index 0000000..6782ae9
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_RE4MKQ.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645781187
+<< error_p >>
+rect -1181 581 -1123 587
+rect -989 581 -931 587
+rect -797 581 -739 587
+rect -605 581 -547 587
+rect -413 581 -355 587
+rect -221 581 -163 587
+rect -29 581 29 587
+rect 163 581 221 587
+rect 355 581 413 587
+rect 547 581 605 587
+rect 739 581 797 587
+rect 931 581 989 587
+rect 1123 581 1181 587
+rect -1181 547 -1169 581
+rect -989 547 -977 581
+rect -797 547 -785 581
+rect -605 547 -593 581
+rect -413 547 -401 581
+rect -221 547 -209 581
+rect -29 547 -17 581
+rect 163 547 175 581
+rect 355 547 367 581
+rect 547 547 559 581
+rect 739 547 751 581
+rect 931 547 943 581
+rect 1123 547 1135 581
+rect -1181 541 -1123 547
+rect -989 541 -931 547
+rect -797 541 -739 547
+rect -605 541 -547 547
+rect -413 541 -355 547
+rect -221 541 -163 547
+rect -29 541 29 547
+rect 163 541 221 547
+rect 355 541 413 547
+rect 547 541 605 547
+rect 739 541 797 547
+rect 931 541 989 547
+rect 1123 541 1181 547
+rect -1085 71 -1027 77
+rect -893 71 -835 77
+rect -701 71 -643 77
+rect -509 71 -451 77
+rect -317 71 -259 77
+rect -125 71 -67 77
+rect 67 71 125 77
+rect 259 71 317 77
+rect 451 71 509 77
+rect 643 71 701 77
+rect 835 71 893 77
+rect 1027 71 1085 77
+rect -1085 37 -1073 71
+rect -893 37 -881 71
+rect -701 37 -689 71
+rect -509 37 -497 71
+rect -317 37 -305 71
+rect -125 37 -113 71
+rect 67 37 79 71
+rect 259 37 271 71
+rect 451 37 463 71
+rect 643 37 655 71
+rect 835 37 847 71
+rect 1027 37 1039 71
+rect -1085 31 -1027 37
+rect -893 31 -835 37
+rect -701 31 -643 37
+rect -509 31 -451 37
+rect -317 31 -259 37
+rect -125 31 -67 37
+rect 67 31 125 37
+rect 259 31 317 37
+rect 451 31 509 37
+rect 643 31 701 37
+rect 835 31 893 37
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -893 -37 -835 -31
+rect -701 -37 -643 -31
+rect -509 -37 -451 -31
+rect -317 -37 -259 -31
+rect -125 -37 -67 -31
+rect 67 -37 125 -31
+rect 259 -37 317 -31
+rect 451 -37 509 -31
+rect 643 -37 701 -31
+rect 835 -37 893 -31
+rect 1027 -37 1085 -31
+rect -1085 -71 -1073 -37
+rect -893 -71 -881 -37
+rect -701 -71 -689 -37
+rect -509 -71 -497 -37
+rect -317 -71 -305 -37
+rect -125 -71 -113 -37
+rect 67 -71 79 -37
+rect 259 -71 271 -37
+rect 451 -71 463 -37
+rect 643 -71 655 -37
+rect 835 -71 847 -37
+rect 1027 -71 1039 -37
+rect -1085 -77 -1027 -71
+rect -893 -77 -835 -71
+rect -701 -77 -643 -71
+rect -509 -77 -451 -71
+rect -317 -77 -259 -71
+rect -125 -77 -67 -71
+rect 67 -77 125 -71
+rect 259 -77 317 -71
+rect 451 -77 509 -71
+rect 643 -77 701 -71
+rect 835 -77 893 -71
+rect 1027 -77 1085 -71
+rect -1181 -547 -1123 -541
+rect -989 -547 -931 -541
+rect -797 -547 -739 -541
+rect -605 -547 -547 -541
+rect -413 -547 -355 -541
+rect -221 -547 -163 -541
+rect -29 -547 29 -541
+rect 163 -547 221 -541
+rect 355 -547 413 -541
+rect 547 -547 605 -541
+rect 739 -547 797 -541
+rect 931 -547 989 -541
+rect 1123 -547 1181 -541
+rect -1181 -581 -1169 -547
+rect -989 -581 -977 -547
+rect -797 -581 -785 -547
+rect -605 -581 -593 -547
+rect -413 -581 -401 -547
+rect -221 -581 -209 -547
+rect -29 -581 -17 -547
+rect 163 -581 175 -547
+rect 355 -581 367 -547
+rect 547 -581 559 -547
+rect 739 -581 751 -547
+rect 931 -581 943 -547
+rect 1123 -581 1135 -547
+rect -1181 -587 -1123 -581
+rect -989 -587 -931 -581
+rect -797 -587 -739 -581
+rect -605 -587 -547 -581
+rect -413 -587 -355 -581
+rect -221 -587 -163 -581
+rect -29 -587 29 -581
+rect 163 -587 221 -581
+rect 355 -587 413 -581
+rect 547 -587 605 -581
+rect 739 -587 797 -581
+rect 931 -587 989 -581
+rect 1123 -587 1181 -581
+<< pwell >>
+rect -1367 -719 1367 719
+<< nmoslvt >>
+rect -1167 109 -1137 509
+rect -1071 109 -1041 509
+rect -975 109 -945 509
+rect -879 109 -849 509
+rect -783 109 -753 509
+rect -687 109 -657 509
+rect -591 109 -561 509
+rect -495 109 -465 509
+rect -399 109 -369 509
+rect -303 109 -273 509
+rect -207 109 -177 509
+rect -111 109 -81 509
+rect -15 109 15 509
+rect 81 109 111 509
+rect 177 109 207 509
+rect 273 109 303 509
+rect 369 109 399 509
+rect 465 109 495 509
+rect 561 109 591 509
+rect 657 109 687 509
+rect 753 109 783 509
+rect 849 109 879 509
+rect 945 109 975 509
+rect 1041 109 1071 509
+rect 1137 109 1167 509
+rect -1167 -509 -1137 -109
+rect -1071 -509 -1041 -109
+rect -975 -509 -945 -109
+rect -879 -509 -849 -109
+rect -783 -509 -753 -109
+rect -687 -509 -657 -109
+rect -591 -509 -561 -109
+rect -495 -509 -465 -109
+rect -399 -509 -369 -109
+rect -303 -509 -273 -109
+rect -207 -509 -177 -109
+rect -111 -509 -81 -109
+rect -15 -509 15 -109
+rect 81 -509 111 -109
+rect 177 -509 207 -109
+rect 273 -509 303 -109
+rect 369 -509 399 -109
+rect 465 -509 495 -109
+rect 561 -509 591 -109
+rect 657 -509 687 -109
+rect 753 -509 783 -109
+rect 849 -509 879 -109
+rect 945 -509 975 -109
+rect 1041 -509 1071 -109
+rect 1137 -509 1167 -109
+<< ndiff >>
+rect -1229 497 -1167 509
+rect -1229 121 -1217 497
+rect -1183 121 -1167 497
+rect -1229 109 -1167 121
+rect -1137 497 -1071 509
+rect -1137 121 -1121 497
+rect -1087 121 -1071 497
+rect -1137 109 -1071 121
+rect -1041 497 -975 509
+rect -1041 121 -1025 497
+rect -991 121 -975 497
+rect -1041 109 -975 121
+rect -945 497 -879 509
+rect -945 121 -929 497
+rect -895 121 -879 497
+rect -945 109 -879 121
+rect -849 497 -783 509
+rect -849 121 -833 497
+rect -799 121 -783 497
+rect -849 109 -783 121
+rect -753 497 -687 509
+rect -753 121 -737 497
+rect -703 121 -687 497
+rect -753 109 -687 121
+rect -657 497 -591 509
+rect -657 121 -641 497
+rect -607 121 -591 497
+rect -657 109 -591 121
+rect -561 497 -495 509
+rect -561 121 -545 497
+rect -511 121 -495 497
+rect -561 109 -495 121
+rect -465 497 -399 509
+rect -465 121 -449 497
+rect -415 121 -399 497
+rect -465 109 -399 121
+rect -369 497 -303 509
+rect -369 121 -353 497
+rect -319 121 -303 497
+rect -369 109 -303 121
+rect -273 497 -207 509
+rect -273 121 -257 497
+rect -223 121 -207 497
+rect -273 109 -207 121
+rect -177 497 -111 509
+rect -177 121 -161 497
+rect -127 121 -111 497
+rect -177 109 -111 121
+rect -81 497 -15 509
+rect -81 121 -65 497
+rect -31 121 -15 497
+rect -81 109 -15 121
+rect 15 497 81 509
+rect 15 121 31 497
+rect 65 121 81 497
+rect 15 109 81 121
+rect 111 497 177 509
+rect 111 121 127 497
+rect 161 121 177 497
+rect 111 109 177 121
+rect 207 497 273 509
+rect 207 121 223 497
+rect 257 121 273 497
+rect 207 109 273 121
+rect 303 497 369 509
+rect 303 121 319 497
+rect 353 121 369 497
+rect 303 109 369 121
+rect 399 497 465 509
+rect 399 121 415 497
+rect 449 121 465 497
+rect 399 109 465 121
+rect 495 497 561 509
+rect 495 121 511 497
+rect 545 121 561 497
+rect 495 109 561 121
+rect 591 497 657 509
+rect 591 121 607 497
+rect 641 121 657 497
+rect 591 109 657 121
+rect 687 497 753 509
+rect 687 121 703 497
+rect 737 121 753 497
+rect 687 109 753 121
+rect 783 497 849 509
+rect 783 121 799 497
+rect 833 121 849 497
+rect 783 109 849 121
+rect 879 497 945 509
+rect 879 121 895 497
+rect 929 121 945 497
+rect 879 109 945 121
+rect 975 497 1041 509
+rect 975 121 991 497
+rect 1025 121 1041 497
+rect 975 109 1041 121
+rect 1071 497 1137 509
+rect 1071 121 1087 497
+rect 1121 121 1137 497
+rect 1071 109 1137 121
+rect 1167 497 1229 509
+rect 1167 121 1183 497
+rect 1217 121 1229 497
+rect 1167 109 1229 121
+rect -1229 -121 -1167 -109
+rect -1229 -497 -1217 -121
+rect -1183 -497 -1167 -121
+rect -1229 -509 -1167 -497
+rect -1137 -121 -1071 -109
+rect -1137 -497 -1121 -121
+rect -1087 -497 -1071 -121
+rect -1137 -509 -1071 -497
+rect -1041 -121 -975 -109
+rect -1041 -497 -1025 -121
+rect -991 -497 -975 -121
+rect -1041 -509 -975 -497
+rect -945 -121 -879 -109
+rect -945 -497 -929 -121
+rect -895 -497 -879 -121
+rect -945 -509 -879 -497
+rect -849 -121 -783 -109
+rect -849 -497 -833 -121
+rect -799 -497 -783 -121
+rect -849 -509 -783 -497
+rect -753 -121 -687 -109
+rect -753 -497 -737 -121
+rect -703 -497 -687 -121
+rect -753 -509 -687 -497
+rect -657 -121 -591 -109
+rect -657 -497 -641 -121
+rect -607 -497 -591 -121
+rect -657 -509 -591 -497
+rect -561 -121 -495 -109
+rect -561 -497 -545 -121
+rect -511 -497 -495 -121
+rect -561 -509 -495 -497
+rect -465 -121 -399 -109
+rect -465 -497 -449 -121
+rect -415 -497 -399 -121
+rect -465 -509 -399 -497
+rect -369 -121 -303 -109
+rect -369 -497 -353 -121
+rect -319 -497 -303 -121
+rect -369 -509 -303 -497
+rect -273 -121 -207 -109
+rect -273 -497 -257 -121
+rect -223 -497 -207 -121
+rect -273 -509 -207 -497
+rect -177 -121 -111 -109
+rect -177 -497 -161 -121
+rect -127 -497 -111 -121
+rect -177 -509 -111 -497
+rect -81 -121 -15 -109
+rect -81 -497 -65 -121
+rect -31 -497 -15 -121
+rect -81 -509 -15 -497
+rect 15 -121 81 -109
+rect 15 -497 31 -121
+rect 65 -497 81 -121
+rect 15 -509 81 -497
+rect 111 -121 177 -109
+rect 111 -497 127 -121
+rect 161 -497 177 -121
+rect 111 -509 177 -497
+rect 207 -121 273 -109
+rect 207 -497 223 -121
+rect 257 -497 273 -121
+rect 207 -509 273 -497
+rect 303 -121 369 -109
+rect 303 -497 319 -121
+rect 353 -497 369 -121
+rect 303 -509 369 -497
+rect 399 -121 465 -109
+rect 399 -497 415 -121
+rect 449 -497 465 -121
+rect 399 -509 465 -497
+rect 495 -121 561 -109
+rect 495 -497 511 -121
+rect 545 -497 561 -121
+rect 495 -509 561 -497
+rect 591 -121 657 -109
+rect 591 -497 607 -121
+rect 641 -497 657 -121
+rect 591 -509 657 -497
+rect 687 -121 753 -109
+rect 687 -497 703 -121
+rect 737 -497 753 -121
+rect 687 -509 753 -497
+rect 783 -121 849 -109
+rect 783 -497 799 -121
+rect 833 -497 849 -121
+rect 783 -509 849 -497
+rect 879 -121 945 -109
+rect 879 -497 895 -121
+rect 929 -497 945 -121
+rect 879 -509 945 -497
+rect 975 -121 1041 -109
+rect 975 -497 991 -121
+rect 1025 -497 1041 -121
+rect 975 -509 1041 -497
+rect 1071 -121 1137 -109
+rect 1071 -497 1087 -121
+rect 1121 -497 1137 -121
+rect 1071 -509 1137 -497
+rect 1167 -121 1229 -109
+rect 1167 -497 1183 -121
+rect 1217 -497 1229 -121
+rect 1167 -509 1229 -497
+<< ndiffc >>
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+<< psubdiff >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< psubdiffcont >>
+rect -1235 649 1235 683
+rect -1331 -587 -1297 587
+rect 1297 -587 1331 587
+rect -1235 -683 1235 -649
+<< poly >>
+rect -1185 581 -1119 597
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -1185 531 -1119 547
+rect -993 581 -927 597
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -1167 509 -1137 531
+rect -1071 509 -1041 535
+rect -993 531 -927 547
+rect -801 581 -735 597
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -975 509 -945 531
+rect -879 509 -849 535
+rect -801 531 -735 547
+rect -609 581 -543 597
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -783 509 -753 531
+rect -687 509 -657 535
+rect -609 531 -543 547
+rect -417 581 -351 597
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -591 509 -561 531
+rect -495 509 -465 535
+rect -417 531 -351 547
+rect -225 581 -159 597
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -399 509 -369 531
+rect -303 509 -273 535
+rect -225 531 -159 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -207 509 -177 531
+rect -111 509 -81 535
+rect -33 531 33 547
+rect 159 581 225 597
+rect 159 547 175 581
+rect 209 547 225 581
+rect -15 509 15 531
+rect 81 509 111 535
+rect 159 531 225 547
+rect 351 581 417 597
+rect 351 547 367 581
+rect 401 547 417 581
+rect 177 509 207 531
+rect 273 509 303 535
+rect 351 531 417 547
+rect 543 581 609 597
+rect 543 547 559 581
+rect 593 547 609 581
+rect 369 509 399 531
+rect 465 509 495 535
+rect 543 531 609 547
+rect 735 581 801 597
+rect 735 547 751 581
+rect 785 547 801 581
+rect 561 509 591 531
+rect 657 509 687 535
+rect 735 531 801 547
+rect 927 581 993 597
+rect 927 547 943 581
+rect 977 547 993 581
+rect 753 509 783 531
+rect 849 509 879 535
+rect 927 531 993 547
+rect 1119 581 1185 597
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect 945 509 975 531
+rect 1041 509 1071 535
+rect 1119 531 1185 547
+rect 1137 509 1167 531
+rect -1167 83 -1137 109
+rect -1071 87 -1041 109
+rect -1089 71 -1023 87
+rect -975 83 -945 109
+rect -879 87 -849 109
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -1089 21 -1023 37
+rect -897 71 -831 87
+rect -783 83 -753 109
+rect -687 87 -657 109
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -897 21 -831 37
+rect -705 71 -639 87
+rect -591 83 -561 109
+rect -495 87 -465 109
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -705 21 -639 37
+rect -513 71 -447 87
+rect -399 83 -369 109
+rect -303 87 -273 109
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -513 21 -447 37
+rect -321 71 -255 87
+rect -207 83 -177 109
+rect -111 87 -81 109
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -321 21 -255 37
+rect -129 71 -63 87
+rect -15 83 15 109
+rect 81 87 111 109
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect -129 21 -63 37
+rect 63 71 129 87
+rect 177 83 207 109
+rect 273 87 303 109
+rect 63 37 79 71
+rect 113 37 129 71
+rect 63 21 129 37
+rect 255 71 321 87
+rect 369 83 399 109
+rect 465 87 495 109
+rect 255 37 271 71
+rect 305 37 321 71
+rect 255 21 321 37
+rect 447 71 513 87
+rect 561 83 591 109
+rect 657 87 687 109
+rect 447 37 463 71
+rect 497 37 513 71
+rect 447 21 513 37
+rect 639 71 705 87
+rect 753 83 783 109
+rect 849 87 879 109
+rect 639 37 655 71
+rect 689 37 705 71
+rect 639 21 705 37
+rect 831 71 897 87
+rect 945 83 975 109
+rect 1041 87 1071 109
+rect 831 37 847 71
+rect 881 37 897 71
+rect 831 21 897 37
+rect 1023 71 1089 87
+rect 1137 83 1167 109
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect 1023 21 1089 37
+rect -1089 -37 -1023 -21
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -1167 -109 -1137 -83
+rect -1089 -87 -1023 -71
+rect -897 -37 -831 -21
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -1071 -109 -1041 -87
+rect -975 -109 -945 -83
+rect -897 -87 -831 -71
+rect -705 -37 -639 -21
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -879 -109 -849 -87
+rect -783 -109 -753 -83
+rect -705 -87 -639 -71
+rect -513 -37 -447 -21
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -687 -109 -657 -87
+rect -591 -109 -561 -83
+rect -513 -87 -447 -71
+rect -321 -37 -255 -21
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -495 -109 -465 -87
+rect -399 -109 -369 -83
+rect -321 -87 -255 -71
+rect -129 -37 -63 -21
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect -303 -109 -273 -87
+rect -207 -109 -177 -83
+rect -129 -87 -63 -71
+rect 63 -37 129 -21
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect -111 -109 -81 -87
+rect -15 -109 15 -83
+rect 63 -87 129 -71
+rect 255 -37 321 -21
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 81 -109 111 -87
+rect 177 -109 207 -83
+rect 255 -87 321 -71
+rect 447 -37 513 -21
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 273 -109 303 -87
+rect 369 -109 399 -83
+rect 447 -87 513 -71
+rect 639 -37 705 -21
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 465 -109 495 -87
+rect 561 -109 591 -83
+rect 639 -87 705 -71
+rect 831 -37 897 -21
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 657 -109 687 -87
+rect 753 -109 783 -83
+rect 831 -87 897 -71
+rect 1023 -37 1089 -21
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect 849 -109 879 -87
+rect 945 -109 975 -83
+rect 1023 -87 1089 -71
+rect 1041 -109 1071 -87
+rect 1137 -109 1167 -83
+rect -1167 -531 -1137 -509
+rect -1185 -547 -1119 -531
+rect -1071 -535 -1041 -509
+rect -975 -531 -945 -509
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -1185 -597 -1119 -581
+rect -993 -547 -927 -531
+rect -879 -535 -849 -509
+rect -783 -531 -753 -509
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -993 -597 -927 -581
+rect -801 -547 -735 -531
+rect -687 -535 -657 -509
+rect -591 -531 -561 -509
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -801 -597 -735 -581
+rect -609 -547 -543 -531
+rect -495 -535 -465 -509
+rect -399 -531 -369 -509
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -609 -597 -543 -581
+rect -417 -547 -351 -531
+rect -303 -535 -273 -509
+rect -207 -531 -177 -509
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -417 -597 -351 -581
+rect -225 -547 -159 -531
+rect -111 -535 -81 -509
+rect -15 -531 15 -509
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -225 -597 -159 -581
+rect -33 -547 33 -531
+rect 81 -535 111 -509
+rect 177 -531 207 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 159 -547 225 -531
+rect 273 -535 303 -509
+rect 369 -531 399 -509
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 159 -597 225 -581
+rect 351 -547 417 -531
+rect 465 -535 495 -509
+rect 561 -531 591 -509
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 351 -597 417 -581
+rect 543 -547 609 -531
+rect 657 -535 687 -509
+rect 753 -531 783 -509
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 543 -597 609 -581
+rect 735 -547 801 -531
+rect 849 -535 879 -509
+rect 945 -531 975 -509
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 735 -597 801 -581
+rect 927 -547 993 -531
+rect 1041 -535 1071 -509
+rect 1137 -531 1167 -509
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 927 -597 993 -581
+rect 1119 -547 1185 -531
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect 1119 -597 1185 -581
+<< polycont >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< locali >>
+rect -1331 649 -1235 683
+rect 1235 649 1331 683
+rect -1331 587 -1297 649
+rect 1297 587 1331 649
+rect -1185 547 -1169 581
+rect -1135 547 -1119 581
+rect -993 547 -977 581
+rect -943 547 -927 581
+rect -801 547 -785 581
+rect -751 547 -735 581
+rect -609 547 -593 581
+rect -559 547 -543 581
+rect -417 547 -401 581
+rect -367 547 -351 581
+rect -225 547 -209 581
+rect -175 547 -159 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 159 547 175 581
+rect 209 547 225 581
+rect 351 547 367 581
+rect 401 547 417 581
+rect 543 547 559 581
+rect 593 547 609 581
+rect 735 547 751 581
+rect 785 547 801 581
+rect 927 547 943 581
+rect 977 547 993 581
+rect 1119 547 1135 581
+rect 1169 547 1185 581
+rect -1217 497 -1183 513
+rect -1217 105 -1183 121
+rect -1121 497 -1087 513
+rect -1121 105 -1087 121
+rect -1025 497 -991 513
+rect -1025 105 -991 121
+rect -929 497 -895 513
+rect -929 105 -895 121
+rect -833 497 -799 513
+rect -833 105 -799 121
+rect -737 497 -703 513
+rect -737 105 -703 121
+rect -641 497 -607 513
+rect -641 105 -607 121
+rect -545 497 -511 513
+rect -545 105 -511 121
+rect -449 497 -415 513
+rect -449 105 -415 121
+rect -353 497 -319 513
+rect -353 105 -319 121
+rect -257 497 -223 513
+rect -257 105 -223 121
+rect -161 497 -127 513
+rect -161 105 -127 121
+rect -65 497 -31 513
+rect -65 105 -31 121
+rect 31 497 65 513
+rect 31 105 65 121
+rect 127 497 161 513
+rect 127 105 161 121
+rect 223 497 257 513
+rect 223 105 257 121
+rect 319 497 353 513
+rect 319 105 353 121
+rect 415 497 449 513
+rect 415 105 449 121
+rect 511 497 545 513
+rect 511 105 545 121
+rect 607 497 641 513
+rect 607 105 641 121
+rect 703 497 737 513
+rect 703 105 737 121
+rect 799 497 833 513
+rect 799 105 833 121
+rect 895 497 929 513
+rect 895 105 929 121
+rect 991 497 1025 513
+rect 991 105 1025 121
+rect 1087 497 1121 513
+rect 1087 105 1121 121
+rect 1183 497 1217 513
+rect 1183 105 1217 121
+rect -1089 37 -1073 71
+rect -1039 37 -1023 71
+rect -897 37 -881 71
+rect -847 37 -831 71
+rect -705 37 -689 71
+rect -655 37 -639 71
+rect -513 37 -497 71
+rect -463 37 -447 71
+rect -321 37 -305 71
+rect -271 37 -255 71
+rect -129 37 -113 71
+rect -79 37 -63 71
+rect 63 37 79 71
+rect 113 37 129 71
+rect 255 37 271 71
+rect 305 37 321 71
+rect 447 37 463 71
+rect 497 37 513 71
+rect 639 37 655 71
+rect 689 37 705 71
+rect 831 37 847 71
+rect 881 37 897 71
+rect 1023 37 1039 71
+rect 1073 37 1089 71
+rect -1089 -71 -1073 -37
+rect -1039 -71 -1023 -37
+rect -897 -71 -881 -37
+rect -847 -71 -831 -37
+rect -705 -71 -689 -37
+rect -655 -71 -639 -37
+rect -513 -71 -497 -37
+rect -463 -71 -447 -37
+rect -321 -71 -305 -37
+rect -271 -71 -255 -37
+rect -129 -71 -113 -37
+rect -79 -71 -63 -37
+rect 63 -71 79 -37
+rect 113 -71 129 -37
+rect 255 -71 271 -37
+rect 305 -71 321 -37
+rect 447 -71 463 -37
+rect 497 -71 513 -37
+rect 639 -71 655 -37
+rect 689 -71 705 -37
+rect 831 -71 847 -37
+rect 881 -71 897 -37
+rect 1023 -71 1039 -37
+rect 1073 -71 1089 -37
+rect -1217 -121 -1183 -105
+rect -1217 -513 -1183 -497
+rect -1121 -121 -1087 -105
+rect -1121 -513 -1087 -497
+rect -1025 -121 -991 -105
+rect -1025 -513 -991 -497
+rect -929 -121 -895 -105
+rect -929 -513 -895 -497
+rect -833 -121 -799 -105
+rect -833 -513 -799 -497
+rect -737 -121 -703 -105
+rect -737 -513 -703 -497
+rect -641 -121 -607 -105
+rect -641 -513 -607 -497
+rect -545 -121 -511 -105
+rect -545 -513 -511 -497
+rect -449 -121 -415 -105
+rect -449 -513 -415 -497
+rect -353 -121 -319 -105
+rect -353 -513 -319 -497
+rect -257 -121 -223 -105
+rect -257 -513 -223 -497
+rect -161 -121 -127 -105
+rect -161 -513 -127 -497
+rect -65 -121 -31 -105
+rect -65 -513 -31 -497
+rect 31 -121 65 -105
+rect 31 -513 65 -497
+rect 127 -121 161 -105
+rect 127 -513 161 -497
+rect 223 -121 257 -105
+rect 223 -513 257 -497
+rect 319 -121 353 -105
+rect 319 -513 353 -497
+rect 415 -121 449 -105
+rect 415 -513 449 -497
+rect 511 -121 545 -105
+rect 511 -513 545 -497
+rect 607 -121 641 -105
+rect 607 -513 641 -497
+rect 703 -121 737 -105
+rect 703 -513 737 -497
+rect 799 -121 833 -105
+rect 799 -513 833 -497
+rect 895 -121 929 -105
+rect 895 -513 929 -497
+rect 991 -121 1025 -105
+rect 991 -513 1025 -497
+rect 1087 -121 1121 -105
+rect 1087 -513 1121 -497
+rect 1183 -121 1217 -105
+rect 1183 -513 1217 -497
+rect -1185 -581 -1169 -547
+rect -1135 -581 -1119 -547
+rect -993 -581 -977 -547
+rect -943 -581 -927 -547
+rect -801 -581 -785 -547
+rect -751 -581 -735 -547
+rect -609 -581 -593 -547
+rect -559 -581 -543 -547
+rect -417 -581 -401 -547
+rect -367 -581 -351 -547
+rect -225 -581 -209 -547
+rect -175 -581 -159 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 159 -581 175 -547
+rect 209 -581 225 -547
+rect 351 -581 367 -547
+rect 401 -581 417 -547
+rect 543 -581 559 -547
+rect 593 -581 609 -547
+rect 735 -581 751 -547
+rect 785 -581 801 -547
+rect 927 -581 943 -547
+rect 977 -581 993 -547
+rect 1119 -581 1135 -547
+rect 1169 -581 1185 -547
+rect -1331 -649 -1297 -587
+rect 1297 -649 1331 -587
+rect -1331 -683 -1235 -649
+rect 1235 -683 1331 -649
+<< viali >>
+rect -1169 547 -1135 581
+rect -977 547 -943 581
+rect -785 547 -751 581
+rect -593 547 -559 581
+rect -401 547 -367 581
+rect -209 547 -175 581
+rect -17 547 17 581
+rect 175 547 209 581
+rect 367 547 401 581
+rect 559 547 593 581
+rect 751 547 785 581
+rect 943 547 977 581
+rect 1135 547 1169 581
+rect -1217 121 -1183 497
+rect -1121 121 -1087 497
+rect -1025 121 -991 497
+rect -929 121 -895 497
+rect -833 121 -799 497
+rect -737 121 -703 497
+rect -641 121 -607 497
+rect -545 121 -511 497
+rect -449 121 -415 497
+rect -353 121 -319 497
+rect -257 121 -223 497
+rect -161 121 -127 497
+rect -65 121 -31 497
+rect 31 121 65 497
+rect 127 121 161 497
+rect 223 121 257 497
+rect 319 121 353 497
+rect 415 121 449 497
+rect 511 121 545 497
+rect 607 121 641 497
+rect 703 121 737 497
+rect 799 121 833 497
+rect 895 121 929 497
+rect 991 121 1025 497
+rect 1087 121 1121 497
+rect 1183 121 1217 497
+rect -1073 37 -1039 71
+rect -881 37 -847 71
+rect -689 37 -655 71
+rect -497 37 -463 71
+rect -305 37 -271 71
+rect -113 37 -79 71
+rect 79 37 113 71
+rect 271 37 305 71
+rect 463 37 497 71
+rect 655 37 689 71
+rect 847 37 881 71
+rect 1039 37 1073 71
+rect -1073 -71 -1039 -37
+rect -881 -71 -847 -37
+rect -689 -71 -655 -37
+rect -497 -71 -463 -37
+rect -305 -71 -271 -37
+rect -113 -71 -79 -37
+rect 79 -71 113 -37
+rect 271 -71 305 -37
+rect 463 -71 497 -37
+rect 655 -71 689 -37
+rect 847 -71 881 -37
+rect 1039 -71 1073 -37
+rect -1217 -497 -1183 -121
+rect -1121 -497 -1087 -121
+rect -1025 -497 -991 -121
+rect -929 -497 -895 -121
+rect -833 -497 -799 -121
+rect -737 -497 -703 -121
+rect -641 -497 -607 -121
+rect -545 -497 -511 -121
+rect -449 -497 -415 -121
+rect -353 -497 -319 -121
+rect -257 -497 -223 -121
+rect -161 -497 -127 -121
+rect -65 -497 -31 -121
+rect 31 -497 65 -121
+rect 127 -497 161 -121
+rect 223 -497 257 -121
+rect 319 -497 353 -121
+rect 415 -497 449 -121
+rect 511 -497 545 -121
+rect 607 -497 641 -121
+rect 703 -497 737 -121
+rect 799 -497 833 -121
+rect 895 -497 929 -121
+rect 991 -497 1025 -121
+rect 1087 -497 1121 -121
+rect 1183 -497 1217 -121
+rect -1169 -581 -1135 -547
+rect -977 -581 -943 -547
+rect -785 -581 -751 -547
+rect -593 -581 -559 -547
+rect -401 -581 -367 -547
+rect -209 -581 -175 -547
+rect -17 -581 17 -547
+rect 175 -581 209 -547
+rect 367 -581 401 -547
+rect 559 -581 593 -547
+rect 751 -581 785 -547
+rect 943 -581 977 -547
+rect 1135 -581 1169 -547
+<< metal1 >>
+rect -1181 581 -1123 587
+rect -1181 547 -1169 581
+rect -1135 547 -1123 581
+rect -1181 541 -1123 547
+rect -989 581 -931 587
+rect -989 547 -977 581
+rect -943 547 -931 581
+rect -989 541 -931 547
+rect -797 581 -739 587
+rect -797 547 -785 581
+rect -751 547 -739 581
+rect -797 541 -739 547
+rect -605 581 -547 587
+rect -605 547 -593 581
+rect -559 547 -547 581
+rect -605 541 -547 547
+rect -413 581 -355 587
+rect -413 547 -401 581
+rect -367 547 -355 581
+rect -413 541 -355 547
+rect -221 581 -163 587
+rect -221 547 -209 581
+rect -175 547 -163 581
+rect -221 541 -163 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 163 581 221 587
+rect 163 547 175 581
+rect 209 547 221 581
+rect 163 541 221 547
+rect 355 581 413 587
+rect 355 547 367 581
+rect 401 547 413 581
+rect 355 541 413 547
+rect 547 581 605 587
+rect 547 547 559 581
+rect 593 547 605 581
+rect 547 541 605 547
+rect 739 581 797 587
+rect 739 547 751 581
+rect 785 547 797 581
+rect 739 541 797 547
+rect 931 581 989 587
+rect 931 547 943 581
+rect 977 547 989 581
+rect 931 541 989 547
+rect 1123 581 1181 587
+rect 1123 547 1135 581
+rect 1169 547 1181 581
+rect 1123 541 1181 547
+rect -1223 497 -1177 509
+rect -1223 121 -1217 497
+rect -1183 121 -1177 497
+rect -1223 109 -1177 121
+rect -1127 497 -1081 509
+rect -1127 121 -1121 497
+rect -1087 121 -1081 497
+rect -1127 109 -1081 121
+rect -1031 497 -985 509
+rect -1031 121 -1025 497
+rect -991 121 -985 497
+rect -1031 109 -985 121
+rect -935 497 -889 509
+rect -935 121 -929 497
+rect -895 121 -889 497
+rect -935 109 -889 121
+rect -839 497 -793 509
+rect -839 121 -833 497
+rect -799 121 -793 497
+rect -839 109 -793 121
+rect -743 497 -697 509
+rect -743 121 -737 497
+rect -703 121 -697 497
+rect -743 109 -697 121
+rect -647 497 -601 509
+rect -647 121 -641 497
+rect -607 121 -601 497
+rect -647 109 -601 121
+rect -551 497 -505 509
+rect -551 121 -545 497
+rect -511 121 -505 497
+rect -551 109 -505 121
+rect -455 497 -409 509
+rect -455 121 -449 497
+rect -415 121 -409 497
+rect -455 109 -409 121
+rect -359 497 -313 509
+rect -359 121 -353 497
+rect -319 121 -313 497
+rect -359 109 -313 121
+rect -263 497 -217 509
+rect -263 121 -257 497
+rect -223 121 -217 497
+rect -263 109 -217 121
+rect -167 497 -121 509
+rect -167 121 -161 497
+rect -127 121 -121 497
+rect -167 109 -121 121
+rect -71 497 -25 509
+rect -71 121 -65 497
+rect -31 121 -25 497
+rect -71 109 -25 121
+rect 25 497 71 509
+rect 25 121 31 497
+rect 65 121 71 497
+rect 25 109 71 121
+rect 121 497 167 509
+rect 121 121 127 497
+rect 161 121 167 497
+rect 121 109 167 121
+rect 217 497 263 509
+rect 217 121 223 497
+rect 257 121 263 497
+rect 217 109 263 121
+rect 313 497 359 509
+rect 313 121 319 497
+rect 353 121 359 497
+rect 313 109 359 121
+rect 409 497 455 509
+rect 409 121 415 497
+rect 449 121 455 497
+rect 409 109 455 121
+rect 505 497 551 509
+rect 505 121 511 497
+rect 545 121 551 497
+rect 505 109 551 121
+rect 601 497 647 509
+rect 601 121 607 497
+rect 641 121 647 497
+rect 601 109 647 121
+rect 697 497 743 509
+rect 697 121 703 497
+rect 737 121 743 497
+rect 697 109 743 121
+rect 793 497 839 509
+rect 793 121 799 497
+rect 833 121 839 497
+rect 793 109 839 121
+rect 889 497 935 509
+rect 889 121 895 497
+rect 929 121 935 497
+rect 889 109 935 121
+rect 985 497 1031 509
+rect 985 121 991 497
+rect 1025 121 1031 497
+rect 985 109 1031 121
+rect 1081 497 1127 509
+rect 1081 121 1087 497
+rect 1121 121 1127 497
+rect 1081 109 1127 121
+rect 1177 497 1223 509
+rect 1177 121 1183 497
+rect 1217 121 1223 497
+rect 1177 109 1223 121
+rect -1085 71 -1027 77
+rect -1085 37 -1073 71
+rect -1039 37 -1027 71
+rect -1085 31 -1027 37
+rect -893 71 -835 77
+rect -893 37 -881 71
+rect -847 37 -835 71
+rect -893 31 -835 37
+rect -701 71 -643 77
+rect -701 37 -689 71
+rect -655 37 -643 71
+rect -701 31 -643 37
+rect -509 71 -451 77
+rect -509 37 -497 71
+rect -463 37 -451 71
+rect -509 31 -451 37
+rect -317 71 -259 77
+rect -317 37 -305 71
+rect -271 37 -259 71
+rect -317 31 -259 37
+rect -125 71 -67 77
+rect -125 37 -113 71
+rect -79 37 -67 71
+rect -125 31 -67 37
+rect 67 71 125 77
+rect 67 37 79 71
+rect 113 37 125 71
+rect 67 31 125 37
+rect 259 71 317 77
+rect 259 37 271 71
+rect 305 37 317 71
+rect 259 31 317 37
+rect 451 71 509 77
+rect 451 37 463 71
+rect 497 37 509 71
+rect 451 31 509 37
+rect 643 71 701 77
+rect 643 37 655 71
+rect 689 37 701 71
+rect 643 31 701 37
+rect 835 71 893 77
+rect 835 37 847 71
+rect 881 37 893 71
+rect 835 31 893 37
+rect 1027 71 1085 77
+rect 1027 37 1039 71
+rect 1073 37 1085 71
+rect 1027 31 1085 37
+rect -1085 -37 -1027 -31
+rect -1085 -71 -1073 -37
+rect -1039 -71 -1027 -37
+rect -1085 -77 -1027 -71
+rect -893 -37 -835 -31
+rect -893 -71 -881 -37
+rect -847 -71 -835 -37
+rect -893 -77 -835 -71
+rect -701 -37 -643 -31
+rect -701 -71 -689 -37
+rect -655 -71 -643 -37
+rect -701 -77 -643 -71
+rect -509 -37 -451 -31
+rect -509 -71 -497 -37
+rect -463 -71 -451 -37
+rect -509 -77 -451 -71
+rect -317 -37 -259 -31
+rect -317 -71 -305 -37
+rect -271 -71 -259 -37
+rect -317 -77 -259 -71
+rect -125 -37 -67 -31
+rect -125 -71 -113 -37
+rect -79 -71 -67 -37
+rect -125 -77 -67 -71
+rect 67 -37 125 -31
+rect 67 -71 79 -37
+rect 113 -71 125 -37
+rect 67 -77 125 -71
+rect 259 -37 317 -31
+rect 259 -71 271 -37
+rect 305 -71 317 -37
+rect 259 -77 317 -71
+rect 451 -37 509 -31
+rect 451 -71 463 -37
+rect 497 -71 509 -37
+rect 451 -77 509 -71
+rect 643 -37 701 -31
+rect 643 -71 655 -37
+rect 689 -71 701 -37
+rect 643 -77 701 -71
+rect 835 -37 893 -31
+rect 835 -71 847 -37
+rect 881 -71 893 -37
+rect 835 -77 893 -71
+rect 1027 -37 1085 -31
+rect 1027 -71 1039 -37
+rect 1073 -71 1085 -37
+rect 1027 -77 1085 -71
+rect -1223 -121 -1177 -109
+rect -1223 -497 -1217 -121
+rect -1183 -497 -1177 -121
+rect -1223 -509 -1177 -497
+rect -1127 -121 -1081 -109
+rect -1127 -497 -1121 -121
+rect -1087 -497 -1081 -121
+rect -1127 -509 -1081 -497
+rect -1031 -121 -985 -109
+rect -1031 -497 -1025 -121
+rect -991 -497 -985 -121
+rect -1031 -509 -985 -497
+rect -935 -121 -889 -109
+rect -935 -497 -929 -121
+rect -895 -497 -889 -121
+rect -935 -509 -889 -497
+rect -839 -121 -793 -109
+rect -839 -497 -833 -121
+rect -799 -497 -793 -121
+rect -839 -509 -793 -497
+rect -743 -121 -697 -109
+rect -743 -497 -737 -121
+rect -703 -497 -697 -121
+rect -743 -509 -697 -497
+rect -647 -121 -601 -109
+rect -647 -497 -641 -121
+rect -607 -497 -601 -121
+rect -647 -509 -601 -497
+rect -551 -121 -505 -109
+rect -551 -497 -545 -121
+rect -511 -497 -505 -121
+rect -551 -509 -505 -497
+rect -455 -121 -409 -109
+rect -455 -497 -449 -121
+rect -415 -497 -409 -121
+rect -455 -509 -409 -497
+rect -359 -121 -313 -109
+rect -359 -497 -353 -121
+rect -319 -497 -313 -121
+rect -359 -509 -313 -497
+rect -263 -121 -217 -109
+rect -263 -497 -257 -121
+rect -223 -497 -217 -121
+rect -263 -509 -217 -497
+rect -167 -121 -121 -109
+rect -167 -497 -161 -121
+rect -127 -497 -121 -121
+rect -167 -509 -121 -497
+rect -71 -121 -25 -109
+rect -71 -497 -65 -121
+rect -31 -497 -25 -121
+rect -71 -509 -25 -497
+rect 25 -121 71 -109
+rect 25 -497 31 -121
+rect 65 -497 71 -121
+rect 25 -509 71 -497
+rect 121 -121 167 -109
+rect 121 -497 127 -121
+rect 161 -497 167 -121
+rect 121 -509 167 -497
+rect 217 -121 263 -109
+rect 217 -497 223 -121
+rect 257 -497 263 -121
+rect 217 -509 263 -497
+rect 313 -121 359 -109
+rect 313 -497 319 -121
+rect 353 -497 359 -121
+rect 313 -509 359 -497
+rect 409 -121 455 -109
+rect 409 -497 415 -121
+rect 449 -497 455 -121
+rect 409 -509 455 -497
+rect 505 -121 551 -109
+rect 505 -497 511 -121
+rect 545 -497 551 -121
+rect 505 -509 551 -497
+rect 601 -121 647 -109
+rect 601 -497 607 -121
+rect 641 -497 647 -121
+rect 601 -509 647 -497
+rect 697 -121 743 -109
+rect 697 -497 703 -121
+rect 737 -497 743 -121
+rect 697 -509 743 -497
+rect 793 -121 839 -109
+rect 793 -497 799 -121
+rect 833 -497 839 -121
+rect 793 -509 839 -497
+rect 889 -121 935 -109
+rect 889 -497 895 -121
+rect 929 -497 935 -121
+rect 889 -509 935 -497
+rect 985 -121 1031 -109
+rect 985 -497 991 -121
+rect 1025 -497 1031 -121
+rect 985 -509 1031 -497
+rect 1081 -121 1127 -109
+rect 1081 -497 1087 -121
+rect 1121 -497 1127 -121
+rect 1081 -509 1127 -497
+rect 1177 -121 1223 -109
+rect 1177 -497 1183 -121
+rect 1217 -497 1223 -121
+rect 1177 -509 1223 -497
+rect -1181 -547 -1123 -541
+rect -1181 -581 -1169 -547
+rect -1135 -581 -1123 -547
+rect -1181 -587 -1123 -581
+rect -989 -547 -931 -541
+rect -989 -581 -977 -547
+rect -943 -581 -931 -547
+rect -989 -587 -931 -581
+rect -797 -547 -739 -541
+rect -797 -581 -785 -547
+rect -751 -581 -739 -547
+rect -797 -587 -739 -581
+rect -605 -547 -547 -541
+rect -605 -581 -593 -547
+rect -559 -581 -547 -547
+rect -605 -587 -547 -581
+rect -413 -547 -355 -541
+rect -413 -581 -401 -547
+rect -367 -581 -355 -547
+rect -413 -587 -355 -581
+rect -221 -547 -163 -541
+rect -221 -581 -209 -547
+rect -175 -581 -163 -547
+rect -221 -587 -163 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 163 -547 221 -541
+rect 163 -581 175 -547
+rect 209 -581 221 -547
+rect 163 -587 221 -581
+rect 355 -547 413 -541
+rect 355 -581 367 -547
+rect 401 -581 413 -547
+rect 355 -587 413 -581
+rect 547 -547 605 -541
+rect 547 -581 559 -547
+rect 593 -581 605 -547
+rect 547 -587 605 -581
+rect 739 -547 797 -541
+rect 739 -581 751 -547
+rect 785 -581 797 -547
+rect 739 -587 797 -581
+rect 931 -547 989 -541
+rect 931 -581 943 -547
+rect 977 -581 989 -547
+rect 931 -587 989 -581
+rect 1123 -547 1181 -541
+rect 1123 -581 1135 -547
+rect 1169 -581 1181 -547
+rect 1123 -587 1181 -581
+<< properties >>
+string FIXED_BBOX -1314 -666 1314 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.150 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.ext b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.ext
new file mode 100644
index 0000000..9d05eb7
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.ext
@@ -0,0 +1,481 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_1196_n509#" 982 155.274 1196 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1098_n509#" 982 12.3589 1098 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1000_n509#" 982 12.3589 1000 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_902_n509#" 982 12.3589 902 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_804_n509#" 982 12.3589 804 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_706_n509#" 982 12.3589 706 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_n509#" 982 12.3589 608 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_n509#" 982 12.3589 510 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_n509#" 982 12.3589 412 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_n509#" 982 12.3589 314 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_n509#" 982 12.3589 216 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_n509#" 982 12.3589 118 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_n509#" 982 12.3589 20 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n509#" 982 12.3459 -78 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_n509#" 982 12.3589 -176 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_n509#" 982 12.3459 -274 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_n509#" 982 12.3589 -372 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_n509#" 982 12.3459 -470 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_n509#" 982 12.3589 -568 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_n509#" 982 12.3459 -666 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_n509#" 982 12.3589 -764 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n862_n509#" 982 12.3459 -862 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n960_n509#" 982 12.3589 -960 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1058_n509#" 982 12.3459 -1058 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1156_n509#" 982 12.3589 -1156 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1254_n509#" 982 155.274 -1254 -509 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1143_n597#" 653 137.701 1143 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_947_n597#" 653 101.111 947 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1045_n87#" 653 88.6582 1045 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_751_n597#" 653 101.111 751 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_849_n87#" 653 68.9052 849 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_555_n597#" 653 101.111 555 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_653_n87#" 653 68.9052 653 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_n597#" 653 101.111 359 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_n87#" 653 68.9052 457 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_n597#" 653 101.111 163 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_n87#" 653 68.9052 261 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n597#" 653 101.111 -33 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_n87#" 653 68.9052 65 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n597#" 653 101.111 -229 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_n87#" 653 68.9052 -131 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_n597#" 653 101.111 -425 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_n87#" 653 68.9052 -327 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_n597#" 653 101.111 -621 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_n87#" 653 68.9052 -523 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n817_n597#" 653 101.111 -817 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_n87#" 653 68.9052 -719 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1013_n597#" 653 101.111 -1013 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n915_n87#" 653 68.9052 -915 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1209_n597#" 653 137.955 -1209 -597 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1111_n87#" 653 88.9121 -1111 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1196_109#" 982 155.382 1196 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1098_109#" 982 12.5568 1098 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1000_109#" 982 12.556 1000 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_902_109#" 982 12.5568 902 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_804_109#" 982 12.556 804 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_706_109#" 982 12.5568 706 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_109#" 982 12.556 608 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_109#" 982 12.5568 510 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_109#" 982 12.556 412 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_109#" 982 12.5568 314 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_109#" 982 12.556 216 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_109#" 982 12.5568 118 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_109#" 982 12.556 20 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_109#" 982 12.6336 -78 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_109#" 982 12.556 -176 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_109#" 982 12.6336 -274 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_109#" 982 12.556 -372 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_109#" 982 12.6336 -470 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_109#" 982 12.556 -568 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_109#" 982 12.6336 -666 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_109#" 982 12.556 -764 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n862_109#" 982 12.6336 -862 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n960_109#" 982 12.556 -960 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1058_109#" 982 12.6336 -1058 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1156_109#" 982 12.556 -1156 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n1254_109#" 982 155.459 -1254 109 ndif 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_1045_21#" 653 88.8647 1045 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_1143_531#" 653 137.701 1143 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_849_21#" 653 69.1118 849 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_947_531#" 653 101.111 947 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_653_21#" 653 69.1118 653 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_751_531#" 653 101.111 751 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_21#" 653 69.1118 457 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_555_531#" 653 101.111 555 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_21#" 653 69.1118 261 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_531#" 653 101.111 359 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_21#" 653 69.1118 65 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_531#" 653 101.111 163 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_21#" 653 69.1118 -131 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_531#" 653 101.111 -33 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_21#" 653 69.1118 -327 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_531#" 653 101.111 -229 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_21#" 653 69.1118 -523 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_531#" 653 101.111 -425 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_21#" 653 69.1118 -719 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_531#" 653 101.111 -621 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n915_21#" 653 69.1118 -915 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n817_531#" 653 101.111 -817 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1111_21#" 653 89.1187 -1111 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1013_531#" 653 101.111 -1013 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n1209_531#" 653 137.955 -1209 531 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22276 1160 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+substrate "a_n1356_n683#" 0 0 -1356 -683 ppd 0 0 0 0 0 0 0 0 0 0 272680 16040 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 272680 16040 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_n817_n597#" "a_n764_n509#" 4.2829
+cap "a_n425_531#" "a_n425_n597#" 7.7636
+cap "a_n915_n87#" "a_n960_n509#" 4.2829
+cap "a_706_n509#" "a_706_109#" 12.3196
+cap "a_n176_109#" "a_n176_n509#" 12.3196
+cap "a_n78_n509#" "a_20_n509#" 462.346
+cap "a_n1058_n509#" "a_n1013_n597#" 4.2829
+cap "a_555_531#" "a_751_531#" 27.7308
+cap "a_1000_n509#" "a_1045_n87#" 4.2829
+cap "a_n523_21#" "a_n327_21#" 27.7308
+cap "a_359_531#" "a_261_21#" 15.9188
+cap "a_n229_n597#" "a_n176_n509#" 4.2829
+cap "a_314_n509#" "a_261_n87#" 4.2829
+cap "a_n1013_531#" "a_n1209_531#" 27.7308
+cap "a_n523_21#" "a_n568_109#" 4.2829
+cap "a_n666_n509#" "a_n621_n597#" 4.2829
+cap "a_804_n509#" "a_849_n87#" 4.2829
+cap "a_n621_531#" "a_n666_109#" 4.2829
+cap "a_1045_21#" "a_1098_109#" 4.2829
+cap "a_n1013_n597#" "a_n1209_n597#" 27.7308
+cap "a_510_n509#" "a_608_n509#" 462.346
+cap "a_n719_21#" "a_n817_531#" 15.9188
+cap "a_216_n509#" "a_261_n87#" 4.2829
+cap "a_n78_n509#" "a_n78_109#" 12.3196
+cap "a_653_n87#" "a_849_n87#" 27.7308
+cap "a_706_109#" "a_653_21#" 4.2829
+cap "a_n764_109#" "a_n764_n509#" 12.3196
+cap "a_n817_531#" "a_n862_109#" 4.2829
+cap "a_457_21#" "a_457_n87#" 86.2066
+cap "a_261_n87#" "a_261_21#" 86.2066
+cap "a_n621_n597#" "a_n523_n87#" 15.9188
+cap "a_1045_21#" "a_849_21#" 27.7308
+cap "a_20_109#" "a_20_n509#" 12.3196
+cap "a_n1156_n509#" "a_n1156_109#" 12.3196
+cap "a_n1209_531#" "a_n1156_109#" 4.2829
+cap "a_n915_n87#" "a_n915_21#" 86.2066
+cap "a_20_109#" "a_118_109#" 462.346
+cap "a_n1254_109#" "a_n1156_109#" 462.346
+cap "a_n960_109#" "a_n862_109#" 462.346
+cap "a_n33_n597#" "a_n78_n509#" 4.2829
+cap "a_947_n597#" "a_902_n509#" 4.2829
+cap "a_65_21#" "a_20_109#" 4.2829
+cap "a_n621_531#" "a_n425_531#" 27.7308
+cap "a_314_n509#" "a_412_n509#" 462.346
+cap "a_n523_n87#" "a_n327_n87#" 27.7308
+cap "a_n1254_n509#" "a_n1209_n597#" 4.2829
+cap "a_902_109#" "a_1000_109#" 462.346
+cap "a_n470_n509#" "a_n372_n509#" 462.346
+cap "a_n817_n597#" "a_n621_n597#" 27.7308
+cap "a_n719_n87#" "a_n719_21#" 86.2066
+cap "a_1000_n509#" "a_902_n509#" 462.346
+cap "a_n719_21#" "a_n666_109#" 4.2829
+cap "a_n274_109#" "a_n229_531#" 4.2829
+cap "a_n817_n597#" "a_n915_n87#" 15.9188
+cap "a_1143_531#" "a_1196_109#" 4.2829
+cap "a_n1254_109#" "a_n1209_531#" 4.2829
+cap "a_216_n509#" "a_163_n597#" 4.2829
+cap "a_n568_n509#" "a_n470_n509#" 462.346
+cap "a_20_109#" "a_n78_109#" 462.346
+cap "a_n229_n597#" "a_n327_n87#" 15.9188
+cap "a_65_21#" "a_261_21#" 27.7308
+cap "a_n1013_531#" "a_n1058_109#" 4.2829
+cap "a_n131_21#" "a_n131_n87#" 86.2066
+cap "a_608_109#" "a_653_21#" 4.2829
+cap "a_804_109#" "a_706_109#" 462.346
+cap "a_n960_109#" "a_n960_n509#" 12.3196
+cap "a_n666_n509#" "a_n568_n509#" 462.346
+cap "a_947_531#" "a_1000_109#" 4.2829
+cap "a_n1013_531#" "a_n817_531#" 27.7308
+cap "a_n862_n509#" "a_n862_109#" 12.3196
+cap "a_359_n597#" "a_555_n597#" 27.7308
+cap "a_1143_531#" "a_1143_n597#" 7.7636
+cap "a_608_109#" "a_608_n509#" 12.3196
+cap "a_n1058_n509#" "a_n960_n509#" 462.346
+cap "a_1045_n87#" "a_849_n87#" 27.7308
+cap "a_n176_n509#" "a_n78_n509#" 462.346
+cap "a_n523_21#" "a_n470_109#" 4.2829
+cap "a_1098_n509#" "a_1143_n597#" 4.2829
+cap "a_n470_n509#" "a_n470_109#" 12.3196
+cap "a_457_21#" "a_412_109#" 4.2829
+cap "a_65_21#" "a_n131_21#" 27.7308
+cap "a_947_531#" "a_751_531#" 27.7308
+cap "a_65_n87#" "a_261_n87#" 27.7308
+cap "a_n470_n509#" "a_n425_n597#" 4.2829
+cap "a_n960_109#" "a_n1013_531#" 4.2829
+cap "a_n568_n509#" "a_n523_n87#" 4.2829
+cap "a_902_109#" "a_947_531#" 4.2829
+cap "a_653_n87#" "a_457_n87#" 27.7308
+cap "a_163_531#" "a_261_21#" 15.9188
+cap "a_n33_531#" "a_n78_n509#" 0.0429448
+cap "a_n327_21#" "a_n327_n87#" 86.2066
+cap "a_n817_531#" "a_n915_21#" 15.9188
+cap "a_314_n509#" "a_314_109#" 12.3196
+cap "a_n1156_109#" "a_n1058_109#" 462.346
+cap "a_608_n509#" "a_555_n597#" 4.2829
+cap "a_n960_n509#" "a_n862_n509#" 462.346
+cap "a_n131_21#" "a_n78_109#" 4.2829
+cap "a_n1013_531#" "a_n1058_n509#" 0.0429448
+cap "a_1143_531#" "a_947_531#" 27.7308
+cap "a_n131_21#" "a_n229_531#" 15.9188
+cap "a_65_n87#" "a_n131_n87#" 27.7308
+cap "a_n719_21#" "a_n621_531#" 15.9188
+cap "a_n425_531#" "a_n229_531#" 27.7308
+cap "a_n666_n509#" "a_n719_n87#" 4.2829
+cap "a_216_n509#" "a_216_109#" 12.3196
+cap "a_n666_n509#" "a_n666_109#" 12.3196
+cap "a_n274_n509#" "a_n229_531#" 0.0429448
+cap "a_608_n509#" "a_706_n509#" 462.346
+cap "a_n719_n87#" "a_n764_n509#" 4.2829
+cap "a_1143_n597#" "a_1045_n87#" 15.9188
+cap "a_65_n87#" "a_20_n509#" 4.2829
+cap "a_457_n87#" "a_261_n87#" 27.7308
+cap "a_359_531#" "a_163_531#" 27.7308
+cap "a_n327_21#" "a_n372_109#" 4.2829
+cap "a_n470_109#" "a_n523_n87#" 0.197183
+cap "a_n960_109#" "a_n915_21#" 4.2829
+cap "a_216_109#" "a_261_21#" 4.2829
+cap "a_510_109#" "a_510_n509#" 12.3196
+cap "a_163_n597#" "a_261_n87#" 15.9188
+cap "a_n817_n597#" "a_n817_531#" 7.7636
+cap "a_n523_n87#" "a_n425_n597#" 15.9188
+cap "a_n274_109#" "a_n176_109#" 462.346
+cap "a_65_n87#" "a_65_21#" 86.2066
+cap "a_n862_n509#" "a_n764_n509#" 462.346
+cap "a_n960_n509#" "a_n1013_n597#" 4.2829
+cap "a_n229_n597#" "a_n274_109#" 0.0429448
+cap "a_608_109#" "a_555_531#" 4.2829
+cap "a_849_21#" "a_653_21#" 27.7308
+cap "a_1098_n509#" "a_1045_n87#" 4.2829
+cap "a_65_n87#" "a_163_n597#" 15.9188
+cap "a_n523_21#" "a_n425_531#" 15.9188
+cap "a_751_n597#" "a_555_n597#" 27.7308
+cap "a_n719_n87#" "a_n523_n87#" 27.7308
+cap "a_n1156_n509#" "a_n1111_n87#" 4.2829
+cap "a_314_109#" "a_261_21#" 4.2829
+cap "a_n470_n509#" "a_n425_531#" 0.0429448
+cap "a_1000_n509#" "a_947_n597#" 4.2829
+cap "a_20_109#" "a_n33_531#" 4.2829
+cap "a_751_n597#" "a_706_n509#" 4.2829
+cap "a_n229_n597#" "a_n425_n597#" 27.7308
+cap "a_412_109#" "a_359_531#" 4.2829
+cap "a_n1013_531#" "a_n1111_21#" 15.9188
+cap "a_n568_n509#" "a_n621_n597#" 4.2829
+cap "a_1045_21#" "a_1000_109#" 4.2829
+cap "a_902_n509#" "a_849_n87#" 4.2829
+cap "a_65_21#" "a_118_109#" 4.2829
+cap "a_n523_21#" "a_n621_531#" 15.9188
+cap "a_706_109#" "a_751_531#" 4.2829
+cap "a_118_n509#" "a_216_n509#" 462.346
+cap "a_n131_n87#" "a_n78_109#" 0.197183
+cap "a_n915_n87#" "a_n1111_n87#" 27.7308
+cap "a_n915_21#" "a_n862_n509#" 0.197183
+cap "a_n372_n509#" "a_n327_n87#" 4.2829
+cap "a_n568_n509#" "a_n568_109#" 12.3196
+cap "a_359_531#" "a_314_109#" 4.2829
+cap "a_n1013_531#" "a_n1013_n597#" 7.7636
+cap "a_804_n509#" "a_902_n509#" 462.346
+cap "a_510_109#" "a_412_109#" 462.346
+cap "a_555_531#" "a_555_n597#" 7.7636
+cap "a_n666_n509#" "a_n621_531#" 0.0429448
+cap "a_n764_109#" "a_n817_531#" 4.2829
+cap "a_n817_n597#" "a_n719_n87#" 15.9188
+cap "a_n1156_n509#" "a_n1058_n509#" 462.346
+cap "a_947_n597#" "a_751_n597#" 27.7308
+cap "a_65_n87#" "a_n33_n597#" 15.9188
+cap "a_n915_21#" "a_n1111_21#" 27.7308
+cap "a_457_n87#" "a_412_n509#" 4.2829
+cap "a_n274_109#" "a_n327_21#" 4.2829
+cap "a_359_n597#" "a_314_n509#" 4.2829
+cap "a_n33_n597#" "a_n131_n87#" 15.9188
+cap "a_n372_n509#" "a_n372_109#" 12.3196
+cap "a_n274_n509#" "a_n176_n509#" 462.346
+cap "a_n176_109#" "a_n131_21#" 4.2829
+cap "a_1143_531#" "a_1045_21#" 15.9188
+cap "a_n817_n597#" "a_n862_n509#" 4.2829
+cap "a_804_109#" "a_849_21#" 4.2829
+cap "a_n470_109#" "a_n568_109#" 462.346
+cap "a_n621_n597#" "a_n425_n597#" 27.7308
+cap "a_510_n509#" "a_457_n87#" 4.2829
+cap "a_n1156_109#" "a_n1111_21#" 4.2829
+cap "a_n33_n597#" "a_20_n509#" 4.2829
+cap "a_163_531#" "a_118_109#" 4.2829
+cap "a_457_21#" "a_653_21#" 27.7308
+cap "a_902_109#" "a_902_n509#" 12.3196
+cap "a_n131_21#" "a_n33_531#" 15.9188
+cap "a_n229_n597#" "a_n274_n509#" 4.2829
+cap "a_608_109#" "a_510_109#" 462.346
+cap "a_n719_n87#" "a_n621_n597#" 15.9188
+cap "a_n621_n597#" "a_n666_109#" 0.0429448
+cap "a_65_21#" "a_163_531#" 15.9188
+cap "a_n1156_n509#" "a_n1209_n597#" 4.2829
+cap "a_n274_109#" "a_n327_n87#" 0.197183
+cap "a_n915_n87#" "a_n719_n87#" 27.7308
+cap "a_n1209_531#" "a_n1209_n597#" 7.7636
+cap "a_1045_21#" "a_947_531#" 15.9188
+cap "a_n1254_109#" "a_n1209_n597#" 0.0429448
+cap "a_163_n597#" "a_163_531#" 7.7636
+cap "a_n666_109#" "a_n568_109#" 462.346
+cap "a_555_531#" "a_653_21#" 15.9188
+cap "a_n327_n87#" "a_n425_n597#" 15.9188
+cap "a_n523_21#" "a_n719_21#" 27.7308
+cap "a_510_n509#" "a_412_n509#" 462.346
+cap "a_163_n597#" "a_n33_n597#" 27.7308
+cap "a_n764_109#" "a_n666_109#" 462.346
+cap "a_n1209_531#" "a_n1111_21#" 15.9188
+cap "a_n915_n87#" "a_n862_n509#" 4.2829
+cap "a_n817_n597#" "a_n1013_n597#" 27.7308
+cap "a_216_109#" "a_118_109#" 462.346
+cap "a_n1111_n87#" "a_n1058_109#" 0.197183
+cap "a_1196_n509#" "a_1196_109#" 12.3196
+cap "a_706_n509#" "a_804_n509#" 462.346
+cap "a_n274_109#" "a_n372_109#" 462.346
+cap "a_n470_109#" "a_n372_109#" 462.346
+cap "a_n666_n509#" "a_n719_21#" 0.197183
+cap "a_n33_n597#" "a_n78_109#" 0.0429448
+cap "a_1045_21#" "a_1045_n87#" 86.2066
+cap "a_653_n87#" "a_555_n597#" 15.9188
+cap "a_n131_n87#" "a_n176_n509#" 4.2829
+cap "a_n327_21#" "a_n131_21#" 27.7308
+cap "a_n327_21#" "a_n425_531#" 15.9188
+cap "a_653_n87#" "a_706_n509#" 4.2829
+cap "a_n960_109#" "a_n1058_109#" 462.346
+cap "a_65_n87#" "a_118_n509#" 4.2829
+cap "a_n327_21#" "a_n274_n509#" 0.197183
+cap "a_n229_n597#" "a_n131_n87#" 15.9188
+cap "a_1196_n509#" "a_1143_n597#" 4.2829
+cap "a_359_n597#" "a_359_531#" 7.7636
+cap "a_947_n597#" "a_849_n87#" 15.9188
+cap "a_n915_n87#" "a_n1013_n597#" 15.9188
+cap "a_1196_109#" "a_1098_109#" 462.346
+cap "a_1000_109#" "a_1098_109#" 462.346
+cap "a_412_109#" "a_412_n509#" 12.3196
+cap "a_849_21#" "a_849_n87#" 86.2066
+cap "a_n372_n509#" "a_n425_n597#" 4.2829
+cap "a_n1058_n509#" "a_n1058_109#" 12.3196
+cap "a_n621_n597#" "a_n621_531#" 7.7636
+cap "a_n719_21#" "a_n915_21#" 27.7308
+cap "a_118_n509#" "a_20_n509#" 462.346
+cap "a_n523_21#" "a_n470_n509#" 0.197183
+cap "a_n274_n509#" "a_n327_n87#" 4.2829
+cap "a_n915_21#" "a_n862_109#" 4.2829
+cap "a_1098_n509#" "a_1196_n509#" 462.346
+cap "a_118_n509#" "a_118_109#" 12.3196
+cap "a_216_109#" "a_163_531#" 4.2829
+cap "a_n621_531#" "a_n568_109#" 4.2829
+cap "a_n1058_n509#" "a_n1111_n87#" 4.2829
+cap "a_457_21#" "a_555_531#" 15.9188
+cap "a_n1254_n509#" "a_n1156_n509#" 462.346
+cap "a_n1254_n509#" "a_n1209_531#" 0.0429448
+cap "a_65_21#" "a_n33_531#" 15.9188
+cap "a_n1254_n509#" "a_n1254_109#" 12.3196
+cap "a_653_n87#" "a_653_21#" 86.2066
+cap "a_118_n509#" "a_163_n597#" 4.2829
+cap "a_1000_n509#" "a_1000_109#" 12.3196
+cap "a_1143_531#" "a_1098_109#" 4.2829
+cap "a_n425_531#" "a_n372_109#" 4.2829
+cap "a_653_21#" "a_751_531#" 15.9188
+cap "a_n176_109#" "a_n78_109#" 462.346
+cap "a_n176_109#" "a_n229_531#" 4.2829
+cap "a_849_21#" "a_751_531#" 15.9188
+cap "a_947_n597#" "a_1143_n597#" 27.7308
+cap "a_359_n597#" "a_261_n87#" 15.9188
+cap "a_n229_n597#" "a_n229_531#" 7.7636
+cap "a_216_n509#" "a_314_n509#" 462.346
+cap "a_n817_n597#" "a_n862_109#" 0.0429448
+cap "a_n666_n509#" "a_n764_n509#" 462.346
+cap "a_653_n87#" "a_608_n509#" 4.2829
+cap "a_1098_n509#" "a_1098_109#" 12.3196
+cap "a_n131_21#" "a_n78_n509#" 0.197183
+cap "a_902_109#" "a_849_21#" 4.2829
+cap "a_n470_109#" "a_n425_n597#" 0.0429448
+cap "a_n33_531#" "a_n78_109#" 4.2829
+cap "a_n817_531#" "a_n862_n509#" 0.0429448
+cap "a_457_n87#" "a_555_n597#" 15.9188
+cap "a_n33_531#" "a_n229_531#" 27.7308
+cap "a_457_21#" "a_261_21#" 27.7308
+cap "a_n1111_21#" "a_n1058_109#" 4.2829
+cap "a_n1209_n597#" "a_n1111_n87#" 15.9188
+cap "a_751_n597#" "a_849_n87#" 15.9188
+cap "a_n523_21#" "a_n523_n87#" 86.2066
+cap "a_n470_n509#" "a_n523_n87#" 4.2829
+cap "a_n372_n509#" "a_n274_n509#" 462.346
+cap "a_n131_n87#" "a_n327_n87#" 27.7308
+cap "a_751_n597#" "a_804_n509#" 4.2829
+cap "a_216_109#" "a_314_109#" 462.346
+cap "a_n1013_n597#" "a_n1058_109#" 0.0429448
+cap "a_n1111_n87#" "a_n1111_21#" 86.2066
+cap "a_163_531#" "a_n33_531#" 27.7308
+cap "a_412_109#" "a_314_109#" 462.346
+cap "a_n229_n597#" "a_n33_n597#" 27.7308
+cap "a_804_109#" "a_804_n509#" 12.3196
+cap "a_947_n597#" "a_947_531#" 7.7636
+cap "a_457_21#" "a_359_531#" 15.9188
+cap "a_n33_n597#" "a_n33_531#" 7.7636
+cap "a_608_109#" "a_706_109#" 462.346
+cap "a_n915_n87#" "a_n862_109#" 0.197183
+cap "a_n719_n87#" "a_n666_109#" 0.197183
+cap "a_947_531#" "a_849_21#" 15.9188
+cap "a_1000_n509#" "a_1098_n509#" 462.346
+cap "a_653_n87#" "a_751_n597#" 15.9188
+cap "a_359_n597#" "a_457_n87#" 15.9188
+cap "a_n1013_n597#" "a_n1111_n87#" 15.9188
+cap "a_n1013_531#" "a_n915_21#" 15.9188
+cap "a_510_n509#" "a_555_n597#" 4.2829
+cap "a_n764_109#" "a_n719_21#" 4.2829
+cap "a_751_n597#" "a_751_531#" 7.7636
+cap "a_n327_21#" "a_n229_531#" 15.9188
+cap "a_510_109#" "a_457_21#" 4.2829
+cap "a_163_n597#" "a_359_n597#" 27.7308
+cap "a_555_531#" "a_359_531#" 27.7308
+cap "a_n764_109#" "a_n862_109#" 462.346
+cap "a_n817_531#" "a_n621_531#" 27.7308
+cap "a_804_109#" "a_751_531#" 4.2829
+cap "a_947_n597#" "a_1045_n87#" 15.9188
+cap "a_n1058_n509#" "a_n1111_21#" 0.197183
+cap "a_n425_531#" "a_n470_109#" 4.2829
+cap "a_359_n597#" "a_412_n509#" 4.2829
+cap "a_n274_109#" "a_n274_n509#" 12.3196
+cap "a_n131_n87#" "a_n78_n509#" 4.2829
+cap "a_902_109#" "a_804_109#" 462.346
+cap "a_510_109#" "a_555_531#" 4.2829
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1156 -509 1157 -508 l=40 w=400 "a_n1356_n683#" "a_1143_n597#" 80 0 "a_1098_n509#" 400 0 "a_1196_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1058 -509 1059 -508 l=40 w=400 "a_n1356_n683#" "a_1045_n87#" 80 0 "a_1000_n509#" 400 0 "a_1098_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 960 -509 961 -508 l=40 w=400 "a_n1356_n683#" "a_947_n597#" 80 0 "a_902_n509#" 400 0 "a_1000_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 862 -509 863 -508 l=40 w=400 "a_n1356_n683#" "a_849_n87#" 80 0 "a_804_n509#" 400 0 "a_902_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 764 -509 765 -508 l=40 w=400 "a_n1356_n683#" "a_751_n597#" 80 0 "a_706_n509#" 400 0 "a_804_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 666 -509 667 -508 l=40 w=400 "a_n1356_n683#" "a_653_n87#" 80 0 "a_608_n509#" 400 0 "a_706_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 568 -509 569 -508 l=40 w=400 "a_n1356_n683#" "a_555_n597#" 80 0 "a_510_n509#" 400 0 "a_608_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 470 -509 471 -508 l=40 w=400 "a_n1356_n683#" "a_457_n87#" 80 0 "a_412_n509#" 400 0 "a_510_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 372 -509 373 -508 l=40 w=400 "a_n1356_n683#" "a_359_n597#" 80 0 "a_314_n509#" 400 0 "a_412_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 274 -509 275 -508 l=40 w=400 "a_n1356_n683#" "a_261_n87#" 80 0 "a_216_n509#" 400 0 "a_314_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 176 -509 177 -508 l=40 w=400 "a_n1356_n683#" "a_163_n597#" 80 0 "a_118_n509#" 400 0 "a_216_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 78 -509 79 -508 l=40 w=400 "a_n1356_n683#" "a_65_n87#" 80 0 "a_20_n509#" 400 0 "a_118_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -20 -509 -19 -508 l=40 w=400 "a_n1356_n683#" "a_n33_n597#" 80 0 "a_n78_n509#" 400 0 "a_20_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -118 -509 -117 -508 l=40 w=400 "a_n1356_n683#" "a_n131_n87#" 80 0 "a_n176_n509#" 400 0 "a_n78_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -216 -509 -215 -508 l=40 w=400 "a_n1356_n683#" "a_n229_n597#" 80 0 "a_n274_n509#" 400 0 "a_n176_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -314 -509 -313 -508 l=40 w=400 "a_n1356_n683#" "a_n327_n87#" 80 0 "a_n372_n509#" 400 0 "a_n274_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -412 -509 -411 -508 l=40 w=400 "a_n1356_n683#" "a_n425_n597#" 80 0 "a_n470_n509#" 400 0 "a_n372_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -510 -509 -509 -508 l=40 w=400 "a_n1356_n683#" "a_n523_n87#" 80 0 "a_n568_n509#" 400 0 "a_n470_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -608 -509 -607 -508 l=40 w=400 "a_n1356_n683#" "a_n621_n597#" 80 0 "a_n666_n509#" 400 0 "a_n568_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -706 -509 -705 -508 l=40 w=400 "a_n1356_n683#" "a_n719_n87#" 80 0 "a_n764_n509#" 400 0 "a_n666_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -804 -509 -803 -508 l=40 w=400 "a_n1356_n683#" "a_n817_n597#" 80 0 "a_n862_n509#" 400 0 "a_n764_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -902 -509 -901 -508 l=40 w=400 "a_n1356_n683#" "a_n915_n87#" 80 0 "a_n960_n509#" 400 0 "a_n862_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1000 -509 -999 -508 l=40 w=400 "a_n1356_n683#" "a_n1013_n597#" 80 0 "a_n1058_n509#" 400 0 "a_n960_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1098 -509 -1097 -508 l=40 w=400 "a_n1356_n683#" "a_n1111_n87#" 80 0 "a_n1156_n509#" 400 0 "a_n1058_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1196 -509 -1195 -508 l=40 w=400 "a_n1356_n683#" "a_n1209_n597#" 80 0 "a_n1254_n509#" 400 0 "a_n1156_n509#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1156 109 1157 110 l=40 w=400 "a_n1356_n683#" "a_1143_531#" 80 0 "a_1098_109#" 400 0 "a_1196_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1058 109 1059 110 l=40 w=400 "a_n1356_n683#" "a_1045_21#" 80 0 "a_1000_109#" 400 0 "a_1098_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 960 109 961 110 l=40 w=400 "a_n1356_n683#" "a_947_531#" 80 0 "a_902_109#" 400 0 "a_1000_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 862 109 863 110 l=40 w=400 "a_n1356_n683#" "a_849_21#" 80 0 "a_804_109#" 400 0 "a_902_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 764 109 765 110 l=40 w=400 "a_n1356_n683#" "a_751_531#" 80 0 "a_706_109#" 400 0 "a_804_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 666 109 667 110 l=40 w=400 "a_n1356_n683#" "a_653_21#" 80 0 "a_608_109#" 400 0 "a_706_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 568 109 569 110 l=40 w=400 "a_n1356_n683#" "a_555_531#" 80 0 "a_510_109#" 400 0 "a_608_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 470 109 471 110 l=40 w=400 "a_n1356_n683#" "a_457_21#" 80 0 "a_412_109#" 400 0 "a_510_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 372 109 373 110 l=40 w=400 "a_n1356_n683#" "a_359_531#" 80 0 "a_314_109#" 400 0 "a_412_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 274 109 275 110 l=40 w=400 "a_n1356_n683#" "a_261_21#" 80 0 "a_216_109#" 400 0 "a_314_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 176 109 177 110 l=40 w=400 "a_n1356_n683#" "a_163_531#" 80 0 "a_118_109#" 400 0 "a_216_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 78 109 79 110 l=40 w=400 "a_n1356_n683#" "a_65_21#" 80 0 "a_20_109#" 400 0 "a_118_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -20 109 -19 110 l=40 w=400 "a_n1356_n683#" "a_n33_531#" 80 0 "a_n78_109#" 400 0 "a_20_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -118 109 -117 110 l=40 w=400 "a_n1356_n683#" "a_n131_21#" 80 0 "a_n176_109#" 400 0 "a_n78_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -216 109 -215 110 l=40 w=400 "a_n1356_n683#" "a_n229_531#" 80 0 "a_n274_109#" 400 0 "a_n176_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -314 109 -313 110 l=40 w=400 "a_n1356_n683#" "a_n327_21#" 80 0 "a_n372_109#" 400 0 "a_n274_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -412 109 -411 110 l=40 w=400 "a_n1356_n683#" "a_n425_531#" 80 0 "a_n470_109#" 400 0 "a_n372_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -510 109 -509 110 l=40 w=400 "a_n1356_n683#" "a_n523_21#" 80 0 "a_n568_109#" 400 0 "a_n470_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -608 109 -607 110 l=40 w=400 "a_n1356_n683#" "a_n621_531#" 80 0 "a_n666_109#" 400 0 "a_n568_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -706 109 -705 110 l=40 w=400 "a_n1356_n683#" "a_n719_21#" 80 0 "a_n764_109#" 400 0 "a_n666_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -804 109 -803 110 l=40 w=400 "a_n1356_n683#" "a_n817_531#" 80 0 "a_n862_109#" 400 0 "a_n764_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -902 109 -901 110 l=40 w=400 "a_n1356_n683#" "a_n915_21#" 80 0 "a_n960_109#" 400 0 "a_n862_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1000 109 -999 110 l=40 w=400 "a_n1356_n683#" "a_n1013_531#" 80 0 "a_n1058_109#" 400 0 "a_n960_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1098 109 -1097 110 l=40 w=400 "a_n1356_n683#" "a_n1111_21#" 80 0 "a_n1156_109#" 400 0 "a_n1058_109#" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1196 109 -1195 110 l=40 w=400 "a_n1356_n683#" "a_n1209_531#" 80 0 "a_n1254_109#" 400 0 "a_n1156_109#" 400 0
diff --git a/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.mag b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.mag
new file mode 100644
index 0000000..4afefe4
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB.mag
@@ -0,0 +1,1567 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -1205 581 -1147 587
+rect -1009 581 -951 587
+rect -813 581 -755 587
+rect -617 581 -559 587
+rect -421 581 -363 587
+rect -225 581 -167 587
+rect -29 581 29 587
+rect 167 581 225 587
+rect 363 581 421 587
+rect 559 581 617 587
+rect 755 581 813 587
+rect 951 581 1009 587
+rect 1147 581 1205 587
+rect -1205 547 -1193 581
+rect -1009 547 -997 581
+rect -813 547 -801 581
+rect -617 547 -605 581
+rect -421 547 -409 581
+rect -225 547 -213 581
+rect -29 547 -17 581
+rect 167 547 179 581
+rect 363 547 375 581
+rect 559 547 571 581
+rect 755 547 767 581
+rect 951 547 963 581
+rect 1147 547 1159 581
+rect -1205 541 -1147 547
+rect -1009 541 -951 547
+rect -813 541 -755 547
+rect -617 541 -559 547
+rect -421 541 -363 547
+rect -225 541 -167 547
+rect -29 541 29 547
+rect 167 541 225 547
+rect 363 541 421 547
+rect 559 541 617 547
+rect 755 541 813 547
+rect 951 541 1009 547
+rect 1147 541 1205 547
+rect -1107 71 -1049 77
+rect -911 71 -853 77
+rect -715 71 -657 77
+rect -519 71 -461 77
+rect -323 71 -265 77
+rect -127 71 -69 77
+rect 69 71 127 77
+rect 265 71 323 77
+rect 461 71 519 77
+rect 657 71 715 77
+rect 853 71 911 77
+rect 1049 71 1107 77
+rect -1107 37 -1095 71
+rect -911 37 -899 71
+rect -715 37 -703 71
+rect -519 37 -507 71
+rect -323 37 -311 71
+rect -127 37 -115 71
+rect 69 37 81 71
+rect 265 37 277 71
+rect 461 37 473 71
+rect 657 37 669 71
+rect 853 37 865 71
+rect 1049 37 1061 71
+rect -1107 31 -1049 37
+rect -911 31 -853 37
+rect -715 31 -657 37
+rect -519 31 -461 37
+rect -323 31 -265 37
+rect -127 31 -69 37
+rect 69 31 127 37
+rect 265 31 323 37
+rect 461 31 519 37
+rect 657 31 715 37
+rect 853 31 911 37
+rect 1049 31 1107 37
+rect -1107 -37 -1049 -31
+rect -911 -37 -853 -31
+rect -715 -37 -657 -31
+rect -519 -37 -461 -31
+rect -323 -37 -265 -31
+rect -127 -37 -69 -31
+rect 69 -37 127 -31
+rect 265 -37 323 -31
+rect 461 -37 519 -31
+rect 657 -37 715 -31
+rect 853 -37 911 -31
+rect 1049 -37 1107 -31
+rect -1107 -71 -1095 -37
+rect -911 -71 -899 -37
+rect -715 -71 -703 -37
+rect -519 -71 -507 -37
+rect -323 -71 -311 -37
+rect -127 -71 -115 -37
+rect 69 -71 81 -37
+rect 265 -71 277 -37
+rect 461 -71 473 -37
+rect 657 -71 669 -37
+rect 853 -71 865 -37
+rect 1049 -71 1061 -37
+rect -1107 -77 -1049 -71
+rect -911 -77 -853 -71
+rect -715 -77 -657 -71
+rect -519 -77 -461 -71
+rect -323 -77 -265 -71
+rect -127 -77 -69 -71
+rect 69 -77 127 -71
+rect 265 -77 323 -71
+rect 461 -77 519 -71
+rect 657 -77 715 -71
+rect 853 -77 911 -71
+rect 1049 -77 1107 -71
+rect -1205 -547 -1147 -541
+rect -1009 -547 -951 -541
+rect -813 -547 -755 -541
+rect -617 -547 -559 -541
+rect -421 -547 -363 -541
+rect -225 -547 -167 -541
+rect -29 -547 29 -541
+rect 167 -547 225 -541
+rect 363 -547 421 -541
+rect 559 -547 617 -541
+rect 755 -547 813 -541
+rect 951 -547 1009 -541
+rect 1147 -547 1205 -541
+rect -1205 -581 -1193 -547
+rect -1009 -581 -997 -547
+rect -813 -581 -801 -547
+rect -617 -581 -605 -547
+rect -421 -581 -409 -547
+rect -225 -581 -213 -547
+rect -29 -581 -17 -547
+rect 167 -581 179 -547
+rect 363 -581 375 -547
+rect 559 -581 571 -547
+rect 755 -581 767 -547
+rect 951 -581 963 -547
+rect 1147 -581 1159 -547
+rect -1205 -587 -1147 -581
+rect -1009 -587 -951 -581
+rect -813 -587 -755 -581
+rect -617 -587 -559 -581
+rect -421 -587 -363 -581
+rect -225 -587 -167 -581
+rect -29 -587 29 -581
+rect 167 -587 225 -581
+rect 363 -587 421 -581
+rect 559 -587 617 -581
+rect 755 -587 813 -581
+rect 951 -587 1009 -581
+rect 1147 -587 1205 -581
+<< pwell >>
+rect -1392 -719 1392 719
+<< nmoslvt >>
+rect -1196 109 -1156 509
+rect -1098 109 -1058 509
+rect -1000 109 -960 509
+rect -902 109 -862 509
+rect -804 109 -764 509
+rect -706 109 -666 509
+rect -608 109 -568 509
+rect -510 109 -470 509
+rect -412 109 -372 509
+rect -314 109 -274 509
+rect -216 109 -176 509
+rect -118 109 -78 509
+rect -20 109 20 509
+rect 78 109 118 509
+rect 176 109 216 509
+rect 274 109 314 509
+rect 372 109 412 509
+rect 470 109 510 509
+rect 568 109 608 509
+rect 666 109 706 509
+rect 764 109 804 509
+rect 862 109 902 509
+rect 960 109 1000 509
+rect 1058 109 1098 509
+rect 1156 109 1196 509
+rect -1196 -509 -1156 -109
+rect -1098 -509 -1058 -109
+rect -1000 -509 -960 -109
+rect -902 -509 -862 -109
+rect -804 -509 -764 -109
+rect -706 -509 -666 -109
+rect -608 -509 -568 -109
+rect -510 -509 -470 -109
+rect -412 -509 -372 -109
+rect -314 -509 -274 -109
+rect -216 -509 -176 -109
+rect -118 -509 -78 -109
+rect -20 -509 20 -109
+rect 78 -509 118 -109
+rect 176 -509 216 -109
+rect 274 -509 314 -109
+rect 372 -509 412 -109
+rect 470 -509 510 -109
+rect 568 -509 608 -109
+rect 666 -509 706 -109
+rect 764 -509 804 -109
+rect 862 -509 902 -109
+rect 960 -509 1000 -109
+rect 1058 -509 1098 -109
+rect 1156 -509 1196 -109
+<< ndiff >>
+rect -1254 497 -1196 509
+rect -1254 121 -1242 497
+rect -1208 121 -1196 497
+rect -1254 109 -1196 121
+rect -1156 497 -1098 509
+rect -1156 121 -1144 497
+rect -1110 121 -1098 497
+rect -1156 109 -1098 121
+rect -1058 497 -1000 509
+rect -1058 121 -1046 497
+rect -1012 121 -1000 497
+rect -1058 109 -1000 121
+rect -960 497 -902 509
+rect -960 121 -948 497
+rect -914 121 -902 497
+rect -960 109 -902 121
+rect -862 497 -804 509
+rect -862 121 -850 497
+rect -816 121 -804 497
+rect -862 109 -804 121
+rect -764 497 -706 509
+rect -764 121 -752 497
+rect -718 121 -706 497
+rect -764 109 -706 121
+rect -666 497 -608 509
+rect -666 121 -654 497
+rect -620 121 -608 497
+rect -666 109 -608 121
+rect -568 497 -510 509
+rect -568 121 -556 497
+rect -522 121 -510 497
+rect -568 109 -510 121
+rect -470 497 -412 509
+rect -470 121 -458 497
+rect -424 121 -412 497
+rect -470 109 -412 121
+rect -372 497 -314 509
+rect -372 121 -360 497
+rect -326 121 -314 497
+rect -372 109 -314 121
+rect -274 497 -216 509
+rect -274 121 -262 497
+rect -228 121 -216 497
+rect -274 109 -216 121
+rect -176 497 -118 509
+rect -176 121 -164 497
+rect -130 121 -118 497
+rect -176 109 -118 121
+rect -78 497 -20 509
+rect -78 121 -66 497
+rect -32 121 -20 497
+rect -78 109 -20 121
+rect 20 497 78 509
+rect 20 121 32 497
+rect 66 121 78 497
+rect 20 109 78 121
+rect 118 497 176 509
+rect 118 121 130 497
+rect 164 121 176 497
+rect 118 109 176 121
+rect 216 497 274 509
+rect 216 121 228 497
+rect 262 121 274 497
+rect 216 109 274 121
+rect 314 497 372 509
+rect 314 121 326 497
+rect 360 121 372 497
+rect 314 109 372 121
+rect 412 497 470 509
+rect 412 121 424 497
+rect 458 121 470 497
+rect 412 109 470 121
+rect 510 497 568 509
+rect 510 121 522 497
+rect 556 121 568 497
+rect 510 109 568 121
+rect 608 497 666 509
+rect 608 121 620 497
+rect 654 121 666 497
+rect 608 109 666 121
+rect 706 497 764 509
+rect 706 121 718 497
+rect 752 121 764 497
+rect 706 109 764 121
+rect 804 497 862 509
+rect 804 121 816 497
+rect 850 121 862 497
+rect 804 109 862 121
+rect 902 497 960 509
+rect 902 121 914 497
+rect 948 121 960 497
+rect 902 109 960 121
+rect 1000 497 1058 509
+rect 1000 121 1012 497
+rect 1046 121 1058 497
+rect 1000 109 1058 121
+rect 1098 497 1156 509
+rect 1098 121 1110 497
+rect 1144 121 1156 497
+rect 1098 109 1156 121
+rect 1196 497 1254 509
+rect 1196 121 1208 497
+rect 1242 121 1254 497
+rect 1196 109 1254 121
+rect -1254 -121 -1196 -109
+rect -1254 -497 -1242 -121
+rect -1208 -497 -1196 -121
+rect -1254 -509 -1196 -497
+rect -1156 -121 -1098 -109
+rect -1156 -497 -1144 -121
+rect -1110 -497 -1098 -121
+rect -1156 -509 -1098 -497
+rect -1058 -121 -1000 -109
+rect -1058 -497 -1046 -121
+rect -1012 -497 -1000 -121
+rect -1058 -509 -1000 -497
+rect -960 -121 -902 -109
+rect -960 -497 -948 -121
+rect -914 -497 -902 -121
+rect -960 -509 -902 -497
+rect -862 -121 -804 -109
+rect -862 -497 -850 -121
+rect -816 -497 -804 -121
+rect -862 -509 -804 -497
+rect -764 -121 -706 -109
+rect -764 -497 -752 -121
+rect -718 -497 -706 -121
+rect -764 -509 -706 -497
+rect -666 -121 -608 -109
+rect -666 -497 -654 -121
+rect -620 -497 -608 -121
+rect -666 -509 -608 -497
+rect -568 -121 -510 -109
+rect -568 -497 -556 -121
+rect -522 -497 -510 -121
+rect -568 -509 -510 -497
+rect -470 -121 -412 -109
+rect -470 -497 -458 -121
+rect -424 -497 -412 -121
+rect -470 -509 -412 -497
+rect -372 -121 -314 -109
+rect -372 -497 -360 -121
+rect -326 -497 -314 -121
+rect -372 -509 -314 -497
+rect -274 -121 -216 -109
+rect -274 -497 -262 -121
+rect -228 -497 -216 -121
+rect -274 -509 -216 -497
+rect -176 -121 -118 -109
+rect -176 -497 -164 -121
+rect -130 -497 -118 -121
+rect -176 -509 -118 -497
+rect -78 -121 -20 -109
+rect -78 -497 -66 -121
+rect -32 -497 -20 -121
+rect -78 -509 -20 -497
+rect 20 -121 78 -109
+rect 20 -497 32 -121
+rect 66 -497 78 -121
+rect 20 -509 78 -497
+rect 118 -121 176 -109
+rect 118 -497 130 -121
+rect 164 -497 176 -121
+rect 118 -509 176 -497
+rect 216 -121 274 -109
+rect 216 -497 228 -121
+rect 262 -497 274 -121
+rect 216 -509 274 -497
+rect 314 -121 372 -109
+rect 314 -497 326 -121
+rect 360 -497 372 -121
+rect 314 -509 372 -497
+rect 412 -121 470 -109
+rect 412 -497 424 -121
+rect 458 -497 470 -121
+rect 412 -509 470 -497
+rect 510 -121 568 -109
+rect 510 -497 522 -121
+rect 556 -497 568 -121
+rect 510 -509 568 -497
+rect 608 -121 666 -109
+rect 608 -497 620 -121
+rect 654 -497 666 -121
+rect 608 -509 666 -497
+rect 706 -121 764 -109
+rect 706 -497 718 -121
+rect 752 -497 764 -121
+rect 706 -509 764 -497
+rect 804 -121 862 -109
+rect 804 -497 816 -121
+rect 850 -497 862 -121
+rect 804 -509 862 -497
+rect 902 -121 960 -109
+rect 902 -497 914 -121
+rect 948 -497 960 -121
+rect 902 -509 960 -497
+rect 1000 -121 1058 -109
+rect 1000 -497 1012 -121
+rect 1046 -497 1058 -121
+rect 1000 -509 1058 -497
+rect 1098 -121 1156 -109
+rect 1098 -497 1110 -121
+rect 1144 -497 1156 -121
+rect 1098 -509 1156 -497
+rect 1196 -121 1254 -109
+rect 1196 -497 1208 -121
+rect 1242 -497 1254 -121
+rect 1196 -509 1254 -497
+<< ndiffc >>
+rect -1242 121 -1208 497
+rect -1144 121 -1110 497
+rect -1046 121 -1012 497
+rect -948 121 -914 497
+rect -850 121 -816 497
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect 816 121 850 497
+rect 914 121 948 497
+rect 1012 121 1046 497
+rect 1110 121 1144 497
+rect 1208 121 1242 497
+rect -1242 -497 -1208 -121
+rect -1144 -497 -1110 -121
+rect -1046 -497 -1012 -121
+rect -948 -497 -914 -121
+rect -850 -497 -816 -121
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect 816 -497 850 -121
+rect 914 -497 948 -121
+rect 1012 -497 1046 -121
+rect 1110 -497 1144 -121
+rect 1208 -497 1242 -121
+<< psubdiff >>
+rect -1356 649 -1260 683
+rect 1260 649 1356 683
+rect -1356 587 -1322 649
+rect 1322 587 1356 649
+rect -1356 -649 -1322 -587
+rect 1322 -649 1356 -587
+rect -1356 -683 -1260 -649
+rect 1260 -683 1356 -649
+<< psubdiffcont >>
+rect -1260 649 1260 683
+rect -1356 -587 -1322 587
+rect 1322 -587 1356 587
+rect -1260 -683 1260 -649
+<< poly >>
+rect -1209 581 -1143 597
+rect -1209 547 -1193 581
+rect -1159 547 -1143 581
+rect -1209 531 -1143 547
+rect -1013 581 -947 597
+rect -1013 547 -997 581
+rect -963 547 -947 581
+rect -1196 509 -1156 531
+rect -1098 509 -1058 535
+rect -1013 531 -947 547
+rect -817 581 -751 597
+rect -817 547 -801 581
+rect -767 547 -751 581
+rect -1000 509 -960 531
+rect -902 509 -862 535
+rect -817 531 -751 547
+rect -621 581 -555 597
+rect -621 547 -605 581
+rect -571 547 -555 581
+rect -804 509 -764 531
+rect -706 509 -666 535
+rect -621 531 -555 547
+rect -425 581 -359 597
+rect -425 547 -409 581
+rect -375 547 -359 581
+rect -608 509 -568 531
+rect -510 509 -470 535
+rect -425 531 -359 547
+rect -229 581 -163 597
+rect -229 547 -213 581
+rect -179 547 -163 581
+rect -412 509 -372 531
+rect -314 509 -274 535
+rect -229 531 -163 547
+rect -33 581 33 597
+rect -33 547 -17 581
+rect 17 547 33 581
+rect -216 509 -176 531
+rect -118 509 -78 535
+rect -33 531 33 547
+rect 163 581 229 597
+rect 163 547 179 581
+rect 213 547 229 581
+rect -20 509 20 531
+rect 78 509 118 535
+rect 163 531 229 547
+rect 359 581 425 597
+rect 359 547 375 581
+rect 409 547 425 581
+rect 176 509 216 531
+rect 274 509 314 535
+rect 359 531 425 547
+rect 555 581 621 597
+rect 555 547 571 581
+rect 605 547 621 581
+rect 372 509 412 531
+rect 470 509 510 535
+rect 555 531 621 547
+rect 751 581 817 597
+rect 751 547 767 581
+rect 801 547 817 581
+rect 568 509 608 531
+rect 666 509 706 535
+rect 751 531 817 547
+rect 947 581 1013 597
+rect 947 547 963 581
+rect 997 547 1013 581
+rect 764 509 804 531
+rect 862 509 902 535
+rect 947 531 1013 547
+rect 1143 581 1209 597
+rect 1143 547 1159 581
+rect 1193 547 1209 581
+rect 960 509 1000 531
+rect 1058 509 1098 535
+rect 1143 531 1209 547
+rect 1156 509 1196 531
+rect -1196 83 -1156 109
+rect -1098 87 -1058 109
+rect -1111 71 -1045 87
+rect -1000 83 -960 109
+rect -902 87 -862 109
+rect -1111 37 -1095 71
+rect -1061 37 -1045 71
+rect -1111 21 -1045 37
+rect -915 71 -849 87
+rect -804 83 -764 109
+rect -706 87 -666 109
+rect -915 37 -899 71
+rect -865 37 -849 71
+rect -915 21 -849 37
+rect -719 71 -653 87
+rect -608 83 -568 109
+rect -510 87 -470 109
+rect -719 37 -703 71
+rect -669 37 -653 71
+rect -719 21 -653 37
+rect -523 71 -457 87
+rect -412 83 -372 109
+rect -314 87 -274 109
+rect -523 37 -507 71
+rect -473 37 -457 71
+rect -523 21 -457 37
+rect -327 71 -261 87
+rect -216 83 -176 109
+rect -118 87 -78 109
+rect -327 37 -311 71
+rect -277 37 -261 71
+rect -327 21 -261 37
+rect -131 71 -65 87
+rect -20 83 20 109
+rect 78 87 118 109
+rect -131 37 -115 71
+rect -81 37 -65 71
+rect -131 21 -65 37
+rect 65 71 131 87
+rect 176 83 216 109
+rect 274 87 314 109
+rect 65 37 81 71
+rect 115 37 131 71
+rect 65 21 131 37
+rect 261 71 327 87
+rect 372 83 412 109
+rect 470 87 510 109
+rect 261 37 277 71
+rect 311 37 327 71
+rect 261 21 327 37
+rect 457 71 523 87
+rect 568 83 608 109
+rect 666 87 706 109
+rect 457 37 473 71
+rect 507 37 523 71
+rect 457 21 523 37
+rect 653 71 719 87
+rect 764 83 804 109
+rect 862 87 902 109
+rect 653 37 669 71
+rect 703 37 719 71
+rect 653 21 719 37
+rect 849 71 915 87
+rect 960 83 1000 109
+rect 1058 87 1098 109
+rect 849 37 865 71
+rect 899 37 915 71
+rect 849 21 915 37
+rect 1045 71 1111 87
+rect 1156 83 1196 109
+rect 1045 37 1061 71
+rect 1095 37 1111 71
+rect 1045 21 1111 37
+rect -1111 -37 -1045 -21
+rect -1111 -71 -1095 -37
+rect -1061 -71 -1045 -37
+rect -1196 -109 -1156 -83
+rect -1111 -87 -1045 -71
+rect -915 -37 -849 -21
+rect -915 -71 -899 -37
+rect -865 -71 -849 -37
+rect -1098 -109 -1058 -87
+rect -1000 -109 -960 -83
+rect -915 -87 -849 -71
+rect -719 -37 -653 -21
+rect -719 -71 -703 -37
+rect -669 -71 -653 -37
+rect -902 -109 -862 -87
+rect -804 -109 -764 -83
+rect -719 -87 -653 -71
+rect -523 -37 -457 -21
+rect -523 -71 -507 -37
+rect -473 -71 -457 -37
+rect -706 -109 -666 -87
+rect -608 -109 -568 -83
+rect -523 -87 -457 -71
+rect -327 -37 -261 -21
+rect -327 -71 -311 -37
+rect -277 -71 -261 -37
+rect -510 -109 -470 -87
+rect -412 -109 -372 -83
+rect -327 -87 -261 -71
+rect -131 -37 -65 -21
+rect -131 -71 -115 -37
+rect -81 -71 -65 -37
+rect -314 -109 -274 -87
+rect -216 -109 -176 -83
+rect -131 -87 -65 -71
+rect 65 -37 131 -21
+rect 65 -71 81 -37
+rect 115 -71 131 -37
+rect -118 -109 -78 -87
+rect -20 -109 20 -83
+rect 65 -87 131 -71
+rect 261 -37 327 -21
+rect 261 -71 277 -37
+rect 311 -71 327 -37
+rect 78 -109 118 -87
+rect 176 -109 216 -83
+rect 261 -87 327 -71
+rect 457 -37 523 -21
+rect 457 -71 473 -37
+rect 507 -71 523 -37
+rect 274 -109 314 -87
+rect 372 -109 412 -83
+rect 457 -87 523 -71
+rect 653 -37 719 -21
+rect 653 -71 669 -37
+rect 703 -71 719 -37
+rect 470 -109 510 -87
+rect 568 -109 608 -83
+rect 653 -87 719 -71
+rect 849 -37 915 -21
+rect 849 -71 865 -37
+rect 899 -71 915 -37
+rect 666 -109 706 -87
+rect 764 -109 804 -83
+rect 849 -87 915 -71
+rect 1045 -37 1111 -21
+rect 1045 -71 1061 -37
+rect 1095 -71 1111 -37
+rect 862 -109 902 -87
+rect 960 -109 1000 -83
+rect 1045 -87 1111 -71
+rect 1058 -109 1098 -87
+rect 1156 -109 1196 -83
+rect -1196 -531 -1156 -509
+rect -1209 -547 -1143 -531
+rect -1098 -535 -1058 -509
+rect -1000 -531 -960 -509
+rect -1209 -581 -1193 -547
+rect -1159 -581 -1143 -547
+rect -1209 -597 -1143 -581
+rect -1013 -547 -947 -531
+rect -902 -535 -862 -509
+rect -804 -531 -764 -509
+rect -1013 -581 -997 -547
+rect -963 -581 -947 -547
+rect -1013 -597 -947 -581
+rect -817 -547 -751 -531
+rect -706 -535 -666 -509
+rect -608 -531 -568 -509
+rect -817 -581 -801 -547
+rect -767 -581 -751 -547
+rect -817 -597 -751 -581
+rect -621 -547 -555 -531
+rect -510 -535 -470 -509
+rect -412 -531 -372 -509
+rect -621 -581 -605 -547
+rect -571 -581 -555 -547
+rect -621 -597 -555 -581
+rect -425 -547 -359 -531
+rect -314 -535 -274 -509
+rect -216 -531 -176 -509
+rect -425 -581 -409 -547
+rect -375 -581 -359 -547
+rect -425 -597 -359 -581
+rect -229 -547 -163 -531
+rect -118 -535 -78 -509
+rect -20 -531 20 -509
+rect -229 -581 -213 -547
+rect -179 -581 -163 -547
+rect -229 -597 -163 -581
+rect -33 -547 33 -531
+rect 78 -535 118 -509
+rect 176 -531 216 -509
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect -33 -597 33 -581
+rect 163 -547 229 -531
+rect 274 -535 314 -509
+rect 372 -531 412 -509
+rect 163 -581 179 -547
+rect 213 -581 229 -547
+rect 163 -597 229 -581
+rect 359 -547 425 -531
+rect 470 -535 510 -509
+rect 568 -531 608 -509
+rect 359 -581 375 -547
+rect 409 -581 425 -547
+rect 359 -597 425 -581
+rect 555 -547 621 -531
+rect 666 -535 706 -509
+rect 764 -531 804 -509
+rect 555 -581 571 -547
+rect 605 -581 621 -547
+rect 555 -597 621 -581
+rect 751 -547 817 -531
+rect 862 -535 902 -509
+rect 960 -531 1000 -509
+rect 751 -581 767 -547
+rect 801 -581 817 -547
+rect 751 -597 817 -581
+rect 947 -547 1013 -531
+rect 1058 -535 1098 -509
+rect 1156 -531 1196 -509
+rect 947 -581 963 -547
+rect 997 -581 1013 -547
+rect 947 -597 1013 -581
+rect 1143 -547 1209 -531
+rect 1143 -581 1159 -547
+rect 1193 -581 1209 -547
+rect 1143 -597 1209 -581
+<< polycont >>
+rect -1193 547 -1159 581
+rect -997 547 -963 581
+rect -801 547 -767 581
+rect -605 547 -571 581
+rect -409 547 -375 581
+rect -213 547 -179 581
+rect -17 547 17 581
+rect 179 547 213 581
+rect 375 547 409 581
+rect 571 547 605 581
+rect 767 547 801 581
+rect 963 547 997 581
+rect 1159 547 1193 581
+rect -1095 37 -1061 71
+rect -899 37 -865 71
+rect -703 37 -669 71
+rect -507 37 -473 71
+rect -311 37 -277 71
+rect -115 37 -81 71
+rect 81 37 115 71
+rect 277 37 311 71
+rect 473 37 507 71
+rect 669 37 703 71
+rect 865 37 899 71
+rect 1061 37 1095 71
+rect -1095 -71 -1061 -37
+rect -899 -71 -865 -37
+rect -703 -71 -669 -37
+rect -507 -71 -473 -37
+rect -311 -71 -277 -37
+rect -115 -71 -81 -37
+rect 81 -71 115 -37
+rect 277 -71 311 -37
+rect 473 -71 507 -37
+rect 669 -71 703 -37
+rect 865 -71 899 -37
+rect 1061 -71 1095 -37
+rect -1193 -581 -1159 -547
+rect -997 -581 -963 -547
+rect -801 -581 -767 -547
+rect -605 -581 -571 -547
+rect -409 -581 -375 -547
+rect -213 -581 -179 -547
+rect -17 -581 17 -547
+rect 179 -581 213 -547
+rect 375 -581 409 -547
+rect 571 -581 605 -547
+rect 767 -581 801 -547
+rect 963 -581 997 -547
+rect 1159 -581 1193 -547
+<< locali >>
+rect -1356 649 -1260 683
+rect 1260 649 1356 683
+rect -1356 587 -1322 649
+rect 1322 587 1356 649
+rect -1209 547 -1193 581
+rect -1159 547 -1143 581
+rect -1013 547 -997 581
+rect -963 547 -947 581
+rect -817 547 -801 581
+rect -767 547 -751 581
+rect -621 547 -605 581
+rect -571 547 -555 581
+rect -425 547 -409 581
+rect -375 547 -359 581
+rect -229 547 -213 581
+rect -179 547 -163 581
+rect -33 547 -17 581
+rect 17 547 33 581
+rect 163 547 179 581
+rect 213 547 229 581
+rect 359 547 375 581
+rect 409 547 425 581
+rect 555 547 571 581
+rect 605 547 621 581
+rect 751 547 767 581
+rect 801 547 817 581
+rect 947 547 963 581
+rect 997 547 1013 581
+rect 1143 547 1159 581
+rect 1193 547 1209 581
+rect -1242 497 -1208 513
+rect -1242 105 -1208 121
+rect -1144 497 -1110 513
+rect -1144 105 -1110 121
+rect -1046 497 -1012 513
+rect -1046 105 -1012 121
+rect -948 497 -914 513
+rect -948 105 -914 121
+rect -850 497 -816 513
+rect -850 105 -816 121
+rect -752 497 -718 513
+rect -752 105 -718 121
+rect -654 497 -620 513
+rect -654 105 -620 121
+rect -556 497 -522 513
+rect -556 105 -522 121
+rect -458 497 -424 513
+rect -458 105 -424 121
+rect -360 497 -326 513
+rect -360 105 -326 121
+rect -262 497 -228 513
+rect -262 105 -228 121
+rect -164 497 -130 513
+rect -164 105 -130 121
+rect -66 497 -32 513
+rect -66 105 -32 121
+rect 32 497 66 513
+rect 32 105 66 121
+rect 130 497 164 513
+rect 130 105 164 121
+rect 228 497 262 513
+rect 228 105 262 121
+rect 326 497 360 513
+rect 326 105 360 121
+rect 424 497 458 513
+rect 424 105 458 121
+rect 522 497 556 513
+rect 522 105 556 121
+rect 620 497 654 513
+rect 620 105 654 121
+rect 718 497 752 513
+rect 718 105 752 121
+rect 816 497 850 513
+rect 816 105 850 121
+rect 914 497 948 513
+rect 914 105 948 121
+rect 1012 497 1046 513
+rect 1012 105 1046 121
+rect 1110 497 1144 513
+rect 1110 105 1144 121
+rect 1208 497 1242 513
+rect 1208 105 1242 121
+rect -1111 37 -1095 71
+rect -1061 37 -1045 71
+rect -915 37 -899 71
+rect -865 37 -849 71
+rect -719 37 -703 71
+rect -669 37 -653 71
+rect -523 37 -507 71
+rect -473 37 -457 71
+rect -327 37 -311 71
+rect -277 37 -261 71
+rect -131 37 -115 71
+rect -81 37 -65 71
+rect 65 37 81 71
+rect 115 37 131 71
+rect 261 37 277 71
+rect 311 37 327 71
+rect 457 37 473 71
+rect 507 37 523 71
+rect 653 37 669 71
+rect 703 37 719 71
+rect 849 37 865 71
+rect 899 37 915 71
+rect 1045 37 1061 71
+rect 1095 37 1111 71
+rect -1111 -71 -1095 -37
+rect -1061 -71 -1045 -37
+rect -915 -71 -899 -37
+rect -865 -71 -849 -37
+rect -719 -71 -703 -37
+rect -669 -71 -653 -37
+rect -523 -71 -507 -37
+rect -473 -71 -457 -37
+rect -327 -71 -311 -37
+rect -277 -71 -261 -37
+rect -131 -71 -115 -37
+rect -81 -71 -65 -37
+rect 65 -71 81 -37
+rect 115 -71 131 -37
+rect 261 -71 277 -37
+rect 311 -71 327 -37
+rect 457 -71 473 -37
+rect 507 -71 523 -37
+rect 653 -71 669 -37
+rect 703 -71 719 -37
+rect 849 -71 865 -37
+rect 899 -71 915 -37
+rect 1045 -71 1061 -37
+rect 1095 -71 1111 -37
+rect -1242 -121 -1208 -105
+rect -1242 -513 -1208 -497
+rect -1144 -121 -1110 -105
+rect -1144 -513 -1110 -497
+rect -1046 -121 -1012 -105
+rect -1046 -513 -1012 -497
+rect -948 -121 -914 -105
+rect -948 -513 -914 -497
+rect -850 -121 -816 -105
+rect -850 -513 -816 -497
+rect -752 -121 -718 -105
+rect -752 -513 -718 -497
+rect -654 -121 -620 -105
+rect -654 -513 -620 -497
+rect -556 -121 -522 -105
+rect -556 -513 -522 -497
+rect -458 -121 -424 -105
+rect -458 -513 -424 -497
+rect -360 -121 -326 -105
+rect -360 -513 -326 -497
+rect -262 -121 -228 -105
+rect -262 -513 -228 -497
+rect -164 -121 -130 -105
+rect -164 -513 -130 -497
+rect -66 -121 -32 -105
+rect -66 -513 -32 -497
+rect 32 -121 66 -105
+rect 32 -513 66 -497
+rect 130 -121 164 -105
+rect 130 -513 164 -497
+rect 228 -121 262 -105
+rect 228 -513 262 -497
+rect 326 -121 360 -105
+rect 326 -513 360 -497
+rect 424 -121 458 -105
+rect 424 -513 458 -497
+rect 522 -121 556 -105
+rect 522 -513 556 -497
+rect 620 -121 654 -105
+rect 620 -513 654 -497
+rect 718 -121 752 -105
+rect 718 -513 752 -497
+rect 816 -121 850 -105
+rect 816 -513 850 -497
+rect 914 -121 948 -105
+rect 914 -513 948 -497
+rect 1012 -121 1046 -105
+rect 1012 -513 1046 -497
+rect 1110 -121 1144 -105
+rect 1110 -513 1144 -497
+rect 1208 -121 1242 -105
+rect 1208 -513 1242 -497
+rect -1209 -581 -1193 -547
+rect -1159 -581 -1143 -547
+rect -1013 -581 -997 -547
+rect -963 -581 -947 -547
+rect -817 -581 -801 -547
+rect -767 -581 -751 -547
+rect -621 -581 -605 -547
+rect -571 -581 -555 -547
+rect -425 -581 -409 -547
+rect -375 -581 -359 -547
+rect -229 -581 -213 -547
+rect -179 -581 -163 -547
+rect -33 -581 -17 -547
+rect 17 -581 33 -547
+rect 163 -581 179 -547
+rect 213 -581 229 -547
+rect 359 -581 375 -547
+rect 409 -581 425 -547
+rect 555 -581 571 -547
+rect 605 -581 621 -547
+rect 751 -581 767 -547
+rect 801 -581 817 -547
+rect 947 -581 963 -547
+rect 997 -581 1013 -547
+rect 1143 -581 1159 -547
+rect 1193 -581 1209 -547
+rect -1356 -649 -1322 -587
+rect 1322 -649 1356 -587
+rect -1356 -683 -1260 -649
+rect 1260 -683 1356 -649
+<< viali >>
+rect -1193 547 -1159 581
+rect -997 547 -963 581
+rect -801 547 -767 581
+rect -605 547 -571 581
+rect -409 547 -375 581
+rect -213 547 -179 581
+rect -17 547 17 581
+rect 179 547 213 581
+rect 375 547 409 581
+rect 571 547 605 581
+rect 767 547 801 581
+rect 963 547 997 581
+rect 1159 547 1193 581
+rect -1242 121 -1208 497
+rect -1144 121 -1110 497
+rect -1046 121 -1012 497
+rect -948 121 -914 497
+rect -850 121 -816 497
+rect -752 121 -718 497
+rect -654 121 -620 497
+rect -556 121 -522 497
+rect -458 121 -424 497
+rect -360 121 -326 497
+rect -262 121 -228 497
+rect -164 121 -130 497
+rect -66 121 -32 497
+rect 32 121 66 497
+rect 130 121 164 497
+rect 228 121 262 497
+rect 326 121 360 497
+rect 424 121 458 497
+rect 522 121 556 497
+rect 620 121 654 497
+rect 718 121 752 497
+rect 816 121 850 497
+rect 914 121 948 497
+rect 1012 121 1046 497
+rect 1110 121 1144 497
+rect 1208 121 1242 497
+rect -1095 37 -1061 71
+rect -899 37 -865 71
+rect -703 37 -669 71
+rect -507 37 -473 71
+rect -311 37 -277 71
+rect -115 37 -81 71
+rect 81 37 115 71
+rect 277 37 311 71
+rect 473 37 507 71
+rect 669 37 703 71
+rect 865 37 899 71
+rect 1061 37 1095 71
+rect -1095 -71 -1061 -37
+rect -899 -71 -865 -37
+rect -703 -71 -669 -37
+rect -507 -71 -473 -37
+rect -311 -71 -277 -37
+rect -115 -71 -81 -37
+rect 81 -71 115 -37
+rect 277 -71 311 -37
+rect 473 -71 507 -37
+rect 669 -71 703 -37
+rect 865 -71 899 -37
+rect 1061 -71 1095 -37
+rect -1242 -497 -1208 -121
+rect -1144 -497 -1110 -121
+rect -1046 -497 -1012 -121
+rect -948 -497 -914 -121
+rect -850 -497 -816 -121
+rect -752 -497 -718 -121
+rect -654 -497 -620 -121
+rect -556 -497 -522 -121
+rect -458 -497 -424 -121
+rect -360 -497 -326 -121
+rect -262 -497 -228 -121
+rect -164 -497 -130 -121
+rect -66 -497 -32 -121
+rect 32 -497 66 -121
+rect 130 -497 164 -121
+rect 228 -497 262 -121
+rect 326 -497 360 -121
+rect 424 -497 458 -121
+rect 522 -497 556 -121
+rect 620 -497 654 -121
+rect 718 -497 752 -121
+rect 816 -497 850 -121
+rect 914 -497 948 -121
+rect 1012 -497 1046 -121
+rect 1110 -497 1144 -121
+rect 1208 -497 1242 -121
+rect -1193 -581 -1159 -547
+rect -997 -581 -963 -547
+rect -801 -581 -767 -547
+rect -605 -581 -571 -547
+rect -409 -581 -375 -547
+rect -213 -581 -179 -547
+rect -17 -581 17 -547
+rect 179 -581 213 -547
+rect 375 -581 409 -547
+rect 571 -581 605 -547
+rect 767 -581 801 -547
+rect 963 -581 997 -547
+rect 1159 -581 1193 -547
+<< metal1 >>
+rect -1205 581 -1147 587
+rect -1205 547 -1193 581
+rect -1159 547 -1147 581
+rect -1205 541 -1147 547
+rect -1009 581 -951 587
+rect -1009 547 -997 581
+rect -963 547 -951 581
+rect -1009 541 -951 547
+rect -813 581 -755 587
+rect -813 547 -801 581
+rect -767 547 -755 581
+rect -813 541 -755 547
+rect -617 581 -559 587
+rect -617 547 -605 581
+rect -571 547 -559 581
+rect -617 541 -559 547
+rect -421 581 -363 587
+rect -421 547 -409 581
+rect -375 547 -363 581
+rect -421 541 -363 547
+rect -225 581 -167 587
+rect -225 547 -213 581
+rect -179 547 -167 581
+rect -225 541 -167 547
+rect -29 581 29 587
+rect -29 547 -17 581
+rect 17 547 29 581
+rect -29 541 29 547
+rect 167 581 225 587
+rect 167 547 179 581
+rect 213 547 225 581
+rect 167 541 225 547
+rect 363 581 421 587
+rect 363 547 375 581
+rect 409 547 421 581
+rect 363 541 421 547
+rect 559 581 617 587
+rect 559 547 571 581
+rect 605 547 617 581
+rect 559 541 617 547
+rect 755 581 813 587
+rect 755 547 767 581
+rect 801 547 813 581
+rect 755 541 813 547
+rect 951 581 1009 587
+rect 951 547 963 581
+rect 997 547 1009 581
+rect 951 541 1009 547
+rect 1147 581 1205 587
+rect 1147 547 1159 581
+rect 1193 547 1205 581
+rect 1147 541 1205 547
+rect -1248 497 -1202 509
+rect -1248 121 -1242 497
+rect -1208 121 -1202 497
+rect -1248 109 -1202 121
+rect -1150 497 -1104 509
+rect -1150 121 -1144 497
+rect -1110 121 -1104 497
+rect -1150 109 -1104 121
+rect -1052 497 -1006 509
+rect -1052 121 -1046 497
+rect -1012 121 -1006 497
+rect -1052 109 -1006 121
+rect -954 497 -908 509
+rect -954 121 -948 497
+rect -914 121 -908 497
+rect -954 109 -908 121
+rect -856 497 -810 509
+rect -856 121 -850 497
+rect -816 121 -810 497
+rect -856 109 -810 121
+rect -758 497 -712 509
+rect -758 121 -752 497
+rect -718 121 -712 497
+rect -758 109 -712 121
+rect -660 497 -614 509
+rect -660 121 -654 497
+rect -620 121 -614 497
+rect -660 109 -614 121
+rect -562 497 -516 509
+rect -562 121 -556 497
+rect -522 121 -516 497
+rect -562 109 -516 121
+rect -464 497 -418 509
+rect -464 121 -458 497
+rect -424 121 -418 497
+rect -464 109 -418 121
+rect -366 497 -320 509
+rect -366 121 -360 497
+rect -326 121 -320 497
+rect -366 109 -320 121
+rect -268 497 -222 509
+rect -268 121 -262 497
+rect -228 121 -222 497
+rect -268 109 -222 121
+rect -170 497 -124 509
+rect -170 121 -164 497
+rect -130 121 -124 497
+rect -170 109 -124 121
+rect -72 497 -26 509
+rect -72 121 -66 497
+rect -32 121 -26 497
+rect -72 109 -26 121
+rect 26 497 72 509
+rect 26 121 32 497
+rect 66 121 72 497
+rect 26 109 72 121
+rect 124 497 170 509
+rect 124 121 130 497
+rect 164 121 170 497
+rect 124 109 170 121
+rect 222 497 268 509
+rect 222 121 228 497
+rect 262 121 268 497
+rect 222 109 268 121
+rect 320 497 366 509
+rect 320 121 326 497
+rect 360 121 366 497
+rect 320 109 366 121
+rect 418 497 464 509
+rect 418 121 424 497
+rect 458 121 464 497
+rect 418 109 464 121
+rect 516 497 562 509
+rect 516 121 522 497
+rect 556 121 562 497
+rect 516 109 562 121
+rect 614 497 660 509
+rect 614 121 620 497
+rect 654 121 660 497
+rect 614 109 660 121
+rect 712 497 758 509
+rect 712 121 718 497
+rect 752 121 758 497
+rect 712 109 758 121
+rect 810 497 856 509
+rect 810 121 816 497
+rect 850 121 856 497
+rect 810 109 856 121
+rect 908 497 954 509
+rect 908 121 914 497
+rect 948 121 954 497
+rect 908 109 954 121
+rect 1006 497 1052 509
+rect 1006 121 1012 497
+rect 1046 121 1052 497
+rect 1006 109 1052 121
+rect 1104 497 1150 509
+rect 1104 121 1110 497
+rect 1144 121 1150 497
+rect 1104 109 1150 121
+rect 1202 497 1248 509
+rect 1202 121 1208 497
+rect 1242 121 1248 497
+rect 1202 109 1248 121
+rect -1107 71 -1049 77
+rect -1107 37 -1095 71
+rect -1061 37 -1049 71
+rect -1107 31 -1049 37
+rect -911 71 -853 77
+rect -911 37 -899 71
+rect -865 37 -853 71
+rect -911 31 -853 37
+rect -715 71 -657 77
+rect -715 37 -703 71
+rect -669 37 -657 71
+rect -715 31 -657 37
+rect -519 71 -461 77
+rect -519 37 -507 71
+rect -473 37 -461 71
+rect -519 31 -461 37
+rect -323 71 -265 77
+rect -323 37 -311 71
+rect -277 37 -265 71
+rect -323 31 -265 37
+rect -127 71 -69 77
+rect -127 37 -115 71
+rect -81 37 -69 71
+rect -127 31 -69 37
+rect 69 71 127 77
+rect 69 37 81 71
+rect 115 37 127 71
+rect 69 31 127 37
+rect 265 71 323 77
+rect 265 37 277 71
+rect 311 37 323 71
+rect 265 31 323 37
+rect 461 71 519 77
+rect 461 37 473 71
+rect 507 37 519 71
+rect 461 31 519 37
+rect 657 71 715 77
+rect 657 37 669 71
+rect 703 37 715 71
+rect 657 31 715 37
+rect 853 71 911 77
+rect 853 37 865 71
+rect 899 37 911 71
+rect 853 31 911 37
+rect 1049 71 1107 77
+rect 1049 37 1061 71
+rect 1095 37 1107 71
+rect 1049 31 1107 37
+rect -1107 -37 -1049 -31
+rect -1107 -71 -1095 -37
+rect -1061 -71 -1049 -37
+rect -1107 -77 -1049 -71
+rect -911 -37 -853 -31
+rect -911 -71 -899 -37
+rect -865 -71 -853 -37
+rect -911 -77 -853 -71
+rect -715 -37 -657 -31
+rect -715 -71 -703 -37
+rect -669 -71 -657 -37
+rect -715 -77 -657 -71
+rect -519 -37 -461 -31
+rect -519 -71 -507 -37
+rect -473 -71 -461 -37
+rect -519 -77 -461 -71
+rect -323 -37 -265 -31
+rect -323 -71 -311 -37
+rect -277 -71 -265 -37
+rect -323 -77 -265 -71
+rect -127 -37 -69 -31
+rect -127 -71 -115 -37
+rect -81 -71 -69 -37
+rect -127 -77 -69 -71
+rect 69 -37 127 -31
+rect 69 -71 81 -37
+rect 115 -71 127 -37
+rect 69 -77 127 -71
+rect 265 -37 323 -31
+rect 265 -71 277 -37
+rect 311 -71 323 -37
+rect 265 -77 323 -71
+rect 461 -37 519 -31
+rect 461 -71 473 -37
+rect 507 -71 519 -37
+rect 461 -77 519 -71
+rect 657 -37 715 -31
+rect 657 -71 669 -37
+rect 703 -71 715 -37
+rect 657 -77 715 -71
+rect 853 -37 911 -31
+rect 853 -71 865 -37
+rect 899 -71 911 -37
+rect 853 -77 911 -71
+rect 1049 -37 1107 -31
+rect 1049 -71 1061 -37
+rect 1095 -71 1107 -37
+rect 1049 -77 1107 -71
+rect -1248 -121 -1202 -109
+rect -1248 -497 -1242 -121
+rect -1208 -497 -1202 -121
+rect -1248 -509 -1202 -497
+rect -1150 -121 -1104 -109
+rect -1150 -497 -1144 -121
+rect -1110 -497 -1104 -121
+rect -1150 -509 -1104 -497
+rect -1052 -121 -1006 -109
+rect -1052 -497 -1046 -121
+rect -1012 -497 -1006 -121
+rect -1052 -509 -1006 -497
+rect -954 -121 -908 -109
+rect -954 -497 -948 -121
+rect -914 -497 -908 -121
+rect -954 -509 -908 -497
+rect -856 -121 -810 -109
+rect -856 -497 -850 -121
+rect -816 -497 -810 -121
+rect -856 -509 -810 -497
+rect -758 -121 -712 -109
+rect -758 -497 -752 -121
+rect -718 -497 -712 -121
+rect -758 -509 -712 -497
+rect -660 -121 -614 -109
+rect -660 -497 -654 -121
+rect -620 -497 -614 -121
+rect -660 -509 -614 -497
+rect -562 -121 -516 -109
+rect -562 -497 -556 -121
+rect -522 -497 -516 -121
+rect -562 -509 -516 -497
+rect -464 -121 -418 -109
+rect -464 -497 -458 -121
+rect -424 -497 -418 -121
+rect -464 -509 -418 -497
+rect -366 -121 -320 -109
+rect -366 -497 -360 -121
+rect -326 -497 -320 -121
+rect -366 -509 -320 -497
+rect -268 -121 -222 -109
+rect -268 -497 -262 -121
+rect -228 -497 -222 -121
+rect -268 -509 -222 -497
+rect -170 -121 -124 -109
+rect -170 -497 -164 -121
+rect -130 -497 -124 -121
+rect -170 -509 -124 -497
+rect -72 -121 -26 -109
+rect -72 -497 -66 -121
+rect -32 -497 -26 -121
+rect -72 -509 -26 -497
+rect 26 -121 72 -109
+rect 26 -497 32 -121
+rect 66 -497 72 -121
+rect 26 -509 72 -497
+rect 124 -121 170 -109
+rect 124 -497 130 -121
+rect 164 -497 170 -121
+rect 124 -509 170 -497
+rect 222 -121 268 -109
+rect 222 -497 228 -121
+rect 262 -497 268 -121
+rect 222 -509 268 -497
+rect 320 -121 366 -109
+rect 320 -497 326 -121
+rect 360 -497 366 -121
+rect 320 -509 366 -497
+rect 418 -121 464 -109
+rect 418 -497 424 -121
+rect 458 -497 464 -121
+rect 418 -509 464 -497
+rect 516 -121 562 -109
+rect 516 -497 522 -121
+rect 556 -497 562 -121
+rect 516 -509 562 -497
+rect 614 -121 660 -109
+rect 614 -497 620 -121
+rect 654 -497 660 -121
+rect 614 -509 660 -497
+rect 712 -121 758 -109
+rect 712 -497 718 -121
+rect 752 -497 758 -121
+rect 712 -509 758 -497
+rect 810 -121 856 -109
+rect 810 -497 816 -121
+rect 850 -497 856 -121
+rect 810 -509 856 -497
+rect 908 -121 954 -109
+rect 908 -497 914 -121
+rect 948 -497 954 -121
+rect 908 -509 954 -497
+rect 1006 -121 1052 -109
+rect 1006 -497 1012 -121
+rect 1046 -497 1052 -121
+rect 1006 -509 1052 -497
+rect 1104 -121 1150 -109
+rect 1104 -497 1110 -121
+rect 1144 -497 1150 -121
+rect 1104 -509 1150 -497
+rect 1202 -121 1248 -109
+rect 1202 -497 1208 -121
+rect 1242 -497 1248 -121
+rect 1202 -509 1248 -497
+rect -1205 -547 -1147 -541
+rect -1205 -581 -1193 -547
+rect -1159 -581 -1147 -547
+rect -1205 -587 -1147 -581
+rect -1009 -547 -951 -541
+rect -1009 -581 -997 -547
+rect -963 -581 -951 -547
+rect -1009 -587 -951 -581
+rect -813 -547 -755 -541
+rect -813 -581 -801 -547
+rect -767 -581 -755 -547
+rect -813 -587 -755 -581
+rect -617 -547 -559 -541
+rect -617 -581 -605 -547
+rect -571 -581 -559 -547
+rect -617 -587 -559 -581
+rect -421 -547 -363 -541
+rect -421 -581 -409 -547
+rect -375 -581 -363 -547
+rect -421 -587 -363 -581
+rect -225 -547 -167 -541
+rect -225 -581 -213 -547
+rect -179 -581 -167 -547
+rect -225 -587 -167 -581
+rect -29 -547 29 -541
+rect -29 -581 -17 -547
+rect 17 -581 29 -547
+rect -29 -587 29 -581
+rect 167 -547 225 -541
+rect 167 -581 179 -547
+rect 213 -581 225 -547
+rect 167 -587 225 -581
+rect 363 -547 421 -541
+rect 363 -581 375 -547
+rect 409 -581 421 -547
+rect 363 -587 421 -581
+rect 559 -547 617 -541
+rect 559 -581 571 -547
+rect 605 -581 617 -547
+rect 559 -587 617 -581
+rect 755 -547 813 -541
+rect 755 -581 767 -547
+rect 801 -581 813 -547
+rect 755 -587 813 -581
+rect 951 -547 1009 -541
+rect 951 -581 963 -547
+rect 997 -581 1009 -547
+rect 951 -587 1009 -581
+rect 1147 -547 1205 -541
+rect 1147 -581 1159 -547
+rect 1193 -581 1205 -547
+rect 1147 -587 1205 -581
+<< properties >>
+string FIXED_BBOX -1339 -666 1339 666
+string gencell sky130_fd_pr__nfet_01v8_lvt
+string library sky130
+string parameters w 2 l 0.2 m 2 nf 25 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__nfet_01v8 sky130_fd_pr__nfet_01v8_lvt  sky130_fd_bs_flash__special_sonosfet_star  sky130_fd_pr__nfet_g5v0d10v5 sky130_fd_pr__nfet_05v0_nvt  sky130_fd_pr__nfet_03v3_nvt} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.ext b/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.ext
new file mode 100644
index 0000000..b06216d
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.ext
@@ -0,0 +1,17 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_100_n50#" 381 0 100 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n158_n50#" 381 0 -158 -50 pdif 0 0 0 0 0 0 0 0 0 0 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3672 284 4600 292 0 0 0 0 0 0 0 0 0 0
+node "a_n100_n147#" 252 0 -100 -147 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 58800 988 0 0 13600 936 17664 952 0 0 0 0 0 0 0 0 0 0
+node "w_n296_n269#" 7948 955.488 -296 -269 nw 0 0 0 0 318496 2260 0 0 62424 3672 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62424 3672 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "w_n296_n269#" "a_n158_n50#" 58.4974
+cap "w_n296_n269#" "a_100_n50#" 58.4974
+cap "a_n100_n147#" "w_n296_n269#" 545.566
+cap "a_n158_n50#" "a_100_n50#" 30.9057
+device msubckt sky130_fd_pr__pfet_01v8 -100 -50 -99 -49 l=200 w=100 "w_n296_n269#" "a_n100_n147#" 400 0 "a_n158_n50#" 100 0 "a_100_n50#" 100 0
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.mag b/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.mag
new file mode 100644
index 0000000..d543e48
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_GCYTE7.mag
@@ -0,0 +1,91 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -296 -269 296 269
+<< pmos >>
+rect -100 -50 100 50
+<< pdiff >>
+rect -158 38 -100 50
+rect -158 -38 -146 38
+rect -112 -38 -100 38
+rect -158 -50 -100 -38
+rect 100 38 158 50
+rect 100 -38 112 38
+rect 146 -38 158 38
+rect 100 -50 158 -38
+<< pdiffc >>
+rect -146 -38 -112 38
+rect 112 -38 146 38
+<< nsubdiff >>
+rect -260 199 -164 233
+rect 164 199 260 233
+rect -260 137 -226 199
+rect 226 137 260 199
+rect -260 -199 -226 -137
+rect 226 -199 260 -137
+rect -260 -233 -164 -199
+rect 164 -233 260 -199
+<< nsubdiffcont >>
+rect -164 199 164 233
+rect -260 -137 -226 137
+rect 226 -137 260 137
+rect -164 -233 164 -199
+<< poly >>
+rect -100 131 100 147
+rect -100 97 -84 131
+rect 84 97 100 131
+rect -100 50 100 97
+rect -100 -97 100 -50
+rect -100 -131 -84 -97
+rect 84 -131 100 -97
+rect -100 -147 100 -131
+<< polycont >>
+rect -84 97 84 131
+rect -84 -131 84 -97
+<< locali >>
+rect -260 199 -164 233
+rect 164 199 260 233
+rect -260 137 -226 199
+rect 226 137 260 199
+rect -100 97 -84 131
+rect 84 97 100 131
+rect -146 38 -112 54
+rect -146 -54 -112 -38
+rect 112 38 146 54
+rect 112 -54 146 -38
+rect -100 -131 -84 -97
+rect 84 -131 100 -97
+rect -260 -199 -226 -137
+rect 226 -199 260 -137
+rect -260 -233 -164 -199
+rect 164 -233 260 -199
+<< viali >>
+rect -84 97 84 131
+rect -146 -38 -112 38
+rect 112 -38 146 38
+rect -84 -131 84 -97
+<< metal1 >>
+rect -96 131 96 137
+rect -96 97 -84 131
+rect 84 97 96 131
+rect -96 91 96 97
+rect -152 38 -106 50
+rect -152 -38 -146 38
+rect -112 -38 -106 38
+rect -152 -50 -106 -38
+rect 106 38 152 50
+rect 106 -38 112 38
+rect 146 -38 152 38
+rect 106 -50 152 -38
+rect -96 -97 96 -91
+rect -96 -131 -84 -97
+rect 84 -131 96 -97
+rect -96 -137 96 -131
+<< properties >>
+string FIXED_BBOX -243 -216 243 216
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 0.5 l 1 m 1 nf 1 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.ext b/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.ext
new file mode 100644
index 0000000..d880f03
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.ext
@@ -0,0 +1,80 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_761_n200#" 1513 0 761 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_603_n200#" 1513 0 603 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_445_n200#" 1513 0 445 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_287_n200#" 1513 0 287 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_129_n200#" 1513 0 129 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n29_n200#" 1513 0 -29 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n187_n200#" 1513 0 -187 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n345_n200#" 1513 0 -345 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n503_n200#" 1513 0 -503 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n661_n200#" 1513 0 -661 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n819_n200#" 1513 0 -819 -200 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_661_n297#" 395 0 661 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_503_n297#" 395 0 503 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_345_n297#" 395 0 345 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_187_n297#" 395 0 187 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_29_n297#" 395 0 29 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n129_n297#" 395 0 -129 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n287_n297#" 395 0 -287 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n445_n297#" 395 0 -445 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n603_n297#" 395 0 -603 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "a_n761_n297#" 395 0 -761 -297 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59400 1388 0 0 6800 536 8464 552 0 0 0 0 0 0 0 0 0 0
+node "w_n957_n419#" 21745 4811.8 -957 -419 nw 0 0 0 0 1603932 5504 0 0 172720 10160 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 172720 10160 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_345_n297#" "a_503_n297#" 141.126
+cap "a_129_n200#" "a_287_n200#" 223.915
+cap "a_n345_n200#" "a_n187_n200#" 223.915
+cap "a_n345_n200#" "w_n957_n419#" 20.6099
+cap "a_n503_n200#" "w_n957_n419#" 20.6099
+cap "a_129_n200#" "w_n957_n419#" 20.6099
+cap "w_n957_n419#" "a_n287_n297#" 205.781
+cap "a_n287_n297#" "a_n129_n297#" 141.126
+cap "a_603_n200#" "w_n957_n419#" 20.6099
+cap "a_187_n297#" "a_345_n297#" 141.126
+cap "w_n957_n419#" "a_n603_n297#" 205.781
+cap "a_n819_n200#" "a_n661_n200#" 223.915
+cap "a_29_n297#" "a_187_n297#" 141.126
+cap "a_287_n200#" "w_n957_n419#" 20.6099
+cap "a_661_n297#" "w_n957_n419#" 271.861
+cap "a_445_n200#" "a_603_n200#" 223.915
+cap "a_n445_n297#" "a_n287_n297#" 141.126
+cap "a_n503_n200#" "a_n661_n200#" 223.915
+cap "a_n187_n200#" "w_n957_n419#" 20.6099
+cap "a_445_n200#" "a_287_n200#" 223.915
+cap "a_n29_n200#" "a_129_n200#" 223.915
+cap "a_n603_n297#" "a_n445_n297#" 141.126
+cap "w_n957_n419#" "a_n129_n297#" 205.781
+cap "a_761_n200#" "a_603_n200#" 223.915
+cap "a_445_n200#" "w_n957_n419#" 20.6099
+cap "a_661_n297#" "a_503_n297#" 141.126
+cap "a_503_n297#" "w_n957_n419#" 205.781
+cap "a_n761_n297#" "a_n603_n297#" 141.126
+cap "w_n957_n419#" "a_n445_n297#" 205.781
+cap "a_n503_n200#" "a_n345_n200#" 223.915
+cap "a_345_n297#" "w_n957_n419#" 205.781
+cap "a_761_n200#" "w_n957_n419#" 163.34
+cap "a_n661_n200#" "w_n957_n419#" 20.6099
+cap "a_29_n297#" "w_n957_n419#" 205.781
+cap "a_n29_n200#" "a_n187_n200#" 223.915
+cap "w_n957_n419#" "a_n761_n297#" 272.372
+cap "a_n29_n200#" "w_n957_n419#" 20.6099
+cap "a_29_n297#" "a_n129_n297#" 141.126
+cap "a_187_n297#" "w_n957_n419#" 205.781
+cap "a_n819_n200#" "w_n957_n419#" 163.34
+device msubckt sky130_fd_pr__pfet_01v8 661 -200 662 -199 l=100 w=400 "w_n957_n419#" "a_661_n297#" 200 0 "a_603_n200#" 400 0 "a_761_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 503 -200 504 -199 l=100 w=400 "w_n957_n419#" "a_503_n297#" 200 0 "a_445_n200#" 400 0 "a_603_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 345 -200 346 -199 l=100 w=400 "w_n957_n419#" "a_345_n297#" 200 0 "a_287_n200#" 400 0 "a_445_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 187 -200 188 -199 l=100 w=400 "w_n957_n419#" "a_187_n297#" 200 0 "a_129_n200#" 400 0 "a_287_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 29 -200 30 -199 l=100 w=400 "w_n957_n419#" "a_29_n297#" 200 0 "a_n29_n200#" 400 0 "a_129_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -129 -200 -128 -199 l=100 w=400 "w_n957_n419#" "a_n129_n297#" 200 0 "a_n187_n200#" 400 0 "a_n29_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -287 -200 -286 -199 l=100 w=400 "w_n957_n419#" "a_n287_n297#" 200 0 "a_n345_n200#" 400 0 "a_n187_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -445 -200 -444 -199 l=100 w=400 "w_n957_n419#" "a_n445_n297#" 200 0 "a_n503_n200#" 400 0 "a_n345_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -603 -200 -602 -199 l=100 w=400 "w_n957_n419#" "a_n603_n297#" 200 0 "a_n661_n200#" 400 0 "a_n503_n200#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -761 -200 -760 -199 l=100 w=400 "w_n957_n419#" "a_n761_n297#" 200 0 "a_n819_n200#" 400 0 "a_n661_n200#" 400 0
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.mag b/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.mag
new file mode 100644
index 0000000..ffdcbd2
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_GYVK57.mag
@@ -0,0 +1,424 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< nwell >>
+rect -957 -419 957 419
+<< pmos >>
+rect -761 -200 -661 200
+rect -603 -200 -503 200
+rect -445 -200 -345 200
+rect -287 -200 -187 200
+rect -129 -200 -29 200
+rect 29 -200 129 200
+rect 187 -200 287 200
+rect 345 -200 445 200
+rect 503 -200 603 200
+rect 661 -200 761 200
+<< pdiff >>
+rect -819 188 -761 200
+rect -819 -188 -807 188
+rect -773 -188 -761 188
+rect -819 -200 -761 -188
+rect -661 188 -603 200
+rect -661 -188 -649 188
+rect -615 -188 -603 188
+rect -661 -200 -603 -188
+rect -503 188 -445 200
+rect -503 -188 -491 188
+rect -457 -188 -445 188
+rect -503 -200 -445 -188
+rect -345 188 -287 200
+rect -345 -188 -333 188
+rect -299 -188 -287 188
+rect -345 -200 -287 -188
+rect -187 188 -129 200
+rect -187 -188 -175 188
+rect -141 -188 -129 188
+rect -187 -200 -129 -188
+rect -29 188 29 200
+rect -29 -188 -17 188
+rect 17 -188 29 188
+rect -29 -200 29 -188
+rect 129 188 187 200
+rect 129 -188 141 188
+rect 175 -188 187 188
+rect 129 -200 187 -188
+rect 287 188 345 200
+rect 287 -188 299 188
+rect 333 -188 345 188
+rect 287 -200 345 -188
+rect 445 188 503 200
+rect 445 -188 457 188
+rect 491 -188 503 188
+rect 445 -200 503 -188
+rect 603 188 661 200
+rect 603 -188 615 188
+rect 649 -188 661 188
+rect 603 -200 661 -188
+rect 761 188 819 200
+rect 761 -188 773 188
+rect 807 -188 819 188
+rect 761 -200 819 -188
+<< pdiffc >>
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+<< nsubdiff >>
+rect -921 349 -825 383
+rect 825 349 921 383
+rect -921 287 -887 349
+rect 887 287 921 349
+rect -921 -349 -887 -287
+rect 887 -349 921 -287
+rect -921 -383 -825 -349
+rect 825 -383 921 -349
+<< nsubdiffcont >>
+rect -825 349 825 383
+rect -921 -287 -887 287
+rect 887 -287 921 287
+rect -825 -383 825 -349
+<< poly >>
+rect -761 281 -661 297
+rect -761 247 -745 281
+rect -677 247 -661 281
+rect -761 200 -661 247
+rect -603 281 -503 297
+rect -603 247 -587 281
+rect -519 247 -503 281
+rect -603 200 -503 247
+rect -445 281 -345 297
+rect -445 247 -429 281
+rect -361 247 -345 281
+rect -445 200 -345 247
+rect -287 281 -187 297
+rect -287 247 -271 281
+rect -203 247 -187 281
+rect -287 200 -187 247
+rect -129 281 -29 297
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect -129 200 -29 247
+rect 29 281 129 297
+rect 29 247 45 281
+rect 113 247 129 281
+rect 29 200 129 247
+rect 187 281 287 297
+rect 187 247 203 281
+rect 271 247 287 281
+rect 187 200 287 247
+rect 345 281 445 297
+rect 345 247 361 281
+rect 429 247 445 281
+rect 345 200 445 247
+rect 503 281 603 297
+rect 503 247 519 281
+rect 587 247 603 281
+rect 503 200 603 247
+rect 661 281 761 297
+rect 661 247 677 281
+rect 745 247 761 281
+rect 661 200 761 247
+rect -761 -247 -661 -200
+rect -761 -281 -745 -247
+rect -677 -281 -661 -247
+rect -761 -297 -661 -281
+rect -603 -247 -503 -200
+rect -603 -281 -587 -247
+rect -519 -281 -503 -247
+rect -603 -297 -503 -281
+rect -445 -247 -345 -200
+rect -445 -281 -429 -247
+rect -361 -281 -345 -247
+rect -445 -297 -345 -281
+rect -287 -247 -187 -200
+rect -287 -281 -271 -247
+rect -203 -281 -187 -247
+rect -287 -297 -187 -281
+rect -129 -247 -29 -200
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect -129 -297 -29 -281
+rect 29 -247 129 -200
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect 29 -297 129 -281
+rect 187 -247 287 -200
+rect 187 -281 203 -247
+rect 271 -281 287 -247
+rect 187 -297 287 -281
+rect 345 -247 445 -200
+rect 345 -281 361 -247
+rect 429 -281 445 -247
+rect 345 -297 445 -281
+rect 503 -247 603 -200
+rect 503 -281 519 -247
+rect 587 -281 603 -247
+rect 503 -297 603 -281
+rect 661 -247 761 -200
+rect 661 -281 677 -247
+rect 745 -281 761 -247
+rect 661 -297 761 -281
+<< polycont >>
+rect -745 247 -677 281
+rect -587 247 -519 281
+rect -429 247 -361 281
+rect -271 247 -203 281
+rect -113 247 -45 281
+rect 45 247 113 281
+rect 203 247 271 281
+rect 361 247 429 281
+rect 519 247 587 281
+rect 677 247 745 281
+rect -745 -281 -677 -247
+rect -587 -281 -519 -247
+rect -429 -281 -361 -247
+rect -271 -281 -203 -247
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+rect 203 -281 271 -247
+rect 361 -281 429 -247
+rect 519 -281 587 -247
+rect 677 -281 745 -247
+<< locali >>
+rect -921 349 -825 383
+rect 825 349 921 383
+rect -921 287 -887 349
+rect 887 287 921 349
+rect -761 247 -745 281
+rect -677 247 -661 281
+rect -603 247 -587 281
+rect -519 247 -503 281
+rect -445 247 -429 281
+rect -361 247 -345 281
+rect -287 247 -271 281
+rect -203 247 -187 281
+rect -129 247 -113 281
+rect -45 247 -29 281
+rect 29 247 45 281
+rect 113 247 129 281
+rect 187 247 203 281
+rect 271 247 287 281
+rect 345 247 361 281
+rect 429 247 445 281
+rect 503 247 519 281
+rect 587 247 603 281
+rect 661 247 677 281
+rect 745 247 761 281
+rect -807 188 -773 204
+rect -807 -204 -773 -188
+rect -649 188 -615 204
+rect -649 -204 -615 -188
+rect -491 188 -457 204
+rect -491 -204 -457 -188
+rect -333 188 -299 204
+rect -333 -204 -299 -188
+rect -175 188 -141 204
+rect -175 -204 -141 -188
+rect -17 188 17 204
+rect -17 -204 17 -188
+rect 141 188 175 204
+rect 141 -204 175 -188
+rect 299 188 333 204
+rect 299 -204 333 -188
+rect 457 188 491 204
+rect 457 -204 491 -188
+rect 615 188 649 204
+rect 615 -204 649 -188
+rect 773 188 807 204
+rect 773 -204 807 -188
+rect -761 -281 -745 -247
+rect -677 -281 -661 -247
+rect -603 -281 -587 -247
+rect -519 -281 -503 -247
+rect -445 -281 -429 -247
+rect -361 -281 -345 -247
+rect -287 -281 -271 -247
+rect -203 -281 -187 -247
+rect -129 -281 -113 -247
+rect -45 -281 -29 -247
+rect 29 -281 45 -247
+rect 113 -281 129 -247
+rect 187 -281 203 -247
+rect 271 -281 287 -247
+rect 345 -281 361 -247
+rect 429 -281 445 -247
+rect 503 -281 519 -247
+rect 587 -281 603 -247
+rect 661 -281 677 -247
+rect 745 -281 761 -247
+rect -921 -349 -887 -287
+rect 887 -349 921 -287
+rect -921 -383 -825 -349
+rect 825 -383 921 -349
+<< viali >>
+rect -745 247 -677 281
+rect -587 247 -519 281
+rect -429 247 -361 281
+rect -271 247 -203 281
+rect -113 247 -45 281
+rect 45 247 113 281
+rect 203 247 271 281
+rect 361 247 429 281
+rect 519 247 587 281
+rect 677 247 745 281
+rect -807 -188 -773 188
+rect -649 -188 -615 188
+rect -491 -188 -457 188
+rect -333 -188 -299 188
+rect -175 -188 -141 188
+rect -17 -188 17 188
+rect 141 -188 175 188
+rect 299 -188 333 188
+rect 457 -188 491 188
+rect 615 -188 649 188
+rect 773 -188 807 188
+rect -745 -281 -677 -247
+rect -587 -281 -519 -247
+rect -429 -281 -361 -247
+rect -271 -281 -203 -247
+rect -113 -281 -45 -247
+rect 45 -281 113 -247
+rect 203 -281 271 -247
+rect 361 -281 429 -247
+rect 519 -281 587 -247
+rect 677 -281 745 -247
+<< metal1 >>
+rect -757 281 -665 287
+rect -757 247 -745 281
+rect -677 247 -665 281
+rect -757 241 -665 247
+rect -599 281 -507 287
+rect -599 247 -587 281
+rect -519 247 -507 281
+rect -599 241 -507 247
+rect -441 281 -349 287
+rect -441 247 -429 281
+rect -361 247 -349 281
+rect -441 241 -349 247
+rect -283 281 -191 287
+rect -283 247 -271 281
+rect -203 247 -191 281
+rect -283 241 -191 247
+rect -125 281 -33 287
+rect -125 247 -113 281
+rect -45 247 -33 281
+rect -125 241 -33 247
+rect 33 281 125 287
+rect 33 247 45 281
+rect 113 247 125 281
+rect 33 241 125 247
+rect 191 281 283 287
+rect 191 247 203 281
+rect 271 247 283 281
+rect 191 241 283 247
+rect 349 281 441 287
+rect 349 247 361 281
+rect 429 247 441 281
+rect 349 241 441 247
+rect 507 281 599 287
+rect 507 247 519 281
+rect 587 247 599 281
+rect 507 241 599 247
+rect 665 281 757 287
+rect 665 247 677 281
+rect 745 247 757 281
+rect 665 241 757 247
+rect -813 188 -767 200
+rect -813 -188 -807 188
+rect -773 -188 -767 188
+rect -813 -200 -767 -188
+rect -655 188 -609 200
+rect -655 -188 -649 188
+rect -615 -188 -609 188
+rect -655 -200 -609 -188
+rect -497 188 -451 200
+rect -497 -188 -491 188
+rect -457 -188 -451 188
+rect -497 -200 -451 -188
+rect -339 188 -293 200
+rect -339 -188 -333 188
+rect -299 -188 -293 188
+rect -339 -200 -293 -188
+rect -181 188 -135 200
+rect -181 -188 -175 188
+rect -141 -188 -135 188
+rect -181 -200 -135 -188
+rect -23 188 23 200
+rect -23 -188 -17 188
+rect 17 -188 23 188
+rect -23 -200 23 -188
+rect 135 188 181 200
+rect 135 -188 141 188
+rect 175 -188 181 188
+rect 135 -200 181 -188
+rect 293 188 339 200
+rect 293 -188 299 188
+rect 333 -188 339 188
+rect 293 -200 339 -188
+rect 451 188 497 200
+rect 451 -188 457 188
+rect 491 -188 497 188
+rect 451 -200 497 -188
+rect 609 188 655 200
+rect 609 -188 615 188
+rect 649 -188 655 188
+rect 609 -200 655 -188
+rect 767 188 813 200
+rect 767 -188 773 188
+rect 807 -188 813 188
+rect 767 -200 813 -188
+rect -757 -247 -665 -241
+rect -757 -281 -745 -247
+rect -677 -281 -665 -247
+rect -757 -287 -665 -281
+rect -599 -247 -507 -241
+rect -599 -281 -587 -247
+rect -519 -281 -507 -247
+rect -599 -287 -507 -281
+rect -441 -247 -349 -241
+rect -441 -281 -429 -247
+rect -361 -281 -349 -247
+rect -441 -287 -349 -281
+rect -283 -247 -191 -241
+rect -283 -281 -271 -247
+rect -203 -281 -191 -247
+rect -283 -287 -191 -281
+rect -125 -247 -33 -241
+rect -125 -281 -113 -247
+rect -45 -281 -33 -247
+rect -125 -287 -33 -281
+rect 33 -247 125 -241
+rect 33 -281 45 -247
+rect 113 -281 125 -247
+rect 33 -287 125 -281
+rect 191 -247 283 -241
+rect 191 -281 203 -247
+rect 271 -281 283 -247
+rect 191 -287 283 -281
+rect 349 -247 441 -241
+rect 349 -281 361 -247
+rect 429 -281 441 -247
+rect 349 -287 441 -281
+rect 507 -247 599 -241
+rect 507 -281 519 -247
+rect 587 -281 599 -247
+rect 507 -287 599 -281
+rect 665 -247 757 -241
+rect 665 -281 677 -247
+rect 745 -281 757 -247
+rect 665 -287 757 -281
+<< properties >>
+string FIXED_BBOX -904 -366 904 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.5 m 1 nf 10 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_NZHYL5.mag b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYL5.mag
new file mode 100644
index 0000000..879be7c
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYL5.mag
@@ -0,0 +1,505 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1645787783
+<< error_p >>
+rect -617 281 -559 287
+rect -421 281 -363 287
+rect -225 281 -167 287
+rect -29 281 29 287
+rect 167 281 225 287
+rect 363 281 421 287
+rect 559 281 617 287
+rect -617 247 -605 281
+rect -421 247 -409 281
+rect -225 247 -213 281
+rect -29 247 -17 281
+rect 167 247 179 281
+rect 363 247 375 281
+rect 559 247 571 281
+rect -617 241 -559 247
+rect -421 241 -363 247
+rect -225 241 -167 247
+rect -29 241 29 247
+rect 167 241 225 247
+rect 363 241 421 247
+rect 559 241 617 247
+rect -715 -247 -657 -241
+rect -519 -247 -461 -241
+rect -323 -247 -265 -241
+rect -127 -247 -69 -241
+rect 69 -247 127 -241
+rect 265 -247 323 -241
+rect 461 -247 519 -241
+rect 657 -247 715 -241
+rect -715 -281 -703 -247
+rect -519 -281 -507 -247
+rect -323 -281 -311 -247
+rect -127 -281 -115 -247
+rect 69 -281 81 -247
+rect 265 -281 277 -247
+rect 461 -281 473 -247
+rect 657 -281 669 -247
+rect -715 -287 -657 -281
+rect -519 -287 -461 -281
+rect -323 -287 -265 -281
+rect -127 -287 -69 -281
+rect 69 -287 127 -281
+rect 265 -287 323 -281
+rect 461 -287 519 -281
+rect 657 -287 715 -281
+<< nwell >>
+rect -902 -419 902 419
+<< pmos >>
+rect -706 -200 -666 200
+rect -608 -200 -568 200
+rect -510 -200 -470 200
+rect -412 -200 -372 200
+rect -314 -200 -274 200
+rect -216 -200 -176 200
+rect -118 -200 -78 200
+rect -20 -200 20 200
+rect 78 -200 118 200
+rect 176 -200 216 200
+rect 274 -200 314 200
+rect 372 -200 412 200
+rect 470 -200 510 200
+rect 568 -200 608 200
+rect 666 -200 706 200
+<< pdiff >>
+rect -764 188 -706 200
+rect -764 -188 -752 188
+rect -718 -188 -706 188
+rect -764 -200 -706 -188
+rect -666 188 -608 200
+rect -666 -188 -654 188
+rect -620 -188 -608 188
+rect -666 -200 -608 -188
+rect -568 188 -510 200
+rect -568 -188 -556 188
+rect -522 -188 -510 188
+rect -568 -200 -510 -188
+rect -470 188 -412 200
+rect -470 -188 -458 188
+rect -424 -188 -412 188
+rect -470 -200 -412 -188
+rect -372 188 -314 200
+rect -372 -188 -360 188
+rect -326 -188 -314 188
+rect -372 -200 -314 -188
+rect -274 188 -216 200
+rect -274 -188 -262 188
+rect -228 -188 -216 188
+rect -274 -200 -216 -188
+rect -176 188 -118 200
+rect -176 -188 -164 188
+rect -130 -188 -118 188
+rect -176 -200 -118 -188
+rect -78 188 -20 200
+rect -78 -188 -66 188
+rect -32 -188 -20 188
+rect -78 -200 -20 -188
+rect 20 188 78 200
+rect 20 -188 32 188
+rect 66 -188 78 188
+rect 20 -200 78 -188
+rect 118 188 176 200
+rect 118 -188 130 188
+rect 164 -188 176 188
+rect 118 -200 176 -188
+rect 216 188 274 200
+rect 216 -188 228 188
+rect 262 -188 274 188
+rect 216 -200 274 -188
+rect 314 188 372 200
+rect 314 -188 326 188
+rect 360 -188 372 188
+rect 314 -200 372 -188
+rect 412 188 470 200
+rect 412 -188 424 188
+rect 458 -188 470 188
+rect 412 -200 470 -188
+rect 510 188 568 200
+rect 510 -188 522 188
+rect 556 -188 568 188
+rect 510 -200 568 -188
+rect 608 188 666 200
+rect 608 -188 620 188
+rect 654 -188 666 188
+rect 608 -200 666 -188
+rect 706 188 764 200
+rect 706 -188 718 188
+rect 752 -188 764 188
+rect 706 -200 764 -188
+<< pdiffc >>
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+<< nsubdiff >>
+rect -866 349 -770 383
+rect 770 349 866 383
+rect -866 287 -832 349
+rect 832 287 866 349
+rect -866 -349 -832 -287
+rect 832 -349 866 -287
+rect -866 -383 -770 -349
+rect 770 -383 866 -349
+<< nsubdiffcont >>
+rect -770 349 770 383
+rect -866 -287 -832 287
+rect 832 -287 866 287
+rect -770 -383 770 -349
+<< poly >>
+rect -621 281 -555 297
+rect -621 247 -605 281
+rect -571 247 -555 281
+rect -621 231 -555 247
+rect -425 281 -359 297
+rect -425 247 -409 281
+rect -375 247 -359 281
+rect -425 231 -359 247
+rect -229 281 -163 297
+rect -229 247 -213 281
+rect -179 247 -163 281
+rect -229 231 -163 247
+rect -33 281 33 297
+rect -33 247 -17 281
+rect 17 247 33 281
+rect -33 231 33 247
+rect 163 281 229 297
+rect 163 247 179 281
+rect 213 247 229 281
+rect 163 231 229 247
+rect 359 281 425 297
+rect 359 247 375 281
+rect 409 247 425 281
+rect 359 231 425 247
+rect 555 281 621 297
+rect 555 247 571 281
+rect 605 247 621 281
+rect 555 231 621 247
+rect -706 200 -666 226
+rect -608 200 -568 231
+rect -510 200 -470 226
+rect -412 200 -372 231
+rect -314 200 -274 226
+rect -216 200 -176 231
+rect -118 200 -78 226
+rect -20 200 20 231
+rect 78 200 118 226
+rect 176 200 216 231
+rect 274 200 314 226
+rect 372 200 412 231
+rect 470 200 510 226
+rect 568 200 608 231
+rect 666 200 706 226
+rect -706 -231 -666 -200
+rect -608 -226 -568 -200
+rect -510 -231 -470 -200
+rect -412 -226 -372 -200
+rect -314 -231 -274 -200
+rect -216 -226 -176 -200
+rect -118 -231 -78 -200
+rect -20 -226 20 -200
+rect 78 -231 118 -200
+rect 176 -226 216 -200
+rect 274 -231 314 -200
+rect 372 -226 412 -200
+rect 470 -231 510 -200
+rect 568 -226 608 -200
+rect 666 -231 706 -200
+rect -719 -247 -653 -231
+rect -719 -281 -703 -247
+rect -669 -281 -653 -247
+rect -719 -297 -653 -281
+rect -523 -247 -457 -231
+rect -523 -281 -507 -247
+rect -473 -281 -457 -247
+rect -523 -297 -457 -281
+rect -327 -247 -261 -231
+rect -327 -281 -311 -247
+rect -277 -281 -261 -247
+rect -327 -297 -261 -281
+rect -131 -247 -65 -231
+rect -131 -281 -115 -247
+rect -81 -281 -65 -247
+rect -131 -297 -65 -281
+rect 65 -247 131 -231
+rect 65 -281 81 -247
+rect 115 -281 131 -247
+rect 65 -297 131 -281
+rect 261 -247 327 -231
+rect 261 -281 277 -247
+rect 311 -281 327 -247
+rect 261 -297 327 -281
+rect 457 -247 523 -231
+rect 457 -281 473 -247
+rect 507 -281 523 -247
+rect 457 -297 523 -281
+rect 653 -247 719 -231
+rect 653 -281 669 -247
+rect 703 -281 719 -247
+rect 653 -297 719 -281
+<< polycont >>
+rect -605 247 -571 281
+rect -409 247 -375 281
+rect -213 247 -179 281
+rect -17 247 17 281
+rect 179 247 213 281
+rect 375 247 409 281
+rect 571 247 605 281
+rect -703 -281 -669 -247
+rect -507 -281 -473 -247
+rect -311 -281 -277 -247
+rect -115 -281 -81 -247
+rect 81 -281 115 -247
+rect 277 -281 311 -247
+rect 473 -281 507 -247
+rect 669 -281 703 -247
+<< locali >>
+rect -866 349 -770 383
+rect 770 349 866 383
+rect -866 287 -832 349
+rect 832 287 866 349
+rect -621 247 -605 281
+rect -571 247 -555 281
+rect -425 247 -409 281
+rect -375 247 -359 281
+rect -229 247 -213 281
+rect -179 247 -163 281
+rect -33 247 -17 281
+rect 17 247 33 281
+rect 163 247 179 281
+rect 213 247 229 281
+rect 359 247 375 281
+rect 409 247 425 281
+rect 555 247 571 281
+rect 605 247 621 281
+rect -752 188 -718 204
+rect -752 -204 -718 -188
+rect -654 188 -620 204
+rect -654 -204 -620 -188
+rect -556 188 -522 204
+rect -556 -204 -522 -188
+rect -458 188 -424 204
+rect -458 -204 -424 -188
+rect -360 188 -326 204
+rect -360 -204 -326 -188
+rect -262 188 -228 204
+rect -262 -204 -228 -188
+rect -164 188 -130 204
+rect -164 -204 -130 -188
+rect -66 188 -32 204
+rect -66 -204 -32 -188
+rect 32 188 66 204
+rect 32 -204 66 -188
+rect 130 188 164 204
+rect 130 -204 164 -188
+rect 228 188 262 204
+rect 228 -204 262 -188
+rect 326 188 360 204
+rect 326 -204 360 -188
+rect 424 188 458 204
+rect 424 -204 458 -188
+rect 522 188 556 204
+rect 522 -204 556 -188
+rect 620 188 654 204
+rect 620 -204 654 -188
+rect 718 188 752 204
+rect 718 -204 752 -188
+rect -719 -281 -703 -247
+rect -669 -281 -653 -247
+rect -523 -281 -507 -247
+rect -473 -281 -457 -247
+rect -327 -281 -311 -247
+rect -277 -281 -261 -247
+rect -131 -281 -115 -247
+rect -81 -281 -65 -247
+rect 65 -281 81 -247
+rect 115 -281 131 -247
+rect 261 -281 277 -247
+rect 311 -281 327 -247
+rect 457 -281 473 -247
+rect 507 -281 523 -247
+rect 653 -281 669 -247
+rect 703 -281 719 -247
+rect -866 -349 -832 -287
+rect 832 -349 866 -287
+rect -866 -383 -770 -349
+rect 770 -383 866 -349
+<< viali >>
+rect -605 247 -571 281
+rect -409 247 -375 281
+rect -213 247 -179 281
+rect -17 247 17 281
+rect 179 247 213 281
+rect 375 247 409 281
+rect 571 247 605 281
+rect -752 -188 -718 188
+rect -654 -188 -620 188
+rect -556 -188 -522 188
+rect -458 -188 -424 188
+rect -360 -188 -326 188
+rect -262 -188 -228 188
+rect -164 -188 -130 188
+rect -66 -188 -32 188
+rect 32 -188 66 188
+rect 130 -188 164 188
+rect 228 -188 262 188
+rect 326 -188 360 188
+rect 424 -188 458 188
+rect 522 -188 556 188
+rect 620 -188 654 188
+rect 718 -188 752 188
+rect -703 -281 -669 -247
+rect -507 -281 -473 -247
+rect -311 -281 -277 -247
+rect -115 -281 -81 -247
+rect 81 -281 115 -247
+rect 277 -281 311 -247
+rect 473 -281 507 -247
+rect 669 -281 703 -247
+<< metal1 >>
+rect -617 281 -559 287
+rect -617 247 -605 281
+rect -571 247 -559 281
+rect -617 241 -559 247
+rect -421 281 -363 287
+rect -421 247 -409 281
+rect -375 247 -363 281
+rect -421 241 -363 247
+rect -225 281 -167 287
+rect -225 247 -213 281
+rect -179 247 -167 281
+rect -225 241 -167 247
+rect -29 281 29 287
+rect -29 247 -17 281
+rect 17 247 29 281
+rect -29 241 29 247
+rect 167 281 225 287
+rect 167 247 179 281
+rect 213 247 225 281
+rect 167 241 225 247
+rect 363 281 421 287
+rect 363 247 375 281
+rect 409 247 421 281
+rect 363 241 421 247
+rect 559 281 617 287
+rect 559 247 571 281
+rect 605 247 617 281
+rect 559 241 617 247
+rect -758 188 -712 200
+rect -758 -188 -752 188
+rect -718 -188 -712 188
+rect -758 -200 -712 -188
+rect -660 188 -614 200
+rect -660 -188 -654 188
+rect -620 -188 -614 188
+rect -660 -200 -614 -188
+rect -562 188 -516 200
+rect -562 -188 -556 188
+rect -522 -188 -516 188
+rect -562 -200 -516 -188
+rect -464 188 -418 200
+rect -464 -188 -458 188
+rect -424 -188 -418 188
+rect -464 -200 -418 -188
+rect -366 188 -320 200
+rect -366 -188 -360 188
+rect -326 -188 -320 188
+rect -366 -200 -320 -188
+rect -268 188 -222 200
+rect -268 -188 -262 188
+rect -228 -188 -222 188
+rect -268 -200 -222 -188
+rect -170 188 -124 200
+rect -170 -188 -164 188
+rect -130 -188 -124 188
+rect -170 -200 -124 -188
+rect -72 188 -26 200
+rect -72 -188 -66 188
+rect -32 -188 -26 188
+rect -72 -200 -26 -188
+rect 26 188 72 200
+rect 26 -188 32 188
+rect 66 -188 72 188
+rect 26 -200 72 -188
+rect 124 188 170 200
+rect 124 -188 130 188
+rect 164 -188 170 188
+rect 124 -200 170 -188
+rect 222 188 268 200
+rect 222 -188 228 188
+rect 262 -188 268 188
+rect 222 -200 268 -188
+rect 320 188 366 200
+rect 320 -188 326 188
+rect 360 -188 366 188
+rect 320 -200 366 -188
+rect 418 188 464 200
+rect 418 -188 424 188
+rect 458 -188 464 188
+rect 418 -200 464 -188
+rect 516 188 562 200
+rect 516 -188 522 188
+rect 556 -188 562 188
+rect 516 -200 562 -188
+rect 614 188 660 200
+rect 614 -188 620 188
+rect 654 -188 660 188
+rect 614 -200 660 -188
+rect 712 188 758 200
+rect 712 -188 718 188
+rect 752 -188 758 188
+rect 712 -200 758 -188
+rect -715 -247 -657 -241
+rect -715 -281 -703 -247
+rect -669 -281 -657 -247
+rect -715 -287 -657 -281
+rect -519 -247 -461 -241
+rect -519 -281 -507 -247
+rect -473 -281 -461 -247
+rect -519 -287 -461 -281
+rect -323 -247 -265 -241
+rect -323 -281 -311 -247
+rect -277 -281 -265 -247
+rect -323 -287 -265 -281
+rect -127 -247 -69 -241
+rect -127 -281 -115 -247
+rect -81 -281 -69 -247
+rect -127 -287 -69 -281
+rect 69 -247 127 -241
+rect 69 -281 81 -247
+rect 115 -281 127 -247
+rect 69 -287 127 -281
+rect 265 -247 323 -241
+rect 265 -281 277 -247
+rect 311 -281 323 -247
+rect 265 -287 323 -281
+rect 461 -247 519 -241
+rect 461 -281 473 -247
+rect 507 -281 519 -247
+rect 461 -287 519 -281
+rect 657 -247 715 -241
+rect 657 -281 669 -247
+rect 703 -281 715 -247
+rect 657 -287 715 -281
+<< properties >>
+string FIXED_BBOX -849 -366 849 366
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 1 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.ext b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.ext
new file mode 100644
index 0000000..51b8fbb
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.ext
@@ -0,0 +1,352 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+node "a_706_n518#" 1513 0 706 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_n518#" 1513 0 608 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_n518#" 1513 0 510 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_n518#" 1513 0 412 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_n518#" 1513 0 314 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_n518#" 1513 0 216 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_n518#" 1513 0 118 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_n518#" 1513 0 20 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_n518#" 1513 0 -78 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_n518#" 1513 0 -176 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_n518#" 1513 0 -274 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_n518#" 1513 0 -372 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_n518#" 1513 0 -470 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_n518#" 1513 0 -568 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_n518#" 1513 0 -666 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_n518#" 1513 0 -764 -518 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_653_n615#" 664 0 653 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_n615#" 664 0 457 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_n615#" 664 0 261 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_n615#" 664 0 65 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_n615#" 664 0 -131 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_n615#" 664 0 -327 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_n615#" 664 0 -523 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_n615#" 664 0 -719 -615 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_555_n87#" 664 0 555 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_n87#" 664 0 359 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_n87#" 664 0 163 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_n87#" 664 0 -33 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_n87#" 664 0 -229 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_n87#" 664 0 -425 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_n87#" 664 0 -621 -87 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_706_118#" 1513 0 706 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_608_118#" 1513 0 608 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_510_118#" 1513 0 510 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_412_118#" 1513 0 412 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_314_118#" 1513 0 314 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_216_118#" 1513 0 216 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_118_118#" 1513 0 118 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_20_118#" 1513 0 20 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n78_118#" 1513 0 -78 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n176_118#" 1513 0 -176 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n274_118#" 1513 0 -274 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n372_118#" 1513 0 -372 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n470_118#" 1513 0 -470 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n568_118#" 1513 0 -568 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n666_118#" 1513 0 -666 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_n764_118#" 1513 0 -764 118 pdif 0 0 0 0 0 0 0 0 0 0 23200 916 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13872 884 18400 892 0 0 0 0 0 0 0 0 0 0
+node "a_555_21#" 664 0 555 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_359_21#" 664 0 359 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_163_21#" 664 0 163 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n33_21#" 664 0 -33 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n229_21#" 664 0 -229 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n425_21#" 664 0 -425 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n621_21#" 664 0 -621 21 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_653_549#" 664 0 653 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_457_549#" 664 0 457 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_261_549#" 664 0 261 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_65_549#" 664 0 65 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n131_549#" 664 0 -131 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n327_549#" 664 0 -327 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n523_549#" 664 0 -523 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "a_n719_549#" 664 0 -719 549 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 22636 1178 0 0 2244 200 2668 208 0 0 0 0 0 0 0 0 0 0
+node "w_n902_n737#" 24847 7977.29 -902 -737 nw 0 0 0 0 2659096 6556 0 0 208488 12264 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 208488 12264 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_261_n615#" "a_314_n518#" 3.35116
+cap "a_n719_549#" "a_n719_n615#" 7.24536
+cap "w_n902_n737#" "a_n327_n615#" 85.4115
+cap "a_n131_n615#" "a_n176_n518#" 3.35116
+cap "a_n131_549#" "a_n176_n518#" 0.0412371
+cap "a_457_n615#" "a_412_n518#" 3.35116
+cap "a_n470_n518#" "a_n523_n615#" 3.35116
+cap "w_n902_n737#" "a_n274_n518#" 12.1448
+cap "a_20_118#" "a_65_549#" 3.35116
+cap "a_n425_21#" "a_n229_21#" 28.7987
+cap "w_n902_n737#" "a_608_n518#" 12.1448
+cap "a_261_549#" "a_163_21#" 15.2414
+cap "a_314_n518#" "a_216_n518#" 462.346
+cap "a_n274_118#" "a_n327_549#" 3.35116
+cap "a_n372_n518#" "a_n327_549#" 0.0412371
+cap "a_457_549#" "a_653_549#" 28.7987
+cap "w_n902_n737#" "a_706_118#" 155.172
+cap "a_457_n615#" "a_653_n615#" 28.7987
+cap "a_n131_549#" "a_n229_21#" 15.2414
+cap "w_n902_n737#" "a_20_n518#" 12.1448
+cap "a_n372_118#" "a_n425_n87#" 0.18543
+cap "a_n425_n87#" "a_n523_n615#" 15.2414
+cap "a_118_118#" "a_216_118#" 462.346
+cap "w_n902_n737#" "a_314_118#" 12.3457
+cap "w_n902_n737#" "a_n176_118#" 12.424
+cap "a_510_n518#" "a_555_n87#" 3.35116
+cap "a_n470_118#" "a_n470_n518#" 11.3678
+cap "a_65_n615#" "a_163_n87#" 15.2414
+cap "w_n902_n737#" "a_261_n615#" 85.4115
+cap "w_n902_n737#" "a_118_n518#" 12.1448
+cap "a_20_n518#" "a_118_n518#" 462.346
+cap "a_457_549#" "a_412_118#" 3.35116
+cap "a_n372_n518#" "a_n327_n615#" 3.35116
+cap "a_510_n518#" "a_510_118#" 11.3678
+cap "a_n719_n615#" "a_n764_118#" 0.0412371
+cap "a_n131_549#" "a_n78_118#" 3.35116
+cap "a_n78_n518#" "a_n176_n518#" 462.346
+cap "a_118_118#" "a_163_21#" 3.35116
+cap "a_n372_n518#" "a_n274_n518#" 462.346
+cap "a_n274_118#" "a_n274_n518#" 11.3678
+cap "w_n902_n737#" "a_216_n518#" 12.1448
+cap "a_706_118#" "a_653_549#" 3.35116
+cap "a_n131_549#" "a_n131_n615#" 7.24536
+cap "a_457_549#" "a_555_21#" 15.2414
+cap "w_n902_n737#" "a_653_549#" 124.108
+cap "a_n568_n518#" "a_n523_n615#" 3.35116
+cap "a_608_118#" "a_510_118#" 462.346
+cap "w_n902_n737#" "a_n274_118#" 12.3457
+cap "w_n902_n737#" "a_n372_n518#" 12.1301
+cap "a_n523_549#" "a_n523_n615#" 7.24536
+cap "a_261_n615#" "a_216_n518#" 3.35116
+cap "a_216_n518#" "a_118_n518#" 462.346
+cap "w_n902_n737#" "a_n764_n518#" 155.064
+cap "a_n274_118#" "a_n176_118#" 462.346
+cap "a_653_n615#" "a_706_n518#" 3.35116
+cap "w_n902_n737#" "a_n33_n87#" 52.9163
+cap "w_n902_n737#" "a_65_549#" 85.4115
+cap "a_20_n518#" "a_n33_n87#" 3.35116
+cap "a_65_n615#" "a_n131_n615#" 28.7987
+cap "a_457_n615#" "a_555_n87#" 15.2414
+cap "w_n902_n737#" "a_412_118#" 12.3465
+cap "a_n621_n87#" "a_n523_n615#" 15.2414
+cap "w_n902_n737#" "a_n470_n518#" 12.1448
+cap "a_412_118#" "a_314_118#" 462.346
+cap "a_n719_n615#" "a_n523_n615#" 28.7987
+cap "a_n327_n615#" "a_n425_n87#" 15.2414
+cap "a_n470_118#" "a_n523_549#" 3.35116
+cap "a_n78_118#" "a_n78_n518#" 11.3678
+cap "w_n902_n737#" "a_555_21#" 75.0114
+cap "w_n902_n737#" "a_n621_21#" 75.2654
+cap "a_n523_549#" "a_n327_549#" 28.7987
+cap "a_n78_n518#" "a_n131_n615#" 3.35116
+cap "a_n666_118#" "a_n666_n518#" 11.3678
+cap "a_261_549#" "a_359_21#" 15.2414
+cap "a_n33_21#" "a_20_118#" 3.35116
+cap "a_n719_549#" "a_n764_118#" 3.35116
+cap "w_n902_n737#" "a_n425_n87#" 52.9163
+cap "a_n666_118#" "a_n568_118#" 462.346
+cap "a_653_n615#" "a_555_n87#" 15.2414
+cap "a_n719_549#" "a_n666_118#" 3.35116
+cap "w_n902_n737#" "a_216_118#" 12.3465
+cap "a_653_549#" "a_555_21#" 15.2414
+cap "a_n372_n518#" "a_n470_n518#" 462.346
+cap "a_510_n518#" "a_608_n518#" 462.346
+cap "a_n425_21#" "a_n372_118#" 3.35116
+cap "a_314_118#" "a_216_118#" 462.346
+cap "w_n902_n737#" "a_510_n518#" 12.1448
+cap "a_n568_118#" "a_n523_n615#" 0.0412371
+cap "a_n327_549#" "a_n229_21#" 15.2414
+cap "w_n902_n737#" "a_n568_n518#" 12.1301
+cap "a_457_549#" "a_457_n615#" 7.24536
+cap "a_359_n87#" "a_457_n615#" 15.2414
+cap "a_n229_n87#" "a_n327_n615#" 15.2414
+cap "a_359_n87#" "a_163_n87#" 28.7987
+cap "w_n902_n737#" "a_n523_549#" 85.4115
+cap "a_n229_n87#" "a_n274_n518#" 3.35116
+cap "a_n372_n518#" "a_n425_n87#" 3.35116
+cap "a_608_118#" "a_608_n518#" 11.3678
+cap "w_n902_n737#" "a_163_21#" 53.1228
+cap "a_n78_118#" "a_20_118#" 462.346
+cap "a_608_118#" "a_706_118#" 462.346
+cap "a_216_n518#" "a_216_118#" 11.3678
+cap "a_n470_118#" "a_n425_21#" 3.35116
+cap "a_n274_n518#" "a_n176_n518#" 462.346
+cap "w_n902_n737#" "a_608_118#" 12.3465
+cap "a_n425_21#" "a_n327_549#" 15.2414
+cap "w_n902_n737#" "a_n229_n87#" 52.9163
+cap "w_n902_n737#" "a_n621_n87#" 75.0588
+cap "w_n902_n737#" "a_n33_21#" 53.1228
+cap "a_n470_118#" "a_n568_118#" 462.346
+cap "w_n902_n737#" "a_n719_n615#" 124.362
+cap "a_n425_n87#" "a_n470_n518#" 3.35116
+cap "a_n176_118#" "a_n229_n87#" 0.18543
+cap "a_n666_118#" "a_n764_118#" 462.346
+cap "a_n131_549#" "a_n327_549#" 28.7987
+cap "w_n902_n737#" "a_n176_n518#" 12.1301
+cap "a_359_n87#" "a_412_n518#" 3.35116
+cap "a_314_n518#" "a_412_n518#" 462.346
+cap "a_n176_118#" "a_n176_n518#" 11.3678
+cap "w_n902_n737#" "a_457_n615#" 85.4115
+cap "w_n902_n737#" "a_163_n87#" 52.9163
+cap "w_n902_n737#" "a_n229_21#" 53.1228
+cap "a_608_118#" "a_653_549#" 3.35116
+cap "a_457_549#" "a_359_21#" 15.2414
+cap "a_n176_118#" "a_n229_21#" 3.35116
+cap "a_359_n87#" "a_359_21#" 86.2066
+cap "w_n902_n737#" "a_n666_n518#" 12.1448
+cap "a_261_n615#" "a_457_n615#" 28.7987
+cap "a_261_n615#" "a_163_n87#" 15.2414
+cap "a_118_n518#" "a_163_n87#" 3.35116
+cap "a_n131_n615#" "a_n327_n615#" 28.7987
+cap "a_163_21#" "a_65_549#" 15.2414
+cap "a_n568_n518#" "a_n470_n518#" 462.346
+cap "w_n902_n737#" "a_n425_21#" 53.1228
+cap "a_n764_n518#" "a_n719_n615#" 3.35116
+cap "a_216_n518#" "a_163_n87#" 3.35116
+cap "a_n621_21#" "a_n568_n518#" 0.18543
+cap "w_n902_n737#" "a_412_n518#" 12.1448
+cap "a_261_549#" "a_457_549#" 28.7987
+cap "w_n902_n737#" "a_n78_118#" 12.3457
+cap "a_n229_n87#" "a_n33_n87#" 28.7987
+cap "a_n33_21#" "a_n33_n87#" 86.2066
+cap "a_n33_21#" "a_65_549#" 15.2414
+cap "a_n523_549#" "a_n621_21#" 15.2414
+cap "a_653_n615#" "a_608_n518#" 3.35116
+cap "w_n902_n737#" "a_n568_118#" 12.424
+cap "w_n902_n737#" "a_n131_n615#" 85.4115
+cap "a_n78_118#" "a_n176_118#" 462.346
+cap "w_n902_n737#" "a_n131_549#" 85.4115
+cap "w_n902_n737#" "a_n719_549#" 124.362
+cap "w_n902_n737#" "a_653_n615#" 124.108
+cap "a_608_n518#" "a_706_n518#" 462.346
+cap "a_118_118#" "a_20_118#" 462.346
+cap "a_n176_118#" "a_n131_n615#" 0.0412371
+cap "a_n131_549#" "a_n176_118#" 3.35116
+cap "a_608_118#" "a_555_21#" 3.35116
+cap "a_n274_118#" "a_n229_21#" 3.35116
+cap "a_706_118#" "a_706_n518#" 11.3678
+cap "a_163_n87#" "a_n33_n87#" 28.7987
+cap "a_n621_n87#" "a_n621_21#" 86.2066
+cap "w_n902_n737#" "a_359_21#" 53.1228
+cap "w_n902_n737#" "a_706_n518#" 155.064
+cap "a_314_118#" "a_359_21#" 3.35116
+cap "w_n902_n737#" "a_65_n615#" 85.4115
+cap "a_65_n615#" "a_20_n518#" 3.35116
+cap "a_n764_n518#" "a_n666_n518#" 462.346
+cap "a_359_n87#" "a_555_n87#" 28.7987
+cap "a_n229_n87#" "a_n425_n87#" 28.7987
+cap "a_n621_n87#" "a_n425_n87#" 28.7987
+cap "a_n372_n518#" "a_n425_21#" 0.18543
+cap "a_261_549#" "w_n902_n737#" 85.4115
+cap "a_163_21#" "a_216_118#" 3.35116
+cap "a_457_549#" "a_510_118#" 3.35116
+cap "a_n470_118#" "a_n372_118#" 462.346
+cap "a_261_549#" "a_314_118#" 3.35116
+cap "a_n372_118#" "a_n327_549#" 3.35116
+cap "a_65_n615#" "a_118_n518#" 3.35116
+cap "a_65_n615#" "a_261_n615#" 28.7987
+cap "a_653_n615#" "a_653_549#" 7.24536
+cap "a_n523_549#" "a_n568_n518#" 0.0412371
+cap "w_n902_n737#" "a_n78_n518#" 12.1448
+cap "a_20_n518#" "a_n78_n518#" 462.346
+cap "a_261_549#" "a_261_n615#" 7.24536
+cap "a_n764_n518#" "a_n719_549#" 0.0412371
+cap "a_412_118#" "a_412_n518#" 11.3678
+cap "w_n902_n737#" "a_n764_118#" 155.25
+cap "a_n33_n87#" "a_n131_n615#" 15.2414
+cap "a_n131_549#" "a_65_549#" 28.7987
+cap "a_608_n518#" "a_555_n87#" 3.35116
+cap "a_n425_21#" "a_n621_21#" 28.7987
+cap "a_n621_n87#" "a_n568_n518#" 3.35116
+cap "w_n902_n737#" "a_555_n87#" 74.8049
+cap "a_n372_118#" "a_n327_n615#" 0.0412371
+cap "w_n902_n737#" "a_n666_118#" 12.3457
+cap "a_n327_n615#" "a_n523_n615#" 28.7987
+cap "w_n902_n737#" "a_118_118#" 12.3457
+cap "a_163_21#" "a_n33_21#" 28.7987
+cap "a_n568_118#" "a_n621_21#" 3.35116
+cap "a_412_118#" "a_359_21#" 3.35116
+cap "w_n902_n737#" "a_510_118#" 12.3457
+cap "a_65_n615#" "a_n33_n87#" 15.2414
+cap "a_n425_21#" "a_n425_n87#" 86.2066
+cap "a_65_n615#" "a_65_549#" 7.24536
+cap "a_n719_549#" "a_n621_21#" 15.2414
+cap "a_457_n615#" "a_510_n518#" 3.35116
+cap "a_555_21#" "a_359_21#" 28.7987
+cap "a_261_549#" "a_65_549#" 28.7987
+cap "a_118_118#" "a_118_n518#" 11.3678
+cap "a_n621_n87#" "a_n719_n615#" 15.2414
+cap "w_n902_n737#" "a_n372_118#" 12.424
+cap "w_n902_n737#" "a_n523_n615#" 85.4115
+cap "a_163_21#" "a_163_n87#" 86.2066
+cap "a_359_n87#" "a_314_n518#" 3.35116
+cap "a_n229_n87#" "a_n176_n518#" 3.35116
+cap "a_n764_n518#" "a_n764_118#" 11.3678
+cap "a_n666_n518#" "a_n568_n518#" 462.346
+cap "a_n78_n518#" "a_n33_n87#" 3.35116
+cap "a_n327_n615#" "a_n327_549#" 7.24536
+cap "w_n902_n737#" "a_20_118#" 12.3465
+cap "a_20_n518#" "a_20_118#" 11.3678
+cap "a_510_n518#" "a_412_n518#" 462.346
+cap "a_n33_21#" "a_n229_21#" 28.7987
+cap "a_n229_n87#" "a_n229_21#" 86.2066
+cap "a_n523_549#" "a_n425_21#" 15.2414
+cap "w_n902_n737#" "a_n470_118#" 12.3457
+cap "a_n621_n87#" "a_n666_n518#" 3.35116
+cap "a_n568_118#" "a_n568_n518#" 11.3678
+cap "a_n176_n518#" "a_n229_21#" 0.18543
+cap "w_n902_n737#" "a_n327_549#" 85.4115
+cap "a_n719_n615#" "a_n666_n518#" 3.35116
+cap "a_118_118#" "a_65_549#" 3.35116
+cap "a_n523_549#" "a_n568_118#" 3.35116
+cap "a_n719_549#" "a_n523_549#" 28.7987
+cap "w_n902_n737#" "a_457_549#" 85.4115
+cap "a_n274_118#" "a_n372_118#" 462.346
+cap "w_n902_n737#" "a_359_n87#" 52.9163
+cap "a_n372_n518#" "a_n372_118#" 11.3678
+cap "a_412_118#" "a_510_118#" 462.346
+cap "w_n902_n737#" "a_314_n518#" 12.1448
+cap "a_555_n87#" "a_555_21#" 86.2066
+cap "a_n274_n518#" "a_n327_n615#" 3.35116
+cap "a_n33_21#" "a_n78_118#" 3.35116
+cap "a_261_549#" "a_216_118#" 3.35116
+cap "a_314_n518#" "a_314_118#" 11.3678
+cap "a_n621_n87#" "a_n568_118#" 0.18543
+cap "a_n666_118#" "a_n621_21#" 3.35116
+cap "a_163_21#" "a_359_21#" 28.7987
+cap "a_n131_549#" "a_n33_21#" 15.2414
+cap "a_n229_n87#" "a_n131_n615#" 15.2414
+cap "a_510_118#" "a_555_21#" 3.35116
+cap "a_261_n615#" "a_359_n87#" 15.2414
+device msubckt sky130_fd_pr__pfet_01v8 666 -518 667 -517 l=40 w=400 "w_n902_n737#" "a_653_n615#" 80 0 "a_608_n518#" 400 0 "a_706_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 568 -518 569 -517 l=40 w=400 "w_n902_n737#" "a_555_n87#" 80 0 "a_510_n518#" 400 0 "a_608_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 470 -518 471 -517 l=40 w=400 "w_n902_n737#" "a_457_n615#" 80 0 "a_412_n518#" 400 0 "a_510_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 372 -518 373 -517 l=40 w=400 "w_n902_n737#" "a_359_n87#" 80 0 "a_314_n518#" 400 0 "a_412_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 274 -518 275 -517 l=40 w=400 "w_n902_n737#" "a_261_n615#" 80 0 "a_216_n518#" 400 0 "a_314_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 176 -518 177 -517 l=40 w=400 "w_n902_n737#" "a_163_n87#" 80 0 "a_118_n518#" 400 0 "a_216_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 78 -518 79 -517 l=40 w=400 "w_n902_n737#" "a_65_n615#" 80 0 "a_20_n518#" 400 0 "a_118_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -20 -518 -19 -517 l=40 w=400 "w_n902_n737#" "a_n33_n87#" 80 0 "a_n78_n518#" 400 0 "a_20_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -118 -518 -117 -517 l=40 w=400 "w_n902_n737#" "a_n131_n615#" 80 0 "a_n176_n518#" 400 0 "a_n78_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -216 -518 -215 -517 l=40 w=400 "w_n902_n737#" "a_n229_n87#" 80 0 "a_n274_n518#" 400 0 "a_n176_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -314 -518 -313 -517 l=40 w=400 "w_n902_n737#" "a_n327_n615#" 80 0 "a_n372_n518#" 400 0 "a_n274_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -412 -518 -411 -517 l=40 w=400 "w_n902_n737#" "a_n425_n87#" 80 0 "a_n470_n518#" 400 0 "a_n372_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -510 -518 -509 -517 l=40 w=400 "w_n902_n737#" "a_n523_n615#" 80 0 "a_n568_n518#" 400 0 "a_n470_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -608 -518 -607 -517 l=40 w=400 "w_n902_n737#" "a_n621_n87#" 80 0 "a_n666_n518#" 400 0 "a_n568_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -706 -518 -705 -517 l=40 w=400 "w_n902_n737#" "a_n719_n615#" 80 0 "a_n764_n518#" 400 0 "a_n666_n518#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 666 118 667 119 l=40 w=400 "w_n902_n737#" "a_653_549#" 80 0 "a_608_118#" 400 0 "a_706_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 568 118 569 119 l=40 w=400 "w_n902_n737#" "a_555_21#" 80 0 "a_510_118#" 400 0 "a_608_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 470 118 471 119 l=40 w=400 "w_n902_n737#" "a_457_549#" 80 0 "a_412_118#" 400 0 "a_510_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 372 118 373 119 l=40 w=400 "w_n902_n737#" "a_359_21#" 80 0 "a_314_118#" 400 0 "a_412_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 274 118 275 119 l=40 w=400 "w_n902_n737#" "a_261_549#" 80 0 "a_216_118#" 400 0 "a_314_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 176 118 177 119 l=40 w=400 "w_n902_n737#" "a_163_21#" 80 0 "a_118_118#" 400 0 "a_216_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 78 118 79 119 l=40 w=400 "w_n902_n737#" "a_65_549#" 80 0 "a_20_118#" 400 0 "a_118_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -20 118 -19 119 l=40 w=400 "w_n902_n737#" "a_n33_21#" 80 0 "a_n78_118#" 400 0 "a_20_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -118 118 -117 119 l=40 w=400 "w_n902_n737#" "a_n131_549#" 80 0 "a_n176_118#" 400 0 "a_n78_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -216 118 -215 119 l=40 w=400 "w_n902_n737#" "a_n229_21#" 80 0 "a_n274_118#" 400 0 "a_n176_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -314 118 -313 119 l=40 w=400 "w_n902_n737#" "a_n327_549#" 80 0 "a_n372_118#" 400 0 "a_n274_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -412 118 -411 119 l=40 w=400 "w_n902_n737#" "a_n425_21#" 80 0 "a_n470_118#" 400 0 "a_n372_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -510 118 -509 119 l=40 w=400 "w_n902_n737#" "a_n523_549#" 80 0 "a_n568_118#" 400 0 "a_n470_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -608 118 -607 119 l=40 w=400 "w_n902_n737#" "a_n621_21#" 80 0 "a_n666_118#" 400 0 "a_n568_118#" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -706 118 -705 119 l=40 w=400 "w_n902_n737#" "a_n719_549#" 80 0 "a_n764_118#" 400 0 "a_n666_118#" 400 0
diff --git a/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.mag b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.mag
new file mode 100644
index 0000000..53e19f3
--- /dev/null
+++ b/mag/tia/sky130_fd_pr__pfet_01v8_NZHYX4.mag
@@ -0,0 +1,967 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_p >>
+rect -715 599 -657 605
+rect -519 599 -461 605
+rect -323 599 -265 605
+rect -127 599 -69 605
+rect 69 599 127 605
+rect 265 599 323 605
+rect 461 599 519 605
+rect 657 599 715 605
+rect -715 565 -703 599
+rect -519 565 -507 599
+rect -323 565 -311 599
+rect -127 565 -115 599
+rect 69 565 81 599
+rect 265 565 277 599
+rect 461 565 473 599
+rect 657 565 669 599
+rect -715 559 -657 565
+rect -519 559 -461 565
+rect -323 559 -265 565
+rect -127 559 -69 565
+rect 69 559 127 565
+rect 265 559 323 565
+rect 461 559 519 565
+rect 657 559 715 565
+rect -617 71 -559 77
+rect -421 71 -363 77
+rect -225 71 -167 77
+rect -29 71 29 77
+rect 167 71 225 77
+rect 363 71 421 77
+rect 559 71 617 77
+rect -617 37 -605 71
+rect -421 37 -409 71
+rect -225 37 -213 71
+rect -29 37 -17 71
+rect 167 37 179 71
+rect 363 37 375 71
+rect 559 37 571 71
+rect -617 31 -559 37
+rect -421 31 -363 37
+rect -225 31 -167 37
+rect -29 31 29 37
+rect 167 31 225 37
+rect 363 31 421 37
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -421 -37 -363 -31
+rect -225 -37 -167 -31
+rect -29 -37 29 -31
+rect 167 -37 225 -31
+rect 363 -37 421 -31
+rect 559 -37 617 -31
+rect -617 -71 -605 -37
+rect -421 -71 -409 -37
+rect -225 -71 -213 -37
+rect -29 -71 -17 -37
+rect 167 -71 179 -37
+rect 363 -71 375 -37
+rect 559 -71 571 -37
+rect -617 -77 -559 -71
+rect -421 -77 -363 -71
+rect -225 -77 -167 -71
+rect -29 -77 29 -71
+rect 167 -77 225 -71
+rect 363 -77 421 -71
+rect 559 -77 617 -71
+rect -715 -565 -657 -559
+rect -519 -565 -461 -559
+rect -323 -565 -265 -559
+rect -127 -565 -69 -559
+rect 69 -565 127 -559
+rect 265 -565 323 -559
+rect 461 -565 519 -559
+rect 657 -565 715 -559
+rect -715 -599 -703 -565
+rect -519 -599 -507 -565
+rect -323 -599 -311 -565
+rect -127 -599 -115 -565
+rect 69 -599 81 -565
+rect 265 -599 277 -565
+rect 461 -599 473 -565
+rect 657 -599 669 -565
+rect -715 -605 -657 -599
+rect -519 -605 -461 -599
+rect -323 -605 -265 -599
+rect -127 -605 -69 -599
+rect 69 -605 127 -599
+rect 265 -605 323 -599
+rect 461 -605 519 -599
+rect 657 -605 715 -599
+<< nwell >>
+rect -902 -737 902 737
+<< pmos >>
+rect -706 118 -666 518
+rect -608 118 -568 518
+rect -510 118 -470 518
+rect -412 118 -372 518
+rect -314 118 -274 518
+rect -216 118 -176 518
+rect -118 118 -78 518
+rect -20 118 20 518
+rect 78 118 118 518
+rect 176 118 216 518
+rect 274 118 314 518
+rect 372 118 412 518
+rect 470 118 510 518
+rect 568 118 608 518
+rect 666 118 706 518
+rect -706 -518 -666 -118
+rect -608 -518 -568 -118
+rect -510 -518 -470 -118
+rect -412 -518 -372 -118
+rect -314 -518 -274 -118
+rect -216 -518 -176 -118
+rect -118 -518 -78 -118
+rect -20 -518 20 -118
+rect 78 -518 118 -118
+rect 176 -518 216 -118
+rect 274 -518 314 -118
+rect 372 -518 412 -118
+rect 470 -518 510 -118
+rect 568 -518 608 -118
+rect 666 -518 706 -118
+<< pdiff >>
+rect -764 506 -706 518
+rect -764 130 -752 506
+rect -718 130 -706 506
+rect -764 118 -706 130
+rect -666 506 -608 518
+rect -666 130 -654 506
+rect -620 130 -608 506
+rect -666 118 -608 130
+rect -568 506 -510 518
+rect -568 130 -556 506
+rect -522 130 -510 506
+rect -568 118 -510 130
+rect -470 506 -412 518
+rect -470 130 -458 506
+rect -424 130 -412 506
+rect -470 118 -412 130
+rect -372 506 -314 518
+rect -372 130 -360 506
+rect -326 130 -314 506
+rect -372 118 -314 130
+rect -274 506 -216 518
+rect -274 130 -262 506
+rect -228 130 -216 506
+rect -274 118 -216 130
+rect -176 506 -118 518
+rect -176 130 -164 506
+rect -130 130 -118 506
+rect -176 118 -118 130
+rect -78 506 -20 518
+rect -78 130 -66 506
+rect -32 130 -20 506
+rect -78 118 -20 130
+rect 20 506 78 518
+rect 20 130 32 506
+rect 66 130 78 506
+rect 20 118 78 130
+rect 118 506 176 518
+rect 118 130 130 506
+rect 164 130 176 506
+rect 118 118 176 130
+rect 216 506 274 518
+rect 216 130 228 506
+rect 262 130 274 506
+rect 216 118 274 130
+rect 314 506 372 518
+rect 314 130 326 506
+rect 360 130 372 506
+rect 314 118 372 130
+rect 412 506 470 518
+rect 412 130 424 506
+rect 458 130 470 506
+rect 412 118 470 130
+rect 510 506 568 518
+rect 510 130 522 506
+rect 556 130 568 506
+rect 510 118 568 130
+rect 608 506 666 518
+rect 608 130 620 506
+rect 654 130 666 506
+rect 608 118 666 130
+rect 706 506 764 518
+rect 706 130 718 506
+rect 752 130 764 506
+rect 706 118 764 130
+rect -764 -130 -706 -118
+rect -764 -506 -752 -130
+rect -718 -506 -706 -130
+rect -764 -518 -706 -506
+rect -666 -130 -608 -118
+rect -666 -506 -654 -130
+rect -620 -506 -608 -130
+rect -666 -518 -608 -506
+rect -568 -130 -510 -118
+rect -568 -506 -556 -130
+rect -522 -506 -510 -130
+rect -568 -518 -510 -506
+rect -470 -130 -412 -118
+rect -470 -506 -458 -130
+rect -424 -506 -412 -130
+rect -470 -518 -412 -506
+rect -372 -130 -314 -118
+rect -372 -506 -360 -130
+rect -326 -506 -314 -130
+rect -372 -518 -314 -506
+rect -274 -130 -216 -118
+rect -274 -506 -262 -130
+rect -228 -506 -216 -130
+rect -274 -518 -216 -506
+rect -176 -130 -118 -118
+rect -176 -506 -164 -130
+rect -130 -506 -118 -130
+rect -176 -518 -118 -506
+rect -78 -130 -20 -118
+rect -78 -506 -66 -130
+rect -32 -506 -20 -130
+rect -78 -518 -20 -506
+rect 20 -130 78 -118
+rect 20 -506 32 -130
+rect 66 -506 78 -130
+rect 20 -518 78 -506
+rect 118 -130 176 -118
+rect 118 -506 130 -130
+rect 164 -506 176 -130
+rect 118 -518 176 -506
+rect 216 -130 274 -118
+rect 216 -506 228 -130
+rect 262 -506 274 -130
+rect 216 -518 274 -506
+rect 314 -130 372 -118
+rect 314 -506 326 -130
+rect 360 -506 372 -130
+rect 314 -518 372 -506
+rect 412 -130 470 -118
+rect 412 -506 424 -130
+rect 458 -506 470 -130
+rect 412 -518 470 -506
+rect 510 -130 568 -118
+rect 510 -506 522 -130
+rect 556 -506 568 -130
+rect 510 -518 568 -506
+rect 608 -130 666 -118
+rect 608 -506 620 -130
+rect 654 -506 666 -130
+rect 608 -518 666 -506
+rect 706 -130 764 -118
+rect 706 -506 718 -130
+rect 752 -506 764 -130
+rect 706 -518 764 -506
+<< pdiffc >>
+rect -752 130 -718 506
+rect -654 130 -620 506
+rect -556 130 -522 506
+rect -458 130 -424 506
+rect -360 130 -326 506
+rect -262 130 -228 506
+rect -164 130 -130 506
+rect -66 130 -32 506
+rect 32 130 66 506
+rect 130 130 164 506
+rect 228 130 262 506
+rect 326 130 360 506
+rect 424 130 458 506
+rect 522 130 556 506
+rect 620 130 654 506
+rect 718 130 752 506
+rect -752 -506 -718 -130
+rect -654 -506 -620 -130
+rect -556 -506 -522 -130
+rect -458 -506 -424 -130
+rect -360 -506 -326 -130
+rect -262 -506 -228 -130
+rect -164 -506 -130 -130
+rect -66 -506 -32 -130
+rect 32 -506 66 -130
+rect 130 -506 164 -130
+rect 228 -506 262 -130
+rect 326 -506 360 -130
+rect 424 -506 458 -130
+rect 522 -506 556 -130
+rect 620 -506 654 -130
+rect 718 -506 752 -130
+<< nsubdiff >>
+rect -866 667 -770 701
+rect 770 667 866 701
+rect -866 605 -832 667
+rect 832 605 866 667
+rect -866 -667 -832 -605
+rect 832 -667 866 -605
+rect -866 -701 -770 -667
+rect 770 -701 866 -667
+<< nsubdiffcont >>
+rect -770 667 770 701
+rect -866 -605 -832 605
+rect 832 -605 866 605
+rect -770 -701 770 -667
+<< poly >>
+rect -719 599 -653 615
+rect -719 565 -703 599
+rect -669 565 -653 599
+rect -719 549 -653 565
+rect -523 599 -457 615
+rect -523 565 -507 599
+rect -473 565 -457 599
+rect -523 549 -457 565
+rect -327 599 -261 615
+rect -327 565 -311 599
+rect -277 565 -261 599
+rect -327 549 -261 565
+rect -131 599 -65 615
+rect -131 565 -115 599
+rect -81 565 -65 599
+rect -131 549 -65 565
+rect 65 599 131 615
+rect 65 565 81 599
+rect 115 565 131 599
+rect 65 549 131 565
+rect 261 599 327 615
+rect 261 565 277 599
+rect 311 565 327 599
+rect 261 549 327 565
+rect 457 599 523 615
+rect 457 565 473 599
+rect 507 565 523 599
+rect 457 549 523 565
+rect 653 599 719 615
+rect 653 565 669 599
+rect 703 565 719 599
+rect 653 549 719 565
+rect -706 518 -666 549
+rect -608 518 -568 544
+rect -510 518 -470 549
+rect -412 518 -372 544
+rect -314 518 -274 549
+rect -216 518 -176 544
+rect -118 518 -78 549
+rect -20 518 20 544
+rect 78 518 118 549
+rect 176 518 216 544
+rect 274 518 314 549
+rect 372 518 412 544
+rect 470 518 510 549
+rect 568 518 608 544
+rect 666 518 706 549
+rect -706 92 -666 118
+rect -608 87 -568 118
+rect -510 92 -470 118
+rect -412 87 -372 118
+rect -314 92 -274 118
+rect -216 87 -176 118
+rect -118 92 -78 118
+rect -20 87 20 118
+rect 78 92 118 118
+rect 176 87 216 118
+rect 274 92 314 118
+rect 372 87 412 118
+rect 470 92 510 118
+rect 568 87 608 118
+rect 666 92 706 118
+rect -621 71 -555 87
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -621 21 -555 37
+rect -425 71 -359 87
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -425 21 -359 37
+rect -229 71 -163 87
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -229 21 -163 37
+rect -33 71 33 87
+rect -33 37 -17 71
+rect 17 37 33 71
+rect -33 21 33 37
+rect 163 71 229 87
+rect 163 37 179 71
+rect 213 37 229 71
+rect 163 21 229 37
+rect 359 71 425 87
+rect 359 37 375 71
+rect 409 37 425 71
+rect 359 21 425 37
+rect 555 71 621 87
+rect 555 37 571 71
+rect 605 37 621 71
+rect 555 21 621 37
+rect -621 -37 -555 -21
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -621 -87 -555 -71
+rect -425 -37 -359 -21
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -425 -87 -359 -71
+rect -229 -37 -163 -21
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -229 -87 -163 -71
+rect -33 -37 33 -21
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect -33 -87 33 -71
+rect 163 -37 229 -21
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect 163 -87 229 -71
+rect 359 -37 425 -21
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 359 -87 425 -71
+rect 555 -37 621 -21
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect 555 -87 621 -71
+rect -706 -118 -666 -92
+rect -608 -118 -568 -87
+rect -510 -118 -470 -92
+rect -412 -118 -372 -87
+rect -314 -118 -274 -92
+rect -216 -118 -176 -87
+rect -118 -118 -78 -92
+rect -20 -118 20 -87
+rect 78 -118 118 -92
+rect 176 -118 216 -87
+rect 274 -118 314 -92
+rect 372 -118 412 -87
+rect 470 -118 510 -92
+rect 568 -118 608 -87
+rect 666 -118 706 -92
+rect -706 -549 -666 -518
+rect -608 -544 -568 -518
+rect -510 -549 -470 -518
+rect -412 -544 -372 -518
+rect -314 -549 -274 -518
+rect -216 -544 -176 -518
+rect -118 -549 -78 -518
+rect -20 -544 20 -518
+rect 78 -549 118 -518
+rect 176 -544 216 -518
+rect 274 -549 314 -518
+rect 372 -544 412 -518
+rect 470 -549 510 -518
+rect 568 -544 608 -518
+rect 666 -549 706 -518
+rect -719 -565 -653 -549
+rect -719 -599 -703 -565
+rect -669 -599 -653 -565
+rect -719 -615 -653 -599
+rect -523 -565 -457 -549
+rect -523 -599 -507 -565
+rect -473 -599 -457 -565
+rect -523 -615 -457 -599
+rect -327 -565 -261 -549
+rect -327 -599 -311 -565
+rect -277 -599 -261 -565
+rect -327 -615 -261 -599
+rect -131 -565 -65 -549
+rect -131 -599 -115 -565
+rect -81 -599 -65 -565
+rect -131 -615 -65 -599
+rect 65 -565 131 -549
+rect 65 -599 81 -565
+rect 115 -599 131 -565
+rect 65 -615 131 -599
+rect 261 -565 327 -549
+rect 261 -599 277 -565
+rect 311 -599 327 -565
+rect 261 -615 327 -599
+rect 457 -565 523 -549
+rect 457 -599 473 -565
+rect 507 -599 523 -565
+rect 457 -615 523 -599
+rect 653 -565 719 -549
+rect 653 -599 669 -565
+rect 703 -599 719 -565
+rect 653 -615 719 -599
+<< polycont >>
+rect -703 565 -669 599
+rect -507 565 -473 599
+rect -311 565 -277 599
+rect -115 565 -81 599
+rect 81 565 115 599
+rect 277 565 311 599
+rect 473 565 507 599
+rect 669 565 703 599
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -703 -599 -669 -565
+rect -507 -599 -473 -565
+rect -311 -599 -277 -565
+rect -115 -599 -81 -565
+rect 81 -599 115 -565
+rect 277 -599 311 -565
+rect 473 -599 507 -565
+rect 669 -599 703 -565
+<< locali >>
+rect -866 667 -770 701
+rect 770 667 866 701
+rect -866 605 -832 667
+rect 832 605 866 667
+rect -719 565 -703 599
+rect -669 565 -653 599
+rect -523 565 -507 599
+rect -473 565 -457 599
+rect -327 565 -311 599
+rect -277 565 -261 599
+rect -131 565 -115 599
+rect -81 565 -65 599
+rect 65 565 81 599
+rect 115 565 131 599
+rect 261 565 277 599
+rect 311 565 327 599
+rect 457 565 473 599
+rect 507 565 523 599
+rect 653 565 669 599
+rect 703 565 719 599
+rect -752 506 -718 522
+rect -752 114 -718 130
+rect -654 506 -620 522
+rect -654 114 -620 130
+rect -556 506 -522 522
+rect -556 114 -522 130
+rect -458 506 -424 522
+rect -458 114 -424 130
+rect -360 506 -326 522
+rect -360 114 -326 130
+rect -262 506 -228 522
+rect -262 114 -228 130
+rect -164 506 -130 522
+rect -164 114 -130 130
+rect -66 506 -32 522
+rect -66 114 -32 130
+rect 32 506 66 522
+rect 32 114 66 130
+rect 130 506 164 522
+rect 130 114 164 130
+rect 228 506 262 522
+rect 228 114 262 130
+rect 326 506 360 522
+rect 326 114 360 130
+rect 424 506 458 522
+rect 424 114 458 130
+rect 522 506 556 522
+rect 522 114 556 130
+rect 620 506 654 522
+rect 620 114 654 130
+rect 718 506 752 522
+rect 718 114 752 130
+rect -621 37 -605 71
+rect -571 37 -555 71
+rect -425 37 -409 71
+rect -375 37 -359 71
+rect -229 37 -213 71
+rect -179 37 -163 71
+rect -33 37 -17 71
+rect 17 37 33 71
+rect 163 37 179 71
+rect 213 37 229 71
+rect 359 37 375 71
+rect 409 37 425 71
+rect 555 37 571 71
+rect 605 37 621 71
+rect -621 -71 -605 -37
+rect -571 -71 -555 -37
+rect -425 -71 -409 -37
+rect -375 -71 -359 -37
+rect -229 -71 -213 -37
+rect -179 -71 -163 -37
+rect -33 -71 -17 -37
+rect 17 -71 33 -37
+rect 163 -71 179 -37
+rect 213 -71 229 -37
+rect 359 -71 375 -37
+rect 409 -71 425 -37
+rect 555 -71 571 -37
+rect 605 -71 621 -37
+rect -752 -130 -718 -114
+rect -752 -522 -718 -506
+rect -654 -130 -620 -114
+rect -654 -522 -620 -506
+rect -556 -130 -522 -114
+rect -556 -522 -522 -506
+rect -458 -130 -424 -114
+rect -458 -522 -424 -506
+rect -360 -130 -326 -114
+rect -360 -522 -326 -506
+rect -262 -130 -228 -114
+rect -262 -522 -228 -506
+rect -164 -130 -130 -114
+rect -164 -522 -130 -506
+rect -66 -130 -32 -114
+rect -66 -522 -32 -506
+rect 32 -130 66 -114
+rect 32 -522 66 -506
+rect 130 -130 164 -114
+rect 130 -522 164 -506
+rect 228 -130 262 -114
+rect 228 -522 262 -506
+rect 326 -130 360 -114
+rect 326 -522 360 -506
+rect 424 -130 458 -114
+rect 424 -522 458 -506
+rect 522 -130 556 -114
+rect 522 -522 556 -506
+rect 620 -130 654 -114
+rect 620 -522 654 -506
+rect 718 -130 752 -114
+rect 718 -522 752 -506
+rect -719 -599 -703 -565
+rect -669 -599 -653 -565
+rect -523 -599 -507 -565
+rect -473 -599 -457 -565
+rect -327 -599 -311 -565
+rect -277 -599 -261 -565
+rect -131 -599 -115 -565
+rect -81 -599 -65 -565
+rect 65 -599 81 -565
+rect 115 -599 131 -565
+rect 261 -599 277 -565
+rect 311 -599 327 -565
+rect 457 -599 473 -565
+rect 507 -599 523 -565
+rect 653 -599 669 -565
+rect 703 -599 719 -565
+rect -866 -667 -832 -605
+rect 832 -667 866 -605
+rect -866 -701 -770 -667
+rect 770 -701 866 -667
+<< viali >>
+rect -703 565 -669 599
+rect -507 565 -473 599
+rect -311 565 -277 599
+rect -115 565 -81 599
+rect 81 565 115 599
+rect 277 565 311 599
+rect 473 565 507 599
+rect 669 565 703 599
+rect -752 130 -718 506
+rect -654 130 -620 506
+rect -556 130 -522 506
+rect -458 130 -424 506
+rect -360 130 -326 506
+rect -262 130 -228 506
+rect -164 130 -130 506
+rect -66 130 -32 506
+rect 32 130 66 506
+rect 130 130 164 506
+rect 228 130 262 506
+rect 326 130 360 506
+rect 424 130 458 506
+rect 522 130 556 506
+rect 620 130 654 506
+rect 718 130 752 506
+rect -605 37 -571 71
+rect -409 37 -375 71
+rect -213 37 -179 71
+rect -17 37 17 71
+rect 179 37 213 71
+rect 375 37 409 71
+rect 571 37 605 71
+rect -605 -71 -571 -37
+rect -409 -71 -375 -37
+rect -213 -71 -179 -37
+rect -17 -71 17 -37
+rect 179 -71 213 -37
+rect 375 -71 409 -37
+rect 571 -71 605 -37
+rect -752 -506 -718 -130
+rect -654 -506 -620 -130
+rect -556 -506 -522 -130
+rect -458 -506 -424 -130
+rect -360 -506 -326 -130
+rect -262 -506 -228 -130
+rect -164 -506 -130 -130
+rect -66 -506 -32 -130
+rect 32 -506 66 -130
+rect 130 -506 164 -130
+rect 228 -506 262 -130
+rect 326 -506 360 -130
+rect 424 -506 458 -130
+rect 522 -506 556 -130
+rect 620 -506 654 -130
+rect 718 -506 752 -130
+rect -703 -599 -669 -565
+rect -507 -599 -473 -565
+rect -311 -599 -277 -565
+rect -115 -599 -81 -565
+rect 81 -599 115 -565
+rect 277 -599 311 -565
+rect 473 -599 507 -565
+rect 669 -599 703 -565
+<< metal1 >>
+rect -715 599 -657 605
+rect -715 565 -703 599
+rect -669 565 -657 599
+rect -715 559 -657 565
+rect -519 599 -461 605
+rect -519 565 -507 599
+rect -473 565 -461 599
+rect -519 559 -461 565
+rect -323 599 -265 605
+rect -323 565 -311 599
+rect -277 565 -265 599
+rect -323 559 -265 565
+rect -127 599 -69 605
+rect -127 565 -115 599
+rect -81 565 -69 599
+rect -127 559 -69 565
+rect 69 599 127 605
+rect 69 565 81 599
+rect 115 565 127 599
+rect 69 559 127 565
+rect 265 599 323 605
+rect 265 565 277 599
+rect 311 565 323 599
+rect 265 559 323 565
+rect 461 599 519 605
+rect 461 565 473 599
+rect 507 565 519 599
+rect 461 559 519 565
+rect 657 599 715 605
+rect 657 565 669 599
+rect 703 565 715 599
+rect 657 559 715 565
+rect -758 506 -712 518
+rect -758 130 -752 506
+rect -718 130 -712 506
+rect -758 118 -712 130
+rect -660 506 -614 518
+rect -660 130 -654 506
+rect -620 130 -614 506
+rect -660 118 -614 130
+rect -562 506 -516 518
+rect -562 130 -556 506
+rect -522 130 -516 506
+rect -562 118 -516 130
+rect -464 506 -418 518
+rect -464 130 -458 506
+rect -424 130 -418 506
+rect -464 118 -418 130
+rect -366 506 -320 518
+rect -366 130 -360 506
+rect -326 130 -320 506
+rect -366 118 -320 130
+rect -268 506 -222 518
+rect -268 130 -262 506
+rect -228 130 -222 506
+rect -268 118 -222 130
+rect -170 506 -124 518
+rect -170 130 -164 506
+rect -130 130 -124 506
+rect -170 118 -124 130
+rect -72 506 -26 518
+rect -72 130 -66 506
+rect -32 130 -26 506
+rect -72 118 -26 130
+rect 26 506 72 518
+rect 26 130 32 506
+rect 66 130 72 506
+rect 26 118 72 130
+rect 124 506 170 518
+rect 124 130 130 506
+rect 164 130 170 506
+rect 124 118 170 130
+rect 222 506 268 518
+rect 222 130 228 506
+rect 262 130 268 506
+rect 222 118 268 130
+rect 320 506 366 518
+rect 320 130 326 506
+rect 360 130 366 506
+rect 320 118 366 130
+rect 418 506 464 518
+rect 418 130 424 506
+rect 458 130 464 506
+rect 418 118 464 130
+rect 516 506 562 518
+rect 516 130 522 506
+rect 556 130 562 506
+rect 516 118 562 130
+rect 614 506 660 518
+rect 614 130 620 506
+rect 654 130 660 506
+rect 614 118 660 130
+rect 712 506 758 518
+rect 712 130 718 506
+rect 752 130 758 506
+rect 712 118 758 130
+rect -617 71 -559 77
+rect -617 37 -605 71
+rect -571 37 -559 71
+rect -617 31 -559 37
+rect -421 71 -363 77
+rect -421 37 -409 71
+rect -375 37 -363 71
+rect -421 31 -363 37
+rect -225 71 -167 77
+rect -225 37 -213 71
+rect -179 37 -167 71
+rect -225 31 -167 37
+rect -29 71 29 77
+rect -29 37 -17 71
+rect 17 37 29 71
+rect -29 31 29 37
+rect 167 71 225 77
+rect 167 37 179 71
+rect 213 37 225 71
+rect 167 31 225 37
+rect 363 71 421 77
+rect 363 37 375 71
+rect 409 37 421 71
+rect 363 31 421 37
+rect 559 71 617 77
+rect 559 37 571 71
+rect 605 37 617 71
+rect 559 31 617 37
+rect -617 -37 -559 -31
+rect -617 -71 -605 -37
+rect -571 -71 -559 -37
+rect -617 -77 -559 -71
+rect -421 -37 -363 -31
+rect -421 -71 -409 -37
+rect -375 -71 -363 -37
+rect -421 -77 -363 -71
+rect -225 -37 -167 -31
+rect -225 -71 -213 -37
+rect -179 -71 -167 -37
+rect -225 -77 -167 -71
+rect -29 -37 29 -31
+rect -29 -71 -17 -37
+rect 17 -71 29 -37
+rect -29 -77 29 -71
+rect 167 -37 225 -31
+rect 167 -71 179 -37
+rect 213 -71 225 -37
+rect 167 -77 225 -71
+rect 363 -37 421 -31
+rect 363 -71 375 -37
+rect 409 -71 421 -37
+rect 363 -77 421 -71
+rect 559 -37 617 -31
+rect 559 -71 571 -37
+rect 605 -71 617 -37
+rect 559 -77 617 -71
+rect -758 -130 -712 -118
+rect -758 -506 -752 -130
+rect -718 -506 -712 -130
+rect -758 -518 -712 -506
+rect -660 -130 -614 -118
+rect -660 -506 -654 -130
+rect -620 -506 -614 -130
+rect -660 -518 -614 -506
+rect -562 -130 -516 -118
+rect -562 -506 -556 -130
+rect -522 -506 -516 -130
+rect -562 -518 -516 -506
+rect -464 -130 -418 -118
+rect -464 -506 -458 -130
+rect -424 -506 -418 -130
+rect -464 -518 -418 -506
+rect -366 -130 -320 -118
+rect -366 -506 -360 -130
+rect -326 -506 -320 -130
+rect -366 -518 -320 -506
+rect -268 -130 -222 -118
+rect -268 -506 -262 -130
+rect -228 -506 -222 -130
+rect -268 -518 -222 -506
+rect -170 -130 -124 -118
+rect -170 -506 -164 -130
+rect -130 -506 -124 -130
+rect -170 -518 -124 -506
+rect -72 -130 -26 -118
+rect -72 -506 -66 -130
+rect -32 -506 -26 -130
+rect -72 -518 -26 -506
+rect 26 -130 72 -118
+rect 26 -506 32 -130
+rect 66 -506 72 -130
+rect 26 -518 72 -506
+rect 124 -130 170 -118
+rect 124 -506 130 -130
+rect 164 -506 170 -130
+rect 124 -518 170 -506
+rect 222 -130 268 -118
+rect 222 -506 228 -130
+rect 262 -506 268 -130
+rect 222 -518 268 -506
+rect 320 -130 366 -118
+rect 320 -506 326 -130
+rect 360 -506 366 -130
+rect 320 -518 366 -506
+rect 418 -130 464 -118
+rect 418 -506 424 -130
+rect 458 -506 464 -130
+rect 418 -518 464 -506
+rect 516 -130 562 -118
+rect 516 -506 522 -130
+rect 556 -506 562 -130
+rect 516 -518 562 -506
+rect 614 -130 660 -118
+rect 614 -506 620 -130
+rect 654 -506 660 -130
+rect 614 -518 660 -506
+rect 712 -130 758 -118
+rect 712 -506 718 -130
+rect 752 -506 758 -130
+rect 712 -518 758 -506
+rect -715 -565 -657 -559
+rect -715 -599 -703 -565
+rect -669 -599 -657 -565
+rect -715 -605 -657 -599
+rect -519 -565 -461 -559
+rect -519 -599 -507 -565
+rect -473 -599 -461 -565
+rect -519 -605 -461 -599
+rect -323 -565 -265 -559
+rect -323 -599 -311 -565
+rect -277 -599 -265 -565
+rect -323 -605 -265 -599
+rect -127 -565 -69 -559
+rect -127 -599 -115 -565
+rect -81 -599 -69 -565
+rect -127 -605 -69 -599
+rect 69 -565 127 -559
+rect 69 -599 81 -565
+rect 115 -599 127 -565
+rect 69 -605 127 -599
+rect 265 -565 323 -559
+rect 265 -599 277 -565
+rect 311 -599 323 -565
+rect 265 -605 323 -599
+rect 461 -565 519 -559
+rect 461 -599 473 -565
+rect 507 -599 519 -565
+rect 461 -605 519 -599
+rect 657 -565 715 -559
+rect 657 -599 669 -565
+rect 703 -599 715 -565
+rect 657 -605 715 -599
+<< properties >>
+string FIXED_BBOX -849 -684 849 684
+string gencell sky130_fd_pr__pfet_01v8
+string library sky130
+string parameters w 2 l 0.2 m 2 nf 15 diffcov 100 polycov 100 guard 1 glc 1 grc 1 gtc 1 gbc 1 tbcov 100 rlcov 100 topc 1 botc 1 poverlap 0 doverlap 1 lmin 0.15 wmin 0.42 compatible {sky130_fd_pr__pfet_01v8  sky130_fd_pr__pfet_01v8_lvt sky130_fd_pr__pfet_01v8_hvt  sky130_fd_pr__pfet_g5v0d10v5} full_metal 1 viasrc 100 viadrn 100 viagate 100 viagb 0 viagr 0 viagl 0 viagt 0
+<< end >>
diff --git a/mag/tia/tia_core.ext b/mag/tia/tia_core.ext
new file mode 100644
index 0000000..ebee74b
--- /dev/null
+++ b/mag/tia/tia_core.ext
@@ -0,0 +1,808 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__cap_mim_m3_1_J5CT7Z sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0 1 0 3290 0 1 -10380
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0 -1 0 8373 0 -1 -8409
+use sky130_fd_pr__cap_var_lvt_MZUN4J sky130_fd_pr__cap_var_lvt_MZUN4J_0 1 0 3733 0 1 -10422
+use sky130_fd_pr__nfet_01v8_CDW43Z sky130_fd_pr__nfet_01v8_CDW43Z_0 1 0 6476 0 1 -10820
+use sky130_fd_pr__nfet_01v8_SC2JGL sky130_fd_pr__nfet_01v8_SC2JGL_0 1 0 5717 0 1 -9110
+use sky130_fd_pr__pfet_01v8_GCYTE7 sky130_fd_pr__pfet_01v8_GCYTE7_0 1 0 6476 0 1 -10261
+use tia_cur_mirror tia_cur_mirror_0 1 0 3420 0 1 -8620
+use tia_one_tia tia_one_tia_1 1 0 614 0 1 -7960
+use sky130_fd_pr__cap_mim_m3_1_J5CT7Z sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1 1 0 3280 0 1 -3290
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0 sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1 -1 0 8373 0 -1 -1099
+use tia_one_tia tia_one_tia_0 1 0 614 0 1 -890
+port "VPP" 1 11130 -5060 11230 -4890 m5
+port "VN" 8 11480 -4560 11690 -4360 m4
+port "Out_2" 2 2900 1040 3170 1170 m3
+port "Out_1" 4 1040 1990 1140 2120 m3
+port "I_Bias1" 7 5080 -8250 5190 -8090 m3
+port "Disable_TIA" 5 6390 -9510 6450 -9410 m3
+port "Input" 6 -1840 -1240 -1560 -1040 m1
+node "m5_4300_n9750#" 0 268.967 4300 -9750 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 243200 2160 0 0
+node "VPP" 0 589.575 11130 -5060 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 550800 3780 0 0
+node "m5_3300_n5460#" 0 1401.11 3300 -5460 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1591900 9420 0 0
+node "m5_4360_n2680#" 0 82.7402 4360 -2680 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 230400 2080 0 0
+node "m5_3230_1630#" 0 1858.83 3230 1630 m5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1290000 8520 0 0
+node "m4_500_n9640#" 0 347.566 500 -9640 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 220400 1920 0 0 0 0
+node "VN" 0 615.686 11480 -4560 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 380800 2920 0 0 0 0
+node "m4_500_n2560#" 0 361.73 500 -2560 m4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 223200 1960 0 0 0 0
+node "VM40D" 0 71.8477 630 -10020 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 340 0 0 0 0 0 0
+node "VM31D" 0 165.411 2920 -6050 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 31200 760 0 0 0 0 0 0
+node "VM28D" 0 71.8477 630 -2970 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7000 340 0 0 0 0 0 0
+node "Out_2" 0 174.815 2900 1040 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35100 800 0 0 0 0 0 0
+node "Out_1" 0 98.2972 1040 1990 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13000 460 0 0 0 0 0 0
+node "m2_3170_n9310#" 0 180.972 3170 -9310 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 64600 1100 0 0 0 0 0 0 0 0
+node "m2_1250_n9660#" 1 873.209 1250 -9660 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 105800 1380 112500 1400 358872 2702 162864 1632 0 0
+node "VM6D" 0 80.7289 4600 -8760 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 440 0 0 0 0 0 0 0 0
+node "VM36D" 0 173.286 2670 -8790 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47500 880 0 0 0 0 0 0 0 0
+node "I_Bias1" 1 185.178 5080 -8250 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12600 500 104900 1640 0 0 0 0 0 0
+node "VM39D" 0 112.006 1740 -6900 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 25200 640 0 0 0 0 0 0 0 0
+node "Out_ref" 0 125.362 1700 -6390 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30000 700 0 0 0 0 0 0 0 0
+node "m2_n1020_n4690#" 0 86.5209 -1020 -4690 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17600 540 0 0 0 0 0 0 0 0
+node "m2_1260_n2430#" 0 1025.08 1260 -2430 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78300 1120 81200 1140 363192 3042 114144 1352 0 0
+node "VM5D" 0 127.111 2720 -1460 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23800 620 0 0 0 0 0 0 0 0
+node "m2_1770_160#" 0 102.573 1770 160 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19200 560 0 0 0 0 0 0 0 0
+node "Out_1" 0 102.362 1800 670 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18700 560 0 0 0 0 0 0 0 0
+node "m2_830_1750#" 0 144.581 830 1750 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 29400 700 0 0 0 0 0 0 0 0
+node "m1_6420_n10920#" 2 188.975 6420 -10920 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46800 1680 0 0 0 0 0 0 0 0 0 0
+node "Disable_TIA_B" 33 3006.46 1130 -10060 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 566800 24720 0 0 0 0 0 0 0 0 0 0
+node "m1_3210_n9420#" 0 70.4032 3210 -9420 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23200 740 0 0 0 0 0 0 0 0 0 0
+node "m1_5530_n9310#" 2 352.767 5530 -9310 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38400 1440 149200 2260 0 0 0 0 0 0 0 0
+node "Disable_TIA" 5 931.601 6390 -9510 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 143900 3920 18200 800 94950 2430 0 0 0 0 0 0
+node "m1_5060_n8880#" 2 321.202 5060 -8880 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86700 2520 84600 1380 0 0 0 0 0 0 0 0
+node "m1_3160_n8880#" 1 141.519 3160 -8880 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 32800 980 0 0 0 0 0 0 0 0 0 0
+node "m1_4560_n8110#" 0 28.6431 4560 -8110 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_4370_n8110#" 0 28.2355 4370 -8110 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_4170_n8100#" 0 28.3011 4170 -8100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_3980_n8100#" 0 26.4323 3980 -8100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_3790_n8100#" 0 26.4323 3790 -8100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_3600_n8100#" 0 32.0251 3600 -8100 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3500 240 0 0 0 0 0 0 0 0 0 0
+node "m1_2840_n8140#" 1 772.873 2840 -8140 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 28500 680 28900 680 211450 2830 0 0 0 0 0 0
+node "m1_4090_n5190#" 1 798.487 4090 -5190 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 23400 660 121400 2280 14300 480 931000 4060 0 0 0 0
+node "m1_n1390_n8850#" 6 2193.34 -1390 -8850 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 24700 900 533500 9920 0 0 0 0 0 0 0 0
+node "m1_3200_n2350#" 6 2772.32 3200 -2350 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 965600 14360 0 0 0 0 0 0 0 0 0 0
+node "m1_2950_n1730#" 1 535.365 2950 -1730 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 42300 1060 25200 640 95600 1380 0 0 0 0 0 0
+node "Input" 0 377.558 -1840 -1240 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 120000 1480 0 0 0 0 0 0 0 0 0 0
+node "m1_4098_1944#" 2 651.04 4098 1944 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45604 1444 7200 340 15400 500 55893 1224 0 0 0 0
+node "li_6610_n10880#" 15 76.6143 6610 -10880 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12000 440 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_5970_n11040#" 21 287.2 5970 -11040 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 118800 1420 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_6620_n10320#" 22 2173.74 6620 -10320 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 16800 520 21648 608 1082600 15900 0 0 0 0 0 0 0 0
+node "li_5840_n11090#" 143 460.054 5840 -11090 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 160800 2920 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_3740_n7940#" 717 289.801 3740 -7940 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8448 1400 0 0 0 0 0 0 0 0 0 0 0 0
+node "li_1340_n11280#" 13 17765.8 1340 -11280 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8991100 50740 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2300_n7574#" 5450 0 2300 -7574 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_2300_n504#" 5450 0 2300 -504 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_6420_n10920#" "li_6620_n10320#" 38.8746
+cap "li_6620_n10320#" "li_5840_n11090#" 5.09091
+cap "li_5970_n11040#" "li_5840_n11090#" 1232
+cap "m1_3160_n8880#" "m1_5060_n8880#" 1.98121
+cap "m1_3200_n2350#" "m1_4560_n8110#" 184.5
+cap "m1_3200_n2350#" "li_1340_n11280#" 1349.03
+cap "m1_4090_n5190#" "li_6620_n10320#" 215.05
+cap "Disable_TIA" "Disable_TIA_B" 217.33
+cap "m5_4360_n2680#" "li_1340_n11280#" 329.428
+cap "I_Bias1" "m1_2840_n8140#" 8.08911
+cap "m1_3160_n8880#" "li_1340_n11280#" 112.338
+cap "I_Bias1" "VM6D" 1.955
+cap "m1_5060_n8880#" "m1_5530_n9310#" 332.35
+cap "m1_n1390_n8850#" "m2_n1020_n4690#" 25.024
+cap "m1_4090_n5190#" "m5_3300_n5460#" 1851.85
+cap "m1_6420_n10920#" "Disable_TIA_B" 359.775
+cap "Disable_TIA_B" "li_5840_n11090#" 173.648
+cap "m1_3790_n8100#" "m1_3980_n8100#" 18.45
+cap "m2_1770_160#" "Out_1" 10.0543
+cap "m1_5530_n9310#" "li_1340_n11280#" 149.718
+cap "li_5970_n11040#" "Disable_TIA_B" 197.328
+cap "li_6620_n10320#" "VM6D" 7.52835
+cap "m1_3210_n9420#" "Disable_TIA_B" 28.3604
+cap "m1_4170_n8100#" "m1_3980_n8100#" 18.45
+cap "m1_5060_n8880#" "li_1340_n11280#" 158.373
+cap "m1_3200_n2350#" "m1_2950_n1730#" 10.4283
+cap "m2_1250_n9660#" "li_1340_n11280#" 363.935
+cap "Disable_TIA" "m1_5530_n9310#" 554.981
+cap "m1_3200_n2350#" "li_6620_n10320#" 1797.85
+cap "m2_3170_n9310#" "m1_5530_n9310#" 4.08889
+cap "m1_2840_n8140#" "m1_4370_n8110#" 0.275373
+cap "m1_4090_n5190#" "m1_3200_n2350#" 200.975
+cap "m1_3200_n2350#" "m5_3300_n5460#" 123.97
+cap "m1_3600_n8100#" "m1_3790_n8100#" 18.45
+cap "m1_3160_n8880#" "m1_3210_n9420#" 23.263
+cap "m1_3600_n8100#" "m1_2840_n8140#" 4.53158
+cap "Disable_TIA" "m1_5060_n8880#" 318.196
+cap "m2_1250_n9660#" "m4_500_n9640#" 112.564
+cap "m1_4170_n8100#" "m1_4370_n8110#" 14.76
+cap "li_6620_n10320#" "m1_5530_n9310#" 65.9622
+cap "Disable_TIA" "li_1340_n11280#" 133.921
+cap "I_Bias1" "m1_4560_n8110#" 31.2429
+cap "I_Bias1" "li_1340_n11280#" 198.002
+cap "m2_3170_n9310#" "li_1340_n11280#" 111.65
+cap "m1_3200_n2350#" "m1_2840_n8140#" 1.025
+cap "li_6610_n10880#" "li_6620_n10320#" 5.72727
+cap "VM39D" "Out_ref" 16.9081
+cap "VN" "VPP" 917.523
+cap "li_5970_n11040#" "li_6610_n10880#" 9.08108
+cap "m1_5060_n8880#" "li_6620_n10320#" 93.0292
+cap "li_5840_n11090#" "li_1340_n11280#" 755.642
+cap "m1_2950_n1730#" "li_1340_n11280#" 31.3628
+cap "li_6620_n10320#" "li_1340_n11280#" 836.887
+cap "m4_500_n2560#" "m2_1260_n2430#" 93.3701
+cap "li_5970_n11040#" "li_1340_n11280#" 4.01635
+cap "m1_3210_n9420#" "li_1340_n11280#" 85.3786
+cap "m1_3200_n2350#" "m5_4360_n2680#" 114.625
+cap "m1_4090_n5190#" "li_1340_n11280#" 803.537
+cap "li_1340_n11280#" "m5_3300_n5460#" 142.244
+cap "Disable_TIA" "m1_6420_n10920#" 121.243
+cap "li_3740_n7940#" "li_1340_n11280#" 14
+cap "m1_5060_n8880#" "Disable_TIA_B" 17.8944
+cap "Disable_TIA" "li_6620_n10320#" 366.376
+cap "m1_2840_n8140#" "m2_1250_n9660#" 0.206618
+cap "m1_4370_n8110#" "m1_4560_n8110#" 18.45
+cap "I_Bias1" "li_6620_n10320#" 203.955
+cap "VM36D" "m1_2840_n8140#" 170.148
+cap "m5_4300_n9750#" "li_1340_n11280#" 233.423
+cap "Disable_TIA_B" "li_1340_n11280#" 2987.44
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/m2_n1840_n2910#" -3.81361
+cap "tia_one_tia_1/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 21.2514
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 89.2308
+cap "tia_one_tia_1/m2_n1840_n2910#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 1.92653
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 4.81696
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/m2_n1840_n2910#" 20.4777
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m2_n1840_n2910#" 21.2514
+cap "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" "tia_one_tia_1/m2_n1840_n2910#" -0.750787
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_cur_mirror_0/a_122_42#" 7.72184
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 622.106
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 588.749
+cap "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" -30.3678
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 347.591
+cap "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 62.7382
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 1.72955
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 64.2703
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" -1063.99
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 13.3263
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 268.237
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 11.2457
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -66.3417
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" 2124.88
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" 16.4405
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 171.84
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 1132.33
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" 491.035
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" -72.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" -31.706
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 833.46
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" 3680.38
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 2479.87
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 0.385113
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 97.1475
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 44.7025
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" 284.382
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 5.9
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 570.657
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 118.516
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 551.267
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 33.6957
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -18.5484
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 21.6502
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" 39.9654
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" 112.835
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 72.1083
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" -8.19045
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" -8.62364
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" 3.321
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 18.0882
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 70.9383
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" -2.69788
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" -43.1882
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 69.2435
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 53.4544
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 1.41686
+cap "tia_one_tia_1/m2_n1840_n2910#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 55.5443
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" -735.187
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m2_n1840_n2910#" 26.5255
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/m2_n1840_n2910#" -120.216
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -278.971
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#" -3.48202
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/m2_n1840_n2910#" 479.278
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" 4.3933
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/m2_n1840_n2910#" -14.1646
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 0.272981
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 0.923866
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" -8.3406
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 319.914
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" 52.0925
+cap "tia_one_tia_1/rf_transistors_0/a_623_n2862#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 1.11833
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m2_n1840_n2910#" 177.653
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/a_623_n2862#" -0.119032
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -2956.85
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" -76.2083
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" -2.84101
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n545_n200#" 0.558571
+cap "tia_one_tia_1/m2_n1840_n2910#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 1.38276
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 647.394
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 39.5837
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 33.974
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 15.8561
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 56.2552
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -273.575
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/fb_transistor_0/a_5923_2322#" -0.568834
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -64.0883
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 331.196
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 663.05
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -6.4449
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" -2061.12
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 4.97455
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 0.283333
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 161.728
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 2315.91
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -72.12
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 703.789
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 5967.42
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 0.205789
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -72.7047
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 2513.4
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 4.97455
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 3654.69
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 53.7266
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 1231.01
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" 2124.88
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 335.825
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 305.412
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" 316.499
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 6.18319
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" -0.0380902
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 1849.4
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 20.3877
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 2247.3
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" -36.29
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 111.937
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "tia_cur_mirror_0/m1_71_130#" 16.8994
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" 43.6003
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -17.259
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 892.252
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 113.468
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" 184.235
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 33.7731
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 697.912
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "tia_cur_mirror_0/m1_71_130#" 0.283333
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 84.665
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 866.408
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 15.9296
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "tia_cur_mirror_0/m1_71_130#" 6.41136
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 40.3731
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 473.52
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 236.179
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -6.1828
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" 382.944
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 0.72269
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 0.00585555
+cap "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -14.3961
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 1.107
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 176.878
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" 54.9349
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -22.7891
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" -6.00495
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 3.51269
+cap "tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 2.39239
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "tia_one_tia_1/m2_n1840_n2910#" -37.4756
+cap "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_1/m2_n1840_n2910#" -68.4141
+cap "tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_one_tia_1/m2_n1840_n2910#" -259.018
+cap "tia_one_tia_1/li_n2010_n3330#" "tia_one_tia_1/m2_n1840_n2910#" -1.32461
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" 183.346
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 162.626
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/a_622_n2244#" 920.688
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/m2_n1840_n2910#" 535.991
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/li_n2010_n3330#" 3.20948
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/m2_n1840_n2910#" 13.9508
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/m2_n1840_n2910#" 350.911
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 14.714
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" 39.1966
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 42.7962
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/m2_n1840_n2910#" 143.236
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/m1_1540_1550#" 2.25387
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 65.585
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 106.497
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/m1_1540_1550#" -12.9555
+cap "tia_one_tia_1/w_1686_386#" "tia_cur_mirror_0/a_122_42#" 0.1564
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" 0.179126
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 12.5582
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/w_1686_386#" 0.740693
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 8.84322
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/m2_n1840_n2910#" 55.1249
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/w_1686_386#" 17.4216
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m1_1540_1550#" 4.55673
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 3.9602
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m2_n1840_n2910#" 33.7097
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#" -5.58851
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -48.0132
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" -182.273
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/w_1686_386#" 44.7296
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 0.337069
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/m1_1540_1550#" 3.77996
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m1_1540_1550#" -5.44511
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_cur_mirror_0/a_122_42#" 0.5535
+cap "tia_one_tia_1/m2_n1840_n2910#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" -2.79426
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 10.0435
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/w_1686_386#" 11.0311
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 179.755
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 35.735
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m2_n1840_n2910#" 206.116
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -9.03722
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" 0.207407
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 36.106
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -96.456
+cap "tia_one_tia_1/w_1686_386#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 13.4604
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_cur_mirror_0/m1_71_130#" 17.5449
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 79.7889
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" 10.9199
+cap "tia_cur_mirror_0/m1_71_130#" "li_6620_n10320#" 0.328571
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 320.036
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 74.6007
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 836.235
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "li_6620_n10320#" 0.328571
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_cur_mirror_0/m1_71_130#" -349.173
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_cur_mirror_0/m1_71_130#" 104.976
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "tia_cur_mirror_0/m1_71_130#" 1.52594
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" -1796.76
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" 24.7788
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/m2_1800_2380#" -2.41856
+cap "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -10.6779
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/m2_1800_2380#" 17.5804
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 5.9059
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 84.6233
+cap "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/w_1686_386#" -1.18529
+cap "tia_cur_mirror_0/m1_71_130#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" 5.15222
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" 285.687
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 111.883
+cap "tia_one_tia_1/fb_transistor_0/a_5923_2322#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 14.0088
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" -8.05605
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" -150.829
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" -4.44089e-16
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 104.388
+cap "tia_one_tia_1/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 0.384843
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 99.6091
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/m1_71_130#" 1298.38
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 158.312
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 185.238
+cap "tia_one_tia_1/m2_1800_2380#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 4.59689
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 32.6722
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" -94.9245
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 3363.12
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" 0.207407
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" -1.4351
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" 957.78
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 338.075
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" -142.791
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 68.1519
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 263.509
+cap "tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" 0.194199
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "tia_one_tia_1/w_1686_386#" 14.4219
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 339.133
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" 1.6225
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 43.1414
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" 84.7471
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" 1.01111
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 146.584
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 6.08614
+cap "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "tia_cur_mirror_0/m1_71_130#" 9.37915
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" -8.36907
+cap "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 0.00153901
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" -4.6125
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" 278.16
+cap "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" 5.03336
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" 99.6575
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "tia_one_tia_1/m1_n1960_n3240#" 170.254
+cap "tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_one_tia_1/m1_n1960_n3240#" 1170.88
+cap "m4_500_n9640#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 80.594
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 163.441
+cap "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" -28.0405
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" "m4_500_n9640#" -36.8805
+cap "tia_one_tia_1/rf_transistors_0/a_622_n2244#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" -44.3381
+cap "m4_500_n9640#" "tia_one_tia_1/m1_n1960_n3240#" 458.364
+cap "tia_one_tia_1/rf_transistors_0/a_622_n2244#" "m4_500_n9640#" -337.9
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 198.134
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "tia_one_tia_1/li_n1910_3600#" 28.5308
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" "m4_500_n9640#" 40.6051
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/li_n1910_3600#" 48.8523
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 11.5324
+cap "tia_one_tia_1/m1_1540_1550#" "m4_500_n9640#" 69.5266
+cap "tia_one_tia_1/m1_n1960_n3240#" "tia_one_tia_1/m1_1540_1550#" 1.87823
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 796.717
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_n509#" 254.723
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m1_1540_1550#" -16.9081
+cap "tia_cur_mirror_0/a_122_42#" "tia_one_tia_1/m2_1800_2380#" 17.5804
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/w_1686_386#" 3.66555
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 52.5019
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "tia_cur_mirror_0/m1_71_130#" 2.17725
+cap "tia_cur_mirror_0/a_122_42#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 20.3204
+cap "m4_500_n9640#" "tia_one_tia_1/m2_1800_2380#" -7.51512
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/m2_1800_2380#" 2.2332
+cap "m4_500_n9640#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 39.5411
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" -2.41856
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m2_1800_2380#" 42.5794
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" "tia_one_tia_1/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_745_n200#" -0.568834
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 99.3371
+cap "tia_one_tia_1/w_1686_386#" "m4_500_n9640#" 99.3339
+cap "tia_one_tia_1/w_1686_386#" "tia_cur_mirror_0/a_122_42#" 106.577
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_cur_mirror_0/a_122_42#" -157.348
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/w_1686_386#" 90.5888
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m2_1800_2380#" 0.990662
+cap "tia_one_tia_1/m2_1800_2380#" "tia_cur_mirror_0/a_122_42#" 4.59689
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/m2_1800_2380#" 35.9732
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/a_5923_2322#" -8.17633
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/m1_1850_2290#" 338.075
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_one_tia_1/m1_1850_2290#" 378.518
+cap "tia_one_tia_1/fb_transistor_0/a_5923_2322#" "tia_cur_mirror_0/a_122_42#" 15.2458
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/fb_transistor_0/a_5923_2322#" -21.3169
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -63.0421
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m1_1850_2290#" 0.651966
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -71.7279
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" 97.2705
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/fb_transistor_0/a_5923_2322#" -49.3464
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/m2_1800_2380#" -31.1464
+cap "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" "tia_one_tia_1/w_1686_386#" 26.3795
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" 132.524
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_one_tia_0/m1_n1960_n3240#" 22.8209
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" -9.07366
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" -0.855298
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" -0.00194292
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_1/li_n1910_3600#" -0.0020968
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_1/rf_transistors_0/w_2421_22#" 0.580214
+cap "tia_one_tia_0/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" 1267.8
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" -204.439
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/li_n1910_3600#" -16.5053
+cap "tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" -0.648727
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_0/m1_n1960_n3240#" 191.641
+cap "tia_one_tia_0/m1_n1960_n3240#" "tia_one_tia_1/li_n1910_3600#" 43.095
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -3.20869
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/rf_transistors_0/w_2421_22#" -1.55058
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_1/rf_transistors_0/w_2421_22#" -62.252
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_one_tia_1/rf_transistors_0/a_622_n1734#" -0.342119
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_109#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" 2.21303
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/m1_n1960_n3240#" 288.095
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_1/li_n1910_3600#" 1.6652
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 23.4947
+cap "tia_one_tia_0/m1_n1960_n3240#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" 0.753239
+cap "tia_one_tia_0/m1_n1960_n3240#" "tia_one_tia_1/li_n1910_3600#" 2.45892
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_one_tia_1/li_n1910_3600#" 14.2654
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1229_n1127#" "tia_one_tia_1/li_n1910_3600#" 0.548673
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_0/m1_n1960_n3240#" 16.454
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1156_109#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 20.3025
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 20.0151
+cap "tia_one_tia_0/m1_n1960_n3240#" "tia_one_tia_1/m1_1540_1550#" 1.87823
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/m1_1540_1550#" 577.994
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -51.7562
+cap "tia_one_tia_1/m1_1540_1550#" "tia_one_tia_1/w_1686_386#" -0.584398
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 19.8404
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -9.7039
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/w_1686_386#" -1.06682
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -1.42395
+cap "m1_3200_n2350#" "tia_one_tia_1/m1_1850_2290#" 2.37069
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/m1_1850_2290#" 582.418
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/m2_1800_2380#" 4.51515
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 232.964
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "li_1340_n11280#" 2.12642
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -723.526
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" 56.9973
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 48.6455
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/m1_1850_2290#" 18.6046
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 54.0727
+cap "m1_3200_n2350#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -254.79
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/m1_1850_2290#" -2.05126
+cap "tia_one_tia_1/m2_1800_2380#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 16.0571
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -56.4751
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/m1_1850_2290#" 0.87683
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" 148.261
+cap "li_1340_n11280#" "tia_one_tia_1/m1_1850_2290#" 132.678
+cap "m1_3200_n2350#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -14.967
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "li_1340_n11280#" 80.8144
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/m1_1850_2290#" 129.451
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -15.3796
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "li_1340_n11280#" -26.1002
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/m1_1850_2290#" 182.547
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 107.528
+cap "tia_one_tia_1/m2_1800_2380#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -35.1808
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 21.404
+cap "m1_3200_n2350#" "tia_one_tia_1/m1_1850_2290#" 52.1638
+cap "m1_3200_n2350#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" -61.9656
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/m1_1850_2290#" 43.4259
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/m1_1850_2290#" 0.605492
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 0.311917
+cap "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -92.2089
+cap "li_1340_n11280#" "tia_one_tia_1/fb_transistor_0/dw_5500_1960#" 21.9755
+cap "li_1340_n11280#" "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" -70.394
+cap "li_1340_n11280#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -19.6531
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" 0.313804
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" 4.50224
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_4090_n5190#" -18.473
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 37.2072
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 49.6051
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" -18.473
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -18.473
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 31.5706
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_0/li_n2010_n3330#" 53.0842
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/li_n2010_n3330#" 1.74642
+cap "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1254_109#" "tia_one_tia_0/m2_n1840_n2910#" 1.2978
+cap "tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_one_tia_1/li_n1910_3600#" -41.7828
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_0/m1_n1960_n3240#" 14.117
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "tia_one_tia_1/li_n1910_3600#" -28.9802
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/m1_n1960_n3240#" 14.004
+cap "tia_one_tia_0/li_n2010_n3330#" "tia_one_tia_0/m1_n1960_n3240#" -13.5073
+cap "tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_one_tia_0/m1_n1960_n3240#" 53.3225
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "tia_one_tia_1/rf_transistors_0/w_2421_22#" -127
+cap "tia_one_tia_1/rf_transistors_0/w_2421_22#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" 356.364
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "tia_one_tia_0/m1_n1960_n3240#" 351.936
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_0/m1_n1960_n3240#" 81.5621
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/w_1686_386#" 660.666
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_0/m2_n1840_n2910#" 10.9391
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_0/m1_n1960_n3240#" 0.561283
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/m1_n1960_n3240#" 25.9007
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -567.276
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "tia_one_tia_1/w_1686_386#" -131.269
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "tia_one_tia_0/m1_n1960_n3240#" 181.868
+cap "tia_one_tia_1/li_n1910_3600#" "tia_one_tia_1/rf_transistors_0/a_622_n290#" -279.717
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_one_tia_1/w_1686_386#" 4.85022
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 19.011
+cap "tia_one_tia_1/li_n1910_3600#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -405.367
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_1/w_1686_386#" 1.47814
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_0/m1_n1960_n3240#" -10.6919
+cap "tia_one_tia_1/w_1686_386#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -47.4235
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "tia_one_tia_1/rf_transistors_0/a_622_n290#" -95.845
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/rf_transistors_0/a_622_n290#" 0.951031
+cap "tia_one_tia_1/rf_transistors_0/a_622_n290#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 175.547
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" "tia_one_tia_1/w_1686_386#" -3.41419
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_0/m2_n1840_n2910#" 0.400691
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 19.011
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n1215#" -6.82838
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n1215#" "tia_one_tia_1/rf_transistors_0/a_622_n290#" 37.6355
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" 216.984
+cap "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 725.426
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_1/w_1686_386#" 19.8404
+cap "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n819_n200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 16.0571
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 9.92766
+cap "tia_one_tia_1/w_1686_386#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 48.6455
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 170.767
+cap "tia_one_tia_1/w_1686_386#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -543.229
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "tia_one_tia_1/w_1686_386#" 522.685
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" 385.791
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" -68.2207
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 24.5816
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/m1_1850_2290#" 33.6198
+cap "tia_one_tia_1/m1_1850_2290#" "tia_one_tia_1/w_1686_386#" 97.92
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "tia_one_tia_1/m1_1850_2290#" 724.616
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 21.404
+cap "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/w_1686_386#" -29.6274
+cap "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "li_1340_n11280#" -55.4479
+cap "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -80.7068
+cap "tia_one_tia_1/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 57.6279
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "m1_4090_n5190#" -15.2079
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" 49.6051
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" 37.2072
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" -15.2079
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" -15.2079
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" 26.4537
+cap "tia_one_tia_1/rf_transistors_0/a_623_1186#" "tia_one_tia_0/m1_n1960_n3240#" 7.37953
+cap "tia_one_tia_0/li_n2010_n3330#" "tia_one_tia_0/m1_n1960_n3240#" 13.233
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/w_2421_1186#" 2.26359
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 36.2441
+cap "tia_one_tia_1/rf_transistors_0/a_623_1186#" "tia_one_tia_0/m1_n1960_n3240#" 15.2907
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/m2_n1840_n2910#" -152.399
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/m1_n1960_n3240#" 47.7801
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/m1_n1960_n3240#" -15.7414
+cap "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 73.6044
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_n705#" 1.50819
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" -22.9036
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" -7.25205
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/m2_n1840_n2910#" -2.95364
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_n87#" 7.68711
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 204.14
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/w_2421_1186#" 0.646739
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#" -3.8679
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/a_n274_118#" 0.721348
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 12.9376
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 1.18861
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -1042.44
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 565.095
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" 4.06673
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_1/rf_transistors_0/a_623_1186#" 0.148074
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 392.675
+cap "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" -39.0566
+cap "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -317.083
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n1127#" 776.877
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -4452.97
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 4.77022
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" 0.255036
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 367.111
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" 6.58411
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 1076.69
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "m1_4090_n5190#" 35.051
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "m1_4090_n5190#" 836.045
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1527.2
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "m1_4090_n5190#" 2230.38
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" 3397.49
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" 769.502
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "m1_4090_n5190#" 1604.13
+cap "m1_4090_n5190#" "li_1340_n11280#" 133.092
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" 6.43442
+cap "tia_one_tia_0/li_1590_1050#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1254_n509#" -4.54747e-13
+cap "tia_one_tia_0/li_1590_1050#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" -16.958
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/li_1590_1050#" 0.040001
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1185_n87#" "tia_one_tia_0/m2_n1840_n2910#" -1.95591
+cap "tia_one_tia_0/li_n2010_n3330#" "tia_one_tia_0/m2_n1840_n2910#" -5.07469
+cap "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" "tia_one_tia_0/w_1686_386#" -4.91496
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -99.589
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" -10.8769
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" -11.4429
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n705_531#" "tia_one_tia_0/m2_n1840_n2910#" -3.52361
+cap "tia_one_tia_0/m2_n1840_n2910#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -12.2221
+cap "tia_one_tia_0/m2_n1840_n2910#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n609_1149#" -7.04722
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "tia_one_tia_0/m2_n1840_n2910#" 49.8679
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 39.5458
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n666_n509#" 3.93292
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 14.8973
+cap "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -11.2165
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" -50.0695
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" 4.30923
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" 2.47683
+cap "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_687_n509#" 253.256
+cap "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -4.24941
+cap "tia_one_tia_0/m2_1800_2380#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 5.71106
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "tia_one_tia_0/rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_706_n509#" -0.568834
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 219.621
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -46.8381
+cap "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 6.58411
+cap "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 338.075
+cap "tia_one_tia_0/rf_transistors_0/m1_2565_359#" "tia_one_tia_0/w_1686_386#" -10.0543
+cap "tia_one_tia_0/m2_1800_2380#" "m4_500_n2560#" 0.103605
+cap "tia_one_tia_0/m2_1800_2380#" "tia_one_tia_0/w_1686_386#" 1.26238
+cap "tia_one_tia_0/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "tia_one_tia_0/rf_transistors_0/m1_2565_359#" -0.568834
+cap "tia_one_tia_0/m2_1800_2380#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 5.71106
+cap "m4_500_n2560#" "tia_one_tia_0/rf_transistors_0/m1_2565_359#" 0.296749
+cap "tia_one_tia_0/m2_1800_2380#" "tia_one_tia_0/rf_transistors_0/m1_2565_359#" 1.05214
+cap "tia_one_tia_0/rf_transistors_0/m1_2565_359#" "tia_one_tia_0/w_1686_386#" 0.733197
+cap "tia_one_tia_0/rf_transistors_0/m1_2565_359#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" 2.47683
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/w_1686_386#" -6.72318e-05
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/w_1686_386#" -0.000147519
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/w_1686_386#" 0.584248
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" -212.219
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 338.075
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 69.2622
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/m1_1850_2290#" 7.79011
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/m1_1850_2290#" 0.943448
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 253.7
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 5.19116
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/m1_1850_2290#" 276.056
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 30.3793
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" 212.855
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 37.7211
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/w_1686_386#" 0.584248
+cap "tia_one_tia_0/fb_transistor_0/dw_5500_1960#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -157.266
+cap "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 201.497
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" 132.087
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 25.8336
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/m1_1850_2290#" 18.595
+cap "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_0/fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" 23.9078
+merge "tia_one_tia_1/m2_n1840_n2910#" "VM40D" -6293.24 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1512000 -340 -7796656 -3306 1046476 0 0 0
+merge "VM40D" "m4_500_n9640#"
+merge "tia_one_tia_0/m1_1850_2290#" "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" -56166.2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -40733508 -74692 2644312 -1696 -15299100 -3968 -12201000 -210 -5815110 -11386 1787808 -13856 0 0
+merge "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "m1_4098_1944#"
+merge "m1_4098_1944#" "m5_4360_n2680#"
+merge "m5_4360_n2680#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#"
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/c1_n1550_n1200#" "tia_one_tia_0/li_n2010_n3330#"
+merge "tia_one_tia_0/li_n2010_n3330#" "m2_1260_n2430#"
+merge "m2_1260_n2430#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/VSUBS" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/m4_n3351_n3100#" "tia_one_tia_0/VSUBS"
+merge "tia_one_tia_0/VSUBS" "tia_one_tia_1/m1_1850_2290#"
+merge "tia_one_tia_1/m1_1850_2290#" "VN"
+merge "VN" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/VSUBS" "m1_4090_n5190#"
+merge "m1_4090_n5190#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#"
+merge "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "li_3740_n7940#"
+merge "li_3740_n7940#" "tia_one_tia_1/tia_cur_mirror_0/m1_71_n690#"
+merge "tia_one_tia_1/tia_cur_mirror_0/m1_71_n690#" "tia_one_tia_1/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#"
+merge "tia_one_tia_1/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/VSUBS"
+merge "sky130_fd_pr__pfet_01v8_GCYTE7_0/VSUBS" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_15_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_15_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n177_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n177_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_207_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_207_n200#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n260_n224#"
+merge "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n260_n224#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_100_n50#"
+merge "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_100_n50#" "li_6610_n10880#"
+merge "li_6610_n10880#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n371_n374#" "li_5970_n11040#"
+merge "li_5970_n11040#" "li_5840_n11090#"
+merge "li_5840_n11090#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/m4_n3351_n3100#" "m5_4300_n9750#"
+merge "m5_4300_n9750#" "m1_5530_n9310#"
+merge "m1_5530_n9310#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_1507_n618#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_587_n618#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_587_n618#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/VSUBS" "tia_cur_mirror_0/VSUBS"
+merge "tia_cur_mirror_0/VSUBS" "tia_cur_mirror_0/m1_71_n690#"
+merge "tia_cur_mirror_0/m1_71_n690#" "m2_3170_n9310#"
+merge "m2_3170_n9310#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#"
+merge "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n333_n618#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#"
+merge "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#"
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/c1_n1550_n1200#" "tia_one_tia_1/li_n2010_n3330#"
+merge "tia_one_tia_1/li_n2010_n3330#" "m2_1250_n9660#"
+merge "m2_1250_n9660#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n1253_n618#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n1253_n618#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/VSUBS" "tia_one_tia_1/VSUBS"
+merge "tia_one_tia_1/VSUBS" "VSUBS"
+merge "VSUBS" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/w_n2173_n618#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2247_n692#" "li_1340_n11280#"
+merge "tia_one_tia_0/tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" -47915.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -54959420 -8580 -12839200 -500 -4068200 -1300 0 0 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1/m3_n1650_n1300#" "m1_2950_n1730#"
+merge "m1_2950_n1730#" "tia_cur_mirror_0/m1_167_370#"
+merge "tia_cur_mirror_0/m1_167_370#" "I_Bias1"
+merge "I_Bias1" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_255_n200#"
+merge "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_255_n200#" "m1_4560_n8110#"
+merge "m1_4560_n8110#" "m1_4370_n8110#"
+merge "m1_4370_n8110#" "m1_4170_n8100#"
+merge "m1_4170_n8100#" "m1_3980_n8100#"
+merge "m1_3980_n8100#" "m1_3200_n2350#"
+merge "m1_3200_n2350#" "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#"
+merge "sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0/m3_n1650_n1300#" "m1_2840_n8140#"
+merge "m1_2840_n8140#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_111_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_111_n200#" "m1_3790_n8100#"
+merge "m1_3790_n8100#" "m1_3600_n8100#"
+merge "m1_3600_n8100#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n81_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n81_n200#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n269_n200#" "tia_one_tia_1/tia_cur_mirror_0/a_122_42#"
+merge "tia_one_tia_1/tia_cur_mirror_0/a_122_42#" "m1_5060_n8880#"
+merge "m1_5060_n8880#" "tia_cur_mirror_0/a_122_42#"
+merge "tia_cur_mirror_0/a_122_42#" "m1_3210_n9420#"
+merge "m1_3210_n9420#" "m1_3160_n8880#"
+merge "tia_one_tia_0/m2_1800_2380#" "Out_2" -871.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2287600 -800 0 0 0 0 0 0
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1/c2_n3251_n3000#" "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 19546.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 19863322 -528 12603094 -236 -6449080 -188 0 0 0 0 4081910 -19756 0 0
+merge "tia_one_tia_0/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "m5_3230_1630#"
+merge "m5_3230_1630#" "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#"
+merge "sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0/c2_n3251_n3000#" "VPP"
+merge "VPP" "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#"
+merge "tia_one_tia_1/sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_one_tia_1/fb_transistor_0/m1_7233_4403#"
+merge "tia_one_tia_1/fb_transistor_0/m1_7233_4403#" "m5_3300_n5460#"
+merge "m5_3300_n5460#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#"
+merge "sky130_fd_pr__pfet_01v8_GCYTE7_0/w_n296_n269#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#"
+merge "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_100_n50#" "li_6620_n10320#"
+merge "tia_one_tia_0/m1_n1960_n3240#" "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_n158_n50#" -24392.4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -30048948 -10362 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_n158_n50#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n158_n50#"
+merge "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n158_n50#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_1640_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_720_n588#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_720_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n200_n588#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n1120_n588#" "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_n87#"
+merge "tia_one_tia_1/dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_1119_n87#" "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#"
+merge "sky130_fd_pr__cap_var_lvt_MZUN4J_0/a_n2040_n588#" "tia_one_tia_1/m1_n1960_n3240#"
+merge "tia_one_tia_1/m1_n1960_n3240#" "Disable_TIA_B"
+merge "Disable_TIA_B" "m1_n1390_n8850#"
+merge "tia_one_tia_0/rf_transistors_0/m1_2565_359#" "m2_830_1750#" -3665.3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -5662800 -1260 -3078000 -460 0 0 0 0 0 0
+merge "m2_830_1750#" "tia_one_tia_0/m1_1540_1550#"
+merge "tia_one_tia_0/m1_1540_1550#" "Out_1"
+merge "sky130_fd_pr__pfet_01v8_GCYTE7_0/a_n100_n147#" "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" -18824.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -28575896 -1932 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_CDW43Z_0/a_n100_n138#" "m1_6420_n10920#"
+merge "m1_6420_n10920#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_159_n288#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_159_n288#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n33_n288#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n33_n288#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n225_n288#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n225_n288#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_63_222#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_63_222#" "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#"
+merge "sky130_fd_pr__nfet_01v8_SC2JGL_0/a_n129_222#" "Disable_TIA"
+merge "tia_one_tia_1/li_n1910_3600#" "m2_n1020_n4690#" -940.651 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -843200 -540 0 0 0 0 0 0 0 0
+merge "tia_one_tia_0/w_1686_386#" "m2_1770_160#" -138961 944240 -6752 0 0 0 0 0 0 -37868640 0 -26442084 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -67306112 0 -94417840 -532 -37178064 -560 0 0 0 0 0 0 0 0
+merge "m2_1770_160#" "w_2300_n504#"
+merge "w_2300_n504#" "tia_one_tia_0/li_1590_1050#"
+merge "tia_one_tia_0/li_1590_1050#" "Input"
+merge "tia_one_tia_1/w_1686_386#" "VM39D" -154432 -996136 -6752 0 0 0 0 0 0 -37868640 0 -33377936 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -85673388 0 -95331320 0 -32349804 -640 0 0 3007840 0 -586480 0 0 0
+merge "VM39D" "w_2300_n7574#"
+merge "tia_one_tia_1/tia_cur_mirror_0/m1_71_130#" "VM36D" -1107.89 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2259000 -880 0 0 0 0 0 0 0 0
+merge "tia_one_tia_1/m2_1800_2380#" "VM31D" -919.97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2279200 -760 0 0 0 0 0 0
+merge "tia_cur_mirror_0/m1_71_130#" "VM6D" -1041.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -3155200 -440 0 0 0 0 0 0 0 0
+merge "tia_one_tia_0/tia_cur_mirror_0/m1_71_130#" "VM5D" -618.648 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1187200 -620 0 0 0 0 0 0 0 0
+merge "tia_one_tia_1/m1_1540_1550#" "Out_ref" -1674.47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2660000 -700 0 0 0 0 0 0 0 0
+merge "tia_one_tia_0/m2_n1840_n2910#" "VM28D" -6781.75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1512000 -340 -10727368 -3364 1046476 0 0 0
+merge "VM28D" "m4_500_n2560#"
diff --git a/mag/tia/tia_core.mag b/mag/tia/tia_core.mag
new file mode 100644
index 0000000..3280fc0
--- /dev/null
+++ b/mag/tia/tia_core.mag
@@ -0,0 +1,356 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< locali >>
+rect 3230 -2570 5340 -2130
+rect 4108 -7934 4420 -7920
+rect 3740 -7940 4420 -7934
+rect 3300 -9460 3420 -8660
+rect 4800 -8730 5340 -2570
+rect 4800 -8740 5390 -8730
+rect 4800 -8750 5370 -8740
+rect 3300 -9470 4420 -9460
+rect 5200 -9470 5370 -8750
+rect 5960 -9310 6070 -9150
+rect 5970 -9320 6070 -9310
+rect 5980 -9470 6070 -9320
+rect 1340 -9740 6090 -9470
+rect 1340 -9750 4800 -9740
+rect 1340 -11100 1510 -9750
+rect 2160 -11100 2540 -9750
+rect 3070 -11100 3450 -9750
+rect 4000 -11100 4380 -9750
+rect 4910 -11100 5310 -9740
+rect 5840 -11090 5960 -9750
+rect 6620 -10320 6670 -10200
+rect 5970 -11040 6240 -10600
+rect 6610 -10880 6710 -10760
+rect 1340 -11280 5970 -11100
+<< viali >>
+rect 6670 -10320 6760 -10200
+<< metal1 >>
+rect 4100 1996 4660 2000
+rect 4098 1944 4660 1996
+rect 4100 1930 4660 1944
+rect 4740 1930 4750 2000
+rect -1860 -1260 -1360 -1020
+rect 2950 -1730 3140 -1660
+rect 3130 -1780 3140 -1730
+rect 3320 -1780 3330 -1660
+rect 3140 -1810 3330 -1780
+rect 3200 -2350 4620 -2270
+rect -1390 -4120 -1380 -4020
+rect -1270 -4120 -1260 -4020
+rect 4180 -5090 4190 -5080
+rect 4090 -5190 4190 -5090
+rect 4180 -5200 4190 -5190
+rect 4290 -5200 4300 -5080
+rect 2840 -8140 2850 -7990
+rect 3020 -8140 3030 -7990
+rect 4470 -8030 4620 -2350
+rect 3600 -8100 3650 -8030
+rect 3790 -8100 3840 -8030
+rect 3980 -8100 4030 -8030
+rect 4170 -8100 4220 -8030
+rect 4370 -8110 4420 -8040
+rect 4560 -8110 4610 -8040
+rect -1390 -8850 -1380 -8760
+rect -1270 -8850 -1260 -8760
+rect 3160 -8880 3570 -8800
+rect 5060 -8880 5480 -8800
+rect 5590 -8880 6130 -8810
+rect 5390 -8910 5480 -8880
+rect 5390 -9090 5440 -8910
+rect 5500 -9090 5510 -8910
+rect 5630 -9090 5640 -8910
+rect 5700 -9090 5710 -8910
+rect 5820 -9090 5830 -8910
+rect 5890 -9090 5900 -8910
+rect 5530 -9310 5540 -9150
+rect 5600 -9310 5610 -9150
+rect 5730 -9310 5740 -9150
+rect 5800 -9310 5810 -9150
+rect 5920 -9310 5930 -9150
+rect 5990 -9310 6000 -9150
+rect 6030 -9300 6130 -8880
+rect 6030 -9340 6060 -9300
+rect 3210 -9420 3500 -9340
+rect 5480 -9410 6060 -9340
+rect 6130 -9410 6140 -9300
+rect 1330 -9890 6340 -9850
+rect 1330 -9910 1380 -9890
+rect 1210 -10040 1380 -9910
+rect 1130 -10060 1380 -10040
+rect 1330 -10960 1380 -10060
+rect 6300 -10960 6340 -9890
+rect 6380 -10070 6390 -9960
+rect 6460 -10070 6470 -9960
+rect 6390 -10130 6450 -10070
+rect 6420 -10920 6480 -10140
+rect 6664 -10200 6766 -10188
+rect 6610 -10320 6620 -10200
+rect 6760 -10320 6770 -10200
+rect 6664 -10332 6766 -10320
+rect 1330 -11010 6340 -10960
+<< via1 >>
+rect 4660 1930 4740 2000
+rect 3140 -1780 3320 -1660
+rect -1380 -4120 -1270 -4020
+rect 4190 -5200 4290 -5080
+rect 2850 -8140 3020 -7990
+rect -1380 -8850 -1270 -8760
+rect 5440 -9090 5500 -8910
+rect 5640 -9090 5700 -8910
+rect 5830 -9090 5890 -8910
+rect 5540 -9310 5600 -9150
+rect 5740 -9310 5800 -9150
+rect 5930 -9310 5990 -9150
+rect 6060 -9410 6130 -9300
+rect 6390 -10070 6460 -9960
+rect 6620 -10320 6670 -10200
+rect 6670 -10320 6760 -10200
+<< metal2 >>
+rect 4660 2000 4740 2010
+rect 4660 1920 4740 1930
+rect 830 1750 1040 1890
+rect 1800 670 1910 840
+rect 1770 160 1890 320
+rect 2720 -1460 2890 -1320
+rect 3140 -1660 3320 -1650
+rect 3140 -1790 3320 -1780
+rect 1260 -2150 1530 -2140
+rect 1260 -2430 1530 -2420
+rect -1380 -4020 -1270 -4010
+rect -1380 -8760 -1270 -4120
+rect -1020 -4690 -910 -4530
+rect 4190 -5080 4290 -5070
+rect 5080 -5080 5170 -5070
+rect 4290 -5200 5080 -5080
+rect 4190 -5210 4290 -5200
+rect 5080 -5210 5170 -5200
+rect 3880 -5340 4500 -5260
+rect 1700 -6390 1900 -6240
+rect 1740 -6900 1920 -6760
+rect 4320 -7540 4500 -5340
+rect 4320 -7710 5050 -7540
+rect 2850 -7990 3020 -7980
+rect 2850 -8150 3020 -8140
+rect 4550 -8090 4620 -8080
+rect 4550 -8260 4620 -8250
+rect 4930 -8540 5050 -7710
+rect 2670 -8790 2920 -8600
+rect 4930 -8650 6350 -8540
+rect 4600 -8760 4720 -8660
+rect -1380 -8860 -1270 -8850
+rect 5440 -8910 5500 -8900
+rect 5640 -8910 5700 -8900
+rect 5830 -8910 5890 -8900
+rect 5500 -9090 5640 -8910
+rect 5700 -9090 5830 -8910
+rect 5440 -9100 5500 -9090
+rect 5640 -9100 5700 -9090
+rect 5830 -9100 5890 -9090
+rect 1250 -9210 1480 -9200
+rect 3170 -9310 3550 -9140
+rect 5540 -9150 5600 -9140
+rect 5740 -9150 5800 -9140
+rect 5930 -9150 5990 -9140
+rect 5080 -9310 5540 -9150
+rect 5600 -9310 5740 -9150
+rect 5800 -9310 5930 -9150
+rect 5540 -9320 5600 -9310
+rect 5740 -9320 5800 -9310
+rect 5930 -9320 5990 -9310
+rect 6060 -9300 6130 -9290
+rect 6060 -9420 6130 -9410
+rect 1250 -9660 1480 -9650
+rect 6230 -9700 6350 -8650
+rect 6230 -9810 6760 -9700
+rect 6390 -9960 6460 -9950
+rect 6390 -10080 6460 -10070
+rect 6620 -10200 6760 -9810
+rect 6620 -10330 6760 -10320
+<< via2 >>
+rect 4660 1930 4740 2000
+rect 3140 -1780 3320 -1660
+rect 1260 -2420 1530 -2150
+rect 5080 -5200 5170 -5080
+rect 2850 -8140 3020 -7990
+rect 4550 -8250 4620 -8090
+rect 1250 -9650 1480 -9210
+rect 6060 -9410 6130 -9300
+rect 6390 -10070 6460 -9960
+<< metal3 >>
+rect 1040 1990 1140 2120
+rect 4630 1910 4640 2020
+rect 4760 1910 4770 2020
+rect 2900 1040 3170 1170
+rect 3130 -1660 3330 -1650
+rect 3130 -1780 3140 -1660
+rect 3320 -1780 3330 -1660
+rect 3130 -2020 3330 -1780
+rect 3140 -2140 3320 -2020
+rect 1250 -2150 1540 -2145
+rect 1250 -2420 1260 -2150
+rect 1530 -2420 1540 -2150
+rect 1250 -2425 1540 -2420
+rect 630 -2970 700 -2870
+rect 5070 -5080 5180 -5075
+rect 5070 -5200 5080 -5080
+rect 5170 -5200 5180 -5080
+rect 5070 -5205 5180 -5200
+rect 2920 -6050 3180 -5930
+rect 2840 -7990 3030 -7985
+rect 2840 -8140 2850 -7990
+rect 3020 -8140 3030 -7990
+rect 2840 -8145 3030 -8140
+rect 4540 -8090 4630 -8085
+rect 1240 -9210 1490 -9205
+rect 2850 -9210 3020 -8145
+rect 4540 -8250 4550 -8090
+rect 4620 -8250 5190 -8090
+rect 4540 -8255 4630 -8250
+rect 1240 -9650 1250 -9210
+rect 1480 -9650 1490 -9210
+rect 6050 -9300 6140 -9295
+rect 6050 -9410 6060 -9300
+rect 6130 -9410 6460 -9300
+rect 6050 -9415 6140 -9410
+rect 1240 -9655 1490 -9650
+rect 630 -10020 700 -9920
+rect 6390 -9955 6460 -9410
+rect 6380 -9960 6470 -9955
+rect 6380 -10070 6390 -9960
+rect 6460 -10070 6470 -9960
+rect 6380 -10075 6470 -10070
+<< via3 >>
+rect 4640 2000 4760 2020
+rect 4640 1930 4660 2000
+rect 4660 1930 4740 2000
+rect 4740 1930 4760 2000
+rect 4640 1910 4760 1930
+rect 1260 -2420 1530 -2150
+rect 5080 -5200 5170 -5080
+rect 1250 -9650 1480 -9210
+<< metal4 >>
+rect 4639 2020 4761 2021
+rect 4639 1910 4640 2020
+rect 4760 1960 4761 2020
+rect 4760 1910 5080 1960
+rect 4639 1909 5080 1910
+rect 4640 1850 5080 1909
+rect 500 -2560 860 -1940
+rect 1259 -2150 1531 -2149
+rect 1259 -2260 1260 -2150
+rect 1530 -2260 1531 -2150
+rect 1530 -2420 2200 -2260
+rect 1370 -2560 2200 -2420
+rect 5060 -5080 5760 -4030
+rect 5060 -5200 5080 -5080
+rect 5170 -5200 5760 -5080
+rect 5060 -5360 5760 -5200
+rect 11390 -5310 11730 -4190
+rect 500 -9640 880 -9060
+rect 1249 -9210 1481 -9209
+rect 1249 -9380 1250 -9210
+rect 1480 -9380 1481 -9210
+rect 1480 -9650 1820 -9380
+rect 1360 -9800 1820 -9650
+<< via4 >>
+rect 1090 -2420 1260 -2260
+rect 1260 -2420 1370 -2260
+rect 1090 -2560 1370 -2420
+rect 1060 -9650 1250 -9380
+rect 1250 -9650 1360 -9380
+rect 1060 -9800 1360 -9650
+<< metal5 >>
+rect 3230 2360 5960 2680
+rect 3230 1630 3590 2360
+rect 5640 1880 5960 2360
+rect 1066 -2260 1394 -2236
+rect 1066 -2560 1090 -2260
+rect 1370 -2560 1394 -2260
+rect 1066 -2584 1394 -2560
+rect 4360 -2680 5080 -2360
+rect 5750 -4590 6070 -3980
+rect 3300 -4970 6070 -4590
+rect 3300 -5460 3680 -4970
+rect 4680 -4980 6070 -4970
+rect 5750 -5430 6070 -4980
+rect 11110 -5520 11470 -3990
+rect 1036 -9380 1384 -9356
+rect 1036 -9800 1060 -9380
+rect 1360 -9800 1384 -9380
+rect 4300 -9750 5060 -9430
+rect 1036 -9824 1384 -9800
+use sky130_fd_pr__cap_mim_m3_1_J5CT7Z  sky130_fd_pr__cap_mim_m3_1_J5CT7Z_0
+timestamp 1647868710
+transform 1 0 3290 0 1 -10380
+box -1650 -1300 1649 1300
+use sky130_fd_pr__cap_mim_m3_1_J5CT7Z  sky130_fd_pr__cap_mim_m3_1_J5CT7Z_1
+timestamp 1647868710
+transform 1 0 3280 0 1 -3290
+box -1650 -1300 1649 1300
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_0
+timestamp 1647868710
+transform -1 0 8373 0 -1 -8409
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_mim_m3_2_LJ5JLG#0  sky130_fd_pr__cap_mim_m3_2_LJ5JLG_1
+timestamp 1647868710
+transform -1 0 8373 0 -1 -1099
+box -3351 -3101 3373 3101
+use sky130_fd_pr__cap_var_lvt_MZUN4J  sky130_fd_pr__cap_var_lvt_MZUN4J_0
+timestamp 1647868710
+transform 1 0 3733 0 1 -10422
+box -2283 -728 2283 728
+use sky130_fd_pr__nfet_01v8_CDW43Z  sky130_fd_pr__nfet_01v8_CDW43Z_0
+timestamp 1647868710
+transform 1 0 6476 0 1 -10820
+box -296 -260 296 260
+use sky130_fd_pr__nfet_01v8_SC2JGL  sky130_fd_pr__nfet_01v8_SC2JGL_0
+timestamp 1647868710
+transform 1 0 5717 0 1 -9110
+box -407 -410 407 410
+use sky130_fd_pr__pfet_01v8_GCYTE7  sky130_fd_pr__pfet_01v8_GCYTE7_0
+timestamp 1647868710
+transform 1 0 6476 0 1 -10261
+box -296 -269 296 269
+use tia_cur_mirror  tia_cur_mirror_0
+timestamp 1647868710
+transform 1 0 3420 0 1 -8620
+box -60 -900 1822 740
+use tia_one_tia  tia_one_tia_0
+timestamp 1647868710
+transform 1 0 614 0 1 -890
+box -2010 -3360 3840 3680
+use tia_one_tia  tia_one_tia_1
+timestamp 1647868710
+transform 1 0 614 0 1 -7960
+box -2010 -3360 3840 3680
+<< labels >>
+rlabel metal1 -1840 -1240 -1560 -1040 1 Input
+port 6 n
+rlabel metal4 11480 -4560 11690 -4360 1 VN
+port 8 n
+rlabel metal2 2720 -1460 2890 -1320 3 VM5D
+rlabel metal3 1040 1990 1140 2120 1 Out_1
+port 4 n
+rlabel metal2 4600 -8760 4720 -8660 1 VM6D
+rlabel metal3 6390 -9510 6450 -9410 1 Disable_TIA
+port 5 n
+rlabel metal1 6090 -9890 6150 -9850 1 Disable_TIA_B
+rlabel metal3 630 -10020 700 -9920 1 VM40D
+rlabel metal3 630 -2970 700 -2870 1 VM28D
+rlabel metal3 5080 -8250 5190 -8090 1 I_Bias1
+port 7 n
+rlabel metal2 1800 670 1910 840 1 Out_1
+rlabel metal3 2900 1040 3170 1170 1 Out_2
+port 2 n
+rlabel metal5 11130 -5060 11230 -4890 1 VPP
+port 1 n
+rlabel metal3 2920 -6050 3180 -5930 1 VM31D
+rlabel metal2 1700 -6390 1900 -6240 1 Out_ref
+rlabel metal2 1740 -6900 1920 -6760 1 VM39D
+rlabel metal2 2670 -8790 2920 -8600 1 VM36D
+<< end >>
diff --git a/mag/tia/tia_core_flat.ext b/mag/tia/tia_core_flat.ext
new file mode 100644
index 0000000..8a88a0c
--- /dev/null
+++ b/mag/tia/tia_core_flat.ext
@@ -0,0 +1,772 @@
+timestamp 0
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+parameters sky130_fd_pr__nfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__pfet_01v8 l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__cap_var_lvt l=l w=w a1=as a2=ad p1=ps p2=pd
+parameters sky130_fd_pr__nfet_01v8_lvt l=l w=w a1=as p1=ps a2=ad p2=pd
+parameters sky130_fd_pr__cap_mim_m3_1 w=w l=l
+parameters sky130_fd_pr__cap_mim_m3_2 w=w l=l
+port "Disable_TIA" 5 6390 -9510 6450 -9410 m3
+port "I_Bias1" 7 5080 -8250 5190 -8090 m3
+port "Out_2" 2 2900 1040 3170 1170 m3
+port "Out_1" 4 1040 1990 1140 2120 m3
+port "Input" 6 -1840 -1240 -1560 -1040 m1
+port "VPP" 1 11130 -5060 11230 -4890 m5
+port "VN" 8 11480 -4560 11690 -4360 m4
+node "Disable_TIA" 4128 4880.2 6390 -9510 m3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 202980 7740 0 0 38420 2872 217268 6612 18200 800 94950 2430 0 0 0 0 0 0
+node "VM6D" 11781 3625.32 3498 -8490 ndif 0 0 0 0 0 0 0 0 251200 9256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 138720 8840 225120 9434 579000 5840 0 0 0 0 0 0 0 0
+node "VM36D" 11781 3751.73 1602 -8490 ndif 0 0 0 0 0 0 0 0 251200 9256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 138720 8840 225120 9434 579000 5840 0 0 0 0 0 0 0 0
+node "VM40D" 221 113237 -1208 -11110 ndif 0 0 0 0 0 0 0 0 2572800 96064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1442688 91936 2346240 98176 5319142 29712 1613500 10640 21872800 20084 1216640 8244 0 0
+node "VM31D" 31379 1949.19 2412 -5577 pdif 0 0 0 0 0 0 0 0 371200 14656 139200 5496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 305184 19448 496320 20768 834794 10400 869400 4900 0 0 0 0 0 0
+node "Out_ref" 74030 6852.46 -1188 -8454 ndif 0 0 0 0 0 0 0 0 1206400 47632 742400 29312 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 912432 36272 0 0 1360816 86032 2448962 91412 3084084 39524 1452950 7800 0 0 0 0 0 0
+node "Disable_TIA_B" 629 69364.4 -1164 -11198 p 0 0 0 0 0 0 0 0 5800 316 5800 316 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5911200 247760 0 0 592144 49248 3904509 85586 533500 9920 0 0 0 0 0 0 0 0
+node "VM5D" 11781 3385.96 1602 -1420 ndif 0 0 0 0 0 0 0 0 251200 9256 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 138720 8840 225120 9434 579000 5840 0 0 0 0 0 0 0 0
+node "I_Bias1" 16776 92601.5 5080 -8250 m3 0 0 0 0 0 0 0 0 236000 8380 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2997432 72000 0 0 598536 38676 2986280 65584 324100 5120 17517050 28146 494592 10688 0 0 0 0
+node "VM28D" 221 113419 -1208 -4040 ndif 0 0 0 0 0 0 0 0 2572800 96064 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1442688 91936 2346240 98176 5319142 29712 1613500 10640 21858722 20066 1216640 8244 0 0
+node "Out_2" 31379 1795.96 2900 1040 m3 0 0 0 0 0 0 0 0 371200 14656 139200 5496 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 305184 19448 496320 20768 834794 10400 869400 4900 0 0 0 0 0 0
+node "Out_1" 74030 6418.27 1040 1990 m3 0 0 0 0 0 0 0 0 1206400 47632 742400 29312 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 912432 36272 0 0 1360816 86032 2448962 91412 3084084 39524 1452950 7800 0 0 0 0 0 0
+node "VM39D" 63224 29422.3 2300 -7574 pw 2816944 6752 0 0 0 0 0 0 529600 20248 206040 12120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4920900 195252 0 0 2024752 95128 4213736 89156 1255926 14144 0 0 0 0 0 0 0 0
+node "Input" 63224 28646.5 -1840 -1240 m1 2816944 6752 0 0 0 0 0 0 529600 20248 206040 12120 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4920900 195252 0 0 2024752 95128 4327496 90104 1255926 14144 0 0 0 0 0 0 0 0
+node "VPP" 14377 245773 11130 -5060 m5 0 0 8755200 16800 18597032 53100 0 0 2492120 106840 1722600 68100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4790488 156752 1868704 73456 4754398 54916 582000 5700 220248 2656 110685356 101694 0 0
+substrate "VN" 0 0 11480 -4560 m4 0 0 0 0 4115880 19020 0 0 4064600 132900 3285488 193264 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1188000 27760 0 0 17387924 283020 3605448 152376 6274868 54616 1744600 14280 98655013 81752 7464344 47844 0 0
+cap "Disable_TIA" "VM6D" 12.4454
+cap "Disable_TIA_B" "VM5D" 5.53309
+cap "VM28D" "Input" 28294.9
+cap "VM28D" "VM39D" 247.815
+cap "Out_ref" "VM31D" 6662.16
+cap "Disable_TIA_B" "VM36D" 37.9601
+cap "VM39D" "Out_ref" 42802
+cap "VM28D" "Out_2" 3933.13
+cap "Disable_TIA_B" "VPP" 776.825
+cap "I_Bias1" "VM5D" 4642.33
+cap "Disable_TIA_B" "VM6D" 33.3635
+cap "I_Bias1" "VM36D" 5774.97
+cap "I_Bias1" "VPP" 3787.81
+cap "VM28D" "Out_ref" 205.14
+cap "I_Bias1" "VM6D" 15212.2
+cap "Out_1" "Disable_TIA_B" 270.495
+cap "Disable_TIA_B" "Input" 1423.65
+cap "VM40D" "VM36D" 1413.18
+cap "Disable_TIA_B" "VM39D" 6841.05
+cap "Out_1" "I_Bias1" 166.456
+cap "VM40D" "VPP" 42977.9
+cap "I_Bias1" "VM31D" 418.593
+cap "VM40D" "VM6D" 484.05
+cap "I_Bias1" "Input" 2161.16
+cap "I_Bias1" "VM39D" 3090.05
+cap "Disable_TIA_B" "VM28D" 17435.7
+cap "I_Bias1" "Out_2" 49.0684
+cap "Disable_TIA_B" "Out_ref" 1026.78
+cap "I_Bias1" "VM28D" 2025.89
+cap "VM5D" "VPP" 15.182
+cap "VM40D" "VM31D" 3840.58
+cap "I_Bias1" "Out_ref" 370.372
+cap "VM36D" "VPP" 15.182
+cap "VM40D" "VM39D" 27451.7
+cap "Disable_TIA" "Disable_TIA_B" 770.185
+cap "VM36D" "VM6D" 444.164
+cap "VM6D" "VPP" 233.675
+cap "Out_1" "VM5D" 671.192
+cap "I_Bias1" "Disable_TIA" 761.68
+cap "VM40D" "Out_ref" 103433
+cap "VM5D" "Input" 10794
+cap "Out_1" "VPP" 61817.6
+cap "VM36D" "VM31D" 25.5578
+cap "VPP" "VM31D" 7713.63
+cap "VM5D" "Out_2" 25.5578
+cap "I_Bias1" "Disable_TIA_B" 3483.6
+cap "VM39D" "VM36D" 11005
+cap "VPP" "Input" 35428.2
+cap "VM39D" "VPP" 34593.5
+cap "VM6D" "VM31D" 25.1722
+cap "VM28D" "VM5D" 1487.49
+cap "VM39D" "VM6D" 352.756
+cap "Out_2" "VPP" 7431.04
+cap "VM28D" "VPP" 42932.8
+cap "VM36D" "Out_ref" 671.192
+cap "VM40D" "Disable_TIA_B" 19273.8
+cap "VPP" "Out_ref" 61755.4
+cap "Out_1" "Input" 42576.1
+cap "VM6D" "Out_ref" 28.1901
+cap "Out_1" "Out_2" 6554.27
+cap "VM39D" "VM31D" 28931.4
+cap "VM40D" "I_Bias1" 3177.87
+cap "Out_1" "VM28D" 103607
+cap "Out_2" "Input" 28542.7
+cap "Disable_TIA" "VPP" 1167.95
+device csubckt sky130_fd_pr__cap_mim_m3_2 5624 -11409 5625 -11408 w=6000 l=6000 "None" "VPP" 23680 0 "VN" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -1246 -9000 -1245 -8999 w=5000 l=3600 "None" "VPP" 16880 0 "VM40D" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 -1246 -1930 -1245 -1929 w=5000 l=3600 "None" "VPP" 16880 0 "VM28D" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_2 5624 -4099 5625 -4098 w=6000 l=6000 "None" "VPP" 23680 0 "VN" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_1 1740 -11580 1741 -11579 w=3000 l=2400 "None" "VN" 10480 0 "I_Bias1" 0 0
+device csubckt sky130_fd_pr__cap_mim_m3_1 1730 -4490 1731 -4489 w=3000 l=2400 "None" "VN" 10480 0 "I_Bias1" 0 0
+device msubckt sky130_fd_pr__nfet_01v8 6376 -10870 6377 -10869 l=200 w=100 "VN" "Disable_TIA" 400 0 "Disable_TIA_B" 100 0 "VN" 100 0
+device msubckt sky130_fd_pr__pfet_01v8 6376 -10311 6377 -10310 l=200 w=100 "VPP" "Disable_TIA" 400 0 "Disable_TIA_B" 100 0 "VPP" 100 0
+device subckt sky130_fd_pr__cap_var_lvt 5373 -10922 5374 -10921 l=400 w=1000 "VN" "Disable_TIA_B" 800 0 "VN" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt 4453 -10922 4454 -10921 l=400 w=1000 "VN" "Disable_TIA_B" 800 0 "VN" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt 3533 -10922 3534 -10921 l=400 w=1000 "VN" "Disable_TIA_B" 800 0 "VN" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt 2613 -10922 2614 -10921 l=400 w=1000 "VN" "Disable_TIA_B" 800 0 "VN" 2000 0
+device subckt sky130_fd_pr__cap_var_lvt 1693 -10922 1694 -10921 l=400 w=1000 "VN" "Disable_TIA_B" 800 0 "VN" 2000 0
+device msubckt sky130_fd_pr__nfet_01v8 5894 -9310 5895 -9309 l=30 w=400 "VN" "Disable_TIA" 60 0 "I_Bias1" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5798 -9310 5799 -9309 l=30 w=400 "VN" "Disable_TIA" 60 0 "VN" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5702 -9310 5703 -9309 l=30 w=400 "VN" "Disable_TIA" 60 0 "I_Bias1" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5606 -9310 5607 -9309 l=30 w=400 "VN" "Disable_TIA" 60 0 "VN" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 5510 -9310 5511 -9309 l=30 w=400 "VN" "Disable_TIA" 60 0 "I_Bias1" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4846 -9310 4847 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM6D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4588 -9310 4589 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4330 -9310 4331 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM6D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4072 -9310 4073 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3814 -9310 3815 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM6D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3556 -9310 3557 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2950 -9310 2951 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM36D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2692 -9310 2693 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2434 -9310 2435 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM36D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2176 -9310 2177 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1918 -9310 1919 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VM36D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1660 -9310 1661 -9309 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -11110 1159 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -11110 1063 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -11110 967 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -11110 871 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -11110 775 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -11110 679 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -11110 583 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -11110 487 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -11110 391 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -11110 295 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -11110 199 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -11110 103 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -11110 7 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -11110 -89 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -11110 -185 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -11110 -281 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -11110 -377 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -11110 -473 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -11110 -569 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -11110 -665 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -11110 -761 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -11110 -857 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -11110 -953 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -11110 -1049 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -11110 -1145 -11109 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -10492 1159 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -10492 1063 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -10492 967 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -10492 871 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -10492 775 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -10492 679 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -10492 583 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -10492 487 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -10492 391 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -10492 295 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -10492 199 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -10492 103 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -10492 7 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -10492 -89 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -10492 -185 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -10492 -281 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -10492 -377 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -10492 -473 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -10492 -569 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -10492 -665 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -10492 -761 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -10492 -857 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -10492 -953 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -10492 -1049 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -10492 -1145 -10491 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -9874 1159 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -9874 1063 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -9874 967 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -9874 871 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -9874 775 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -9874 679 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -9874 583 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -9874 487 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -9874 391 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -9874 295 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -9874 199 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -9874 103 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -9874 7 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -9874 -89 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -9874 -185 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -9874 -281 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -9874 -377 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -9874 -473 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -9874 -569 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -9874 -665 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -9874 -761 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -9874 -857 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -9874 -953 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -9874 -1049 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -9874 -1145 -9873 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -9256 1159 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -9256 1063 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -9256 967 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -9256 871 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -9256 775 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -9256 679 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -9256 583 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -9256 487 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -9256 391 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -9256 295 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -9256 199 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -9256 103 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -9256 7 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -9256 -89 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -9256 -185 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -9256 -281 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -9256 -377 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -9256 -473 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -9256 -569 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -9256 -665 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -9256 -761 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -9256 -857 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -9256 -953 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -9256 -1049 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -9256 -1145 -9255 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM40D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4616 -8490 4617 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4520 -8490 4521 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4424 -8490 4425 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4328 -8490 4329 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4232 -8490 4233 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4136 -8490 4137 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 4040 -8490 4041 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3944 -8490 3945 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3848 -8490 3849 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3752 -8490 3753 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3656 -8490 3657 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "I_Bias1" 400 0 "VM6D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 3560 -8490 3561 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM6D" 400 0 "I_Bias1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2720 -8490 2721 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2624 -8490 2625 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2528 -8490 2529 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2432 -8490 2433 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2336 -8490 2337 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2240 -8490 2241 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2144 -8490 2145 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2048 -8490 2049 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1952 -8490 1953 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1856 -8490 1857 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1760 -8490 1761 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM39D" 400 0 "VM36D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1664 -8490 1665 -8489 l=30 w=400 "VN" "I_Bias1" 60 0 "VM36D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3902 -7330 3903 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3804 -7330 3805 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3706 -7330 3707 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3608 -7330 3609 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3510 -7330 3511 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3412 -7330 3413 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3314 -7330 3315 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3216 -7330 3217 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3118 -7330 3119 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3020 -7330 3021 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2922 -7330 2923 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2824 -7330 2825 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2726 -7330 2727 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2628 -7330 2629 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2530 -7330 2531 -7329 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3902 -6712 3903 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3804 -6712 3805 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3706 -6712 3707 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3608 -6712 3609 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3510 -6712 3511 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3412 -6712 3413 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3314 -6712 3315 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3216 -6712 3217 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3118 -6712 3119 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3020 -6712 3021 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2922 -6712 2923 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2824 -6712 2825 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2726 -6712 2727 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2628 -6712 2629 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM39D" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2530 -6712 2531 -6711 l=40 w=400 "VM39D" "Out_ref" 80 0 "VM31D" 400 0 "VM39D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -8454 1223 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -8454 1125 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -8454 1027 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -8454 929 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -8454 831 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -8454 733 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -8454 635 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -8454 537 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -8454 439 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -8454 341 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -8454 243 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -8454 145 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -8454 47 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -8454 -51 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -8454 -149 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -8454 -247 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -8454 -345 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -8454 -443 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -8454 -541 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -8454 -639 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -8454 -737 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -8454 -835 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -8454 -933 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -8454 -1031 -8453 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -8454 -1129 -8453 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -7836 1223 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -7836 1125 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -7836 1027 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -7836 929 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -7836 831 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -7836 733 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -7836 635 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -7836 537 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -7836 439 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -7836 341 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -7836 243 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -7836 145 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -7836 47 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -7836 -51 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -7836 -149 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -7836 -247 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -7836 -345 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -7836 -443 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -7836 -541 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -7836 -639 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -7836 -737 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -7836 -835 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -7836 -933 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -7836 -1031 -7835 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -7836 -1129 -7835 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -7010 1223 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -7010 1125 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -7010 1027 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -7010 929 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -7010 831 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -7010 733 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -7010 635 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -7010 537 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -7010 439 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -7010 341 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -7010 243 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -7010 145 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -7010 47 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -7010 -51 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -7010 -149 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -7010 -247 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -7010 -345 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -7010 -443 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -7010 -541 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -7010 -639 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -7010 -737 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -7010 -835 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -7010 -933 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -7010 -1031 -7009 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -7010 -1129 -7009 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -6392 1223 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -6392 1125 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -6392 1027 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -6392 929 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -6392 831 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -6392 733 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -6392 635 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -6392 537 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -6392 439 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -6392 341 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -6392 243 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -6392 145 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -6392 47 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -6392 -51 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -6392 -149 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -6392 -247 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -6392 -345 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -6392 -443 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -6392 -541 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -6392 -639 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -6392 -737 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -6392 -835 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -6392 -933 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -6392 -1031 -6391 l=40 w=400 "VN" "VM39D" 80 0 "VM40D" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -6392 -1129 -6391 l=40 w=400 "VN" "VM39D" 80 0 "Out_ref" 400 0 "VM40D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3892 -5577 3893 -5576 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3734 -5577 3735 -5576 l=100 w=400 "VPP" "VN" 200 0 "VM31D" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3576 -5577 3577 -5576 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3418 -5577 3419 -5576 l=100 w=400 "VPP" "VN" 200 0 "VM31D" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3260 -5577 3261 -5576 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3102 -5577 3103 -5576 l=100 w=400 "VPP" "VN" 200 0 "VM31D" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2944 -5577 2945 -5576 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2786 -5577 2787 -5576 l=100 w=400 "VPP" "VN" 200 0 "VM31D" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2628 -5577 2629 -5576 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "VM31D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2470 -5577 2471 -5576 l=100 w=400 "VPP" "VN" 200 0 "VM31D" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2040 -5561 2041 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1942 -5561 1943 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1844 -5561 1845 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1746 -5561 1747 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1648 -5561 1649 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1550 -5561 1551 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1452 -5561 1453 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1354 -5561 1355 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1256 -5561 1257 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1158 -5561 1159 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1060 -5561 1061 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 962 -5561 963 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 864 -5561 865 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 766 -5561 767 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 668 -5561 669 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2040 -4925 2041 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1942 -4925 1943 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1844 -4925 1845 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1746 -4925 1747 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1648 -4925 1649 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1550 -4925 1551 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1452 -4925 1453 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1354 -4925 1355 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1256 -4925 1257 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1158 -4925 1159 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1060 -4925 1061 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 962 -4925 963 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 864 -4925 865 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 766 -4925 767 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 668 -4925 669 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 242 -5561 243 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 144 -5561 145 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 46 -5561 47 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -52 -5561 -51 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -150 -5561 -149 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -248 -5561 -247 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -346 -5561 -345 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -444 -5561 -443 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -542 -5561 -541 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -640 -5561 -639 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -738 -5561 -737 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -836 -5561 -835 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -934 -5561 -933 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1032 -5561 -1031 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1130 -5561 -1129 -5560 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 242 -4925 243 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 144 -4925 145 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 46 -4925 47 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -52 -4925 -51 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -150 -4925 -149 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -248 -4925 -247 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -346 -4925 -345 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -444 -4925 -443 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -542 -4925 -541 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -640 -4925 -639 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -738 -4925 -737 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -836 -4925 -835 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -934 -4925 -933 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1032 -4925 -1031 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "VPP" 400 0 "Out_ref" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1130 -4925 -1129 -4924 l=40 w=400 "VPP" "VM39D" 80 0 "Out_ref" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2950 -2240 2951 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VM5D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2692 -2240 2693 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2434 -2240 2435 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VM5D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2176 -2240 2177 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1918 -2240 1919 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VM5D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1660 -2240 1661 -2239 l=200 w=400 "VN" "I_Bias1" 400 0 "VN" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -4040 1159 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -4040 1063 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -4040 967 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -4040 871 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -4040 775 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -4040 679 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -4040 583 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -4040 487 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -4040 391 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -4040 295 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -4040 199 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -4040 103 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -4040 7 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -4040 -89 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -4040 -185 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -4040 -281 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -4040 -377 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -4040 -473 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -4040 -569 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -4040 -665 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -4040 -761 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -4040 -857 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -4040 -953 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -4040 -1049 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -4040 -1145 -4039 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -3422 1159 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -3422 1063 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -3422 967 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -3422 871 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -3422 775 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -3422 679 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -3422 583 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -3422 487 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -3422 391 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -3422 295 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -3422 199 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -3422 103 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -3422 7 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -3422 -89 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -3422 -185 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -3422 -281 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -3422 -377 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -3422 -473 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -3422 -569 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -3422 -665 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -3422 -761 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -3422 -857 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -3422 -953 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -3422 -1049 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -3422 -1145 -3421 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -2804 1159 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -2804 1063 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -2804 967 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -2804 871 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -2804 775 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -2804 679 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -2804 583 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -2804 487 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -2804 391 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -2804 295 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -2804 199 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -2804 103 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -2804 7 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -2804 -89 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -2804 -185 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -2804 -281 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -2804 -377 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -2804 -473 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -2804 -569 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -2804 -665 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -2804 -761 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -2804 -857 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -2804 -953 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -2804 -1049 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -2804 -1145 -2803 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1158 -2186 1159 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1062 -2186 1063 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 966 -2186 967 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 870 -2186 871 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 774 -2186 775 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 678 -2186 679 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 582 -2186 583 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 486 -2186 487 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 390 -2186 391 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 294 -2186 295 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 198 -2186 199 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 102 -2186 103 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 6 -2186 7 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -90 -2186 -89 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -186 -2186 -185 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -282 -2186 -281 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -378 -2186 -377 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -474 -2186 -473 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -570 -2186 -569 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -666 -2186 -665 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -762 -2186 -761 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -858 -2186 -857 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -954 -2186 -953 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1050 -2186 -1049 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VN" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 -1146 -2186 -1145 -2185 l=30 w=400 "VN" "Disable_TIA_B" 60 0 "VM28D" 400 0 "VN" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2720 -1420 2721 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2624 -1420 2625 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2528 -1420 2529 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2432 -1420 2433 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2336 -1420 2337 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2240 -1420 2241 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2144 -1420 2145 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 2048 -1420 2049 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1952 -1420 1953 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1856 -1420 1857 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1760 -1420 1761 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "Input" 400 0 "VM5D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8 1664 -1420 1665 -1419 l=30 w=400 "VN" "I_Bias1" 60 0 "VM5D" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3902 -260 3903 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3804 -260 3805 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3706 -260 3707 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3608 -260 3609 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3510 -260 3511 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3412 -260 3413 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3314 -260 3315 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3216 -260 3217 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3118 -260 3119 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3020 -260 3021 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2922 -260 2923 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2824 -260 2825 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2726 -260 2727 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2628 -260 2629 -259 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2530 -260 2531 -259 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3902 358 3903 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3804 358 3805 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3706 358 3707 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3608 358 3609 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3510 358 3511 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3412 358 3413 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3314 358 3315 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3216 358 3217 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3118 358 3119 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 3020 358 3021 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2922 358 2923 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2824 358 2825 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2726 358 2727 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2628 358 2629 359 l=40 w=400 "Input" "Out_1" 80 0 "Input" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 2530 358 2531 359 l=40 w=400 "Input" "Out_1" 80 0 "Out_2" 400 0 "Input" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -1384 1223 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -1384 1125 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -1384 1027 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -1384 929 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -1384 831 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -1384 733 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -1384 635 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -1384 537 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -1384 439 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -1384 341 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -1384 243 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -1384 145 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -1384 47 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -1384 -51 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -1384 -149 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -1384 -247 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -1384 -345 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -1384 -443 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -1384 -541 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -1384 -639 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -1384 -737 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -1384 -835 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -1384 -933 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -1384 -1031 -1383 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -1384 -1129 -1383 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 -766 1223 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 -766 1125 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 -766 1027 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 -766 929 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 -766 831 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 -766 733 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 -766 635 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 -766 537 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 -766 439 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 -766 341 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 -766 243 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 -766 145 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 -766 47 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 -766 -51 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 -766 -149 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 -766 -247 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 -766 -345 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 -766 -443 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 -766 -541 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 -766 -639 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 -766 -737 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 -766 -835 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 -766 -933 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 -766 -1031 -765 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 -766 -1129 -765 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 60 1223 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 60 1125 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 60 1027 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 60 929 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 60 831 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 60 733 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 60 635 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 60 537 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 60 439 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 60 341 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 60 243 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 60 145 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 60 47 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 60 -51 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 60 -149 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 60 -247 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 60 -345 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 60 -443 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 60 -541 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 60 -639 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 60 -737 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 60 -835 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 60 -933 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 60 -1031 61 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 60 -1129 61 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1222 678 1223 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1124 678 1125 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 1026 678 1027 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 928 678 929 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 830 678 831 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 732 678 733 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 634 678 635 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 536 678 537 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 438 678 439 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 340 678 341 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 242 678 243 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 144 678 145 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt 46 678 47 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -52 678 -51 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -150 678 -149 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -248 678 -247 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -346 678 -345 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -444 678 -443 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -542 678 -541 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -640 678 -639 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -738 678 -737 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -836 678 -835 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -934 678 -933 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1032 678 -1031 679 l=40 w=400 "VN" "Input" 80 0 "VM28D" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__nfet_01v8_lvt -1130 678 -1129 679 l=40 w=400 "VN" "Input" 80 0 "Out_1" 400 0 "VM28D" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3892 1493 3893 1494 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3734 1493 3735 1494 l=100 w=400 "VPP" "VN" 200 0 "Out_2" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3576 1493 3577 1494 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3418 1493 3419 1494 l=100 w=400 "VPP" "VN" 200 0 "Out_2" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3260 1493 3261 1494 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 3102 1493 3103 1494 l=100 w=400 "VPP" "VN" 200 0 "Out_2" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2944 1493 2945 1494 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2786 1493 2787 1494 l=100 w=400 "VPP" "VN" 200 0 "Out_2" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2628 1493 2629 1494 l=100 w=400 "VPP" "VN" 200 0 "VPP" 400 0 "Out_2" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2470 1493 2471 1494 l=100 w=400 "VPP" "VN" 200 0 "Out_2" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2040 1509 2041 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1942 1509 1943 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1844 1509 1845 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1746 1509 1747 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1648 1509 1649 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1550 1509 1551 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1452 1509 1453 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1354 1509 1355 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1256 1509 1257 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1158 1509 1159 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1060 1509 1061 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 962 1509 963 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 864 1509 865 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 766 1509 767 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 668 1509 669 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 2040 2145 2041 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1942 2145 1943 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1844 2145 1845 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1746 2145 1747 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1648 2145 1649 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1550 2145 1551 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1452 2145 1453 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1354 2145 1355 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1256 2145 1257 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1158 2145 1159 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 1060 2145 1061 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 962 2145 963 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 864 2145 865 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 766 2145 767 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 668 2145 669 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 242 1509 243 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 144 1509 145 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 46 1509 47 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -52 1509 -51 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -150 1509 -149 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -248 1509 -247 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -346 1509 -345 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -444 1509 -443 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -542 1509 -541 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -640 1509 -639 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -738 1509 -737 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -836 1509 -835 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -934 1509 -933 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1032 1509 -1031 1510 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1130 1509 -1129 1510 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 242 2145 243 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 144 2145 145 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 46 2145 47 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -52 2145 -51 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -150 2145 -149 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -248 2145 -247 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -346 2145 -345 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -444 2145 -443 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -542 2145 -541 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -640 2145 -639 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -738 2145 -737 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -836 2145 -835 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -934 2145 -933 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1032 2145 -1031 2146 l=40 w=400 "VPP" "Input" 80 0 "VPP" 400 0 "Out_1" 400 0
+device msubckt sky130_fd_pr__pfet_01v8 -1130 2145 -1129 2146 l=40 w=400 "VPP" "Input" 80 0 "Out_1" 400 0 "VPP" 400 0
diff --git a/mag/tia/tia_core_flat.nodes b/mag/tia/tia_core_flat.nodes
new file mode 100644
index 0000000..f8542e8
--- /dev/null
+++ b/mag/tia/tia_core_flat.nodes
@@ -0,0 +1,16 @@
+Disable_TIA 6390 -9509 m3
+I_Bias1 5080 -8249 m3
+Out_2 2900 1040 m3
+Out_1 1040 1990 m3
+Input -1839 -1239 m1
+VPP 11130 -5059 m5
+VN 11480 -4559 m4
+VM6D 3498 -8489 ndif
+VM36D 1602 -8489 ndif
+VM40D -1207 -11109 ndif
+VM31D 2412 -5576 pdif
+Out_ref -1187 -8453 ndif
+Disable_TIA_B -1163 -11197 p
+VM5D 1602 -1419 ndif
+VM28D -1207 -4039 ndif
+VM39D 2300 -7573 pw
diff --git a/mag/tia/tia_core_flat.res.ext b/mag/tia/tia_core_flat.res.ext
new file mode 100644
index 0000000..ff89fc9
--- /dev/null
+++ b/mag/tia/tia_core_flat.res.ext
@@ -0,0 +1,7819 @@
+scale 1000 1 500000
+rnode "Disable_TIA.t5" 0 0 5813 -9110 0
+rnode "Disable_TIA.t3" 0 0 5621 -9110 0
+rnode "Disable_TIA.n0" 0 0 5813 -8855 0
+rnode "Disable_TIA.t6" 0 0 5909 -9110 0
+rnode "Disable_TIA.t4" 0 0 5717 -9110 0
+rnode "Disable_TIA.t2" 0 0 5525 -9110 0
+rnode "Disable_TIA.n1" 0 0 5717 -9365 0
+rnode "Disable_TIA.n2" 0 0 5909 -9365 0
+rnode "Disable_TIA.n3" 0 0 6095 -9355 0
+rnode "Disable_TIA.t1" 0 0 6476 -10820 0
+rnode "Disable_TIA.t0" 0 0 6476 -10261 0
+rnode "Disable_TIA.n4" 0 0 6450 -10170 0
+rnode "Disable_TIA" 0 0 6390 -9510 0
+rnode "Disable_TIA.n5" 0 0 6425 -9410 0
+resist "Disable_TIA.n5" "Disable_TIA" 0.067
+resist "Disable_TIA.n5" "Disable_TIA.n3" 0.141
+resist "Disable_TIA.n3" "Disable_TIA.n2" 0.238
+resist "Disable_TIA.n2" "Disable_TIA.n1" 0.342
+resist "Disable_TIA" "Disable_TIA.n4" 0.810626
+resist "Disable_TIA.n3" "Disable_TIA.n0" 1.017
+resist "Disable_TIA.n4" "Disable_TIA.t0" 13.6512
+resist "Disable_TIA.n4" "Disable_TIA.t1" 13.6841
+resist "Disable_TIA.n0" "Disable_TIA.t5" 394.193
+resist "Disable_TIA.n1" "Disable_TIA.t4" 394.193
+resist "Disable_TIA.n2" "Disable_TIA.t6" 394.193
+resist "Disable_TIA.n0" "Disable_TIA.t3" 394.535
+resist "Disable_TIA.n1" "Disable_TIA.t2" 394.535
+rnode "VM6D.t11" 0 134.445 3560 -8290 0
+rnode "VM6D.t6" 0 104.137 3752 -8290 0
+rnode "VM6D.t8" 0 104.137 3686 -8290 0
+rnode "VM6D.n0" 0 537.547 3719 -8290 0
+rnode "VM6D.n1" 0 1972.31 3740 -8404 0
+rnode "VM6D.t13" 0 104.137 3944 -8290 0
+rnode "VM6D.t16" 0 104.137 3878 -8290 0
+rnode "VM6D.n2" 0 537.538 3911 -8290 0
+rnode "VM6D.n3" 0 790.875 3932 -8404 0
+rnode "VM6D.t10" 0 104.137 4136 -8290 0
+rnode "VM6D.t14" 0 104.137 4070 -8290 0
+rnode "VM6D.n4" 0 537.547 4103 -8290 0
+rnode "VM6D.n5" 0 790.865 4124 -8404 0
+rnode "VM6D.t17" 0 104.137 4328 -8290 0
+rnode "VM6D.t7" 0 104.137 4262 -8290 0
+rnode "VM6D.n6" 0 537.547 4295 -8290 0
+rnode "VM6D.n7" 0 790.865 4316 -8404 0
+rnode "VM6D.t12" 0 104.137 4520 -8290 0
+rnode "VM6D.t15" 0 104.137 4454 -8290 0
+rnode "VM6D.n8" 0 537.547 4487 -8290 0
+rnode "VM6D.n9" 0 608.571 4508 -8404 0
+rnode "VM6D.t9" 0 119.031 4646 -8290 0
+rnode "VM6D.n10" 0 2191.75 4679 -8410 0
+rnode "VM6D.t0" 0 91.5145 3814 -9110 0
+rnode "VM6D.t2" 0 91.5145 3756 -9110 0
+rnode "VM6D.n11" 0 1201.77 3785 -9110 0
+rnode "VM6D.t5" 0 91.5145 4330 -9110 0
+rnode "VM6D.t1" 0 91.5145 4272 -9110 0
+rnode "VM6D.n12" 0 513.031 4301 -9110 0
+rnode "VM6D.n13" 0 1962.34 4279 -8996 0
+rnode "VM6D.t3" 0 91.5145 4846 -9110 0
+rnode "VM6D.t4" 0 91.5145 4788 -9110 0
+rnode "VM6D.n14" 0 528.726 4817 -9110 0
+rnode "VM6D.n15" 0 1611.26 4817 -8916 0
+rnode "VM6D" 0 1345.98 4600 -8760 0
+resist "VM6D.n10" "VM6D.n9" 0.0448458
+resist "VM6D" "VM6D.n15" 0.0913286
+resist "VM6D.n3" "VM6D.n1" 0.134883
+resist "VM6D.n5" "VM6D.n3" 0.134883
+resist "VM6D.n7" "VM6D.n5" 0.134883
+resist "VM6D.n9" "VM6D.n7" 0.134883
+resist "VM6D" "VM6D.n10" 0.145302
+resist "VM6D.n15" "VM6D.n13" 0.157081
+resist "VM6D.n3" "VM6D.n2" 0.240609
+resist "VM6D.n13" "VM6D.n12" 0.24061
+resist "VM6D.n9" "VM6D.n8" 0.241598
+resist "VM6D.n7" "VM6D.n6" 0.241598
+resist "VM6D.n5" "VM6D.n4" 0.241598
+resist "VM6D.n1" "VM6D.n0" 0.241598
+resist "VM6D.n15" "VM6D.n14" 0.251994
+resist "VM6D.n13" "VM6D.n11" 0.563568
+resist "VM6D.n11" "VM6D.t2" 8.7
+resist "VM6D.n11" "VM6D.t0" 8.7
+resist "VM6D.n12" "VM6D.t1" 8.7
+resist "VM6D.n12" "VM6D.t5" 8.7
+resist "VM6D.n14" "VM6D.t4" 8.7
+resist "VM6D.n14" "VM6D.t3" 8.7
+resist "VM6D.n2" "VM6D.t16" 9.9
+resist "VM6D.n2" "VM6D.t13" 9.9
+resist "VM6D.n8" "VM6D.t15" 9.9
+resist "VM6D.n8" "VM6D.t12" 9.9
+resist "VM6D.n6" "VM6D.t7" 9.9
+resist "VM6D.n6" "VM6D.t17" 9.9
+resist "VM6D.n4" "VM6D.t14" 9.9
+resist "VM6D.n4" "VM6D.t10" 9.9
+resist "VM6D.n0" "VM6D.t8" 9.9
+resist "VM6D.n0" "VM6D.t6" 9.9
+resist "VM6D.n10" "VM6D.t9" 10.1431
+resist "VM6D.n1" "VM6D.t11" 10.2747
+rnode "VM36D.t13" 0 146.505 1664 -8290 0
+rnode "VM36D.t8" 0 113.479 1856 -8290 0
+rnode "VM36D.t10" 0 113.479 1790 -8290 0
+rnode "VM36D.n0" 0 585.767 1823 -8290 0
+rnode "VM36D.n1" 0 2149.23 1844 -8404 0
+rnode "VM36D.t17" 0 113.479 2048 -8290 0
+rnode "VM36D.t6" 0 113.479 1982 -8290 0
+rnode "VM36D.n2" 0 585.767 2015 -8290 0
+rnode "VM36D.n3" 0 861.808 2036 -8404 0
+rnode "VM36D.t12" 0 113.479 2240 -8290 0
+rnode "VM36D.t15" 0 113.479 2174 -8290 0
+rnode "VM36D.n4" 0 585.767 2207 -8290 0
+rnode "VM36D.n5" 0 861.808 2228 -8404 0
+rnode "VM36D.t7" 0 113.479 2432 -8290 0
+rnode "VM36D.t9" 0 113.479 2366 -8290 0
+rnode "VM36D.n6" 0 585.767 2399 -8290 0
+rnode "VM36D.n7" 0 861.808 2420 -8404 0
+rnode "VM36D.t14" 0 113.479 2624 -8290 0
+rnode "VM36D.t16" 0 113.479 2558 -8290 0
+rnode "VM36D.n8" 0 585.757 2591 -8290 0
+rnode "VM36D.n9" 0 663.171 2612 -8404 0
+rnode "VM36D.t11" 0 129.709 2750 -8290 0
+rnode "VM36D.n10" 0 2465.2 2783 -8410 0
+rnode "VM36D.t2" 0 99.7236 1918 -9110 0
+rnode "VM36D.t4" 0 99.7236 1860 -9110 0
+rnode "VM36D.n11" 0 1309.57 1889 -9110 0
+rnode "VM36D.t0" 0 99.7236 2434 -9110 0
+rnode "VM36D.t3" 0 99.7236 2376 -9110 0
+rnode "VM36D.n12" 0 559.051 2405 -9110 0
+rnode "VM36D.n13" 0 2138.37 2383 -8996 0
+rnode "VM36D.t5" 0 99.7236 2950 -9110 0
+rnode "VM36D.t1" 0 99.7236 2892 -9110 0
+rnode "VM36D.n14" 0 576.154 2921 -9110 0
+rnode "VM36D.n15" 0 1677.22 2921 -8916 0
+rnode "VM36D" 0 1468.45 2670 -8790 0
+resist "VM36D.n10" "VM36D.n9" 0.0448458
+resist "VM36D" "VM36D.n15" 0.0783286
+resist "VM36D.n3" "VM36D.n1" 0.134883
+resist "VM36D.n5" "VM36D.n3" 0.134883
+resist "VM36D.n7" "VM36D.n5" 0.134883
+resist "VM36D.n9" "VM36D.n7" 0.134883
+resist "VM36D.n15" "VM36D.n13" 0.157081
+resist "VM36D" "VM36D.n10" 0.157302
+resist "VM36D.n9" "VM36D.n8" 0.240609
+resist "VM36D.n13" "VM36D.n12" 0.24061
+resist "VM36D.n7" "VM36D.n6" 0.241598
+resist "VM36D.n5" "VM36D.n4" 0.241598
+resist "VM36D.n3" "VM36D.n2" 0.241598
+resist "VM36D.n1" "VM36D.n0" 0.241598
+resist "VM36D.n15" "VM36D.n14" 0.251994
+resist "VM36D.n13" "VM36D.n11" 0.563568
+resist "VM36D.n11" "VM36D.t4" 8.7
+resist "VM36D.n11" "VM36D.t2" 8.7
+resist "VM36D.n12" "VM36D.t3" 8.7
+resist "VM36D.n12" "VM36D.t0" 8.7
+resist "VM36D.n14" "VM36D.t1" 8.7
+resist "VM36D.n14" "VM36D.t5" 8.7
+resist "VM36D.n8" "VM36D.t16" 9.9
+resist "VM36D.n8" "VM36D.t14" 9.9
+resist "VM36D.n6" "VM36D.t9" 9.9
+resist "VM36D.n6" "VM36D.t7" 9.9
+resist "VM36D.n4" "VM36D.t15" 9.9
+resist "VM36D.n4" "VM36D.t12" 9.9
+resist "VM36D.n2" "VM36D.t6" 9.9
+resist "VM36D.n2" "VM36D.t17" 9.9
+resist "VM36D.n0" "VM36D.t10" 9.9
+resist "VM36D.n0" "VM36D.t8" 9.9
+resist "VM36D.n10" "VM36D.t11" 10.1431
+resist "VM36D.n1" "VM36D.t13" 10.2747
+rnode "VM5D.t3" 0 134.302 1664 -1220 0
+rnode "VM5D.t10" 0 104.027 1856 -1220 0
+rnode "VM5D.t0" 0 104.027 1790 -1220 0
+rnode "VM5D.n0" 0 536.977 1823 -1220 0
+rnode "VM5D.n1" 0 1970.22 1844 -1334 0
+rnode "VM5D.t7" 0 104.027 2048 -1220 0
+rnode "VM5D.t8" 0 104.027 1982 -1220 0
+rnode "VM5D.n2" 0 536.977 2015 -1220 0
+rnode "VM5D.n3" 0 790.026 2036 -1334 0
+rnode "VM5D.t2" 0 104.027 2240 -1220 0
+rnode "VM5D.t5" 0 104.027 2174 -1220 0
+rnode "VM5D.n4" 0 536.977 2207 -1220 0
+rnode "VM5D.n5" 0 790.026 2228 -1334 0
+rnode "VM5D.t9" 0 104.027 2432 -1220 0
+rnode "VM5D.t11" 0 104.027 2366 -1220 0
+rnode "VM5D.n6" 0 536.967 2399 -1220 0
+rnode "VM5D.n7" 0 790.035 2420 -1334 0
+rnode "VM5D.t4" 0 104.027 2624 -1220 0
+rnode "VM5D.t6" 0 104.027 2558 -1220 0
+rnode "VM5D.n8" 0 536.977 2591 -1220 0
+rnode "VM5D.n9" 0 607.925 2612 -1334 0
+rnode "VM5D.t1" 0 118.905 2750 -1220 0
+rnode "VM5D.n10" 0 1643.28 2783 -1340 0
+rnode "VM5D.t16" 0 91.4174 1918 -2040 0
+rnode "VM5D.t12" 0 91.4174 1860 -2040 0
+rnode "VM5D.n11" 0 1200.49 1889 -2040 0
+rnode "VM5D.t14" 0 91.4174 2434 -2040 0
+rnode "VM5D.t17" 0 91.4174 2376 -2040 0
+rnode "VM5D.n12" 0 512.486 2405 -2040 0
+rnode "VM5D.n13" 0 1960.26 2383 -1926 0
+rnode "VM5D.t13" 0 91.4174 2950 -2040 0
+rnode "VM5D.t15" 0 91.4174 2892 -2040 0
+rnode "VM5D.n14" 0 528.164 2921 -2040 0
+rnode "VM5D.n15" 0 2153.15 2921 -1846 0
+rnode "VM5D" 0 1347.1 2720 -1460 0
+resist "VM5D.n10" "VM5D.n9" 0.0448458
+resist "VM5D" "VM5D.n10" 0.0493019
+resist "VM5D.n3" "VM5D.n1" 0.134883
+resist "VM5D.n5" "VM5D.n3" 0.134883
+resist "VM5D.n7" "VM5D.n5" 0.134883
+resist "VM5D.n9" "VM5D.n7" 0.134883
+resist "VM5D.n15" "VM5D.n13" 0.157081
+resist "VM5D" "VM5D.n15" 0.186329
+resist "VM5D.n7" "VM5D.n6" 0.240609
+resist "VM5D.n13" "VM5D.n12" 0.24061
+resist "VM5D.n9" "VM5D.n8" 0.241598
+resist "VM5D.n5" "VM5D.n4" 0.241598
+resist "VM5D.n3" "VM5D.n2" 0.241598
+resist "VM5D.n1" "VM5D.n0" 0.241598
+resist "VM5D.n15" "VM5D.n14" 0.251994
+resist "VM5D.n13" "VM5D.n11" 0.563568
+resist "VM5D.n11" "VM5D.t12" 8.7
+resist "VM5D.n11" "VM5D.t16" 8.7
+resist "VM5D.n12" "VM5D.t17" 8.7
+resist "VM5D.n12" "VM5D.t14" 8.7
+resist "VM5D.n14" "VM5D.t15" 8.7
+resist "VM5D.n14" "VM5D.t13" 8.7
+resist "VM5D.n6" "VM5D.t11" 9.9
+resist "VM5D.n6" "VM5D.t9" 9.9
+resist "VM5D.n8" "VM5D.t6" 9.9
+resist "VM5D.n8" "VM5D.t4" 9.9
+resist "VM5D.n4" "VM5D.t5" 9.9
+resist "VM5D.n4" "VM5D.t2" 9.9
+resist "VM5D.n2" "VM5D.t8" 9.9
+resist "VM5D.n2" "VM5D.t7" 9.9
+resist "VM5D.n0" "VM5D.t0" 9.9
+resist "VM5D.n0" "VM5D.t10" 9.9
+resist "VM5D.n10" "VM5D.t1" 10.1431
+resist "VM5D.n1" "VM5D.t3" 10.2747
+rnode "I_Bias1.t23" 0 35.7202 4616 -8290 0
+rnode "I_Bias1.t11" 0 35.7202 4550 -8290 0
+rnode "I_Bias1.n0" 0 183.708 4583 -8290 0
+rnode "I_Bias1.n1" 0 53.4204 4604 -8176 0
+rnode "I_Bias1.n2" 0 93.9038 4553 -8170 0
+rnode "I_Bias1.n3" 0 3.57394 4561 -8176 0
+rnode "I_Bias1.n4" 0 312.268 2792 -2295 0
+rnode "I_Bias1.n5" 0 36.938 2735 -1475 0
+rnode "I_Bias1.n6" 0 14.9051 2735 -965 0
+rnode "I_Bias1.n7" 0 36.3697 2543 -965 0
+rnode "I_Bias1.n8" 0 17.6653 2543 -965 0
+rnode "I_Bias1.t55" 0 36.0449 2639 -1220 0
+rnode "I_Bias1.n9" 0 46.9559 2735 -965 0
+rnode "I_Bias1.t51" 0 36.0449 2543 -1220 0
+rnode "I_Bias1.t37" 0 36.0449 2447 -1220 0
+rnode "I_Bias1.n10" 0 52.3139 2351 -965 0
+rnode "I_Bias1.n11" 0 17.6653 2351 -965 0
+rnode "I_Bias1.n12" 0 36.3697 2159 -965 0
+rnode "I_Bias1.n13" 0 17.6653 2159 -965 0
+rnode "I_Bias1.t60" 0 36.0449 2255 -1220 0
+rnode "I_Bias1.t53" 0 36.0449 2159 -1220 0
+rnode "I_Bias1.t49" 0 36.0449 2063 -1220 0
+rnode "I_Bias1.n14" 0 52.3139 1967 -965 0
+rnode "I_Bias1.n15" 0 17.6653 1967 -965 0
+rnode "I_Bias1.n16" 0 28.36 1775 -965 0
+rnode "I_Bias1.n17" 0 17.6653 1775 -965 0
+rnode "I_Bias1.t35" 0 36.0449 1871 -1220 0
+rnode "I_Bias1.t65" 0 36.0449 1775 -1220 0
+rnode "I_Bias1.n18" 0 52.3139 1775 -1475 0
+rnode "I_Bias1.n19" 0 17.6653 1775 -1475 0
+rnode "I_Bias1.n20" 0 36.3697 1967 -1475 0
+rnode "I_Bias1.n21" 0 17.6653 1967 -1475 0
+rnode "I_Bias1.t42" 0 36.0449 1967 -1220 0
+rnode "I_Bias1.n22" 0 52.3139 2159 -1475 0
+rnode "I_Bias1.n23" 0 17.6653 2159 -1475 0
+rnode "I_Bias1.n24" 0 36.3697 2351 -1475 0
+rnode "I_Bias1.n25" 0 17.6653 2351 -1475 0
+rnode "I_Bias1.t31" 0 36.0449 2351 -1220 0
+rnode "I_Bias1.n26" 0 52.3139 2543 -1475 0
+rnode "I_Bias1.n27" 0 17.6653 2543 -1475 0
+rnode "I_Bias1.n28" 0 14.9051 2735 -1475 0
+rnode "I_Bias1.t61" 0 36.0449 2735 -1220 0
+rnode "I_Bias1.n29" 0 46.9559 2735 -1442 0
+rnode "I_Bias1.n30" 0 52.3139 2639 -1475 0
+rnode "I_Bias1.n31" 0 17.6653 2639 -1475 0
+rnode "I_Bias1.n32" 0 36.3697 2639 -1475 0
+rnode "I_Bias1.n33" 0 36.3697 2543 -1475 0
+rnode "I_Bias1.n34" 0 36.3697 2447 -1475 0
+rnode "I_Bias1.n35" 0 17.6653 2447 -1475 0
+rnode "I_Bias1.n36" 0 52.3139 2447 -1475 0
+rnode "I_Bias1.n37" 0 52.3139 2351 -1475 0
+rnode "I_Bias1.n38" 0 52.3139 2255 -1475 0
+rnode "I_Bias1.n39" 0 17.6653 2255 -1475 0
+rnode "I_Bias1.n40" 0 36.3697 2255 -1475 0
+rnode "I_Bias1.n41" 0 36.3697 2159 -1475 0
+rnode "I_Bias1.n42" 0 36.3697 2063 -1475 0
+rnode "I_Bias1.n43" 0 17.6653 2063 -1475 0
+rnode "I_Bias1.n44" 0 52.3139 2063 -1475 0
+rnode "I_Bias1.n45" 0 52.3139 1967 -1475 0
+rnode "I_Bias1.n46" 0 52.3139 1871 -1475 0
+rnode "I_Bias1.n47" 0 17.6653 1871 -1475 0
+rnode "I_Bias1.n48" 0 85.8654 1871 -1475 0
+rnode "I_Bias1.n49" 0 28.36 1775 -1475 0
+rnode "I_Bias1.n50" 0 51.8195 1679 -1475 0
+rnode "I_Bias1.t58" 0 36.0449 1679 -1220 0
+rnode "I_Bias1.n51" 0 51.8195 1679 -965 0
+rnode "I_Bias1.n52" 0 52.3139 1775 -965 0
+rnode "I_Bias1.n53" 0 52.3139 1871 -965 0
+rnode "I_Bias1.n54" 0 17.6653 1871 -965 0
+rnode "I_Bias1.n55" 0 85.8654 1871 -965 0
+rnode "I_Bias1.n56" 0 36.3697 1967 -965 0
+rnode "I_Bias1.n57" 0 36.3697 2063 -965 0
+rnode "I_Bias1.n58" 0 17.6653 2063 -965 0
+rnode "I_Bias1.n59" 0 52.3139 2063 -965 0
+rnode "I_Bias1.n60" 0 52.3139 2159 -965 0
+rnode "I_Bias1.n61" 0 52.3139 2255 -965 0
+rnode "I_Bias1.n62" 0 17.6653 2255 -965 0
+rnode "I_Bias1.n63" 0 36.3697 2255 -965 0
+rnode "I_Bias1.n64" 0 36.3697 2351 -965 0
+rnode "I_Bias1.n65" 0 36.3697 2447 -965 0
+rnode "I_Bias1.n66" 0 17.6653 2447 -965 0
+rnode "I_Bias1.n67" 0 52.3139 2447 -965 0
+rnode "I_Bias1.n68" 0 52.3139 2543 -965 0
+rnode "I_Bias1.n69" 0 52.3139 2639 -965 0
+rnode "I_Bias1.n70" 0 17.6653 2639 -965 0
+rnode "I_Bias1.n71" 0 36.3697 2639 -965 0
+rnode "I_Bias1.n72" 0 187.876 2735 -965 0
+rnode "I_Bias1.n73" 0 295.862 2834 -1485 0
+rnode "I_Bias1.t50" 0 276.046 2792 -2040 0
+rnode "I_Bias1.t52" 0 276.046 2534 -2040 0
+rnode "I_Bias1.t41" 0 276.046 2276 -2040 0
+rnode "I_Bias1.t48" 0 276.046 2018 -2040 0
+rnode "I_Bias1.n74" 0 322.227 2534 -2295 0
+rnode "I_Bias1.n75" 0 322.227 2276 -2295 0
+rnode "I_Bias1.n76" 0 658.27 2018 -2295 0
+rnode "I_Bias1.t68" 0 280.284 1760 -2040 0
+rnode "I_Bias1.n77" 0 632.46 2018 -1785 0
+rnode "I_Bias1.n78" 0 322.227 2276 -1785 0
+rnode "I_Bias1.n79" 0 322.227 2534 -1785 0
+rnode "I_Bias1.n80" 0 291.564 2792 -1785 0
+rnode "I_Bias1.n81" 0 168.212 2899 -1660 0
+rnode "I_Bias1.t1" 0 48267.7 3230 -1990 0
+rnode "I_Bias1.n82" 0 614.996 3050 -1785 0
+rnode "I_Bias1.t66" 0 276.046 3050 -2040 0
+rnode "I_Bias1.n83" 0 18.7119 3050 -2040 0
+rnode "I_Bias1.n84" 0 2506.31 3094 -2310 0
+rnode "I_Bias1.n85" 0 3156.14 4470 -8025 0
+rnode "I_Bias1.n86" 0 14.9051 4631 -8035 0
+rnode "I_Bias1.n87" 0 17.6653 4439 -8035 0
+rnode "I_Bias1.t10" 0 36.0449 4535 -8290 0
+rnode "I_Bias1.n88" 0 46.9559 4631 -8035 0
+rnode "I_Bias1.t14" 0 36.0449 4439 -8290 0
+rnode "I_Bias1.t2" 0 36.0449 4343 -8290 0
+rnode "I_Bias1.n89" 0 52.3139 4247 -8035 0
+rnode "I_Bias1.n90" 0 17.6653 4247 -8035 0
+rnode "I_Bias1.n91" 0 14.2069 4439 -8035 0
+rnode "I_Bias1.n92" 0 34.8803 4395 -8060 0
+rnode "I_Bias1.n93" 0 22.9846 4199 -8096 0
+rnode "I_Bias1.n94" 0 27.6561 4055 -8035 0
+rnode "I_Bias1.n95" 0 17.6653 4055 -8035 0
+rnode "I_Bias1.t20" 0 36.0449 4151 -8290 0
+rnode "I_Bias1.t8" 0 36.0449 4055 -8290 0
+rnode "I_Bias1.t16" 0 36.0449 3959 -8290 0
+rnode "I_Bias1.n96" 0 52.3139 3863 -8035 0
+rnode "I_Bias1.n97" 0 17.6653 3863 -8035 0
+rnode "I_Bias1.n98" 0 34.8803 4005 -8060 0
+rnode "I_Bias1.n99" 0 22.9846 3815 -8096 0
+rnode "I_Bias1.n100" 0 26.8984 3671 -8035 0
+rnode "I_Bias1.n101" 0 17.6653 3671 -8035 0
+rnode "I_Bias1.t12" 0 36.0449 3767 -8290 0
+rnode "I_Bias1.t24" 0 36.0449 3671 -8290 0
+rnode "I_Bias1.n102" 0 52.3139 3671 -8545 0
+rnode "I_Bias1.n103" 0 17.6653 3671 -8545 0
+rnode "I_Bias1.n104" 0 36.3697 3863 -8545 0
+rnode "I_Bias1.n105" 0 17.6653 3863 -8545 0
+rnode "I_Bias1.t4" 0 36.0449 3863 -8290 0
+rnode "I_Bias1.n106" 0 52.3139 4055 -8545 0
+rnode "I_Bias1.n107" 0 17.6653 4055 -8545 0
+rnode "I_Bias1.n108" 0 36.3697 4247 -8545 0
+rnode "I_Bias1.n109" 0 17.6653 4247 -8545 0
+rnode "I_Bias1.t18" 0 36.0449 4247 -8290 0
+rnode "I_Bias1.n110" 0 52.3139 4439 -8545 0
+rnode "I_Bias1.n111" 0 17.6653 4439 -8545 0
+rnode "I_Bias1.n112" 0 171.775 4631 -8035 0
+rnode "I_Bias1.n113" 0 275.466 4688 -8855 0
+rnode "I_Bias1.t28" 0 38.8435 5510 -9110 0
+rnode "I_Bias1.t30" 0 35.7202 5702 -9110 0
+rnode "I_Bias1.t26" 0 35.7202 5636 -9110 0
+rnode "I_Bias1.n114" 0 184.929 5669 -9110 0
+rnode "I_Bias1.t29" 0 35.7202 5894 -9110 0
+rnode "I_Bias1.t27" 0 35.7202 5828 -9110 0
+rnode "I_Bias1.n115" 0 271.788 5861 -9110 0
+rnode "I_Bias1.n116" 0 398.342 5670 -9000 0
+rnode "I_Bias1.n117" 0 570.211 5470 -8916 0
+rnode "I_Bias1.t46" 0 276.046 4688 -9110 0
+rnode "I_Bias1.t34" 0 276.046 4430 -9110 0
+rnode "I_Bias1.t67" 0 276.046 4172 -9110 0
+rnode "I_Bias1.t72" 0 276.046 3914 -9110 0
+rnode "I_Bias1.t59" 0 276.046 3656 -9110 0
+rnode "I_Bias1.n118" 0 312.268 2792 -9365 0
+rnode "I_Bias1.n119" 0 36.938 2735 -8545 0
+rnode "I_Bias1.t0" 0 47862 3240 -10380 0
+rnode "I_Bias1.n120" 0 36.3697 2639 -8035 0
+rnode "I_Bias1.n121" 0 46.9559 2735 -8035 0
+rnode "I_Bias1.n122" 0 17.6653 2543 -8035 0
+rnode "I_Bias1.t40" 0 36.0449 2639 -8290 0
+rnode "I_Bias1.t33" 0 36.0449 2543 -8290 0
+rnode "I_Bias1.t64" 0 36.0449 2447 -8290 0
+rnode "I_Bias1.n123" 0 52.3139 2351 -8035 0
+rnode "I_Bias1.n124" 0 17.6653 2351 -8035 0
+rnode "I_Bias1.n125" 0 36.3697 2543 -8035 0
+rnode "I_Bias1.n126" 0 36.3697 2159 -8035 0
+rnode "I_Bias1.n127" 0 17.6653 2159 -8035 0
+rnode "I_Bias1.t44" 0 36.0449 2255 -8290 0
+rnode "I_Bias1.t38" 0 36.0449 2159 -8290 0
+rnode "I_Bias1.t32" 0 36.0449 2063 -8290 0
+rnode "I_Bias1.n128" 0 52.3139 1967 -8035 0
+rnode "I_Bias1.n129" 0 17.6653 1967 -8035 0
+rnode "I_Bias1.n130" 0 28.36 1775 -8035 0
+rnode "I_Bias1.n131" 0 17.6653 1775 -8035 0
+rnode "I_Bias1.t62" 0 36.0449 1871 -8290 0
+rnode "I_Bias1.t47" 0 36.0449 1775 -8290 0
+rnode "I_Bias1.n132" 0 52.3139 1775 -8545 0
+rnode "I_Bias1.n133" 0 17.6653 1775 -8545 0
+rnode "I_Bias1.n134" 0 36.3697 1967 -8545 0
+rnode "I_Bias1.n135" 0 17.6653 1967 -8545 0
+rnode "I_Bias1.t69" 0 36.0449 1967 -8290 0
+rnode "I_Bias1.n136" 0 52.3139 2159 -8545 0
+rnode "I_Bias1.n137" 0 17.6653 2159 -8545 0
+rnode "I_Bias1.n138" 0 36.3697 2351 -8545 0
+rnode "I_Bias1.n139" 0 17.6653 2351 -8545 0
+rnode "I_Bias1.t57" 0 36.0449 2351 -8290 0
+rnode "I_Bias1.n140" 0 52.3139 2543 -8545 0
+rnode "I_Bias1.n141" 0 17.6653 2543 -8545 0
+rnode "I_Bias1.n142" 0 14.9051 2735 -8545 0
+rnode "I_Bias1.t45" 0 36.0449 2735 -8290 0
+rnode "I_Bias1.n143" 0 46.9559 2735 -8545 0
+rnode "I_Bias1.n144" 0 52.3139 2639 -8512 0
+rnode "I_Bias1.n145" 0 17.6653 2639 -8545 0
+rnode "I_Bias1.n146" 0 36.3697 2639 -8545 0
+rnode "I_Bias1.n147" 0 36.3697 2543 -8545 0
+rnode "I_Bias1.n148" 0 36.3697 2447 -8545 0
+rnode "I_Bias1.n149" 0 17.6653 2447 -8545 0
+rnode "I_Bias1.n150" 0 52.3139 2447 -8545 0
+rnode "I_Bias1.n151" 0 52.3139 2351 -8545 0
+rnode "I_Bias1.n152" 0 52.3139 2255 -8545 0
+rnode "I_Bias1.n153" 0 17.6653 2255 -8545 0
+rnode "I_Bias1.n154" 0 36.3697 2255 -8545 0
+rnode "I_Bias1.n155" 0 36.3697 2159 -8545 0
+rnode "I_Bias1.n156" 0 36.3697 2063 -8545 0
+rnode "I_Bias1.n157" 0 17.6653 2063 -8545 0
+rnode "I_Bias1.n158" 0 52.3139 2063 -8545 0
+rnode "I_Bias1.n159" 0 52.3139 1967 -8545 0
+rnode "I_Bias1.n160" 0 52.3139 1871 -8545 0
+rnode "I_Bias1.n161" 0 17.6653 1871 -8545 0
+rnode "I_Bias1.n162" 0 85.8654 1871 -8545 0
+rnode "I_Bias1.n163" 0 28.36 1775 -8545 0
+rnode "I_Bias1.n164" 0 51.8195 1679 -8545 0
+rnode "I_Bias1.t43" 0 36.0449 1679 -8290 0
+rnode "I_Bias1.n165" 0 51.8195 1679 -8035 0
+rnode "I_Bias1.n166" 0 52.3139 1775 -8035 0
+rnode "I_Bias1.n167" 0 52.3139 1871 -8035 0
+rnode "I_Bias1.n168" 0 17.6653 1871 -8035 0
+rnode "I_Bias1.n169" 0 85.8654 1871 -8035 0
+rnode "I_Bias1.n170" 0 36.3697 1967 -8035 0
+rnode "I_Bias1.n171" 0 36.3697 2063 -8035 0
+rnode "I_Bias1.n172" 0 17.6653 2063 -8035 0
+rnode "I_Bias1.n173" 0 52.3139 2063 -8035 0
+rnode "I_Bias1.n174" 0 52.3139 2159 -8035 0
+rnode "I_Bias1.n175" 0 52.3139 2255 -8035 0
+rnode "I_Bias1.n176" 0 17.6653 2255 -8035 0
+rnode "I_Bias1.n177" 0 36.3697 2255 -8035 0
+rnode "I_Bias1.n178" 0 36.3697 2351 -8035 0
+rnode "I_Bias1.n179" 0 36.3697 2447 -8035 0
+rnode "I_Bias1.n180" 0 17.6653 2447 -8035 0
+rnode "I_Bias1.n181" 0 52.3139 2447 -8035 0
+rnode "I_Bias1.n182" 0 52.3139 2543 -8035 0
+rnode "I_Bias1.n183" 0 52.3139 2639 -8035 0
+rnode "I_Bias1.n184" 0 17.6653 2639 -8035 0
+rnode "I_Bias1.n185" 0 14.9051 2735 -8035 0
+rnode "I_Bias1.n186" 0 47.406 2735 -8035 0
+rnode "I_Bias1.n187" 0 1316.67 2935 -8065 0
+rnode "I_Bias1.n188" 0 263.172 2834 -8555 0
+rnode "I_Bias1.t70" 0 276.046 2792 -9110 0
+rnode "I_Bias1.t71" 0 276.046 2534 -9110 0
+rnode "I_Bias1.t54" 0 276.046 2276 -9110 0
+rnode "I_Bias1.t63" 0 276.046 2018 -9110 0
+rnode "I_Bias1.n189" 0 322.227 2534 -9365 0
+rnode "I_Bias1.n190" 0 322.227 2276 -9365 0
+rnode "I_Bias1.n191" 0 658.27 2018 -9365 0
+rnode "I_Bias1.t39" 0 280.284 1760 -9110 0
+rnode "I_Bias1.n192" 0 632.46 2018 -8855 0
+rnode "I_Bias1.n193" 0 322.227 2276 -8855 0
+rnode "I_Bias1.n194" 0 322.227 2534 -8855 0
+rnode "I_Bias1.n195" 0 275.466 2792 -8855 0
+rnode "I_Bias1.n196" 0 146.155 2834 -8840 0
+rnode "I_Bias1.n197" 0 322.227 4430 -8855 0
+rnode "I_Bias1.n198" 0 322.227 4172 -8855 0
+rnode "I_Bias1.n199" 0 322.227 3914 -8855 0
+rnode "I_Bias1.n200" 0 388.038 3656 -8855 0
+rnode "I_Bias1.n201" 0 473.674 3094 -8840 0
+rnode "I_Bias1.t36" 0 276.046 3050 -9110 0
+rnode "I_Bias1.n202" 0 36.339 3050 -9110 0
+rnode "I_Bias1.n203" 0 510.91 3004 -9380 0
+rnode "I_Bias1.n204" 0 388.038 3656 -9365 0
+rnode "I_Bias1.n205" 0 322.227 3914 -9365 0
+rnode "I_Bias1.n206" 0 322.227 4172 -9365 0
+rnode "I_Bias1.n207" 0 322.227 4430 -9365 0
+rnode "I_Bias1.n208" 0 490.854 4688 -9365 0
+rnode "I_Bias1.t56" 0 276.046 4946 -9110 0
+rnode "I_Bias1.n209" 0 195.041 4946 -9110 0
+rnode "I_Bias1.n210" 0 472.985 4900 -8840 0
+rnode "I_Bias1.n211" 0 146.155 4730 -8840 0
+rnode "I_Bias1.n212" 0 334.559 4730 -8555 0
+rnode "I_Bias1.n213" 0 36.938 4631 -8545 0
+rnode "I_Bias1.n214" 0 14.9051 4631 -8545 0
+rnode "I_Bias1.t22" 0 36.0449 4631 -8290 0
+rnode "I_Bias1.n215" 0 46.9559 4631 -8512 0
+rnode "I_Bias1.n216" 0 52.3139 4535 -8545 0
+rnode "I_Bias1.n217" 0 17.6653 4535 -8545 0
+rnode "I_Bias1.n218" 0 36.3697 4535 -8545 0
+rnode "I_Bias1.n219" 0 36.3697 4439 -8545 0
+rnode "I_Bias1.n220" 0 36.3697 4343 -8545 0
+rnode "I_Bias1.n221" 0 17.6653 4343 -8545 0
+rnode "I_Bias1.n222" 0 52.3139 4343 -8545 0
+rnode "I_Bias1.n223" 0 52.3139 4247 -8545 0
+rnode "I_Bias1.n224" 0 52.3139 4151 -8545 0
+rnode "I_Bias1.n225" 0 17.6653 4151 -8545 0
+rnode "I_Bias1.n226" 0 36.3697 4151 -8545 0
+rnode "I_Bias1.n227" 0 36.3697 4055 -8545 0
+rnode "I_Bias1.n228" 0 36.3697 3959 -8545 0
+rnode "I_Bias1.n229" 0 17.6653 3959 -8545 0
+rnode "I_Bias1.n230" 0 52.3139 3959 -8545 0
+rnode "I_Bias1.n231" 0 52.3139 3863 -8545 0
+rnode "I_Bias1.n232" 0 52.3139 3767 -8545 0
+rnode "I_Bias1.n233" 0 17.6653 3767 -8545 0
+rnode "I_Bias1.n234" 0 85.8654 3767 -8545 0
+rnode "I_Bias1.n235" 0 28.36 3671 -8545 0
+rnode "I_Bias1.n236" 0 51.8195 3575 -8545 0
+rnode "I_Bias1.t6" 0 36.0449 3575 -8290 0
+rnode "I_Bias1.n237" 0 20.945 3815 -8170 0
+rnode "I_Bias1.t5" 0 35.7202 3848 -8290 0
+rnode "I_Bias1.t13" 0 35.7202 3782 -8290 0
+rnode "I_Bias1.n238" 0 183.958 3815 -8290 0
+rnode "I_Bias1.n239" 0 20.945 4007 -8170 0
+rnode "I_Bias1.n240" 0 22.9846 4007 -8096 0
+rnode "I_Bias1.t9" 0 35.7202 4040 -8290 0
+rnode "I_Bias1.t17" 0 35.7202 3974 -8290 0
+rnode "I_Bias1.n241" 0 183.958 4007 -8290 0
+rnode "I_Bias1.n242" 0 20.945 4199 -8170 0
+rnode "I_Bias1.t19" 0 35.7202 4232 -8290 0
+rnode "I_Bias1.t21" 0 35.7202 4166 -8290 0
+rnode "I_Bias1.n243" 0 183.958 4199 -8290 0
+rnode "I_Bias1.n244" 0 20.945 4391 -8170 0
+rnode "I_Bias1.n245" 0 22.9846 4391 -8096 0
+rnode "I_Bias1.t15" 0 35.7202 4424 -8290 0
+rnode "I_Bias1.t3" 0 35.7202 4358 -8290 0
+rnode "I_Bias1.n246" 0 183.958 4391 -8290 0
+rnode "I_Bias1.n247" 0 68.678 4412 -8176 0
+rnode "I_Bias1.n248" 0 53.0965 4369 -8176 0
+rnode "I_Bias1.n249" 0 93.481 4369 -8176 0
+rnode "I_Bias1.n250" 0 72.618 4220 -8176 0
+rnode "I_Bias1.n251" 0 53.0965 4177 -8176 0
+rnode "I_Bias1.n252" 0 93.481 4177 -8176 0
+rnode "I_Bias1.n253" 0 72.618 4028 -8176 0
+rnode "I_Bias1.n254" 0 53.0965 3985 -8176 0
+rnode "I_Bias1.n255" 0 93.481 3985 -8176 0
+rnode "I_Bias1.n256" 0 72.618 3836 -8176 0
+rnode "I_Bias1.n257" 0 53.0965 3793 -8176 0
+rnode "I_Bias1.n258" 0 94.5784 3793 -8176 0
+rnode "I_Bias1.t25" 0 35.7202 3656 -8290 0
+rnode "I_Bias1.t7" 0 35.7202 3590 -8290 0
+rnode "I_Bias1.n259" 0 184.504 3623 -8290 0
+rnode "I_Bias1.n260" 0 189.029 3601 -8176 0
+rnode "I_Bias1.n261" 0 57.5879 3625 -8060 0
+rnode "I_Bias1.n262" 0 15.332 3575 -8035 0
+rnode "I_Bias1.n263" 0 46.9559 3575 -8035 0
+rnode "I_Bias1.n264" 0 52.3139 3671 -8035 0
+rnode "I_Bias1.n265" 0 52.3139 3767 -8035 0
+rnode "I_Bias1.n266" 0 17.6653 3767 -8035 0
+rnode "I_Bias1.n267" 0 27.2773 3767 -8035 0
+rnode "I_Bias1.n268" 0 34.8803 3815 -8060 0
+rnode "I_Bias1.n269" 0 27.2773 3863 -8035 0
+rnode "I_Bias1.n270" 0 26.8984 3959 -8035 0
+rnode "I_Bias1.n271" 0 17.6653 3959 -8035 0
+rnode "I_Bias1.n272" 0 52.3139 3959 -8035 0
+rnode "I_Bias1.n273" 0 52.3139 4055 -8035 0
+rnode "I_Bias1.n274" 0 52.3139 4151 -8035 0
+rnode "I_Bias1.n275" 0 17.6653 4151 -8035 0
+rnode "I_Bias1.n276" 0 26.5196 4151 -8035 0
+rnode "I_Bias1.n277" 0 34.8803 4195 -8060 0
+rnode "I_Bias1.n278" 0 28.035 4247 -8035 0
+rnode "I_Bias1.n279" 0 28.035 4343 -8035 0
+rnode "I_Bias1.n280" 0 17.6653 4343 -8035 0
+rnode "I_Bias1.n281" 0 52.3139 4343 -8035 0
+rnode "I_Bias1.n282" 0 52.3139 4439 -8035 0
+rnode "I_Bias1.n283" 0 52.3139 4535 -8035 0
+rnode "I_Bias1.n284" 0 17.6653 4535 -8035 0
+rnode "I_Bias1.n285" 0 38.7152 4535 -8035 0
+rnode "I_Bias1.n286" 0 25.3195 4583 -8096 0
+rnode "I_Bias1.n287" 0 11.6903 4583 -8170 0
+rnode "I_Bias1.n288" 0 56.825 4583 -8170 0
+rnode "I_Bias1.n289" 0 226.549 4583 -8170 0
+rnode "I_Bias1" 0 238.119 5080 -8250 0
+rnode "I_Bias1" 0 71.4404 5135 -8090 0
+resist "I_Bias1.n288" "I_Bias1.n287" 0.0005
+resist "I_Bias1.n256" "I_Bias1.n237" 0.0005062
+resist "I_Bias1.n253" "I_Bias1.n239" 0.0005062
+resist "I_Bias1.n250" "I_Bias1.n242" 0.0005062
+resist "I_Bias1.n247" "I_Bias1.n244" 0.0005062
+resist "I_Bias1.n287" "I_Bias1.n3" 0.000506642
+resist "I_Bias1.n289" "I_Bias1.n288" 0.000530259
+resist "I_Bias1.n237" "I_Bias1.n99" 0.00147213
+resist "I_Bias1.n240" "I_Bias1.n239" 0.00147213
+resist "I_Bias1.n242" "I_Bias1.n93" 0.00147213
+resist "I_Bias1.n245" "I_Bias1.n244" 0.00147213
+resist "I_Bias1.n287" "I_Bias1.n286" 0.00147213
+resist "I_Bias1.n3" "I_Bias1.n1" 0.00249247
+resist "I_Bias1.n257" "I_Bias1.n256" 0.00249291
+resist "I_Bias1.n254" "I_Bias1.n253" 0.00249291
+resist "I_Bias1.n251" "I_Bias1.n250" 0.00249291
+resist "I_Bias1.n248" "I_Bias1.n247" 0.00249291
+resist "I_Bias1.n285" "I_Bias1.n85" 0.008
+resist "I_Bias1.n286" "I_Bias1.n1" 0.0105277
+resist "I_Bias1.n248" "I_Bias1.n245" 0.0105277
+resist "I_Bias1.n251" "I_Bias1.n93" 0.0105277
+resist "I_Bias1.n254" "I_Bias1.n240" 0.0105277
+resist "I_Bias1.n257" "I_Bias1.n99" 0.0105277
+resist "I_Bias1.n258" "I_Bias1.n237" 0.015
+resist "I_Bias1.n255" "I_Bias1.n239" 0.015
+resist "I_Bias1.n252" "I_Bias1.n242" 0.015
+resist "I_Bias1.n249" "I_Bias1.n244" 0.015
+resist "I_Bias1" "I_Bias1" 0.016
+resist "I_Bias1.n112" "I_Bias1.n85" 0.019
+resist "I_Bias1.n3" "I_Bias1.n2" 0.0204435
+resist "I_Bias1.n91" "I_Bias1.n85" 0.055
+resist "I_Bias1.n211" "I_Bias1.n210" 0.062
+resist "I_Bias1.n201" "I_Bias1.n196" 0.062
+resist "I_Bias1.n211" "I_Bias1.n113" 0.065
+resist "I_Bias1.n196" "I_Bias1.n195" 0.065
+resist "I_Bias1.n277" "I_Bias1.n276" 0.078
+resist "I_Bias1.n92" "I_Bias1.n91" 0.078
+resist "I_Bias1.n261" "I_Bias1.n100" 0.082
+resist "I_Bias1.n270" "I_Bias1.n98" 0.082
+resist "I_Bias1.n268" "I_Bias1.n267" 0.085
+resist "I_Bias1.n269" "I_Bias1.n268" 0.085
+resist "I_Bias1.n98" "I_Bias1.n94" 0.089
+resist "I_Bias1.n278" "I_Bias1.n277" 0.092
+resist "I_Bias1.n279" "I_Bias1.n92" 0.092
+resist "I_Bias1.n247" "I_Bias1.n2" 0.11145
+resist "I_Bias1.n256" "I_Bias1.n255" 0.11745
+resist "I_Bias1.n253" "I_Bias1.n252" 0.11745
+resist "I_Bias1.n250" "I_Bias1.n249" 0.11745
+resist "I_Bias1.n260" "I_Bias1.n258" 0.118914
+resist "I_Bias1.n81" "I_Bias1.n80" 0.119
+resist "I_Bias1.n82" "I_Bias1.n81" 0.125
+resist "I_Bias1.n117" "I_Bias1.n116" 0.134304
+resist "I_Bias1" "I_Bias1.n289" 0.144451
+resist "I_Bias1.n81" "I_Bias1.n73" 0.168
+resist "I_Bias1.n56" "I_Bias1.n55" 0.171
+resist "I_Bias1.n57" "I_Bias1.n56" 0.171
+resist "I_Bias1.n57" "I_Bias1.n12" 0.171
+resist "I_Bias1.n63" "I_Bias1.n12" 0.171
+resist "I_Bias1.n64" "I_Bias1.n63" 0.171
+resist "I_Bias1.n65" "I_Bias1.n64" 0.171
+resist "I_Bias1.n65" "I_Bias1.n7" 0.171
+resist "I_Bias1.n71" "I_Bias1.n7" 0.171
+resist "I_Bias1.n72" "I_Bias1.n71" 0.171
+resist "I_Bias1.n48" "I_Bias1.n20" 0.171
+resist "I_Bias1.n42" "I_Bias1.n20" 0.171
+resist "I_Bias1.n42" "I_Bias1.n41" 0.171
+resist "I_Bias1.n41" "I_Bias1.n40" 0.171
+resist "I_Bias1.n40" "I_Bias1.n24" 0.171
+resist "I_Bias1.n34" "I_Bias1.n24" 0.171
+resist "I_Bias1.n34" "I_Bias1.n33" 0.171
+resist "I_Bias1.n33" "I_Bias1.n32" 0.171
+resist "I_Bias1.n32" "I_Bias1.n5" 0.171
+resist "I_Bias1.n267" "I_Bias1.n100" 0.171
+resist "I_Bias1.n270" "I_Bias1.n269" 0.171
+resist "I_Bias1.n276" "I_Bias1.n94" 0.171
+resist "I_Bias1.n279" "I_Bias1.n278" 0.171
+resist "I_Bias1.n234" "I_Bias1.n104" 0.171
+resist "I_Bias1.n228" "I_Bias1.n104" 0.171
+resist "I_Bias1.n228" "I_Bias1.n227" 0.171
+resist "I_Bias1.n227" "I_Bias1.n226" 0.171
+resist "I_Bias1.n226" "I_Bias1.n108" 0.171
+resist "I_Bias1.n220" "I_Bias1.n108" 0.171
+resist "I_Bias1.n220" "I_Bias1.n219" 0.171
+resist "I_Bias1.n219" "I_Bias1.n218" 0.171
+resist "I_Bias1.n218" "I_Bias1.n213" 0.171
+resist "I_Bias1.n170" "I_Bias1.n169" 0.171
+resist "I_Bias1.n171" "I_Bias1.n170" 0.171
+resist "I_Bias1.n171" "I_Bias1.n126" 0.171
+resist "I_Bias1.n177" "I_Bias1.n126" 0.171
+resist "I_Bias1.n178" "I_Bias1.n177" 0.171
+resist "I_Bias1.n179" "I_Bias1.n178" 0.171
+resist "I_Bias1.n179" "I_Bias1.n125" 0.171
+resist "I_Bias1.n125" "I_Bias1.n120" 0.171
+resist "I_Bias1.n186" "I_Bias1.n120" 0.171
+resist "I_Bias1.n162" "I_Bias1.n134" 0.171
+resist "I_Bias1.n156" "I_Bias1.n134" 0.171
+resist "I_Bias1.n156" "I_Bias1.n155" 0.171
+resist "I_Bias1.n155" "I_Bias1.n154" 0.171
+resist "I_Bias1.n154" "I_Bias1.n138" 0.171
+resist "I_Bias1.n148" "I_Bias1.n138" 0.171
+resist "I_Bias1.n148" "I_Bias1.n147" 0.171
+resist "I_Bias1.n147" "I_Bias1.n146" 0.171
+resist "I_Bias1.n146" "I_Bias1.n119" 0.171
+resist "I_Bias1.n73" "I_Bias1.n5" 0.176
+resist "I_Bias1.n213" "I_Bias1.n212" 0.176
+resist "I_Bias1.n188" "I_Bias1.n119" 0.176
+resist "I_Bias1.n116" "I_Bias1.n114" 0.188763
+resist "I_Bias1.n245" "I_Bias1.n92" 0.209933
+resist "I_Bias1.n277" "I_Bias1.n93" 0.209933
+resist "I_Bias1.n240" "I_Bias1.n98" 0.209933
+resist "I_Bias1.n268" "I_Bias1.n99" 0.209933
+resist "I_Bias1.n261" "I_Bias1.n260" 0.212064
+resist "I_Bias1.n82" "I_Bias1.t1" 0.213
+resist "I_Bias1.n187" "I_Bias1.n186" 0.213
+resist "I_Bias1.n286" "I_Bias1.n285" 0.229933
+resist "I_Bias1.n248" "I_Bias1.n246" 0.23766
+resist "I_Bias1.n251" "I_Bias1.n243" 0.23766
+resist "I_Bias1.n254" "I_Bias1.n241" 0.23766
+resist "I_Bias1.n257" "I_Bias1.n238" 0.23766
+resist "I_Bias1.n1" "I_Bias1.n0" 0.238649
+resist "I_Bias1.n260" "I_Bias1.n259" 0.240129
+resist "I_Bias1.n212" "I_Bias1.n211" 0.274
+resist "I_Bias1.n196" "I_Bias1.n188" 0.274
+resist "I_Bias1.n187" "I_Bias1.t0" 0.285
+resist "I_Bias1.n116" "I_Bias1.n115" 0.321428
+resist "I_Bias1.n84" "I_Bias1.n4" 0.331
+resist "I_Bias1.n203" "I_Bias1.n118" 0.331
+resist "I_Bias1.n83" "I_Bias1.n82" 0.335168
+resist "I_Bias1.n84" "I_Bias1.n83" 0.355168
+resist "I_Bias1.n202" "I_Bias1.n201" 0.372473
+resist "I_Bias1.n210" "I_Bias1.n209" 0.372473
+resist "I_Bias1.n203" "I_Bias1.n202" 0.372473
+resist "I_Bias1.n78" "I_Bias1.n77" 0.403
+resist "I_Bias1.n79" "I_Bias1.n78" 0.403
+resist "I_Bias1.n80" "I_Bias1.n79" 0.403
+resist "I_Bias1.n76" "I_Bias1.n75" 0.403
+resist "I_Bias1.n75" "I_Bias1.n74" 0.403
+resist "I_Bias1.n74" "I_Bias1.n4" 0.403
+resist "I_Bias1.n200" "I_Bias1.n199" 0.403
+resist "I_Bias1.n199" "I_Bias1.n198" 0.403
+resist "I_Bias1.n198" "I_Bias1.n197" 0.403
+resist "I_Bias1.n197" "I_Bias1.n113" 0.403
+resist "I_Bias1.n205" "I_Bias1.n204" 0.403
+resist "I_Bias1.n206" "I_Bias1.n205" 0.403
+resist "I_Bias1.n207" "I_Bias1.n206" 0.403
+resist "I_Bias1.n208" "I_Bias1.n207" 0.403
+resist "I_Bias1.n191" "I_Bias1.n190" 0.403
+resist "I_Bias1.n190" "I_Bias1.n189" 0.403
+resist "I_Bias1.n189" "I_Bias1.n118" 0.403
+resist "I_Bias1.n193" "I_Bias1.n192" 0.403
+resist "I_Bias1.n194" "I_Bias1.n193" 0.403
+resist "I_Bias1.n195" "I_Bias1.n194" 0.403
+resist "I_Bias1.n188" "I_Bias1.n187" 0.513
+resist "I_Bias1.n55" "I_Bias1.n16" 0.662986
+resist "I_Bias1.n49" "I_Bias1.n48" 0.662986
+resist "I_Bias1.n235" "I_Bias1.n234" 0.662986
+resist "I_Bias1.n169" "I_Bias1.n130" 0.662986
+resist "I_Bias1.n163" "I_Bias1.n162" 0.662986
+resist "I_Bias1.n209" "I_Bias1.n208" 0.703473
+resist "I_Bias1.n73" "I_Bias1.n72" 0.807
+resist "I_Bias1.n212" "I_Bias1.n112" 0.807
+resist "I_Bias1.n210" "I_Bias1.n117" 0.816158
+resist "I_Bias1.n201" "I_Bias1.n200" 0.878
+resist "I_Bias1.n204" "I_Bias1.n203" 0.878
+resist "I_Bias1.n288" "I_Bias1.n2" 3.418
+resist "I_Bias1.n17" "I_Bias1.n16" 3.68496
+resist "I_Bias1.n49" "I_Bias1.n19" 3.68496
+resist "I_Bias1.n235" "I_Bias1.n103" 3.68496
+resist "I_Bias1.n131" "I_Bias1.n130" 3.68496
+resist "I_Bias1.n163" "I_Bias1.n133" 3.68496
+resist "I_Bias1.n258" "I_Bias1.n257" 4.5
+resist "I_Bias1.n255" "I_Bias1.n254" 4.5
+resist "I_Bias1.n252" "I_Bias1.n251" 4.5
+resist "I_Bias1.n249" "I_Bias1.n248" 4.5
+resist "I_Bias1.n289" "I_Bias1.n1" 4.51342
+resist "I_Bias1.n285" "I_Bias1.n284" 4.65
+resist "I_Bias1.n55" "I_Bias1.n54" 4.65
+resist "I_Bias1.n56" "I_Bias1.n15" 4.65
+resist "I_Bias1.n58" "I_Bias1.n57" 4.65
+resist "I_Bias1.n13" "I_Bias1.n12" 4.65
+resist "I_Bias1.n63" "I_Bias1.n62" 4.65
+resist "I_Bias1.n64" "I_Bias1.n11" 4.65
+resist "I_Bias1.n66" "I_Bias1.n65" 4.65
+resist "I_Bias1.n8" "I_Bias1.n7" 4.65
+resist "I_Bias1.n71" "I_Bias1.n70" 4.65
+resist "I_Bias1.n72" "I_Bias1.n6" 4.65
+resist "I_Bias1.n28" "I_Bias1.n5" 4.65
+resist "I_Bias1.n48" "I_Bias1.n47" 4.65
+resist "I_Bias1.n21" "I_Bias1.n20" 4.65
+resist "I_Bias1.n43" "I_Bias1.n42" 4.65
+resist "I_Bias1.n41" "I_Bias1.n23" 4.65
+resist "I_Bias1.n40" "I_Bias1.n39" 4.65
+resist "I_Bias1.n25" "I_Bias1.n24" 4.65
+resist "I_Bias1.n35" "I_Bias1.n34" 4.65
+resist "I_Bias1.n33" "I_Bias1.n27" 4.65
+resist "I_Bias1.n32" "I_Bias1.n31" 4.65
+resist "I_Bias1.n112" "I_Bias1.n86" 4.65
+resist "I_Bias1.n101" "I_Bias1.n100" 4.65
+resist "I_Bias1.n267" "I_Bias1.n266" 4.65
+resist "I_Bias1.n269" "I_Bias1.n97" 4.65
+resist "I_Bias1.n271" "I_Bias1.n270" 4.65
+resist "I_Bias1.n95" "I_Bias1.n94" 4.65
+resist "I_Bias1.n276" "I_Bias1.n275" 4.65
+resist "I_Bias1.n278" "I_Bias1.n90" 4.65
+resist "I_Bias1.n280" "I_Bias1.n279" 4.65
+resist "I_Bias1.n91" "I_Bias1.n87" 4.65
+resist "I_Bias1.n214" "I_Bias1.n213" 4.65
+resist "I_Bias1.n234" "I_Bias1.n233" 4.65
+resist "I_Bias1.n105" "I_Bias1.n104" 4.65
+resist "I_Bias1.n229" "I_Bias1.n228" 4.65
+resist "I_Bias1.n227" "I_Bias1.n107" 4.65
+resist "I_Bias1.n226" "I_Bias1.n225" 4.65
+resist "I_Bias1.n109" "I_Bias1.n108" 4.65
+resist "I_Bias1.n221" "I_Bias1.n220" 4.65
+resist "I_Bias1.n219" "I_Bias1.n111" 4.65
+resist "I_Bias1.n218" "I_Bias1.n217" 4.65
+resist "I_Bias1.n186" "I_Bias1.n185" 4.65
+resist "I_Bias1.n169" "I_Bias1.n168" 4.65
+resist "I_Bias1.n170" "I_Bias1.n129" 4.65
+resist "I_Bias1.n172" "I_Bias1.n171" 4.65
+resist "I_Bias1.n127" "I_Bias1.n126" 4.65
+resist "I_Bias1.n177" "I_Bias1.n176" 4.65
+resist "I_Bias1.n178" "I_Bias1.n124" 4.65
+resist "I_Bias1.n180" "I_Bias1.n179" 4.65
+resist "I_Bias1.n125" "I_Bias1.n122" 4.65
+resist "I_Bias1.n184" "I_Bias1.n120" 4.65
+resist "I_Bias1.n146" "I_Bias1.n145" 4.65
+resist "I_Bias1.n147" "I_Bias1.n141" 4.65
+resist "I_Bias1.n149" "I_Bias1.n148" 4.65
+resist "I_Bias1.n139" "I_Bias1.n138" 4.65
+resist "I_Bias1.n154" "I_Bias1.n153" 4.65
+resist "I_Bias1.n155" "I_Bias1.n137" 4.65
+resist "I_Bias1.n157" "I_Bias1.n156" 4.65
+resist "I_Bias1.n135" "I_Bias1.n134" 4.65
+resist "I_Bias1.n162" "I_Bias1.n161" 4.65
+resist "I_Bias1.n142" "I_Bias1.n119" 4.65
+resist "I_Bias1.n262" "I_Bias1.n261" 4.739
+resist "I_Bias1.n85" "I_Bias1.n84" 6.912
+resist "I_Bias1.n284" "I_Bias1.n283" 8.76379
+resist "I_Bias1.n52" "I_Bias1.n17" 8.76379
+resist "I_Bias1.n54" "I_Bias1.n53" 8.76379
+resist "I_Bias1.n15" "I_Bias1.n14" 8.76379
+resist "I_Bias1.n59" "I_Bias1.n58" 8.76379
+resist "I_Bias1.n60" "I_Bias1.n13" 8.76379
+resist "I_Bias1.n62" "I_Bias1.n61" 8.76379
+resist "I_Bias1.n11" "I_Bias1.n10" 8.76379
+resist "I_Bias1.n67" "I_Bias1.n66" 8.76379
+resist "I_Bias1.n68" "I_Bias1.n8" 8.76379
+resist "I_Bias1.n70" "I_Bias1.n69" 8.76379
+resist "I_Bias1.n9" "I_Bias1.n6" 8.76379
+resist "I_Bias1.n29" "I_Bias1.n28" 8.76379
+resist "I_Bias1.n19" "I_Bias1.n18" 8.76379
+resist "I_Bias1.n47" "I_Bias1.n46" 8.76379
+resist "I_Bias1.n45" "I_Bias1.n21" 8.76379
+resist "I_Bias1.n44" "I_Bias1.n43" 8.76379
+resist "I_Bias1.n23" "I_Bias1.n22" 8.76379
+resist "I_Bias1.n39" "I_Bias1.n38" 8.76379
+resist "I_Bias1.n37" "I_Bias1.n25" 8.76379
+resist "I_Bias1.n36" "I_Bias1.n35" 8.76379
+resist "I_Bias1.n27" "I_Bias1.n26" 8.76379
+resist "I_Bias1.n31" "I_Bias1.n30" 8.76379
+resist "I_Bias1.n264" "I_Bias1.n101" 8.76379
+resist "I_Bias1.n266" "I_Bias1.n265" 8.76379
+resist "I_Bias1.n97" "I_Bias1.n96" 8.76379
+resist "I_Bias1.n272" "I_Bias1.n271" 8.76379
+resist "I_Bias1.n273" "I_Bias1.n95" 8.76379
+resist "I_Bias1.n275" "I_Bias1.n274" 8.76379
+resist "I_Bias1.n90" "I_Bias1.n89" 8.76379
+resist "I_Bias1.n281" "I_Bias1.n280" 8.76379
+resist "I_Bias1.n282" "I_Bias1.n87" 8.76379
+resist "I_Bias1.n263" "I_Bias1.n262" 8.76379
+resist "I_Bias1.n88" "I_Bias1.n86" 8.76379
+resist "I_Bias1.n215" "I_Bias1.n214" 8.76379
+resist "I_Bias1.n103" "I_Bias1.n102" 8.76379
+resist "I_Bias1.n233" "I_Bias1.n232" 8.76379
+resist "I_Bias1.n231" "I_Bias1.n105" 8.76379
+resist "I_Bias1.n230" "I_Bias1.n229" 8.76379
+resist "I_Bias1.n107" "I_Bias1.n106" 8.76379
+resist "I_Bias1.n225" "I_Bias1.n224" 8.76379
+resist "I_Bias1.n223" "I_Bias1.n109" 8.76379
+resist "I_Bias1.n222" "I_Bias1.n221" 8.76379
+resist "I_Bias1.n111" "I_Bias1.n110" 8.76379
+resist "I_Bias1.n217" "I_Bias1.n216" 8.76379
+resist "I_Bias1.n185" "I_Bias1.n121" 8.76379
+resist "I_Bias1.n166" "I_Bias1.n131" 8.76379
+resist "I_Bias1.n168" "I_Bias1.n167" 8.76379
+resist "I_Bias1.n129" "I_Bias1.n128" 8.76379
+resist "I_Bias1.n173" "I_Bias1.n172" 8.76379
+resist "I_Bias1.n174" "I_Bias1.n127" 8.76379
+resist "I_Bias1.n176" "I_Bias1.n175" 8.76379
+resist "I_Bias1.n124" "I_Bias1.n123" 8.76379
+resist "I_Bias1.n181" "I_Bias1.n180" 8.76379
+resist "I_Bias1.n182" "I_Bias1.n122" 8.76379
+resist "I_Bias1.n184" "I_Bias1.n183" 8.76379
+resist "I_Bias1.n143" "I_Bias1.n142" 8.76379
+resist "I_Bias1.n145" "I_Bias1.n144" 8.76379
+resist "I_Bias1.n141" "I_Bias1.n140" 8.76379
+resist "I_Bias1.n150" "I_Bias1.n149" 8.76379
+resist "I_Bias1.n151" "I_Bias1.n139" 8.76379
+resist "I_Bias1.n153" "I_Bias1.n152" 8.76379
+resist "I_Bias1.n137" "I_Bias1.n136" 8.76379
+resist "I_Bias1.n158" "I_Bias1.n157" 8.76379
+resist "I_Bias1.n159" "I_Bias1.n135" 8.76379
+resist "I_Bias1.n161" "I_Bias1.n160" 8.76379
+resist "I_Bias1.n133" "I_Bias1.n132" 8.76379
+resist "I_Bias1.n0" "I_Bias1.t11" 9.9
+resist "I_Bias1.n0" "I_Bias1.t23" 9.9
+resist "I_Bias1.n246" "I_Bias1.t3" 9.9
+resist "I_Bias1.n246" "I_Bias1.t15" 9.9
+resist "I_Bias1.n243" "I_Bias1.t21" 9.9
+resist "I_Bias1.n243" "I_Bias1.t19" 9.9
+resist "I_Bias1.n241" "I_Bias1.t17" 9.9
+resist "I_Bias1.n241" "I_Bias1.t9" 9.9
+resist "I_Bias1.n238" "I_Bias1.t13" 9.9
+resist "I_Bias1.n238" "I_Bias1.t5" 9.9
+resist "I_Bias1.n259" "I_Bias1.t7" 9.9
+resist "I_Bias1.n259" "I_Bias1.t25" 9.9
+resist "I_Bias1.n115" "I_Bias1.t27" 9.9
+resist "I_Bias1.n115" "I_Bias1.t29" 9.9
+resist "I_Bias1.n114" "I_Bias1.t26" 9.9
+resist "I_Bias1.n114" "I_Bias1.t30" 9.9
+resist "I_Bias1.n117" "I_Bias1.t28" 10.0459
+resist "I_Bias1.n51" "I_Bias1.n16" 12.5842
+resist "I_Bias1.n50" "I_Bias1.n49" 12.5842
+resist "I_Bias1.n236" "I_Bias1.n235" 12.5842
+resist "I_Bias1.n165" "I_Bias1.n130" 12.5842
+resist "I_Bias1.n164" "I_Bias1.n163" 12.5842
+resist "I_Bias1.n209" "I_Bias1.t56" 30.5542
+resist "I_Bias1.n202" "I_Bias1.t36" 30.5542
+resist "I_Bias1.n83" "I_Bias1.t66" 30.5628
+resist "I_Bias1.n54" "I_Bias1.n17" 36.141
+resist "I_Bias1.n54" "I_Bias1.n15" 36.141
+resist "I_Bias1.n58" "I_Bias1.n15" 36.141
+resist "I_Bias1.n58" "I_Bias1.n13" 36.141
+resist "I_Bias1.n62" "I_Bias1.n13" 36.141
+resist "I_Bias1.n62" "I_Bias1.n11" 36.141
+resist "I_Bias1.n66" "I_Bias1.n11" 36.141
+resist "I_Bias1.n66" "I_Bias1.n8" 36.141
+resist "I_Bias1.n70" "I_Bias1.n8" 36.141
+resist "I_Bias1.n70" "I_Bias1.n6" 36.141
+resist "I_Bias1.n47" "I_Bias1.n19" 36.141
+resist "I_Bias1.n47" "I_Bias1.n21" 36.141
+resist "I_Bias1.n43" "I_Bias1.n21" 36.141
+resist "I_Bias1.n43" "I_Bias1.n23" 36.141
+resist "I_Bias1.n39" "I_Bias1.n23" 36.141
+resist "I_Bias1.n39" "I_Bias1.n25" 36.141
+resist "I_Bias1.n35" "I_Bias1.n25" 36.141
+resist "I_Bias1.n35" "I_Bias1.n27" 36.141
+resist "I_Bias1.n31" "I_Bias1.n27" 36.141
+resist "I_Bias1.n31" "I_Bias1.n28" 36.141
+resist "I_Bias1.n262" "I_Bias1.n101" 36.141
+resist "I_Bias1.n266" "I_Bias1.n101" 36.141
+resist "I_Bias1.n266" "I_Bias1.n97" 36.141
+resist "I_Bias1.n271" "I_Bias1.n97" 36.141
+resist "I_Bias1.n271" "I_Bias1.n95" 36.141
+resist "I_Bias1.n275" "I_Bias1.n95" 36.141
+resist "I_Bias1.n275" "I_Bias1.n90" 36.141
+resist "I_Bias1.n280" "I_Bias1.n90" 36.141
+resist "I_Bias1.n280" "I_Bias1.n87" 36.141
+resist "I_Bias1.n284" "I_Bias1.n87" 36.141
+resist "I_Bias1.n284" "I_Bias1.n86" 36.141
+resist "I_Bias1.n233" "I_Bias1.n103" 36.141
+resist "I_Bias1.n233" "I_Bias1.n105" 36.141
+resist "I_Bias1.n229" "I_Bias1.n105" 36.141
+resist "I_Bias1.n229" "I_Bias1.n107" 36.141
+resist "I_Bias1.n225" "I_Bias1.n107" 36.141
+resist "I_Bias1.n225" "I_Bias1.n109" 36.141
+resist "I_Bias1.n221" "I_Bias1.n109" 36.141
+resist "I_Bias1.n221" "I_Bias1.n111" 36.141
+resist "I_Bias1.n217" "I_Bias1.n111" 36.141
+resist "I_Bias1.n217" "I_Bias1.n214" 36.141
+resist "I_Bias1.n168" "I_Bias1.n131" 36.141
+resist "I_Bias1.n168" "I_Bias1.n129" 36.141
+resist "I_Bias1.n172" "I_Bias1.n129" 36.141
+resist "I_Bias1.n172" "I_Bias1.n127" 36.141
+resist "I_Bias1.n176" "I_Bias1.n127" 36.141
+resist "I_Bias1.n176" "I_Bias1.n124" 36.141
+resist "I_Bias1.n180" "I_Bias1.n124" 36.141
+resist "I_Bias1.n180" "I_Bias1.n122" 36.141
+resist "I_Bias1.n184" "I_Bias1.n122" 36.141
+resist "I_Bias1.n185" "I_Bias1.n184" 36.141
+resist "I_Bias1.n161" "I_Bias1.n133" 36.141
+resist "I_Bias1.n161" "I_Bias1.n135" 36.141
+resist "I_Bias1.n157" "I_Bias1.n135" 36.141
+resist "I_Bias1.n157" "I_Bias1.n137" 36.141
+resist "I_Bias1.n153" "I_Bias1.n137" 36.141
+resist "I_Bias1.n153" "I_Bias1.n139" 36.141
+resist "I_Bias1.n149" "I_Bias1.n139" 36.141
+resist "I_Bias1.n149" "I_Bias1.n141" 36.141
+resist "I_Bias1.n145" "I_Bias1.n141" 36.141
+resist "I_Bias1.n145" "I_Bias1.n142" 36.141
+resist "I_Bias1.n77" "I_Bias1.t48" 61.4593
+resist "I_Bias1.n78" "I_Bias1.t41" 61.4593
+resist "I_Bias1.n79" "I_Bias1.t52" 61.4593
+resist "I_Bias1.n80" "I_Bias1.t50" 61.4593
+resist "I_Bias1.t50" "I_Bias1.n4" 61.4593
+resist "I_Bias1.n76" "I_Bias1.t48" 61.4593
+resist "I_Bias1.n75" "I_Bias1.t41" 61.4593
+resist "I_Bias1.n74" "I_Bias1.t52" 61.4593
+resist "I_Bias1.t46" "I_Bias1.n113" 61.4593
+resist "I_Bias1.n197" "I_Bias1.t34" 61.4593
+resist "I_Bias1.n198" "I_Bias1.t67" 61.4593
+resist "I_Bias1.n199" "I_Bias1.t72" 61.4593
+resist "I_Bias1.n200" "I_Bias1.t59" 61.4593
+resist "I_Bias1.n192" "I_Bias1.t63" 61.4593
+resist "I_Bias1.n191" "I_Bias1.t63" 61.4593
+resist "I_Bias1.n193" "I_Bias1.t54" 61.4593
+resist "I_Bias1.n190" "I_Bias1.t54" 61.4593
+resist "I_Bias1.n194" "I_Bias1.t71" 61.4593
+resist "I_Bias1.n189" "I_Bias1.t71" 61.4593
+resist "I_Bias1.n195" "I_Bias1.t70" 61.4593
+resist "I_Bias1.t70" "I_Bias1.n118" 61.4593
+resist "I_Bias1.n204" "I_Bias1.t59" 61.4593
+resist "I_Bias1.n205" "I_Bias1.t72" 61.4593
+resist "I_Bias1.n206" "I_Bias1.t67" 61.4593
+resist "I_Bias1.n207" "I_Bias1.t34" 61.4593
+resist "I_Bias1.n208" "I_Bias1.t46" 61.4593
+resist "I_Bias1.n77" "I_Bias1.t68" 61.8623
+resist "I_Bias1.t68" "I_Bias1.n76" 61.8623
+resist "I_Bias1.t39" "I_Bias1.n191" 61.8623
+resist "I_Bias1.n192" "I_Bias1.t39" 61.8623
+resist "I_Bias1.n52" "I_Bias1.n51" 70.109
+resist "I_Bias1.n53" "I_Bias1.n52" 70.109
+resist "I_Bias1.n53" "I_Bias1.n14" 70.109
+resist "I_Bias1.n59" "I_Bias1.n14" 70.109
+resist "I_Bias1.n60" "I_Bias1.n59" 70.109
+resist "I_Bias1.n61" "I_Bias1.n60" 70.109
+resist "I_Bias1.n61" "I_Bias1.n10" 70.109
+resist "I_Bias1.n67" "I_Bias1.n10" 70.109
+resist "I_Bias1.n68" "I_Bias1.n67" 70.109
+resist "I_Bias1.n69" "I_Bias1.n68" 70.109
+resist "I_Bias1.n69" "I_Bias1.n9" 70.109
+resist "I_Bias1.n50" "I_Bias1.n18" 70.109
+resist "I_Bias1.n46" "I_Bias1.n18" 70.109
+resist "I_Bias1.n46" "I_Bias1.n45" 70.109
+resist "I_Bias1.n45" "I_Bias1.n44" 70.109
+resist "I_Bias1.n44" "I_Bias1.n22" 70.109
+resist "I_Bias1.n38" "I_Bias1.n22" 70.109
+resist "I_Bias1.n38" "I_Bias1.n37" 70.109
+resist "I_Bias1.n37" "I_Bias1.n36" 70.109
+resist "I_Bias1.n36" "I_Bias1.n26" 70.109
+resist "I_Bias1.n30" "I_Bias1.n26" 70.109
+resist "I_Bias1.n30" "I_Bias1.n29" 70.109
+resist "I_Bias1.n264" "I_Bias1.n263" 70.109
+resist "I_Bias1.n265" "I_Bias1.n264" 70.109
+resist "I_Bias1.n265" "I_Bias1.n96" 70.109
+resist "I_Bias1.n272" "I_Bias1.n96" 70.109
+resist "I_Bias1.n273" "I_Bias1.n272" 70.109
+resist "I_Bias1.n274" "I_Bias1.n273" 70.109
+resist "I_Bias1.n274" "I_Bias1.n89" 70.109
+resist "I_Bias1.n281" "I_Bias1.n89" 70.109
+resist "I_Bias1.n282" "I_Bias1.n281" 70.109
+resist "I_Bias1.n283" "I_Bias1.n282" 70.109
+resist "I_Bias1.n283" "I_Bias1.n88" 70.109
+resist "I_Bias1.n236" "I_Bias1.n102" 70.109
+resist "I_Bias1.n232" "I_Bias1.n102" 70.109
+resist "I_Bias1.n232" "I_Bias1.n231" 70.109
+resist "I_Bias1.n231" "I_Bias1.n230" 70.109
+resist "I_Bias1.n230" "I_Bias1.n106" 70.109
+resist "I_Bias1.n224" "I_Bias1.n106" 70.109
+resist "I_Bias1.n224" "I_Bias1.n223" 70.109
+resist "I_Bias1.n223" "I_Bias1.n222" 70.109
+resist "I_Bias1.n222" "I_Bias1.n110" 70.109
+resist "I_Bias1.n216" "I_Bias1.n110" 70.109
+resist "I_Bias1.n216" "I_Bias1.n215" 70.109
+resist "I_Bias1.n166" "I_Bias1.n165" 70.109
+resist "I_Bias1.n167" "I_Bias1.n166" 70.109
+resist "I_Bias1.n167" "I_Bias1.n128" 70.109
+resist "I_Bias1.n173" "I_Bias1.n128" 70.109
+resist "I_Bias1.n174" "I_Bias1.n173" 70.109
+resist "I_Bias1.n175" "I_Bias1.n174" 70.109
+resist "I_Bias1.n175" "I_Bias1.n123" 70.109
+resist "I_Bias1.n181" "I_Bias1.n123" 70.109
+resist "I_Bias1.n182" "I_Bias1.n181" 70.109
+resist "I_Bias1.n183" "I_Bias1.n182" 70.109
+resist "I_Bias1.n183" "I_Bias1.n121" 70.109
+resist "I_Bias1.n164" "I_Bias1.n132" 70.109
+resist "I_Bias1.n160" "I_Bias1.n132" 70.109
+resist "I_Bias1.n160" "I_Bias1.n159" 70.109
+resist "I_Bias1.n159" "I_Bias1.n158" 70.109
+resist "I_Bias1.n158" "I_Bias1.n136" 70.109
+resist "I_Bias1.n152" "I_Bias1.n136" 70.109
+resist "I_Bias1.n152" "I_Bias1.n151" 70.109
+resist "I_Bias1.n151" "I_Bias1.n150" 70.109
+resist "I_Bias1.n150" "I_Bias1.n140" 70.109
+resist "I_Bias1.n144" "I_Bias1.n140" 70.109
+resist "I_Bias1.n144" "I_Bias1.n143" 70.109
+resist "I_Bias1.t61" "I_Bias1.n9" 356.679
+resist "I_Bias1.n29" "I_Bias1.t61" 356.679
+resist "I_Bias1.n30" "I_Bias1.t55" 356.679
+resist "I_Bias1.n69" "I_Bias1.t55" 356.679
+resist "I_Bias1.n26" "I_Bias1.t51" 356.679
+resist "I_Bias1.n68" "I_Bias1.t51" 356.679
+resist "I_Bias1.n36" "I_Bias1.t37" 356.679
+resist "I_Bias1.n67" "I_Bias1.t37" 356.679
+resist "I_Bias1.n37" "I_Bias1.t31" 356.679
+resist "I_Bias1.t31" "I_Bias1.n10" 356.679
+resist "I_Bias1.n38" "I_Bias1.t60" 356.679
+resist "I_Bias1.n61" "I_Bias1.t60" 356.679
+resist "I_Bias1.n22" "I_Bias1.t53" 356.679
+resist "I_Bias1.n60" "I_Bias1.t53" 356.679
+resist "I_Bias1.n44" "I_Bias1.t49" 356.679
+resist "I_Bias1.n59" "I_Bias1.t49" 356.679
+resist "I_Bias1.n45" "I_Bias1.t42" 356.679
+resist "I_Bias1.t42" "I_Bias1.n14" 356.679
+resist "I_Bias1.n46" "I_Bias1.t35" 356.679
+resist "I_Bias1.n53" "I_Bias1.t35" 356.679
+resist "I_Bias1.n18" "I_Bias1.t65" 356.679
+resist "I_Bias1.n52" "I_Bias1.t65" 356.679
+resist "I_Bias1.t58" "I_Bias1.n50" 356.679
+resist "I_Bias1.n51" "I_Bias1.t58" 356.679
+resist "I_Bias1.t22" "I_Bias1.n88" 356.679
+resist "I_Bias1.n215" "I_Bias1.t22" 356.679
+resist "I_Bias1.n183" "I_Bias1.t40" 356.679
+resist "I_Bias1.n144" "I_Bias1.t40" 356.679
+resist "I_Bias1.t43" "I_Bias1.n164" 356.679
+resist "I_Bias1.n165" "I_Bias1.t43" 356.679
+resist "I_Bias1.n132" "I_Bias1.t47" 356.679
+resist "I_Bias1.n166" "I_Bias1.t47" 356.679
+resist "I_Bias1.n160" "I_Bias1.t62" 356.679
+resist "I_Bias1.n167" "I_Bias1.t62" 356.679
+resist "I_Bias1.n159" "I_Bias1.t69" 356.679
+resist "I_Bias1.t69" "I_Bias1.n128" 356.679
+resist "I_Bias1.n158" "I_Bias1.t32" 356.679
+resist "I_Bias1.n173" "I_Bias1.t32" 356.679
+resist "I_Bias1.n136" "I_Bias1.t38" 356.679
+resist "I_Bias1.n174" "I_Bias1.t38" 356.679
+resist "I_Bias1.n152" "I_Bias1.t44" 356.679
+resist "I_Bias1.n175" "I_Bias1.t44" 356.679
+resist "I_Bias1.n151" "I_Bias1.t57" 356.679
+resist "I_Bias1.t57" "I_Bias1.n123" 356.679
+resist "I_Bias1.n150" "I_Bias1.t64" 356.679
+resist "I_Bias1.n181" "I_Bias1.t64" 356.679
+resist "I_Bias1.n140" "I_Bias1.t33" 356.679
+resist "I_Bias1.n182" "I_Bias1.t33" 356.679
+resist "I_Bias1.n143" "I_Bias1.t45" 356.679
+resist "I_Bias1.t45" "I_Bias1.n121" 356.679
+resist "I_Bias1.n216" "I_Bias1.t10" 356.679
+resist "I_Bias1.n283" "I_Bias1.t10" 356.679
+resist "I_Bias1.n110" "I_Bias1.t14" 356.679
+resist "I_Bias1.n282" "I_Bias1.t14" 356.679
+resist "I_Bias1.n222" "I_Bias1.t2" 356.679
+resist "I_Bias1.n281" "I_Bias1.t2" 356.679
+resist "I_Bias1.n223" "I_Bias1.t18" 356.679
+resist "I_Bias1.t18" "I_Bias1.n89" 356.679
+resist "I_Bias1.n224" "I_Bias1.t20" 356.679
+resist "I_Bias1.n274" "I_Bias1.t20" 356.679
+resist "I_Bias1.n106" "I_Bias1.t8" 356.679
+resist "I_Bias1.n273" "I_Bias1.t8" 356.679
+resist "I_Bias1.n230" "I_Bias1.t16" 356.679
+resist "I_Bias1.n272" "I_Bias1.t16" 356.679
+resist "I_Bias1.n231" "I_Bias1.t4" 356.679
+resist "I_Bias1.t4" "I_Bias1.n96" 356.679
+resist "I_Bias1.n232" "I_Bias1.t12" 356.679
+resist "I_Bias1.n265" "I_Bias1.t12" 356.679
+resist "I_Bias1.n102" "I_Bias1.t24" 356.679
+resist "I_Bias1.n264" "I_Bias1.t24" 356.679
+resist "I_Bias1.t6" "I_Bias1.n236" 356.679
+resist "I_Bias1.n263" "I_Bias1.t6" 356.679
+rnode "VPP.t56" 0 12.4488 766 2345 0
+rnode "VPP.t77" 0 12.4488 708 2345 0
+rnode "VPP.n0" 0 69.783 737 2345 0
+rnode "VPP.t88" 0 12.4488 962 2345 0
+rnode "VPP.t29" 0 12.4488 904 2345 0
+rnode "VPP.n1" 0 69.783 933 2345 0
+rnode "VPP.t74" 0 12.4488 1158 2345 0
+rnode "VPP.t75" 0 12.4488 1100 2345 0
+rnode "VPP.n2" 0 69.783 1129 2345 0
+rnode "VPP.t21" 0 12.4488 1354 2345 0
+rnode "VPP.t53" 0 12.4488 1296 2345 0
+rnode "VPP.n3" 0 69.783 1325 2345 0
+rnode "VPP.t67" 0 12.4488 1550 2345 0
+rnode "VPP.t84" 0 12.4488 1492 2345 0
+rnode "VPP.n4" 0 69.783 1521 2345 0
+rnode "VPP.t45" 0 12.4488 1746 2345 0
+rnode "VPP.t66" 0 12.4488 1688 2345 0
+rnode "VPP.n5" 0 69.783 1717 2345 0
+rnode "VPP.t79" 0 12.4488 1942 2345 0
+rnode "VPP.t11" 0 12.4488 1884 2345 0
+rnode "VPP.n6" 0 69.783 1913 2345 0
+rnode "VPP.t23" 0 13.8114 2080 2345 0
+rnode "VPP.n7" 0 246.247 2087 2459 0
+rnode "VPP.n8" 0 103.326 1891 2459 0
+rnode "VPP.n9" 0 103.71 1695 2459 0
+rnode "VPP.n10" 0 103.71 1499 2459 0
+rnode "VPP.n11" 0 103.71 1303 2459 0
+rnode "VPP.n12" 0 103.71 1107 2459 0
+rnode "VPP.n13" 0 103.71 911 2459 0
+rnode "VPP.n14" 0 115.647 715 2459 0
+rnode "VPP.t9" 0 12.4488 -1032 2345 0
+rnode "VPP.t7" 0 12.4488 -1090 2345 0
+rnode "VPP.n15" 0 100.266 -1061 2345 0
+rnode "VPP.t70" 0 12.4488 -836 2345 0
+rnode "VPP.t50" 0 12.4488 -894 2345 0
+rnode "VPP.n16" 0 69.783 -865 2345 0
+rnode "VPP.n17" 0 154.015 -887 2459 0
+rnode "VPP.t25" 0 12.4488 -640 2345 0
+rnode "VPP.t87" 0 12.4488 -698 2345 0
+rnode "VPP.n18" 0 69.783 -669 2345 0
+rnode "VPP.n19" 0 103.71 -691 2459 0
+rnode "VPP.t55" 0 12.4488 -444 2345 0
+rnode "VPP.t27" 0 12.4488 -502 2345 0
+rnode "VPP.n20" 0 69.783 -473 2345 0
+rnode "VPP.n21" 0 103.71 -495 2459 0
+rnode "VPP.t3" 0 12.4488 -248 2345 0
+rnode "VPP.t76" 0 12.4488 -306 2345 0
+rnode "VPP.n22" 0 69.783 -277 2345 0
+rnode "VPP.n23" 0 103.71 -299 2459 0
+rnode "VPP.t54" 0 12.4488 -52 2345 0
+rnode "VPP.t39" 0 12.4488 -110 2345 0
+rnode "VPP.n24" 0 69.783 -81 2345 0
+rnode "VPP.n25" 0 103.71 -103 2459 0
+rnode "VPP.t86" 0 12.4488 144 2345 0
+rnode "VPP.t59" 0 12.4488 86 2345 0
+rnode "VPP.n26" 0 69.783 115 2345 0
+rnode "VPP.n27" 0 103.71 93 2459 0
+rnode "VPP.t69" 0 13.8113 282 2345 0
+rnode "VPP.n28" 0 178.171 289 2459 0
+rnode "VPP.n29" 0 300.168 474 2460 0
+rnode "VPP.t35" 0 13.7944 282 1709 0
+rnode "VPP.n30" 0 3.49999 289 1595 0
+rnode "VPP.n31" 0 103.041 311 1595 0
+rnode "VPP.t72" 0 12.4488 -1032 1709 0
+rnode "VPP.t71" 0 12.4488 -1090 1709 0
+rnode "VPP.n32" 0 98.53 -1061 1709 0
+rnode "VPP.t37" 0 12.4488 -836 1709 0
+rnode "VPP.t1" 0 12.4488 -894 1709 0
+rnode "VPP.n33" 0 69.6839 -865 1709 0
+rnode "VPP.n34" 0 143.434 -844 1595 0
+rnode "VPP.t81" 0 12.4488 -640 1709 0
+rnode "VPP.t63" 0 12.4488 -698 1709 0
+rnode "VPP.n35" 0 69.6839 -669 1709 0
+rnode "VPP.n36" 0 98.4865 -648 1595 0
+rnode "VPP.t15" 0 12.4488 -444 1709 0
+rnode "VPP.t82" 0 12.4488 -502 1709 0
+rnode "VPP.n37" 0 69.6839 -473 1709 0
+rnode "VPP.n38" 0 98.4865 -452 1595 0
+rnode "VPP.t68" 0 12.4488 -248 1709 0
+rnode "VPP.t47" 0 12.4488 -306 1709 0
+rnode "VPP.n39" 0 69.6839 -277 1709 0
+rnode "VPP.n40" 0 98.4865 -256 1595 0
+rnode "VPP.t13" 0 12.4488 -52 1709 0
+rnode "VPP.t85" 0 12.4488 -110 1709 0
+rnode "VPP.n41" 0 69.6839 -81 1709 0
+rnode "VPP.n42" 0 98.4865 -60 1595 0
+rnode "VPP.t61" 0 12.4488 144 1709 0
+rnode "VPP.t19" 0 12.4488 86 1709 0
+rnode "VPP.n43" 0 69.6839 115 1709 0
+rnode "VPP.n44" 0 93.6853 136 1595 0
+rnode "VPP.n45" 0 29.6994 285 1590 0
+rnode "VPP.n46" 0 13.1972 311 1589 0
+rnode "VPP.n47" 0 11.4906 325 1670 0
+rnode "VPP.n48" 0 28.7825 332 1595 0
+rnode "VPP.t17" 0 12.4488 766 1709 0
+rnode "VPP.t49" 0 12.4488 708 1709 0
+rnode "VPP.n49" 0 69.6839 737 1709 0
+rnode "VPP.t65" 0 12.4488 962 1709 0
+rnode "VPP.t83" 0 12.4488 904 1709 0
+rnode "VPP.n50" 0 69.6839 933 1709 0
+rnode "VPP.t41" 0 12.4488 1158 1709 0
+rnode "VPP.t43" 0 12.4488 1100 1709 0
+rnode "VPP.n51" 0 69.6839 1129 1709 0
+rnode "VPP.t78" 0 12.4488 1354 1709 0
+rnode "VPP.t5" 0 12.4488 1296 1709 0
+rnode "VPP.n52" 0 69.6839 1325 1709 0
+rnode "VPP.t33" 0 12.4488 1550 1709 0
+rnode "VPP.t58" 0 12.4488 1492 1709 0
+rnode "VPP.n53" 0 69.6839 1521 1709 0
+rnode "VPP.t89" 0 12.4488 1746 1709 0
+rnode "VPP.t31" 0 12.4488 1688 1709 0
+rnode "VPP.n54" 0 69.6839 1717 1709 0
+rnode "VPP.t52" 0 12.4488 1942 1709 0
+rnode "VPP.t73" 0 12.4488 1884 1709 0
+rnode "VPP.n55" 0 69.6839 1913 1709 0
+rnode "VPP.t80" 0 13.8152 2080 1709 0
+rnode "VPP.t100" 0 375.748 2678 1693 0
+rnode "VPP.t96" 0 417.365 2520 1693 0
+rnode "VPP.t126" 0 375.748 3784 1693 0
+rnode "VPP.t106" 0 417.365 3942 1693 0
+rnode "VPP.n56" 0 703.202 4135 1693 0
+rnode "VPP.n57" 0 93.2287 4135 1693 0
+rnode "VPP.n58" 0 469.904 4135 1693 0
+rnode "VPP.n59" 0 886.187 4380 250 0
+rnode "VPP.n60" 0 336.062 4380 250 0
+rnode "VPP.n61" 0 112.306 4380 250 0
+rnode "VPP.n62" 0 339.491 4118 1271 0
+rnode "VPP.t92" 0 375.748 3626 1693 0
+rnode "VPP.t114" 0 375.748 3468 1693 0
+rnode "VPP.t110" 0 278.244 3310 1693 0
+rnode "VPP.n63" 0 93.9369 3234 1216 0
+rnode "VPP.n64" 0 334.833 3234 1216 0
+rnode "VPP.n65" 0 138.025 3234 1216 0
+rnode "VPP.n66" 0 268.711 3231 2059 0
+rnode "VPP.n67" 0 90.1935 3231 2059 0
+rnode "VPP.t124" 0 375.748 2836 1693 0
+rnode "VPP.t112" 0 375.748 2994 1693 0
+rnode "VPP.t128" 0 281.811 3152 1693 0
+rnode "VPP.n68" 0 97.5041 3231 2059 0
+rnode "VPP.n69" 0 83.3484 3231 1327 0
+rnode "VPP.n70" 0 148.307 3231 1327 0
+rnode "VPP.n71" 0 97.0583 2088 250 0
+rnode "VPP.n72" 0 199.164 2275 1360 0
+rnode "VPP.n73" 0 15.6984 2327 1458 0
+rnode "VPP.n74" 0 46.821 2327 1458 0
+rnode "VPP.n75" 0 294.698 2327 1745 0
+rnode "VPP.n76" 0 41.3193 2327 1693 0
+rnode "VPP.n77" 0 10.472 2327 1693 0
+rnode "VPP.n78" 0 0 2327 1693 0
+rnode "VPP.n79" 0 140.264 2327 1745 0
+rnode "VPP.n80" 0 158.067 2344 2101 0
+rnode "VPP.n81" 0 614.447 2276 250 0
+rnode "VPP.n82" 0 202.145 2227 1790 0
+rnode "VPP.t30" 0 310.044 1668 2345 0
+rnode "VPP.t44" 0 310.044 1766 2345 0
+rnode "VPP.t10" 0 310.044 1864 2345 0
+rnode "VPP.t51" 0 306.449 1962 2345 0
+rnode "VPP.t22" 0 470.772 2060 2345 0
+rnode "VPP.n83" 0 898.299 3234 -716 0
+rnode "VPP.n84" 0 334.833 3234 -716 0
+rnode "VPP.n85" 0 154.008 3234 -716 0
+rnode "VPP.n86" 0 111.798 2088 250 0
+rnode "VPP.n87" 0 336.062 2088 250 0
+rnode "VPP.n88" 0 572.108 2088 250 0
+rnode "VPP.n89" 0 514.897 2210 1790 0
+rnode "VPP.n90" 0 34.803 2223 1466 0
+rnode "VPP.n91" 0 47.7709 2223 1466 0
+rnode "VPP.n92" 0 64.8389 2223 2351 0
+rnode "VPP.n93" 0 416.028 525 2027 0
+rnode "VPP.n94" 0 112.021 525 2027 0
+rnode "VPP.n95" 0 57.2006 525 2027 0
+rnode "VPP.n96" 0 537.526 -1273 2027 0
+rnode "VPP.n97" 0 115.857 -1273 2027 0
+rnode "VPP.t46" 0 310.044 -326 2345 0
+rnode "VPP.t6" 0 412.879 -1110 2345 0
+rnode "VPP.t8" 0 310.044 -1012 2345 0
+rnode "VPP.t0" 0 310.044 -914 2345 0
+rnode "VPP.t36" 0 310.044 -816 2345 0
+rnode "VPP.t62" 0 310.044 -718 2345 0
+rnode "VPP.t24" 0 310.044 -620 2345 0
+rnode "VPP.t26" 0 310.044 -522 2345 0
+rnode "VPP.n98" 0 111.737 -424 1343 0
+rnode "VPP.n99" 0 111.723 -424 1343 0
+rnode "VPP.t14" 0 310.044 -424 2711 0
+rnode "VPP.n100" 0 111.723 -424 2711 0
+rnode "VPP.n101" 0 331.631 -424 2711 0
+rnode "VPP.t2" 0 310.044 -228 2345 0
+rnode "VPP.t38" 0 310.044 -130 2345 0
+rnode "VPP.t12" 0 310.044 -32 2345 0
+rnode "VPP.t18" 0 310.044 66 2345 0
+rnode "VPP.t60" 0 310.044 164 2345 0
+rnode "VPP.t34" 0 412.864 262 2345 0
+rnode "VPP.n102" 0 416.028 425 2027 0
+rnode "VPP.n103" 0 112.021 425 2027 0
+rnode "VPP.n104" 0 57.2006 425 2027 0
+rnode "VPP.n105" 0 163.926 442 2060 0
+rnode "VPP.n106" 0 163.926 508 2060 0
+rnode "VPP.t32" 0 310.044 1570 2345 0
+rnode "VPP.t57" 0 310.044 1472 2345 0
+rnode "VPP.t48" 0 412.864 688 2345 0
+rnode "VPP.t16" 0 310.044 786 2345 0
+rnode "VPP.t28" 0 310.044 884 2345 0
+rnode "VPP.t64" 0 310.044 982 2345 0
+rnode "VPP.t42" 0 310.044 1080 2345 0
+rnode "VPP.t40" 0 310.044 1178 2345 0
+rnode "VPP.t4" 0 310.044 1276 2345 0
+rnode "VPP.n107" 0 81.5458 1374 1343 0
+rnode "VPP.n108" 0 90.845 1374 1343 0
+rnode "VPP.t20" 0 310.044 1374 2711 0
+rnode "VPP.n109" 0 99.7119 1374 2711 0
+rnode "VPP.n110" 0 291.876 1374 2711 0
+rnode "VPP.n111" 0 187.203 2223 2351 0
+rnode "VPP.n112" 0 56.1992 2223 2351 0
+rnode "VPP.n113" 0 0 2223 2351 0
+rnode "VPP.n114" 0 20.4697 2223 2027 0
+rnode "VPP.n115" 0 54.0506 2223 2027 0
+rnode "VPP.n116" 0 20.4697 2227 1790 0
+rnode "VPP.t101" 0 12.4488 2628 1693 0
+rnode "VPP.t97" 0 12.4488 2570 1693 0
+rnode "VPP.n117" 0 69.7837 2599 1693 0
+rnode "VPP.t113" 0 12.4488 2944 1693 0
+rnode "VPP.t125" 0 12.4488 2886 1693 0
+rnode "VPP.n118" 0 69.7837 2915 1693 0
+rnode "VPP.t111" 0 12.4488 3260 1693 0
+rnode "VPP.t129" 0 12.4488 3202 1693 0
+rnode "VPP.n119" 0 69.7837 3231 1693 0
+rnode "VPP.t93" 0 12.4488 3576 1693 0
+rnode "VPP.t115" 0 12.4488 3518 1693 0
+rnode "VPP.n120" 0 69.7837 3547 1693 0
+rnode "VPP.t107" 0 12.4488 3892 1693 0
+rnode "VPP.t127" 0 12.4488 3834 1693 0
+rnode "VPP.n121" 0 126.383 3863 1693 0
+rnode "VPP.n122" 0 399.103 3525 1807 0
+rnode "VPP.n123" 0 276.696 3209 1807 0
+rnode "VPP.n124" 0 276.696 2893 1807 0
+rnode "VPP.n125" 0 276.768 2577 1807 0
+rnode "VPP.n126" 0 261.826 2279 1790 0
+rnode "VPP.n127" 0 189.909 2254 1730 0
+rnode "VPP.n128" 0 203.658 2130 1595 0
+rnode "VPP.n129" 0 98.2498 1934 1595 0
+rnode "VPP.n130" 0 98.4865 1738 1595 0
+rnode "VPP.n131" 0 98.4865 1542 1595 0
+rnode "VPP.n132" 0 98.4865 1346 1595 0
+rnode "VPP.n133" 0 98.4865 1150 1595 0
+rnode "VPP.n134" 0 98.4865 954 1595 0
+rnode "VPP.n135" 0 109.946 758 1595 0
+rnode "VPP.n136" 0 285.942 474 1580 0
+rnode "VPP.n137" 0 2486.75 484 2370 0
+rnode "VPP.t224" 0 76989.8 1254 -130 0
+rnode "VPP.t223" 0 135696 8624 -1099 0
+rnode "VPP.n138" 0 19597.5 5910 -4083 0
+rnode "VPP.t211" 0 12.4488 766 -4725 0
+rnode "VPP.t175" 0 12.4488 708 -4725 0
+rnode "VPP.n139" 0 69.783 737 -4725 0
+rnode "VPP.t209" 0 12.4488 962 -4725 0
+rnode "VPP.t169" 0 12.4488 904 -4725 0
+rnode "VPP.n140" 0 69.783 933 -4725 0
+rnode "VPP.t206" 0 12.4488 1158 -4725 0
+rnode "VPP.t189" 0 12.4488 1100 -4725 0
+rnode "VPP.n141" 0 69.783 1129 -4725 0
+rnode "VPP.t203" 0 12.4488 1354 -4725 0
+rnode "VPP.t161" 0 12.4488 1296 -4725 0
+rnode "VPP.n142" 0 69.783 1325 -4725 0
+rnode "VPP.t201" 0 12.4488 1550 -4725 0
+rnode "VPP.t157" 0 12.4488 1492 -4725 0
+rnode "VPP.n143" 0 69.783 1521 -4725 0
+rnode "VPP.t187" 0 12.4488 1746 -4725 0
+rnode "VPP.t218" 0 12.4488 1688 -4725 0
+rnode "VPP.n144" 0 69.783 1717 -4725 0
+rnode "VPP.t185" 0 12.4488 1942 -4725 0
+rnode "VPP.t217" 0 12.4488 1884 -4725 0
+rnode "VPP.n145" 0 69.783 1913 -4725 0
+rnode "VPP.t219" 0 13.8114 2080 -4725 0
+rnode "VPP.n146" 0 246.247 2087 -4611 0
+rnode "VPP.n147" 0 103.326 1891 -4611 0
+rnode "VPP.n148" 0 103.71 1695 -4611 0
+rnode "VPP.n149" 0 103.71 1499 -4611 0
+rnode "VPP.n150" 0 103.71 1303 -4611 0
+rnode "VPP.n151" 0 103.71 1107 -4611 0
+rnode "VPP.n152" 0 103.71 911 -4611 0
+rnode "VPP.n153" 0 115.647 715 -4611 0
+rnode "VPP.t215" 0 12.4488 -1032 -4725 0
+rnode "VPP.t145" 0 12.4488 -1090 -4725 0
+rnode "VPP.n154" 0 100.266 -1061 -4725 0
+rnode "VPP.t214" 0 12.4488 -836 -4725 0
+rnode "VPP.t179" 0 12.4488 -894 -4725 0
+rnode "VPP.n155" 0 69.783 -865 -4725 0
+rnode "VPP.n156" 0 154.015 -887 -4611 0
+rnode "VPP.t216" 0 12.4488 -640 -4725 0
+rnode "VPP.t181" 0 12.4488 -698 -4725 0
+rnode "VPP.n157" 0 69.783 -669 -4725 0
+rnode "VPP.n158" 0 103.71 -691 -4611 0
+rnode "VPP.t147" 0 12.4488 -444 -4725 0
+rnode "VPP.t197" 0 12.4488 -502 -4725 0
+rnode "VPP.n159" 0 69.783 -473 -4725 0
+rnode "VPP.n160" 0 103.71 -495 -4611 0
+rnode "VPP.t151" 0 12.4488 -248 -4725 0
+rnode "VPP.t198" 0 12.4488 -306 -4725 0
+rnode "VPP.n161" 0 69.783 -277 -4725 0
+rnode "VPP.n162" 0 103.71 -299 -4611 0
+rnode "VPP.t149" 0 12.4488 -52 -4725 0
+rnode "VPP.t200" 0 12.4488 -110 -4725 0
+rnode "VPP.n163" 0 69.783 -81 -4725 0
+rnode "VPP.n164" 0 103.71 -103 -4611 0
+rnode "VPP.t153" 0 12.4488 144 -4725 0
+rnode "VPP.t177" 0 12.4488 86 -4725 0
+rnode "VPP.n165" 0 69.783 115 -4725 0
+rnode "VPP.n166" 0 103.71 93 -4611 0
+rnode "VPP.t199" 0 13.8113 282 -4725 0
+rnode "VPP.n167" 0 178.171 289 -4611 0
+rnode "VPP.n168" 0 296.93 474 -4610 0
+rnode "VPP.t135" 0 13.7944 282 -5361 0
+rnode "VPP.n169" 0 3.49999 289 -5475 0
+rnode "VPP.n170" 0 103.041 311 -5475 0
+rnode "VPP.t165" 0 12.4488 -1032 -5361 0
+rnode "VPP.t190" 0 12.4488 -1090 -5361 0
+rnode "VPP.n171" 0 98.53 -1061 -5361 0
+rnode "VPP.t163" 0 12.4488 -836 -5361 0
+rnode "VPP.t207" 0 12.4488 -894 -5361 0
+rnode "VPP.n172" 0 69.6839 -865 -5361 0
+rnode "VPP.n173" 0 143.434 -844 -5475 0
+rnode "VPP.t167" 0 12.4488 -640 -5361 0
+rnode "VPP.t208" 0 12.4488 -698 -5361 0
+rnode "VPP.n174" 0 69.6839 -669 -5361 0
+rnode "VPP.n175" 0 98.4865 -648 -5475 0
+rnode "VPP.t191" 0 12.4488 -444 -5361 0
+rnode "VPP.t131" 0 12.4488 -502 -5361 0
+rnode "VPP.n176" 0 69.6839 -473 -5361 0
+rnode "VPP.n177" 0 98.4865 -452 -5475 0
+rnode "VPP.t193" 0 12.4488 -248 -5361 0
+rnode "VPP.t133" 0 12.4488 -306 -5361 0
+rnode "VPP.n178" 0 69.6839 -277 -5361 0
+rnode "VPP.n179" 0 98.4865 -256 -5475 0
+rnode "VPP.t192" 0 12.4488 -52 -5361 0
+rnode "VPP.t137" 0 12.4488 -110 -5361 0
+rnode "VPP.n180" 0 69.6839 -81 -5361 0
+rnode "VPP.n181" 0 98.4865 -60 -5475 0
+rnode "VPP.t194" 0 12.4488 144 -5361 0
+rnode "VPP.t205" 0 12.4488 86 -5361 0
+rnode "VPP.n182" 0 69.6839 115 -5361 0
+rnode "VPP.n183" 0 93.6853 136 -5475 0
+rnode "VPP.n184" 0 29.6994 285 -5480 0
+rnode "VPP.n185" 0 13.1972 311 -5481 0
+rnode "VPP.n186" 0 11.4906 325 -5400 0
+rnode "VPP.n187" 0 28.7825 332 -5475 0
+rnode "VPP.t159" 0 12.4488 766 -5361 0
+rnode "VPP.t204" 0 12.4488 708 -5361 0
+rnode "VPP.n188" 0 69.6839 737 -5361 0
+rnode "VPP.t155" 0 12.4488 962 -5361 0
+rnode "VPP.t202" 0 12.4488 904 -5361 0
+rnode "VPP.n189" 0 69.6839 933 -5361 0
+rnode "VPP.t143" 0 12.4488 1158 -5361 0
+rnode "VPP.t213" 0 12.4488 1100 -5361 0
+rnode "VPP.n190" 0 69.6839 1129 -5361 0
+rnode "VPP.t141" 0 12.4488 1354 -5361 0
+rnode "VPP.t196" 0 12.4488 1296 -5361 0
+rnode "VPP.n191" 0 69.6839 1325 -5361 0
+rnode "VPP.t139" 0 12.4488 1550 -5361 0
+rnode "VPP.t195" 0 12.4488 1492 -5361 0
+rnode "VPP.n192" 0 69.6839 1521 -5361 0
+rnode "VPP.t212" 0 12.4488 1746 -5361 0
+rnode "VPP.t173" 0 12.4488 1688 -5361 0
+rnode "VPP.n193" 0 69.6839 1717 -5361 0
+rnode "VPP.t210" 0 12.4488 1942 -5361 0
+rnode "VPP.t171" 0 12.4488 1884 -5361 0
+rnode "VPP.n194" 0 69.6839 1913 -5361 0
+rnode "VPP.t183" 0 13.8152 2080 -5361 0
+rnode "VPP.n195" 0 20.4697 2227 -5280 0
+rnode "VPP.n196" 0 41.4674 2279 -5280 0
+rnode "VPP.t102" 0 375.748 3784 -5377 0
+rnode "VPP.t98" 0 417.365 3942 -5377 0
+rnode "VPP.n197" 0 703.202 4135 -5377 0
+rnode "VPP.n198" 0 93.2287 4135 -5377 0
+rnode "VPP.n199" 0 469.904 4135 -5377 0
+rnode "VPP.n200" 0 886.187 4380 -6820 0
+rnode "VPP.n201" 0 336.062 4380 -6820 0
+rnode "VPP.n202" 0 112.306 4380 -6820 0
+rnode "VPP.n203" 0 339.491 4118 -5799 0
+rnode "VPP.t116" 0 375.748 3626 -5377 0
+rnode "VPP.t120" 0 375.748 3468 -5377 0
+rnode "VPP.t104" 0 278.244 3310 -5377 0
+rnode "VPP.n204" 0 93.9369 3234 -5854 0
+rnode "VPP.n205" 0 334.833 3234 -5854 0
+rnode "VPP.n206" 0 138.025 3234 -5854 0
+rnode "VPP.n207" 0 268.711 3231 -5011 0
+rnode "VPP.n208" 0 90.1935 3231 -5011 0
+rnode "VPP.t90" 0 375.748 2836 -5377 0
+rnode "VPP.t118" 0 375.748 2994 -5377 0
+rnode "VPP.t108" 0 281.811 3152 -5377 0
+rnode "VPP.n209" 0 97.5041 3231 -5011 0
+rnode "VPP.n210" 0 83.3484 3231 -5743 0
+rnode "VPP.n211" 0 148.307 3231 -5743 0
+rnode "VPP.n212" 0 97.0583 2088 -6820 0
+rnode "VPP.n213" 0 199.164 2275 -5710 0
+rnode "VPP.n214" 0 15.6984 2327 -5612 0
+rnode "VPP.n215" 0 46.8421 2327 -5612 0
+rnode "VPP.n216" 0 51.7001 2327 -5325 0
+rnode "VPP.t94" 0 375.748 2678 -5377 0
+rnode "VPP.t122" 0 417.365 2520 -5377 0
+rnode "VPP.n217" 0 434.962 2327 -5325 0
+rnode "VPP.n218" 0 0 2327 -5325 0
+rnode "VPP.n219" 0 158.067 2344 -4969 0
+rnode "VPP.n220" 0 614.447 2276 -6820 0
+rnode "VPP.n221" 0 202.145 2227 -5280 0
+rnode "VPP.t172" 0 310.044 1668 -4725 0
+rnode "VPP.t186" 0 310.044 1766 -4725 0
+rnode "VPP.t170" 0 310.044 1864 -4725 0
+rnode "VPP.t184" 0 306.449 1962 -4725 0
+rnode "VPP.t182" 0 470.772 2060 -4725 0
+rnode "VPP.n222" 0 898.299 3234 -7786 0
+rnode "VPP.n223" 0 334.833 3234 -7786 0
+rnode "VPP.n224" 0 154.008 3234 -7786 0
+rnode "VPP.n225" 0 111.798 2088 -6820 0
+rnode "VPP.n226" 0 336.062 2088 -6820 0
+rnode "VPP.n227" 0 572.108 2088 -6820 0
+rnode "VPP.n228" 0 514.897 2210 -5280 0
+rnode "VPP.n229" 0 34.8731 2223 -5604 0
+rnode "VPP.n230" 0 47.7709 2223 -5604 0
+rnode "VPP.n231" 0 64.8389 2223 -4719 0
+rnode "VPP.n232" 0 416.028 525 -5043 0
+rnode "VPP.n233" 0 112.021 525 -5043 0
+rnode "VPP.n234" 0 57.2006 525 -5043 0
+rnode "VPP.n235" 0 537.526 -1273 -5043 0
+rnode "VPP.n236" 0 115.857 -1273 -5043 0
+rnode "VPP.t132" 0 310.044 -326 -4725 0
+rnode "VPP.t144" 0 412.879 -1110 -4725 0
+rnode "VPP.t164" 0 310.044 -1012 -4725 0
+rnode "VPP.t178" 0 310.044 -914 -4725 0
+rnode "VPP.t162" 0 310.044 -816 -4725 0
+rnode "VPP.t180" 0 310.044 -718 -4725 0
+rnode "VPP.t166" 0 310.044 -620 -4725 0
+rnode "VPP.t130" 0 310.044 -522 -4725 0
+rnode "VPP.n237" 0 111.737 -424 -5727 0
+rnode "VPP.n238" 0 111.723 -424 -5727 0
+rnode "VPP.t146" 0 310.044 -424 -4359 0
+rnode "VPP.n239" 0 111.723 -424 -4359 0
+rnode "VPP.n240" 0 331.631 -424 -4359 0
+rnode "VPP.t150" 0 310.044 -228 -4725 0
+rnode "VPP.t136" 0 310.044 -130 -4725 0
+rnode "VPP.t148" 0 310.044 -32 -4725 0
+rnode "VPP.t176" 0 310.044 66 -4725 0
+rnode "VPP.t152" 0 310.044 164 -4725 0
+rnode "VPP.t134" 0 412.864 262 -4725 0
+rnode "VPP.n241" 0 416.028 425 -5043 0
+rnode "VPP.n242" 0 112.021 425 -5043 0
+rnode "VPP.n243" 0 57.2006 425 -5043 0
+rnode "VPP.n244" 0 163.926 442 -5010 0
+rnode "VPP.n245" 0 163.926 508 -5010 0
+rnode "VPP.t138" 0 310.044 1570 -4725 0
+rnode "VPP.t156" 0 310.044 1472 -4725 0
+rnode "VPP.t174" 0 412.864 688 -4725 0
+rnode "VPP.t158" 0 310.044 786 -4725 0
+rnode "VPP.t168" 0 310.044 884 -4725 0
+rnode "VPP.t154" 0 310.044 982 -4725 0
+rnode "VPP.t188" 0 310.044 1080 -4725 0
+rnode "VPP.t142" 0 310.044 1178 -4725 0
+rnode "VPP.t160" 0 310.044 1276 -4725 0
+rnode "VPP.n246" 0 81.5458 1374 -5727 0
+rnode "VPP.n247" 0 90.845 1374 -5727 0
+rnode "VPP.t140" 0 310.044 1374 -4359 0
+rnode "VPP.n248" 0 99.7119 1374 -4359 0
+rnode "VPP.n249" 0 291.876 1374 -4359 0
+rnode "VPP.n250" 0 187.203 2223 -4719 0
+rnode "VPP.n251" 0 56.1992 2223 -4719 0
+rnode "VPP.n252" 0 0 2223 -4719 0
+rnode "VPP.n253" 0 20.4697 2223 -5043 0
+rnode "VPP.n254" 0 46.7918 2223 -5043 0
+rnode "VPP.n255" 0 48.2226 2292 -5045 0
+rnode "VPP.t95" 0 12.4488 2628 -5377 0
+rnode "VPP.t123" 0 12.4488 2570 -5377 0
+rnode "VPP.n256" 0 69.7837 2599 -5377 0
+rnode "VPP.t119" 0 12.4488 2944 -5377 0
+rnode "VPP.t91" 0 12.4488 2886 -5377 0
+rnode "VPP.n257" 0 69.7837 2915 -5377 0
+rnode "VPP.t105" 0 12.4488 3260 -5377 0
+rnode "VPP.t109" 0 12.4488 3202 -5377 0
+rnode "VPP.n258" 0 69.7837 3231 -5377 0
+rnode "VPP.t117" 0 12.4488 3576 -5377 0
+rnode "VPP.t121" 0 12.4488 3518 -5377 0
+rnode "VPP.n259" 0 69.7837 3547 -5377 0
+rnode "VPP.t99" 0 12.4488 3892 -5377 0
+rnode "VPP.t103" 0 12.4488 3834 -5377 0
+rnode "VPP.n260" 0 69.7837 3863 -5377 0
+rnode "VPP.t221" 0 3.11666 6576 -10261 0
+rnode "VPP.n261" 0 27.9603 6605 -10261 0
+rnode "VPP.n262" 0 7.70774 6621 -10261 0
+rnode "VPP.n263" 0 8.37957 6645 -10310 0
+rnode "VPP.n264" 0 5.91251 6690 -10260 0
+rnode "VPP.n265" 0 13.7502 6686 -10260 0
+rnode "VPP.n266" 0 14.8512 6719 -10359 0
+rnode "VPP.n267" 0 17.004 6719 -10359 0
+rnode "VPP.n268" 0 1.7967 6719 -10162 0
+rnode "VPP.n269" 0 201.501 6719 -10162 0
+rnode "VPP.n270" 0 235.112 6233 -10261 0
+rnode "VPP.n271" 0 33.6194 6233 -10261 0
+rnode "VPP.n272" 0 29.6022 6476 -10477 0
+rnode "VPP.n273" 0 29.6022 6476 -10477 0
+rnode "VPP.n274" 0 0 6476 -10045 0
+rnode "VPP.t220" 0 280.608 6476 -10045 0
+rnode "VPP.n275" 0 29.5632 6476 -10045 0
+rnode "VPP.n276" 0 29.5632 6476 -10045 0
+rnode "VPP.n277" 0 14.7808 6719 -10162 0
+rnode "VPP.n278" 0 16.97 6719 -10162 0
+rnode "VPP.n279" 0 1.79739 6719 -10162 0
+rnode "VPP.n280" 0 3.6305 6719 -10261 0
+rnode "VPP.n281" 0 19.0218 6719 -10260 0
+rnode "VPP.n282" 0 4.24908 6719 -10260 0
+rnode "VPP.n283" 0 38.848 6690 -10260 0
+rnode "VPP.n284" 0 1046.99 6645 -10212 0
+rnode "VPP.n285" 0 1425 3841 -5263 0
+rnode "VPP.n286" 0 276.696 3525 -5263 0
+rnode "VPP.n287" 0 276.696 3209 -5263 0
+rnode "VPP.n288" 0 276.696 2893 -5263 0
+rnode "VPP.n289" 0 276.768 2577 -5263 0
+rnode "VPP.n290" 0 179.395 2279 -5280 0
+rnode "VPP.n291" 0 189.909 2254 -5340 0
+rnode "VPP.n292" 0 203.658 2130 -5475 0
+rnode "VPP.n293" 0 98.2498 1934 -5475 0
+rnode "VPP.n294" 0 98.4865 1738 -5475 0
+rnode "VPP.n295" 0 98.4865 1542 -5475 0
+rnode "VPP.n296" 0 98.4865 1346 -5475 0
+rnode "VPP.n297" 0 98.4865 1150 -5475 0
+rnode "VPP.n298" 0 98.4865 954 -5475 0
+rnode "VPP.n299" 0 109.946 758 -5475 0
+rnode "VPP.n300" 0 285.942 474 -5490 0
+rnode "VPP.n301" 0 2489.99 484 -4700 0
+rnode "VPP.t225" 0 75724.2 1254 -7200 0
+rnode "VPP.n302" 0 7740.24 5910 -4980 0
+rnode "VPP.t222" 0 142628 8624 -8409 0
+rnode "VPP" 0 6437.71 11130 -5060 0
+rnode "VPP" 0 377.456 11180 -4890 0
+resist "VPP.n290" "VPP.n218" 0.0005
+resist "VPP.n283" "VPP.n282" 0.0005
+resist "VPP.n218" "VPP.n196" 0.0005
+resist "VPP.n79" "VPP.n78" 0.0005
+resist "VPP.n78" "VPP.n75" 0.0005
+resist "VPP.n252" "VPP.n231" 0.000500098
+resist "VPP.n113" "VPP.n92" 0.000500098
+resist "VPP.n279" "VPP.n269" 0.000502933
+resist "VPP.n269" "VPP.n268" 0.000519618
+resist "VPP.n281" "VPP.n280" 0.000549033
+resist "VPP.n217" "VPP.n216" 0.000998903
+resist "VPP.n223" "VPP.n222" 0.0015
+resist "VPP.n224" "VPP.n223" 0.0015
+resist "VPP.n205" "VPP.n204" 0.0015
+resist "VPP.n206" "VPP.n205" 0.0015
+resist "VPP.n84" "VPP.n83" 0.0015
+resist "VPP.n85" "VPP.n84" 0.0015
+resist "VPP.n64" "VPP.n63" 0.0015
+resist "VPP.n65" "VPP.n64" 0.0015
+resist "VPP.n170" "VPP.n169" 0.00199911
+resist "VPP.n31" "VPP.n30" 0.00199911
+resist "VPP.n227" "VPP.n226" 0.002
+resist "VPP.n226" "VPP.n225" 0.002
+resist "VPP.n201" "VPP.n200" 0.002
+resist "VPP.n202" "VPP.n201" 0.002
+resist "VPP.n88" "VPP.n87" 0.002
+resist "VPP.n87" "VPP.n86" 0.002
+resist "VPP.n60" "VPP.n59" 0.002
+resist "VPP.n61" "VPP.n60" 0.002
+resist "VPP.n209" "VPP.n208" 0.0025
+resist "VPP.n208" "VPP.n207" 0.0025
+resist "VPP.n210" "VPP.n209" 0.0025
+resist "VPP.n211" "VPP.n210" 0.0025
+resist "VPP.t140" "VPP.n247" 0.0025
+resist "VPP.n247" "VPP.n246" 0.0025
+resist "VPP.n248" "VPP.t140" 0.0025
+resist "VPP.n249" "VPP.n248" 0.0025
+resist "VPP.t146" "VPP.n238" 0.0025
+resist "VPP.n238" "VPP.n237" 0.0025
+resist "VPP.n239" "VPP.t146" 0.0025
+resist "VPP.n240" "VPP.n239" 0.0025
+resist "VPP.n68" "VPP.n67" 0.0025
+resist "VPP.n67" "VPP.n66" 0.0025
+resist "VPP.n69" "VPP.n68" 0.0025
+resist "VPP.n70" "VPP.n69" 0.0025
+resist "VPP.n100" "VPP.t14" 0.0025
+resist "VPP.n101" "VPP.n100" 0.0025
+resist "VPP.n109" "VPP.t20" 0.0025
+resist "VPP.n110" "VPP.n109" 0.0025
+resist "VPP.t20" "VPP.n108" 0.0025
+resist "VPP.n108" "VPP.n107" 0.0025
+resist "VPP.t14" "VPP.n99" 0.0025
+resist "VPP.n99" "VPP.n98" 0.0025
+resist "VPP.n301" "VPP.n168" 0.00283846
+resist "VPP.n233" "VPP.n232" 0.0035
+resist "VPP.n234" "VPP.n233" 0.0035
+resist "VPP.n242" "VPP.n241" 0.0035
+resist "VPP.n243" "VPP.n242" 0.0035
+resist "VPP.n236" "VPP.n235" 0.0035
+resist "VPP.n94" "VPP.n93" 0.0035
+resist "VPP.n95" "VPP.n94" 0.0035
+resist "VPP.n103" "VPP.n102" 0.0035
+resist "VPP.n104" "VPP.n103" 0.0035
+resist "VPP.n97" "VPP.n96" 0.0035
+resist "VPP.t220" "VPP.n274" 0.00362804
+resist "VPP.n137" "VPP.n29" 0.00383846
+resist "VPP.n187" "VPP.n186" 0.004
+resist "VPP.n48" "VPP.n47" 0.004
+resist "VPP.n283" "VPP.n264" 0.00442025
+resist "VPP.n185" "VPP.n184" 0.00450424
+resist "VPP.n46" "VPP.n45" 0.00450424
+resist "VPP.n254" "VPP.n253" 0.007
+resist "VPP.n115" "VPP.n114" 0.007
+resist "VPP.n253" "VPP.n252" 0.00749986
+resist "VPP.n114" "VPP.n113" 0.00749986
+resist "VPP.n198" "VPP.n197" 0.0075
+resist "VPP.n199" "VPP.n198" 0.0075
+resist "VPP.n57" "VPP.n56" 0.0075
+resist "VPP.n58" "VPP.n57" 0.0075
+resist "VPP.n291" "VPP.n290" 0.008
+resist "VPP.n127" "VPP.n126" 0.008
+resist "VPP.n282" "VPP.n281" 0.00931186
+resist "VPP.n280" "VPP.n279" 0.010941
+resist "VPP.n185" "VPP.n170" 0.0114956
+resist "VPP.n46" "VPP.n31" 0.0114956
+resist "VPP.n274" "VPP.n273" 0.0118719
+resist "VPP" "VPP" 0.013
+resist "VPP.n138" "VPP.t223" 0.014
+resist "VPP.n273" "VPP.n272" 0.0145
+resist "VPP.n275" "VPP.t220" 0.0145
+resist "VPP.n276" "VPP.n275" 0.0145
+resist "VPP.n77" "VPP.n76" 0.015
+resist "VPP.n78" "VPP.n77" 0.0154988
+resist "VPP.n251" "VPP.n250" 0.016
+resist "VPP.n112" "VPP.n111" 0.016
+resist "VPP.n252" "VPP.n251" 0.0164997
+resist "VPP.n113" "VPP.n112" 0.0164997
+resist "VPP.n271" "VPP.n270" 0.0175
+resist "VPP.n262" "VPP.n261" 0.0194473
+resist "VPP.n263" "VPP.n262" 0.025
+resist "VPP.n186" "VPP.n185" 0.0284066
+resist "VPP.n47" "VPP.n46" 0.0284066
+resist "VPP.n126" "VPP.n79" 0.0366748
+resist "VPP.n218" "VPP.n217" 0.0371748
+resist "VPP" "VPP.t222" 0.041
+resist "VPP.n284" "VPP.n283" 0.042
+resist "VPP.n264" "VPP.n263" 0.0426625
+resist "VPP.n302" "VPP.n138" 0.045
+resist "VPP.t222" "VPP.n302" 0.053
+resist "VPP.n290" "VPP.n255" 0.0584541
+resist "VPP.t225" "VPP.n301" 0.06
+resist "VPP.t224" "VPP.n137" 0.06
+resist "VPP" "VPP.n138" 0.065
+resist "VPP.n300" "VPP.n187" 0.098
+resist "VPP.n136" "VPP.n48" 0.098
+resist "VPP.n289" "VPP.n288" 0.110957
+resist "VPP.n288" "VPP.n287" 0.110957
+resist "VPP.n287" "VPP.n286" 0.110957
+resist "VPP.n286" "VPP.n285" 0.110957
+resist "VPP.n125" "VPP.n124" 0.110957
+resist "VPP.n124" "VPP.n123" 0.110957
+resist "VPP.n123" "VPP.n122" 0.110957
+resist "VPP.n290" "VPP.n289" 0.111377
+resist "VPP.n126" "VPP.n125" 0.111377
+resist "VPP.n168" "VPP.n167" 0.120543
+resist "VPP.n29" "VPP.n28" 0.120543
+resist "VPP.n215" "VPP.n214" 0.122
+resist "VPP.n75" "VPP.n74" 0.122
+resist "VPP.n74" "VPP.n73" 0.122
+resist "VPP.n216" "VPP.n215" 0.122983
+resist "VPP.n301" "VPP.n300" 0.133
+resist "VPP.n137" "VPP.n136" 0.133
+resist "VPP.n184" "VPP.n183" 0.133326
+resist "VPP.n45" "VPP.n44" 0.133326
+resist "VPP.n292" "VPP.n291" 0.134334
+resist "VPP.n128" "VPP.n127" 0.134334
+resist "VPP.n147" "VPP.n146" 0.142876
+resist "VPP.n8" "VPP.n7" 0.142876
+resist "VPP.n158" "VPP.n156" 0.145869
+resist "VPP.n160" "VPP.n158" 0.145869
+resist "VPP.n162" "VPP.n160" 0.145869
+resist "VPP.n164" "VPP.n162" 0.145869
+resist "VPP.n166" "VPP.n164" 0.145869
+resist "VPP.n167" "VPP.n166" 0.145869
+resist "VPP.n153" "VPP.n152" 0.145869
+resist "VPP.n152" "VPP.n151" 0.145869
+resist "VPP.n151" "VPP.n150" 0.145869
+resist "VPP.n150" "VPP.n149" 0.145869
+resist "VPP.n149" "VPP.n148" 0.145869
+resist "VPP.n148" "VPP.n147" 0.145869
+resist "VPP.n14" "VPP.n13" 0.145869
+resist "VPP.n13" "VPP.n12" 0.145869
+resist "VPP.n12" "VPP.n11" 0.145869
+resist "VPP.n11" "VPP.n10" 0.145869
+resist "VPP.n10" "VPP.n9" 0.145869
+resist "VPP.n9" "VPP.n8" 0.145869
+resist "VPP.n19" "VPP.n17" 0.145869
+resist "VPP.n21" "VPP.n19" 0.145869
+resist "VPP.n23" "VPP.n21" 0.145869
+resist "VPP.n25" "VPP.n23" 0.145869
+resist "VPP.n27" "VPP.n25" 0.145869
+resist "VPP.n28" "VPP.n27" 0.145869
+resist "VPP.n293" "VPP.n292" 0.151862
+resist "VPP.n129" "VPP.n128" 0.151862
+resist "VPP.n175" "VPP.n173" 0.154854
+resist "VPP.n177" "VPP.n175" 0.154854
+resist "VPP.n179" "VPP.n177" 0.154854
+resist "VPP.n181" "VPP.n179" 0.154854
+resist "VPP.n183" "VPP.n181" 0.154854
+resist "VPP.n299" "VPP.n298" 0.154854
+resist "VPP.n298" "VPP.n297" 0.154854
+resist "VPP.n297" "VPP.n296" 0.154854
+resist "VPP.n296" "VPP.n295" 0.154854
+resist "VPP.n295" "VPP.n294" 0.154854
+resist "VPP.n294" "VPP.n293" 0.154854
+resist "VPP.n36" "VPP.n34" 0.154854
+resist "VPP.n38" "VPP.n36" 0.154854
+resist "VPP.n40" "VPP.n38" 0.154854
+resist "VPP.n42" "VPP.n40" 0.154854
+resist "VPP.n44" "VPP.n42" 0.154854
+resist "VPP.n135" "VPP.n134" 0.154854
+resist "VPP.n134" "VPP.n133" 0.154854
+resist "VPP.n133" "VPP.n132" 0.154854
+resist "VPP.n132" "VPP.n131" 0.154854
+resist "VPP.n131" "VPP.n130" 0.154854
+resist "VPP.n130" "VPP.n129" 0.154854
+resist "VPP.n231" "VPP.n230" 0.158
+resist "VPP.n230" "VPP.n229" 0.158
+resist "VPP.n92" "VPP.n91" 0.158
+resist "VPP.n91" "VPP.n90" 0.158
+resist "VPP.n300" "VPP.n299" 0.193528
+resist "VPP.n136" "VPP.n135" 0.193528
+resist "VPP.n267" "VPP.n266" 0.194
+resist "VPP.n168" "VPP.n153" 0.194326
+resist "VPP.n29" "VPP.n14" 0.194326
+resist "VPP.n268" "VPP.n267" 0.194372
+resist "VPP.n278" "VPP.n277" 0.203
+resist "VPP.n279" "VPP.n278" 0.203378
+resist "VPP.n302" "VPP.t225" 0.233
+resist "VPP.n147" "VPP.n145" 0.240634
+resist "VPP.n148" "VPP.n144" 0.240634
+resist "VPP.n149" "VPP.n143" 0.240634
+resist "VPP.n150" "VPP.n142" 0.240634
+resist "VPP.n151" "VPP.n141" 0.240634
+resist "VPP.n152" "VPP.n140" 0.240634
+resist "VPP.n153" "VPP.n139" 0.240634
+resist "VPP.n166" "VPP.n165" 0.240634
+resist "VPP.n164" "VPP.n163" 0.240634
+resist "VPP.n162" "VPP.n161" 0.240634
+resist "VPP.n160" "VPP.n159" 0.240634
+resist "VPP.n158" "VPP.n157" 0.240634
+resist "VPP.n156" "VPP.n155" 0.240634
+resist "VPP.n27" "VPP.n26" 0.240634
+resist "VPP.n25" "VPP.n24" 0.240634
+resist "VPP.n23" "VPP.n22" 0.240634
+resist "VPP.n21" "VPP.n20" 0.240634
+resist "VPP.n19" "VPP.n18" 0.240634
+resist "VPP.n17" "VPP.n16" 0.240634
+resist "VPP.n8" "VPP.n6" 0.240634
+resist "VPP.n9" "VPP.n5" 0.240634
+resist "VPP.n10" "VPP.n4" 0.240634
+resist "VPP.n11" "VPP.n3" 0.240634
+resist "VPP.n12" "VPP.n2" 0.240634
+resist "VPP.n13" "VPP.n1" 0.240634
+resist "VPP.n14" "VPP.n0" 0.240634
+resist "VPP.n285" "VPP.n260" 0.240642
+resist "VPP.n286" "VPP.n259" 0.240642
+resist "VPP.n287" "VPP.n258" 0.240642
+resist "VPP.n288" "VPP.n257" 0.240642
+resist "VPP.n289" "VPP.n256" 0.240642
+resist "VPP.n122" "VPP.n120" 0.240642
+resist "VPP.n123" "VPP.n119" 0.240642
+resist "VPP.n124" "VPP.n118" 0.240642
+resist "VPP.n125" "VPP.n117" 0.240642
+resist "VPP.n173" "VPP.n172" 0.241622
+resist "VPP.n175" "VPP.n174" 0.241622
+resist "VPP.n177" "VPP.n176" 0.241622
+resist "VPP.n179" "VPP.n178" 0.241622
+resist "VPP.n181" "VPP.n180" 0.241622
+resist "VPP.n183" "VPP.n182" 0.241622
+resist "VPP.n293" "VPP.n194" 0.241622
+resist "VPP.n294" "VPP.n193" 0.241622
+resist "VPP.n295" "VPP.n192" 0.241622
+resist "VPP.n296" "VPP.n191" 0.241622
+resist "VPP.n297" "VPP.n190" 0.241622
+resist "VPP.n298" "VPP.n189" 0.241622
+resist "VPP.n299" "VPP.n188" 0.241622
+resist "VPP.n34" "VPP.n33" 0.241622
+resist "VPP.n36" "VPP.n35" 0.241622
+resist "VPP.n38" "VPP.n37" 0.241622
+resist "VPP.n40" "VPP.n39" 0.241622
+resist "VPP.n42" "VPP.n41" 0.241622
+resist "VPP.n44" "VPP.n43" 0.241622
+resist "VPP.n135" "VPP.n49" 0.241622
+resist "VPP.n134" "VPP.n50" 0.241622
+resist "VPP.n133" "VPP.n51" 0.241622
+resist "VPP.n132" "VPP.n52" 0.241622
+resist "VPP.n131" "VPP.n53" 0.241622
+resist "VPP.n130" "VPP.n54" 0.241622
+resist "VPP.n129" "VPP.n55" 0.241622
+resist "VPP.n211" "VPP.n206" 0.264
+resist "VPP.n70" "VPP.n65" 0.264
+resist "VPP.n255" "VPP.n254" 0.321331
+resist "VPP.t223" "VPP.t224" 0.343
+resist "VPP.n122" "VPP.n121" 0.3518
+resist "VPP.n126" "VPP.n115" 0.378271
+resist "VPP.n156" "VPP.n154" 0.385559
+resist "VPP.n17" "VPP.n15" 0.385559
+resist "VPP.n173" "VPP.n171" 0.396312
+resist "VPP.n34" "VPP.n32" 0.396312
+resist "VPP.n245" "VPP.n244" 0.578
+resist "VPP.n106" "VPP.n105" 0.578
+resist "VPP.n231" "VPP.n221" 1.069
+resist "VPP.n92" "VPP.n82" 1.069
+resist "VPP.n282" "VPP.n265" 3.0935
+resist "VPP.n231" "VPP.n228" 3.474
+resist "VPP.n92" "VPP.n89" 3.474
+resist "VPP.n285" "VPP.n284" 6.83358
+resist "VPP.n254" "VPP.n219" 6.863
+resist "VPP.n115" "VPP.n80" 6.863
+resist "VPP.n227" "VPP.t182" 7.484
+resist "VPP.n88" "VPP.t22" 7.484
+resist "VPP.n196" "VPP.n195" 8.85486
+resist "VPP.n126" "VPP.n116" 8.85486
+resist "VPP.n214" "VPP.n213" 9.089
+resist "VPP.n73" "VPP.n72" 9.089
+resist "VPP.n244" "VPP.n243" 12.423
+resist "VPP.n245" "VPP.n234" 12.423
+resist "VPP.n105" "VPP.n104" 12.423
+resist "VPP.n106" "VPP.n95" 12.423
+resist "VPP.n221" "VPP.n220" 13.097
+resist "VPP.n82" "VPP.n81" 13.097
+resist "VPP.n171" "VPP.t190" 14.282
+resist "VPP.n171" "VPP.t165" 14.282
+resist "VPP.n172" "VPP.t207" 14.282
+resist "VPP.n172" "VPP.t163" 14.282
+resist "VPP.n174" "VPP.t208" 14.282
+resist "VPP.n174" "VPP.t167" 14.282
+resist "VPP.n176" "VPP.t131" 14.282
+resist "VPP.n176" "VPP.t191" 14.282
+resist "VPP.n178" "VPP.t133" 14.282
+resist "VPP.n178" "VPP.t193" 14.282
+resist "VPP.n180" "VPP.t137" 14.282
+resist "VPP.n180" "VPP.t192" 14.282
+resist "VPP.n182" "VPP.t205" 14.282
+resist "VPP.n182" "VPP.t194" 14.282
+resist "VPP.n145" "VPP.t217" 14.282
+resist "VPP.n145" "VPP.t185" 14.282
+resist "VPP.n144" "VPP.t218" 14.282
+resist "VPP.n144" "VPP.t187" 14.282
+resist "VPP.n143" "VPP.t157" 14.282
+resist "VPP.n143" "VPP.t201" 14.282
+resist "VPP.n142" "VPP.t161" 14.282
+resist "VPP.n142" "VPP.t203" 14.282
+resist "VPP.n141" "VPP.t189" 14.282
+resist "VPP.n141" "VPP.t206" 14.282
+resist "VPP.n140" "VPP.t169" 14.282
+resist "VPP.n140" "VPP.t209" 14.282
+resist "VPP.n139" "VPP.t175" 14.282
+resist "VPP.n139" "VPP.t211" 14.282
+resist "VPP.n165" "VPP.t177" 14.282
+resist "VPP.n165" "VPP.t153" 14.282
+resist "VPP.n163" "VPP.t200" 14.282
+resist "VPP.n163" "VPP.t149" 14.282
+resist "VPP.n161" "VPP.t198" 14.282
+resist "VPP.n161" "VPP.t151" 14.282
+resist "VPP.n159" "VPP.t197" 14.282
+resist "VPP.n159" "VPP.t147" 14.282
+resist "VPP.n157" "VPP.t181" 14.282
+resist "VPP.n157" "VPP.t216" 14.282
+resist "VPP.n155" "VPP.t179" 14.282
+resist "VPP.n155" "VPP.t214" 14.282
+resist "VPP.n154" "VPP.t145" 14.282
+resist "VPP.n154" "VPP.t215" 14.282
+resist "VPP.n260" "VPP.t103" 14.282
+resist "VPP.n260" "VPP.t99" 14.282
+resist "VPP.n259" "VPP.t121" 14.282
+resist "VPP.n259" "VPP.t117" 14.282
+resist "VPP.n258" "VPP.t109" 14.282
+resist "VPP.n258" "VPP.t105" 14.282
+resist "VPP.n257" "VPP.t91" 14.282
+resist "VPP.n257" "VPP.t119" 14.282
+resist "VPP.n256" "VPP.t123" 14.282
+resist "VPP.n256" "VPP.t95" 14.282
+resist "VPP.n194" "VPP.t171" 14.282
+resist "VPP.n194" "VPP.t210" 14.282
+resist "VPP.n193" "VPP.t173" 14.282
+resist "VPP.n193" "VPP.t212" 14.282
+resist "VPP.n192" "VPP.t195" 14.282
+resist "VPP.n192" "VPP.t139" 14.282
+resist "VPP.n191" "VPP.t196" 14.282
+resist "VPP.n191" "VPP.t141" 14.282
+resist "VPP.n190" "VPP.t213" 14.282
+resist "VPP.n190" "VPP.t143" 14.282
+resist "VPP.n189" "VPP.t202" 14.282
+resist "VPP.n189" "VPP.t155" 14.282
+resist "VPP.n188" "VPP.t204" 14.282
+resist "VPP.n188" "VPP.t159" 14.282
+resist "VPP.n32" "VPP.t71" 14.282
+resist "VPP.n32" "VPP.t72" 14.282
+resist "VPP.n33" "VPP.t1" 14.282
+resist "VPP.n33" "VPP.t37" 14.282
+resist "VPP.n35" "VPP.t63" 14.282
+resist "VPP.n35" "VPP.t81" 14.282
+resist "VPP.n37" "VPP.t82" 14.282
+resist "VPP.n37" "VPP.t15" 14.282
+resist "VPP.n39" "VPP.t47" 14.282
+resist "VPP.n39" "VPP.t68" 14.282
+resist "VPP.n41" "VPP.t85" 14.282
+resist "VPP.n41" "VPP.t13" 14.282
+resist "VPP.n43" "VPP.t19" 14.282
+resist "VPP.n43" "VPP.t61" 14.282
+resist "VPP.n26" "VPP.t59" 14.282
+resist "VPP.n26" "VPP.t86" 14.282
+resist "VPP.n24" "VPP.t39" 14.282
+resist "VPP.n24" "VPP.t54" 14.282
+resist "VPP.n22" "VPP.t76" 14.282
+resist "VPP.n22" "VPP.t3" 14.282
+resist "VPP.n20" "VPP.t27" 14.282
+resist "VPP.n20" "VPP.t55" 14.282
+resist "VPP.n18" "VPP.t87" 14.282
+resist "VPP.n18" "VPP.t25" 14.282
+resist "VPP.n16" "VPP.t50" 14.282
+resist "VPP.n16" "VPP.t70" 14.282
+resist "VPP.n15" "VPP.t7" 14.282
+resist "VPP.n15" "VPP.t9" 14.282
+resist "VPP.n6" "VPP.t11" 14.282
+resist "VPP.n6" "VPP.t79" 14.282
+resist "VPP.n5" "VPP.t66" 14.282
+resist "VPP.n5" "VPP.t45" 14.282
+resist "VPP.n4" "VPP.t84" 14.282
+resist "VPP.n4" "VPP.t67" 14.282
+resist "VPP.n3" "VPP.t53" 14.282
+resist "VPP.n3" "VPP.t21" 14.282
+resist "VPP.n2" "VPP.t75" 14.282
+resist "VPP.n2" "VPP.t74" 14.282
+resist "VPP.n1" "VPP.t29" 14.282
+resist "VPP.n1" "VPP.t88" 14.282
+resist "VPP.n0" "VPP.t77" 14.282
+resist "VPP.n0" "VPP.t56" 14.282
+resist "VPP.n121" "VPP.t127" 14.282
+resist "VPP.n121" "VPP.t107" 14.282
+resist "VPP.n120" "VPP.t115" 14.282
+resist "VPP.n120" "VPP.t93" 14.282
+resist "VPP.n119" "VPP.t129" 14.282
+resist "VPP.n119" "VPP.t111" 14.282
+resist "VPP.n118" "VPP.t125" 14.282
+resist "VPP.n118" "VPP.t113" 14.282
+resist "VPP.n117" "VPP.t97" 14.282
+resist "VPP.n117" "VPP.t101" 14.282
+resist "VPP.n49" "VPP.t49" 14.282
+resist "VPP.n49" "VPP.t17" 14.282
+resist "VPP.n50" "VPP.t83" 14.282
+resist "VPP.n50" "VPP.t65" 14.282
+resist "VPP.n51" "VPP.t43" 14.282
+resist "VPP.n51" "VPP.t41" 14.282
+resist "VPP.n52" "VPP.t5" 14.282
+resist "VPP.n52" "VPP.t78" 14.282
+resist "VPP.n53" "VPP.t58" 14.282
+resist "VPP.n53" "VPP.t33" 14.282
+resist "VPP.n54" "VPP.t31" 14.282
+resist "VPP.n54" "VPP.t89" 14.282
+resist "VPP.n55" "VPP.t73" 14.282
+resist "VPP.n55" "VPP.t52" 14.282
+resist "VPP.n170" "VPP.t135" 14.5207
+resist "VPP.n31" "VPP.t35" 14.5207
+resist "VPP.n167" "VPP.t199" 14.5226
+resist "VPP.n28" "VPP.t69" 14.5226
+resist "VPP.n146" "VPP.t219" 14.5226
+resist "VPP.n7" "VPP.t23" 14.5226
+resist "VPP.n292" "VPP.t183" 14.5236
+resist "VPP.n128" "VPP.t80" 14.5236
+resist "VPP.n213" "VPP.n212" 14.891
+resist "VPP.n72" "VPP.n71" 14.891
+resist "VPP.n203" "VPP.n199" 19.571
+resist "VPP.n62" "VPP.n58" 19.571
+resist "VPP.n228" "VPP.n227" 32.611
+resist "VPP.n89" "VPP.n88" 32.611
+resist "VPP.t182" "VPP.t184" 45.81
+resist "VPP.t22" "VPP.t51" 45.81
+resist "VPP.n261" "VPP.t221" 57.1483
+resist "VPP.t164" "VPP.t144" 63.161
+resist "VPP.t178" "VPP.t164" 63.161
+resist "VPP.t162" "VPP.t178" 63.161
+resist "VPP.t180" "VPP.t162" 63.161
+resist "VPP.t166" "VPP.t180" 63.161
+resist "VPP.t130" "VPP.t166" 63.161
+resist "VPP.t146" "VPP.t130" 63.161
+resist "VPP.t146" "VPP.t132" 63.161
+resist "VPP.t136" "VPP.t150" 63.161
+resist "VPP.t148" "VPP.t136" 63.161
+resist "VPP.t176" "VPP.t148" 63.161
+resist "VPP.t152" "VPP.t176" 63.161
+resist "VPP.t134" "VPP.t152" 63.161
+resist "VPP.t158" "VPP.t174" 63.161
+resist "VPP.t168" "VPP.t158" 63.161
+resist "VPP.t154" "VPP.t168" 63.161
+resist "VPP.t188" "VPP.t154" 63.161
+resist "VPP.t142" "VPP.t188" 63.161
+resist "VPP.t160" "VPP.t142" 63.161
+resist "VPP.t140" "VPP.t160" 63.161
+resist "VPP.t140" "VPP.t156" 63.161
+resist "VPP.t156" "VPP.t138" 63.161
+resist "VPP.t186" "VPP.t172" 63.161
+resist "VPP.t170" "VPP.t186" 63.161
+resist "VPP.t184" "VPP.t170" 63.161
+resist "VPP.t8" "VPP.t6" 63.161
+resist "VPP.t0" "VPP.t8" 63.161
+resist "VPP.t36" "VPP.t0" 63.161
+resist "VPP.t62" "VPP.t36" 63.161
+resist "VPP.t24" "VPP.t62" 63.161
+resist "VPP.t26" "VPP.t24" 63.161
+resist "VPP.t14" "VPP.t26" 63.161
+resist "VPP.t14" "VPP.t46" 63.161
+resist "VPP.t38" "VPP.t2" 63.161
+resist "VPP.t12" "VPP.t38" 63.161
+resist "VPP.t18" "VPP.t12" 63.161
+resist "VPP.t60" "VPP.t18" 63.161
+resist "VPP.t34" "VPP.t60" 63.161
+resist "VPP.t16" "VPP.t48" 63.161
+resist "VPP.t28" "VPP.t16" 63.161
+resist "VPP.t64" "VPP.t28" 63.161
+resist "VPP.t42" "VPP.t64" 63.161
+resist "VPP.t40" "VPP.t42" 63.161
+resist "VPP.t4" "VPP.t40" 63.161
+resist "VPP.t20" "VPP.t4" 63.161
+resist "VPP.t20" "VPP.t57" 63.161
+resist "VPP.t57" "VPP.t32" 63.161
+resist "VPP.t44" "VPP.t30" 63.161
+resist "VPP.t10" "VPP.t44" 63.161
+resist "VPP.t51" "VPP.t10" 63.161
+resist "VPP.n204" "VPP.t104" 65.162
+resist "VPP.n63" "VPP.t110" 65.162
+resist "VPP.n209" "VPP.t108" 67.734
+resist "VPP.n68" "VPP.t128" 67.734
+resist "VPP.n206" "VPP.n203" 78.035
+resist "VPP.n65" "VPP.n62" 78.035
+resist "VPP.n213" "VPP.n211" 83.785
+resist "VPP.n72" "VPP.n70" 83.785
+resist "VPP.n241" "VPP.t134" 105.054
+resist "VPP.n102" "VPP.t34" 105.054
+resist "VPP.n277" "VPP.n276" 129.129
+resist "VPP.t122" "VPP.t94" 135.469
+resist "VPP.t118" "VPP.t90" 135.469
+resist "VPP.t108" "VPP.t118" 135.469
+resist "VPP.t104" "VPP.t120" 135.469
+resist "VPP.t120" "VPP.t116" 135.469
+resist "VPP.t98" "VPP.t102" 135.469
+resist "VPP.t96" "VPP.t100" 135.469
+resist "VPP.t112" "VPP.t124" 135.469
+resist "VPP.t128" "VPP.t112" 135.469
+resist "VPP.t110" "VPP.t114" 135.469
+resist "VPP.t114" "VPP.t92" 135.469
+resist "VPP.t106" "VPP.t126" 135.469
+resist "VPP.n250" "VPP.n249" 153.346
+resist "VPP.n111" "VPP.n110" 153.346
+resist "VPP.n217" "VPP.t122" 165.478
+resist "VPP.n197" "VPP.t98" 165.478
+resist "VPP.n75" "VPP.t96" 165.478
+resist "VPP.n56" "VPP.t106" 165.478
+resist "VPP.n276" "VPP.n271" 166.399
+resist "VPP.n203" "VPP.n202" 361.033
+resist "VPP.n62" "VPP.n61" 361.033
+resist "VPP.n240" "VPP.n236" 364.305
+resist "VPP.n101" "VPP.n97" 364.305
+resist "VPP.n244" "VPP.n240" 367.685
+resist "VPP.n249" "VPP.n245" 367.685
+resist "VPP.n110" "VPP.n106" 367.685
+resist "VPP.n105" "VPP.n101" 367.685
+resist "VPP.n225" "VPP.n224" 788.927
+resist "VPP.n86" "VPP.n85" 788.927
+rnode "VM31D.n0" 0 4008.43 3094 -5491 0
+rnode "VM31D.n1" 0 23.4016 3292 -7250 0
+rnode "VM31D.n2" 0 315.047 3285 -7324 0
+rnode "VM31D.n3" 0 519.497 3089 -6512 0
+rnode "VM31D.n4" 0 2675.61 3054 -6390 0
+rnode "VM31D.n5" 0 199.533 3292 -6392 0
+rnode "VM31D.t3" 0 91.5323 3102 -5377 0
+rnode "VM31D.t5" 0 91.5323 3044 -5377 0
+rnode "VM31D.n6" 0 510.391 3073 -5377 0
+rnode "VM31D.n7" 0 182.788 3094 -5491 0
+rnode "VM31D.t4" 0 91.5323 3418 -5377 0
+rnode "VM31D.t1" 0 91.5323 3360 -5377 0
+rnode "VM31D.n8" 0 512.365 3389 -5377 0
+rnode "VM31D.t8" 0 91.5323 3734 -5377 0
+rnode "VM31D.t7" 0 91.5323 3676 -5377 0
+rnode "VM31D.n9" 0 512.365 3705 -5377 0
+rnode "VM31D.t6" 0 122.81 3992 -5377 0
+rnode "VM31D.n10" 0 2407.18 3726 -5491 0
+rnode "VM31D.n11" 0 929.098 3410 -5491 0
+rnode "VM31D.t2" 0 122.566 2470 -5377 0
+rnode "VM31D.t9" 0 91.5323 2786 -5377 0
+rnode "VM31D.t0" 0 91.5323 2728 -5377 0
+rnode "VM31D.n12" 0 512.365 2757 -5377 0
+rnode "VM31D.n13" 0 2214.45 2778 -5491 0
+rnode "VM31D.t30" 0 91.5323 3510 -6512 0
+rnode "VM31D.t16" 0 91.5323 3452 -6512 0
+rnode "VM31D.n14" 0 513.129 3481 -6512 0
+rnode "VM31D.t25" 0 91.5323 3706 -6512 0
+rnode "VM31D.t11" 0 91.5323 3648 -6512 0
+rnode "VM31D.n15" 0 513.129 3677 -6512 0
+rnode "VM31D.t24" 0 91.5323 3902 -6512 0
+rnode "VM31D.t10" 0 91.5323 3844 -6512 0
+rnode "VM31D.n16" 0 745.961 3873 -6512 0
+rnode "VM31D.n17" 0 1204.65 3655 -6398 0
+rnode "VM31D.n18" 0 760.489 3459 -6398 0
+rnode "VM31D.n19" 0 297.216 3311 -6390 0
+rnode "VM31D.t31" 0 91.5323 3314 -6512 0
+rnode "VM31D.t17" 0 91.5323 3256 -6512 0
+rnode "VM31D.n20" 0 511.156 3285 -6512 0
+rnode "VM31D.n21" 0 94.5989 3266 -6392 0
+rnode "VM31D.n22" 0 143.805 3274 -6391 0
+rnode "VM31D.t13" 0 91.5323 3314 -7130 0
+rnode "VM31D.t29" 0 91.5323 3256 -7130 0
+rnode "VM31D.n23" 0 510.427 3285 -7130 0
+rnode "VM31D.n24" 0 92.9584 3266 -7250 0
+rnode "VM31D.t12" 0 91.5323 3510 -7130 0
+rnode "VM31D.t28" 0 91.5323 3452 -7130 0
+rnode "VM31D.n25" 0 512.401 3481 -7130 0
+rnode "VM31D.t36" 0 91.5323 3706 -7130 0
+rnode "VM31D.t21" 0 91.5323 3648 -7130 0
+rnode "VM31D.n26" 0 512.401 3677 -7130 0
+rnode "VM31D.t35" 0 91.5323 3902 -7130 0
+rnode "VM31D.t20" 0 91.5323 3844 -7130 0
+rnode "VM31D.n27" 0 744.88 3873 -7130 0
+rnode "VM31D.n28" 0 1209.94 3698 -7244 0
+rnode "VM31D.n29" 0 770.102 3502 -7244 0
+rnode "VM31D.n30" 0 277.745 3306 -7244 0
+rnode "VM31D.t18" 0 91.5323 2922 -7130 0
+rnode "VM31D.t33" 0 91.5323 2864 -7130 0
+rnode "VM31D.n31" 0 513.171 2893 -7130 0
+rnode "VM31D.t27" 0 126.328 2530 -7130 0
+rnode "VM31D.t19" 0 91.5323 2726 -7130 0
+rnode "VM31D.t34" 0 91.5323 2668 -7130 0
+rnode "VM31D.n32" 0 512.401 2697 -7130 0
+rnode "VM31D.n33" 0 1997.08 2718 -7244 0
+rnode "VM31D.n34" 0 583.579 2850 -7250 0
+rnode "VM31D.t14" 0 91.5323 3118 -7130 0
+rnode "VM31D.t37" 0 91.5323 3060 -7130 0
+rnode "VM31D.n35" 0 516.456 3089 -7130 0
+rnode "VM31D.n36" 0 4545.9 3054 -7250 0
+rnode "VM31D.n37" 0 3006.63 3054 -6476 0
+rnode "VM31D.t32" 0 91.5323 3118 -6512 0
+rnode "VM31D.t26" 0 91.5323 3060 -6512 0
+rnode "VM31D.t38" 0 91.5323 2922 -6512 0
+rnode "VM31D.t22" 0 91.5323 2864 -6512 0
+rnode "VM31D.n38" 0 513.911 2893 -6512 0
+rnode "VM31D.t15" 0 126.183 2530 -6512 0
+rnode "VM31D.t39" 0 91.5323 2726 -6512 0
+rnode "VM31D.t23" 0 91.5323 2668 -6512 0
+rnode "VM31D.n39" 0 513.129 2697 -6512 0
+rnode "VM31D.n40" 0 1992.22 2675 -6398 0
+rnode "VM31D.n41" 0 611.474 2850 -6392 0
+rnode "VM31D" 0 3103.48 2920 -6050 0
+resist "VM31D.n22" "VM31D.n19" 0.003
+resist "VM31D.n36" "VM31D.n34" 0.00384945
+resist "VM31D.n4" "VM31D.n41" 0.00405465
+resist "VM31D.n2" "VM31D.n1" 0.00452716
+resist "VM31D.n0" "VM31D.n7" 0.00667389
+resist "VM31D.n4" "VM31D.n37" 0.008
+resist "VM31D.n2" "VM31D.n24" 0.01
+resist "VM31D.n5" "VM31D.n21" 0.0109779
+resist "VM31D.n1" "VM31D.n30" 0.0114711
+resist "VM31D.n22" "VM31D.n5" 0.0253438
+resist "VM31D" "VM31D.n4" 0.0353912
+resist "VM31D.n4" "VM31D.n22" 0.0533337
+resist "VM31D.n36" "VM31D.n2" 0.0603337
+resist "VM31D" "VM31D.n0" 0.0589813
+resist "VM31D.n37" "VM31D.n36" 0.0829674
+resist "VM31D.n19" "VM31D.n18" 0.118333
+resist "VM31D.n30" "VM31D.n29" 0.122542
+resist "VM31D.n0" "VM31D.n13" 0.123334
+resist "VM31D.n41" "VM31D.n40" 0.13277
+resist "VM31D.n34" "VM31D.n33" 0.133141
+resist "VM31D.n18" "VM31D.n17" 0.137882
+resist "VM31D.n29" "VM31D.n28" 0.137883
+resist "VM31D.n0" "VM31D.n11" 0.140535
+resist "VM31D.n11" "VM31D.n10" 0.233869
+resist "VM31D.n5" "VM31D.n20" 0.23766
+resist "VM31D.n2" "VM31D.n23" 0.238649
+resist "VM31D.n7" "VM31D.n6" 0.238675
+resist "VM31D.n17" "VM31D.n15" 0.240609
+resist "VM31D.n18" "VM31D.n14" 0.240609
+resist "VM31D.n40" "VM31D.n39" 0.240609
+resist "VM31D.n28" "VM31D.n26" 0.241598
+resist "VM31D.n29" "VM31D.n25" 0.241598
+resist "VM31D.n33" "VM31D.n32" 0.241598
+resist "VM31D.n10" "VM31D.n9" 0.241623
+resist "VM31D.n11" "VM31D.n8" 0.241623
+resist "VM31D.n13" "VM31D.n12" 0.241623
+resist "VM31D.n41" "VM31D.n38" 0.241863
+resist "VM31D.n34" "VM31D.n31" 0.242133
+resist "VM31D.n36" "VM31D.n35" 0.244545
+resist "VM31D.n4" "VM31D.n3" 0.2447
+resist "VM31D.n28" "VM31D.n27" 0.378482
+resist "VM31D.n17" "VM31D.n16" 0.378697
+resist "VM31D.n38" "VM31D.t22" 8.7
+resist "VM31D.n38" "VM31D.t38" 8.7
+resist "VM31D.n16" "VM31D.t10" 8.7
+resist "VM31D.n16" "VM31D.t24" 8.7
+resist "VM31D.n15" "VM31D.t11" 8.7
+resist "VM31D.n15" "VM31D.t25" 8.7
+resist "VM31D.n14" "VM31D.t16" 8.7
+resist "VM31D.n14" "VM31D.t30" 8.7
+resist "VM31D.n20" "VM31D.t17" 8.7
+resist "VM31D.n20" "VM31D.t31" 8.7
+resist "VM31D.n39" "VM31D.t23" 8.7
+resist "VM31D.n39" "VM31D.t39" 8.7
+resist "VM31D.n27" "VM31D.t20" 8.7
+resist "VM31D.n27" "VM31D.t35" 8.7
+resist "VM31D.n26" "VM31D.t21" 8.7
+resist "VM31D.n26" "VM31D.t36" 8.7
+resist "VM31D.n25" "VM31D.t28" 8.7
+resist "VM31D.n25" "VM31D.t12" 8.7
+resist "VM31D.n23" "VM31D.t29" 8.7
+resist "VM31D.n23" "VM31D.t13" 8.7
+resist "VM31D.n32" "VM31D.t34" 8.7
+resist "VM31D.n32" "VM31D.t19" 8.7
+resist "VM31D.n35" "VM31D.t37" 8.7
+resist "VM31D.n35" "VM31D.t14" 8.7
+resist "VM31D.n31" "VM31D.t33" 8.7
+resist "VM31D.n31" "VM31D.t18" 8.7
+resist "VM31D.n3" "VM31D.t26" 8.7
+resist "VM31D.n3" "VM31D.t32" 8.7
+resist "VM31D.n40" "VM31D.t15" 9.07755
+resist "VM31D.n33" "VM31D.t27" 9.07931
+resist "VM31D.n9" "VM31D.t7" 14.282
+resist "VM31D.n9" "VM31D.t8" 14.282
+resist "VM31D.n8" "VM31D.t1" 14.282
+resist "VM31D.n8" "VM31D.t4" 14.282
+resist "VM31D.n12" "VM31D.t0" 14.282
+resist "VM31D.n12" "VM31D.t9" 14.282
+resist "VM31D.n6" "VM31D.t5" 14.282
+resist "VM31D.n6" "VM31D.t3" 14.282
+resist "VM31D.n13" "VM31D.t2" 14.7557
+resist "VM31D.n10" "VM31D.t6" 14.7565
+rnode "Disable_TIA_B.n0" 0 342.484 21 -4095 0
+rnode "Disable_TIA_B.n1" 0 3972.11 -363 -4095 0
+rnode "Disable_TIA_B.n2" 0 342.484 -555 -11165 0
+rnode "Disable_TIA_B.n3" 0 5011.74 -267 -10547 0
+rnode "Disable_TIA_B.n4" 0 644.177 213 -1731 0
+rnode "Disable_TIA_B.n5" 0 3648.77 -171 -2967 0
+rnode "Disable_TIA_B.n6" 0 365.548 789 -8801 0
+rnode "Disable_TIA_B.n7" 0 2148.85 21 -8801 0
+rnode "Disable_TIA_B" 0 5414.73 6090 -9890 0
+rnode "Disable_TIA_B.n8" 0 574.38 213 -11165 0
+rnode "Disable_TIA_B.n9" 0 680.328 885 -3477 0
+rnode "Disable_TIA_B.n10" 0 1397.29 -267 -9419 0
+rnode "Disable_TIA_B.n11" 0 317.517 789 -4095 0
+rnode "Disable_TIA_B.n12" 0 1521.64 117 -10547 0
+rnode "Disable_TIA_B.n13" 0 1519.83 117 -2349 0
+rnode "Disable_TIA_B.n14" 0 1457.62 213 -2967 0
+rnode "Disable_TIA_B.n15" 0 1519.83 117 -9419 0
+rnode "Disable_TIA_B.t168" 0 986.936 5573 -10422 0
+rnode "Disable_TIA_B.t157" 0 986.936 4653 -10422 0
+rnode "Disable_TIA_B.t144" 0 986.936 3733 -10422 0
+rnode "Disable_TIA_B.t139" 0 986.936 2813 -10422 0
+rnode "Disable_TIA_B.t150" 0 986.936 1893 -10422 0
+rnode "Disable_TIA_B.t183" 0 40.4911 981 -10292 0
+rnode "Disable_TIA_B.t101" 0 40.4911 981 -9674 0
+rnode "Disable_TIA_B.t70" 0 40.4911 789 -10292 0
+rnode "Disable_TIA_B.t5" 0 40.4911 789 -9674 0
+rnode "Disable_TIA_B.t151" 0 40.4911 597 -10292 0
+rnode "Disable_TIA_B.t112" 0 40.4911 597 -9674 0
+rnode "Disable_TIA_B.t39" 0 40.4911 405 -10292 0
+rnode "Disable_TIA_B.t19" 0 40.4911 405 -9674 0
+rnode "Disable_TIA_B.t67" 0 40.4911 213 -10292 0
+rnode "Disable_TIA_B.t180" 0 40.4911 213 -9674 0
+rnode "Disable_TIA_B.t15" 0 40.4911 21 -10292 0
+rnode "Disable_TIA_B.t156" 0 40.4911 21 -9674 0
+rnode "Disable_TIA_B.t62" 0 40.4911 -171 -10292 0
+rnode "Disable_TIA_B.t3" 0 40.4911 -171 -9674 0
+rnode "Disable_TIA_B.t171" 0 40.4911 -363 -10292 0
+rnode "Disable_TIA_B.t100" 0 40.4911 -363 -9674 0
+rnode "Disable_TIA_B.t89" 0 40.4911 -555 -10292 0
+rnode "Disable_TIA_B.t196" 0 40.4911 -555 -9674 0
+rnode "Disable_TIA_B.t65" 0 40.4911 -747 -10292 0
+rnode "Disable_TIA_B.t25" 0 40.4911 -747 -9674 0
+rnode "Disable_TIA_B.t176" 0 40.4911 -939 -10292 0
+rnode "Disable_TIA_B.t120" 0 40.4911 -939 -9674 0
+rnode "Disable_TIA_B.t11" 0 40.5015 -1131 -9674 0
+rnode "Disable_TIA_B.t131" 0 40.5626 1173 -3840 0
+rnode "Disable_TIA_B.t83" 0 40.4911 981 -3840 0
+rnode "Disable_TIA_B.t193" 0 40.4911 789 -3840 0
+rnode "Disable_TIA_B.t99" 0 40.4911 597 -3840 0
+rnode "Disable_TIA_B.t0" 0 40.4911 405 -3840 0
+rnode "Disable_TIA_B.t158" 0 40.4911 213 -3840 0
+rnode "Disable_TIA_B.t135" 0 40.4911 21 -3840 0
+rnode "Disable_TIA_B.t192" 0 40.4911 -171 -3840 0
+rnode "Disable_TIA_B.t82" 0 40.4911 -363 -3840 0
+rnode "Disable_TIA_B.t172" 0 40.4911 -555 -3840 0
+rnode "Disable_TIA_B.t14" 0 40.4911 -747 -3840 0
+rnode "Disable_TIA_B.t108" 0 40.4911 -939 -3840 0
+rnode "Disable_TIA_B.t201" 0 40.4911 -1131 -3840 0
+rnode "Disable_TIA_B.t136" 0 40.4911 1077 -3222 0
+rnode "Disable_TIA_B.t66" 0 40.4911 1077 -3840 0
+rnode "Disable_TIA_B.t93" 0 40.4911 885 -3222 0
+rnode "Disable_TIA_B.t8" 0 40.4911 885 -3840 0
+rnode "Disable_TIA_B.t40" 0 40.4911 693 -3222 0
+rnode "Disable_TIA_B.t165" 0 40.4911 693 -3840 0
+rnode "Disable_TIA_B.t146" 0 40.4911 501 -3222 0
+rnode "Disable_TIA_B.t78" 0 40.4911 501 -3840 0
+rnode "Disable_TIA_B.t61" 0 40.4911 309 -3222 0
+rnode "Disable_TIA_B.t185" 0 40.4911 309 -3840 0
+rnode "Disable_TIA_B.t29" 0 40.4911 117 -3222 0
+rnode "Disable_TIA_B.t152" 0 40.4911 117 -3840 0
+rnode "Disable_TIA_B.t103" 0 40.4911 -75 -3222 0
+rnode "Disable_TIA_B.t20" 0 40.4911 -75 -3840 0
+rnode "Disable_TIA_B.t92" 0 40.4911 -267 -3222 0
+rnode "Disable_TIA_B.t7" 0 40.4911 -267 -3840 0
+rnode "Disable_TIA_B.t181" 0 40.4911 -459 -3222 0
+rnode "Disable_TIA_B.t104" 0 40.4911 -459 -3840 0
+rnode "Disable_TIA_B.t75" 0 40.4911 -651 -3222 0
+rnode "Disable_TIA_B.t199" 0 40.4911 -651 -3840 0
+rnode "Disable_TIA_B.t163" 0 40.4911 -843 -3222 0
+rnode "Disable_TIA_B.t91" 0 40.4911 -843 -3840 0
+rnode "Disable_TIA_B.t47" 0 40.4911 -1035 -3222 0
+rnode "Disable_TIA_B.t174" 0 40.4911 -1035 -3840 0
+rnode "Disable_TIA_B.t12" 0 40.4911 1173 -3222 0
+rnode "Disable_TIA_B.t26" 0 40.4911 1173 -2604 0
+rnode "Disable_TIA_B.t155" 0 40.4911 981 -3222 0
+rnode "Disable_TIA_B.t179" 0 40.4911 981 -2604 0
+rnode "Disable_TIA_B.t69" 0 40.4911 789 -3222 0
+rnode "Disable_TIA_B.t90" 0 40.4911 789 -2604 0
+rnode "Disable_TIA_B.t173" 0 40.4911 597 -3222 0
+rnode "Disable_TIA_B.t198" 0 40.4911 597 -2604 0
+rnode "Disable_TIA_B.t85" 0 40.4911 405 -3222 0
+rnode "Disable_TIA_B.t102" 0 40.4911 405 -2604 0
+rnode "Disable_TIA_B.t33" 0 40.4911 213 -3222 0
+rnode "Disable_TIA_B.t57" 0 40.4911 213 -2604 0
+rnode "Disable_TIA_B.t17" 0 40.4911 21 -3222 0
+rnode "Disable_TIA_B.t32" 0 40.4911 21 -2604 0
+rnode "Disable_TIA_B.t68" 0 40.4911 -171 -3222 0
+rnode "Disable_TIA_B.t88" 0 40.4911 -171 -2604 0
+rnode "Disable_TIA_B.t153" 0 40.4911 -363 -3222 0
+rnode "Disable_TIA_B.t177" 0 40.4911 -363 -2604 0
+rnode "Disable_TIA_B.t45" 0 40.4911 -555 -3222 0
+rnode "Disable_TIA_B.t72" 0 40.4911 -555 -2604 0
+rnode "Disable_TIA_B.t98" 0 40.4911 -747 -3222 0
+rnode "Disable_TIA_B.t111" 0 40.4911 -747 -2604 0
+rnode "Disable_TIA_B.t190" 0 40.4911 -939 -3222 0
+rnode "Disable_TIA_B.t2" 0 40.4911 -939 -2604 0
+rnode "Disable_TIA_B.t95" 0 40.5015 -1131 -2604 0
+rnode "Disable_TIA_B.t76" 0 40.5014 -1131 -3222 0
+rnode "Disable_TIA_B.t109" 0 40.5793 1173 -1986 0
+rnode "Disable_TIA_B.t53" 0 40.4911 981 -1986 0
+rnode "Disable_TIA_B.t161" 0 40.4911 789 -1986 0
+rnode "Disable_TIA_B.t73" 0 40.4911 597 -1986 0
+rnode "Disable_TIA_B.t178" 0 40.4911 405 -1986 0
+rnode "Disable_TIA_B.t130" 0 40.4911 213 -1986 0
+rnode "Disable_TIA_B.t113" 0 40.4911 21 -1986 0
+rnode "Disable_TIA_B.t159" 0 40.4911 -171 -1986 0
+rnode "Disable_TIA_B.t49" 0 40.4911 -363 -1986 0
+rnode "Disable_TIA_B.t140" 0 40.4911 -555 -1986 0
+rnode "Disable_TIA_B.t194" 0 40.4911 -747 -1986 0
+rnode "Disable_TIA_B.t84" 0 40.4911 -939 -1986 0
+rnode "Disable_TIA_B.t167" 0 40.4911 -1131 -1986 0
+rnode "Disable_TIA_B.t160" 0 40.4911 1077 -2604 0
+rnode "Disable_TIA_B.t31" 0 40.4911 1077 -1986 0
+rnode "Disable_TIA_B.t107" 0 40.4911 885 -2604 0
+rnode "Disable_TIA_B.t188" 0 40.4911 885 -1986 0
+rnode "Disable_TIA_B.t64" 0 40.4911 693 -2604 0
+rnode "Disable_TIA_B.t134" 0 40.4911 693 -1986 0
+rnode "Disable_TIA_B.t170" 0 40.4911 501 -2604 0
+rnode "Disable_TIA_B.t42" 0 40.4911 501 -1986 0
+rnode "Disable_TIA_B.t80" 0 40.4911 309 -2604 0
+rnode "Disable_TIA_B.t149" 0 40.4911 309 -1986 0
+rnode "Disable_TIA_B.t51" 0 40.4911 117 -2604 0
+rnode "Disable_TIA_B.t125" 0 40.4911 117 -1986 0
+rnode "Disable_TIA_B.t116" 0 40.4911 -75 -2604 0
+rnode "Disable_TIA_B.t202" 0 40.4911 -75 -1986 0
+rnode "Disable_TIA_B.t106" 0 40.4911 -267 -2604 0
+rnode "Disable_TIA_B.t186" 0 40.4911 -267 -1986 0
+rnode "Disable_TIA_B.t203" 0 40.4911 -459 -2604 0
+rnode "Disable_TIA_B.t79" 0 40.4911 -459 -1986 0
+rnode "Disable_TIA_B.t94" 0 40.4911 -651 -2604 0
+rnode "Disable_TIA_B.t166" 0 40.4911 -651 -1986 0
+rnode "Disable_TIA_B.t187" 0 40.4911 -843 -2604 0
+rnode "Disable_TIA_B.t59" 0 40.4911 -843 -1986 0
+rnode "Disable_TIA_B.t74" 0 40.4911 -1035 -2604 0
+rnode "Disable_TIA_B.t142" 0 40.4911 -1035 -1986 0
+rnode "Disable_TIA_B.t184" 0 40.5793 1173 -9056 0
+rnode "Disable_TIA_B.t123" 0 40.4911 981 -9056 0
+rnode "Disable_TIA_B.t28" 0 40.4911 789 -9056 0
+rnode "Disable_TIA_B.t138" 0 40.4911 597 -9056 0
+rnode "Disable_TIA_B.t43" 0 40.4911 405 -9056 0
+rnode "Disable_TIA_B.t6" 0 40.4911 213 -9056 0
+rnode "Disable_TIA_B.t195" 0 40.4911 21 -9056 0
+rnode "Disable_TIA_B.t27" 0 40.4911 -171 -9056 0
+rnode "Disable_TIA_B.t122" 0 40.4911 -363 -9056 0
+rnode "Disable_TIA_B.t16" 0 40.4911 -555 -9056 0
+rnode "Disable_TIA_B.t63" 0 40.4911 -747 -9056 0
+rnode "Disable_TIA_B.t148" 0 40.4911 -939 -9056 0
+rnode "Disable_TIA_B.t37" 0 40.4911 -1131 -9056 0
+rnode "Disable_TIA_B.t86" 0 40.4911 1077 -9674 0
+rnode "Disable_TIA_B.t110" 0 40.4911 1077 -9056 0
+rnode "Disable_TIA_B.t22" 0 40.4911 885 -9674 0
+rnode "Disable_TIA_B.t56" 0 40.4911 885 -9056 0
+rnode "Disable_TIA_B.t189" 0 40.4911 693 -9674 0
+rnode "Disable_TIA_B.t13" 0 40.4911 693 -9056 0
+rnode "Disable_TIA_B.t96" 0 40.4911 501 -9674 0
+rnode "Disable_TIA_B.t118" 0 40.4911 501 -9056 0
+rnode "Disable_TIA_B.t204" 0 40.4911 309 -9674 0
+rnode "Disable_TIA_B.t23" 0 40.4911 309 -9056 0
+rnode "Disable_TIA_B.t175" 0 40.4911 117 -9674 0
+rnode "Disable_TIA_B.t1" 0 40.4911 117 -9056 0
+rnode "Disable_TIA_B.t34" 0 40.4911 -75 -9674 0
+rnode "Disable_TIA_B.t71" 0 40.4911 -75 -9056 0
+rnode "Disable_TIA_B.t21" 0 40.4911 -267 -9674 0
+rnode "Disable_TIA_B.t55" 0 40.4911 -267 -9056 0
+rnode "Disable_TIA_B.t115" 0 40.4911 -459 -9674 0
+rnode "Disable_TIA_B.t141" 0 40.4911 -459 -9056 0
+rnode "Disable_TIA_B.t10" 0 40.4911 -651 -9674 0
+rnode "Disable_TIA_B.t35" 0 40.4911 -651 -9056 0
+rnode "Disable_TIA_B.t105" 0 40.4911 -843 -9674 0
+rnode "Disable_TIA_B.t128" 0 40.4911 -843 -9056 0
+rnode "Disable_TIA_B.t197" 0 40.4911 -1035 -9674 0
+rnode "Disable_TIA_B.t18" 0 40.4911 -1035 -9056 0
+rnode "Disable_TIA_B.t9" 0 40.4911 1077 -10292 0
+rnode "Disable_TIA_B.t87" 0 40.4911 1077 -10910 0
+rnode "Disable_TIA_B.t58" 0 40.4911 885 -10292 0
+rnode "Disable_TIA_B.t127" 0 40.4911 885 -10910 0
+rnode "Disable_TIA_B.t81" 0 40.4911 693 -10292 0
+rnode "Disable_TIA_B.t145" 0 40.4911 693 -10910 0
+rnode "Disable_TIA_B.t164" 0 40.4911 501 -10292 0
+rnode "Disable_TIA_B.t36" 0 40.4911 501 -10910 0
+rnode "Disable_TIA_B.t54" 0 40.4911 309 -10292 0
+rnode "Disable_TIA_B.t124" 0 40.4911 309 -10910 0
+rnode "Disable_TIA_B.t117" 0 40.4911 117 -10292 0
+rnode "Disable_TIA_B.t200" 0 40.4911 117 -10910 0
+rnode "Disable_TIA_B.t48" 0 40.4911 -75 -10292 0
+rnode "Disable_TIA_B.t121" 0 40.4911 -75 -10910 0
+rnode "Disable_TIA_B.t46" 0 40.4911 -267 -10292 0
+rnode "Disable_TIA_B.t119" 0 40.4911 -267 -10910 0
+rnode "Disable_TIA_B.t162" 0 40.4911 -459 -10292 0
+rnode "Disable_TIA_B.t30" 0 40.4911 -459 -10910 0
+rnode "Disable_TIA_B.t77" 0 40.4911 -651 -10292 0
+rnode "Disable_TIA_B.t143" 0 40.4911 -651 -10910 0
+rnode "Disable_TIA_B.t191" 0 40.4911 -843 -10292 0
+rnode "Disable_TIA_B.t60" 0 40.4911 -843 -10910 0
+rnode "Disable_TIA_B.t182" 0 40.4911 -1035 -10292 0
+rnode "Disable_TIA_B.t50" 0 40.4911 -1035 -10910 0
+rnode "Disable_TIA_B.t4" 0 40.5626 1173 -10910 0
+rnode "Disable_TIA_B.t52" 0 40.4911 981 -10910 0
+rnode "Disable_TIA_B.t137" 0 40.4911 789 -10910 0
+rnode "Disable_TIA_B.t24" 0 40.4911 597 -10910 0
+rnode "Disable_TIA_B.t114" 0 40.4911 405 -10910 0
+rnode "Disable_TIA_B.t133" 0 40.4911 213 -10910 0
+rnode "Disable_TIA_B.t97" 0 40.4911 21 -10910 0
+rnode "Disable_TIA_B.t129" 0 40.4911 -171 -10910 0
+rnode "Disable_TIA_B.t41" 0 40.4911 -363 -10910 0
+rnode "Disable_TIA_B.t154" 0 40.4911 -555 -10910 0
+rnode "Disable_TIA_B.t132" 0 40.4911 -747 -10910 0
+rnode "Disable_TIA_B.t44" 0 40.4911 -939 -10910 0
+rnode "Disable_TIA_B.t38" 0 40.4911 -1131 -10910 0
+rnode "Disable_TIA_B.t169" 0 40.5014 -1131 -10292 0
+rnode "Disable_TIA_B.t147" 0 40.5006 1173 -9674 0
+rnode "Disable_TIA_B.t126" 0 40.5005 1173 -10292 0
+rnode "Disable_TIA_B.n16" 0 757.547 1893 -9867 0
+rnode "Disable_TIA_B.n17" 0 786.644 2813 -9867 0
+rnode "Disable_TIA_B.n18" 0 786.644 3733 -9867 0
+rnode "Disable_TIA_B.n19" 0 786.644 4653 -9867 0
+resist "Disable_TIA_B.n3" "Disable_TIA_B.n2" 1.86
+resist "Disable_TIA_B.n0" "Disable_TIA_B.n11" 1.86
+resist "Disable_TIA_B.n3" "Disable_TIA_B.n12" 1.898
+resist "Disable_TIA_B.n10" "Disable_TIA_B.n15" 1.8988
+resist "Disable_TIA_B.n5" "Disable_TIA_B.n13" 1.8988
+resist "Disable_TIA_B.n10" "Disable_TIA_B.n7" 2.12618
+resist "Disable_TIA_B.n1" "Disable_TIA_B.n5" 2.33899
+resist "Disable_TIA_B.n1" "Disable_TIA_B.n9" 2.538
+resist "Disable_TIA_B.n3" "Disable_TIA_B.n10" 2.55982
+resist "Disable_TIA_B" "Disable_TIA_B.n19" 2.714
+resist "Disable_TIA_B.n17" "Disable_TIA_B.n16" 2.714
+resist "Disable_TIA_B.n18" "Disable_TIA_B.n17" 2.714
+resist "Disable_TIA_B.n19" "Disable_TIA_B.n18" 2.714
+resist "Disable_TIA_B.n5" "Disable_TIA_B.n4" 2.8
+resist "Disable_TIA_B.n7" "Disable_TIA_B.n6" 3.2
+resist "Disable_TIA_B.n2" "Disable_TIA_B.n8" 3.255
+resist "Disable_TIA_B.n16" "Disable_TIA_B.n3" 3.37
+resist "Disable_TIA_B.n5" "Disable_TIA_B.n14" 3.498
+resist "Disable_TIA_B.n1" "Disable_TIA_B.n0" 3.576
+resist "Disable_TIA_B.n7" "Disable_TIA_B.n1" 5.38
+resist "Disable_TIA_B" "Disable_TIA_B.t168" 66.8785
+resist "Disable_TIA_B.n19" "Disable_TIA_B.t157" 66.8785
+resist "Disable_TIA_B.n18" "Disable_TIA_B.t144" 66.8785
+resist "Disable_TIA_B.n17" "Disable_TIA_B.t139" 66.8785
+resist "Disable_TIA_B.n16" "Disable_TIA_B.t150" 66.8785
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t52" 394.193
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t137" 394.193
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t24" 394.193
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t114" 394.193
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t133" 394.193
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t97" 394.193
+resist "Disable_TIA_B.n2" "Disable_TIA_B.t129" 394.193
+resist "Disable_TIA_B.n2" "Disable_TIA_B.t41" 394.193
+resist "Disable_TIA_B.n2" "Disable_TIA_B.t154" 394.193
+resist "Disable_TIA_B.n2" "Disable_TIA_B.t132" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t44" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t38" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t50" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t60" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t143" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t30" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t119" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t121" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t200" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t124" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t36" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t145" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t127" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t87" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t9" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t58" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t81" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t164" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t54" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t117" 394.193
+resist "Disable_TIA_B.n12" "Disable_TIA_B.t48" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t46" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t162" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t77" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t191" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t182" 394.193
+resist "Disable_TIA_B.n6" "Disable_TIA_B.t123" 394.193
+resist "Disable_TIA_B.n6" "Disable_TIA_B.t28" 394.193
+resist "Disable_TIA_B.n6" "Disable_TIA_B.t138" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t43" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t6" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t195" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t27" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t122" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t16" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t63" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t148" 394.193
+resist "Disable_TIA_B.n7" "Disable_TIA_B.t37" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t53" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t161" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t73" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t178" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t130" 394.193
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t113" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t159" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t49" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t140" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t194" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t84" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t167" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t142" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t59" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t166" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t79" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t186" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t202" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t125" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t149" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t42" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t134" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t188" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t31" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t74" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t187" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t94" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t203" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t106" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t116" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t51" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t80" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t170" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t64" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t107" 394.193
+resist "Disable_TIA_B.n13" "Disable_TIA_B.t160" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t2" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t111" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t72" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t177" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t88" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t32" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t57" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t102" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t198" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t90" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t179" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t26" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t190" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t98" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t45" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t153" 394.193
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t68" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t17" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t33" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t85" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t173" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t69" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t155" 394.193
+resist "Disable_TIA_B.n14" "Disable_TIA_B.t12" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t174" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t91" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t199" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t104" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t7" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t20" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t152" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t185" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t78" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t165" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t8" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t66" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t136" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t93" 394.193
+resist "Disable_TIA_B.n9" "Disable_TIA_B.t40" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t146" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t61" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t29" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t103" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t92" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t181" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t75" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t163" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t47" 394.193
+resist "Disable_TIA_B.n11" "Disable_TIA_B.t83" 394.193
+resist "Disable_TIA_B.n11" "Disable_TIA_B.t193" 394.193
+resist "Disable_TIA_B.n11" "Disable_TIA_B.t99" 394.193
+resist "Disable_TIA_B.n0" "Disable_TIA_B.t0" 394.193
+resist "Disable_TIA_B.n0" "Disable_TIA_B.t158" 394.193
+resist "Disable_TIA_B.n0" "Disable_TIA_B.t135" 394.193
+resist "Disable_TIA_B.n0" "Disable_TIA_B.t192" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t82" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t172" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t14" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t108" 394.193
+resist "Disable_TIA_B.n1" "Disable_TIA_B.t201" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t18" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t128" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t35" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t141" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t55" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t71" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t1" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t23" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t118" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t13" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t56" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t110" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t197" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t105" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t10" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t115" 394.193
+resist "Disable_TIA_B.n10" "Disable_TIA_B.t21" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t34" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t175" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t204" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t96" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t189" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t22" 394.193
+resist "Disable_TIA_B.n15" "Disable_TIA_B.t86" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t120" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t25" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t196" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t100" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t3" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t156" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t180" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t19" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t112" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t5" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t101" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t176" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t65" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t89" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t171" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t62" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t15" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t67" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t39" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t151" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t70" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t183" 394.193
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t126" 394.248
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t147" 394.249
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t169" 394.257
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t76" 394.257
+resist "Disable_TIA_B.n5" "Disable_TIA_B.t95" 394.258
+resist "Disable_TIA_B.n3" "Disable_TIA_B.t11" 394.258
+resist "Disable_TIA_B.n6" "Disable_TIA_B.t184" 394.593
+resist "Disable_TIA_B.n4" "Disable_TIA_B.t109" 394.593
+resist "Disable_TIA_B.n8" "Disable_TIA_B.t4" 394.658
+resist "Disable_TIA_B.n11" "Disable_TIA_B.t131" 394.658
+rnode "Out_2.t37" 0 90.1925 3102 1693 0
+rnode "Out_2.t30" 0 90.1925 3044 1693 0
+rnode "Out_2.n0" 0 502.921 3073 1693 0
+rnode "Out_2.n1" 0 180.113 3094 1579 0
+rnode "Out_2.n2" 0 212.899 3094 1579 0
+rnode "Out_2.t38" 0 90.1925 3418 1693 0
+rnode "Out_2.t36" 0 90.1925 3360 1693 0
+rnode "Out_2.n3" 0 504.866 3389 1693 0
+rnode "Out_2.t35" 0 90.1925 3734 1693 0
+rnode "Out_2.t34" 0 90.1925 3676 1693 0
+rnode "Out_2.n4" 0 504.866 3705 1693 0
+rnode "Out_2.t33" 0 121.013 3992 1693 0
+rnode "Out_2.n5" 0 2371.94 3726 1579 0
+rnode "Out_2.n6" 0 915.499 3410 1579 0
+rnode "Out_2.t39" 0 120.772 2470 1693 0
+rnode "Out_2.t32" 0 90.1925 2786 1693 0
+rnode "Out_2.t31" 0 90.1925 2728 1693 0
+rnode "Out_2.n7" 0 504.866 2757 1693 0
+rnode "Out_2.n8" 0 2182.03 2778 1579 0
+rnode "Out_2.n9" 0 1308.27 2940 1573 0
+rnode "Out_2.n10" 0 177.275 3051 1579 0
+rnode "Out_2.n11" 0 654.581 3054 1580 0
+rnode "Out_2.n12" 0 1103.45 3054 1491 0
+rnode "Out_2.n13" 0 17.1055 3266 678 0
+rnode "Out_2.n14" 0 93.2142 3266 678 0
+rnode "Out_2.t1" 0 90.1925 3510 558 0
+rnode "Out_2.t12" 0 90.1925 3452 558 0
+rnode "Out_2.n15" 0 505.619 3481 558 0
+rnode "Out_2.t10" 0 90.1925 3706 558 0
+rnode "Out_2.t21" 0 90.1925 3648 558 0
+rnode "Out_2.n16" 0 505.619 3677 558 0
+rnode "Out_2.t19" 0 90.1925 3902 558 0
+rnode "Out_2.t29" 0 90.1925 3844 558 0
+rnode "Out_2.n17" 0 735.042 3873 558 0
+rnode "Out_2.n18" 0 1187.02 3655 672 0
+rnode "Out_2.n19" 0 749.358 3459 672 0
+rnode "Out_2.n20" 0 292.865 3311 680 0
+rnode "Out_2.n21" 0 18.779 3274 679 0
+rnode "Out_2.n22" 0 0.775905 3292 678 0
+rnode "Out_2.t22" 0 90.1925 3314 558 0
+rnode "Out_2.t4" 0 90.1925 3256 558 0
+rnode "Out_2.n23" 0 503.674 3285 558 0
+rnode "Out_2.n24" 0 195.837 3263 672 0
+rnode "Out_2.n25" 0 122.834 3054 680 0
+rnode "Out_2.t9" 0 124.336 2530 558 0
+rnode "Out_2.t17" 0 90.1925 2726 558 0
+rnode "Out_2.t28" 0 90.1925 2668 558 0
+rnode "Out_2.n26" 0 505.619 2697 558 0
+rnode "Out_2.n27" 0 1964.51 2675 672 0
+rnode "Out_2.t27" 0 90.1925 2922 558 0
+rnode "Out_2.t6" 0 90.1925 2864 558 0
+rnode "Out_2.n28" 0 507.342 2893 558 0
+rnode "Out_2.n29" 0 622.31 2871 672 0
+rnode "Out_2.n30" 0 1180.96 3054 680 0
+rnode "Out_2.t13" 0 90.1925 3118 558 0
+rnode "Out_2.t25" 0 90.1925 3060 558 0
+rnode "Out_2.n31" 0 506.506 3089 558 0
+rnode "Out_2.n32" 0 375.071 3067 672 0
+rnode "Out_2.n33" 0 33.3427 3266 -180 0
+rnode "Out_2.t5" 0 90.1925 3314 -60 0
+rnode "Out_2.t11" 0 90.1925 3256 -60 0
+rnode "Out_2.n34" 0 502.956 3285 -60 0
+rnode "Out_2.n35" 0 38.1213 3285 -254 0
+rnode "Out_2.n36" 0 91.5978 3266 -180 0
+rnode "Out_2.t16" 0 90.1925 3510 -60 0
+rnode "Out_2.t26" 0 90.1925 3452 -60 0
+rnode "Out_2.n37" 0 504.901 3481 -60 0
+rnode "Out_2.t8" 0 90.1925 3706 -60 0
+rnode "Out_2.t15" 0 90.1925 3648 -60 0
+rnode "Out_2.n38" 0 504.901 3677 -60 0
+rnode "Out_2.t23" 0 90.1925 3902 -60 0
+rnode "Out_2.t0" 0 90.1925 3844 -60 0
+rnode "Out_2.n39" 0 733.977 3873 -60 0
+rnode "Out_2.n40" 0 1192.23 3698 -174 0
+rnode "Out_2.n41" 0 758.83 3502 -174 0
+rnode "Out_2.n42" 0 23.0591 3292 -180 0
+rnode "Out_2.n43" 0 273.68 3306 -174 0
+rnode "Out_2.n44" 0 151.047 3306 -174 0
+rnode "Out_2.n45" 0 122.834 3054 -180 0
+rnode "Out_2.t7" 0 90.1925 2922 -60 0
+rnode "Out_2.t14" 0 90.1925 2864 -60 0
+rnode "Out_2.n46" 0 505.66 2893 -60 0
+rnode "Out_2.t3" 0 124.479 2530 -60 0
+rnode "Out_2.t24" 0 90.1925 2726 -60 0
+rnode "Out_2.t2" 0 90.1925 2668 -60 0
+rnode "Out_2.n47" 0 504.901 2697 -60 0
+rnode "Out_2.n48" 0 1967.85 2718 -174 0
+rnode "Out_2.n49" 0 575.037 2850 -180 0
+rnode "Out_2.t18" 0 90.1925 3118 -60 0
+rnode "Out_2.t20" 0 90.1925 3060 -60 0
+rnode "Out_2.n50" 0 508.897 3089 -60 0
+rnode "Out_2.n51" 0 4719.22 3054 -180 0
+rnode "Out_2.n52" 0 2687.86 3054 594 0
+rnode "Out_2.n53" 0 159.216 3054 680 0
+rnode "Out_2.n54" 0 955.203 3054 764 0
+rnode "Out_2" 0 1665.36 2900 1040 0
+rnode "Out_2" 0 1818.17 3035 1170 0
+resist "Out_2.n52" "Out_2.n30" 0.0005
+resist "Out_2.n53" "Out_2.n52" 0.0005
+resist "Out_2.n12" "Out_2.n11" 0.0005
+resist "Out_2.n12" "Out_2.n9" 0.0005
+resist "Out_2.n24" "Out_2.n22" 0.000548542
+resist "Out_2.n54" "Out_2.n30" 0.000590252
+resist "Out_2.n11" "Out_2.n10" 0.001
+resist "Out_2.n25" "Out_2.n13" 0.00148612
+resist "Out_2.n45" "Out_2.n33" 0.00148612
+resist "Out_2.n44" "Out_2.n35" 0.002
+resist "Out_2.n9" "Out_2.n2" 0.00248525
+resist "Out_2.n42" "Out_2.n35" 0.00252716
+resist "Out_2.n32" "Out_2.n30" 0.00260362
+resist "Out_2.n21" "Out_2.n20" 0.003
+resist "Out_2.n30" "Out_2.n29" 0.00308097
+resist "Out_2.n51" "Out_2.n49" 0.00384945
+resist "Out_2.n2" "Out_2.n1" 0.00418864
+resist "Out_2.n21" "Out_2.n13" 0.005
+resist "Out_2.n44" "Out_2.n36" 0.01
+resist "Out_2.n22" "Out_2.n14" 0.0104294
+resist "Out_2.n43" "Out_2.n42" 0.0114711
+resist "Out_2.n35" "Out_2.n33" 0.012
+resist "Out_2" "Out_2" 0.013
+resist "Out_2.n53" "Out_2.n32" 0.0223207
+resist "Out_2.n22" "Out_2.n21" 0.0253438
+resist "Out_2" "Out_2.n54" 0.0373912
+resist "Out_2.n54" "Out_2.n53" 0.0389698
+resist "Out_2" "Out_2.n12" 0.0424813
+resist "Out_2.n51" "Out_2.n45" 0.0468476
+resist "Out_2.n30" "Out_2.n25" 0.0468476
+resist "Out_2.n52" "Out_2.n51" 0.0914487
+resist "Out_2.n20" "Out_2.n19" 0.118333
+resist "Out_2.n43" "Out_2.n41" 0.122542
+resist "Out_2.n9" "Out_2.n8" 0.123334
+resist "Out_2.n29" "Out_2.n27" 0.133132
+resist "Out_2.n49" "Out_2.n48" 0.133141
+resist "Out_2.n19" "Out_2.n18" 0.137882
+resist "Out_2.n41" "Out_2.n40" 0.137883
+resist "Out_2.n9" "Out_2.n6" 0.140535
+resist "Out_2.n6" "Out_2.n5" 0.233869
+resist "Out_2.n24" "Out_2.n23" 0.23766
+resist "Out_2.n44" "Out_2.n34" 0.238649
+resist "Out_2.n1" "Out_2.n0" 0.238675
+resist "Out_2.n18" "Out_2.n16" 0.240609
+resist "Out_2.n19" "Out_2.n15" 0.240609
+resist "Out_2.n27" "Out_2.n26" 0.240609
+resist "Out_2.n32" "Out_2.n31" 0.241206
+resist "Out_2.n40" "Out_2.n38" 0.241598
+resist "Out_2.n41" "Out_2.n37" 0.241598
+resist "Out_2.n48" "Out_2.n47" 0.241598
+resist "Out_2.n5" "Out_2.n4" 0.241623
+resist "Out_2.n6" "Out_2.n3" 0.241623
+resist "Out_2.n8" "Out_2.n7" 0.241623
+resist "Out_2.n29" "Out_2.n28" 0.241727
+resist "Out_2.n49" "Out_2.n46" 0.242133
+resist "Out_2.n51" "Out_2.n50" 0.244545
+resist "Out_2.n40" "Out_2.n39" 0.378482
+resist "Out_2.n18" "Out_2.n17" 0.378697
+resist "Out_2.n42" "Out_2.n36" 2.28105
+resist "Out_2.n36" "Out_2.n33" 3.41
+resist "Out_2.n14" "Out_2.n13" 3.41
+resist "Out_2.n44" "Out_2.n43" 4.5
+resist "Out_2.n25" "Out_2.n24" 4.50051
+resist "Out_2.n45" "Out_2.n44" 4.50051
+resist "Out_2.n20" "Out_2.n14" 4.871
+resist "Out_2.n17" "Out_2.t29" 8.7
+resist "Out_2.n17" "Out_2.t19" 8.7
+resist "Out_2.n16" "Out_2.t21" 8.7
+resist "Out_2.n16" "Out_2.t10" 8.7
+resist "Out_2.n15" "Out_2.t12" 8.7
+resist "Out_2.n15" "Out_2.t1" 8.7
+resist "Out_2.n23" "Out_2.t4" 8.7
+resist "Out_2.n23" "Out_2.t22" 8.7
+resist "Out_2.n26" "Out_2.t28" 8.7
+resist "Out_2.n26" "Out_2.t17" 8.7
+resist "Out_2.n31" "Out_2.t25" 8.7
+resist "Out_2.n31" "Out_2.t13" 8.7
+resist "Out_2.n28" "Out_2.t6" 8.7
+resist "Out_2.n28" "Out_2.t27" 8.7
+resist "Out_2.n39" "Out_2.t0" 8.7
+resist "Out_2.n39" "Out_2.t23" 8.7
+resist "Out_2.n38" "Out_2.t15" 8.7
+resist "Out_2.n38" "Out_2.t8" 8.7
+resist "Out_2.n37" "Out_2.t26" 8.7
+resist "Out_2.n37" "Out_2.t16" 8.7
+resist "Out_2.n34" "Out_2.t11" 8.7
+resist "Out_2.n34" "Out_2.t5" 8.7
+resist "Out_2.n47" "Out_2.t2" 8.7
+resist "Out_2.n47" "Out_2.t24" 8.7
+resist "Out_2.n50" "Out_2.t20" 8.7
+resist "Out_2.n50" "Out_2.t18" 8.7
+resist "Out_2.n46" "Out_2.t14" 8.7
+resist "Out_2.n46" "Out_2.t7" 8.7
+resist "Out_2.n27" "Out_2.t9" 9.07755
+resist "Out_2.n48" "Out_2.t3" 9.07931
+resist "Out_2.n4" "Out_2.t34" 14.282
+resist "Out_2.n4" "Out_2.t35" 14.282
+resist "Out_2.n3" "Out_2.t36" 14.282
+resist "Out_2.n3" "Out_2.t38" 14.282
+resist "Out_2.n7" "Out_2.t31" 14.282
+resist "Out_2.n7" "Out_2.t32" 14.282
+resist "Out_2.n0" "Out_2.t30" 14.282
+resist "Out_2.n0" "Out_2.t37" 14.282
+resist "Out_2.n8" "Out_2.t39" 14.7557
+resist "Out_2.n5" "Out_2.t33" 14.7565
+rnode "VM28D.n0" 0 0 762 -3336 0
+rnode "VM28D.n1" 0 195.097 741 -3720 0
+rnode "VM28D.n2" 0 2341.02 549 -3720 0
+rnode "VM28D.n3" 0 0 719 -2490 0
+rnode "VM28D.n4" 0 243.398 741 -2108 0
+rnode "VM28D.n5" 0 1633.15 805 -2108 0
+rnode "VM28D.n6" 0 108.918 549 -3720 0
+rnode "VM28D.n7" 0 105.225 570 -2490 0
+rnode "VM28D.n8" 0 213.944 703 140 0
+rnode "VM28D.n9" 0 20.6883 684 -1305 0
+rnode "VM28D.n10" 0 1440.59 684 -1222 0
+rnode "VM28D.n11" 0 559.343 528 998 0
+rnode "VM28D.n12" 0 1217.18 681 992 0
+rnode "VM28D.n13" 0 134.683 719 -2490 0
+rnode "VM28D.n14" 0 151.223 762 -2490 0
+rnode "VM28D.t141" 0 56.7088 774 -2604 0
+rnode "VM28D.t116" 0 56.7088 708 -2604 0
+rnode "VM28D.n15" 0 292.048 741 -2604 0
+rnode "VM28D.n16" 0 87.6549 719 -2490 0
+rnode "VM28D.t173" 0 56.7088 774 -1986 0
+rnode "VM28D.t159" 0 56.7088 708 -1986 0
+rnode "VM28D.n17" 0 291.439 741 -1986 0
+rnode "VM28D.n18" 0 71.2602 719 -2100 0
+rnode "VM28D.n19" 0 13.8811 719 -2100 0
+rnode "VM28D.t157" 0 64.8536 -1146 -1986 0
+rnode "VM28D.t192" 0 64.7143 -1146 -2604 0
+rnode "VM28D.n20" 0 1481.49 -1201 -2490 0
+rnode "VM28D.n21" 0 467.813 -1009 -2490 0
+rnode "VM28D.t163" 0 56.7088 -954 -1986 0
+rnode "VM28D.t182" 0 56.7088 -1020 -1986 0
+rnode "VM28D.n22" 0 291.651 -987 -1986 0
+rnode "VM28D.n23" 0 88.052 -966 -2100 0
+rnode "VM28D.n24" 0 95.7428 -966 -2100 0
+rnode "VM28D.t149" 0 56.7088 -954 -2604 0
+rnode "VM28D.t7" 0 56.7088 -1020 -2604 0
+rnode "VM28D.n25" 0 292.048 -987 -2604 0
+rnode "VM28D.n26" 0 87.6549 -1009 -2490 0
+rnode "VM28D.n27" 0 95.7801 -1009 -2490 0
+rnode "VM28D.n28" 0 401.687 -966 -2490 0
+rnode "VM28D.n29" 0 404.05 -817 -2490 0
+rnode "VM28D.t126" 0 56.7088 -762 -1986 0
+rnode "VM28D.t130" 0 56.7088 -828 -1986 0
+rnode "VM28D.n30" 0 291.651 -795 -1986 0
+rnode "VM28D.n31" 0 88.052 -774 -2100 0
+rnode "VM28D.n32" 0 95.7428 -774 -2100 0
+rnode "VM28D.t174" 0 56.7088 -762 -2604 0
+rnode "VM28D.t120" 0 56.7088 -828 -2604 0
+rnode "VM28D.n33" 0 292.048 -795 -2604 0
+rnode "VM28D.n34" 0 87.6549 -817 -2490 0
+rnode "VM28D.n35" 0 95.7801 -817 -2490 0
+rnode "VM28D.n36" 0 401.687 -774 -2490 0
+rnode "VM28D.n37" 0 404.05 -625 -2490 0
+rnode "VM28D.t138" 0 56.7088 -570 -1986 0
+rnode "VM28D.t156" 0 56.7088 -636 -1986 0
+rnode "VM28D.n38" 0 291.651 -603 -1986 0
+rnode "VM28D.n39" 0 88.052 -582 -2100 0
+rnode "VM28D.n40" 0 95.7428 -582 -2100 0
+rnode "VM28D.t166" 0 56.7088 -570 -2604 0
+rnode "VM28D.t191" 0 56.7088 -636 -2604 0
+rnode "VM28D.n41" 0 292.048 -603 -2604 0
+rnode "VM28D.n42" 0 87.6549 -625 -2490 0
+rnode "VM28D.n43" 0 95.7801 -625 -2490 0
+rnode "VM28D.n44" 0 401.687 -582 -2490 0
+rnode "VM28D.n45" 0 404.05 -433 -2490 0
+rnode "VM28D.t168" 0 56.7088 -378 -1986 0
+rnode "VM28D.t187" 0 56.7088 -444 -1986 0
+rnode "VM28D.n46" 0 291.651 -411 -1986 0
+rnode "VM28D.n47" 0 88.052 -390 -2100 0
+rnode "VM28D.n48" 0 95.7428 -390 -2100 0
+rnode "VM28D.t181" 0 56.7088 -378 -2604 0
+rnode "VM28D.t133" 0 56.7088 -444 -2604 0
+rnode "VM28D.n49" 0 292.048 -411 -2604 0
+rnode "VM28D.n50" 0 87.6549 -433 -2490 0
+rnode "VM28D.n51" 0 95.7801 -433 -2490 0
+rnode "VM28D.n52" 0 401.687 -390 -2490 0
+rnode "VM28D.n53" 0 404.05 -241 -2490 0
+rnode "VM28D.t137" 0 56.7088 -186 -1986 0
+rnode "VM28D.t119" 0 56.7088 -252 -1986 0
+rnode "VM28D.n54" 0 291.651 -219 -1986 0
+rnode "VM28D.n55" 0 88.052 -198 -2100 0
+rnode "VM28D.n56" 0 95.7428 -198 -2100 0
+rnode "VM28D.t197" 0 56.7088 -186 -2604 0
+rnode "VM28D.t153" 0 56.7088 -252 -2604 0
+rnode "VM28D.n57" 0 292.048 -219 -2604 0
+rnode "VM28D.n58" 0 87.6549 -241 -2490 0
+rnode "VM28D.n59" 0 95.7801 -241 -2490 0
+rnode "VM28D.n60" 0 401.687 -198 -2490 0
+rnode "VM28D.n61" 0 404.05 -49 -2490 0
+rnode "VM28D.t162" 0 56.7088 6 -1986 0
+rnode "VM28D.t132" 0 56.7088 -60 -1986 0
+rnode "VM28D.n62" 0 291.651 -27 -1986 0
+rnode "VM28D.n63" 0 88.052 -6 -2100 0
+rnode "VM28D.n64" 0 95.7428 -6 -2100 0
+rnode "VM28D.t177" 0 56.7088 6 -2604 0
+rnode "VM28D.t161" 0 56.7088 -60 -2604 0
+rnode "VM28D.n65" 0 292.048 -27 -2604 0
+rnode "VM28D.n66" 0 87.6549 -49 -2490 0
+rnode "VM28D.n67" 0 95.7801 -49 -2490 0
+rnode "VM28D.n68" 0 401.687 -6 -2490 0
+rnode "VM28D.n69" 0 404.05 143 -2490 0
+rnode "VM28D.t195" 0 56.7088 198 -1986 0
+rnode "VM28D.t152" 0 56.7088 132 -1986 0
+rnode "VM28D.n70" 0 291.651 165 -1986 0
+rnode "VM28D.n71" 0 88.052 186 -2100 0
+rnode "VM28D.n72" 0 95.7428 186 -2100 0
+rnode "VM28D.t193" 0 56.7088 198 -2604 0
+rnode "VM28D.t117" 0 56.7088 132 -2604 0
+rnode "VM28D.n73" 0 292.048 165 -2604 0
+rnode "VM28D.n74" 0 87.6549 143 -2490 0
+rnode "VM28D.n75" 0 95.7801 143 -2490 0
+rnode "VM28D.n76" 0 401.687 186 -2490 0
+rnode "VM28D.n77" 0 404.05 335 -2490 0
+rnode "VM28D.t134" 0 56.7088 390 -1986 0
+rnode "VM28D.t127" 0 56.7088 324 -1986 0
+rnode "VM28D.n78" 0 291.651 357 -1986 0
+rnode "VM28D.n79" 0 88.052 378 -2100 0
+rnode "VM28D.n80" 0 95.7428 378 -2100 0
+rnode "VM28D.t5" 0 56.7088 390 -2604 0
+rnode "VM28D.t198" 0 56.7088 324 -2604 0
+rnode "VM28D.n81" 0 292.048 357 -2604 0
+rnode "VM28D.n82" 0 87.6549 335 -2490 0
+rnode "VM28D.n83" 0 95.7801 335 -2490 0
+rnode "VM28D.n84" 0 392.236 378 -2490 0
+rnode "VM28D.n85" 0 413.501 527 -2490 0
+rnode "VM28D.n86" 0 0.21503 527 -2490 0
+rnode "VM28D.n87" 0 49.8488 527 -2100 0
+rnode "VM28D.n88" 0 67.6876 527 -2100 0
+rnode "VM28D.t167" 0 56.7088 582 -1986 0
+rnode "VM28D.t188" 0 56.7088 516 -1986 0
+rnode "VM28D.n89" 0 291.399 549 -1986 0
+rnode "VM28D.n90" 0 13.9207 549 -1986 0
+rnode "VM28D.t0" 0 56.7088 582 -2604 0
+rnode "VM28D.t113" 0 56.7088 516 -2604 0
+rnode "VM28D.n91" 0 292.048 549 -2604 0
+rnode "VM28D.n92" 0 133.292 527 -2490 0
+rnode "VM28D.n93" 0 226.835 570 -2490 0
+rnode "VM28D.t140" 0 56.7088 1158 -1986 0
+rnode "VM28D.t169" 0 56.7088 1092 -1986 0
+rnode "VM28D.n94" 0 293.297 1125 -1986 0
+rnode "VM28D.t9" 0 56.7088 1158 -2604 0
+rnode "VM28D.t172" 0 56.7088 1092 -2604 0
+rnode "VM28D.n95" 0 295.839 1125 -2604 0
+rnode "VM28D.n96" 0 780.723 1103 -2490 0
+rnode "VM28D.n97" 0 474.232 954 -2490 0
+rnode "VM28D.t135" 0 56.7088 966 -2604 0
+rnode "VM28D.t154" 0 56.7088 900 -2604 0
+rnode "VM28D.n98" 0 292.048 933 -2604 0
+rnode "VM28D.n99" 0 87.6549 911 -2490 0
+rnode "VM28D.n100" 0 95.7801 911 -2490 0
+rnode "VM28D.t131" 0 56.7088 966 -1986 0
+rnode "VM28D.t121" 0 56.7088 900 -1986 0
+rnode "VM28D.n101" 0 291.651 933 -1986 0
+rnode "VM28D.n102" 0 88.052 954 -2100 0
+rnode "VM28D.n103" 0 95.7428 954 -2100 0
+rnode "VM28D.n104" 0 302.447 911 -2490 0
+rnode "VM28D.t125" 0 187514 1254 -130 0
+rnode "VM28D.t108" 0 49.835 536 -1184 0
+rnode "VM28D.t66" 0 49.835 478 -1184 0
+rnode "VM28D.n105" 0 277.903 507 -1184 0
+rnode "VM28D.n106" 0 51.3872 507 -1298 0
+rnode "VM28D.n107" 0 112.213 507 -1298 0
+rnode "VM28D.t105" 0 49.835 -1032 -1184 0
+rnode "VM28D.t30" 0 49.835 -1090 -1184 0
+rnode "VM28D.n108" 0 400.949 -1061 -1184 0
+rnode "VM28D.t103" 0 49.835 -836 -1184 0
+rnode "VM28D.t56" 0 49.835 -894 -1184 0
+rnode "VM28D.n109" 0 278.978 -865 -1184 0
+rnode "VM28D.n110" 0 617.286 -844 -1298 0
+rnode "VM28D.t107" 0 49.835 -640 -1184 0
+rnode "VM28D.t62" 0 49.835 -698 -1184 0
+rnode "VM28D.n111" 0 278.978 -669 -1184 0
+rnode "VM28D.n112" 0 415.55 -648 -1298 0
+rnode "VM28D.t34" 0 49.835 -444 -1184 0
+rnode "VM28D.t87" 0 49.835 -502 -1184 0
+rnode "VM28D.n113" 0 278.978 -473 -1184 0
+rnode "VM28D.n114" 0 415.55 -452 -1298 0
+rnode "VM28D.t38" 0 49.835 -248 -1184 0
+rnode "VM28D.t90" 0 49.835 -306 -1184 0
+rnode "VM28D.n115" 0 278.978 -277 -1184 0
+rnode "VM28D.n116" 0 415.55 -256 -1298 0
+rnode "VM28D.t33" 0 49.835 -52 -1184 0
+rnode "VM28D.t92" 0 49.835 -110 -1184 0
+rnode "VM28D.n117" 0 278.978 -81 -1184 0
+rnode "VM28D.n118" 0 415.55 -60 -1298 0
+rnode "VM28D.t39" 0 49.835 144 -1184 0
+rnode "VM28D.t53" 0 49.835 86 -1184 0
+rnode "VM28D.n119" 0 278.978 115 -1184 0
+rnode "VM28D.n120" 0 415.55 136 -1298 0
+rnode "VM28D.t36" 0 49.835 340 -1184 0
+rnode "VM28D.t91" 0 49.835 282 -1184 0
+rnode "VM28D.n121" 0 278.978 311 -1184 0
+rnode "VM28D.n122" 0 396.913 332 -1298 0
+rnode "VM28D.n123" 0 156.64 524 -1304 0
+rnode "VM28D.n124" 0 7.93607 524 -1304 0
+rnode "VM28D.n125" 0 66.1173 528 -1304 0
+rnode "VM28D.t104" 0 49.835 732 -1184 0
+rnode "VM28D.t64" 0 49.835 674 -1184 0
+rnode "VM28D.n126" 0 277.903 703 -1184 0
+rnode "VM28D.n127" 0 99.4167 724 -1298 0
+rnode "VM28D.n128" 0 99.2631 724 -1298 0
+rnode "VM28D.t84" 0 49.835 928 -1184 0
+rnode "VM28D.t58" 0 49.835 870 -1184 0
+rnode "VM28D.n129" 0 278.978 899 -1184 0
+rnode "VM28D.t100" 0 49.835 1124 -1184 0
+rnode "VM28D.t49" 0 49.835 1066 -1184 0
+rnode "VM28D.n130" 0 278.978 1095 -1184 0
+rnode "VM28D.t46" 0 68.9499 1262 -1184 0
+rnode "VM28D.n131" 0 1045.67 1116 -1298 0
+rnode "VM28D.n132" 0 353.653 920 -1298 0
+rnode "VM28D.n133" 0 64.4847 681 -1298 0
+rnode "VM28D.n134" 0 270.999 724 146 0
+rnode "VM28D.t89" 0 49.835 732 -566 0
+rnode "VM28D.t13" 0 49.835 674 -566 0
+rnode "VM28D.n135" 0 278.3 703 -566 0
+rnode "VM28D.n136" 0 86.5946 681 -452 0
+rnode "VM28D.t73" 0 49.835 732 260 0
+rnode "VM28D.t57" 0 49.835 674 260 0
+rnode "VM28D.n137" 0 277.903 703 260 0
+rnode "VM28D.n138" 0 99.2646 724 146 0
+rnode "VM28D.n139" 0 1203.65 684 -155 0
+rnode "VM28D.n140" 0 0 684 -155 0
+rnode "VM28D.t59" 0 49.835 928 -566 0
+rnode "VM28D.t65" 0 49.835 870 -566 0
+rnode "VM28D.n141" 0 278.3 899 -566 0
+rnode "VM28D.n142" 0 86.5946 877 -452 0
+rnode "VM28D.t102" 0 49.835 1124 -566 0
+rnode "VM28D.t31" 0 49.835 1066 -566 0
+rnode "VM28D.n143" 0 278.3 1095 -566 0
+rnode "VM28D.n144" 0 86.5946 1073 -452 0
+rnode "VM28D.t29" 0 58.7542 1262 260 0
+rnode "VM28D.t82" 0 58.8548 1262 -566 0
+rnode "VM28D.n145" 0 1574.35 1269 146 0
+rnode "VM28D.n146" 0 666.11 1116 146 0
+rnode "VM28D.n147" 0 148.774 1116 146 0
+rnode "VM28D.t14" 0 49.835 1124 260 0
+rnode "VM28D.t98" 0 49.835 1066 260 0
+rnode "VM28D.n148" 0 277.903 1095 260 0
+rnode "VM28D.n149" 0 88.052 1116 146 0
+rnode "VM28D.n150" 0 83.4968 1116 146 0
+rnode "VM28D.n151" 0 571.384 1073 146 0
+rnode "VM28D.n152" 0 568.119 920 146 0
+rnode "VM28D.n153" 0 150.491 920 146 0
+rnode "VM28D.t68" 0 49.835 928 260 0
+rnode "VM28D.t95" 0 49.835 870 260 0
+rnode "VM28D.n154" 0 277.903 899 260 0
+rnode "VM28D.n155" 0 88.052 920 146 0
+rnode "VM28D.n156" 0 84.4604 920 146 0
+rnode "VM28D.n157" 0 368.951 877 146 0
+rnode "VM28D.n158" 0 64.4847 681 992 0
+rnode "VM28D.t32" 0 49.835 928 878 0
+rnode "VM28D.t72" 0 49.835 870 878 0
+rnode "VM28D.n159" 0 279.374 899 878 0
+rnode "VM28D.t61" 0 49.835 1124 878 0
+rnode "VM28D.t94" 0 49.835 1066 878 0
+rnode "VM28D.n160" 0 279.374 1095 878 0
+rnode "VM28D.t24" 0 68.9957 1262 878 0
+rnode "VM28D.n161" 0 1045.15 1073 992 0
+rnode "VM28D.n162" 0 353.099 877 992 0
+rnode "VM28D.t77" 0 49.835 536 878 0
+rnode "VM28D.t110" 0 49.835 478 878 0
+rnode "VM28D.n163" 0 284.54 507 878 0
+rnode "VM28D.t15" 0 49.835 -1032 878 0
+rnode "VM28D.t81" 0 49.835 -1090 878 0
+rnode "VM28D.n164" 0 401.483 -1061 878 0
+rnode "VM28D.t80" 0 49.835 -836 878 0
+rnode "VM28D.t44" 0 49.835 -894 878 0
+rnode "VM28D.n165" 0 279.374 -865 878 0
+rnode "VM28D.n166" 0 616.436 -887 992 0
+rnode "VM28D.t45" 0 49.835 -640 878 0
+rnode "VM28D.t12" 0 49.835 -698 878 0
+rnode "VM28D.n167" 0 279.374 -669 878 0
+rnode "VM28D.n168" 0 415.153 -691 992 0
+rnode "VM28D.t18" 0 49.835 -444 878 0
+rnode "VM28D.t88" 0 49.835 -502 878 0
+rnode "VM28D.n169" 0 279.374 -473 878 0
+rnode "VM28D.n170" 0 415.153 -495 992 0
+rnode "VM28D.t93" 0 49.835 -248 878 0
+rnode "VM28D.t55" 0 49.835 -306 878 0
+rnode "VM28D.n171" 0 279.374 -277 878 0
+rnode "VM28D.n172" 0 415.153 -299 992 0
+rnode "VM28D.t79" 0 49.835 -52 878 0
+rnode "VM28D.t23" 0 49.835 -110 878 0
+rnode "VM28D.n173" 0 279.374 -81 878 0
+rnode "VM28D.n174" 0 415.153 -103 992 0
+rnode "VM28D.t17" 0 49.835 144 878 0
+rnode "VM28D.t16" 0 49.835 86 878 0
+rnode "VM28D.n175" 0 279.374 115 878 0
+rnode "VM28D.n176" 0 415.153 93 992 0
+rnode "VM28D.t50" 0 49.835 340 878 0
+rnode "VM28D.t86" 0 49.835 282 878 0
+rnode "VM28D.n177" 0 279.374 311 878 0
+rnode "VM28D.n178" 0 395.274 289 992 0
+rnode "VM28D.n179" 0 369.867 481 995 0
+rnode "VM28D.t106" 0 49.835 732 878 0
+rnode "VM28D.t43" 0 49.835 674 878 0
+rnode "VM28D.n180" 0 278.3 703 878 0
+rnode "VM28D.n181" 0 152.767 681 992 0
+rnode "VM28D.n182" 0 50.5051 485 -452 0
+rnode "VM28D.t41" 0 49.835 536 -566 0
+rnode "VM28D.t69" 0 49.835 478 -566 0
+rnode "VM28D.n183" 0 278.3 507 -566 0
+rnode "VM28D.n184" 0 83.0548 485 -452 0
+rnode "VM28D.t54" 0 49.835 -1032 260 0
+rnode "VM28D.t25" 0 49.835 -1090 260 0
+rnode "VM28D.n185" 0 282.556 -1061 260 0
+rnode "VM28D.t37" 0 49.835 -1032 -566 0
+rnode "VM28D.t35" 0 49.835 -1090 -566 0
+rnode "VM28D.n186" 0 280.062 -1061 -566 0
+rnode "VM28D.n187" 0 1012.77 -1083 -452 0
+rnode "VM28D.n188" 0 660.585 -887 -452 0
+rnode "VM28D.t60" 0 49.835 -836 260 0
+rnode "VM28D.t75" 0 49.835 -894 260 0
+rnode "VM28D.n189" 0 277.903 -865 260 0
+rnode "VM28D.n190" 0 88.052 -844 146 0
+rnode "VM28D.n191" 0 112.448 -844 146 0
+rnode "VM28D.t99" 0 49.835 -836 -566 0
+rnode "VM28D.t71" 0 49.835 -894 -566 0
+rnode "VM28D.n192" 0 278.3 -865 -566 0
+rnode "VM28D.n193" 0 87.6549 -887 -452 0
+rnode "VM28D.n194" 0 112.448 -887 -452 0
+rnode "VM28D.n195" 0 560.643 -844 -452 0
+rnode "VM28D.n196" 0 563.865 -691 -452 0
+rnode "VM28D.t21" 0 49.835 -640 260 0
+rnode "VM28D.t42" 0 49.835 -698 260 0
+rnode "VM28D.n197" 0 277.903 -669 260 0
+rnode "VM28D.n198" 0 88.052 -648 146 0
+rnode "VM28D.n199" 0 112.448 -648 146 0
+rnode "VM28D.t51" 0 49.835 -640 -566 0
+rnode "VM28D.t22" 0 49.835 -698 -566 0
+rnode "VM28D.n200" 0 278.3 -669 -566 0
+rnode "VM28D.n201" 0 87.6549 -691 -452 0
+rnode "VM28D.n202" 0 112.448 -691 -452 0
+rnode "VM28D.n203" 0 560.643 -648 -452 0
+rnode "VM28D.n204" 0 563.865 -495 -452 0
+rnode "VM28D.t27" 0 49.835 -444 260 0
+rnode "VM28D.t48" 0 49.835 -502 260 0
+rnode "VM28D.n205" 0 277.903 -473 260 0
+rnode "VM28D.n206" 0 88.052 -452 146 0
+rnode "VM28D.n207" 0 112.448 -452 146 0
+rnode "VM28D.t78" 0 49.835 -444 -566 0
+rnode "VM28D.t52" 0 49.835 -502 -566 0
+rnode "VM28D.n208" 0 278.3 -473 -566 0
+rnode "VM28D.n209" 0 87.6549 -495 -452 0
+rnode "VM28D.n210" 0 112.448 -495 -452 0
+rnode "VM28D.n211" 0 560.643 -452 -452 0
+rnode "VM28D.n212" 0 563.865 -299 -452 0
+rnode "VM28D.t96" 0 49.835 -248 260 0
+rnode "VM28D.t11" 0 49.835 -306 260 0
+rnode "VM28D.n213" 0 277.903 -277 260 0
+rnode "VM28D.n214" 0 88.052 -256 146 0
+rnode "VM28D.n215" 0 112.448 -256 146 0
+rnode "VM28D.t28" 0 49.835 -248 -566 0
+rnode "VM28D.t101" 0 49.835 -306 -566 0
+rnode "VM28D.n216" 0 278.3 -277 -566 0
+rnode "VM28D.n217" 0 87.6549 -299 -452 0
+rnode "VM28D.n218" 0 112.448 -299 -452 0
+rnode "VM28D.n219" 0 560.643 -256 -452 0
+rnode "VM28D.n220" 0 563.865 -103 -452 0
+rnode "VM28D.t83" 0 49.835 -52 260 0
+rnode "VM28D.t74" 0 49.835 -110 260 0
+rnode "VM28D.n221" 0 277.903 -81 260 0
+rnode "VM28D.n222" 0 88.052 -60 146 0
+rnode "VM28D.n223" 0 112.448 -60 146 0
+rnode "VM28D.t76" 0 49.835 -52 -566 0
+rnode "VM28D.t63" 0 49.835 -110 -566 0
+rnode "VM28D.n224" 0 278.3 -81 -566 0
+rnode "VM28D.n225" 0 87.6549 -103 -452 0
+rnode "VM28D.n226" 0 112.448 -103 -452 0
+rnode "VM28D.n227" 0 560.643 -60 -452 0
+rnode "VM28D.n228" 0 563.865 93 -452 0
+rnode "VM28D.t109" 0 49.835 144 260 0
+rnode "VM28D.t67" 0 49.835 86 260 0
+rnode "VM28D.n229" 0 277.903 115 260 0
+rnode "VM28D.n230" 0 88.052 136 146 0
+rnode "VM28D.n231" 0 112.448 136 146 0
+rnode "VM28D.t20" 0 49.835 144 -566 0
+rnode "VM28D.t85" 0 49.835 86 -566 0
+rnode "VM28D.n232" 0 278.3 115 -566 0
+rnode "VM28D.n233" 0 87.6549 93 -452 0
+rnode "VM28D.n234" 0 112.448 93 -452 0
+rnode "VM28D.n235" 0 560.643 136 -452 0
+rnode "VM28D.n236" 0 563.865 289 -452 0
+rnode "VM28D.t47" 0 49.835 340 260 0
+rnode "VM28D.t26" 0 49.835 282 260 0
+rnode "VM28D.n237" 0 277.903 311 260 0
+rnode "VM28D.n238" 0 88.052 332 146 0
+rnode "VM28D.n239" 0 112.448 332 146 0
+rnode "VM28D.t70" 0 49.835 340 -566 0
+rnode "VM28D.t97" 0 49.835 282 -566 0
+rnode "VM28D.n240" 0 278.3 311 -566 0
+rnode "VM28D.n241" 0 87.6549 289 -452 0
+rnode "VM28D.n242" 0 112.448 289 -452 0
+rnode "VM28D.n243" 0 562.336 332 -452 0
+rnode "VM28D.n244" 0 552.034 485 -452 0
+rnode "VM28D.n245" 0 79.1852 485 -452 0
+rnode "VM28D.n246" 0 79.1151 528 146 0
+rnode "VM28D.t40" 0 49.835 536 260 0
+rnode "VM28D.t19" 0 49.835 478 260 0
+rnode "VM28D.n247" 0 277.903 507 260 0
+rnode "VM28D.n248" 0 50.6115 528 140 0
+rnode "VM28D.n249" 0 83.4518 528 146 0
+rnode "VM28D.n250" 0 319.975 528 140 0
+rnode "VM28D.n251" 0 3159.46 528 140 0
+rnode "VM28D.n252" 0 1201.8 684 -528 0
+rnode "VM28D.n253" 0 989.826 684 -1387 0
+rnode "VM28D.n254" 0 944.363 684 -2025 0
+rnode "VM28D.n255" 0 11866.5 684 -2400 0
+rnode "VM28D.t165" 0 64.8652 -1146 -3222 0
+rnode "VM28D.t112" 0 64.7155 -1146 -3840 0
+rnode "VM28D.n256" 0 1527.85 -1201 -3726 0
+rnode "VM28D.n257" 0 467.806 -1009 -3726 0
+rnode "VM28D.t180" 0 56.7088 -954 -3222 0
+rnode "VM28D.t147" 0 56.7088 -1020 -3222 0
+rnode "VM28D.n258" 0 291.651 -987 -3222 0
+rnode "VM28D.n259" 0 88.052 -966 -3336 0
+rnode "VM28D.n260" 0 95.2961 -966 -3336 0
+rnode "VM28D.t139" 0 56.7088 -954 -3840 0
+rnode "VM28D.t171" 0 56.7088 -1020 -3840 0
+rnode "VM28D.n261" 0 292.048 -987 -3840 0
+rnode "VM28D.n262" 0 87.6549 -1009 -3726 0
+rnode "VM28D.n263" 0 95.3333 -1009 -3726 0
+rnode "VM28D.n264" 0 401.687 -966 -3726 0
+rnode "VM28D.n265" 0 404.05 -817 -3726 0
+rnode "VM28D.t128" 0 56.7088 -762 -3222 0
+rnode "VM28D.t158" 0 56.7088 -828 -3222 0
+rnode "VM28D.n266" 0 291.651 -795 -3222 0
+rnode "VM28D.n267" 0 88.052 -774 -3336 0
+rnode "VM28D.n268" 0 95.2961 -774 -3336 0
+rnode "VM28D.t10" 0 56.7088 -762 -3840 0
+rnode "VM28D.t142" 0 56.7088 -828 -3840 0
+rnode "VM28D.n269" 0 292.048 -795 -3840 0
+rnode "VM28D.n270" 0 87.6549 -817 -3726 0
+rnode "VM28D.n271" 0 95.3333 -817 -3726 0
+rnode "VM28D.n272" 0 401.687 -774 -3726 0
+rnode "VM28D.n273" 0 404.05 -625 -3726 0
+rnode "VM28D.t199" 0 56.7088 -570 -3222 0
+rnode "VM28D.t8" 0 56.7088 -636 -3222 0
+rnode "VM28D.n274" 0 291.651 -603 -3222 0
+rnode "VM28D.n275" 0 88.052 -582 -3336 0
+rnode "VM28D.n276" 0 95.2961 -582 -3336 0
+rnode "VM28D.t150" 0 56.7088 -570 -3840 0
+rnode "VM28D.t1" 0 56.7088 -636 -3840 0
+rnode "VM28D.n277" 0 292.048 -603 -3840 0
+rnode "VM28D.n278" 0 87.6549 -625 -3726 0
+rnode "VM28D.n279" 0 95.3333 -625 -3726 0
+rnode "VM28D.n280" 0 401.687 -582 -3726 0
+rnode "VM28D.n281" 0 404.05 -433 -3726 0
+rnode "VM28D.t4" 0 56.7088 -378 -3222 0
+rnode "VM28D.t122" 0 56.7088 -444 -3222 0
+rnode "VM28D.n282" 0 291.651 -411 -3222 0
+rnode "VM28D.n283" 0 88.052 -390 -3336 0
+rnode "VM28D.n284" 0 95.2961 -390 -3336 0
+rnode "VM28D.t143" 0 56.7088 -378 -3840 0
+rnode "VM28D.t115" 0 56.7088 -444 -3840 0
+rnode "VM28D.n285" 0 292.048 -411 -3840 0
+rnode "VM28D.n286" 0 87.6549 -433 -3726 0
+rnode "VM28D.n287" 0 95.3333 -433 -3726 0
+rnode "VM28D.n288" 0 401.687 -390 -3726 0
+rnode "VM28D.n289" 0 404.05 -241 -3726 0
+rnode "VM28D.t145" 0 56.7088 -186 -3222 0
+rnode "VM28D.t184" 0 56.7088 -252 -3222 0
+rnode "VM28D.n290" 0 291.651 -219 -3222 0
+rnode "VM28D.n291" 0 88.052 -198 -3336 0
+rnode "VM28D.n292" 0 95.2961 -198 -3336 0
+rnode "VM28D.t189" 0 56.7088 -186 -3840 0
+rnode "VM28D.t194" 0 56.7088 -252 -3840 0
+rnode "VM28D.n293" 0 292.048 -219 -3840 0
+rnode "VM28D.n294" 0 87.6549 -241 -3726 0
+rnode "VM28D.n295" 0 95.3333 -241 -3726 0
+rnode "VM28D.n296" 0 401.687 -198 -3726 0
+rnode "VM28D.n297" 0 404.05 -49 -3726 0
+rnode "VM28D.t118" 0 56.7088 6 -3222 0
+rnode "VM28D.t6" 0 56.7088 -60 -3222 0
+rnode "VM28D.n298" 0 291.651 -27 -3222 0
+rnode "VM28D.n299" 0 88.052 -6 -3336 0
+rnode "VM28D.n300" 0 95.2961 -6 -3336 0
+rnode "VM28D.t160" 0 56.7088 6 -3840 0
+rnode "VM28D.t148" 0 56.7088 -60 -3840 0
+rnode "VM28D.n301" 0 292.048 -27 -3840 0
+rnode "VM28D.n302" 0 87.6549 -49 -3726 0
+rnode "VM28D.n303" 0 95.3333 -49 -3726 0
+rnode "VM28D.n304" 0 401.687 -6 -3726 0
+rnode "VM28D.n305" 0 404.05 143 -3726 0
+rnode "VM28D.t178" 0 56.7088 198 -3222 0
+rnode "VM28D.t170" 0 56.7088 132 -3222 0
+rnode "VM28D.n306" 0 291.651 165 -3222 0
+rnode "VM28D.n307" 0 88.052 186 -3336 0
+rnode "VM28D.n308" 0 95.2961 186 -3336 0
+rnode "VM28D.t136" 0 56.7088 198 -3840 0
+rnode "VM28D.t3" 0 56.7088 132 -3840 0
+rnode "VM28D.n309" 0 292.048 165 -3840 0
+rnode "VM28D.n310" 0 87.6549 143 -3726 0
+rnode "VM28D.n311" 0 95.3333 143 -3726 0
+rnode "VM28D.n312" 0 401.687 186 -3726 0
+rnode "VM28D.n313" 0 404.05 335 -3726 0
+rnode "VM28D.t164" 0 56.7088 390 -3222 0
+rnode "VM28D.t176" 0 56.7088 324 -3222 0
+rnode "VM28D.n314" 0 291.651 357 -3222 0
+rnode "VM28D.n315" 0 88.052 378 -3336 0
+rnode "VM28D.n316" 0 95.2961 378 -3336 0
+rnode "VM28D.t200" 0 56.7088 390 -3840 0
+rnode "VM28D.t111" 0 56.7088 324 -3840 0
+rnode "VM28D.n317" 0 292.048 357 -3840 0
+rnode "VM28D.n318" 0 87.6549 335 -3726 0
+rnode "VM28D.n319" 0 95.3333 335 -3726 0
+rnode "VM28D.n320" 0 392.236 378 -3726 0
+rnode "VM28D.n321" 0 413.624 527 -3726 0
+rnode "VM28D.t151" 0 56.7088 582 -3222 0
+rnode "VM28D.t123" 0 56.7088 516 -3222 0
+rnode "VM28D.n322" 0 291.651 549 -3222 0
+rnode "VM28D.n323" 0 122.573 527 -3336 0
+rnode "VM28D.n324" 0 5.67182 527 -3336 0
+rnode "VM28D.t129" 0 56.7088 582 -3840 0
+rnode "VM28D.t186" 0 56.7088 516 -3840 0
+rnode "VM28D.n325" 0 292.048 549 -3840 0
+rnode "VM28D.n326" 0 50.4639 527 -3726 0
+rnode "VM28D.n327" 0 83.0548 527 -3726 0
+rnode "VM28D.n328" 0 226.835 570 -3726 0
+rnode "VM28D.t179" 0 56.7088 1158 -3222 0
+rnode "VM28D.t183" 0 56.7088 1092 -3222 0
+rnode "VM28D.n329" 0 293.348 1125 -3222 0
+rnode "VM28D.t196" 0 56.7088 1158 -3840 0
+rnode "VM28D.t155" 0 56.7088 1092 -3840 0
+rnode "VM28D.n330" 0 296.325 1125 -3840 0
+rnode "VM28D.n331" 0 826.557 1103 -3726 0
+rnode "VM28D.n332" 0 474.226 954 -3726 0
+rnode "VM28D.t144" 0 56.7088 966 -3840 0
+rnode "VM28D.t124" 0 56.7088 900 -3840 0
+rnode "VM28D.n333" 0 292.048 933 -3840 0
+rnode "VM28D.n334" 0 87.6549 911 -3726 0
+rnode "VM28D.n335" 0 95.3333 911 -3726 0
+rnode "VM28D.t114" 0 56.7088 966 -3222 0
+rnode "VM28D.t185" 0 56.7088 900 -3222 0
+rnode "VM28D.n336" 0 291.651 933 -3222 0
+rnode "VM28D.n337" 0 88.052 954 -3336 0
+rnode "VM28D.n338" 0 95.2961 954 -3336 0
+rnode "VM28D.n339" 0 302.447 911 -3726 0
+rnode "VM28D.n340" 0 438.828 719 -3726 0
+rnode "VM28D.t146" 0 56.7088 774 -3222 0
+rnode "VM28D.t175" 0 56.7088 708 -3222 0
+rnode "VM28D.n341" 0 291.651 741 -3222 0
+rnode "VM28D.n342" 0 88.052 762 -3336 0
+rnode "VM28D.n343" 0 151.223 762 -3726 0
+rnode "VM28D.t190" 0 56.7088 774 -3840 0
+rnode "VM28D.t2" 0 56.7088 708 -3840 0
+rnode "VM28D.n344" 0 292.048 741 -3840 0
+rnode "VM28D.n345" 0 87.6549 719 -3726 0
+rnode "VM28D" 0 1168.61 630 -2970 0
+resist "VM28D.n10" "VM28D.n9" 0.001
+resist "VM28D.n12" "VM28D.n11" 0.001
+resist "VM28D.n9" "VM28D.n133" 0.001
+resist "VM28D.n12" "VM28D.n158" 0.001
+resist "VM28D.n246" "VM28D.n245" 0.00100222
+resist "VM28D.n90" "VM28D.n88" 0.00105101
+resist "VM28D.n251" "VM28D.n140" 0.00126155
+resist "VM28D.n19" "VM28D.n18" 0.00131749
+resist "VM28D.n156" "VM28D.n153" 0.00139563
+resist "VM28D.n150" "VM28D.n147" 0.00139563
+resist "VM28D.n4" "VM28D.n3" 0.00142458
+resist "VM28D.n124" "VM28D.n123" 0.00146339
+resist "VM28D.n6" "VM28D.n324" 0.00151055
+resist "VM28D.n242" "VM28D.n239" 0.00178785
+resist "VM28D.n234" "VM28D.n231" 0.00178785
+resist "VM28D.n226" "VM28D.n223" 0.00178785
+resist "VM28D.n218" "VM28D.n215" 0.00178785
+resist "VM28D.n210" "VM28D.n207" 0.00178785
+resist "VM28D.n202" "VM28D.n199" 0.00178785
+resist "VM28D.n194" "VM28D.n191" 0.00178785
+resist "VM28D.n1" "VM28D.n0" 0.0017889
+resist "VM28D.n103" "VM28D.n100" 0.0017889
+resist "VM28D.n83" "VM28D.n80" 0.0017889
+resist "VM28D.n75" "VM28D.n72" 0.0017889
+resist "VM28D.n67" "VM28D.n64" 0.0017889
+resist "VM28D.n59" "VM28D.n56" 0.0017889
+resist "VM28D.n51" "VM28D.n48" 0.0017889
+resist "VM28D.n43" "VM28D.n40" 0.0017889
+resist "VM28D.n35" "VM28D.n32" 0.0017889
+resist "VM28D.n27" "VM28D.n24" 0.0017889
+resist "VM28D.n338" "VM28D.n335" 0.0017889
+resist "VM28D.n319" "VM28D.n316" 0.0017889
+resist "VM28D.n311" "VM28D.n308" 0.0017889
+resist "VM28D.n303" "VM28D.n300" 0.0017889
+resist "VM28D.n295" "VM28D.n292" 0.0017889
+resist "VM28D.n287" "VM28D.n284" 0.0017889
+resist "VM28D.n279" "VM28D.n276" 0.0017889
+resist "VM28D.n271" "VM28D.n268" 0.0017889
+resist "VM28D.n263" "VM28D.n260" 0.0017889
+resist "VM28D.n2" "VM28D.n1" 0.00186107
+resist "VM28D.n140" "VM28D.n8" 0.00186576
+resist "VM28D.n5" "VM28D.n4" 0.00196633
+resist "VM28D.n255" "VM28D.n254" 0.002
+resist "VM28D.n125" "VM28D.n124" 0.002
+resist "VM28D.n24" "VM28D.n23" 0.00246196
+resist "VM28D.n32" "VM28D.n31" 0.00246196
+resist "VM28D.n40" "VM28D.n39" 0.00246196
+resist "VM28D.n48" "VM28D.n47" 0.00246196
+resist "VM28D.n56" "VM28D.n55" 0.00246196
+resist "VM28D.n64" "VM28D.n63" 0.00246196
+resist "VM28D.n72" "VM28D.n71" 0.00246196
+resist "VM28D.n80" "VM28D.n79" 0.00246196
+resist "VM28D.n103" "VM28D.n102" 0.00246196
+resist "VM28D.n0" "VM28D.n342" 0.00246196
+resist "VM28D.n260" "VM28D.n259" 0.00246196
+resist "VM28D.n268" "VM28D.n267" 0.00246196
+resist "VM28D.n276" "VM28D.n275" 0.00246196
+resist "VM28D.n284" "VM28D.n283" 0.00246196
+resist "VM28D.n292" "VM28D.n291" 0.00246196
+resist "VM28D.n300" "VM28D.n299" 0.00246196
+resist "VM28D.n308" "VM28D.n307" 0.00246196
+resist "VM28D.n316" "VM28D.n315" 0.00246196
+resist "VM28D.n338" "VM28D.n337" 0.00246196
+resist "VM28D.n263" "VM28D.n262" 0.00246231
+resist "VM28D.n271" "VM28D.n270" 0.00246231
+resist "VM28D.n279" "VM28D.n278" 0.00246231
+resist "VM28D.n287" "VM28D.n286" 0.00246231
+resist "VM28D.n295" "VM28D.n294" 0.00246231
+resist "VM28D.n303" "VM28D.n302" 0.00246231
+resist "VM28D.n311" "VM28D.n310" 0.00246231
+resist "VM28D.n319" "VM28D.n318" 0.00246231
+resist "VM28D.n335" "VM28D.n334" 0.00246231
+resist "VM28D.n1" "VM28D.n345" 0.00246231
+resist "VM28D.n27" "VM28D.n26" 0.00246231
+resist "VM28D.n35" "VM28D.n34" 0.00246231
+resist "VM28D.n43" "VM28D.n42" 0.00246231
+resist "VM28D.n51" "VM28D.n50" 0.00246231
+resist "VM28D.n59" "VM28D.n58" 0.00246231
+resist "VM28D.n67" "VM28D.n66" 0.00246231
+resist "VM28D.n75" "VM28D.n74" 0.00246231
+resist "VM28D.n83" "VM28D.n82" 0.00246231
+resist "VM28D.n100" "VM28D.n99" 0.00246231
+resist "VM28D.n3" "VM28D.n16" 0.00246231
+resist "VM28D.n156" "VM28D.n155" 0.00246266
+resist "VM28D.n150" "VM28D.n149" 0.00246266
+resist "VM28D.n191" "VM28D.n190" 0.00246266
+resist "VM28D.n199" "VM28D.n198" 0.00246266
+resist "VM28D.n207" "VM28D.n206" 0.00246266
+resist "VM28D.n215" "VM28D.n214" 0.00246266
+resist "VM28D.n223" "VM28D.n222" 0.00246266
+resist "VM28D.n231" "VM28D.n230" 0.00246266
+resist "VM28D.n239" "VM28D.n238" 0.00246266
+resist "VM28D.n194" "VM28D.n193" 0.00246266
+resist "VM28D.n202" "VM28D.n201" 0.00246266
+resist "VM28D.n210" "VM28D.n209" 0.00246266
+resist "VM28D.n218" "VM28D.n217" 0.00246266
+resist "VM28D.n226" "VM28D.n225" 0.00246266
+resist "VM28D.n234" "VM28D.n233" 0.00246266
+resist "VM28D.n242" "VM28D.n241" 0.00246266
+resist "VM28D.n10" "VM28D.n128" 0.00248075
+resist "VM28D.n6" "VM28D.n327" 0.00249734
+resist "VM28D.n246" "VM28D.n249" 0.00249778
+resist "VM28D.n245" "VM28D.n184" 0.00249822
+resist "VM28D.n245" "VM28D.n244" 0.00249822
+resist "VM28D.n4" "VM28D.n19" 0.00279309
+resist "VM28D.n7" "VM28D.n90" 0.00294812
+resist "VM28D.n7" "VM28D.n92" 0.00299911
+resist "VM28D.n153" "VM28D.n142" 0.00305042
+resist "VM28D.n147" "VM28D.n144" 0.00305042
+resist "VM28D.n8" "VM28D.n136" 0.00305042
+resist "VM28D.n140" "VM28D.n139" 0.00341489
+resist "VM28D.n7" "VM28D.n86" 0.00344955
+resist "VM28D.n153" "VM28D.n152" 0.0034963
+resist "VM28D.n147" "VM28D.n146" 0.0034963
+resist "VM28D.n8" "VM28D.n134" 0.0034963
+resist "VM28D.n250" "VM28D.n246" 0.00349667
+resist "VM28D.n86" "VM28D.n85" 0.00354389
+resist "VM28D.n8" "VM28D.n138" 0.00369222
+resist "VM28D.n157" "VM28D.n156" 0.00408612
+resist "VM28D.n151" "VM28D.n150" 0.00408612
+resist "VM28D.n243" "VM28D.n242" 0.00408612
+resist "VM28D.n235" "VM28D.n234" 0.00408612
+resist "VM28D.n227" "VM28D.n226" 0.00408612
+resist "VM28D.n219" "VM28D.n218" 0.00408612
+resist "VM28D.n211" "VM28D.n210" 0.00408612
+resist "VM28D.n203" "VM28D.n202" 0.00408612
+resist "VM28D.n195" "VM28D.n194" 0.00408612
+resist "VM28D.n191" "VM28D.n188" 0.00408612
+resist "VM28D.n199" "VM28D.n196" 0.00408612
+resist "VM28D.n207" "VM28D.n204" 0.00408612
+resist "VM28D.n215" "VM28D.n212" 0.00408612
+resist "VM28D.n223" "VM28D.n220" 0.00408612
+resist "VM28D.n231" "VM28D.n228" 0.00408612
+resist "VM28D.n239" "VM28D.n236" 0.00408612
+resist "VM28D.n128" "VM28D.n127" 0.00418859
+resist "VM28D.n93" "VM28D.n7" 0.00449467
+resist "VM28D.n328" "VM28D.n6" 0.00449467
+resist "VM28D.n324" "VM28D.n323" 0.00498227
+resist "VM28D.n4" "VM28D.n13" 0.005
+resist "VM28D.n3" "VM28D.n14" 0.00508419
+resist "VM28D.n100" "VM28D.n97" 0.00508419
+resist "VM28D.n84" "VM28D.n83" 0.00508419
+resist "VM28D.n76" "VM28D.n75" 0.00508419
+resist "VM28D.n68" "VM28D.n67" 0.00508419
+resist "VM28D.n60" "VM28D.n59" 0.00508419
+resist "VM28D.n52" "VM28D.n51" 0.00508419
+resist "VM28D.n44" "VM28D.n43" 0.00508419
+resist "VM28D.n36" "VM28D.n35" 0.00508419
+resist "VM28D.n28" "VM28D.n27" 0.00508419
+resist "VM28D.n1" "VM28D.n343" 0.00508419
+resist "VM28D.n335" "VM28D.n332" 0.00508419
+resist "VM28D.n320" "VM28D.n319" 0.00508419
+resist "VM28D.n312" "VM28D.n311" 0.00508419
+resist "VM28D.n304" "VM28D.n303" 0.00508419
+resist "VM28D.n296" "VM28D.n295" 0.00508419
+resist "VM28D.n288" "VM28D.n287" 0.00508419
+resist "VM28D.n280" "VM28D.n279" 0.00508419
+resist "VM28D.n272" "VM28D.n271" 0.00508419
+resist "VM28D.n264" "VM28D.n263" 0.00508419
+resist "VM28D.n5" "VM28D.n255" 0.00509217
+resist "VM28D.n327" "VM28D.n326" 0.00549445
+resist "VM28D.n324" "VM28D.n321" 0.00597901
+resist "VM28D.n24" "VM28D.n21" 0.00608181
+resist "VM28D.n32" "VM28D.n29" 0.00608181
+resist "VM28D.n40" "VM28D.n37" 0.00608181
+resist "VM28D.n48" "VM28D.n45" 0.00608181
+resist "VM28D.n56" "VM28D.n53" 0.00608181
+resist "VM28D.n64" "VM28D.n61" 0.00608181
+resist "VM28D.n72" "VM28D.n69" 0.00608181
+resist "VM28D.n80" "VM28D.n77" 0.00608181
+resist "VM28D.n104" "VM28D.n103" 0.00608181
+resist "VM28D.n260" "VM28D.n257" 0.00608181
+resist "VM28D.n268" "VM28D.n265" 0.00608181
+resist "VM28D.n276" "VM28D.n273" 0.00608181
+resist "VM28D.n284" "VM28D.n281" 0.00608181
+resist "VM28D.n292" "VM28D.n289" 0.00608181
+resist "VM28D.n300" "VM28D.n297" 0.00608181
+resist "VM28D.n308" "VM28D.n305" 0.00608181
+resist "VM28D.n316" "VM28D.n313" 0.00608181
+resist "VM28D.n0" "VM28D.n340" 0.00608181
+resist "VM28D.n339" "VM28D.n338" 0.00608181
+resist "VM28D.n107" "VM28D.n106" 0.00618182
+resist "VM28D.n184" "VM28D.n182" 0.00618182
+resist "VM28D.n12" "VM28D.n181" 0.00622722
+resist "VM28D.n88" "VM28D.n87" 0.00699063
+resist "VM28D.n249" "VM28D.n248" 0.01
+resist "VM28D.n252" "VM28D.n251" 0.011
+resist "VM28D.n251" "VM28D.n250" 0.0119161
+resist "VM28D.n253" "VM28D.n10" 0.012
+resist "VM28D.n251" "VM28D.n157" 0.014
+resist "VM28D.n5" "VM28D.n93" 0.017
+resist "VM28D.n2" "VM28D.n328" 0.017
+resist "VM28D.n124" "VM28D.n107" 0.0189991
+resist "VM28D.n5" "VM28D.n104" 0.024
+resist "VM28D.n2" "VM28D.n339" 0.024
+resist "VM28D.n152" "VM28D.n151" 0.025
+resist "VM28D.n196" "VM28D.n195" 0.025
+resist "VM28D.n204" "VM28D.n203" 0.025
+resist "VM28D.n212" "VM28D.n211" 0.025
+resist "VM28D.n220" "VM28D.n219" 0.025
+resist "VM28D.n228" "VM28D.n227" 0.025
+resist "VM28D.n236" "VM28D.n235" 0.025
+resist "VM28D.n244" "VM28D.n243" 0.025
+resist "VM28D.n146" "VM28D.n145" 0.0300772
+resist "VM28D.n188" "VM28D.n187" 0.0300776
+resist "VM28D.n85" "VM28D.n84" 0.032
+resist "VM28D.n321" "VM28D.n320" 0.032
+resist "VM28D.n29" "VM28D.n28" 0.033
+resist "VM28D.n37" "VM28D.n36" 0.033
+resist "VM28D.n45" "VM28D.n44" 0.033
+resist "VM28D.n53" "VM28D.n52" 0.033
+resist "VM28D.n61" "VM28D.n60" 0.033
+resist "VM28D.n69" "VM28D.n68" 0.033
+resist "VM28D.n77" "VM28D.n76" 0.033
+resist "VM28D.n265" "VM28D.n264" 0.033
+resist "VM28D.n273" "VM28D.n272" 0.033
+resist "VM28D.n281" "VM28D.n280" 0.033
+resist "VM28D.n289" "VM28D.n288" 0.033
+resist "VM28D.n297" "VM28D.n296" 0.033
+resist "VM28D.n305" "VM28D.n304" 0.033
+resist "VM28D.n313" "VM28D.n312" 0.033
+resist "VM28D.n21" "VM28D.n20" 0.0390724
+resist "VM28D.n257" "VM28D.n256" 0.0390724
+resist "VM28D.n97" "VM28D.n96" 0.0400663
+resist "VM28D.n332" "VM28D.n331" 0.0400663
+resist "VM28D.n10" "VM28D.n125" 0.0492775
+resist "VM28D" "VM28D.n2" 0.0533433
+resist "VM28D.n255" "VM28D.t125" 0.055
+resist "VM28D.n11" "VM28D.n179" 0.0625711
+resist "VM28D" "VM28D.n5" 0.0694149
+resist "VM28D.n11" "VM28D.n162" 0.0793257
+resist "VM28D.n10" "VM28D.n132" 0.0795352
+resist "VM28D.n254" "VM28D.n253" 0.093
+resist "VM28D.n10" "VM28D.n252" 0.112458
+resist "VM28D.n251" "VM28D.n12" 0.122965
+resist "VM28D.n179" "VM28D.n178" 0.126142
+resist "VM28D.n123" "VM28D.n122" 0.12687
+resist "VM28D.n162" "VM28D.n161" 0.145869
+resist "VM28D.n168" "VM28D.n166" 0.145869
+resist "VM28D.n170" "VM28D.n168" 0.145869
+resist "VM28D.n172" "VM28D.n170" 0.145869
+resist "VM28D.n174" "VM28D.n172" 0.145869
+resist "VM28D.n176" "VM28D.n174" 0.145869
+resist "VM28D.n178" "VM28D.n176" 0.145869
+resist "VM28D.n132" "VM28D.n131" 0.145869
+resist "VM28D.n112" "VM28D.n110" 0.145869
+resist "VM28D.n114" "VM28D.n112" 0.145869
+resist "VM28D.n116" "VM28D.n114" 0.145869
+resist "VM28D.n118" "VM28D.n116" 0.145869
+resist "VM28D.n120" "VM28D.n118" 0.145869
+resist "VM28D.n122" "VM28D.n120" 0.145869
+resist "VM28D.n90" "VM28D.n89" 0.235247
+resist "VM28D.n19" "VM28D.n17" 0.235919
+resist "VM28D.n327" "VM28D.n325" 0.23766
+resist "VM28D.n262" "VM28D.n261" 0.23766
+resist "VM28D.n270" "VM28D.n269" 0.23766
+resist "VM28D.n278" "VM28D.n277" 0.23766
+resist "VM28D.n286" "VM28D.n285" 0.23766
+resist "VM28D.n294" "VM28D.n293" 0.23766
+resist "VM28D.n302" "VM28D.n301" 0.23766
+resist "VM28D.n310" "VM28D.n309" 0.23766
+resist "VM28D.n318" "VM28D.n317" 0.23766
+resist "VM28D.n334" "VM28D.n333" 0.23766
+resist "VM28D.n345" "VM28D.n344" 0.23766
+resist "VM28D.n92" "VM28D.n91" 0.23766
+resist "VM28D.n26" "VM28D.n25" 0.23766
+resist "VM28D.n34" "VM28D.n33" 0.23766
+resist "VM28D.n42" "VM28D.n41" 0.23766
+resist "VM28D.n50" "VM28D.n49" 0.23766
+resist "VM28D.n58" "VM28D.n57" 0.23766
+resist "VM28D.n66" "VM28D.n65" 0.23766
+resist "VM28D.n74" "VM28D.n73" 0.23766
+resist "VM28D.n82" "VM28D.n81" 0.23766
+resist "VM28D.n99" "VM28D.n98" 0.23766
+resist "VM28D.n16" "VM28D.n15" 0.23766
+resist "VM28D.n193" "VM28D.n192" 0.23766
+resist "VM28D.n201" "VM28D.n200" 0.23766
+resist "VM28D.n209" "VM28D.n208" 0.23766
+resist "VM28D.n217" "VM28D.n216" 0.23766
+resist "VM28D.n225" "VM28D.n224" 0.23766
+resist "VM28D.n233" "VM28D.n232" 0.23766
+resist "VM28D.n241" "VM28D.n240" 0.23766
+resist "VM28D.n136" "VM28D.n135" 0.23766
+resist "VM28D.n144" "VM28D.n143" 0.23766
+resist "VM28D.n142" "VM28D.n141" 0.23766
+resist "VM28D.n184" "VM28D.n183" 0.23766
+resist "VM28D.n181" "VM28D.n180" 0.23766
+resist "VM28D.n337" "VM28D.n336" 0.238649
+resist "VM28D.n315" "VM28D.n314" 0.238649
+resist "VM28D.n307" "VM28D.n306" 0.238649
+resist "VM28D.n299" "VM28D.n298" 0.238649
+resist "VM28D.n291" "VM28D.n290" 0.238649
+resist "VM28D.n283" "VM28D.n282" 0.238649
+resist "VM28D.n275" "VM28D.n274" 0.238649
+resist "VM28D.n267" "VM28D.n266" 0.238649
+resist "VM28D.n259" "VM28D.n258" 0.238649
+resist "VM28D.n323" "VM28D.n322" 0.238649
+resist "VM28D.n342" "VM28D.n341" 0.238649
+resist "VM28D.n102" "VM28D.n101" 0.238649
+resist "VM28D.n79" "VM28D.n78" 0.238649
+resist "VM28D.n71" "VM28D.n70" 0.238649
+resist "VM28D.n63" "VM28D.n62" 0.238649
+resist "VM28D.n55" "VM28D.n54" 0.238649
+resist "VM28D.n47" "VM28D.n46" 0.238649
+resist "VM28D.n39" "VM28D.n38" 0.238649
+resist "VM28D.n31" "VM28D.n30" 0.238649
+resist "VM28D.n23" "VM28D.n22" 0.238649
+resist "VM28D.n107" "VM28D.n105" 0.238649
+resist "VM28D.n127" "VM28D.n126" 0.238649
+resist "VM28D.n238" "VM28D.n237" 0.238649
+resist "VM28D.n230" "VM28D.n229" 0.238649
+resist "VM28D.n222" "VM28D.n221" 0.238649
+resist "VM28D.n214" "VM28D.n213" 0.238649
+resist "VM28D.n206" "VM28D.n205" 0.238649
+resist "VM28D.n198" "VM28D.n197" 0.238649
+resist "VM28D.n190" "VM28D.n189" 0.238649
+resist "VM28D.n149" "VM28D.n148" 0.238649
+resist "VM28D.n155" "VM28D.n154" 0.238649
+resist "VM28D.n138" "VM28D.n137" 0.238649
+resist "VM28D.n249" "VM28D.n247" 0.238649
+resist "VM28D.n161" "VM28D.n160" 0.240608
+resist "VM28D.n162" "VM28D.n159" 0.240608
+resist "VM28D.n178" "VM28D.n177" 0.240608
+resist "VM28D.n176" "VM28D.n175" 0.240608
+resist "VM28D.n174" "VM28D.n173" 0.240608
+resist "VM28D.n172" "VM28D.n171" 0.240608
+resist "VM28D.n170" "VM28D.n169" 0.240608
+resist "VM28D.n168" "VM28D.n167" 0.240608
+resist "VM28D.n166" "VM28D.n165" 0.240608
+resist "VM28D.n187" "VM28D.n186" 0.241125
+resist "VM28D.n131" "VM28D.n130" 0.241597
+resist "VM28D.n132" "VM28D.n129" 0.241597
+resist "VM28D.n110" "VM28D.n109" 0.241597
+resist "VM28D.n112" "VM28D.n111" 0.241597
+resist "VM28D.n114" "VM28D.n113" 0.241597
+resist "VM28D.n116" "VM28D.n115" 0.241597
+resist "VM28D.n118" "VM28D.n117" 0.241597
+resist "VM28D.n120" "VM28D.n119" 0.241597
+resist "VM28D.n122" "VM28D.n121" 0.241597
+resist "VM28D.n331" "VM28D.n329" 0.242116
+resist "VM28D.n96" "VM28D.n94" 0.242116
+resist "VM28D.n331" "VM28D.n330" 0.242898
+resist "VM28D.n96" "VM28D.n95" 0.242898
+resist "VM28D.n187" "VM28D.n185" 0.243888
+resist "VM28D.n179" "VM28D.n163" 0.247968
+resist "VM28D.n110" "VM28D.n108" 0.387301
+resist "VM28D.n166" "VM28D.n164" 0.387593
+resist "VM28D.n163" "VM28D.t110" 8.7
+resist "VM28D.n163" "VM28D.t77" 8.7
+resist "VM28D.n130" "VM28D.t49" 8.7
+resist "VM28D.n130" "VM28D.t100" 8.7
+resist "VM28D.n129" "VM28D.t58" 8.7
+resist "VM28D.n129" "VM28D.t84" 8.7
+resist "VM28D.n108" "VM28D.t30" 8.7
+resist "VM28D.n108" "VM28D.t105" 8.7
+resist "VM28D.n109" "VM28D.t56" 8.7
+resist "VM28D.n109" "VM28D.t103" 8.7
+resist "VM28D.n111" "VM28D.t62" 8.7
+resist "VM28D.n111" "VM28D.t107" 8.7
+resist "VM28D.n113" "VM28D.t87" 8.7
+resist "VM28D.n113" "VM28D.t34" 8.7
+resist "VM28D.n115" "VM28D.t90" 8.7
+resist "VM28D.n115" "VM28D.t38" 8.7
+resist "VM28D.n117" "VM28D.t92" 8.7
+resist "VM28D.n117" "VM28D.t33" 8.7
+resist "VM28D.n119" "VM28D.t53" 8.7
+resist "VM28D.n119" "VM28D.t39" 8.7
+resist "VM28D.n121" "VM28D.t91" 8.7
+resist "VM28D.n121" "VM28D.t36" 8.7
+resist "VM28D.n105" "VM28D.t66" 8.7
+resist "VM28D.n105" "VM28D.t108" 8.7
+resist "VM28D.n126" "VM28D.t64" 8.7
+resist "VM28D.n126" "VM28D.t104" 8.7
+resist "VM28D.n237" "VM28D.t26" 8.7
+resist "VM28D.n237" "VM28D.t47" 8.7
+resist "VM28D.n229" "VM28D.t67" 8.7
+resist "VM28D.n229" "VM28D.t109" 8.7
+resist "VM28D.n221" "VM28D.t74" 8.7
+resist "VM28D.n221" "VM28D.t83" 8.7
+resist "VM28D.n213" "VM28D.t11" 8.7
+resist "VM28D.n213" "VM28D.t96" 8.7
+resist "VM28D.n205" "VM28D.t48" 8.7
+resist "VM28D.n205" "VM28D.t27" 8.7
+resist "VM28D.n197" "VM28D.t42" 8.7
+resist "VM28D.n197" "VM28D.t21" 8.7
+resist "VM28D.n189" "VM28D.t75" 8.7
+resist "VM28D.n189" "VM28D.t60" 8.7
+resist "VM28D.n185" "VM28D.t25" 8.7
+resist "VM28D.n185" "VM28D.t54" 8.7
+resist "VM28D.n186" "VM28D.t35" 8.7
+resist "VM28D.n186" "VM28D.t37" 8.7
+resist "VM28D.n192" "VM28D.t71" 8.7
+resist "VM28D.n192" "VM28D.t99" 8.7
+resist "VM28D.n200" "VM28D.t22" 8.7
+resist "VM28D.n200" "VM28D.t51" 8.7
+resist "VM28D.n208" "VM28D.t52" 8.7
+resist "VM28D.n208" "VM28D.t78" 8.7
+resist "VM28D.n216" "VM28D.t101" 8.7
+resist "VM28D.n216" "VM28D.t28" 8.7
+resist "VM28D.n224" "VM28D.t63" 8.7
+resist "VM28D.n224" "VM28D.t76" 8.7
+resist "VM28D.n232" "VM28D.t85" 8.7
+resist "VM28D.n232" "VM28D.t20" 8.7
+resist "VM28D.n240" "VM28D.t97" 8.7
+resist "VM28D.n240" "VM28D.t70" 8.7
+resist "VM28D.n135" "VM28D.t13" 8.7
+resist "VM28D.n135" "VM28D.t89" 8.7
+resist "VM28D.n143" "VM28D.t31" 8.7
+resist "VM28D.n143" "VM28D.t102" 8.7
+resist "VM28D.n141" "VM28D.t65" 8.7
+resist "VM28D.n141" "VM28D.t59" 8.7
+resist "VM28D.n148" "VM28D.t98" 8.7
+resist "VM28D.n148" "VM28D.t14" 8.7
+resist "VM28D.n154" "VM28D.t95" 8.7
+resist "VM28D.n154" "VM28D.t68" 8.7
+resist "VM28D.n137" "VM28D.t57" 8.7
+resist "VM28D.n137" "VM28D.t73" 8.7
+resist "VM28D.n247" "VM28D.t19" 8.7
+resist "VM28D.n247" "VM28D.t40" 8.7
+resist "VM28D.n183" "VM28D.t69" 8.7
+resist "VM28D.n183" "VM28D.t41" 8.7
+resist "VM28D.n160" "VM28D.t94" 8.7
+resist "VM28D.n160" "VM28D.t61" 8.7
+resist "VM28D.n159" "VM28D.t72" 8.7
+resist "VM28D.n159" "VM28D.t32" 8.7
+resist "VM28D.n164" "VM28D.t81" 8.7
+resist "VM28D.n164" "VM28D.t15" 8.7
+resist "VM28D.n177" "VM28D.t86" 8.7
+resist "VM28D.n177" "VM28D.t50" 8.7
+resist "VM28D.n175" "VM28D.t16" 8.7
+resist "VM28D.n175" "VM28D.t17" 8.7
+resist "VM28D.n173" "VM28D.t23" 8.7
+resist "VM28D.n173" "VM28D.t79" 8.7
+resist "VM28D.n171" "VM28D.t55" 8.7
+resist "VM28D.n171" "VM28D.t93" 8.7
+resist "VM28D.n169" "VM28D.t88" 8.7
+resist "VM28D.n169" "VM28D.t18" 8.7
+resist "VM28D.n167" "VM28D.t12" 8.7
+resist "VM28D.n167" "VM28D.t45" 8.7
+resist "VM28D.n165" "VM28D.t44" 8.7
+resist "VM28D.n165" "VM28D.t80" 8.7
+resist "VM28D.n180" "VM28D.t43" 8.7
+resist "VM28D.n180" "VM28D.t106" 8.7
+resist "VM28D.n145" "VM28D.t29" 8.94211
+resist "VM28D.n145" "VM28D.t82" 8.94309
+resist "VM28D.n131" "VM28D.t46" 9.08647
+resist "VM28D.n161" "VM28D.t24" 9.08668
+resist "VM28D.n325" "VM28D.t186" 9.9
+resist "VM28D.n325" "VM28D.t129" 9.9
+resist "VM28D.n329" "VM28D.t183" 9.9
+resist "VM28D.n329" "VM28D.t179" 9.9
+resist "VM28D.n336" "VM28D.t185" 9.9
+resist "VM28D.n336" "VM28D.t114" 9.9
+resist "VM28D.n314" "VM28D.t176" 9.9
+resist "VM28D.n314" "VM28D.t164" 9.9
+resist "VM28D.n306" "VM28D.t170" 9.9
+resist "VM28D.n306" "VM28D.t178" 9.9
+resist "VM28D.n298" "VM28D.t6" 9.9
+resist "VM28D.n298" "VM28D.t118" 9.9
+resist "VM28D.n290" "VM28D.t184" 9.9
+resist "VM28D.n290" "VM28D.t145" 9.9
+resist "VM28D.n282" "VM28D.t122" 9.9
+resist "VM28D.n282" "VM28D.t4" 9.9
+resist "VM28D.n274" "VM28D.t8" 9.9
+resist "VM28D.n274" "VM28D.t199" 9.9
+resist "VM28D.n266" "VM28D.t158" 9.9
+resist "VM28D.n266" "VM28D.t128" 9.9
+resist "VM28D.n258" "VM28D.t147" 9.9
+resist "VM28D.n258" "VM28D.t180" 9.9
+resist "VM28D.n261" "VM28D.t171" 9.9
+resist "VM28D.n261" "VM28D.t139" 9.9
+resist "VM28D.n269" "VM28D.t142" 9.9
+resist "VM28D.n269" "VM28D.t10" 9.9
+resist "VM28D.n277" "VM28D.t1" 9.9
+resist "VM28D.n277" "VM28D.t150" 9.9
+resist "VM28D.n285" "VM28D.t115" 9.9
+resist "VM28D.n285" "VM28D.t143" 9.9
+resist "VM28D.n293" "VM28D.t194" 9.9
+resist "VM28D.n293" "VM28D.t189" 9.9
+resist "VM28D.n301" "VM28D.t148" 9.9
+resist "VM28D.n301" "VM28D.t160" 9.9
+resist "VM28D.n309" "VM28D.t3" 9.9
+resist "VM28D.n309" "VM28D.t136" 9.9
+resist "VM28D.n317" "VM28D.t111" 9.9
+resist "VM28D.n317" "VM28D.t200" 9.9
+resist "VM28D.n322" "VM28D.t123" 9.9
+resist "VM28D.n322" "VM28D.t151" 9.9
+resist "VM28D.n341" "VM28D.t175" 9.9
+resist "VM28D.n341" "VM28D.t146" 9.9
+resist "VM28D.n330" "VM28D.t155" 9.9
+resist "VM28D.n330" "VM28D.t196" 9.9
+resist "VM28D.n333" "VM28D.t124" 9.9
+resist "VM28D.n333" "VM28D.t144" 9.9
+resist "VM28D.n344" "VM28D.t2" 9.9
+resist "VM28D.n344" "VM28D.t190" 9.9
+resist "VM28D.n91" "VM28D.t113" 9.9
+resist "VM28D.n91" "VM28D.t0" 9.9
+resist "VM28D.n94" "VM28D.t169" 9.9
+resist "VM28D.n94" "VM28D.t140" 9.9
+resist "VM28D.n101" "VM28D.t121" 9.9
+resist "VM28D.n101" "VM28D.t131" 9.9
+resist "VM28D.n17" "VM28D.t159" 9.9
+resist "VM28D.n17" "VM28D.t173" 9.9
+resist "VM28D.n89" "VM28D.t188" 9.9
+resist "VM28D.n89" "VM28D.t167" 9.9
+resist "VM28D.n78" "VM28D.t127" 9.9
+resist "VM28D.n78" "VM28D.t134" 9.9
+resist "VM28D.n70" "VM28D.t152" 9.9
+resist "VM28D.n70" "VM28D.t195" 9.9
+resist "VM28D.n62" "VM28D.t132" 9.9
+resist "VM28D.n62" "VM28D.t162" 9.9
+resist "VM28D.n54" "VM28D.t119" 9.9
+resist "VM28D.n54" "VM28D.t137" 9.9
+resist "VM28D.n46" "VM28D.t187" 9.9
+resist "VM28D.n46" "VM28D.t168" 9.9
+resist "VM28D.n38" "VM28D.t156" 9.9
+resist "VM28D.n38" "VM28D.t138" 9.9
+resist "VM28D.n30" "VM28D.t130" 9.9
+resist "VM28D.n30" "VM28D.t126" 9.9
+resist "VM28D.n22" "VM28D.t182" 9.9
+resist "VM28D.n22" "VM28D.t163" 9.9
+resist "VM28D.n25" "VM28D.t7" 9.9
+resist "VM28D.n25" "VM28D.t149" 9.9
+resist "VM28D.n33" "VM28D.t120" 9.9
+resist "VM28D.n33" "VM28D.t174" 9.9
+resist "VM28D.n41" "VM28D.t191" 9.9
+resist "VM28D.n41" "VM28D.t166" 9.9
+resist "VM28D.n49" "VM28D.t133" 9.9
+resist "VM28D.n49" "VM28D.t181" 9.9
+resist "VM28D.n57" "VM28D.t153" 9.9
+resist "VM28D.n57" "VM28D.t197" 9.9
+resist "VM28D.n65" "VM28D.t161" 9.9
+resist "VM28D.n65" "VM28D.t177" 9.9
+resist "VM28D.n73" "VM28D.t117" 9.9
+resist "VM28D.n73" "VM28D.t193" 9.9
+resist "VM28D.n81" "VM28D.t198" 9.9
+resist "VM28D.n81" "VM28D.t5" 9.9
+resist "VM28D.n95" "VM28D.t172" 9.9
+resist "VM28D.n95" "VM28D.t9" 9.9
+resist "VM28D.n98" "VM28D.t154" 9.9
+resist "VM28D.n98" "VM28D.t135" 9.9
+resist "VM28D.n15" "VM28D.t116" 9.9
+resist "VM28D.n15" "VM28D.t141" 9.9
+resist "VM28D.n20" "VM28D.t192" 10.1411
+resist "VM28D.n256" "VM28D.t112" 10.1411
+resist "VM28D.n256" "VM28D.t165" 10.1439
+resist "VM28D.n20" "VM28D.t157" 10.1439
+rnode "Out_1.n0" 0 145.375 1248 2231 0
+rnode "Out_1.t146" 0 115.345 1256 2345 0
+rnode "Out_1.t148" 0 115.345 1198 2345 0
+rnode "Out_1.n1" 0 642.634 1227 2345 0
+rnode "Out_1.n2" 0 177.17 1205 2231 0
+rnode "Out_1.n3" 0 32.8089 1205 2231 0
+rnode "Out_1.n4" 0 165.138 1227 2225 0
+rnode "Out_1.n5" 0 89.402 1313 2225 0
+rnode "Out_1.t149" 0 115.345 1060 2345 0
+rnode "Out_1.t8" 0 115.345 1002 2345 0
+rnode "Out_1.n6" 0 642.634 1031 2345 0
+rnode "Out_1.n7" 0 177.428 1009 2231 0
+rnode "Out_1.n8" 0 32.8089 1009 2231 0
+rnode "Out_1.t46" 0 142.885 -1130 2345 0
+rnode "Out_1.t142" 0 115.345 -934 2345 0
+rnode "Out_1.t91" 0 115.345 -992 2345 0
+rnode "Out_1.n9" 0 645.661 -963 2345 0
+rnode "Out_1.n10" 0 2451.36 -942 2231 0
+rnode "Out_1.t26" 0 115.345 -738 2345 0
+rnode "Out_1.t83" 0 115.345 -796 2345 0
+rnode "Out_1.n11" 0 645.661 -767 2345 0
+rnode "Out_1.n12" 0 961.852 -746 2231 0
+rnode "Out_1.t96" 0 115.345 -542 2345 0
+rnode "Out_1.t38" 0 115.345 -600 2345 0
+rnode "Out_1.n13" 0 645.661 -571 2345 0
+rnode "Out_1.n14" 0 961.852 -550 2231 0
+rnode "Out_1.t10" 0 115.345 -346 2345 0
+rnode "Out_1.t30" 0 115.345 -404 2345 0
+rnode "Out_1.n15" 0 645.661 -375 2345 0
+rnode "Out_1.n16" 0 961.852 -354 2231 0
+rnode "Out_1.t94" 0 115.345 -150 2345 0
+rnode "Out_1.t147" 0 115.345 -208 2345 0
+rnode "Out_1.n17" 0 645.661 -179 2345 0
+rnode "Out_1.n18" 0 961.852 -158 2231 0
+rnode "Out_1.t87" 0 115.345 46 2345 0
+rnode "Out_1.t29" 0 115.345 -12 2345 0
+rnode "Out_1.n19" 0 645.661 17 2345 0
+rnode "Out_1.n20" 0 961.852 38 2231 0
+rnode "Out_1.t40" 0 115.345 242 2345 0
+rnode "Out_1.t25" 0 115.345 184 2345 0
+rnode "Out_1.n21" 0 645.661 213 2345 0
+rnode "Out_1.n22" 0 1351 234 2231 0
+rnode "Out_1.t11" 0 128.006 668 2345 0
+rnode "Out_1.n23" 0 2098.64 660 2231 0
+rnode "Out_1.t37" 0 115.345 864 2345 0
+rnode "Out_1.t42" 0 115.345 806 2345 0
+rnode "Out_1.n24" 0 645.661 835 2345 0
+rnode "Out_1.n25" 0 887.029 856 2231 0
+rnode "Out_1.n26" 0 297.538 989 2225 0
+rnode "Out_1.n27" 0 70.9969 1009 2231 0
+rnode "Out_1.n28" 0 165.138 1031 2225 0
+rnode "Out_1.n29" 0 165.213 1313 2225 0
+rnode "Out_1.t31" 0 115.345 1452 2345 0
+rnode "Out_1.t141" 0 115.345 1394 2345 0
+rnode "Out_1.n30" 0 645.661 1423 2345 0
+rnode "Out_1.t64" 0 115.345 1648 2345 0
+rnode "Out_1.t65" 0 115.345 1590 2345 0
+rnode "Out_1.n31" 0 645.661 1619 2345 0
+rnode "Out_1.t90" 0 115.345 1844 2345 0
+rnode "Out_1.t67" 0 115.345 1786 2345 0
+rnode "Out_1.n32" 0 645.661 1815 2345 0
+rnode "Out_1.t144" 0 115.345 2040 2345 0
+rnode "Out_1.t76" 0 115.345 1982 2345 0
+rnode "Out_1.n33" 0 924.819 2011 2345 0
+rnode "Out_1.n34" 0 1424.38 1836 2231 0
+rnode "Out_1.n35" 0 961.852 1640 2231 0
+rnode "Out_1.n36" 0 813.089 1444 2231 0
+rnode "Out_1.n37" 0 1750.98 1313 2225 0
+rnode "Out_1.n38" 0 165.213 1031 1825 0
+rnode "Out_1.n39" 0 153.42 1248 1823 0
+rnode "Out_1.n40" 0 1401.37 2517 250 0
+rnode "Out_1.n41" 0 116.936 2648 813 0
+rnode "Out_1.n42" 0 66.2637 2648 813 0
+rnode "Out_1.n43" 0 216.928 2648 813 0
+rnode "Out_1.t161" 0 176.597 2648 558 0
+rnode "Out_1.n44" 0 216.928 2648 303 0
+rnode "Out_1.n45" 0 66.2637 2648 303 0
+rnode "Out_1.n46" 0 300.136 2648 195 0
+rnode "Out_1.n47" 0 66.2637 2648 195 0
+rnode "Out_1.n48" 0 216.928 2648 195 0
+rnode "Out_1.t187" 0 176.597 2648 -60 0
+rnode "Out_1.n49" 0 216.928 2648 -315 0
+rnode "Out_1.n50" 0 66.2637 2648 -315 0
+rnode "Out_1.n51" 0 109.14 2844 -315 0
+rnode "Out_1.n52" 0 66.2637 2844 -315 0
+rnode "Out_1.t165" 0 176.597 2746 -60 0
+rnode "Out_1.t175" 0 176.597 2844 -60 0
+rnode "Out_1.t182" 0 176.597 2942 -60 0
+rnode "Out_1.n53" 0 216.928 3040 -315 0
+rnode "Out_1.n54" 0 66.2637 3040 -315 0
+rnode "Out_1.n55" 0 109.14 3236 -315 0
+rnode "Out_1.n56" 0 66.2637 3236 -315 0
+rnode "Out_1.t171" 0 176.597 3138 -60 0
+rnode "Out_1.t178" 0 176.597 3236 -60 0
+rnode "Out_1.t184" 0 176.597 3334 -60 0
+rnode "Out_1.n57" 0 216.928 3432 -315 0
+rnode "Out_1.n58" 0 66.2637 3432 -315 0
+rnode "Out_1.n59" 0 109.14 3628 -315 0
+rnode "Out_1.n60" 0 66.2637 3628 -315 0
+rnode "Out_1.t173" 0 176.597 3530 -60 0
+rnode "Out_1.t174" 0 176.597 3628 -60 0
+rnode "Out_1.t181" 0 176.597 3726 -60 0
+rnode "Out_1.n61" 0 216.928 3824 -315 0
+rnode "Out_1.n62" 0 66.2637 3824 -315 0
+rnode "Out_1.t189" 0 176.597 3824 -60 0
+rnode "Out_1.n63" 0 216.928 3824 195 0
+rnode "Out_1.n64" 0 66.2637 3824 195 0
+rnode "Out_1.n65" 0 300.136 3824 195 0
+rnode "Out_1.n66" 0 66.2637 3824 303 0
+rnode "Out_1.t170" 0 176.597 3922 558 0
+rnode "Out_1.t160" 0 176.597 3824 558 0
+rnode "Out_1.t179" 0 176.597 3726 558 0
+rnode "Out_1.n67" 0 216.928 3628 303 0
+rnode "Out_1.n68" 0 66.2637 3628 303 0
+rnode "Out_1.n69" 0 300.136 3628 195 0
+rnode "Out_1.n70" 0 66.2637 3628 195 0
+rnode "Out_1.t163" 0 176.597 3432 -60 0
+rnode "Out_1.n71" 0 216.928 3432 195 0
+rnode "Out_1.n72" 0 66.2637 3432 195 0
+rnode "Out_1.n73" 0 300.136 3432 195 0
+rnode "Out_1.n74" 0 66.2637 3432 303 0
+rnode "Out_1.t188" 0 176.597 3530 558 0
+rnode "Out_1.t177" 0 176.597 3432 558 0
+rnode "Out_1.t167" 0 176.597 3334 558 0
+rnode "Out_1.n75" 0 216.928 3236 303 0
+rnode "Out_1.n76" 0 66.2637 3236 303 0
+rnode "Out_1.n77" 0 300.136 3236 195 0
+rnode "Out_1.n78" 0 66.2637 3236 195 0
+rnode "Out_1.t169" 0 176.597 3040 -60 0
+rnode "Out_1.n79" 0 216.928 3040 195 0
+rnode "Out_1.n80" 0 66.2637 3040 195 0
+rnode "Out_1.n81" 0 300.136 3040 195 0
+rnode "Out_1.n82" 0 66.2637 3040 303 0
+rnode "Out_1.t176" 0 176.597 3138 558 0
+rnode "Out_1.t164" 0 176.597 3040 558 0
+rnode "Out_1.t162" 0 176.597 2942 558 0
+rnode "Out_1.n83" 0 216.928 2844 303 0
+rnode "Out_1.n84" 0 66.2637 2844 303 0
+rnode "Out_1.n85" 0 300.136 2844 195 0
+rnode "Out_1.n86" 0 66.2637 2844 195 0
+rnode "Out_1.t183" 0 176.597 2844 558 0
+rnode "Out_1.n87" 0 216.928 2844 813 0
+rnode "Out_1.n88" 0 66.2637 2844 813 0
+rnode "Out_1.n89" 0 116.936 3040 813 0
+rnode "Out_1.n90" 0 66.2637 3040 813 0
+rnode "Out_1.t185" 0 176.597 3236 558 0
+rnode "Out_1.n91" 0 216.928 3236 813 0
+rnode "Out_1.n92" 0 66.2637 3236 813 0
+rnode "Out_1.n93" 0 116.936 3432 813 0
+rnode "Out_1.n94" 0 66.2637 3432 813 0
+rnode "Out_1.t168" 0 176.597 3628 558 0
+rnode "Out_1.n95" 0 216.928 3628 813 0
+rnode "Out_1.n96" 0 66.2637 3628 813 0
+rnode "Out_1.n97" 0 102.799 3922 813 0
+rnode "Out_1.n98" 0 66.2637 3824 813 0
+rnode "Out_1.n99" 0 214.112 3922 813 0
+rnode "Out_1.n100" 0 216.928 3824 813 0
+rnode "Out_1.n101" 0 216.928 3726 813 0
+rnode "Out_1.n102" 0 66.2637 3726 813 0
+rnode "Out_1.n103" 0 263.871 3726 813 0
+rnode "Out_1.n104" 0 116.936 3628 813 0
+rnode "Out_1.n105" 0 116.936 3530 813 0
+rnode "Out_1.n106" 0 66.2637 3530 813 0
+rnode "Out_1.n107" 0 216.928 3530 813 0
+rnode "Out_1.n108" 0 216.928 3432 813 0
+rnode "Out_1.n109" 0 216.928 3334 813 0
+rnode "Out_1.n110" 0 66.2637 3334 813 0
+rnode "Out_1.n111" 0 116.936 3334 813 0
+rnode "Out_1.n112" 0 116.936 3236 813 0
+rnode "Out_1.n113" 0 116.936 3138 813 0
+rnode "Out_1.n114" 0 66.2637 3138 813 0
+rnode "Out_1.n115" 0 216.928 3138 813 0
+rnode "Out_1.n116" 0 216.928 3040 813 0
+rnode "Out_1.n117" 0 216.928 2942 813 0
+rnode "Out_1.n118" 0 66.2637 2942 813 0
+rnode "Out_1.n119" 0 116.936 2942 813 0
+rnode "Out_1.n120" 0 116.936 2844 813 0
+rnode "Out_1.n121" 0 116.936 2746 813 0
+rnode "Out_1.n122" 0 66.2637 2746 813 0
+rnode "Out_1.n123" 0 216.928 2746 813 0
+rnode "Out_1.t172" 0 176.597 2746 558 0
+rnode "Out_1.n124" 0 216.928 2746 303 0
+rnode "Out_1.n125" 0 66.2637 2746 303 0
+rnode "Out_1.n126" 0 300.136 2746 195 0
+rnode "Out_1.n127" 0 66.2637 2746 195 0
+rnode "Out_1.n128" 0 216.928 2746 195 0
+rnode "Out_1.n129" 0 216.928 2844 195 0
+rnode "Out_1.n130" 0 216.928 2942 195 0
+rnode "Out_1.n131" 0 66.2637 2942 195 0
+rnode "Out_1.n132" 0 300.136 2942 195 0
+rnode "Out_1.n133" 0 66.2637 2942 303 0
+rnode "Out_1.n134" 0 216.928 2942 303 0
+rnode "Out_1.n135" 0 216.928 3040 303 0
+rnode "Out_1.n136" 0 216.928 3138 303 0
+rnode "Out_1.n137" 0 66.2637 3138 303 0
+rnode "Out_1.n138" 0 300.136 3138 195 0
+rnode "Out_1.n139" 0 66.2637 3138 195 0
+rnode "Out_1.n140" 0 216.928 3138 195 0
+rnode "Out_1.n141" 0 216.928 3236 195 0
+rnode "Out_1.n142" 0 216.928 3334 195 0
+rnode "Out_1.n143" 0 66.2637 3334 195 0
+rnode "Out_1.n144" 0 300.136 3334 195 0
+rnode "Out_1.n145" 0 66.2637 3334 303 0
+rnode "Out_1.n146" 0 216.928 3334 303 0
+rnode "Out_1.n147" 0 216.928 3432 303 0
+rnode "Out_1.n148" 0 216.928 3530 303 0
+rnode "Out_1.n149" 0 66.2637 3530 303 0
+rnode "Out_1.n150" 0 300.136 3530 195 0
+rnode "Out_1.n151" 0 66.2637 3530 195 0
+rnode "Out_1.n152" 0 216.928 3530 195 0
+rnode "Out_1.n153" 0 216.928 3628 195 0
+rnode "Out_1.n154" 0 216.928 3726 195 0
+rnode "Out_1.n155" 0 66.2637 3726 195 0
+rnode "Out_1.n156" 0 300.136 3726 195 0
+rnode "Out_1.n157" 0 66.2637 3726 303 0
+rnode "Out_1.n158" 0 216.928 3726 303 0
+rnode "Out_1.n159" 0 216.928 3824 303 0
+rnode "Out_1.n160" 0 195.927 3922 303 0
+rnode "Out_1.n161" 0 55.4452 3922 303 0
+rnode "Out_1.n162" 0 245.844 3922 195 0
+rnode "Out_1.n163" 0 55.4452 3922 195 0
+rnode "Out_1.n164" 0 195.927 3922 195 0
+rnode "Out_1.t166" 0 176.597 3922 -60 0
+rnode "Out_1.n165" 0 214.165 3922 -315 0
+rnode "Out_1.n166" 0 101.914 3824 -315 0
+rnode "Out_1.n167" 0 244.895 3726 -315 0
+rnode "Out_1.n168" 0 66.2637 3726 -315 0
+rnode "Out_1.n169" 0 216.928 3726 -315 0
+rnode "Out_1.n170" 0 216.928 3628 -315 0
+rnode "Out_1.n171" 0 216.928 3530 -315 0
+rnode "Out_1.n172" 0 66.2637 3530 -315 0
+rnode "Out_1.n173" 0 109.14 3530 -315 0
+rnode "Out_1.n174" 0 109.14 3432 -315 0
+rnode "Out_1.n175" 0 109.14 3334 -315 0
+rnode "Out_1.n176" 0 66.2637 3334 -315 0
+rnode "Out_1.n177" 0 216.928 3334 -315 0
+rnode "Out_1.n178" 0 216.928 3236 -315 0
+rnode "Out_1.n179" 0 216.928 3138 -315 0
+rnode "Out_1.n180" 0 66.2637 3138 -315 0
+rnode "Out_1.n181" 0 109.14 3138 -315 0
+rnode "Out_1.n182" 0 109.14 3040 -315 0
+rnode "Out_1.n183" 0 109.14 2942 -315 0
+rnode "Out_1.n184" 0 66.2637 2942 -315 0
+rnode "Out_1.n185" 0 216.928 2942 -315 0
+rnode "Out_1.n186" 0 216.928 2844 -315 0
+rnode "Out_1.n187" 0 216.928 2746 -315 0
+rnode "Out_1.n188" 0 66.2637 2746 -315 0
+rnode "Out_1.n189" 0 109.14 2746 -315 0
+rnode "Out_1.n190" 0 109.14 2648 -315 0
+rnode "Out_1.n191" 0 579.332 2550 -315 0
+rnode "Out_1.n192" 0 55.4452 2550 -315 0
+rnode "Out_1.n193" 0 195.927 2550 -315 0
+rnode "Out_1.t186" 0 176.597 2550 -60 0
+rnode "Out_1.n194" 0 195.927 2550 162 0
+rnode "Out_1.n195" 0 55.4452 2550 195 0
+rnode "Out_1.n196" 0 200.601 2550 195 0
+rnode "Out_1.n197" 0 55.4452 2550 303 0
+rnode "Out_1.n198" 0 195.927 2550 303 0
+rnode "Out_1.t180" 0 176.597 2550 558 0
+rnode "Out_1.n199" 0 195.927 2550 780 0
+rnode "Out_1.n200" 0 55.4452 2550 813 0
+rnode "Out_1.n201" 0 172.489 2550 813 0
+rnode "Out_1.n202" 0 2851.16 2289 755 0
+rnode "Out_1" 0 1648.99 1800 670 0
+rnode "Out_1.n203" 0 156.689 997 -1070 0
+rnode "Out_1.t55" 0 115.345 1026 -1184 0
+rnode "Out_1.t48" 0 115.345 968 -1184 0
+rnode "Out_1.n204" 0 643.522 997 -1184 0
+rnode "Out_1.n205" 0 34.4644 997 -1184 0
+rnode "Out_1.n206" 0 37.624 997 -1070 0
+rnode "Out_1.t112" 0 159.165 -1130 -1184 0
+rnode "Out_1.t138" 0 115.345 -934 -1184 0
+rnode "Out_1.t117" 0 115.345 -992 -1184 0
+rnode "Out_1.n207" 0 646.623 -963 -1184 0
+rnode "Out_1.n208" 0 2392.21 -985 -1070 0
+rnode "Out_1.t60" 0 115.345 -738 -1184 0
+rnode "Out_1.t121" 0 115.345 -796 -1184 0
+rnode "Out_1.n209" 0 646.623 -767 -1184 0
+rnode "Out_1.n210" 0 956.753 -789 -1070 0
+rnode "Out_1.t133" 0 115.345 -542 -1184 0
+rnode "Out_1.t97" 0 115.345 -600 -1184 0
+rnode "Out_1.n211" 0 646.623 -571 -1184 0
+rnode "Out_1.n212" 0 956.753 -593 -1070 0
+rnode "Out_1.t132" 0 115.345 -346 -1184 0
+rnode "Out_1.t20" 0 115.345 -404 -1184 0
+rnode "Out_1.n213" 0 646.623 -375 -1184 0
+rnode "Out_1.n214" 0 956.753 -397 -1070 0
+rnode "Out_1.t108" 0 115.345 -150 -1184 0
+rnode "Out_1.t18" 0 115.345 -208 -1184 0
+rnode "Out_1.n215" 0 646.623 -179 -1184 0
+rnode "Out_1.n216" 0 956.753 -201 -1070 0
+rnode "Out_1.t135" 0 115.345 46 -1184 0
+rnode "Out_1.t19" 0 115.345 -12 -1184 0
+rnode "Out_1.n217" 0 646.623 17 -1184 0
+rnode "Out_1.n218" 0 956.753 -5 -1070 0
+rnode "Out_1.t107" 0 115.345 242 -1184 0
+rnode "Out_1.t109" 0 115.345 184 -1184 0
+rnode "Out_1.n219" 0 646.623 213 -1184 0
+rnode "Out_1.n220" 0 956.753 191 -1070 0
+rnode "Out_1.t3" 0 115.345 438 -1184 0
+rnode "Out_1.t35" 0 115.345 380 -1184 0
+rnode "Out_1.n221" 0 646.623 409 -1184 0
+rnode "Out_1.n222" 0 956.753 387 -1070 0
+rnode "Out_1.t5" 0 115.345 634 -1184 0
+rnode "Out_1.t98" 0 115.345 576 -1184 0
+rnode "Out_1.n223" 0 646.623 605 -1184 0
+rnode "Out_1.n224" 0 956.753 583 -1070 0
+rnode "Out_1.t62" 0 115.345 830 -1184 0
+rnode "Out_1.t122" 0 115.345 772 -1184 0
+rnode "Out_1.n225" 0 646.623 801 -1184 0
+rnode "Out_1.n226" 0 915.995 779 -1070 0
+rnode "Out_1.n227" 0 300.49 975 -1070 0
+rnode "Out_1.n228" 0 37.1888 977 -1057 0
+rnode "Out_1.n229" 0 112.412 977 -1057 0
+rnode "Out_1.n230" 0 29.7114 977 -1057 0
+rnode "Out_1.n231" 0 161.281 1003 -1057 0
+rnode "Out_1.t14" 0 115.345 1222 -1184 0
+rnode "Out_1.t126" 0 115.345 1164 -1184 0
+rnode "Out_1.n232" 0 652.932 1193 -1184 0
+rnode "Out_1.n233" 0 3771.48 1184 -1055 0
+rnode "Out_1.t7" 0 115.345 1222 -566 0
+rnode "Out_1.t124" 0 115.345 1164 -566 0
+rnode "Out_1.n234" 0 651.842 1193 -566 0
+rnode "Out_1.n235" 0 154.541 975 -680 0
+rnode "Out_1.t23" 0 115.345 1026 -566 0
+rnode "Out_1.t156" 0 115.345 968 -566 0
+rnode "Out_1.n236" 0 642.636 997 -566 0
+rnode "Out_1.n237" 0 32.2201 997 -566 0
+rnode "Out_1.n238" 0 43.297 997 -760 0
+rnode "Out_1.t34" 0 159.921 -1130 -566 0
+rnode "Out_1.t0" 0 115.345 -934 -566 0
+rnode "Out_1.t17" 0 115.345 -992 -566 0
+rnode "Out_1.n239" 0 645.705 -963 -566 0
+rnode "Out_1.n240" 0 2434.28 -942 -680 0
+rnode "Out_1.t159" 0 115.345 -738 -566 0
+rnode "Out_1.t125" 0 115.345 -796 -566 0
+rnode "Out_1.n241" 0 645.705 -767 -566 0
+rnode "Out_1.n242" 0 961.807 -746 -680 0
+rnode "Out_1.t120" 0 115.345 -542 -566 0
+rnode "Out_1.t119" 0 115.345 -600 -566 0
+rnode "Out_1.n243" 0 645.705 -571 -566 0
+rnode "Out_1.n244" 0 961.807 -550 -680 0
+rnode "Out_1.t123" 0 115.345 -346 -566 0
+rnode "Out_1.t80" 0 115.345 -404 -566 0
+rnode "Out_1.n245" 0 645.705 -375 -566 0
+rnode "Out_1.n246" 0 961.807 -354 -680 0
+rnode "Out_1.t4" 0 115.345 -150 -566 0
+rnode "Out_1.t114" 0 115.345 -208 -566 0
+rnode "Out_1.n247" 0 645.705 -179 -566 0
+rnode "Out_1.n248" 0 961.807 -158 -680 0
+rnode "Out_1.t49" 0 115.345 46 -566 0
+rnode "Out_1.t104" 0 115.345 -12 -566 0
+rnode "Out_1.n249" 0 645.705 17 -566 0
+rnode "Out_1.n250" 0 961.807 38 -680 0
+rnode "Out_1.t127" 0 115.345 242 -566 0
+rnode "Out_1.t155" 0 115.345 184 -566 0
+rnode "Out_1.n251" 0 645.705 213 -566 0
+rnode "Out_1.n252" 0 961.807 234 -680 0
+rnode "Out_1.t105" 0 115.345 438 -566 0
+rnode "Out_1.t106" 0 115.345 380 -566 0
+rnode "Out_1.n253" 0 645.705 409 -566 0
+rnode "Out_1.n254" 0 961.807 430 -680 0
+rnode "Out_1.t73" 0 115.345 634 -566 0
+rnode "Out_1.t15" 0 115.345 576 -566 0
+rnode "Out_1.n255" 0 645.705 605 -566 0
+rnode "Out_1.n256" 0 961.807 626 -680 0
+rnode "Out_1.t2" 0 115.345 830 -566 0
+rnode "Out_1.t131" 0 115.345 772 -566 0
+rnode "Out_1.n257" 0 645.705 801 -566 0
+rnode "Out_1.n258" 0 921.037 822 -680 0
+rnode "Out_1.n259" 0 300.675 975 -680 0
+rnode "Out_1.n260" 0 37.1888 977 -685 0
+rnode "Out_1.n261" 0 116.154 1003 -685 0
+rnode "Out_1.n262" 0 28.3352 1003 -685 0
+rnode "Out_1.n263" 0 162.657 1003 -685 0
+rnode "Out_1.n264" 0 7379.71 1184 -685 0
+rnode "Out_1.n265" 0 156.689 997 374 0
+rnode "Out_1.t128" 0 115.345 1026 260 0
+rnode "Out_1.t102" 0 115.345 968 260 0
+rnode "Out_1.n266" 0 643.464 997 260 0
+rnode "Out_1.n267" 0 33.3234 997 260 0
+rnode "Out_1.n268" 0 41.6004 997 374 0
+rnode "Out_1.t115" 0 159.232 -1130 260 0
+rnode "Out_1.t103" 0 115.345 -934 260 0
+rnode "Out_1.t136" 0 115.345 -992 260 0
+rnode "Out_1.n269" 0 646.623 -963 260 0
+rnode "Out_1.n270" 0 2400.42 -985 374 0
+rnode "Out_1.t16" 0 115.345 -738 260 0
+rnode "Out_1.t157" 0 115.345 -796 260 0
+rnode "Out_1.n271" 0 646.623 -767 260 0
+rnode "Out_1.n272" 0 960.889 -789 374 0
+rnode "Out_1.t58" 0 115.345 -542 260 0
+rnode "Out_1.t158" 0 115.345 -600 260 0
+rnode "Out_1.n273" 0 646.623 -571 260 0
+rnode "Out_1.n274" 0 960.889 -593 374 0
+rnode "Out_1.t63" 0 115.345 -346 260 0
+rnode "Out_1.t113" 0 115.345 -404 260 0
+rnode "Out_1.n275" 0 646.623 -375 260 0
+rnode "Out_1.n276" 0 960.889 -397 374 0
+rnode "Out_1.t100" 0 115.345 -150 260 0
+rnode "Out_1.t130" 0 115.345 -208 260 0
+rnode "Out_1.n277" 0 646.623 -179 260 0
+rnode "Out_1.n278" 0 960.889 -201 374 0
+rnode "Out_1.t101" 0 115.345 46 260 0
+rnode "Out_1.t47" 0 115.345 -12 260 0
+rnode "Out_1.n279" 0 646.623 17 260 0
+rnode "Out_1.n280" 0 960.889 -5 374 0
+rnode "Out_1.t116" 0 115.345 242 260 0
+rnode "Out_1.t92" 0 115.345 184 260 0
+rnode "Out_1.n281" 0 646.623 213 260 0
+rnode "Out_1.n282" 0 960.889 191 374 0
+rnode "Out_1.t154" 0 115.345 438 260 0
+rnode "Out_1.t57" 0 115.345 380 260 0
+rnode "Out_1.n283" 0 646.623 409 260 0
+rnode "Out_1.n284" 0 960.889 387 374 0
+rnode "Out_1.t61" 0 115.345 634 260 0
+rnode "Out_1.t110" 0 115.345 576 260 0
+rnode "Out_1.n285" 0 646.623 605 260 0
+rnode "Out_1.n286" 0 960.889 583 374 0
+rnode "Out_1.t129" 0 115.345 830 260 0
+rnode "Out_1.t99" 0 115.345 772 260 0
+rnode "Out_1.n287" 0 646.623 801 260 0
+rnode "Out_1.n288" 0 920.104 779 374 0
+rnode "Out_1.n289" 0 300.505 975 374 0
+rnode "Out_1.n290" 0 37.1888 977 385 0
+rnode "Out_1.n291" 0 113.771 977 385 0
+rnode "Out_1.n292" 0 29.7128 977 385 0
+rnode "Out_1.n293" 0 161.279 1003 385 0
+rnode "Out_1.t111" 0 115.345 1222 260 0
+rnode "Out_1.t74" 0 115.345 1164 260 0
+rnode "Out_1.n294" 0 652.928 1193 260 0
+rnode "Out_1.n295" 0 7406.68 1184 385 0
+rnode "Out_1.n296" 0 35.4984 1003 755 0
+rnode "Out_1.t140" 0 115.345 1026 878 0
+rnode "Out_1.t24" 0 115.345 968 878 0
+rnode "Out_1.n297" 0 642.588 997 878 0
+rnode "Out_1.n298" 0 33.4524 997 878 0
+rnode "Out_1.n299" 0 113.611 1003 755 0
+rnode "Out_1.n300" 0 0 1003 755 0
+rnode "Out_1.n301" 0 43.2234 997 684 0
+rnode "Out_1.n302" 0 37.1888 977 755 0
+rnode "Out_1.t6" 0 159.379 -1130 878 0
+rnode "Out_1.t22" 0 115.345 -934 878 0
+rnode "Out_1.t70" 0 115.345 -992 878 0
+rnode "Out_1.n303" 0 645.705 -963 878 0
+rnode "Out_1.n304" 0 2401.01 -942 764 0
+rnode "Out_1.t72" 0 115.345 -738 878 0
+rnode "Out_1.t82" 0 115.345 -796 878 0
+rnode "Out_1.n305" 0 645.705 -767 878 0
+rnode "Out_1.n306" 0 961.807 -746 764 0
+rnode "Out_1.t134" 0 115.345 -542 878 0
+rnode "Out_1.t13" 0 115.345 -600 878 0
+rnode "Out_1.n307" 0 645.705 -571 878 0
+rnode "Out_1.n308" 0 961.807 -550 764 0
+rnode "Out_1.t137" 0 115.345 -346 878 0
+rnode "Out_1.t151" 0 115.345 -404 878 0
+rnode "Out_1.n309" 0 645.705 -375 878 0
+rnode "Out_1.n310" 0 961.807 -354 764 0
+rnode "Out_1.t152" 0 115.345 -150 878 0
+rnode "Out_1.t139" 0 115.345 -208 878 0
+rnode "Out_1.n311" 0 645.705 -179 878 0
+rnode "Out_1.n312" 0 961.807 -158 764 0
+rnode "Out_1.t71" 0 115.345 46 878 0
+rnode "Out_1.t81" 0 115.345 -12 878 0
+rnode "Out_1.n313" 0 645.705 17 878 0
+rnode "Out_1.n314" 0 961.807 38 764 0
+rnode "Out_1.t50" 0 115.345 242 878 0
+rnode "Out_1.t150" 0 115.345 184 878 0
+rnode "Out_1.n315" 0 645.705 213 878 0
+rnode "Out_1.n316" 0 961.807 234 764 0
+rnode "Out_1.t93" 0 115.345 438 878 0
+rnode "Out_1.t56" 0 115.345 380 878 0
+rnode "Out_1.n317" 0 645.705 409 878 0
+rnode "Out_1.n318" 0 961.807 430 764 0
+rnode "Out_1.t21" 0 115.345 634 878 0
+rnode "Out_1.t79" 0 115.345 576 878 0
+rnode "Out_1.n319" 0 645.705 605 878 0
+rnode "Out_1.n320" 0 961.807 626 764 0
+rnode "Out_1.t1" 0 115.345 830 878 0
+rnode "Out_1.t118" 0 115.345 772 878 0
+rnode "Out_1.n321" 0 645.705 801 878 0
+rnode "Out_1.n322" 0 921.037 822 764 0
+rnode "Out_1.n323" 0 300.675 975 764 0
+rnode "Out_1.n324" 0 155.95 975 764 0
+rnode "Out_1.n325" 0 164.872 1018 764 0
+rnode "Out_1.t153" 0 115.345 1222 878 0
+rnode "Out_1.t59" 0 115.345 1164 878 0
+rnode "Out_1.n326" 0 651.043 1193 878 0
+rnode "Out_1.n327" 0 704.386 1214 764 0
+rnode "Out_1.n328" 0 7264.06 1184 755 0
+rnode "Out_1.n329" 0 160.446 1031 1825 0
+rnode "Out_1.t89" 0 115.345 1060 1709 0
+rnode "Out_1.t41" 0 115.345 1002 1709 0
+rnode "Out_1.n330" 0 643.522 1031 1709 0
+rnode "Out_1.n331" 0 30.2853 1009 1823 0
+rnode "Out_1.n332" 0 183.755 1009 1823 0
+rnode "Out_1.n333" 0 62.5449 1009 1823 0
+rnode "Out_1.t84" 0 142.865 -1130 1709 0
+rnode "Out_1.t143" 0 115.345 -934 1709 0
+rnode "Out_1.t27" 0 115.345 -992 1709 0
+rnode "Out_1.n334" 0 646.578 -963 1709 0
+rnode "Out_1.n335" 0 2450.64 -985 1823 0
+rnode "Out_1.t66" 0 115.345 -738 1709 0
+rnode "Out_1.t77" 0 115.345 -796 1709 0
+rnode "Out_1.n336" 0 646.578 -767 1709 0
+rnode "Out_1.n337" 0 960.934 -789 1823 0
+rnode "Out_1.t53" 0 115.345 -542 1709 0
+rnode "Out_1.t52" 0 115.345 -600 1709 0
+rnode "Out_1.n338" 0 646.578 -571 1709 0
+rnode "Out_1.n339" 0 960.934 -593 1823 0
+rnode "Out_1.t43" 0 115.345 -346 1709 0
+rnode "Out_1.t45" 0 115.345 -404 1709 0
+rnode "Out_1.n340" 0 646.578 -375 1709 0
+rnode "Out_1.n341" 0 960.934 -397 1823 0
+rnode "Out_1.t32" 0 115.345 -150 1709 0
+rnode "Out_1.t39" 0 115.345 -208 1709 0
+rnode "Out_1.n342" 0 646.578 -179 1709 0
+rnode "Out_1.n343" 0 960.934 -201 1823 0
+rnode "Out_1.t12" 0 115.345 46 1709 0
+rnode "Out_1.t69" 0 115.345 -12 1709 0
+rnode "Out_1.n344" 0 646.578 17 1709 0
+rnode "Out_1.n345" 0 960.934 -5 1823 0
+rnode "Out_1.t36" 0 115.345 242 1709 0
+rnode "Out_1.t85" 0 115.345 184 1709 0
+rnode "Out_1.n346" 0 646.578 213 1709 0
+rnode "Out_1.n347" 0 1349.46 191 1823 0
+rnode "Out_1.t88" 0 127.97 668 1709 0
+rnode "Out_1.n348" 0 2099.29 617 1823 0
+rnode "Out_1.t54" 0 115.345 864 1709 0
+rnode "Out_1.t44" 0 115.345 806 1709 0
+rnode "Out_1.n349" 0 646.578 835 1709 0
+rnode "Out_1.n350" 0 894.759 813 1823 0
+rnode "Out_1.n351" 0 297.158 994 1825 0
+rnode "Out_1.t86" 0 115.345 1452 1709 0
+rnode "Out_1.t75" 0 115.345 1394 1709 0
+rnode "Out_1.n352" 0 646.578 1423 1709 0
+rnode "Out_1.t78" 0 115.345 1648 1709 0
+rnode "Out_1.t95" 0 115.345 1590 1709 0
+rnode "Out_1.n353" 0 646.578 1619 1709 0
+rnode "Out_1.t28" 0 115.345 1844 1709 0
+rnode "Out_1.t9" 0 115.345 1786 1709 0
+rnode "Out_1.n354" 0 646.578 1815 1709 0
+rnode "Out_1.t51" 0 115.345 2040 1709 0
+rnode "Out_1.t145" 0 115.345 1982 1709 0
+rnode "Out_1.n355" 0 926.754 2011 1709 0
+rnode "Out_1.n356" 0 1421.34 1793 1823 0
+rnode "Out_1.n357" 0 960.934 1597 1823 0
+rnode "Out_1.n358" 0 803.632 1401 1823 0
+rnode "Out_1.n359" 0 160.446 1227 1825 0
+rnode "Out_1.t33" 0 115.345 1256 1709 0
+rnode "Out_1.t68" 0 115.345 1198 1709 0
+rnode "Out_1.n360" 0 643.522 1227 1709 0
+rnode "Out_1.n361" 0 30.2853 1205 1823 0
+rnode "Out_1.n362" 0 183.714 1205 1823 0
+rnode "Out_1.n363" 0 72.6873 1205 1823 0
+rnode "Out_1.n364" 0 5809.21 1184 1825 0
+rnode "Out_1" 0 1232 1040 1990 0
+rnode "Out_1" 0 981.427 1090 2120 0
+resist "Out_1.n328" "Out_1.n327" 0.000500647
+resist "Out_1.n29" "Out_1.n28" 0.000708333
+resist "Out_1.n329" "Out_1.n38" 0.000708333
+resist "Out_1.n359" "Out_1.n39" 0.000723881
+resist "Out_1.n5" "Out_1.n4" 0.000910256
+resist "Out_1.n323" "Out_1.n302" 0.001
+resist "Out_1.n260" "Out_1.n259" 0.001
+resist "Out_1.n228" "Out_1.n227" 0.001
+resist "Out_1.n290" "Out_1.n289" 0.001
+resist "Out_1.n332" "Out_1.n331" 0.00102617
+resist "Out_1.n362" "Out_1.n361" 0.00102617
+resist "Out_1.n205" "Out_1.n203" 0.00104724
+resist "Out_1.n267" "Out_1.n265" 0.00104851
+resist "Out_1.n324" "Out_1.n298" 0.00104934
+resist "Out_1.n237" "Out_1.n235" 0.00105101
+resist "Out_1.n37" "Out_1.n5" 0.0010641
+resist "Out_1.n364" "Out_1.n39" 0.00126119
+resist "Out_1.n364" "Out_1.n38" 0.00127778
+resist "Out_1.n37" "Out_1.n29" 0.00127778
+resist "Out_1.n8" "Out_1.n7" 0.0013031
+resist "Out_1.n3" "Out_1.n2" 0.0013031
+resist "Out_1.n361" "Out_1.n359" 0.00197351
+resist "Out_1.n331" "Out_1.n329" 0.00197351
+resist "Out_1.n301" "Out_1.n300" 0.00214104
+resist "Out_1.n262" "Out_1.n238" 0.00214359
+resist "Out_1.n28" "Out_1.n8" 0.00275518
+resist "Out_1.n4" "Out_1.n3" 0.00275518
+resist "Out_1.n230" "Out_1.n206" 0.00279938
+resist "Out_1.n292" "Out_1.n268" 0.00280001
+resist "Out_1.n300" "Out_1.n296" 0.00285619
+resist "Out_1.n238" "Out_1.n237" 0.00294812
+resist "Out_1.n301" "Out_1.n298" 0.00294979
+resist "Out_1.n268" "Out_1.n267" 0.00295061
+resist "Out_1.n206" "Out_1.n205" 0.00295189
+resist "Out_1.n261" "Out_1.n235" 0.008
+resist "Out_1.n325" "Out_1.n296" 0.011
+resist "Out_1" "Out_1.n37" 0.011
+resist "Out_1.n351" "Out_1.n333" 0.011
+resist "Out_1.n293" "Out_1.n292" 0.013486
+resist "Out_1.n231" "Out_1.n230" 0.0134867
+resist "Out_1.n302" "Out_1.n301" 0.014
+resist "Out_1" "Out_1" 0.014
+resist "Out_1.n260" "Out_1.n238" 0.014
+resist "Out_1.n228" "Out_1.n206" 0.014
+resist "Out_1.n27" "Out_1.n26" 0.014
+resist "Out_1.n290" "Out_1.n268" 0.014
+resist "Out_1.n263" "Out_1.n262" 0.0141417
+resist "Out_1.n324" "Out_1.n299" 0.015
+resist "Out_1.n4" "Out_1.n0" 0.015
+resist "Out_1.n364" "Out_1.n363" 0.015
+resist "Out_1.n28" "Out_1.n27" 0.016
+resist "Out_1.n333" "Out_1.n329" 0.016
+resist "Out_1.n363" "Out_1.n359" 0.016
+resist "Out_1" "Out_1.n364" 0.018
+resist "Out_1.n291" "Out_1.n265" 0.019
+resist "Out_1.n229" "Out_1.n203" 0.022
+resist "Out_1.n196" "Out_1.n40" 0.026
+resist "Out_1.n264" "Out_1.n233" 0.0409813
+resist "Out_1.n328" "Out_1.n295" 0.041
+resist "Out_1.n295" "Out_1.n293" 0.0554209
+resist "Out_1.n233" "Out_1.n231" 0.0554209
+resist "Out_1.n264" "Out_1.n263" 0.0554209
+resist "Out_1.n327" "Out_1.n325" 0.0574993
+resist "Out_1.n364" "Out_1.n358" 0.0783257
+resist "Out_1.n196" "Out_1.n46" 0.079
+resist "Out_1.n126" "Out_1.n46" 0.079
+resist "Out_1.n126" "Out_1.n85" 0.079
+resist "Out_1.n132" "Out_1.n85" 0.079
+resist "Out_1.n132" "Out_1.n81" 0.079
+resist "Out_1.n138" "Out_1.n81" 0.079
+resist "Out_1.n138" "Out_1.n77" 0.079
+resist "Out_1.n144" "Out_1.n77" 0.079
+resist "Out_1.n144" "Out_1.n73" 0.079
+resist "Out_1.n150" "Out_1.n73" 0.079
+resist "Out_1.n150" "Out_1.n69" 0.079
+resist "Out_1.n156" "Out_1.n69" 0.079
+resist "Out_1.n156" "Out_1.n65" 0.079
+resist "Out_1.n162" "Out_1.n65" 0.079
+resist "Out_1.n37" "Out_1.n36" 0.0815352
+resist "Out_1.n26" "Out_1.n25" 0.113334
+resist "Out_1.n351" "Out_1.n350" 0.117543
+resist "Out_1.n364" "Out_1.n328" 0.119
+resist "Out_1.n295" "Out_1.n264" 0.119
+resist "Out_1.n323" "Out_1.n322" 0.128334
+resist "Out_1.n259" "Out_1.n258" 0.128334
+resist "Out_1.n227" "Out_1.n226" 0.128543
+resist "Out_1.n289" "Out_1.n288" 0.128543
+resist "Out_1.n358" "Out_1.n357" 0.145869
+resist "Out_1.n357" "Out_1.n356" 0.145869
+resist "Out_1.n337" "Out_1.n335" 0.145869
+resist "Out_1.n339" "Out_1.n337" 0.145869
+resist "Out_1.n341" "Out_1.n339" 0.145869
+resist "Out_1.n343" "Out_1.n341" 0.145869
+resist "Out_1.n345" "Out_1.n343" 0.145869
+resist "Out_1.n347" "Out_1.n345" 0.145869
+resist "Out_1.n350" "Out_1.n348" 0.145869
+resist "Out_1.n226" "Out_1.n224" 0.145869
+resist "Out_1.n224" "Out_1.n222" 0.145869
+resist "Out_1.n222" "Out_1.n220" 0.145869
+resist "Out_1.n220" "Out_1.n218" 0.145869
+resist "Out_1.n218" "Out_1.n216" 0.145869
+resist "Out_1.n216" "Out_1.n214" 0.145869
+resist "Out_1.n214" "Out_1.n212" 0.145869
+resist "Out_1.n212" "Out_1.n210" 0.145869
+resist "Out_1.n210" "Out_1.n208" 0.145869
+resist "Out_1.n288" "Out_1.n286" 0.145869
+resist "Out_1.n286" "Out_1.n284" 0.145869
+resist "Out_1.n284" "Out_1.n282" 0.145869
+resist "Out_1.n282" "Out_1.n280" 0.145869
+resist "Out_1.n280" "Out_1.n278" 0.145869
+resist "Out_1.n278" "Out_1.n276" 0.145869
+resist "Out_1.n276" "Out_1.n274" 0.145869
+resist "Out_1.n274" "Out_1.n272" 0.145869
+resist "Out_1.n272" "Out_1.n270" 0.145869
+resist "Out_1.n306" "Out_1.n304" 0.145869
+resist "Out_1.n308" "Out_1.n306" 0.145869
+resist "Out_1.n310" "Out_1.n308" 0.145869
+resist "Out_1.n312" "Out_1.n310" 0.145869
+resist "Out_1.n314" "Out_1.n312" 0.145869
+resist "Out_1.n316" "Out_1.n314" 0.145869
+resist "Out_1.n318" "Out_1.n316" 0.145869
+resist "Out_1.n320" "Out_1.n318" 0.145869
+resist "Out_1.n322" "Out_1.n320" 0.145869
+resist "Out_1.n242" "Out_1.n240" 0.145869
+resist "Out_1.n244" "Out_1.n242" 0.145869
+resist "Out_1.n246" "Out_1.n244" 0.145869
+resist "Out_1.n248" "Out_1.n246" 0.145869
+resist "Out_1.n250" "Out_1.n248" 0.145869
+resist "Out_1.n252" "Out_1.n250" 0.145869
+resist "Out_1.n254" "Out_1.n252" 0.145869
+resist "Out_1.n256" "Out_1.n254" 0.145869
+resist "Out_1.n258" "Out_1.n256" 0.145869
+resist "Out_1.n12" "Out_1.n10" 0.145869
+resist "Out_1.n14" "Out_1.n12" 0.145869
+resist "Out_1.n16" "Out_1.n14" 0.145869
+resist "Out_1.n18" "Out_1.n16" 0.145869
+resist "Out_1.n20" "Out_1.n18" 0.145869
+resist "Out_1.n22" "Out_1.n20" 0.145869
+resist "Out_1.n25" "Out_1.n23" 0.145869
+resist "Out_1.n36" "Out_1.n35" 0.145869
+resist "Out_1.n35" "Out_1.n34" 0.145869
+resist "Out_1.n201" "Out_1.n41" 0.204
+resist "Out_1.n121" "Out_1.n41" 0.204
+resist "Out_1.n121" "Out_1.n120" 0.204
+resist "Out_1.n120" "Out_1.n119" 0.204
+resist "Out_1.n119" "Out_1.n89" 0.204
+resist "Out_1.n113" "Out_1.n89" 0.204
+resist "Out_1.n113" "Out_1.n112" 0.204
+resist "Out_1.n112" "Out_1.n111" 0.204
+resist "Out_1.n111" "Out_1.n93" 0.204
+resist "Out_1.n105" "Out_1.n93" 0.204
+resist "Out_1.n105" "Out_1.n104" 0.204
+resist "Out_1.n104" "Out_1.n103" 0.204
+resist "Out_1.n191" "Out_1.n190" 0.218
+resist "Out_1.n190" "Out_1.n189" 0.218
+resist "Out_1.n189" "Out_1.n51" 0.218
+resist "Out_1.n183" "Out_1.n51" 0.218
+resist "Out_1.n183" "Out_1.n182" 0.218
+resist "Out_1.n182" "Out_1.n181" 0.218
+resist "Out_1.n181" "Out_1.n55" 0.218
+resist "Out_1.n175" "Out_1.n55" 0.218
+resist "Out_1.n175" "Out_1.n174" 0.218
+resist "Out_1.n174" "Out_1.n173" 0.218
+resist "Out_1.n173" "Out_1.n59" 0.218
+resist "Out_1.n167" "Out_1.n59" 0.218
+resist "Out_1.n267" "Out_1.n266" 0.23358
+resist "Out_1.n298" "Out_1.n297" 0.234467
+resist "Out_1.n205" "Out_1.n204" 0.23472
+resist "Out_1.n331" "Out_1.n330" 0.23501
+resist "Out_1.n361" "Out_1.n360" 0.23501
+resist "Out_1.n237" "Out_1.n236" 0.235247
+resist "Out_1.n3" "Out_1.n1" 0.236061
+resist "Out_1.n8" "Out_1.n6" 0.236061
+resist "Out_1.n208" "Out_1.n207" 0.240608
+resist "Out_1.n210" "Out_1.n209" 0.240608
+resist "Out_1.n212" "Out_1.n211" 0.240608
+resist "Out_1.n214" "Out_1.n213" 0.240608
+resist "Out_1.n216" "Out_1.n215" 0.240608
+resist "Out_1.n218" "Out_1.n217" 0.240608
+resist "Out_1.n220" "Out_1.n219" 0.240608
+resist "Out_1.n222" "Out_1.n221" 0.240608
+resist "Out_1.n224" "Out_1.n223" 0.240608
+resist "Out_1.n226" "Out_1.n225" 0.240608
+resist "Out_1.n270" "Out_1.n269" 0.240608
+resist "Out_1.n272" "Out_1.n271" 0.240608
+resist "Out_1.n274" "Out_1.n273" 0.240608
+resist "Out_1.n276" "Out_1.n275" 0.240608
+resist "Out_1.n278" "Out_1.n277" 0.240608
+resist "Out_1.n280" "Out_1.n279" 0.240608
+resist "Out_1.n282" "Out_1.n281" 0.240608
+resist "Out_1.n284" "Out_1.n283" 0.240608
+resist "Out_1.n286" "Out_1.n285" 0.240608
+resist "Out_1.n288" "Out_1.n287" 0.240608
+resist "Out_1.n350" "Out_1.n349" 0.240634
+resist "Out_1.n347" "Out_1.n346" 0.240634
+resist "Out_1.n345" "Out_1.n344" 0.240634
+resist "Out_1.n343" "Out_1.n342" 0.240634
+resist "Out_1.n341" "Out_1.n340" 0.240634
+resist "Out_1.n339" "Out_1.n338" 0.240634
+resist "Out_1.n337" "Out_1.n336" 0.240634
+resist "Out_1.n335" "Out_1.n334" 0.240634
+resist "Out_1.n356" "Out_1.n354" 0.240634
+resist "Out_1.n357" "Out_1.n353" 0.240634
+resist "Out_1.n358" "Out_1.n352" 0.240634
+resist "Out_1.n304" "Out_1.n303" 0.241597
+resist "Out_1.n306" "Out_1.n305" 0.241597
+resist "Out_1.n308" "Out_1.n307" 0.241597
+resist "Out_1.n310" "Out_1.n309" 0.241597
+resist "Out_1.n312" "Out_1.n311" 0.241597
+resist "Out_1.n314" "Out_1.n313" 0.241597
+resist "Out_1.n316" "Out_1.n315" 0.241597
+resist "Out_1.n318" "Out_1.n317" 0.241597
+resist "Out_1.n320" "Out_1.n319" 0.241597
+resist "Out_1.n322" "Out_1.n321" 0.241597
+resist "Out_1.n258" "Out_1.n257" 0.241597
+resist "Out_1.n256" "Out_1.n255" 0.241597
+resist "Out_1.n254" "Out_1.n253" 0.241597
+resist "Out_1.n252" "Out_1.n251" 0.241597
+resist "Out_1.n250" "Out_1.n249" 0.241597
+resist "Out_1.n248" "Out_1.n247" 0.241597
+resist "Out_1.n246" "Out_1.n245" 0.241597
+resist "Out_1.n244" "Out_1.n243" 0.241597
+resist "Out_1.n242" "Out_1.n241" 0.241597
+resist "Out_1.n240" "Out_1.n239" 0.241597
+resist "Out_1.n34" "Out_1.n32" 0.241623
+resist "Out_1.n35" "Out_1.n31" 0.241623
+resist "Out_1.n36" "Out_1.n30" 0.241623
+resist "Out_1.n25" "Out_1.n24" 0.241623
+resist "Out_1.n22" "Out_1.n21" 0.241623
+resist "Out_1.n20" "Out_1.n19" 0.241623
+resist "Out_1.n18" "Out_1.n17" 0.241623
+resist "Out_1.n16" "Out_1.n15" 0.241623
+resist "Out_1.n14" "Out_1.n13" 0.241623
+resist "Out_1.n12" "Out_1.n11" 0.241623
+resist "Out_1.n10" "Out_1.n9" 0.241623
+resist "Out_1.n295" "Out_1.n294" 0.24165
+resist "Out_1.n327" "Out_1.n326" 0.241963
+resist "Out_1.n233" "Out_1.n232" 0.24283
+resist "Out_1.n264" "Out_1.n234" 0.24301
+resist "Out_1.n202" "Out_1.n201" 0.27
+resist "Out_1.n348" "Out_1.n347" 0.314869
+resist "Out_1.n23" "Out_1.n22" 0.314869
+resist "Out_1" "Out_1.n202" 0.341
+resist "Out_1.n328" "Out_1" 0.366
+resist "Out_1.n34" "Out_1.n33" 0.386493
+resist "Out_1.n356" "Out_1.n355" 0.386709
+resist "Out_1.n202" "Out_1.n40" 0.564
+resist "Out_1.n103" "Out_1.n97" 0.691213
+resist "Out_1.n167" "Out_1.n166" 0.706223
+resist "Out_1.n191" "Out_1.n40" 0.989
+resist "Out_1.n300" "Out_1.n299" 1.39949
+resist "Out_1.n262" "Out_1.n261" 1.40166
+resist "Out_1.n230" "Out_1.n229" 1.96072
+resist "Out_1.n292" "Out_1.n291" 1.96126
+resist "Out_1.n328" "Out_1.n296" 3.41
+resist "Out_1.n364" "Out_1.n351" 3.41
+resist "Out_1.n166" "Out_1.n62" 3.6969
+resist "Out_1.n98" "Out_1.n97" 3.69807
+resist "Out_1.n324" "Out_1.n323" 4.5
+resist "Out_1.n325" "Out_1.n324" 4.5
+resist "Out_1.n302" "Out_1.n299" 4.5
+resist "Out_1.n259" "Out_1.n235" 4.5
+resist "Out_1.n261" "Out_1.n260" 4.5
+resist "Out_1.n227" "Out_1.n203" 4.5
+resist "Out_1.n229" "Out_1.n228" 4.5
+resist "Out_1.n333" "Out_1.n332" 4.5
+resist "Out_1.n363" "Out_1.n362" 4.5
+resist "Out_1.n289" "Out_1.n265" 4.5
+resist "Out_1.n291" "Out_1.n290" 4.5
+resist "Out_1.n263" "Out_1.n235" 4.50068
+resist "Out_1.n231" "Out_1.n203" 4.50068
+resist "Out_1.n293" "Out_1.n265" 4.50068
+resist "Out_1.n362" "Out_1.n39" 4.51192
+resist "Out_1.n332" "Out_1.n38" 4.51217
+resist "Out_1.n192" "Out_1.n191" 4.65
+resist "Out_1.n190" "Out_1.n50" 4.65
+resist "Out_1.n189" "Out_1.n188" 4.65
+resist "Out_1.n52" "Out_1.n51" 4.65
+resist "Out_1.n184" "Out_1.n183" 4.65
+resist "Out_1.n182" "Out_1.n54" 4.65
+resist "Out_1.n181" "Out_1.n180" 4.65
+resist "Out_1.n56" "Out_1.n55" 4.65
+resist "Out_1.n176" "Out_1.n175" 4.65
+resist "Out_1.n174" "Out_1.n58" 4.65
+resist "Out_1.n173" "Out_1.n172" 4.65
+resist "Out_1.n60" "Out_1.n59" 4.65
+resist "Out_1.n168" "Out_1.n167" 4.65
+resist "Out_1.n163" "Out_1.n162" 4.65
+resist "Out_1.n47" "Out_1.n46" 4.65
+resist "Out_1.n127" "Out_1.n126" 4.65
+resist "Out_1.n86" "Out_1.n85" 4.65
+resist "Out_1.n132" "Out_1.n131" 4.65
+resist "Out_1.n81" "Out_1.n80" 4.65
+resist "Out_1.n139" "Out_1.n138" 4.65
+resist "Out_1.n78" "Out_1.n77" 4.65
+resist "Out_1.n144" "Out_1.n143" 4.65
+resist "Out_1.n73" "Out_1.n72" 4.65
+resist "Out_1.n151" "Out_1.n150" 4.65
+resist "Out_1.n70" "Out_1.n69" 4.65
+resist "Out_1.n156" "Out_1.n155" 4.65
+resist "Out_1.n65" "Out_1.n64" 4.65
+resist "Out_1.n196" "Out_1.n195" 4.65
+resist "Out_1.n162" "Out_1.n161" 4.65
+resist "Out_1.n197" "Out_1.n196" 4.65
+resist "Out_1.n46" "Out_1.n45" 4.65
+resist "Out_1.n126" "Out_1.n125" 4.65
+resist "Out_1.n85" "Out_1.n84" 4.65
+resist "Out_1.n133" "Out_1.n132" 4.65
+resist "Out_1.n82" "Out_1.n81" 4.65
+resist "Out_1.n138" "Out_1.n137" 4.65
+resist "Out_1.n77" "Out_1.n76" 4.65
+resist "Out_1.n145" "Out_1.n144" 4.65
+resist "Out_1.n74" "Out_1.n73" 4.65
+resist "Out_1.n150" "Out_1.n149" 4.65
+resist "Out_1.n69" "Out_1.n68" 4.65
+resist "Out_1.n157" "Out_1.n156" 4.65
+resist "Out_1.n66" "Out_1.n65" 4.65
+resist "Out_1.n201" "Out_1.n200" 4.65
+resist "Out_1.n42" "Out_1.n41" 4.65
+resist "Out_1.n122" "Out_1.n121" 4.65
+resist "Out_1.n120" "Out_1.n88" 4.65
+resist "Out_1.n119" "Out_1.n118" 4.65
+resist "Out_1.n90" "Out_1.n89" 4.65
+resist "Out_1.n114" "Out_1.n113" 4.65
+resist "Out_1.n112" "Out_1.n92" 4.65
+resist "Out_1.n111" "Out_1.n110" 4.65
+resist "Out_1.n94" "Out_1.n93" 4.65
+resist "Out_1.n106" "Out_1.n105" 4.65
+resist "Out_1.n104" "Out_1.n96" 4.65
+resist "Out_1.n103" "Out_1.n102" 4.65
+resist "Out_1.n297" "Out_1.t24" 8.7
+resist "Out_1.n297" "Out_1.t140" 8.7
+resist "Out_1.n326" "Out_1.t59" 8.7
+resist "Out_1.n326" "Out_1.t153" 8.7
+resist "Out_1.n303" "Out_1.t70" 8.7
+resist "Out_1.n303" "Out_1.t22" 8.7
+resist "Out_1.n305" "Out_1.t82" 8.7
+resist "Out_1.n305" "Out_1.t72" 8.7
+resist "Out_1.n307" "Out_1.t13" 8.7
+resist "Out_1.n307" "Out_1.t134" 8.7
+resist "Out_1.n309" "Out_1.t151" 8.7
+resist "Out_1.n309" "Out_1.t137" 8.7
+resist "Out_1.n311" "Out_1.t139" 8.7
+resist "Out_1.n311" "Out_1.t152" 8.7
+resist "Out_1.n313" "Out_1.t81" 8.7
+resist "Out_1.n313" "Out_1.t71" 8.7
+resist "Out_1.n315" "Out_1.t150" 8.7
+resist "Out_1.n315" "Out_1.t50" 8.7
+resist "Out_1.n317" "Out_1.t56" 8.7
+resist "Out_1.n317" "Out_1.t93" 8.7
+resist "Out_1.n319" "Out_1.t79" 8.7
+resist "Out_1.n319" "Out_1.t21" 8.7
+resist "Out_1.n321" "Out_1.t118" 8.7
+resist "Out_1.n321" "Out_1.t1" 8.7
+resist "Out_1.n236" "Out_1.t156" 8.7
+resist "Out_1.n236" "Out_1.t23" 8.7
+resist "Out_1.n234" "Out_1.t124" 8.7
+resist "Out_1.n234" "Out_1.t7" 8.7
+resist "Out_1.n257" "Out_1.t131" 8.7
+resist "Out_1.n257" "Out_1.t2" 8.7
+resist "Out_1.n255" "Out_1.t15" 8.7
+resist "Out_1.n255" "Out_1.t73" 8.7
+resist "Out_1.n253" "Out_1.t106" 8.7
+resist "Out_1.n253" "Out_1.t105" 8.7
+resist "Out_1.n251" "Out_1.t155" 8.7
+resist "Out_1.n251" "Out_1.t127" 8.7
+resist "Out_1.n249" "Out_1.t104" 8.7
+resist "Out_1.n249" "Out_1.t49" 8.7
+resist "Out_1.n247" "Out_1.t114" 8.7
+resist "Out_1.n247" "Out_1.t4" 8.7
+resist "Out_1.n245" "Out_1.t80" 8.7
+resist "Out_1.n245" "Out_1.t123" 8.7
+resist "Out_1.n243" "Out_1.t119" 8.7
+resist "Out_1.n243" "Out_1.t120" 8.7
+resist "Out_1.n241" "Out_1.t125" 8.7
+resist "Out_1.n241" "Out_1.t159" 8.7
+resist "Out_1.n239" "Out_1.t17" 8.7
+resist "Out_1.n239" "Out_1.t0" 8.7
+resist "Out_1.n204" "Out_1.t48" 8.7
+resist "Out_1.n204" "Out_1.t55" 8.7
+resist "Out_1.n232" "Out_1.t126" 8.7
+resist "Out_1.n232" "Out_1.t14" 8.7
+resist "Out_1.n207" "Out_1.t117" 8.7
+resist "Out_1.n207" "Out_1.t138" 8.7
+resist "Out_1.n209" "Out_1.t121" 8.7
+resist "Out_1.n209" "Out_1.t60" 8.7
+resist "Out_1.n211" "Out_1.t97" 8.7
+resist "Out_1.n211" "Out_1.t133" 8.7
+resist "Out_1.n213" "Out_1.t20" 8.7
+resist "Out_1.n213" "Out_1.t132" 8.7
+resist "Out_1.n215" "Out_1.t18" 8.7
+resist "Out_1.n215" "Out_1.t108" 8.7
+resist "Out_1.n217" "Out_1.t19" 8.7
+resist "Out_1.n217" "Out_1.t135" 8.7
+resist "Out_1.n219" "Out_1.t109" 8.7
+resist "Out_1.n219" "Out_1.t107" 8.7
+resist "Out_1.n221" "Out_1.t35" 8.7
+resist "Out_1.n221" "Out_1.t3" 8.7
+resist "Out_1.n223" "Out_1.t98" 8.7
+resist "Out_1.n223" "Out_1.t5" 8.7
+resist "Out_1.n225" "Out_1.t122" 8.7
+resist "Out_1.n225" "Out_1.t62" 8.7
+resist "Out_1.n266" "Out_1.t102" 8.7
+resist "Out_1.n266" "Out_1.t128" 8.7
+resist "Out_1.n269" "Out_1.t136" 8.7
+resist "Out_1.n269" "Out_1.t103" 8.7
+resist "Out_1.n271" "Out_1.t157" 8.7
+resist "Out_1.n271" "Out_1.t16" 8.7
+resist "Out_1.n273" "Out_1.t158" 8.7
+resist "Out_1.n273" "Out_1.t58" 8.7
+resist "Out_1.n275" "Out_1.t113" 8.7
+resist "Out_1.n275" "Out_1.t63" 8.7
+resist "Out_1.n277" "Out_1.t130" 8.7
+resist "Out_1.n277" "Out_1.t100" 8.7
+resist "Out_1.n279" "Out_1.t47" 8.7
+resist "Out_1.n279" "Out_1.t101" 8.7
+resist "Out_1.n281" "Out_1.t92" 8.7
+resist "Out_1.n281" "Out_1.t116" 8.7
+resist "Out_1.n283" "Out_1.t57" 8.7
+resist "Out_1.n283" "Out_1.t154" 8.7
+resist "Out_1.n285" "Out_1.t110" 8.7
+resist "Out_1.n285" "Out_1.t61" 8.7
+resist "Out_1.n287" "Out_1.t99" 8.7
+resist "Out_1.n287" "Out_1.t129" 8.7
+resist "Out_1.n294" "Out_1.t74" 8.7
+resist "Out_1.n294" "Out_1.t111" 8.7
+resist "Out_1.n50" "Out_1.n49" 8.76379
+resist "Out_1.n188" "Out_1.n187" 8.76379
+resist "Out_1.n186" "Out_1.n52" 8.76379
+resist "Out_1.n185" "Out_1.n184" 8.76379
+resist "Out_1.n54" "Out_1.n53" 8.76379
+resist "Out_1.n180" "Out_1.n179" 8.76379
+resist "Out_1.n178" "Out_1.n56" 8.76379
+resist "Out_1.n177" "Out_1.n176" 8.76379
+resist "Out_1.n58" "Out_1.n57" 8.76379
+resist "Out_1.n172" "Out_1.n171" 8.76379
+resist "Out_1.n170" "Out_1.n60" 8.76379
+resist "Out_1.n169" "Out_1.n168" 8.76379
+resist "Out_1.n62" "Out_1.n61" 8.76379
+resist "Out_1.n193" "Out_1.n192" 8.76379
+resist "Out_1.n164" "Out_1.n163" 8.76379
+resist "Out_1.n195" "Out_1.n194" 8.76379
+resist "Out_1.n48" "Out_1.n47" 8.76379
+resist "Out_1.n128" "Out_1.n127" 8.76379
+resist "Out_1.n129" "Out_1.n86" 8.76379
+resist "Out_1.n131" "Out_1.n130" 8.76379
+resist "Out_1.n80" "Out_1.n79" 8.76379
+resist "Out_1.n140" "Out_1.n139" 8.76379
+resist "Out_1.n141" "Out_1.n78" 8.76379
+resist "Out_1.n143" "Out_1.n142" 8.76379
+resist "Out_1.n72" "Out_1.n71" 8.76379
+resist "Out_1.n152" "Out_1.n151" 8.76379
+resist "Out_1.n153" "Out_1.n70" 8.76379
+resist "Out_1.n155" "Out_1.n154" 8.76379
+resist "Out_1.n64" "Out_1.n63" 8.76379
+resist "Out_1.n161" "Out_1.n160" 8.76379
+resist "Out_1.n45" "Out_1.n44" 8.76379
+resist "Out_1.n125" "Out_1.n124" 8.76379
+resist "Out_1.n84" "Out_1.n83" 8.76379
+resist "Out_1.n134" "Out_1.n133" 8.76379
+resist "Out_1.n135" "Out_1.n82" 8.76379
+resist "Out_1.n137" "Out_1.n136" 8.76379
+resist "Out_1.n76" "Out_1.n75" 8.76379
+resist "Out_1.n146" "Out_1.n145" 8.76379
+resist "Out_1.n147" "Out_1.n74" 8.76379
+resist "Out_1.n149" "Out_1.n148" 8.76379
+resist "Out_1.n68" "Out_1.n67" 8.76379
+resist "Out_1.n158" "Out_1.n157" 8.76379
+resist "Out_1.n159" "Out_1.n66" 8.76379
+resist "Out_1.n198" "Out_1.n197" 8.76379
+resist "Out_1.n200" "Out_1.n199" 8.76379
+resist "Out_1.n43" "Out_1.n42" 8.76379
+resist "Out_1.n123" "Out_1.n122" 8.76379
+resist "Out_1.n88" "Out_1.n87" 8.76379
+resist "Out_1.n118" "Out_1.n117" 8.76379
+resist "Out_1.n116" "Out_1.n90" 8.76379
+resist "Out_1.n115" "Out_1.n114" 8.76379
+resist "Out_1.n92" "Out_1.n91" 8.76379
+resist "Out_1.n110" "Out_1.n109" 8.76379
+resist "Out_1.n108" "Out_1.n94" 8.76379
+resist "Out_1.n107" "Out_1.n106" 8.76379
+resist "Out_1.n96" "Out_1.n95" 8.76379
+resist "Out_1.n102" "Out_1.n101" 8.76379
+resist "Out_1.n100" "Out_1.n98" 8.76379
+resist "Out_1.n208" "Out_1.t112" 9.08553
+resist "Out_1.n270" "Out_1.t115" 9.08553
+resist "Out_1.n304" "Out_1.t6" 9.0873
+resist "Out_1.n240" "Out_1.t34" 9.0873
+resist "Out_1.n99" "Out_1.n97" 12.6247
+resist "Out_1.n166" "Out_1.n165" 12.634
+resist "Out_1.n6" "Out_1.t8" 14.282
+resist "Out_1.n6" "Out_1.t149" 14.282
+resist "Out_1.n1" "Out_1.t148" 14.282
+resist "Out_1.n1" "Out_1.t146" 14.282
+resist "Out_1.n33" "Out_1.t76" 14.282
+resist "Out_1.n33" "Out_1.t144" 14.282
+resist "Out_1.n32" "Out_1.t67" 14.282
+resist "Out_1.n32" "Out_1.t90" 14.282
+resist "Out_1.n31" "Out_1.t65" 14.282
+resist "Out_1.n31" "Out_1.t64" 14.282
+resist "Out_1.n30" "Out_1.t141" 14.282
+resist "Out_1.n30" "Out_1.t31" 14.282
+resist "Out_1.n24" "Out_1.t42" 14.282
+resist "Out_1.n24" "Out_1.t37" 14.282
+resist "Out_1.n21" "Out_1.t25" 14.282
+resist "Out_1.n21" "Out_1.t40" 14.282
+resist "Out_1.n19" "Out_1.t29" 14.282
+resist "Out_1.n19" "Out_1.t87" 14.282
+resist "Out_1.n17" "Out_1.t147" 14.282
+resist "Out_1.n17" "Out_1.t94" 14.282
+resist "Out_1.n15" "Out_1.t30" 14.282
+resist "Out_1.n15" "Out_1.t10" 14.282
+resist "Out_1.n13" "Out_1.t38" 14.282
+resist "Out_1.n13" "Out_1.t96" 14.282
+resist "Out_1.n11" "Out_1.t83" 14.282
+resist "Out_1.n11" "Out_1.t26" 14.282
+resist "Out_1.n9" "Out_1.t91" 14.282
+resist "Out_1.n9" "Out_1.t142" 14.282
+resist "Out_1.n330" "Out_1.t41" 14.282
+resist "Out_1.n330" "Out_1.t89" 14.282
+resist "Out_1.n360" "Out_1.t68" 14.282
+resist "Out_1.n360" "Out_1.t33" 14.282
+resist "Out_1.n349" "Out_1.t44" 14.282
+resist "Out_1.n349" "Out_1.t54" 14.282
+resist "Out_1.n346" "Out_1.t85" 14.282
+resist "Out_1.n346" "Out_1.t36" 14.282
+resist "Out_1.n344" "Out_1.t69" 14.282
+resist "Out_1.n344" "Out_1.t12" 14.282
+resist "Out_1.n342" "Out_1.t39" 14.282
+resist "Out_1.n342" "Out_1.t32" 14.282
+resist "Out_1.n340" "Out_1.t45" 14.282
+resist "Out_1.n340" "Out_1.t43" 14.282
+resist "Out_1.n338" "Out_1.t52" 14.282
+resist "Out_1.n338" "Out_1.t53" 14.282
+resist "Out_1.n336" "Out_1.t77" 14.282
+resist "Out_1.n336" "Out_1.t66" 14.282
+resist "Out_1.n334" "Out_1.t27" 14.282
+resist "Out_1.n334" "Out_1.t143" 14.282
+resist "Out_1.n355" "Out_1.t145" 14.282
+resist "Out_1.n355" "Out_1.t51" 14.282
+resist "Out_1.n354" "Out_1.t9" 14.282
+resist "Out_1.n354" "Out_1.t28" 14.282
+resist "Out_1.n353" "Out_1.t95" 14.282
+resist "Out_1.n353" "Out_1.t78" 14.282
+resist "Out_1.n352" "Out_1.t75" 14.282
+resist "Out_1.n352" "Out_1.t86" 14.282
+resist "Out_1.n348" "Out_1.t88" 14.5226
+resist "Out_1.n23" "Out_1.t11" 14.5236
+resist "Out_1.n335" "Out_1.t84" 14.6676
+resist "Out_1.n10" "Out_1.t46" 14.6677
+resist "Out_1.n192" "Out_1.n50" 36.894
+resist "Out_1.n188" "Out_1.n50" 36.894
+resist "Out_1.n188" "Out_1.n52" 36.894
+resist "Out_1.n184" "Out_1.n52" 36.894
+resist "Out_1.n184" "Out_1.n54" 36.894
+resist "Out_1.n180" "Out_1.n54" 36.894
+resist "Out_1.n180" "Out_1.n56" 36.894
+resist "Out_1.n176" "Out_1.n56" 36.894
+resist "Out_1.n176" "Out_1.n58" 36.894
+resist "Out_1.n172" "Out_1.n58" 36.894
+resist "Out_1.n172" "Out_1.n60" 36.894
+resist "Out_1.n168" "Out_1.n60" 36.894
+resist "Out_1.n168" "Out_1.n62" 36.894
+resist "Out_1.n195" "Out_1.n47" 36.894
+resist "Out_1.n127" "Out_1.n47" 36.894
+resist "Out_1.n127" "Out_1.n86" 36.894
+resist "Out_1.n131" "Out_1.n86" 36.894
+resist "Out_1.n131" "Out_1.n80" 36.894
+resist "Out_1.n139" "Out_1.n80" 36.894
+resist "Out_1.n139" "Out_1.n78" 36.894
+resist "Out_1.n143" "Out_1.n78" 36.894
+resist "Out_1.n143" "Out_1.n72" 36.894
+resist "Out_1.n151" "Out_1.n72" 36.894
+resist "Out_1.n151" "Out_1.n70" 36.894
+resist "Out_1.n155" "Out_1.n70" 36.894
+resist "Out_1.n155" "Out_1.n64" 36.894
+resist "Out_1.n163" "Out_1.n64" 36.894
+resist "Out_1.n197" "Out_1.n45" 36.894
+resist "Out_1.n125" "Out_1.n45" 36.894
+resist "Out_1.n125" "Out_1.n84" 36.894
+resist "Out_1.n133" "Out_1.n84" 36.894
+resist "Out_1.n133" "Out_1.n82" 36.894
+resist "Out_1.n137" "Out_1.n82" 36.894
+resist "Out_1.n137" "Out_1.n76" 36.894
+resist "Out_1.n145" "Out_1.n76" 36.894
+resist "Out_1.n145" "Out_1.n74" 36.894
+resist "Out_1.n149" "Out_1.n74" 36.894
+resist "Out_1.n149" "Out_1.n68" 36.894
+resist "Out_1.n157" "Out_1.n68" 36.894
+resist "Out_1.n157" "Out_1.n66" 36.894
+resist "Out_1.n161" "Out_1.n66" 36.894
+resist "Out_1.n200" "Out_1.n42" 36.894
+resist "Out_1.n122" "Out_1.n42" 36.894
+resist "Out_1.n122" "Out_1.n88" 36.894
+resist "Out_1.n118" "Out_1.n88" 36.894
+resist "Out_1.n118" "Out_1.n90" 36.894
+resist "Out_1.n114" "Out_1.n90" 36.894
+resist "Out_1.n114" "Out_1.n92" 36.894
+resist "Out_1.n110" "Out_1.n92" 36.894
+resist "Out_1.n110" "Out_1.n94" 36.894
+resist "Out_1.n106" "Out_1.n94" 36.894
+resist "Out_1.n106" "Out_1.n96" 36.894
+resist "Out_1.n102" "Out_1.n96" 36.894
+resist "Out_1.n102" "Out_1.n98" 36.894
+resist "Out_1.n193" "Out_1.n49" 71.569
+resist "Out_1.n187" "Out_1.n49" 71.569
+resist "Out_1.n187" "Out_1.n186" 71.569
+resist "Out_1.n186" "Out_1.n185" 71.569
+resist "Out_1.n185" "Out_1.n53" 71.569
+resist "Out_1.n179" "Out_1.n53" 71.569
+resist "Out_1.n179" "Out_1.n178" 71.569
+resist "Out_1.n178" "Out_1.n177" 71.569
+resist "Out_1.n177" "Out_1.n57" 71.569
+resist "Out_1.n171" "Out_1.n57" 71.569
+resist "Out_1.n171" "Out_1.n170" 71.569
+resist "Out_1.n170" "Out_1.n169" 71.569
+resist "Out_1.n169" "Out_1.n61" 71.569
+resist "Out_1.n165" "Out_1.n61" 71.569
+resist "Out_1.n194" "Out_1.n48" 71.569
+resist "Out_1.n128" "Out_1.n48" 71.569
+resist "Out_1.n129" "Out_1.n128" 71.569
+resist "Out_1.n130" "Out_1.n129" 71.569
+resist "Out_1.n130" "Out_1.n79" 71.569
+resist "Out_1.n140" "Out_1.n79" 71.569
+resist "Out_1.n141" "Out_1.n140" 71.569
+resist "Out_1.n142" "Out_1.n141" 71.569
+resist "Out_1.n142" "Out_1.n71" 71.569
+resist "Out_1.n152" "Out_1.n71" 71.569
+resist "Out_1.n153" "Out_1.n152" 71.569
+resist "Out_1.n154" "Out_1.n153" 71.569
+resist "Out_1.n154" "Out_1.n63" 71.569
+resist "Out_1.n164" "Out_1.n63" 71.569
+resist "Out_1.n198" "Out_1.n44" 71.569
+resist "Out_1.n124" "Out_1.n44" 71.569
+resist "Out_1.n124" "Out_1.n83" 71.569
+resist "Out_1.n134" "Out_1.n83" 71.569
+resist "Out_1.n135" "Out_1.n134" 71.569
+resist "Out_1.n136" "Out_1.n135" 71.569
+resist "Out_1.n136" "Out_1.n75" 71.569
+resist "Out_1.n146" "Out_1.n75" 71.569
+resist "Out_1.n147" "Out_1.n146" 71.569
+resist "Out_1.n148" "Out_1.n147" 71.569
+resist "Out_1.n148" "Out_1.n67" 71.569
+resist "Out_1.n158" "Out_1.n67" 71.569
+resist "Out_1.n159" "Out_1.n158" 71.569
+resist "Out_1.n160" "Out_1.n159" 71.569
+resist "Out_1.n199" "Out_1.n43" 71.569
+resist "Out_1.n123" "Out_1.n43" 71.569
+resist "Out_1.n123" "Out_1.n87" 71.569
+resist "Out_1.n117" "Out_1.n87" 71.569
+resist "Out_1.n117" "Out_1.n116" 71.569
+resist "Out_1.n116" "Out_1.n115" 71.569
+resist "Out_1.n115" "Out_1.n91" 71.569
+resist "Out_1.n109" "Out_1.n91" 71.569
+resist "Out_1.n109" "Out_1.n108" 71.569
+resist "Out_1.n108" "Out_1.n107" 71.569
+resist "Out_1.n107" "Out_1.n95" 71.569
+resist "Out_1.n101" "Out_1.n95" 71.569
+resist "Out_1.n101" "Out_1.n100" 71.569
+resist "Out_1.n100" "Out_1.n99" 71.569
+resist "Out_1.t186" "Out_1.n193" 267.51
+resist "Out_1.n194" "Out_1.t186" 267.51
+resist "Out_1.t180" "Out_1.n198" 267.51
+resist "Out_1.n199" "Out_1.t180" 267.51
+resist "Out_1.n99" "Out_1.t170" 267.51
+resist "Out_1.n160" "Out_1.t170" 267.51
+resist "Out_1.n100" "Out_1.t160" 267.51
+resist "Out_1.n159" "Out_1.t160" 267.51
+resist "Out_1.n101" "Out_1.t179" 267.51
+resist "Out_1.n158" "Out_1.t179" 267.51
+resist "Out_1.n95" "Out_1.t168" 267.51
+resist "Out_1.t168" "Out_1.n67" 267.51
+resist "Out_1.n107" "Out_1.t188" 267.51
+resist "Out_1.n148" "Out_1.t188" 267.51
+resist "Out_1.n108" "Out_1.t177" 267.51
+resist "Out_1.n147" "Out_1.t177" 267.51
+resist "Out_1.n109" "Out_1.t167" 267.51
+resist "Out_1.n146" "Out_1.t167" 267.51
+resist "Out_1.n91" "Out_1.t185" 267.51
+resist "Out_1.t185" "Out_1.n75" 267.51
+resist "Out_1.n115" "Out_1.t176" 267.51
+resist "Out_1.n136" "Out_1.t176" 267.51
+resist "Out_1.n116" "Out_1.t164" 267.51
+resist "Out_1.n135" "Out_1.t164" 267.51
+resist "Out_1.n117" "Out_1.t162" 267.51
+resist "Out_1.n134" "Out_1.t162" 267.51
+resist "Out_1.n87" "Out_1.t183" 267.51
+resist "Out_1.t183" "Out_1.n83" 267.51
+resist "Out_1.t172" "Out_1.n123" 267.51
+resist "Out_1.n124" "Out_1.t172" 267.51
+resist "Out_1.t161" "Out_1.n43" 267.51
+resist "Out_1.n44" "Out_1.t161" 267.51
+resist "Out_1.n63" "Out_1.t189" 267.51
+resist "Out_1.t189" "Out_1.n61" 267.51
+resist "Out_1.n154" "Out_1.t181" 267.51
+resist "Out_1.n169" "Out_1.t181" 267.51
+resist "Out_1.n153" "Out_1.t174" 267.51
+resist "Out_1.n170" "Out_1.t174" 267.51
+resist "Out_1.n152" "Out_1.t173" 267.51
+resist "Out_1.n171" "Out_1.t173" 267.51
+resist "Out_1.n71" "Out_1.t163" 267.51
+resist "Out_1.t163" "Out_1.n57" 267.51
+resist "Out_1.n142" "Out_1.t184" 267.51
+resist "Out_1.n177" "Out_1.t184" 267.51
+resist "Out_1.n141" "Out_1.t178" 267.51
+resist "Out_1.n178" "Out_1.t178" 267.51
+resist "Out_1.n140" "Out_1.t171" 267.51
+resist "Out_1.n179" "Out_1.t171" 267.51
+resist "Out_1.n79" "Out_1.t169" 267.51
+resist "Out_1.t169" "Out_1.n53" 267.51
+resist "Out_1.n130" "Out_1.t182" 267.51
+resist "Out_1.n185" "Out_1.t182" 267.51
+resist "Out_1.n129" "Out_1.t175" 267.51
+resist "Out_1.n186" "Out_1.t175" 267.51
+resist "Out_1.n128" "Out_1.t165" 267.51
+resist "Out_1.n187" "Out_1.t165" 267.51
+resist "Out_1.t187" "Out_1.n48" 267.51
+resist "Out_1.n49" "Out_1.t187" 267.51
+resist "Out_1.t166" "Out_1.n164" 267.51
+resist "Out_1.n165" "Out_1.t166" 267.51
+rnode "Input.n0" 0 108.582 -1110 -788 0
+rnode "Input.n1" 0 33.1385 -1111 -821 0
+rnode "Input.n2" 0 85.8478 -914 -788 0
+rnode "Input.n3" 0 36.0233 -915 -821 0
+rnode "Input.n4" 0 37.115 -915 -821 0
+rnode "Input.t196" 0 98.9138 -718 -566 0
+rnode "Input.n5" 0 85.8478 -718 -788 0
+rnode "Input.n6" 0 36.0233 -719 -821 0
+rnode "Input.n7" 0 37.115 -719 -821 0
+rnode "Input.t150" 0 98.9138 -522 -566 0
+rnode "Input.n8" 0 85.8478 -522 -788 0
+rnode "Input.n9" 0 36.0233 -523 -821 0
+rnode "Input.n10" 0 37.115 -523 -821 0
+rnode "Input.t69" 0 98.9138 -326 -566 0
+rnode "Input.n11" 0 85.8478 -326 -788 0
+rnode "Input.n12" 0 36.0233 -327 -821 0
+rnode "Input.n13" 0 37.115 -327 -821 0
+rnode "Input.t136" 0 98.9138 -130 -566 0
+rnode "Input.n14" 0 85.8478 -130 -788 0
+rnode "Input.n15" 0 36.0233 -131 -821 0
+rnode "Input.n16" 0 37.115 -131 -821 0
+rnode "Input.t97" 0 98.9138 66 -566 0
+rnode "Input.n17" 0 85.8478 66 -788 0
+rnode "Input.n18" 0 36.0233 65 -821 0
+rnode "Input.n19" 0 37.115 65 -821 0
+rnode "Input.t78" 0 98.9138 262 -566 0
+rnode "Input.n20" 0 85.8478 262 -788 0
+rnode "Input.n21" 0 36.0233 261 -821 0
+rnode "Input.n22" 0 37.115 261 -821 0
+rnode "Input.t124" 0 98.9138 458 -566 0
+rnode "Input.n23" 0 85.8478 458 -788 0
+rnode "Input.n24" 0 36.0233 457 -821 0
+rnode "Input.n25" 0 37.115 457 -821 0
+rnode "Input.t214" 0 98.9138 654 -566 0
+rnode "Input.n26" 0 85.8478 654 -788 0
+rnode "Input.n27" 0 36.0233 653 -821 0
+rnode "Input.n28" 0 37.115 653 -821 0
+rnode "Input.t134" 0 98.9138 850 -566 0
+rnode "Input.n29" 0 85.8478 850 -788 0
+rnode "Input.n30" 0 36.0233 849 -821 0
+rnode "Input.n31" 0 37.115 849 -821 0
+rnode "Input.t181" 0 98.9138 1046 -566 0
+rnode "Input.n32" 0 85.8478 1046 -788 0
+rnode "Input.n33" 0 36.0233 1045 -821 0
+rnode "Input.n34" 0 37.115 1045 -821 0
+rnode "Input.t103" 0 99.1134 1242 -566 0
+rnode "Input.n35" 0 109.174 1241 -821 0
+rnode "Input.n36" 0 30.866 1241 -821 0
+rnode "Input.n37" 0 121.504 1144 -1439 0
+rnode "Input.n38" 0 37.115 1144 -1439 0
+rnode "Input.n39" 0 121.504 948 -1439 0
+rnode "Input.n40" 0 37.115 948 -1439 0
+rnode "Input.n41" 0 65.497 948 -1439 0
+rnode "Input.n42" 0 121.504 1046 -1439 0
+rnode "Input.n43" 0 37.115 1046 -1439 0
+rnode "Input.n44" 0 65.497 1046 -1439 0
+rnode "Input.n45" 0 65.497 1144 -1439 0
+rnode "Input.n46" 0 109.741 1242 -1406 0
+rnode "Input.n47" 0 31.0554 1242 -1439 0
+rnode "Input.n48" 0 336.034 1242 -1439 0
+rnode "Input.n49" 0 109.741 1242 -311 0
+rnode "Input.n50" 0 31.2447 1242 -311 0
+rnode "Input.n51" 0 85.8478 752 -344 0
+rnode "Input.n52" 0 36.0233 751 -311 0
+rnode "Input.n53" 0 37.115 751 -311 0
+rnode "Input.n54" 0 65.497 751 -311 0
+rnode "Input.n55" 0 121.136 850 -311 0
+rnode "Input.n56" 0 37.115 850 -311 0
+rnode "Input.n57" 0 65.497 850 -311 0
+rnode "Input.n58" 0 85.8478 948 -344 0
+rnode "Input.n59" 0 36.0233 947 -311 0
+rnode "Input.n60" 0 37.115 947 -311 0
+rnode "Input.n61" 0 65.497 947 -311 0
+rnode "Input.n62" 0 121.136 1046 -311 0
+rnode "Input.n63" 0 37.115 1046 -311 0
+rnode "Input.n64" 0 65.497 1046 -311 0
+rnode "Input.n65" 0 85.8478 1144 -344 0
+rnode "Input.n66" 0 36.0233 1143 -311 0
+rnode "Input.n67" 0 37.115 1143 -311 0
+rnode "Input.n68" 0 65.497 1143 -311 0
+rnode "Input.n69" 0 87.2776 1242 -311 0
+rnode "Input.t11" 0 73.517 1952 -1220 0
+rnode "Input.t0" 0 73.517 1886 -1220 0
+rnode "Input.n70" 0 380.003 1919 -1220 0
+rnode "Input.t45" 0 73.517 2144 -1220 0
+rnode "Input.t47" 0 73.517 2078 -1220 0
+rnode "Input.n71" 0 380.003 2111 -1220 0
+rnode "Input.t1" 0 73.517 2336 -1220 0
+rnode "Input.t55" 0 73.517 2270 -1220 0
+rnode "Input.n72" 0 380.003 2303 -1220 0
+rnode "Input.t48" 0 73.517 2528 -1220 0
+rnode "Input.t56" 0 73.517 2462 -1220 0
+rnode "Input.n73" 0 380.003 2495 -1220 0
+rnode "Input.t2" 0 73.517 2720 -1220 0
+rnode "Input.t4" 0 73.517 2654 -1220 0
+rnode "Input.n74" 0 538.149 2687 -1220 0
+rnode "Input.n75" 0 838.724 2473 -1106 0
+rnode "Input.n76" 0 557.807 2281 -1106 0
+rnode "Input.n77" 0 557.807 2089 -1106 0
+rnode "Input.n78" 0 480.2 1897 -1106 0
+rnode "Input.t46" 0 73.517 1760 -1220 0
+rnode "Input.t3" 0 73.517 1694 -1220 0
+rnode "Input.n79" 0 399.696 1727 -1220 0
+rnode "Input.n80" 0 2015.67 1727 -1026 0
+rnode "Input.t14" 0 1569.74 2746 558 0
+rnode "Input.t24" 0 1569.74 2648 558 0
+rnode "Input.t5" 0 2090.37 2550 558 0
+rnode "Input.n81" 0 2728.97 2387 249 0
+rnode "Input.n82" 0 995.125 2387 249 0
+rnode "Input.t37" 0 64.6059 2824 558 0
+rnode "Input.t15" 0 64.6059 2766 558 0
+rnode "Input.n83" 0 361.666 2795 558 0
+rnode "Input.t22" 0 64.6059 3020 558 0
+rnode "Input.t18" 0 64.6059 2962 558 0
+rnode "Input.n84" 0 361.666 2991 558 0
+rnode "Input.t41" 0 64.6059 3216 558 0
+rnode "Input.t51" 0 64.6059 3158 558 0
+rnode "Input.n85" 0 361.666 3187 558 0
+rnode "Input.t42" 0 64.6059 3412 558 0
+rnode "Input.t54" 0 64.6059 3354 558 0
+rnode "Input.n86" 0 361.666 3383 558 0
+rnode "Input.t28" 0 64.6059 3608 558 0
+rnode "Input.t26" 0 64.6059 3550 558 0
+rnode "Input.n87" 0 361.666 3579 558 0
+rnode "Input.t33" 0 64.6059 3804 558 0
+rnode "Input.t44" 0 64.6059 3746 558 0
+rnode "Input.n88" 0 361.666 3775 558 0
+rnode "Input.t31" 0 76.1236 3942 558 0
+rnode "Input.n89" 0 1059.44 3992 444 0
+rnode "Input.n90" 0 563.428 3796 444 0
+rnode "Input.n91" 0 565.183 3600 444 0
+rnode "Input.n92" 0 565.183 3404 444 0
+rnode "Input.n93" 0 565.183 3208 444 0
+rnode "Input.n94" 0 565.183 3012 444 0
+rnode "Input.n95" 0 509.259 2816 444 0
+rnode "Input.t34" 0 64.6059 2628 558 0
+rnode "Input.t6" 0 64.6059 2570 558 0
+rnode "Input.n96" 0 401.141 2599 558 0
+rnode "Input.n97" 0 557.988 2653 350 0
+rnode "Input.t50" 0 64.6059 2824 -60 0
+rnode "Input.t52" 0 64.6059 2766 -60 0
+rnode "Input.n98" 0 362.18 2795 -60 0
+rnode "Input.t29" 0 64.6059 3020 -60 0
+rnode "Input.t10" 0 64.6059 2962 -60 0
+rnode "Input.n99" 0 362.18 2991 -60 0
+rnode "Input.t43" 0 64.6059 3216 -60 0
+rnode "Input.t13" 0 64.6059 3158 -60 0
+rnode "Input.n100" 0 362.18 3187 -60 0
+rnode "Input.t20" 0 64.6059 3412 -60 0
+rnode "Input.t39" 0 64.6059 3354 -60 0
+rnode "Input.n101" 0 362.18 3383 -60 0
+rnode "Input.t49" 0 64.6059 3608 -60 0
+rnode "Input.t17" 0 64.6059 3550 -60 0
+rnode "Input.n102" 0 362.18 3579 -60 0
+rnode "Input.t35" 0 64.6059 3804 -60 0
+rnode "Input.t8" 0 64.6059 3746 -60 0
+rnode "Input.n103" 0 362.18 3775 -60 0
+rnode "Input.t53" 0 76.0915 3942 -60 0
+rnode "Input.n104" 0 226.68 4085 249 0
+rnode "Input.n105" 0 66.8448 4085 249 0
+rnode "Input.n106" 0 923.465 4085 -104 0
+rnode "Input.n107" 0 285.787 4085 -104 0
+rnode "Input.t7" 0 1569.74 3726 558 0
+rnode "Input.t32" 0 1569.74 3824 558 0
+rnode "Input.t30" 0 2090.32 3922 558 0
+rnode "Input.t27" 0 1569.74 3628 558 0
+rnode "Input.t16" 0 1569.74 3530 558 0
+rnode "Input.t19" 0 1569.74 3432 558 0
+rnode "Input.t38" 0 1569.74 3334 558 0
+rnode "Input.t36" 0 1569.74 2844 558 0
+rnode "Input.t9" 0 1569.74 2942 558 0
+rnode "Input.t21" 0 1569.74 3040 558 0
+rnode "Input.t12" 0 1569.74 3138 558 0
+rnode "Input.n108" 0 1518.91 3236 -417 0
+rnode "Input.n109" 0 504.938 3236 -417 0
+rnode "Input.t40" 0 1569.74 3236 915 0
+rnode "Input.n110" 0 507.646 3236 915 0
+rnode "Input.n111" 0 1568.19 3236 915 0
+rnode "Input.n112" 0 936.517 4085 588 0
+rnode "Input.n113" 0 288.381 4085 588 0
+rnode "Input.n114" 0 2154.39 4085 588 0
+rnode "Input.n115" 0 0 4085 588 0
+rnode "Input.n116" 0 66.8448 4085 235 0
+rnode "Input.n117" 0 572.902 4114 235 0
+rnode "Input.n118" 0 415.798 4114 235 0
+rnode "Input.n119" 0 1024.15 3949 54 0
+rnode "Input.n120" 0 565.828 3753 54 0
+rnode "Input.n121" 0 565.828 3557 54 0
+rnode "Input.n122" 0 565.828 3361 54 0
+rnode "Input.n123" 0 565.828 3165 54 0
+rnode "Input.n124" 0 565.828 2969 54 0
+rnode "Input.n125" 0 513.902 2773 54 0
+rnode "Input.t25" 0 64.6059 2628 -60 0
+rnode "Input.t23" 0 64.6059 2570 -60 0
+rnode "Input.n126" 0 399.139 2599 -60 0
+rnode "Input.n127" 0 540.132 2649 150 0
+rnode "Input.n128" 0 474.14 2564 240 0
+rnode "Input.n129" 0 1890.25 2244 240 0
+rnode "Input.n130" 0 2263.34 1804 240 0
+rnode "Input.n131" 0 822.291 1569 240 0
+rnode "Input.n132" 0 121.504 1144 5 0
+rnode "Input.n133" 0 37.115 1144 5 0
+rnode "Input.n134" 0 121.504 850 5 0
+rnode "Input.n135" 0 37.115 850 5 0
+rnode "Input.n136" 0 65.497 850 5 0
+rnode "Input.n137" 0 121.504 948 5 0
+rnode "Input.n138" 0 37.115 948 5 0
+rnode "Input.n139" 0 65.497 948 5 0
+rnode "Input.n140" 0 121.504 1046 5 0
+rnode "Input.n141" 0 37.115 1046 5 0
+rnode "Input.n142" 0 65.497 1046 5 0
+rnode "Input.n143" 0 65.497 1144 5 0
+rnode "Input.n144" 0 109.741 1242 38 0
+rnode "Input.n145" 0 31.0554 1242 5 0
+rnode "Input.n146" 0 73.1738 1242 5 0
+rnode "Input.n147" 0 475.604 1404 0 0
+rnode "Input.n148" 0 677.857 1404 -300 0
+rnode "Input.n149" 0 1396.31 1474 -800 0
+rnode "Input.t158" 0 98.9138 1242 -1184 0
+rnode "Input.n150" 0 109.741 1242 -929 0
+rnode "Input.n151" 0 31.0554 1242 -929 0
+rnode "Input.n152" 0 195.566 1242 -929 0
+rnode "Input.t66" 0 98.9138 1144 -566 0
+rnode "Input.n153" 0 121.136 1144 -821 0
+rnode "Input.n154" 0 37.115 1144 -821 0
+rnode "Input.t73" 0 98.9138 1144 -1184 0
+rnode "Input.n155" 0 121.504 1144 -929 0
+rnode "Input.n156" 0 37.115 1144 -929 0
+rnode "Input.n157" 0 175.94 1144 -929 0
+rnode "Input.t153" 0 98.9138 1046 -1184 0
+rnode "Input.n158" 0 121.504 1046 -929 0
+rnode "Input.n159" 0 37.115 1046 -929 0
+rnode "Input.n160" 0 177.744 1046 -929 0
+rnode "Input.t140" 0 98.9138 948 -566 0
+rnode "Input.n161" 0 121.136 948 -821 0
+rnode "Input.n162" 0 37.115 948 -821 0
+rnode "Input.t99" 0 98.9138 948 -1184 0
+rnode "Input.n163" 0 121.504 948 -929 0
+rnode "Input.n164" 0 37.115 948 -929 0
+rnode "Input.n165" 0 175.94 948 -929 0
+rnode "Input.t141" 0 98.9138 850 -1184 0
+rnode "Input.n166" 0 121.504 850 -929 0
+rnode "Input.n167" 0 37.115 850 -929 0
+rnode "Input.n168" 0 177.744 850 -929 0
+rnode "Input.t92" 0 98.9138 752 -566 0
+rnode "Input.n169" 0 121.136 752 -821 0
+rnode "Input.n170" 0 37.115 752 -821 0
+rnode "Input.t63" 0 98.9138 752 -1184 0
+rnode "Input.n171" 0 121.504 752 -929 0
+rnode "Input.n172" 0 37.115 752 -929 0
+rnode "Input.n173" 0 175.94 752 -929 0
+rnode "Input.t135" 0 98.9138 654 -1184 0
+rnode "Input.n174" 0 121.504 654 -929 0
+rnode "Input.n175" 0 37.115 654 -929 0
+rnode "Input.n176" 0 177.744 654 -929 0
+rnode "Input.t168" 0 98.9138 556 -566 0
+rnode "Input.n177" 0 121.136 556 -821 0
+rnode "Input.n178" 0 37.115 556 -821 0
+rnode "Input.t59" 0 98.9138 556 -1184 0
+rnode "Input.n179" 0 121.504 556 -929 0
+rnode "Input.n180" 0 37.115 556 -929 0
+rnode "Input.n181" 0 175.94 556 -929 0
+rnode "Input.t132" 0 98.9138 458 -1184 0
+rnode "Input.n182" 0 121.504 458 -929 0
+rnode "Input.n183" 0 37.115 458 -929 0
+rnode "Input.n184" 0 177.744 458 -929 0
+rnode "Input.t122" 0 98.9138 360 -566 0
+rnode "Input.n185" 0 121.136 360 -821 0
+rnode "Input.n186" 0 37.115 360 -821 0
+rnode "Input.t174" 0 98.9138 360 -1184 0
+rnode "Input.n187" 0 121.504 360 -929 0
+rnode "Input.n188" 0 37.115 360 -929 0
+rnode "Input.n189" 0 175.94 360 -929 0
+rnode "Input.t90" 0 98.9138 262 -1184 0
+rnode "Input.n190" 0 121.504 262 -929 0
+rnode "Input.n191" 0 37.115 262 -929 0
+rnode "Input.n192" 0 177.744 262 -929 0
+rnode "Input.t200" 0 98.9138 164 -566 0
+rnode "Input.n193" 0 121.136 164 -821 0
+rnode "Input.n194" 0 37.115 164 -821 0
+rnode "Input.t171" 0 98.9138 164 -1184 0
+rnode "Input.n195" 0 121.504 164 -929 0
+rnode "Input.n196" 0 37.115 164 -929 0
+rnode "Input.n197" 0 175.94 164 -929 0
+rnode "Input.t149" 0 98.9138 66 -1184 0
+rnode "Input.n198" 0 121.504 66 -929 0
+rnode "Input.n199" 0 37.115 66 -929 0
+rnode "Input.n200" 0 177.744 66 -929 0
+rnode "Input.t111" 0 98.9138 -32 -566 0
+rnode "Input.n201" 0 121.136 -32 -821 0
+rnode "Input.n202" 0 37.115 -32 -821 0
+rnode "Input.t177" 0 98.9138 -32 -1184 0
+rnode "Input.n203" 0 121.504 -32 -929 0
+rnode "Input.n204" 0 37.115 -32 -929 0
+rnode "Input.n205" 0 175.94 -32 -929 0
+rnode "Input.t87" 0 98.9138 -130 -1184 0
+rnode "Input.n206" 0 121.504 -130 -929 0
+rnode "Input.n207" 0 37.115 -130 -929 0
+rnode "Input.n208" 0 177.744 -130 -929 0
+rnode "Input.t188" 0 98.9138 -228 -566 0
+rnode "Input.n209" 0 121.136 -228 -821 0
+rnode "Input.n210" 0 37.115 -228 -821 0
+rnode "Input.t172" 0 98.9138 -228 -1184 0
+rnode "Input.n211" 0 121.504 -228 -929 0
+rnode "Input.n212" 0 37.115 -228 -929 0
+rnode "Input.n213" 0 175.94 -228 -929 0
+rnode "Input.t91" 0 98.9138 -326 -1184 0
+rnode "Input.n214" 0 121.504 -326 -929 0
+rnode "Input.n215" 0 37.115 -326 -929 0
+rnode "Input.n216" 0 177.744 -326 -929 0
+rnode "Input.t109" 0 98.9138 -424 -566 0
+rnode "Input.n217" 0 121.136 -424 -821 0
+rnode "Input.n218" 0 37.115 -424 -821 0
+rnode "Input.t176" 0 98.9138 -424 -1184 0
+rnode "Input.n219" 0 121.504 -424 -929 0
+rnode "Input.n220" 0 37.115 -424 -929 0
+rnode "Input.n221" 0 175.94 -424 -929 0
+rnode "Input.t94" 0 98.9138 -522 -1184 0
+rnode "Input.n222" 0 121.504 -522 -929 0
+rnode "Input.n223" 0 37.115 -522 -929 0
+rnode "Input.n224" 0 177.744 -522 -929 0
+rnode "Input.t151" 0 98.9138 -620 -566 0
+rnode "Input.n225" 0 121.136 -620 -821 0
+rnode "Input.n226" 0 37.115 -620 -821 0
+rnode "Input.t60" 0 98.9138 -620 -1184 0
+rnode "Input.n227" 0 121.504 -620 -929 0
+rnode "Input.n228" 0 37.115 -620 -929 0
+rnode "Input.n229" 0 175.94 -620 -929 0
+rnode "Input.t137" 0 98.9138 -718 -1184 0
+rnode "Input.n230" 0 121.504 -718 -929 0
+rnode "Input.n231" 0 37.115 -718 -929 0
+rnode "Input.n232" 0 177.744 -718 -929 0
+rnode "Input.t74" 0 98.9138 -816 -566 0
+rnode "Input.n233" 0 121.136 -816 -821 0
+rnode "Input.n234" 0 37.115 -816 -821 0
+rnode "Input.t64" 0 98.9138 -816 -1184 0
+rnode "Input.n235" 0 121.504 -816 -929 0
+rnode "Input.n236" 0 37.115 -816 -929 0
+rnode "Input.n237" 0 175.94 -816 -929 0
+rnode "Input.t143" 0 98.9138 -914 -1184 0
+rnode "Input.n238" 0 121.504 -914 -929 0
+rnode "Input.n239" 0 37.115 -914 -929 0
+rnode "Input.n240" 0 177.744 -914 -929 0
+rnode "Input.t173" 0 98.9138 -1012 -566 0
+rnode "Input.n241" 0 121.136 -1012 -821 0
+rnode "Input.n242" 0 37.115 -1012 -821 0
+rnode "Input.n243" 0 121.504 -1012 -929 0
+rnode "Input.n244" 0 37.115 -1012 -929 0
+rnode "Input.n245" 0 175.94 -1012 -929 0
+rnode "Input.n246" 0 109.741 -1110 -929 0
+rnode "Input.n247" 0 31.0554 -1110 -929 0
+rnode "Input.n248" 0 159.779 -1110 -929 0
+rnode "Input.n249" 0 121.136 654 -311 0
+rnode "Input.n250" 0 37.115 654 -311 0
+rnode "Input.n251" 0 65.497 654 -311 0
+rnode "Input.n252" 0 85.8478 556 -344 0
+rnode "Input.n253" 0 36.0233 555 -311 0
+rnode "Input.n254" 0 37.115 555 -311 0
+rnode "Input.n255" 0 65.497 555 -311 0
+rnode "Input.n256" 0 121.136 458 -311 0
+rnode "Input.n257" 0 37.115 458 -311 0
+rnode "Input.n258" 0 65.497 458 -311 0
+rnode "Input.n259" 0 85.8478 360 -344 0
+rnode "Input.n260" 0 36.0233 359 -311 0
+rnode "Input.n261" 0 37.115 359 -311 0
+rnode "Input.n262" 0 65.497 359 -311 0
+rnode "Input.n263" 0 121.136 262 -311 0
+rnode "Input.n264" 0 37.115 262 -311 0
+rnode "Input.n265" 0 65.497 262 -311 0
+rnode "Input.n266" 0 85.8478 164 -344 0
+rnode "Input.n267" 0 36.0233 163 -311 0
+rnode "Input.n268" 0 37.115 163 -311 0
+rnode "Input.n269" 0 65.497 163 -311 0
+rnode "Input.n270" 0 121.136 66 -311 0
+rnode "Input.n271" 0 37.115 66 -311 0
+rnode "Input.n272" 0 65.497 66 -311 0
+rnode "Input.n273" 0 85.8478 -32 -344 0
+rnode "Input.n274" 0 36.0233 -33 -311 0
+rnode "Input.n275" 0 37.115 -33 -311 0
+rnode "Input.n276" 0 65.497 -33 -311 0
+rnode "Input.n277" 0 121.136 -130 -311 0
+rnode "Input.n278" 0 37.115 -130 -311 0
+rnode "Input.n279" 0 65.497 -130 -311 0
+rnode "Input.n280" 0 85.8478 -228 -344 0
+rnode "Input.n281" 0 36.0233 -229 -311 0
+rnode "Input.n282" 0 37.115 -229 -311 0
+rnode "Input.n283" 0 65.497 -229 -311 0
+rnode "Input.n284" 0 121.136 -326 -311 0
+rnode "Input.n285" 0 37.115 -326 -311 0
+rnode "Input.n286" 0 65.497 -326 -311 0
+rnode "Input.n287" 0 85.8478 -424 -344 0
+rnode "Input.n288" 0 36.0233 -425 -311 0
+rnode "Input.n289" 0 37.115 -425 -311 0
+rnode "Input.n290" 0 65.497 -425 -311 0
+rnode "Input.n291" 0 121.136 -522 -311 0
+rnode "Input.n292" 0 37.115 -522 -311 0
+rnode "Input.n293" 0 65.497 -522 -311 0
+rnode "Input.n294" 0 85.8478 -620 -344 0
+rnode "Input.n295" 0 36.0233 -621 -311 0
+rnode "Input.n296" 0 37.115 -621 -311 0
+rnode "Input.n297" 0 65.497 -621 -311 0
+rnode "Input.n298" 0 121.136 -718 -311 0
+rnode "Input.n299" 0 37.115 -718 -311 0
+rnode "Input.n300" 0 65.497 -718 -311 0
+rnode "Input.n301" 0 85.8478 -816 -344 0
+rnode "Input.n302" 0 36.0233 -817 -311 0
+rnode "Input.n303" 0 37.115 -817 -311 0
+rnode "Input.n304" 0 65.497 -817 -311 0
+rnode "Input.t120" 0 98.9138 -914 -566 0
+rnode "Input.n305" 0 121.136 -914 -311 0
+rnode "Input.n306" 0 37.115 -914 -311 0
+rnode "Input.n307" 0 65.497 -914 -311 0
+rnode "Input.n308" 0 85.8478 -1012 -344 0
+rnode "Input.n309" 0 36.0233 -1013 -311 0
+rnode "Input.n310" 0 37.115 -1013 -311 0
+rnode "Input.n311" 0 65.497 -1013 -311 0
+rnode "Input.t175" 0 98.9138 -1110 -566 0
+rnode "Input.n312" 0 110.108 -1110 -344 0
+rnode "Input.n313" 0 31.2447 -1110 -311 0
+rnode "Input.n314" 0 66.9247 -1110 -311 0
+rnode "Input.n315" 0 121.504 752 5 0
+rnode "Input.n316" 0 37.115 752 5 0
+rnode "Input.n317" 0 65.497 752 5 0
+rnode "Input.n318" 0 121.504 654 5 0
+rnode "Input.n319" 0 37.115 654 5 0
+rnode "Input.n320" 0 65.497 654 5 0
+rnode "Input.n321" 0 121.504 556 5 0
+rnode "Input.n322" 0 37.115 556 5 0
+rnode "Input.n323" 0 65.497 556 5 0
+rnode "Input.n324" 0 121.504 458 5 0
+rnode "Input.n325" 0 37.115 458 5 0
+rnode "Input.n326" 0 65.497 458 5 0
+rnode "Input.n327" 0 121.504 360 5 0
+rnode "Input.n328" 0 37.115 360 5 0
+rnode "Input.n329" 0 65.497 360 5 0
+rnode "Input.n330" 0 121.504 262 5 0
+rnode "Input.n331" 0 37.115 262 5 0
+rnode "Input.n332" 0 65.497 262 5 0
+rnode "Input.n333" 0 121.504 164 5 0
+rnode "Input.n334" 0 37.115 164 5 0
+rnode "Input.n335" 0 65.497 164 5 0
+rnode "Input.n336" 0 121.504 66 5 0
+rnode "Input.n337" 0 37.115 66 5 0
+rnode "Input.n338" 0 65.497 66 5 0
+rnode "Input.n339" 0 121.504 -32 5 0
+rnode "Input.n340" 0 37.115 -32 5 0
+rnode "Input.n341" 0 65.497 -32 5 0
+rnode "Input.n342" 0 121.504 -130 5 0
+rnode "Input.n343" 0 37.115 -130 5 0
+rnode "Input.n344" 0 65.497 -130 5 0
+rnode "Input.n345" 0 121.504 -228 5 0
+rnode "Input.n346" 0 37.115 -228 5 0
+rnode "Input.n347" 0 65.497 -228 5 0
+rnode "Input.n348" 0 121.504 -326 5 0
+rnode "Input.n349" 0 37.115 -326 5 0
+rnode "Input.n350" 0 65.497 -326 5 0
+rnode "Input.t189" 0 98.9138 -424 260 0
+rnode "Input.n351" 0 121.504 -424 5 0
+rnode "Input.n352" 0 37.115 -424 5 0
+rnode "Input.n353" 0 65.497 -424 5 0
+rnode "Input.t154" 0 98.9138 -522 260 0
+rnode "Input.n354" 0 121.504 -522 5 0
+rnode "Input.n355" 0 37.115 -522 5 0
+rnode "Input.n356" 0 65.497 -522 5 0
+rnode "Input.t199" 0 98.9138 -620 260 0
+rnode "Input.n357" 0 121.504 -620 5 0
+rnode "Input.n358" 0 37.115 -620 5 0
+rnode "Input.n359" 0 65.497 -620 5 0
+rnode "Input.t167" 0 98.9138 -718 260 0
+rnode "Input.n360" 0 121.504 -718 5 0
+rnode "Input.n361" 0 37.115 -718 5 0
+rnode "Input.n362" 0 65.497 -718 5 0
+rnode "Input.t139" 0 98.9138 -816 260 0
+rnode "Input.n363" 0 121.504 -816 5 0
+rnode "Input.n364" 0 37.115 -816 5 0
+rnode "Input.n365" 0 65.497 -816 5 0
+rnode "Input.t113" 0 98.9138 -914 260 0
+rnode "Input.n366" 0 121.504 -914 5 0
+rnode "Input.n367" 0 37.115 -914 5 0
+rnode "Input.n368" 0 65.497 -914 5 0
+rnode "Input.t147" 0 98.9138 -1012 260 0
+rnode "Input.n369" 0 121.504 -1012 5 0
+rnode "Input.n370" 0 37.115 -1012 5 0
+rnode "Input.n371" 0 65.497 -1012 5 0
+rnode "Input.t193" 0 98.9138 -1110 260 0
+rnode "Input.n372" 0 109.741 -1110 5 0
+rnode "Input.n373" 0 31.0554 -1110 5 0
+rnode "Input.n374" 0 75.0129 -1110 5 0
+rnode "Input.n375" 0 108.582 -1110 656 0
+rnode "Input.n376" 0 33.1385 -1111 623 0
+rnode "Input.n377" 0 85.8478 -914 656 0
+rnode "Input.n378" 0 36.0233 -915 623 0
+rnode "Input.n379" 0 37.115 -915 623 0
+rnode "Input.n380" 0 85.8478 -718 656 0
+rnode "Input.n381" 0 36.0233 -719 623 0
+rnode "Input.n382" 0 37.115 -719 623 0
+rnode "Input.t93" 0 98.9138 -522 878 0
+rnode "Input.n383" 0 85.8478 -522 656 0
+rnode "Input.n384" 0 36.0233 -523 623 0
+rnode "Input.n385" 0 37.115 -523 623 0
+rnode "Input.t145" 0 98.9138 -326 878 0
+rnode "Input.n386" 0 85.8478 -326 656 0
+rnode "Input.n387" 0 36.0233 -327 623 0
+rnode "Input.n388" 0 37.115 -327 623 0
+rnode "Input.t195" 0 98.9138 -130 878 0
+rnode "Input.n389" 0 85.8478 -130 656 0
+rnode "Input.n390" 0 36.0233 -131 623 0
+rnode "Input.n391" 0 37.115 -131 623 0
+rnode "Input.t208" 0 98.9138 66 878 0
+rnode "Input.n392" 0 85.8478 66 656 0
+rnode "Input.n393" 0 36.0233 65 623 0
+rnode "Input.n394" 0 37.115 65 623 0
+rnode "Input.t95" 0 98.9138 262 878 0
+rnode "Input.n395" 0 85.8478 262 656 0
+rnode "Input.n396" 0 36.0233 261 623 0
+rnode "Input.n397" 0 37.115 261 623 0
+rnode "Input.t57" 0 98.9138 458 878 0
+rnode "Input.n398" 0 85.8478 458 656 0
+rnode "Input.n399" 0 36.0233 457 623 0
+rnode "Input.n400" 0 37.115 457 623 0
+rnode "Input.t164" 0 98.9138 654 878 0
+rnode "Input.n401" 0 85.8478 654 656 0
+rnode "Input.n402" 0 36.0233 653 623 0
+rnode "Input.n403" 0 37.115 653 623 0
+rnode "Input.t118" 0 98.9138 850 878 0
+rnode "Input.n404" 0 85.8478 850 656 0
+rnode "Input.n405" 0 36.0233 849 623 0
+rnode "Input.n406" 0 37.115 849 623 0
+rnode "Input.t83" 0 98.9138 1046 878 0
+rnode "Input.n407" 0 85.8478 1046 656 0
+rnode "Input.n408" 0 36.0233 1045 623 0
+rnode "Input.n409" 0 37.115 1045 623 0
+rnode "Input.t194" 0 99.1134 1242 878 0
+rnode "Input.n410" 0 109.174 1241 623 0
+rnode "Input.n411" 0 30.866 1241 623 0
+rnode "Input.n412" 0 109.741 1242 1133 0
+rnode "Input.n413" 0 31.2447 1242 1133 0
+rnode "Input.n414" 0 121.136 850 1133 0
+rnode "Input.n415" 0 37.115 850 1133 0
+rnode "Input.n416" 0 124.444 850 1133 0
+rnode "Input.n417" 0 85.8478 948 1100 0
+rnode "Input.n418" 0 36.0233 947 1133 0
+rnode "Input.n419" 0 37.115 947 1133 0
+rnode "Input.n420" 0 124.444 947 1133 0
+rnode "Input.n421" 0 121.136 1046 1133 0
+rnode "Input.n422" 0 37.115 1046 1133 0
+rnode "Input.n423" 0 124.444 1046 1133 0
+rnode "Input.n424" 0 85.8478 1144 1100 0
+rnode "Input.n425" 0 36.0233 1143 1133 0
+rnode "Input.n426" 0 37.115 1143 1133 0
+rnode "Input.n427" 0 124.444 1143 1133 0
+rnode "Input.n428" 0 591.587 1242 1133 0
+rnode "Input.n429" 0 1064.54 1474 640 0
+rnode "Input.t187" 0 98.9138 1242 260 0
+rnode "Input.n430" 0 109.741 1242 515 0
+rnode "Input.n431" 0 31.0554 1242 515 0
+rnode "Input.n432" 0 290.017 1242 515 0
+rnode "Input.t138" 0 98.9138 1144 878 0
+rnode "Input.n433" 0 121.136 1144 623 0
+rnode "Input.n434" 0 37.115 1144 623 0
+rnode "Input.t213" 0 98.9138 1144 260 0
+rnode "Input.n435" 0 121.504 1144 515 0
+rnode "Input.n436" 0 37.115 1144 515 0
+rnode "Input.n437" 0 175.94 1144 515 0
+rnode "Input.t77" 0 98.9138 1046 260 0
+rnode "Input.n438" 0 121.504 1046 515 0
+rnode "Input.n439" 0 37.115 1046 515 0
+rnode "Input.n440" 0 177.744 1046 515 0
+rnode "Input.t178" 0 98.9138 948 878 0
+rnode "Input.n441" 0 121.136 948 623 0
+rnode "Input.n442" 0 37.115 948 623 0
+rnode "Input.t125" 0 98.9138 948 260 0
+rnode "Input.n443" 0 121.504 948 515 0
+rnode "Input.n444" 0 37.115 948 515 0
+rnode "Input.n445" 0 175.94 948 515 0
+rnode "Input.t80" 0 98.9138 850 260 0
+rnode "Input.n446" 0 121.504 850 515 0
+rnode "Input.n447" 0 37.115 850 515 0
+rnode "Input.n448" 0 177.744 850 515 0
+rnode "Input.t61" 0 98.9138 752 878 0
+rnode "Input.n449" 0 121.136 752 623 0
+rnode "Input.n450" 0 37.115 752 623 0
+rnode "Input.t115" 0 98.9138 752 260 0
+rnode "Input.n451" 0 121.504 752 515 0
+rnode "Input.n452" 0 37.115 752 515 0
+rnode "Input.n453" 0 175.94 752 515 0
+rnode "Input.t142" 0 98.9138 654 260 0
+rnode "Input.n454" 0 121.504 654 515 0
+rnode "Input.n455" 0 37.115 654 515 0
+rnode "Input.n456" 0 177.744 654 515 0
+rnode "Input.t110" 0 98.9138 556 878 0
+rnode "Input.n457" 0 121.136 556 623 0
+rnode "Input.n458" 0 37.115 556 623 0
+rnode "Input.t169" 0 98.9138 556 260 0
+rnode "Input.n459" 0 121.504 556 515 0
+rnode "Input.n460" 0 37.115 556 515 0
+rnode "Input.n461" 0 175.94 556 515 0
+rnode "Input.t202" 0 98.9138 458 260 0
+rnode "Input.n462" 0 121.504 458 515 0
+rnode "Input.n463" 0 37.115 458 515 0
+rnode "Input.n464" 0 177.744 458 515 0
+rnode "Input.t152" 0 98.9138 360 878 0
+rnode "Input.n465" 0 121.136 360 623 0
+rnode "Input.n466" 0 37.115 360 623 0
+rnode "Input.t157" 0 98.9138 360 260 0
+rnode "Input.n467" 0 121.504 360 515 0
+rnode "Input.n468" 0 37.115 360 515 0
+rnode "Input.n469" 0 175.94 360 515 0
+rnode "Input.t190" 0 98.9138 262 260 0
+rnode "Input.n470" 0 121.504 262 515 0
+rnode "Input.n471" 0 37.115 262 515 0
+rnode "Input.n472" 0 177.744 262 515 0
+rnode "Input.t206" 0 98.9138 164 878 0
+rnode "Input.n473" 0 121.136 164 623 0
+rnode "Input.n474" 0 37.115 164 623 0
+rnode "Input.t58" 0 98.9138 164 260 0
+rnode "Input.n475" 0 121.504 164 515 0
+rnode "Input.n476" 0 37.115 164 515 0
+rnode "Input.n477" 0 175.94 164 515 0
+rnode "Input.t127" 0 98.9138 66 260 0
+rnode "Input.n478" 0 121.504 66 515 0
+rnode "Input.n479" 0 37.115 66 515 0
+rnode "Input.n480" 0 177.744 66 515 0
+rnode "Input.t108" 0 98.9138 -32 878 0
+rnode "Input.n481" 0 121.136 -32 623 0
+rnode "Input.n482" 0 37.115 -32 623 0
+rnode "Input.t102" 0 98.9138 -32 260 0
+rnode "Input.n483" 0 121.504 -32 515 0
+rnode "Input.n484" 0 37.115 -32 515 0
+rnode "Input.n485" 0 175.94 -32 515 0
+rnode "Input.t114" 0 98.9138 -130 260 0
+rnode "Input.n486" 0 121.504 -130 515 0
+rnode "Input.n487" 0 37.115 -130 515 0
+rnode "Input.n488" 0 177.744 -130 515 0
+rnode "Input.t86" 0 98.9138 -228 878 0
+rnode "Input.n489" 0 121.136 -228 623 0
+rnode "Input.n490" 0 37.115 -228 623 0
+rnode "Input.t79" 0 98.9138 -228 260 0
+rnode "Input.n491" 0 121.504 -228 515 0
+rnode "Input.n492" 0 37.115 -228 515 0
+rnode "Input.n493" 0 175.94 -228 515 0
+rnode "Input.t216" 0 98.9138 -326 260 0
+rnode "Input.n494" 0 121.504 -326 515 0
+rnode "Input.n495" 0 37.115 -326 515 0
+rnode "Input.n496" 0 177.744 -326 515 0
+rnode "Input.t203" 0 98.9138 -424 878 0
+rnode "Input.n497" 0 121.136 -424 623 0
+rnode "Input.n498" 0 37.115 -424 623 0
+rnode "Input.n499" 0 121.504 -424 515 0
+rnode "Input.n500" 0 37.115 -424 515 0
+rnode "Input.n501" 0 175.94 -424 515 0
+rnode "Input.n502" 0 121.504 -522 515 0
+rnode "Input.n503" 0 37.115 -522 515 0
+rnode "Input.n504" 0 177.744 -522 515 0
+rnode "Input.t159" 0 98.9138 -620 878 0
+rnode "Input.n505" 0 121.136 -620 623 0
+rnode "Input.n506" 0 37.115 -620 623 0
+rnode "Input.n507" 0 121.504 -620 515 0
+rnode "Input.n508" 0 37.115 -620 515 0
+rnode "Input.n509" 0 175.94 -620 515 0
+rnode "Input.n510" 0 121.504 -718 515 0
+rnode "Input.n511" 0 37.115 -718 515 0
+rnode "Input.n512" 0 177.744 -718 515 0
+rnode "Input.t107" 0 98.9138 -816 878 0
+rnode "Input.n513" 0 121.136 -816 623 0
+rnode "Input.n514" 0 37.115 -816 623 0
+rnode "Input.n515" 0 121.504 -816 515 0
+rnode "Input.n516" 0 37.115 -816 515 0
+rnode "Input.n517" 0 175.94 -816 515 0
+rnode "Input.n518" 0 121.504 -914 515 0
+rnode "Input.n519" 0 37.115 -914 515 0
+rnode "Input.n520" 0 177.744 -914 515 0
+rnode "Input.t209" 0 98.9138 -1012 878 0
+rnode "Input.n521" 0 121.136 -1012 623 0
+rnode "Input.n522" 0 37.115 -1012 623 0
+rnode "Input.n523" 0 121.504 -1012 515 0
+rnode "Input.n524" 0 37.115 -1012 515 0
+rnode "Input.n525" 0 175.94 -1012 515 0
+rnode "Input.n526" 0 109.741 -1110 515 0
+rnode "Input.n527" 0 31.0554 -1110 515 0
+rnode "Input.n528" 0 156.044 -1110 515 0
+rnode "Input.n529" 0 121.136 262 1133 0
+rnode "Input.n530" 0 37.115 262 1133 0
+rnode "Input.n531" 0 65.497 262 1133 0
+rnode "Input.n532" 0 85.8478 164 1100 0
+rnode "Input.n533" 0 36.0233 163 1133 0
+rnode "Input.n534" 0 37.115 163 1133 0
+rnode "Input.n535" 0 65.497 163 1133 0
+rnode "Input.n536" 0 121.136 66 1133 0
+rnode "Input.n537" 0 37.115 66 1133 0
+rnode "Input.n538" 0 65.497 66 1133 0
+rnode "Input.n539" 0 85.8478 -32 1100 0
+rnode "Input.n540" 0 36.0233 -33 1133 0
+rnode "Input.n541" 0 37.115 -33 1133 0
+rnode "Input.n542" 0 65.497 -33 1133 0
+rnode "Input.n543" 0 121.136 -130 1133 0
+rnode "Input.n544" 0 37.115 -130 1133 0
+rnode "Input.n545" 0 65.497 -130 1133 0
+rnode "Input.n546" 0 85.8478 -228 1100 0
+rnode "Input.n547" 0 36.0233 -229 1133 0
+rnode "Input.n548" 0 37.115 -229 1133 0
+rnode "Input.n549" 0 65.497 -229 1133 0
+rnode "Input.n550" 0 121.136 -326 1133 0
+rnode "Input.n551" 0 37.115 -326 1133 0
+rnode "Input.n552" 0 65.497 -326 1133 0
+rnode "Input.n553" 0 85.8478 -424 1100 0
+rnode "Input.n554" 0 36.0233 -425 1133 0
+rnode "Input.n555" 0 37.115 -425 1133 0
+rnode "Input.n556" 0 65.497 -425 1133 0
+rnode "Input.n557" 0 121.136 -522 1133 0
+rnode "Input.n558" 0 37.115 -522 1133 0
+rnode "Input.n559" 0 65.497 -522 1133 0
+rnode "Input.n560" 0 85.8478 -620 1100 0
+rnode "Input.n561" 0 36.0233 -621 1133 0
+rnode "Input.n562" 0 37.115 -621 1133 0
+rnode "Input.n563" 0 65.497 -621 1133 0
+rnode "Input.t215" 0 98.9138 -718 878 0
+rnode "Input.n564" 0 121.136 -718 1133 0
+rnode "Input.n565" 0 37.115 -718 1133 0
+rnode "Input.n566" 0 65.497 -718 1133 0
+rnode "Input.n567" 0 85.8478 -816 1100 0
+rnode "Input.n568" 0 36.0233 -817 1133 0
+rnode "Input.n569" 0 37.115 -817 1133 0
+rnode "Input.n570" 0 65.497 -817 1133 0
+rnode "Input.t162" 0 98.9138 -914 878 0
+rnode "Input.n571" 0 121.136 -914 1133 0
+rnode "Input.n572" 0 37.115 -914 1133 0
+rnode "Input.n573" 0 65.497 -914 1133 0
+rnode "Input.n574" 0 85.8478 -1012 1100 0
+rnode "Input.n575" 0 36.0233 -1013 1133 0
+rnode "Input.n576" 0 37.115 -1013 1133 0
+rnode "Input.n577" 0 65.497 -1013 1133 0
+rnode "Input.t106" 0 98.9138 -1110 878 0
+rnode "Input.n578" 0 110.108 -1110 1100 0
+rnode "Input.n579" 0 31.2447 -1110 1133 0
+rnode "Input.n580" 0 69.1345 -1110 1133 0
+rnode "Input.n581" 0 123.509 164 1445 0
+rnode "Input.n582" 0 37.115 164 1445 0
+rnode "Input.n583" 0 72.0467 164 1445 0
+rnode "Input.n584" 0 123.509 66 1445 0
+rnode "Input.n585" 0 37.115 66 1445 0
+rnode "Input.n586" 0 72.0467 66 1445 0
+rnode "Input.n587" 0 123.509 -32 1445 0
+rnode "Input.n588" 0 37.115 -32 1445 0
+rnode "Input.n589" 0 72.0467 -32 1445 0
+rnode "Input.n590" 0 123.509 -130 1445 0
+rnode "Input.n591" 0 37.115 -130 1445 0
+rnode "Input.n592" 0 72.0467 -130 1445 0
+rnode "Input.n593" 0 123.509 -228 1445 0
+rnode "Input.n594" 0 37.115 -228 1445 0
+rnode "Input.n595" 0 72.0467 -228 1445 0
+rnode "Input.n596" 0 123.509 -326 1445 0
+rnode "Input.n597" 0 37.115 -326 1445 0
+rnode "Input.n598" 0 72.0467 -326 1445 0
+rnode "Input.n599" 0 123.509 -424 1445 0
+rnode "Input.n600" 0 37.115 -424 1445 0
+rnode "Input.n601" 0 72.0467 -424 1445 0
+rnode "Input.n602" 0 123.509 -522 1445 0
+rnode "Input.n603" 0 37.115 -522 1445 0
+rnode "Input.n604" 0 72.0467 -522 1445 0
+rnode "Input.n605" 0 123.509 -620 1445 0
+rnode "Input.n606" 0 37.115 -620 1445 0
+rnode "Input.n607" 0 72.0467 -620 1445 0
+rnode "Input.n608" 0 123.509 -718 1445 0
+rnode "Input.n609" 0 37.115 -718 1445 0
+rnode "Input.n610" 0 72.0467 -718 1445 0
+rnode "Input.n611" 0 123.509 -816 1445 0
+rnode "Input.n612" 0 37.115 -816 1445 0
+rnode "Input.n613" 0 72.0467 -816 1445 0
+rnode "Input.n614" 0 123.509 -914 1445 0
+rnode "Input.n615" 0 37.115 -914 1445 0
+rnode "Input.n616" 0 72.0467 -914 1445 0
+rnode "Input.n617" 0 123.509 -1012 1445 0
+rnode "Input.n618" 0 37.115 -1012 1445 0
+rnode "Input.n619" 0 72.0467 -1012 1445 0
+rnode "Input.t104" 0 102.924 -1110 1709 0
+rnode "Input.n620" 0 111.746 -1110 1445 0
+rnode "Input.n621" 0 31.0554 -1110 1445 0
+rnode "Input.n622" 0 73.1719 -1110 1445 0
+rnode "Input.n623" 0 111.746 262 1445 0
+rnode "Input.n624" 0 31.0554 262 1445 0
+rnode "Input.n625" 0 101.815 262 1445 0
+rnode "Input.n626" 0 85.8478 752 1100 0
+rnode "Input.n627" 0 36.0233 751 1133 0
+rnode "Input.n628" 0 37.115 751 1133 0
+rnode "Input.n629" 0 124.444 751 1133 0
+rnode "Input.n630" 0 121.136 654 1133 0
+rnode "Input.n631" 0 37.115 654 1133 0
+rnode "Input.n632" 0 124.444 654 1133 0
+rnode "Input.n633" 0 85.8478 556 1100 0
+rnode "Input.n634" 0 36.0233 555 1133 0
+rnode "Input.n635" 0 37.115 555 1133 0
+rnode "Input.n636" 0 114.286 555 1133 0
+rnode "Input.n637" 0 85.8478 360 1100 0
+rnode "Input.n638" 0 36.0233 359 1133 0
+rnode "Input.n639" 0 37.115 359 1133 0
+rnode "Input.n640" 0 63.2342 359 1133 0
+rnode "Input.n641" 0 121.136 458 1133 0
+rnode "Input.n642" 0 37.115 458 1133 0
+rnode "Input.n643" 0 59.9403 458 1133 0
+rnode "Input.n644" 0 161.838 474 1220 0
+rnode "Input.n645" 0 121.923 2060 1478 0
+rnode "Input.n646" 0 123.509 1962 1445 0
+rnode "Input.n647" 0 37.115 1962 1445 0
+rnode "Input.n648" 0 59.0734 1962 1445 0
+rnode "Input.n649" 0 123.509 1864 1445 0
+rnode "Input.n650" 0 37.115 1864 1445 0
+rnode "Input.n651" 0 166.183 1864 1445 0
+rnode "Input.n652" 0 123.509 1766 1445 0
+rnode "Input.n653" 0 37.115 1766 1445 0
+rnode "Input.n654" 0 72.0467 1766 1445 0
+rnode "Input.n655" 0 123.509 1668 1445 0
+rnode "Input.n656" 0 37.115 1668 1445 0
+rnode "Input.n657" 0 72.0467 1668 1445 0
+rnode "Input.n658" 0 123.509 1570 1445 0
+rnode "Input.n659" 0 37.115 1570 1445 0
+rnode "Input.n660" 0 72.0467 1570 1445 0
+rnode "Input.n661" 0 123.509 1472 1445 0
+rnode "Input.n662" 0 37.115 1472 1445 0
+rnode "Input.n663" 0 72.0467 1472 1445 0
+rnode "Input.n664" 0 123.509 1374 1445 0
+rnode "Input.n665" 0 37.115 1374 1445 0
+rnode "Input.n666" 0 72.0467 1374 1445 0
+rnode "Input.n667" 0 123.509 1276 1445 0
+rnode "Input.n668" 0 37.115 1276 1445 0
+rnode "Input.n669" 0 72.0467 1276 1445 0
+rnode "Input.n670" 0 123.509 1178 1445 0
+rnode "Input.n671" 0 37.115 1178 1445 0
+rnode "Input.n672" 0 72.0467 1178 1445 0
+rnode "Input.n673" 0 123.509 1080 1445 0
+rnode "Input.n674" 0 37.115 1080 1445 0
+rnode "Input.n675" 0 72.0467 1080 1445 0
+rnode "Input.n676" 0 123.509 982 1445 0
+rnode "Input.n677" 0 37.115 982 1445 0
+rnode "Input.n678" 0 72.0467 982 1445 0
+rnode "Input.n679" 0 123.509 884 1445 0
+rnode "Input.n680" 0 37.115 884 1445 0
+rnode "Input.n681" 0 72.0467 884 1445 0
+rnode "Input.n682" 0 123.509 786 1445 0
+rnode "Input.n683" 0 37.115 786 1445 0
+rnode "Input.n684" 0 72.0467 786 1445 0
+rnode "Input.n685" 0 111.746 688 1445 0
+rnode "Input.n686" 0 31.0554 688 1445 0
+rnode "Input.n687" 0 103.049 688 1445 0
+rnode "Input.n688" 0 456.165 514 1445 0
+rnode "Input.t82" 0 102.924 2060 1709 0
+rnode "Input.n689" 0 111.746 2060 1973 0
+rnode "Input.n690" 0 31.0554 2060 1973 0
+rnode "Input.t186" 0 102.924 2060 2345 0
+rnode "Input.n691" 0 111.746 2060 2081 0
+rnode "Input.n692" 0 31.0554 2060 2081 0
+rnode "Input.n693" 0 138.101 2060 2081 0
+rnode "Input.t84" 0 102.924 1962 2345 0
+rnode "Input.n694" 0 123.509 1962 2081 0
+rnode "Input.n695" 0 37.115 1962 2081 0
+rnode "Input.t146" 0 102.924 1962 1709 0
+rnode "Input.n696" 0 123.509 1962 1973 0
+rnode "Input.n697" 0 37.115 1962 1973 0
+rnode "Input.n698" 0 189.941 1962 1973 0
+rnode "Input.t204" 0 102.924 1864 2345 0
+rnode "Input.n699" 0 123.509 1864 2081 0
+rnode "Input.n700" 0 37.115 1864 2081 0
+rnode "Input.t100" 0 102.924 1864 1709 0
+rnode "Input.n701" 0 123.509 1864 1973 0
+rnode "Input.n702" 0 37.115 1864 1973 0
+rnode "Input.n703" 0 189.941 1864 1973 0
+rnode "Input.t160" 0 102.924 1766 2345 0
+rnode "Input.n704" 0 123.509 1766 2081 0
+rnode "Input.n705" 0 37.115 1766 2081 0
+rnode "Input.t65" 0 102.924 1766 1709 0
+rnode "Input.n706" 0 123.509 1766 1973 0
+rnode "Input.n707" 0 37.115 1766 1973 0
+rnode "Input.n708" 0 189.941 1766 1973 0
+rnode "Input.t119" 0 102.924 1668 2345 0
+rnode "Input.n709" 0 123.509 1668 2081 0
+rnode "Input.n710" 0 37.115 1668 2081 0
+rnode "Input.t180" 0 102.924 1668 1709 0
+rnode "Input.n711" 0 123.509 1668 1973 0
+rnode "Input.n712" 0 37.115 1668 1973 0
+rnode "Input.n713" 0 189.941 1668 1973 0
+rnode "Input.t117" 0 102.924 1570 2345 0
+rnode "Input.n714" 0 123.509 1570 2081 0
+rnode "Input.n715" 0 37.115 1570 2081 0
+rnode "Input.t179" 0 102.924 1570 1709 0
+rnode "Input.n716" 0 123.509 1570 1973 0
+rnode "Input.n717" 0 37.115 1570 1973 0
+rnode "Input.n718" 0 189.941 1570 1973 0
+rnode "Input.t72" 0 102.924 1472 2345 0
+rnode "Input.n719" 0 123.509 1472 2081 0
+rnode "Input.n720" 0 37.115 1472 2081 0
+rnode "Input.t129" 0 102.924 1472 1709 0
+rnode "Input.n721" 0 123.509 1472 1973 0
+rnode "Input.n722" 0 37.115 1472 1973 0
+rnode "Input.n723" 0 189.941 1472 1973 0
+rnode "Input.t191" 0 102.924 1374 2345 0
+rnode "Input.n724" 0 123.509 1374 2081 0
+rnode "Input.n725" 0 37.115 1374 2081 0
+rnode "Input.t85" 0 102.924 1374 1709 0
+rnode "Input.n726" 0 123.509 1374 1973 0
+rnode "Input.n727" 0 37.115 1374 1973 0
+rnode "Input.n728" 0 189.941 1374 1973 0
+rnode "Input.t144" 0 102.924 1276 2345 0
+rnode "Input.n729" 0 123.509 1276 2081 0
+rnode "Input.n730" 0 37.115 1276 2081 0
+rnode "Input.t210" 0 102.924 1276 1709 0
+rnode "Input.n731" 0 123.509 1276 1973 0
+rnode "Input.n732" 0 37.115 1276 1973 0
+rnode "Input.n733" 0 189.941 1276 1973 0
+rnode "Input.t98" 0 102.924 1178 2345 0
+rnode "Input.n734" 0 123.509 1178 2081 0
+rnode "Input.n735" 0 37.115 1178 2081 0
+rnode "Input.t163" 0 102.924 1178 1709 0
+rnode "Input.n736" 0 123.509 1178 1973 0
+rnode "Input.n737" 0 37.115 1178 1973 0
+rnode "Input.n738" 0 189.941 1178 1973 0
+rnode "Input.t96" 0 102.924 1080 2345 0
+rnode "Input.n739" 0 123.509 1080 2081 0
+rnode "Input.n740" 0 37.115 1080 2081 0
+rnode "Input.t161" 0 102.924 1080 1709 0
+rnode "Input.n741" 0 123.509 1080 1973 0
+rnode "Input.n742" 0 37.115 1080 1973 0
+rnode "Input.n743" 0 189.941 1080 1973 0
+rnode "Input.t67" 0 102.924 982 2345 0
+rnode "Input.n744" 0 123.509 982 2081 0
+rnode "Input.n745" 0 37.115 982 2081 0
+rnode "Input.t121" 0 102.924 982 1709 0
+rnode "Input.n746" 0 123.509 982 1973 0
+rnode "Input.n747" 0 37.115 982 1973 0
+rnode "Input.n748" 0 189.941 982 1973 0
+rnode "Input.t182" 0 102.924 884 2345 0
+rnode "Input.n749" 0 123.509 884 2081 0
+rnode "Input.n750" 0 37.115 884 2081 0
+rnode "Input.t75" 0 102.924 884 1709 0
+rnode "Input.n751" 0 123.509 884 1973 0
+rnode "Input.n752" 0 37.115 884 1973 0
+rnode "Input.n753" 0 189.941 884 1973 0
+rnode "Input.t130" 0 102.924 786 2345 0
+rnode "Input.n754" 0 123.509 786 2081 0
+rnode "Input.n755" 0 37.115 786 2081 0
+rnode "Input.t197" 0 102.924 786 1709 0
+rnode "Input.n756" 0 123.509 786 1973 0
+rnode "Input.n757" 0 37.115 786 1973 0
+rnode "Input.n758" 0 189.941 786 1973 0
+rnode "Input.t155" 0 102.924 688 1709 0
+rnode "Input.n759" 0 111.746 688 1973 0
+rnode "Input.n760" 0 31.0554 688 1973 0
+rnode "Input.t88" 0 102.924 688 2345 0
+rnode "Input.n761" 0 111.746 688 2081 0
+rnode "Input.n762" 0 31.0554 688 2081 0
+rnode "Input.n763" 0 300.322 688 1973 0
+rnode "Input.n764" 0 123.509 1962 2609 0
+rnode "Input.n765" 0 37.115 1962 2609 0
+rnode "Input.n766" 0 121.924 2060 2609 0
+rnode "Input.n767" 0 59.059 2060 2609 0
+rnode "Input.n768" 0 123.509 1864 2609 0
+rnode "Input.n769" 0 37.115 1864 2609 0
+rnode "Input.n770" 0 166.196 1864 2609 0
+rnode "Input.n771" 0 123.509 1766 2609 0
+rnode "Input.n772" 0 37.115 1766 2609 0
+rnode "Input.n773" 0 72.0467 1766 2609 0
+rnode "Input.n774" 0 123.509 1668 2609 0
+rnode "Input.n775" 0 37.115 1668 2609 0
+rnode "Input.n776" 0 72.0467 1668 2609 0
+rnode "Input.n777" 0 123.509 1570 2609 0
+rnode "Input.n778" 0 37.115 1570 2609 0
+rnode "Input.n779" 0 72.0467 1570 2609 0
+rnode "Input.n780" 0 123.509 1472 2609 0
+rnode "Input.n781" 0 37.115 1472 2609 0
+rnode "Input.n782" 0 72.0467 1472 2609 0
+rnode "Input.n783" 0 123.509 1374 2609 0
+rnode "Input.n784" 0 37.115 1374 2609 0
+rnode "Input.n785" 0 72.0467 1374 2609 0
+rnode "Input.n786" 0 123.509 1276 2609 0
+rnode "Input.n787" 0 37.115 1276 2609 0
+rnode "Input.n788" 0 72.0467 1276 2609 0
+rnode "Input.n789" 0 123.509 1178 2609 0
+rnode "Input.n790" 0 37.115 1178 2609 0
+rnode "Input.n791" 0 72.0467 1178 2609 0
+rnode "Input.n792" 0 123.509 1080 2609 0
+rnode "Input.n793" 0 37.115 1080 2609 0
+rnode "Input.n794" 0 72.0467 1080 2609 0
+rnode "Input.n795" 0 123.509 982 2609 0
+rnode "Input.n796" 0 37.115 982 2609 0
+rnode "Input.n797" 0 72.0467 982 2609 0
+rnode "Input.n798" 0 123.509 884 2609 0
+rnode "Input.n799" 0 37.115 884 2609 0
+rnode "Input.n800" 0 72.0467 884 2609 0
+rnode "Input.n801" 0 123.509 786 2609 0
+rnode "Input.n802" 0 37.115 786 2609 0
+rnode "Input.n803" 0 72.0467 786 2609 0
+rnode "Input.n804" 0 111.746 688 2576 0
+rnode "Input.n805" 0 31.0554 688 2609 0
+rnode "Input.n806" 0 104.068 688 2609 0
+rnode "Input.n807" 0 111.746 262 2576 0
+rnode "Input.n808" 0 31.0554 262 2609 0
+rnode "Input.n809" 0 123.509 66 2609 0
+rnode "Input.n810" 0 37.115 66 2609 0
+rnode "Input.n811" 0 72.0467 66 2609 0
+rnode "Input.n812" 0 123.509 164 2609 0
+rnode "Input.n813" 0 37.115 164 2609 0
+rnode "Input.n814" 0 72.0467 164 2609 0
+rnode "Input.n815" 0 102.484 262 2609 0
+rnode "Input.n816" 0 391.209 434 2615 0
+rnode "Input.n817" 0 846.479 474 2110 0
+rnode "Input.t170" 0 102.924 262 1709 0
+rnode "Input.n818" 0 111.746 262 1973 0
+rnode "Input.n819" 0 31.0554 262 1973 0
+rnode "Input.t112" 0 102.924 262 2345 0
+rnode "Input.n820" 0 111.746 262 2081 0
+rnode "Input.n821" 0 31.0554 262 2081 0
+rnode "Input.n822" 0 298.321 262 1973 0
+rnode "Input.t70" 0 102.924 164 2345 0
+rnode "Input.n823" 0 123.509 164 2081 0
+rnode "Input.n824" 0 37.115 164 2081 0
+rnode "Input.t126" 0 102.924 164 1709 0
+rnode "Input.n825" 0 123.509 164 1940 0
+rnode "Input.n826" 0 37.115 164 1973 0
+rnode "Input.n827" 0 189.941 164 1973 0
+rnode "Input.t128" 0 102.924 66 2345 0
+rnode "Input.n828" 0 123.509 66 2081 0
+rnode "Input.n829" 0 37.115 66 2081 0
+rnode "Input.t192" 0 102.924 66 1709 0
+rnode "Input.n830" 0 123.509 66 1973 0
+rnode "Input.n831" 0 37.115 66 1973 0
+rnode "Input.n832" 0 189.941 66 1973 0
+rnode "Input.t133" 0 102.924 -32 2345 0
+rnode "Input.n833" 0 123.509 -32 2081 0
+rnode "Input.n834" 0 37.115 -32 2081 0
+rnode "Input.t201" 0 102.924 -32 1709 0
+rnode "Input.n835" 0 123.509 -32 1973 0
+rnode "Input.n836" 0 37.115 -32 1973 0
+rnode "Input.n837" 0 189.941 -32 1973 0
+rnode "Input.t165" 0 102.924 -130 2345 0
+rnode "Input.n838" 0 123.509 -130 2081 0
+rnode "Input.n839" 0 37.115 -130 2081 0
+rnode "Input.t71" 0 102.924 -130 1709 0
+rnode "Input.n840" 0 123.509 -130 1973 0
+rnode "Input.n841" 0 37.115 -130 1973 0
+rnode "Input.n842" 0 189.941 -130 1973 0
+rnode "Input.t211" 0 102.924 -228 2345 0
+rnode "Input.n843" 0 123.509 -228 2081 0
+rnode "Input.n844" 0 37.115 -228 2081 0
+rnode "Input.t116" 0 102.924 -228 1709 0
+rnode "Input.n845" 0 123.509 -228 1973 0
+rnode "Input.n846" 0 37.115 -228 1973 0
+rnode "Input.n847" 0 189.941 -228 1973 0
+rnode "Input.t89" 0 102.924 -326 2345 0
+rnode "Input.n848" 0 123.509 -326 2081 0
+rnode "Input.n849" 0 37.115 -326 2081 0
+rnode "Input.t156" 0 102.924 -326 1709 0
+rnode "Input.n850" 0 123.509 -326 1973 0
+rnode "Input.n851" 0 37.115 -326 1973 0
+rnode "Input.n852" 0 189.941 -326 1973 0
+rnode "Input.t131" 0 102.924 -424 2345 0
+rnode "Input.n853" 0 123.509 -424 2081 0
+rnode "Input.n854" 0 37.115 -424 2081 0
+rnode "Input.t198" 0 102.924 -424 1709 0
+rnode "Input.n855" 0 123.509 -424 1973 0
+rnode "Input.n856" 0 37.115 -424 1973 0
+rnode "Input.n857" 0 189.941 -424 1973 0
+rnode "Input.t183" 0 102.924 -522 2345 0
+rnode "Input.n858" 0 123.509 -522 2081 0
+rnode "Input.n859" 0 37.115 -522 2081 0
+rnode "Input.t76" 0 102.924 -522 1709 0
+rnode "Input.n860" 0 123.509 -522 1973 0
+rnode "Input.n861" 0 37.115 -522 1973 0
+rnode "Input.n862" 0 189.941 -522 1973 0
+rnode "Input.t185" 0 102.924 -620 2345 0
+rnode "Input.n863" 0 123.509 -620 2081 0
+rnode "Input.n864" 0 37.115 -620 2081 0
+rnode "Input.t81" 0 102.924 -620 1709 0
+rnode "Input.n865" 0 123.509 -620 1973 0
+rnode "Input.n866" 0 37.115 -620 1973 0
+rnode "Input.n867" 0 189.941 -620 1973 0
+rnode "Input.t68" 0 102.924 -718 2345 0
+rnode "Input.n868" 0 123.509 -718 2081 0
+rnode "Input.n869" 0 37.115 -718 2081 0
+rnode "Input.t123" 0 102.924 -718 1709 0
+rnode "Input.n870" 0 123.509 -718 1973 0
+rnode "Input.n871" 0 37.115 -718 1973 0
+rnode "Input.n872" 0 189.941 -718 1973 0
+rnode "Input.t105" 0 102.924 -816 2345 0
+rnode "Input.n873" 0 123.509 -816 2081 0
+rnode "Input.n874" 0 37.115 -816 2081 0
+rnode "Input.t166" 0 102.924 -816 1709 0
+rnode "Input.n875" 0 123.509 -816 1973 0
+rnode "Input.n876" 0 37.115 -816 1973 0
+rnode "Input.n877" 0 189.941 -816 1973 0
+rnode "Input.t148" 0 102.924 -914 2345 0
+rnode "Input.n878" 0 123.509 -914 2081 0
+rnode "Input.n879" 0 37.115 -914 2081 0
+rnode "Input.t212" 0 102.924 -914 1709 0
+rnode "Input.n880" 0 123.509 -914 1973 0
+rnode "Input.n881" 0 37.115 -914 1973 0
+rnode "Input.n882" 0 189.941 -914 1973 0
+rnode "Input.t205" 0 102.924 -1012 2345 0
+rnode "Input.n883" 0 123.509 -1012 2081 0
+rnode "Input.n884" 0 37.115 -1012 2081 0
+rnode "Input.t101" 0 102.924 -1012 1709 0
+rnode "Input.n885" 0 123.509 -1012 1973 0
+rnode "Input.n886" 0 37.115 -1012 1973 0
+rnode "Input.n887" 0 189.941 -1012 1973 0
+rnode "Input.t207" 0 102.924 -1110 2345 0
+rnode "Input.n888" 0 111.746 -1110 2081 0
+rnode "Input.n889" 0 31.0554 -1110 2081 0
+rnode "Input.n890" 0 111.746 -1110 1973 0
+rnode "Input.n891" 0 31.0554 -1110 1973 0
+rnode "Input.n892" 0 126.951 -1110 1973 0
+rnode "Input.n893" 0 123.509 -32 2609 0
+rnode "Input.n894" 0 37.115 -32 2609 0
+rnode "Input.n895" 0 72.0467 -32 2609 0
+rnode "Input.n896" 0 123.509 -130 2609 0
+rnode "Input.n897" 0 37.115 -130 2609 0
+rnode "Input.n898" 0 72.0467 -130 2609 0
+rnode "Input.n899" 0 123.509 -228 2609 0
+rnode "Input.n900" 0 37.115 -228 2609 0
+rnode "Input.n901" 0 72.0467 -228 2609 0
+rnode "Input.n902" 0 123.509 -326 2609 0
+rnode "Input.n903" 0 37.115 -326 2609 0
+rnode "Input.n904" 0 72.0467 -326 2609 0
+rnode "Input.n905" 0 123.509 -424 2609 0
+rnode "Input.n906" 0 37.115 -424 2609 0
+rnode "Input.n907" 0 72.0467 -424 2609 0
+rnode "Input.n908" 0 123.509 -522 2609 0
+rnode "Input.n909" 0 37.115 -522 2609 0
+rnode "Input.n910" 0 72.0467 -522 2609 0
+rnode "Input.n911" 0 123.509 -620 2609 0
+rnode "Input.n912" 0 37.115 -620 2609 0
+rnode "Input.n913" 0 72.0467 -620 2609 0
+rnode "Input.n914" 0 123.509 -718 2609 0
+rnode "Input.n915" 0 37.115 -718 2609 0
+rnode "Input.n916" 0 72.0467 -718 2609 0
+rnode "Input.n917" 0 123.509 -816 2609 0
+rnode "Input.n918" 0 37.115 -816 2609 0
+rnode "Input.n919" 0 72.0467 -816 2609 0
+rnode "Input.n920" 0 123.509 -914 2609 0
+rnode "Input.n921" 0 37.115 -914 2609 0
+rnode "Input.n922" 0 72.0467 -914 2609 0
+rnode "Input.n923" 0 123.509 -1012 2609 0
+rnode "Input.n924" 0 37.115 -1012 2609 0
+rnode "Input.n925" 0 72.0467 -1012 2609 0
+rnode "Input.n926" 0 111.746 -1110 2609 0
+rnode "Input.n927" 0 31.0554 -1110 2609 0
+rnode "Input.n928" 0 473.546 -1110 2609 0
+rnode "Input.n929" 0 1426.26 -1143 2025 0
+rnode "Input.n930" 0 774.587 -1236 1435 0
+rnode "Input.n931" 0 785.802 -1236 1145 0
+rnode "Input.n932" 0 1103.97 -1236 565 0
+rnode "Input.n933" 0 760.564 -1236 0 0
+rnode "Input.n934" 0 792.545 -1236 -295 0
+rnode "Input.n935" 0 749.315 -1236 -875 0
+rnode "Input.n936" 0 121.504 850 -1439 0
+rnode "Input.n937" 0 37.115 850 -1439 0
+rnode "Input.n938" 0 65.497 850 -1439 0
+rnode "Input.n939" 0 121.504 752 -1439 0
+rnode "Input.n940" 0 37.115 752 -1439 0
+rnode "Input.n941" 0 65.497 752 -1439 0
+rnode "Input.n942" 0 121.504 654 -1439 0
+rnode "Input.n943" 0 37.115 654 -1439 0
+rnode "Input.n944" 0 65.497 654 -1439 0
+rnode "Input.n945" 0 121.504 556 -1439 0
+rnode "Input.n946" 0 37.115 556 -1439 0
+rnode "Input.n947" 0 65.497 556 -1439 0
+rnode "Input.n948" 0 121.504 458 -1439 0
+rnode "Input.n949" 0 37.115 458 -1439 0
+rnode "Input.n950" 0 65.497 458 -1439 0
+rnode "Input.n951" 0 121.504 360 -1439 0
+rnode "Input.n952" 0 37.115 360 -1439 0
+rnode "Input.n953" 0 65.497 360 -1439 0
+rnode "Input.n954" 0 121.504 262 -1439 0
+rnode "Input.n955" 0 37.115 262 -1439 0
+rnode "Input.n956" 0 65.497 262 -1439 0
+rnode "Input.n957" 0 121.504 164 -1439 0
+rnode "Input.n958" 0 37.115 164 -1439 0
+rnode "Input.n959" 0 65.497 164 -1439 0
+rnode "Input.n960" 0 121.504 66 -1439 0
+rnode "Input.n961" 0 37.115 66 -1439 0
+rnode "Input.n962" 0 65.497 66 -1439 0
+rnode "Input.n963" 0 121.504 -32 -1439 0
+rnode "Input.n964" 0 37.115 -32 -1439 0
+rnode "Input.n965" 0 65.497 -32 -1439 0
+rnode "Input.n966" 0 121.504 -130 -1439 0
+rnode "Input.n967" 0 37.115 -130 -1439 0
+rnode "Input.n968" 0 65.497 -130 -1439 0
+rnode "Input.n969" 0 121.504 -228 -1439 0
+rnode "Input.n970" 0 37.115 -228 -1439 0
+rnode "Input.n971" 0 65.497 -228 -1439 0
+rnode "Input.n972" 0 121.504 -326 -1439 0
+rnode "Input.n973" 0 37.115 -326 -1439 0
+rnode "Input.n974" 0 65.497 -326 -1439 0
+rnode "Input.n975" 0 121.504 -424 -1439 0
+rnode "Input.n976" 0 37.115 -424 -1439 0
+rnode "Input.n977" 0 65.497 -424 -1439 0
+rnode "Input.n978" 0 121.504 -522 -1439 0
+rnode "Input.n979" 0 37.115 -522 -1439 0
+rnode "Input.n980" 0 65.497 -522 -1439 0
+rnode "Input.n981" 0 121.504 -620 -1439 0
+rnode "Input.n982" 0 37.115 -620 -1439 0
+rnode "Input.n983" 0 65.497 -620 -1439 0
+rnode "Input.n984" 0 121.504 -718 -1439 0
+rnode "Input.n985" 0 37.115 -718 -1439 0
+rnode "Input.n986" 0 65.497 -718 -1439 0
+rnode "Input.n987" 0 121.504 -816 -1439 0
+rnode "Input.n988" 0 37.115 -816 -1439 0
+rnode "Input.n989" 0 65.497 -816 -1439 0
+rnode "Input.n990" 0 121.504 -914 -1439 0
+rnode "Input.n991" 0 37.115 -914 -1439 0
+rnode "Input.n992" 0 65.497 -914 -1439 0
+rnode "Input.t62" 0 98.9138 -1012 -1184 0
+rnode "Input.n993" 0 121.504 -1012 -1439 0
+rnode "Input.n994" 0 37.115 -1012 -1439 0
+rnode "Input.n995" 0 65.497 -1012 -1439 0
+rnode "Input.t184" 0 98.9138 -1110 -1184 0
+rnode "Input.n996" 0 109.741 -1110 -1439 0
+rnode "Input.n997" 0 31.0554 -1110 -1439 0
+rnode "Input.n998" 0 150.55 -1110 -1439 0
+rnode "Input.n999" 0 1148.53 -1311 -1020 0
+rnode "Input" 0 240.601 -1840 -1240 0
+rnode "Input" 0 707.1 -1700 -1040 0
+resist "Input.n115" "Input.n114" 0.000500567
+resist "Input.n117" "Input.n116" 0.002
+resist "Input.n116" "Input.n115" 0.00249938
+resist "Input.n131" "Input.n130" 0.00446522
+resist "Input.t40" "Input.n109" 0.0085
+resist "Input.n109" "Input.n108" 0.0085
+resist "Input.n110" "Input.t40" 0.0085
+resist "Input.n111" "Input.n110" 0.0085
+resist "Input.n82" "Input.n81" 0.0115
+resist "Input.n118" "Input.n117" 0.0136903
+resist "Input.n644" "Input.n643" 0.017
+resist "Input.n105" "Input.n104" 0.023
+resist "Input.n929" "Input.n892" 0.023
+resist "Input.n115" "Input.n105" 0.0234929
+resist "Input.n114" "Input.n113" 0.058
+resist "Input.n113" "Input.n112" 0.058
+resist "Input.n114" "Input.n107" 0.062
+resist "Input.n107" "Input.n106" 0.062
+resist "Input.n128" "Input.n127" 0.066
+resist "Input.n763" "Input.n758" 0.07
+resist "Input.n758" "Input.n753" 0.07
+resist "Input.n753" "Input.n748" 0.07
+resist "Input.n748" "Input.n743" 0.07
+resist "Input.n743" "Input.n738" 0.07
+resist "Input.n738" "Input.n733" 0.07
+resist "Input.n733" "Input.n728" 0.07
+resist "Input.n728" "Input.n723" 0.07
+resist "Input.n723" "Input.n718" 0.07
+resist "Input.n718" "Input.n713" 0.07
+resist "Input.n713" "Input.n708" 0.07
+resist "Input.n708" "Input.n703" 0.07
+resist "Input.n703" "Input.n698" 0.07
+resist "Input.n698" "Input.n693" 0.07
+resist "Input.n892" "Input.n887" 0.07
+resist "Input.n887" "Input.n882" 0.07
+resist "Input.n882" "Input.n877" 0.07
+resist "Input.n877" "Input.n872" 0.07
+resist "Input.n872" "Input.n867" 0.07
+resist "Input.n867" "Input.n862" 0.07
+resist "Input.n862" "Input.n857" 0.07
+resist "Input.n857" "Input.n852" 0.07
+resist "Input.n852" "Input.n847" 0.07
+resist "Input.n847" "Input.n842" 0.07
+resist "Input.n842" "Input.n837" 0.07
+resist "Input.n837" "Input.n832" 0.07
+resist "Input.n832" "Input.n827" 0.07
+resist "Input.n827" "Input.n822" 0.07
+resist "Input" "Input" 0.072
+resist "Input.n525" "Input.n520" 0.074
+resist "Input.n517" "Input.n512" 0.074
+resist "Input.n509" "Input.n504" 0.074
+resist "Input.n501" "Input.n496" 0.074
+resist "Input.n493" "Input.n488" 0.074
+resist "Input.n485" "Input.n480" 0.074
+resist "Input.n477" "Input.n472" 0.074
+resist "Input.n469" "Input.n464" 0.074
+resist "Input.n461" "Input.n456" 0.074
+resist "Input.n453" "Input.n448" 0.074
+resist "Input.n445" "Input.n440" 0.074
+resist "Input.n437" "Input.n432" 0.074
+resist "Input.n245" "Input.n240" 0.074
+resist "Input.n237" "Input.n232" 0.074
+resist "Input.n229" "Input.n224" 0.074
+resist "Input.n221" "Input.n216" 0.074
+resist "Input.n213" "Input.n208" 0.074
+resist "Input.n205" "Input.n200" 0.074
+resist "Input.n197" "Input.n192" 0.074
+resist "Input.n189" "Input.n184" 0.074
+resist "Input.n181" "Input.n176" 0.074
+resist "Input.n173" "Input.n168" 0.074
+resist "Input.n165" "Input.n160" 0.074
+resist "Input.n157" "Input.n152" 0.074
+resist "Input.n528" "Input.n525" 0.075
+resist "Input.n520" "Input.n517" 0.075
+resist "Input.n512" "Input.n509" 0.075
+resist "Input.n504" "Input.n501" 0.075
+resist "Input.n496" "Input.n493" 0.075
+resist "Input.n488" "Input.n485" 0.075
+resist "Input.n480" "Input.n477" 0.075
+resist "Input.n472" "Input.n469" 0.075
+resist "Input.n464" "Input.n461" 0.075
+resist "Input.n456" "Input.n453" 0.075
+resist "Input.n448" "Input.n445" 0.075
+resist "Input.n440" "Input.n437" 0.075
+resist "Input.n248" "Input.n245" 0.075
+resist "Input.n240" "Input.n237" 0.075
+resist "Input.n232" "Input.n229" 0.075
+resist "Input.n224" "Input.n221" 0.075
+resist "Input.n216" "Input.n213" 0.075
+resist "Input.n208" "Input.n205" 0.075
+resist "Input.n200" "Input.n197" 0.075
+resist "Input.n192" "Input.n189" 0.075
+resist "Input.n184" "Input.n181" 0.075
+resist "Input.n176" "Input.n173" 0.075
+resist "Input.n168" "Input.n165" 0.075
+resist "Input.n160" "Input.n157" 0.075
+resist "Input.n128" "Input.n97" 0.08
+resist "Input.n80" "Input.n78" 0.0809211
+resist "Input.n644" "Input.n636" 0.088
+resist "Input.n97" "Input.n95" 0.0995419
+resist "Input.n127" "Input.n125" 0.102333
+resist "Input.n632" "Input.n629" 0.106
+resist "Input.n420" "Input.n416" 0.106
+resist "Input.n427" "Input.n423" 0.106
+resist "Input.n636" "Input.n632" 0.108
+resist "Input.n423" "Input.n420" 0.108
+resist "Input.n428" "Input.n427" 0.108
+resist "Input.n999" "Input.n935" 0.12
+resist "Input.n119" "Input.n118" 0.132618
+resist "Input.n76" "Input.n75" 0.134882
+resist "Input.n77" "Input.n76" 0.134882
+resist "Input.n78" "Input.n77" 0.134882
+resist "Input.n90" "Input.n89" 0.134889
+resist "Input.n125" "Input.n124" 0.137882
+resist "Input.n124" "Input.n123" 0.137882
+resist "Input.n123" "Input.n122" 0.137882
+resist "Input.n122" "Input.n121" 0.137882
+resist "Input.n121" "Input.n120" 0.137882
+resist "Input.n120" "Input.n119" 0.137882
+resist "Input.n95" "Input.n94" 0.137883
+resist "Input.n94" "Input.n93" 0.137883
+resist "Input.n93" "Input.n92" 0.137883
+resist "Input.n92" "Input.n91" 0.137883
+resist "Input.n91" "Input.n90" 0.137883
+resist "Input.n822" "Input.n817" 0.154
+resist "Input.n817" "Input.n763" 0.156
+resist "Input.n147" "Input.n131" 0.176
+resist "Input.n643" "Input.n640" 0.182
+resist "Input.n928" "Input.n925" 0.185
+resist "Input.n925" "Input.n922" 0.185
+resist "Input.n922" "Input.n919" 0.185
+resist "Input.n919" "Input.n916" 0.185
+resist "Input.n916" "Input.n913" 0.185
+resist "Input.n913" "Input.n910" 0.185
+resist "Input.n910" "Input.n907" 0.185
+resist "Input.n907" "Input.n904" 0.185
+resist "Input.n904" "Input.n901" 0.185
+resist "Input.n901" "Input.n898" 0.185
+resist "Input.n898" "Input.n895" 0.185
+resist "Input.n814" "Input.n811" 0.185
+resist "Input.n815" "Input.n814" 0.185
+resist "Input.n806" "Input.n803" 0.185
+resist "Input.n803" "Input.n800" 0.185
+resist "Input.n800" "Input.n797" 0.185
+resist "Input.n797" "Input.n794" 0.185
+resist "Input.n794" "Input.n791" 0.185
+resist "Input.n791" "Input.n788" 0.185
+resist "Input.n788" "Input.n785" 0.185
+resist "Input.n785" "Input.n782" 0.185
+resist "Input.n782" "Input.n779" 0.185
+resist "Input.n779" "Input.n776" 0.185
+resist "Input.n776" "Input.n773" 0.185
+resist "Input.n773" "Input.n770" 0.185
+resist "Input.n687" "Input.n684" 0.185
+resist "Input.n684" "Input.n681" 0.185
+resist "Input.n681" "Input.n678" 0.185
+resist "Input.n678" "Input.n675" 0.185
+resist "Input.n675" "Input.n672" 0.185
+resist "Input.n672" "Input.n669" 0.185
+resist "Input.n669" "Input.n666" 0.185
+resist "Input.n666" "Input.n663" 0.185
+resist "Input.n663" "Input.n660" 0.185
+resist "Input.n660" "Input.n657" 0.185
+resist "Input.n657" "Input.n654" 0.185
+resist "Input.n654" "Input.n651" 0.185
+resist "Input.n622" "Input.n619" 0.185
+resist "Input.n619" "Input.n616" 0.185
+resist "Input.n616" "Input.n613" 0.185
+resist "Input.n613" "Input.n610" 0.185
+resist "Input.n610" "Input.n607" 0.185
+resist "Input.n607" "Input.n604" 0.185
+resist "Input.n604" "Input.n601" 0.185
+resist "Input.n601" "Input.n598" 0.185
+resist "Input.n598" "Input.n595" 0.185
+resist "Input.n595" "Input.n592" 0.185
+resist "Input.n592" "Input.n589" 0.185
+resist "Input.n589" "Input.n586" 0.185
+resist "Input.n586" "Input.n583" 0.185
+resist "Input.n432" "Input.n429" 0.189
+resist "Input" "Input.n999" 0.202
+resist "Input.n580" "Input.n577" 0.202
+resist "Input.n573" "Input.n570" 0.202
+resist "Input.n566" "Input.n563" 0.202
+resist "Input.n559" "Input.n556" 0.202
+resist "Input.n552" "Input.n549" 0.202
+resist "Input.n545" "Input.n542" 0.202
+resist "Input.n538" "Input.n535" 0.202
+resist "Input.n314" "Input.n311" 0.202
+resist "Input.n307" "Input.n304" 0.202
+resist "Input.n300" "Input.n297" 0.202
+resist "Input.n293" "Input.n290" 0.202
+resist "Input.n286" "Input.n283" 0.202
+resist "Input.n279" "Input.n276" 0.202
+resist "Input.n272" "Input.n269" 0.202
+resist "Input.n265" "Input.n262" 0.202
+resist "Input.n258" "Input.n255" 0.202
+resist "Input.n61" "Input.n57" 0.202
+resist "Input.n68" "Input.n64" 0.202
+resist "Input.n374" "Input.n371" 0.204
+resist "Input.n371" "Input.n368" 0.204
+resist "Input.n368" "Input.n365" 0.204
+resist "Input.n365" "Input.n362" 0.204
+resist "Input.n362" "Input.n359" 0.204
+resist "Input.n359" "Input.n356" 0.204
+resist "Input.n356" "Input.n353" 0.204
+resist "Input.n353" "Input.n350" 0.204
+resist "Input.n350" "Input.n347" 0.204
+resist "Input.n347" "Input.n344" 0.204
+resist "Input.n344" "Input.n341" 0.204
+resist "Input.n341" "Input.n338" 0.204
+resist "Input.n338" "Input.n335" 0.204
+resist "Input.n335" "Input.n332" 0.204
+resist "Input.n332" "Input.n329" 0.204
+resist "Input.n329" "Input.n326" 0.204
+resist "Input.n326" "Input.n323" 0.204
+resist "Input.n323" "Input.n320" 0.204
+resist "Input.n320" "Input.n317" 0.204
+resist "Input.n139" "Input.n136" 0.204
+resist "Input.n142" "Input.n139" 0.204
+resist "Input.n143" "Input.n142" 0.204
+resist "Input.n146" "Input.n143" 0.204
+resist "Input.n998" "Input.n995" 0.204
+resist "Input.n995" "Input.n992" 0.204
+resist "Input.n992" "Input.n989" 0.204
+resist "Input.n989" "Input.n986" 0.204
+resist "Input.n986" "Input.n983" 0.204
+resist "Input.n983" "Input.n980" 0.204
+resist "Input.n980" "Input.n977" 0.204
+resist "Input.n977" "Input.n974" 0.204
+resist "Input.n974" "Input.n971" 0.204
+resist "Input.n971" "Input.n968" 0.204
+resist "Input.n968" "Input.n965" 0.204
+resist "Input.n965" "Input.n962" 0.204
+resist "Input.n962" "Input.n959" 0.204
+resist "Input.n959" "Input.n956" 0.204
+resist "Input.n956" "Input.n953" 0.204
+resist "Input.n953" "Input.n950" 0.204
+resist "Input.n950" "Input.n947" 0.204
+resist "Input.n947" "Input.n944" 0.204
+resist "Input.n944" "Input.n941" 0.204
+resist "Input.n941" "Input.n938" 0.204
+resist "Input.n44" "Input.n41" 0.204
+resist "Input.n45" "Input.n44" 0.204
+resist "Input.n48" "Input.n45" 0.204
+resist "Input.n577" "Input.n573" 0.206
+resist "Input.n570" "Input.n566" 0.206
+resist "Input.n563" "Input.n559" 0.206
+resist "Input.n556" "Input.n552" 0.206
+resist "Input.n549" "Input.n545" 0.206
+resist "Input.n542" "Input.n538" 0.206
+resist "Input.n535" "Input.n531" 0.206
+resist "Input.n311" "Input.n307" 0.206
+resist "Input.n304" "Input.n300" 0.206
+resist "Input.n297" "Input.n293" 0.206
+resist "Input.n290" "Input.n286" 0.206
+resist "Input.n283" "Input.n279" 0.206
+resist "Input.n276" "Input.n272" 0.206
+resist "Input.n269" "Input.n265" 0.206
+resist "Input.n262" "Input.n258" 0.206
+resist "Input.n255" "Input.n251" 0.206
+resist "Input.n57" "Input.n54" 0.206
+resist "Input.n64" "Input.n61" 0.206
+resist "Input.n69" "Input.n68" 0.206
+resist "Input.n78" "Input.n70" 0.240609
+resist "Input.n77" "Input.n71" 0.240609
+resist "Input.n76" "Input.n72" 0.240609
+resist "Input.n75" "Input.n73" 0.240609
+resist "Input.n120" "Input.n103" 0.240609
+resist "Input.n121" "Input.n102" 0.240609
+resist "Input.n122" "Input.n101" 0.240609
+resist "Input.n123" "Input.n100" 0.240609
+resist "Input.n124" "Input.n99" 0.240609
+resist "Input.n125" "Input.n98" 0.240609
+resist "Input.n931" "Input.n930" 0.241
+resist "Input.n90" "Input.n88" 0.241598
+resist "Input.n91" "Input.n87" 0.241598
+resist "Input.n92" "Input.n86" 0.241598
+resist "Input.n93" "Input.n85" 0.241598
+resist "Input.n94" "Input.n84" 0.241598
+resist "Input.n95" "Input.n83" 0.241598
+resist "Input.n934" "Input.n933" 0.245
+resist "Input.n129" "Input.n128" 0.25
+resist "Input.n80" "Input.n79" 0.255768
+resist "Input.n933" "Input.n374" 0.261
+resist "Input.n148" "Input.n147" 0.267
+resist "Input.n127" "Input.n126" 0.275214
+resist "Input.n97" "Input.n96" 0.278773
+resist "Input.n816" "Input.n815" 0.307
+resist "Input.n688" "Input.n625" 0.308
+resist "Input.n816" "Input.n806" 0.309
+resist "Input.n688" "Input.n687" 0.311
+resist "Input.n148" "Input.n69" 0.336
+resist "Input.n130" "Input.n129" 0.345483
+resist "Input.n688" "Input.n644" 0.351
+resist "Input.n931" "Input.n580" 0.358
+resist "Input.n75" "Input.n74" 0.375697
+resist "Input.n930" "Input.n622" 0.393
+resist "Input.n934" "Input.n314" 0.421
+resist "Input.n149" "Input.n148" 0.446
+resist "Input.n999" "Input.n998" 0.454
+resist "Input.n930" "Input.n929" 0.463
+resist "Input.n933" "Input.n932" 0.47
+resist "Input.n935" "Input.n248" 0.475
+resist "Input.n935" "Input.n934" 0.483
+resist "Input.n932" "Input.n931" 0.483
+resist "Input.n152" "Input.n149" 0.564
+resist "Input.n129" "Input.n82" 0.576
+resist "Input.n147" "Input.n146" 0.584
+resist "Input.n429" "Input.n428" 0.65
+resist "Input.n651" "Input.n648" 0.670261
+resist "Input.n770" "Input.n767" 0.670508
+resist "Input.n929" "Input.n928" 0.689
+resist "Input.n932" "Input.n528" 0.725
+resist "Input.n378" "Input.n377" 0.73
+resist "Input.n381" "Input.n380" 0.73
+resist "Input.n384" "Input.n383" 0.73
+resist "Input.n387" "Input.n386" 0.73
+resist "Input.n390" "Input.n389" 0.73
+resist "Input.n393" "Input.n392" 0.73
+resist "Input.n396" "Input.n395" 0.73
+resist "Input.n399" "Input.n398" 0.73
+resist "Input.n402" "Input.n401" 0.73
+resist "Input.n405" "Input.n404" 0.73
+resist "Input.n408" "Input.n407" 0.73
+resist "Input.n575" "Input.n574" 0.73
+resist "Input.n568" "Input.n567" 0.73
+resist "Input.n561" "Input.n560" 0.73
+resist "Input.n554" "Input.n553" 0.73
+resist "Input.n547" "Input.n546" 0.73
+resist "Input.n540" "Input.n539" 0.73
+resist "Input.n533" "Input.n532" 0.73
+resist "Input.n638" "Input.n637" 0.73
+resist "Input.n634" "Input.n633" 0.73
+resist "Input.n627" "Input.n626" 0.73
+resist "Input.n418" "Input.n417" 0.73
+resist "Input.n425" "Input.n424" 0.73
+resist "Input.n3" "Input.n2" 0.73
+resist "Input.n6" "Input.n5" 0.73
+resist "Input.n9" "Input.n8" 0.73
+resist "Input.n12" "Input.n11" 0.73
+resist "Input.n15" "Input.n14" 0.73
+resist "Input.n18" "Input.n17" 0.73
+resist "Input.n21" "Input.n20" 0.73
+resist "Input.n24" "Input.n23" 0.73
+resist "Input.n27" "Input.n26" 0.73
+resist "Input.n30" "Input.n29" 0.73
+resist "Input.n33" "Input.n32" 0.73
+resist "Input.n309" "Input.n308" 0.73
+resist "Input.n302" "Input.n301" 0.73
+resist "Input.n295" "Input.n294" 0.73
+resist "Input.n288" "Input.n287" 0.73
+resist "Input.n281" "Input.n280" 0.73
+resist "Input.n274" "Input.n273" 0.73
+resist "Input.n267" "Input.n266" 0.73
+resist "Input.n260" "Input.n259" 0.73
+resist "Input.n253" "Input.n252" 0.73
+resist "Input.n52" "Input.n51" 0.73
+resist "Input.n59" "Input.n58" 0.73
+resist "Input.n66" "Input.n65" 0.73
+resist "Input.n817" "Input.n688" 0.773
+resist "Input.n130" "Input.n80" 0.779744
+resist "Input.n817" "Input.n816" 0.789
+resist "Input.n149" "Input.n48" 0.818
+resist "Input.n648" "Input.n647" 3.69953
+resist "Input.n767" "Input.n765" 3.69958
+resist "Input.n928" "Input.n927" 4.65
+resist "Input.n925" "Input.n924" 4.65
+resist "Input.n922" "Input.n921" 4.65
+resist "Input.n919" "Input.n918" 4.65
+resist "Input.n916" "Input.n915" 4.65
+resist "Input.n913" "Input.n912" 4.65
+resist "Input.n910" "Input.n909" 4.65
+resist "Input.n907" "Input.n906" 4.65
+resist "Input.n904" "Input.n903" 4.65
+resist "Input.n901" "Input.n900" 4.65
+resist "Input.n898" "Input.n897" 4.65
+resist "Input.n895" "Input.n894" 4.65
+resist "Input.n811" "Input.n810" 4.65
+resist "Input.n814" "Input.n813" 4.65
+resist "Input.n815" "Input.n808" 4.65
+resist "Input.n693" "Input.n692" 4.65
+resist "Input.n758" "Input.n757" 4.65
+resist "Input.n753" "Input.n752" 4.65
+resist "Input.n748" "Input.n747" 4.65
+resist "Input.n743" "Input.n742" 4.65
+resist "Input.n738" "Input.n737" 4.65
+resist "Input.n733" "Input.n732" 4.65
+resist "Input.n728" "Input.n727" 4.65
+resist "Input.n723" "Input.n722" 4.65
+resist "Input.n718" "Input.n717" 4.65
+resist "Input.n713" "Input.n712" 4.65
+resist "Input.n708" "Input.n707" 4.65
+resist "Input.n703" "Input.n702" 4.65
+resist "Input.n698" "Input.n697" 4.65
+resist "Input.n693" "Input.n690" 4.65
+resist "Input.n763" "Input.n760" 4.65
+resist "Input.n763" "Input.n762" 4.65
+resist "Input.n758" "Input.n755" 4.65
+resist "Input.n753" "Input.n750" 4.65
+resist "Input.n748" "Input.n745" 4.65
+resist "Input.n743" "Input.n740" 4.65
+resist "Input.n738" "Input.n735" 4.65
+resist "Input.n733" "Input.n730" 4.65
+resist "Input.n728" "Input.n725" 4.65
+resist "Input.n723" "Input.n720" 4.65
+resist "Input.n718" "Input.n715" 4.65
+resist "Input.n713" "Input.n710" 4.65
+resist "Input.n708" "Input.n705" 4.65
+resist "Input.n703" "Input.n700" 4.65
+resist "Input.n698" "Input.n695" 4.65
+resist "Input.n806" "Input.n805" 4.65
+resist "Input.n803" "Input.n802" 4.65
+resist "Input.n800" "Input.n799" 4.65
+resist "Input.n797" "Input.n796" 4.65
+resist "Input.n794" "Input.n793" 4.65
+resist "Input.n791" "Input.n790" 4.65
+resist "Input.n788" "Input.n787" 4.65
+resist "Input.n785" "Input.n784" 4.65
+resist "Input.n782" "Input.n781" 4.65
+resist "Input.n779" "Input.n778" 4.65
+resist "Input.n776" "Input.n775" 4.65
+resist "Input.n773" "Input.n772" 4.65
+resist "Input.n770" "Input.n769" 4.65
+resist "Input.n684" "Input.n683" 4.65
+resist "Input.n681" "Input.n680" 4.65
+resist "Input.n678" "Input.n677" 4.65
+resist "Input.n675" "Input.n674" 4.65
+resist "Input.n672" "Input.n671" 4.65
+resist "Input.n669" "Input.n668" 4.65
+resist "Input.n666" "Input.n665" 4.65
+resist "Input.n663" "Input.n662" 4.65
+resist "Input.n660" "Input.n659" 4.65
+resist "Input.n657" "Input.n656" 4.65
+resist "Input.n654" "Input.n653" 4.65
+resist "Input.n651" "Input.n650" 4.65
+resist "Input.n687" "Input.n686" 4.65
+resist "Input.n643" "Input.n642" 4.65
+resist "Input.n636" "Input.n635" 4.65
+resist "Input.n632" "Input.n631" 4.65
+resist "Input.n629" "Input.n628" 4.65
+resist "Input.n416" "Input.n415" 4.65
+resist "Input.n420" "Input.n419" 4.65
+resist "Input.n423" "Input.n422" 4.65
+resist "Input.n427" "Input.n426" 4.65
+resist "Input.n428" "Input.n413" 4.65
+resist "Input.n525" "Input.n524" 4.65
+resist "Input.n520" "Input.n519" 4.65
+resist "Input.n517" "Input.n516" 4.65
+resist "Input.n512" "Input.n511" 4.65
+resist "Input.n509" "Input.n508" 4.65
+resist "Input.n504" "Input.n503" 4.65
+resist "Input.n501" "Input.n500" 4.65
+resist "Input.n496" "Input.n495" 4.65
+resist "Input.n493" "Input.n492" 4.65
+resist "Input.n488" "Input.n487" 4.65
+resist "Input.n485" "Input.n484" 4.65
+resist "Input.n480" "Input.n479" 4.65
+resist "Input.n477" "Input.n476" 4.65
+resist "Input.n472" "Input.n471" 4.65
+resist "Input.n469" "Input.n468" 4.65
+resist "Input.n464" "Input.n463" 4.65
+resist "Input.n461" "Input.n460" 4.65
+resist "Input.n456" "Input.n455" 4.65
+resist "Input.n453" "Input.n452" 4.65
+resist "Input.n448" "Input.n447" 4.65
+resist "Input.n445" "Input.n444" 4.65
+resist "Input.n440" "Input.n439" 4.65
+resist "Input.n437" "Input.n436" 4.65
+resist "Input.n432" "Input.n431" 4.65
+resist "Input.n528" "Input.n527" 4.65
+resist "Input.n528" "Input.n376" 4.65
+resist "Input.n525" "Input.n522" 4.65
+resist "Input.n520" "Input.n379" 4.65
+resist "Input.n517" "Input.n514" 4.65
+resist "Input.n512" "Input.n382" 4.65
+resist "Input.n509" "Input.n506" 4.65
+resist "Input.n504" "Input.n385" 4.65
+resist "Input.n501" "Input.n498" 4.65
+resist "Input.n496" "Input.n388" 4.65
+resist "Input.n493" "Input.n490" 4.65
+resist "Input.n488" "Input.n391" 4.65
+resist "Input.n485" "Input.n482" 4.65
+resist "Input.n480" "Input.n394" 4.65
+resist "Input.n477" "Input.n474" 4.65
+resist "Input.n472" "Input.n397" 4.65
+resist "Input.n469" "Input.n466" 4.65
+resist "Input.n464" "Input.n400" 4.65
+resist "Input.n461" "Input.n458" 4.65
+resist "Input.n456" "Input.n403" 4.65
+resist "Input.n453" "Input.n450" 4.65
+resist "Input.n448" "Input.n406" 4.65
+resist "Input.n445" "Input.n442" 4.65
+resist "Input.n440" "Input.n409" 4.65
+resist "Input.n437" "Input.n434" 4.65
+resist "Input.n432" "Input.n411" 4.65
+resist "Input.n577" "Input.n576" 4.65
+resist "Input.n573" "Input.n572" 4.65
+resist "Input.n570" "Input.n569" 4.65
+resist "Input.n566" "Input.n565" 4.65
+resist "Input.n563" "Input.n562" 4.65
+resist "Input.n559" "Input.n558" 4.65
+resist "Input.n556" "Input.n555" 4.65
+resist "Input.n552" "Input.n551" 4.65
+resist "Input.n549" "Input.n548" 4.65
+resist "Input.n545" "Input.n544" 4.65
+resist "Input.n542" "Input.n541" 4.65
+resist "Input.n538" "Input.n537" 4.65
+resist "Input.n535" "Input.n534" 4.65
+resist "Input.n531" "Input.n530" 4.65
+resist "Input.n640" "Input.n639" 4.65
+resist "Input.n580" "Input.n579" 4.65
+resist "Input.n146" "Input.n145" 4.65
+resist "Input.n371" "Input.n370" 4.65
+resist "Input.n368" "Input.n367" 4.65
+resist "Input.n365" "Input.n364" 4.65
+resist "Input.n362" "Input.n361" 4.65
+resist "Input.n359" "Input.n358" 4.65
+resist "Input.n356" "Input.n355" 4.65
+resist "Input.n353" "Input.n352" 4.65
+resist "Input.n350" "Input.n349" 4.65
+resist "Input.n347" "Input.n346" 4.65
+resist "Input.n344" "Input.n343" 4.65
+resist "Input.n341" "Input.n340" 4.65
+resist "Input.n338" "Input.n337" 4.65
+resist "Input.n335" "Input.n334" 4.65
+resist "Input.n332" "Input.n331" 4.65
+resist "Input.n329" "Input.n328" 4.65
+resist "Input.n326" "Input.n325" 4.65
+resist "Input.n323" "Input.n322" 4.65
+resist "Input.n320" "Input.n319" 4.65
+resist "Input.n317" "Input.n316" 4.65
+resist "Input.n136" "Input.n135" 4.65
+resist "Input.n139" "Input.n138" 4.65
+resist "Input.n142" "Input.n141" 4.65
+resist "Input.n143" "Input.n133" 4.65
+resist "Input.n374" "Input.n373" 4.65
+resist "Input.n245" "Input.n244" 4.65
+resist "Input.n240" "Input.n239" 4.65
+resist "Input.n237" "Input.n236" 4.65
+resist "Input.n232" "Input.n231" 4.65
+resist "Input.n229" "Input.n228" 4.65
+resist "Input.n224" "Input.n223" 4.65
+resist "Input.n221" "Input.n220" 4.65
+resist "Input.n216" "Input.n215" 4.65
+resist "Input.n213" "Input.n212" 4.65
+resist "Input.n208" "Input.n207" 4.65
+resist "Input.n205" "Input.n204" 4.65
+resist "Input.n200" "Input.n199" 4.65
+resist "Input.n197" "Input.n196" 4.65
+resist "Input.n192" "Input.n191" 4.65
+resist "Input.n189" "Input.n188" 4.65
+resist "Input.n184" "Input.n183" 4.65
+resist "Input.n181" "Input.n180" 4.65
+resist "Input.n176" "Input.n175" 4.65
+resist "Input.n173" "Input.n172" 4.65
+resist "Input.n168" "Input.n167" 4.65
+resist "Input.n165" "Input.n164" 4.65
+resist "Input.n160" "Input.n159" 4.65
+resist "Input.n157" "Input.n156" 4.65
+resist "Input.n152" "Input.n151" 4.65
+resist "Input.n248" "Input.n247" 4.65
+resist "Input.n152" "Input.n36" 4.65
+resist "Input.n245" "Input.n242" 4.65
+resist "Input.n240" "Input.n4" 4.65
+resist "Input.n237" "Input.n234" 4.65
+resist "Input.n232" "Input.n7" 4.65
+resist "Input.n229" "Input.n226" 4.65
+resist "Input.n224" "Input.n10" 4.65
+resist "Input.n221" "Input.n218" 4.65
+resist "Input.n216" "Input.n13" 4.65
+resist "Input.n213" "Input.n210" 4.65
+resist "Input.n208" "Input.n16" 4.65
+resist "Input.n205" "Input.n202" 4.65
+resist "Input.n200" "Input.n19" 4.65
+resist "Input.n197" "Input.n194" 4.65
+resist "Input.n192" "Input.n22" 4.65
+resist "Input.n189" "Input.n186" 4.65
+resist "Input.n184" "Input.n25" 4.65
+resist "Input.n181" "Input.n178" 4.65
+resist "Input.n176" "Input.n28" 4.65
+resist "Input.n173" "Input.n170" 4.65
+resist "Input.n168" "Input.n31" 4.65
+resist "Input.n165" "Input.n162" 4.65
+resist "Input.n160" "Input.n34" 4.65
+resist "Input.n157" "Input.n154" 4.65
+resist "Input.n248" "Input.n1" 4.65
+resist "Input.n311" "Input.n310" 4.65
+resist "Input.n307" "Input.n306" 4.65
+resist "Input.n304" "Input.n303" 4.65
+resist "Input.n300" "Input.n299" 4.65
+resist "Input.n297" "Input.n296" 4.65
+resist "Input.n293" "Input.n292" 4.65
+resist "Input.n290" "Input.n289" 4.65
+resist "Input.n286" "Input.n285" 4.65
+resist "Input.n283" "Input.n282" 4.65
+resist "Input.n279" "Input.n278" 4.65
+resist "Input.n276" "Input.n275" 4.65
+resist "Input.n272" "Input.n271" 4.65
+resist "Input.n269" "Input.n268" 4.65
+resist "Input.n265" "Input.n264" 4.65
+resist "Input.n262" "Input.n261" 4.65
+resist "Input.n258" "Input.n257" 4.65
+resist "Input.n255" "Input.n254" 4.65
+resist "Input.n251" "Input.n250" 4.65
+resist "Input.n54" "Input.n53" 4.65
+resist "Input.n57" "Input.n56" 4.65
+resist "Input.n61" "Input.n60" 4.65
+resist "Input.n64" "Input.n63" 4.65
+resist "Input.n68" "Input.n67" 4.65
+resist "Input.n69" "Input.n50" 4.65
+resist "Input.n314" "Input.n313" 4.65
+resist "Input.n48" "Input.n47" 4.65
+resist "Input.n995" "Input.n994" 4.65
+resist "Input.n992" "Input.n991" 4.65
+resist "Input.n989" "Input.n988" 4.65
+resist "Input.n986" "Input.n985" 4.65
+resist "Input.n983" "Input.n982" 4.65
+resist "Input.n980" "Input.n979" 4.65
+resist "Input.n977" "Input.n976" 4.65
+resist "Input.n974" "Input.n973" 4.65
+resist "Input.n971" "Input.n970" 4.65
+resist "Input.n968" "Input.n967" 4.65
+resist "Input.n965" "Input.n964" 4.65
+resist "Input.n962" "Input.n961" 4.65
+resist "Input.n959" "Input.n958" 4.65
+resist "Input.n956" "Input.n955" 4.65
+resist "Input.n953" "Input.n952" 4.65
+resist "Input.n950" "Input.n949" 4.65
+resist "Input.n947" "Input.n946" 4.65
+resist "Input.n944" "Input.n943" 4.65
+resist "Input.n941" "Input.n940" 4.65
+resist "Input.n938" "Input.n937" 4.65
+resist "Input.n41" "Input.n40" 4.65
+resist "Input.n44" "Input.n43" 4.65
+resist "Input.n45" "Input.n38" 4.65
+resist "Input.n998" "Input.n997" 4.65
+resist "Input.n625" "Input.n624" 4.65
+resist "Input.n619" "Input.n618" 4.65
+resist "Input.n616" "Input.n615" 4.65
+resist "Input.n613" "Input.n612" 4.65
+resist "Input.n610" "Input.n609" 4.65
+resist "Input.n607" "Input.n606" 4.65
+resist "Input.n604" "Input.n603" 4.65
+resist "Input.n601" "Input.n600" 4.65
+resist "Input.n598" "Input.n597" 4.65
+resist "Input.n595" "Input.n594" 4.65
+resist "Input.n592" "Input.n591" 4.65
+resist "Input.n589" "Input.n588" 4.65
+resist "Input.n586" "Input.n585" 4.65
+resist "Input.n583" "Input.n582" 4.65
+resist "Input.n622" "Input.n621" 4.65
+resist "Input.n887" "Input.n886" 4.65
+resist "Input.n882" "Input.n881" 4.65
+resist "Input.n877" "Input.n876" 4.65
+resist "Input.n872" "Input.n871" 4.65
+resist "Input.n867" "Input.n866" 4.65
+resist "Input.n862" "Input.n861" 4.65
+resist "Input.n857" "Input.n856" 4.65
+resist "Input.n852" "Input.n851" 4.65
+resist "Input.n847" "Input.n846" 4.65
+resist "Input.n842" "Input.n841" 4.65
+resist "Input.n837" "Input.n836" 4.65
+resist "Input.n832" "Input.n831" 4.65
+resist "Input.n827" "Input.n826" 4.65
+resist "Input.n822" "Input.n819" 4.65
+resist "Input.n892" "Input.n891" 4.65
+resist "Input.n892" "Input.n889" 4.65
+resist "Input.n887" "Input.n884" 4.65
+resist "Input.n882" "Input.n879" 4.65
+resist "Input.n877" "Input.n874" 4.65
+resist "Input.n872" "Input.n869" 4.65
+resist "Input.n867" "Input.n864" 4.65
+resist "Input.n862" "Input.n859" 4.65
+resist "Input.n857" "Input.n854" 4.65
+resist "Input.n852" "Input.n849" 4.65
+resist "Input.n847" "Input.n844" 4.65
+resist "Input.n842" "Input.n839" 4.65
+resist "Input.n837" "Input.n834" 4.65
+resist "Input.n832" "Input.n829" 4.65
+resist "Input.n827" "Input.n824" 4.65
+resist "Input.n822" "Input.n821" 4.65
+resist "Input.n88" "Input.t44" 8.7
+resist "Input.n88" "Input.t33" 8.7
+resist "Input.n87" "Input.t26" 8.7
+resist "Input.n87" "Input.t28" 8.7
+resist "Input.n86" "Input.t54" 8.7
+resist "Input.n86" "Input.t42" 8.7
+resist "Input.n85" "Input.t51" 8.7
+resist "Input.n85" "Input.t41" 8.7
+resist "Input.n84" "Input.t18" 8.7
+resist "Input.n84" "Input.t22" 8.7
+resist "Input.n83" "Input.t15" 8.7
+resist "Input.n83" "Input.t37" 8.7
+resist "Input.n96" "Input.t6" 8.7
+resist "Input.n96" "Input.t34" 8.7
+resist "Input.n103" "Input.t8" 8.7
+resist "Input.n103" "Input.t35" 8.7
+resist "Input.n102" "Input.t17" 8.7
+resist "Input.n102" "Input.t49" 8.7
+resist "Input.n101" "Input.t39" 8.7
+resist "Input.n101" "Input.t20" 8.7
+resist "Input.n100" "Input.t13" 8.7
+resist "Input.n100" "Input.t43" 8.7
+resist "Input.n99" "Input.t10" 8.7
+resist "Input.n99" "Input.t29" 8.7
+resist "Input.n98" "Input.t52" 8.7
+resist "Input.n98" "Input.t50" 8.7
+resist "Input.n126" "Input.t23" 8.7
+resist "Input.n126" "Input.t25" 8.7
+resist "Input.n927" "Input.n926" 8.76379
+resist "Input.n924" "Input.n923" 8.76379
+resist "Input.n921" "Input.n920" 8.76379
+resist "Input.n918" "Input.n917" 8.76379
+resist "Input.n915" "Input.n914" 8.76379
+resist "Input.n912" "Input.n911" 8.76379
+resist "Input.n909" "Input.n908" 8.76379
+resist "Input.n906" "Input.n905" 8.76379
+resist "Input.n903" "Input.n902" 8.76379
+resist "Input.n900" "Input.n899" 8.76379
+resist "Input.n897" "Input.n896" 8.76379
+resist "Input.n894" "Input.n893" 8.76379
+resist "Input.n810" "Input.n809" 8.76379
+resist "Input.n813" "Input.n812" 8.76379
+resist "Input.n692" "Input.n691" 8.76379
+resist "Input.n757" "Input.n756" 8.76379
+resist "Input.n752" "Input.n751" 8.76379
+resist "Input.n747" "Input.n746" 8.76379
+resist "Input.n742" "Input.n741" 8.76379
+resist "Input.n737" "Input.n736" 8.76379
+resist "Input.n732" "Input.n731" 8.76379
+resist "Input.n727" "Input.n726" 8.76379
+resist "Input.n722" "Input.n721" 8.76379
+resist "Input.n717" "Input.n716" 8.76379
+resist "Input.n712" "Input.n711" 8.76379
+resist "Input.n707" "Input.n706" 8.76379
+resist "Input.n702" "Input.n701" 8.76379
+resist "Input.n697" "Input.n696" 8.76379
+resist "Input.n755" "Input.n754" 8.76379
+resist "Input.n750" "Input.n749" 8.76379
+resist "Input.n745" "Input.n744" 8.76379
+resist "Input.n740" "Input.n739" 8.76379
+resist "Input.n735" "Input.n734" 8.76379
+resist "Input.n730" "Input.n729" 8.76379
+resist "Input.n725" "Input.n724" 8.76379
+resist "Input.n720" "Input.n719" 8.76379
+resist "Input.n715" "Input.n714" 8.76379
+resist "Input.n710" "Input.n709" 8.76379
+resist "Input.n705" "Input.n704" 8.76379
+resist "Input.n700" "Input.n699" 8.76379
+resist "Input.n695" "Input.n694" 8.76379
+resist "Input.n762" "Input.n761" 8.76379
+resist "Input.n805" "Input.n804" 8.76379
+resist "Input.n802" "Input.n801" 8.76379
+resist "Input.n799" "Input.n798" 8.76379
+resist "Input.n796" "Input.n795" 8.76379
+resist "Input.n793" "Input.n792" 8.76379
+resist "Input.n790" "Input.n789" 8.76379
+resist "Input.n787" "Input.n786" 8.76379
+resist "Input.n784" "Input.n783" 8.76379
+resist "Input.n781" "Input.n780" 8.76379
+resist "Input.n778" "Input.n777" 8.76379
+resist "Input.n775" "Input.n774" 8.76379
+resist "Input.n772" "Input.n771" 8.76379
+resist "Input.n769" "Input.n768" 8.76379
+resist "Input.n765" "Input.n764" 8.76379
+resist "Input.n760" "Input.n759" 8.76379
+resist "Input.n690" "Input.n689" 8.76379
+resist "Input.n686" "Input.n685" 8.76379
+resist "Input.n683" "Input.n682" 8.76379
+resist "Input.n680" "Input.n679" 8.76379
+resist "Input.n677" "Input.n676" 8.76379
+resist "Input.n674" "Input.n673" 8.76379
+resist "Input.n671" "Input.n670" 8.76379
+resist "Input.n668" "Input.n667" 8.76379
+resist "Input.n665" "Input.n664" 8.76379
+resist "Input.n662" "Input.n661" 8.76379
+resist "Input.n659" "Input.n658" 8.76379
+resist "Input.n656" "Input.n655" 8.76379
+resist "Input.n653" "Input.n652" 8.76379
+resist "Input.n650" "Input.n649" 8.76379
+resist "Input.n647" "Input.n646" 8.76379
+resist "Input.n642" "Input.n641" 8.76379
+resist "Input.n635" "Input.n634" 8.76379
+resist "Input.n631" "Input.n630" 8.76379
+resist "Input.n628" "Input.n627" 8.76379
+resist "Input.n415" "Input.n414" 8.76379
+resist "Input.n419" "Input.n418" 8.76379
+resist "Input.n422" "Input.n421" 8.76379
+resist "Input.n426" "Input.n425" 8.76379
+resist "Input.n524" "Input.n523" 8.76379
+resist "Input.n519" "Input.n518" 8.76379
+resist "Input.n516" "Input.n515" 8.76379
+resist "Input.n511" "Input.n510" 8.76379
+resist "Input.n508" "Input.n507" 8.76379
+resist "Input.n503" "Input.n502" 8.76379
+resist "Input.n500" "Input.n499" 8.76379
+resist "Input.n495" "Input.n494" 8.76379
+resist "Input.n492" "Input.n491" 8.76379
+resist "Input.n487" "Input.n486" 8.76379
+resist "Input.n484" "Input.n483" 8.76379
+resist "Input.n479" "Input.n478" 8.76379
+resist "Input.n476" "Input.n475" 8.76379
+resist "Input.n471" "Input.n470" 8.76379
+resist "Input.n468" "Input.n467" 8.76379
+resist "Input.n463" "Input.n462" 8.76379
+resist "Input.n460" "Input.n459" 8.76379
+resist "Input.n455" "Input.n454" 8.76379
+resist "Input.n452" "Input.n451" 8.76379
+resist "Input.n447" "Input.n446" 8.76379
+resist "Input.n444" "Input.n443" 8.76379
+resist "Input.n439" "Input.n438" 8.76379
+resist "Input.n436" "Input.n435" 8.76379
+resist "Input.n522" "Input.n521" 8.76379
+resist "Input.n379" "Input.n378" 8.76379
+resist "Input.n514" "Input.n513" 8.76379
+resist "Input.n382" "Input.n381" 8.76379
+resist "Input.n506" "Input.n505" 8.76379
+resist "Input.n385" "Input.n384" 8.76379
+resist "Input.n498" "Input.n497" 8.76379
+resist "Input.n388" "Input.n387" 8.76379
+resist "Input.n490" "Input.n489" 8.76379
+resist "Input.n391" "Input.n390" 8.76379
+resist "Input.n482" "Input.n481" 8.76379
+resist "Input.n394" "Input.n393" 8.76379
+resist "Input.n474" "Input.n473" 8.76379
+resist "Input.n397" "Input.n396" 8.76379
+resist "Input.n466" "Input.n465" 8.76379
+resist "Input.n400" "Input.n399" 8.76379
+resist "Input.n458" "Input.n457" 8.76379
+resist "Input.n403" "Input.n402" 8.76379
+resist "Input.n450" "Input.n449" 8.76379
+resist "Input.n406" "Input.n405" 8.76379
+resist "Input.n442" "Input.n441" 8.76379
+resist "Input.n409" "Input.n408" 8.76379
+resist "Input.n434" "Input.n433" 8.76379
+resist "Input.n411" "Input.n410" 8.76379
+resist "Input.n579" "Input.n578" 8.76379
+resist "Input.n576" "Input.n575" 8.76379
+resist "Input.n572" "Input.n571" 8.76379
+resist "Input.n569" "Input.n568" 8.76379
+resist "Input.n565" "Input.n564" 8.76379
+resist "Input.n562" "Input.n561" 8.76379
+resist "Input.n558" "Input.n557" 8.76379
+resist "Input.n555" "Input.n554" 8.76379
+resist "Input.n551" "Input.n550" 8.76379
+resist "Input.n548" "Input.n547" 8.76379
+resist "Input.n544" "Input.n543" 8.76379
+resist "Input.n541" "Input.n540" 8.76379
+resist "Input.n537" "Input.n536" 8.76379
+resist "Input.n534" "Input.n533" 8.76379
+resist "Input.n530" "Input.n529" 8.76379
+resist "Input.n639" "Input.n638" 8.76379
+resist "Input.n413" "Input.n412" 8.76379
+resist "Input.n527" "Input.n526" 8.76379
+resist "Input.n431" "Input.n430" 8.76379
+resist "Input.n145" "Input.n144" 8.76379
+resist "Input.n373" "Input.n372" 8.76379
+resist "Input.n370" "Input.n369" 8.76379
+resist "Input.n367" "Input.n366" 8.76379
+resist "Input.n364" "Input.n363" 8.76379
+resist "Input.n361" "Input.n360" 8.76379
+resist "Input.n358" "Input.n357" 8.76379
+resist "Input.n355" "Input.n354" 8.76379
+resist "Input.n352" "Input.n351" 8.76379
+resist "Input.n349" "Input.n348" 8.76379
+resist "Input.n346" "Input.n345" 8.76379
+resist "Input.n343" "Input.n342" 8.76379
+resist "Input.n340" "Input.n339" 8.76379
+resist "Input.n337" "Input.n336" 8.76379
+resist "Input.n334" "Input.n333" 8.76379
+resist "Input.n331" "Input.n330" 8.76379
+resist "Input.n328" "Input.n327" 8.76379
+resist "Input.n325" "Input.n324" 8.76379
+resist "Input.n322" "Input.n321" 8.76379
+resist "Input.n319" "Input.n318" 8.76379
+resist "Input.n316" "Input.n315" 8.76379
+resist "Input.n135" "Input.n134" 8.76379
+resist "Input.n138" "Input.n137" 8.76379
+resist "Input.n141" "Input.n140" 8.76379
+resist "Input.n133" "Input.n132" 8.76379
+resist "Input.n244" "Input.n243" 8.76379
+resist "Input.n239" "Input.n238" 8.76379
+resist "Input.n236" "Input.n235" 8.76379
+resist "Input.n231" "Input.n230" 8.76379
+resist "Input.n228" "Input.n227" 8.76379
+resist "Input.n223" "Input.n222" 8.76379
+resist "Input.n220" "Input.n219" 8.76379
+resist "Input.n215" "Input.n214" 8.76379
+resist "Input.n212" "Input.n211" 8.76379
+resist "Input.n207" "Input.n206" 8.76379
+resist "Input.n204" "Input.n203" 8.76379
+resist "Input.n199" "Input.n198" 8.76379
+resist "Input.n196" "Input.n195" 8.76379
+resist "Input.n191" "Input.n190" 8.76379
+resist "Input.n188" "Input.n187" 8.76379
+resist "Input.n183" "Input.n182" 8.76379
+resist "Input.n180" "Input.n179" 8.76379
+resist "Input.n175" "Input.n174" 8.76379
+resist "Input.n172" "Input.n171" 8.76379
+resist "Input.n167" "Input.n166" 8.76379
+resist "Input.n164" "Input.n163" 8.76379
+resist "Input.n159" "Input.n158" 8.76379
+resist "Input.n156" "Input.n155" 8.76379
+resist "Input.n36" "Input.n35" 8.76379
+resist "Input.n242" "Input.n241" 8.76379
+resist "Input.n4" "Input.n3" 8.76379
+resist "Input.n234" "Input.n233" 8.76379
+resist "Input.n7" "Input.n6" 8.76379
+resist "Input.n226" "Input.n225" 8.76379
+resist "Input.n10" "Input.n9" 8.76379
+resist "Input.n218" "Input.n217" 8.76379
+resist "Input.n13" "Input.n12" 8.76379
+resist "Input.n210" "Input.n209" 8.76379
+resist "Input.n16" "Input.n15" 8.76379
+resist "Input.n202" "Input.n201" 8.76379
+resist "Input.n19" "Input.n18" 8.76379
+resist "Input.n194" "Input.n193" 8.76379
+resist "Input.n22" "Input.n21" 8.76379
+resist "Input.n186" "Input.n185" 8.76379
+resist "Input.n25" "Input.n24" 8.76379
+resist "Input.n178" "Input.n177" 8.76379
+resist "Input.n28" "Input.n27" 8.76379
+resist "Input.n170" "Input.n169" 8.76379
+resist "Input.n31" "Input.n30" 8.76379
+resist "Input.n162" "Input.n161" 8.76379
+resist "Input.n34" "Input.n33" 8.76379
+resist "Input.n154" "Input.n153" 8.76379
+resist "Input.n313" "Input.n312" 8.76379
+resist "Input.n310" "Input.n309" 8.76379
+resist "Input.n306" "Input.n305" 8.76379
+resist "Input.n303" "Input.n302" 8.76379
+resist "Input.n299" "Input.n298" 8.76379
+resist "Input.n296" "Input.n295" 8.76379
+resist "Input.n292" "Input.n291" 8.76379
+resist "Input.n289" "Input.n288" 8.76379
+resist "Input.n285" "Input.n284" 8.76379
+resist "Input.n282" "Input.n281" 8.76379
+resist "Input.n278" "Input.n277" 8.76379
+resist "Input.n275" "Input.n274" 8.76379
+resist "Input.n271" "Input.n270" 8.76379
+resist "Input.n268" "Input.n267" 8.76379
+resist "Input.n264" "Input.n263" 8.76379
+resist "Input.n261" "Input.n260" 8.76379
+resist "Input.n257" "Input.n256" 8.76379
+resist "Input.n254" "Input.n253" 8.76379
+resist "Input.n250" "Input.n249" 8.76379
+resist "Input.n53" "Input.n52" 8.76379
+resist "Input.n56" "Input.n55" 8.76379
+resist "Input.n60" "Input.n59" 8.76379
+resist "Input.n63" "Input.n62" 8.76379
+resist "Input.n67" "Input.n66" 8.76379
+resist "Input.n50" "Input.n49" 8.76379
+resist "Input.n247" "Input.n246" 8.76379
+resist "Input.n151" "Input.n150" 8.76379
+resist "Input.n47" "Input.n46" 8.76379
+resist "Input.n997" "Input.n996" 8.76379
+resist "Input.n994" "Input.n993" 8.76379
+resist "Input.n991" "Input.n990" 8.76379
+resist "Input.n988" "Input.n987" 8.76379
+resist "Input.n985" "Input.n984" 8.76379
+resist "Input.n982" "Input.n981" 8.76379
+resist "Input.n979" "Input.n978" 8.76379
+resist "Input.n976" "Input.n975" 8.76379
+resist "Input.n973" "Input.n972" 8.76379
+resist "Input.n970" "Input.n969" 8.76379
+resist "Input.n967" "Input.n966" 8.76379
+resist "Input.n964" "Input.n963" 8.76379
+resist "Input.n961" "Input.n960" 8.76379
+resist "Input.n958" "Input.n957" 8.76379
+resist "Input.n955" "Input.n954" 8.76379
+resist "Input.n952" "Input.n951" 8.76379
+resist "Input.n949" "Input.n948" 8.76379
+resist "Input.n946" "Input.n945" 8.76379
+resist "Input.n943" "Input.n942" 8.76379
+resist "Input.n940" "Input.n939" 8.76379
+resist "Input.n937" "Input.n936" 8.76379
+resist "Input.n40" "Input.n39" 8.76379
+resist "Input.n43" "Input.n42" 8.76379
+resist "Input.n38" "Input.n37" 8.76379
+resist "Input.n624" "Input.n623" 8.76379
+resist "Input.n618" "Input.n617" 8.76379
+resist "Input.n615" "Input.n614" 8.76379
+resist "Input.n612" "Input.n611" 8.76379
+resist "Input.n609" "Input.n608" 8.76379
+resist "Input.n606" "Input.n605" 8.76379
+resist "Input.n603" "Input.n602" 8.76379
+resist "Input.n600" "Input.n599" 8.76379
+resist "Input.n597" "Input.n596" 8.76379
+resist "Input.n594" "Input.n593" 8.76379
+resist "Input.n591" "Input.n590" 8.76379
+resist "Input.n588" "Input.n587" 8.76379
+resist "Input.n585" "Input.n584" 8.76379
+resist "Input.n621" "Input.n620" 8.76379
+resist "Input.n582" "Input.n581" 8.76379
+resist "Input.n891" "Input.n890" 8.76379
+resist "Input.n886" "Input.n885" 8.76379
+resist "Input.n881" "Input.n880" 8.76379
+resist "Input.n876" "Input.n875" 8.76379
+resist "Input.n871" "Input.n870" 8.76379
+resist "Input.n866" "Input.n865" 8.76379
+resist "Input.n861" "Input.n860" 8.76379
+resist "Input.n856" "Input.n855" 8.76379
+resist "Input.n851" "Input.n850" 8.76379
+resist "Input.n846" "Input.n845" 8.76379
+resist "Input.n841" "Input.n840" 8.76379
+resist "Input.n836" "Input.n835" 8.76379
+resist "Input.n831" "Input.n830" 8.76379
+resist "Input.n826" "Input.n825" 8.76379
+resist "Input.n819" "Input.n818" 8.76379
+resist "Input.n889" "Input.n888" 8.76379
+resist "Input.n884" "Input.n883" 8.76379
+resist "Input.n879" "Input.n878" 8.76379
+resist "Input.n874" "Input.n873" 8.76379
+resist "Input.n869" "Input.n868" 8.76379
+resist "Input.n864" "Input.n863" 8.76379
+resist "Input.n859" "Input.n858" 8.76379
+resist "Input.n854" "Input.n853" 8.76379
+resist "Input.n849" "Input.n848" 8.76379
+resist "Input.n844" "Input.n843" 8.76379
+resist "Input.n839" "Input.n838" 8.76379
+resist "Input.n834" "Input.n833" 8.76379
+resist "Input.n829" "Input.n828" 8.76379
+resist "Input.n824" "Input.n823" 8.76379
+resist "Input.n821" "Input.n820" 8.76379
+resist "Input.n808" "Input.n807" 8.76379
+resist "Input.n119" "Input.t53" 8.94061
+resist "Input.n89" "Input.t31" 8.9416
+resist "Input.n376" "Input.n375" 9.49379
+resist "Input.n1" "Input.n0" 9.49379
+resist "Input.n70" "Input.t0" 9.9
+resist "Input.n70" "Input.t11" 9.9
+resist "Input.n71" "Input.t47" 9.9
+resist "Input.n71" "Input.t45" 9.9
+resist "Input.n72" "Input.t55" 9.9
+resist "Input.n72" "Input.t1" 9.9
+resist "Input.n73" "Input.t56" 9.9
+resist "Input.n73" "Input.t48" 9.9
+resist "Input.n74" "Input.t4" 9.9
+resist "Input.n74" "Input.t2" 9.9
+resist "Input.n79" "Input.t3" 9.9
+resist "Input.n79" "Input.t46" 9.9
+resist "Input.n648" "Input.n645" 12.6105
+resist "Input.n767" "Input.n766" 12.6112
+resist "Input.n112" "Input.n111" 147.999
+resist "Input.n578" "Input.t106" 267.51
+resist "Input.n433" "Input.t138" 267.51
+resist "Input.n441" "Input.t178" 267.51
+resist "Input.n449" "Input.t61" 267.51
+resist "Input.n457" "Input.t110" 267.51
+resist "Input.n465" "Input.t152" 267.51
+resist "Input.n473" "Input.t206" 267.51
+resist "Input.n481" "Input.t108" 267.51
+resist "Input.n489" "Input.t86" 267.51
+resist "Input.n497" "Input.t203" 267.51
+resist "Input.n505" "Input.t159" 267.51
+resist "Input.n513" "Input.t107" 267.51
+resist "Input.n521" "Input.t209" 267.51
+resist "Input.n395" "Input.t95" 267.51
+resist "Input.n392" "Input.t208" 267.51
+resist "Input.n389" "Input.t195" 267.51
+resist "Input.n386" "Input.t145" 267.51
+resist "Input.n383" "Input.t93" 267.51
+resist "Input.n564" "Input.t215" 267.51
+resist "Input.n571" "Input.t162" 267.51
+resist "Input.n398" "Input.t57" 267.51
+resist "Input.n401" "Input.t164" 267.51
+resist "Input.n404" "Input.t118" 267.51
+resist "Input.n407" "Input.t83" 267.51
+resist "Input.n430" "Input.t187" 267.51
+resist "Input.n312" "Input.t175" 267.51
+resist "Input.n153" "Input.t66" 267.51
+resist "Input.n161" "Input.t140" 267.51
+resist "Input.n169" "Input.t92" 267.51
+resist "Input.n177" "Input.t168" 267.51
+resist "Input.n185" "Input.t122" 267.51
+resist "Input.n193" "Input.t200" 267.51
+resist "Input.n201" "Input.t111" 267.51
+resist "Input.n209" "Input.t188" 267.51
+resist "Input.n217" "Input.t109" 267.51
+resist "Input.n225" "Input.t151" 267.51
+resist "Input.n233" "Input.t74" 267.51
+resist "Input.n241" "Input.t173" 267.51
+resist "Input.n32" "Input.t181" 267.51
+resist "Input.n29" "Input.t134" 267.51
+resist "Input.n26" "Input.t214" 267.51
+resist "Input.n23" "Input.t124" 267.51
+resist "Input.n20" "Input.t78" 267.51
+resist "Input.n17" "Input.t97" 267.51
+resist "Input.n14" "Input.t136" 267.51
+resist "Input.n11" "Input.t69" 267.51
+resist "Input.n8" "Input.t150" 267.51
+resist "Input.n5" "Input.t196" 267.51
+resist "Input.n305" "Input.t120" 267.51
+resist "Input.n150" "Input.t158" 267.51
+resist "Input.n155" "Input.t73" 267.51
+resist "Input.n158" "Input.t153" 267.51
+resist "Input.n163" "Input.t99" 267.51
+resist "Input.n166" "Input.t141" 267.51
+resist "Input.n171" "Input.t63" 267.51
+resist "Input.n174" "Input.t135" 267.51
+resist "Input.n179" "Input.t59" 267.51
+resist "Input.n182" "Input.t132" 267.51
+resist "Input.n187" "Input.t174" 267.51
+resist "Input.n190" "Input.t90" 267.51
+resist "Input.n195" "Input.t171" 267.51
+resist "Input.n198" "Input.t149" 267.51
+resist "Input.n203" "Input.t177" 267.51
+resist "Input.n206" "Input.t87" 267.51
+resist "Input.n211" "Input.t172" 267.51
+resist "Input.n214" "Input.t91" 267.51
+resist "Input.n219" "Input.t176" 267.51
+resist "Input.n222" "Input.t94" 267.51
+resist "Input.n227" "Input.t60" 267.51
+resist "Input.n230" "Input.t137" 267.51
+resist "Input.n235" "Input.t64" 267.51
+resist "Input.n238" "Input.t143" 267.51
+resist "Input.n993" "Input.t62" 267.51
+resist "Input.n996" "Input.t184" 267.51
+resist "Input.n435" "Input.t213" 267.51
+resist "Input.n438" "Input.t77" 267.51
+resist "Input.n443" "Input.t125" 267.51
+resist "Input.n446" "Input.t80" 267.51
+resist "Input.n451" "Input.t115" 267.51
+resist "Input.n454" "Input.t142" 267.51
+resist "Input.n459" "Input.t169" 267.51
+resist "Input.n462" "Input.t202" 267.51
+resist "Input.n467" "Input.t157" 267.51
+resist "Input.n470" "Input.t190" 267.51
+resist "Input.n475" "Input.t58" 267.51
+resist "Input.n478" "Input.t127" 267.51
+resist "Input.n483" "Input.t102" 267.51
+resist "Input.n486" "Input.t114" 267.51
+resist "Input.n491" "Input.t79" 267.51
+resist "Input.n494" "Input.t216" 267.51
+resist "Input.n351" "Input.t189" 267.51
+resist "Input.n354" "Input.t154" 267.51
+resist "Input.n357" "Input.t199" 267.51
+resist "Input.n360" "Input.t167" 267.51
+resist "Input.n363" "Input.t139" 267.51
+resist "Input.n366" "Input.t113" 267.51
+resist "Input.n369" "Input.t147" 267.51
+resist "Input.n372" "Input.t193" 267.51
+resist "Input.n410" "Input.t194" 268.24
+resist "Input.n35" "Input.t103" 268.24
+resist "Input.n761" "Input.t88" 278.355
+resist "Input.n691" "Input.t186" 278.355
+resist "Input.n694" "Input.t84" 278.355
+resist "Input.n699" "Input.t204" 278.355
+resist "Input.n704" "Input.t160" 278.355
+resist "Input.n709" "Input.t119" 278.355
+resist "Input.n714" "Input.t117" 278.355
+resist "Input.n719" "Input.t72" 278.355
+resist "Input.n724" "Input.t191" 278.355
+resist "Input.n729" "Input.t144" 278.355
+resist "Input.n734" "Input.t98" 278.355
+resist "Input.n739" "Input.t96" 278.355
+resist "Input.n744" "Input.t67" 278.355
+resist "Input.n749" "Input.t182" 278.355
+resist "Input.n754" "Input.t130" 278.355
+resist "Input.n689" "Input.t82" 278.355
+resist "Input.n825" "Input.t126" 278.355
+resist "Input.n820" "Input.t112" 278.355
+resist "Input.n823" "Input.t70" 278.355
+resist "Input.n828" "Input.t128" 278.355
+resist "Input.n833" "Input.t133" 278.355
+resist "Input.n838" "Input.t165" 278.355
+resist "Input.n843" "Input.t211" 278.355
+resist "Input.n848" "Input.t89" 278.355
+resist "Input.n853" "Input.t131" 278.355
+resist "Input.n858" "Input.t183" 278.355
+resist "Input.n863" "Input.t185" 278.355
+resist "Input.n868" "Input.t68" 278.355
+resist "Input.n873" "Input.t105" 278.355
+resist "Input.n878" "Input.t148" 278.355
+resist "Input.n883" "Input.t205" 278.355
+resist "Input.n888" "Input.t207" 278.355
+resist "Input.n818" "Input.t170" 278.355
+resist "Input.n830" "Input.t192" 278.355
+resist "Input.n835" "Input.t201" 278.355
+resist "Input.n840" "Input.t71" 278.355
+resist "Input.n845" "Input.t116" 278.355
+resist "Input.n850" "Input.t156" 278.355
+resist "Input.n855" "Input.t198" 278.355
+resist "Input.n860" "Input.t76" 278.355
+resist "Input.n865" "Input.t81" 278.355
+resist "Input.n870" "Input.t123" 278.355
+resist "Input.n875" "Input.t166" 278.355
+resist "Input.n880" "I
\ No newline at end of file
diff --git a/mag/tia/tia_core_flat.sim b/mag/tia/tia_core_flat.sim
new file mode 100644
index 0000000..b4f35cd
--- /dev/null
+++ b/mag/tia/tia_core_flat.sim
@@ -0,0 +1,734 @@
+| units: 500000 tech: sky130A format: MIT
+x VM39D Out_ref VM40D VN l=40 w=400 x=1222 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=438 y=678 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=830 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=144 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-933 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3804 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=390 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=102 y=-9255 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2726 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=2040 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=536 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-953 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-185 y=-9873 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-639 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=1158 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=774 y=-9873 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=732 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-1031 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2922 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=732 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=198 y=-9255 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3020 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-835 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-281 y=-4039 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1746 y=1509 sky130_fd_pr__pfet_01v8
+x I_Bias1 Input VM5D VN l=30 w=400 x=2336 y=-1419 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=1124 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=870 y=-4039 sky130_fd_pr__nfet_01v8
+x VN Out_2 VPP VPP l=100 w=400 x=3102 y=1493 sky130_fd_pr__pfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=2628 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=1062 y=-10491 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=962 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-665 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=46 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-737 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-1145 y=-9873 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=1158 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=678 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-345 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-149 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-761 y=-4039 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=2048 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1026 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=144 y=2145 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=2922 y=358 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=242 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-345 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3706 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=6 y=-10491 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-569 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1222 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-149 y=1509 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=6 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-1049 y=-9255 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=390 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-541 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=1648 y=-4924 sky130_fd_pr__pfet_01v8
+x VPP VN l=6000 w=6000 x=5624 y=-11408 sky130_fd_pr__cap_mim_m3_2
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3902 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=144 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-247 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=1452 y=2145 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=2528 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-89 y=-4039 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1844 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=2628 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=340 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-443 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM6D VN VN l=200 w=400 x=4330 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-51 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM5D Input VN l=30 w=400 x=1856 y=-1419 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=1124 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-281 y=-9873 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=870 y=-9873 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=2824 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM36D VN VN l=200 w=400 x=2950 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-639 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=928 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=294 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-1031 y=-4924 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM5D Input VN l=30 w=400 x=2432 y=-1419 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=582 y=-11109 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-835 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=3412 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-1129 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-835 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-761 y=-9873 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=1158 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA Disable_TIA_B VPP VPP l=200 w=100 x=6376 y=-10310 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-185 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=864 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1060 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=-541 y=1509 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1026 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3020 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=774 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=242 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-247 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=830 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=102 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-473 y=-11109 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-639 y=1509 sky130_fd_pr__pfet_01v8
+x VN Out_2 VPP VPP l=100 w=400 x=3734 y=1493 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=2144 y=-8489 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=2040 y=1509 sky130_fd_pr__pfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3118 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=1062 y=-2185 sky130_fd_pr__nfet_01v8
+x I_Bias1 VN VM36D VN l=200 w=400 x=1660 y=-9309 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1026 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=1942 y=2145 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=2726 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=6 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=198 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-89 y=-9873 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-665 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=144 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=486 y=-11109 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3314 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-247 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-1145 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=340 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=2624 y=-8489 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3510 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-51 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-443 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-1145 y=-11109 sky130_fd_pr__nfet_01v8
+x I_Bias1 VN VM5D VN l=200 w=400 x=2176 y=-2239 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=390 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1746 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=766 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1354 y=1509 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=678 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=536 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-639 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 Input VM5D VN l=30 w=400 x=1952 y=-1419 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-377 y=-11109 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-247 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-149 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-1031 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VPP Out_ref VPP l=40 w=400 x=1942 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=962 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3902 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=486 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=732 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-835 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=668 y=2145 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3314 y=358 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=4328 y=-8489 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=-345 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=390 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-1129 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=242 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-953 y=-11109 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-345 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-569 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-281 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-737 y=-5560 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=732 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-1049 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-89 y=-10491 sky130_fd_pr__nfet_01v8
+x VN Out_2 VPP VPP l=100 w=400 x=2786 y=1493 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-541 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-541 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=1664 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-377 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-1049 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=102 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=966 y=-11109 sky130_fd_pr__nfet_01v8
+x VN VM31D VPP VPP l=100 w=400 x=2470 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-933 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=242 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=966 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=294 y=-10491 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-281 y=-9255 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=870 y=-9255 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=198 y=-2803 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=2240 y=-8489 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1060 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=870 y=-10491 sky130_fd_pr__nfet_01v8
+x VN I_Bias1 l=2400 w=3000 x=1730 y=-4489 sky130_fd_pr__cap_mim_m3_1
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-857 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-857 y=-11109 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=46 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=294 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-185 y=-10491 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1158 y=2145 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=928 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3216 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-761 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1844 y=1509 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-1031 y=1509 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-51 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VN VM31D VPP VPP l=100 w=400 x=3418 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1158 y=-4924 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1222 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3608 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3412 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=678 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-761 y=-10491 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=2720 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=1062 y=-4039 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=-1129 y=1509 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=198 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=46 y=-5560 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-185 y=-3421 sky130_fd_pr__nfet_01v8
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=3848 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=668 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1354 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-835 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=774 y=-3421 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-1129 y=678 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VN VM6D VN l=200 w=400 x=4588 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=1124 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-835 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-51 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-443 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3020 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA Disable_TIA_B VN VN l=200 w=100 x=6376 y=-10869 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=774 y=-10491 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-89 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=864 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1550 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=536 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-51 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-569 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=582 y=-2185 sky130_fd_pr__nfet_01v8
+x VN VPP VM31D VPP l=100 w=400 x=2944 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-149 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3902 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=3118 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=242 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-933 y=60 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=4424 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=438 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-1049 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-665 y=-3421 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2530 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VN VPP VM31D VPP l=100 w=400 x=3576 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=242 y=-4924 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-149 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=732 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-345 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-247 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=634 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-1145 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-737 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-665 y=-10491 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=1760 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=486 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-473 y=-2185 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM5D VN VN l=200 w=400 x=1918 y=-2239 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1550 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=830 y=678 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-541 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=830 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-933 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=536 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=1648 y=2145 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-639 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=2726 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=294 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=678 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-1031 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-377 y=-4039 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=732 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-835 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=966 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-953 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=390 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA I_Bias1 VN VN l=30 w=400 x=5510 y=-9309 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=1062 y=-9873 sky130_fd_pr__nfet_01v8
+x VN I_Bias1 l=2400 w=3000 x=1740 y=-11579 sky130_fd_pr__cap_mim_m3_1
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=1062 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-185 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-569 y=-10491 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-933 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=3510 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=774 y=-2803 sky130_fd_pr__nfet_01v8
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=4040 y=-8489 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3020 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-857 y=-4039 sky130_fd_pr__nfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=3608 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-281 y=-3421 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=3944 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1256 y=-5560 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=870 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=46 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=962 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-149 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=340 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-737 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1452 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=438 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-665 y=-2803 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=242 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-345 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=4520 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1026 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=928 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-1145 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=486 y=-9873 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=6 y=-11109 sky130_fd_pr__nfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=2824 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-761 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=144 y=-5560 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=144 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-247 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=46 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-541 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=1222 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM5D Input VN l=30 w=400 x=2048 y=-1419 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=46 y=2145 sky130_fd_pr__pfet_01v8
+x I_Bias1 VN VM5D VN l=200 w=400 x=2692 y=-2239 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=536 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=582 y=-4039 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3706 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-639 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x VN Out_2 VPP VPP l=100 w=400 x=3418 y=1493 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-51 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-443 y=-5560 sky130_fd_pr__pfet_01v8
+x VN VPP Out_2 VPP l=100 w=400 x=2944 y=1493 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-377 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-1031 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=966 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=1124 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=732 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=1452 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-835 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3902 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=390 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-89 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-473 y=-4039 sky130_fd_pr__nfet_01v8
+x I_Bias1 Input VM5D VN l=30 w=400 x=2528 y=-1419 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=3560 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=928 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=2628 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=766 y=2145 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-443 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=438 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-1129 y=-5560 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-857 y=-9873 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM5D VN VN l=200 w=400 x=2434 y=-2239 sky130_fd_pr__nfet_01v8
+x VN VPP Out_2 VPP l=100 w=400 x=3260 y=1493 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-51 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=830 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-281 y=-2803 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=2824 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=634 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-149 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-737 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=870 y=-2803 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=1124 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-835 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-953 y=-4039 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=928 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=830 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=634 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-933 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=1158 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=1062 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1060 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3118 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-761 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=582 y=-9873 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1256 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-345 y=678 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=144 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=1942 y=1509 sky130_fd_pr__pfet_01v8
+x I_Bias1 Input VM5D VN l=30 w=400 x=2144 y=-1419 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=6 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-247 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VN VM36D VN l=200 w=400 x=2176 y=-9309 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3608 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VPP VN l=6000 w=6000 x=5624 y=-4098 sky130_fd_pr__cap_mim_m3_2
+x VM39D VM40D Out_ref VN l=40 w=400 x=1124 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3412 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=390 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-473 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=340 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-1031 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-51 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-443 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-89 y=-2803 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3804 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-933 y=2145 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=46 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-149 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=102 y=-10491 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=486 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-541 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM5D Input VN l=30 w=400 x=2624 y=-1419 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=242 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VPP Out_ref VPP l=40 w=400 x=1746 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-345 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-639 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=3216 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=340 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-281 y=-11109 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1026 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-541 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-953 y=-9873 sky130_fd_pr__nfet_01v8
+x VN VM31D VPP VPP l=100 w=400 x=3102 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1942 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2726 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-1129 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-89 y=-11109 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-541 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM6D VN VN l=200 w=400 x=4846 y=-9309 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-377 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=668 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=2040 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=-345 y=1509 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=340 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=1222 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=966 y=-9255 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=294 y=-11109 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2922 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-737 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-639 y=678 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=2336 y=-8489 sky130_fd_pr__nfet_01v8
+x VN VPP Out_2 VPP l=100 w=400 x=3892 y=1493 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1746 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=102 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-933 y=-4924 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=1158 y=-10491 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=870 y=-11109 sky130_fd_pr__nfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3706 y=358 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM5D Input VN l=30 w=400 x=1664 y=-1419 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-857 y=-9255 sky130_fd_pr__nfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=2530 y=358 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=928 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-185 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=198 y=-2185 sky130_fd_pr__nfet_01v8
+x VN VPP VM31D VPP l=100 w=400 x=3260 y=-5576 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=1158 y=-4039 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1060 y=1509 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-933 y=678 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VN VM6D VN l=200 w=400 x=3556 y=-9309 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM5D Input VN l=30 w=400 x=2240 y=-1419 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1158 y=1509 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=634 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-761 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=198 y=-11109 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-149 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3216 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=3706 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=678 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=242 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-149 y=2145 sky130_fd_pr__pfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3412 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-345 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=6 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=1062 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=774 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=582 y=-9255 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VN l=400 w=1000 x=2613 y=-10921 sky130_fd_pr__cap_var_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=46 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=668 y=-4924 sky130_fd_pr__pfet_01v8
+x I_Bias1 Input VM5D VN l=30 w=400 x=2720 y=-1419 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1648 y=-5560 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-835 y=1509 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=438 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-737 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=536 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-541 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=1856 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-569 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1844 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=864 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=536 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=2922 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=634 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Input Out_2 Input l=40 w=400 x=2824 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-473 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-737 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=242 y=1509 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM36D VN VN l=200 w=400 x=1918 y=-9309 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-1049 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-665 y=-11109 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=144 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-247 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=830 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-1031 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x VN VM31D VPP VPP l=100 w=400 x=3734 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-639 y=-5560 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM36D VM39D VN l=30 w=400 x=2432 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-933 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=2530 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=340 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VN l=400 w=1000 x=3533 y=-10921 sky130_fd_pr__cap_var_lvt
+x VM39D VPP Out_ref VPP l=40 w=400 x=-1031 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-1129 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-443 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-51 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=928 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=928 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=678 y=-11109 sky130_fd_pr__nfet_01v8
+x Disable_TIA VN I_Bias1 VN l=30 w=400 x=5606 y=-9309 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1550 y=1509 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=486 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-835 y=-5560 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=1158 y=-9873 sky130_fd_pr__nfet_01v8
+x I_Bias1 Input VM5D VN l=30 w=400 x=1760 y=-1419 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-953 y=-9255 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1648 y=1509 sky130_fd_pr__pfet_01v8
+x I_Bias1 VM5D VN VN l=200 w=400 x=2950 y=-2239 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1026 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=294 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VN l=400 w=1000 x=1693 y=-10921 sky130_fd_pr__cap_var_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=864 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=582 y=-10491 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=4136 y=-8489 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=-541 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=102 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-377 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-569 y=-11109 sky130_fd_pr__nfet_01v8
+x VN VPP Out_2 VPP l=100 w=400 x=2628 y=1493 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-1129 y=-1383 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=-639 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=966 y=-3421 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3118 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=6 y=-9873 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=2040 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VN l=400 w=1000 x=4453 y=-10921 sky130_fd_pr__cap_var_lvt
+x VN VPP VM31D VPP l=100 w=400 x=3892 y=-5576 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=1222 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-247 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=198 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-185 y=-2185 sky130_fd_pr__nfet_01v8
+x VPP VM28D l=3600 w=5000 x=-1245 y=-1929 sky130_fd_pr__cap_mim_m3_2
+x VM39D Out_ref VM40D VN l=40 w=400 x=46 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=1062 y=-2803 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-443 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=774 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-473 y=-10491 sky130_fd_pr__nfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3314 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=4616 y=-8489 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=242 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-857 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1256 y=-4924 sky130_fd_pr__pfet_01v8
+x Out_ref VM31D VM39D VM39D l=40 w=400 x=3510 y=-7329 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VN VM6D VN l=200 w=400 x=4072 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1026 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VN VM5D VN l=200 w=400 x=1660 y=-2239 sky130_fd_pr__nfet_01v8
+x VN Out_2 VPP VPP l=100 w=400 x=2470 y=1493 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=486 y=-10491 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM39D VM36D VN l=30 w=400 x=1952 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=678 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-665 y=-2185 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=766 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=1452 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=1354 y=2145 sky130_fd_pr__pfet_01v8
+x I_Bias1 VN VM36D VN l=200 w=400 x=2692 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1222 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-1145 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VN l=400 w=1000 x=5373 y=-10921 sky130_fd_pr__cap_var_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-1145 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=962 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=144 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-247 y=-4924 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=486 y=-2803 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=536 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-377 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-639 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-569 y=-4039 sky130_fd_pr__nfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=46 y=1509 sky130_fd_pr__pfet_01v8
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=3656 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=582 y=-3421 sky130_fd_pr__nfet_01v8
+x Disable_TIA I_Bias1 VN VN l=30 w=400 x=5702 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-1031 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-1049 y=-4039 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-51 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=-443 y=-4924 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=732 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-1129 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=102 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-835 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=438 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=1222 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-953 y=-10491 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM36D VN VN l=200 w=400 x=2434 y=-9309 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-377 y=-2803 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=390 y=-2185 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-149 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=-737 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=3314 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA VN I_Bias1 VN l=30 w=400 x=5798 y=-9309 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=966 y=-2803 sky130_fd_pr__nfet_01v8
+x I_Bias1 I_Bias1 VM6D VN l=30 w=400 x=4232 y=-8489 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=198 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=634 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-473 y=-3421 sky130_fd_pr__nfet_01v8
+x VPP VM40D l=3600 w=5000 x=-1245 y=-8999 sky130_fd_pr__cap_mim_m3_2
+x VM39D Out_ref VM40D VN l=40 w=400 x=-737 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=766 y=1509 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-443 y=1509 sky130_fd_pr__pfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=3216 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-1049 y=-10491 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-1129 y=-4924 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-639 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=966 y=-10491 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=144 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=830 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input VPP Out_1 VPP l=40 w=400 x=-51 y=1509 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=1158 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=-933 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VN VPP VM31D VPP l=100 w=400 x=2628 y=-5576 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=294 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-281 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-857 y=-2803 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=438 y=60 sky130_fd_pr__nfet_01v8_lvt
+x Out_1 Out_2 Input Input l=40 w=400 x=2530 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=870 y=-2185 sky130_fd_pr__nfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=-443 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=1844 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=678 y=-9873 sky130_fd_pr__nfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-1031 y=2145 sky130_fd_pr__pfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=2628 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-953 y=-3421 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1158 y=-5560 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=144 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-857 y=-10491 sky130_fd_pr__nfet_01v8
+x Out_1 Out_2 Input Input l=40 w=400 x=3510 y=358 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-1129 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-185 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=774 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-761 y=-2185 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=6 y=-9255 sky130_fd_pr__nfet_01v8
+x VM39D VPP Out_ref VPP l=40 w=400 x=1354 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=144 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=46 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Input VM28D Out_1 VN l=40 w=400 x=-1031 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM40D VN VN l=30 w=400 x=-569 y=-9873 sky130_fd_pr__nfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=-247 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VPP Out_ref VPP l=40 w=400 x=1550 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VPP VPP l=40 w=400 x=1256 y=1509 sky130_fd_pr__pfet_01v8
+x VN VPP Out_2 VPP l=100 w=400 x=3576 y=1493 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=-1049 y=-9873 sky130_fd_pr__nfet_01v8
+x VN VM31D VPP VPP l=100 w=400 x=2786 y=-5576 sky130_fd_pr__pfet_01v8
+x VM39D VM40D Out_ref VN l=40 w=400 x=340 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-149 y=-5560 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=582 y=-2803 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=46 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-443 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=-51 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x VM39D VM40D Out_ref VN l=40 w=400 x=1124 y=-6391 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-665 y=-4039 sky130_fd_pr__nfet_01v8
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=102 y=-11109 sky130_fd_pr__nfet_01v8
+x Out_1 Input Out_2 Input l=40 w=400 x=3804 y=-259 sky130_fd_pr__nfet_01v8_lvt
+x I_Bias1 VM6D I_Bias1 VN l=30 w=400 x=3752 y=-8489 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=438 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VM28D VN VN l=30 w=400 x=-1145 y=-4039 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3608 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=242 y=-5560 sky130_fd_pr__pfet_01v8
+x VM39D Out_ref VPP VPP l=40 w=400 x=-345 y=-5560 sky130_fd_pr__pfet_01v8
+x Input VPP Out_1 VPP l=40 w=400 x=-247 y=2145 sky130_fd_pr__pfet_01v8
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-89 y=-2185 sky130_fd_pr__nfet_01v8
+x I_Bias1 VM6D VN VN l=200 w=400 x=3814 y=-9309 sky130_fd_pr__nfet_01v8
+x VM39D Out_ref VM40D VN l=40 w=400 x=1026 y=-8453 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VPP VPP l=40 w=400 x=-933 y=1509 sky130_fd_pr__pfet_01v8
+x Input VM28D Out_1 VN l=40 w=400 x=1124 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=634 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x Input Out_1 VM28D VN l=40 w=400 x=634 y=-765 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM28D VN l=30 w=400 x=-473 y=-2803 sky130_fd_pr__nfet_01v8
+x Out_ref VM39D VM31D VM39D l=40 w=400 x=3804 y=-6711 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-737 y=-7835 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VPP VPP l=40 w=400 x=-541 y=-5560 sky130_fd_pr__pfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-737 y=678 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA I_Bias1 VN VN l=30 w=400 x=5894 y=-9309 sky130_fd_pr__nfet_01v8
+x Input Out_1 VM28D VN l=40 w=400 x=-345 y=60 sky130_fd_pr__nfet_01v8_lvt
+x VM39D Out_ref VM40D VN l=40 w=400 x=-1129 y=-7009 sky130_fd_pr__nfet_01v8_lvt
+x Disable_TIA_B VN VM40D VN l=30 w=400 x=294 y=-9873 sky130_fd_pr__nfet_01v8
+C I_Bias1 VM28D 2.03
+C VPP Out_2 7.43
+C VPP VM31D 7.71
+C VM39D VM40D 27.45
+C I_Bias1 VM36D 5.77
+C I_Bias1 Disable_TIA_B 3.48
+C VM31D Out_ref 6.66
+C VPP VM40D 42.98
+C Out_1 Input 42.58
+C Input VM28D 28.29
+C VPP VM39D 34.59
+C I_Bias1 VM40D 3.18
+C Out_1 VM28D 103.61
+C Out_2 Input 28.54
+C Out_ref VM40D 103.43
+C I_Bias1 VM5D 4.64
+C I_Bias1 VM39D 3.09
+C VM39D Out_ref 42.80
+C Out_1 Out_2 6.55
+C Disable_TIA_B VM28D 17.44
+C Out_2 VM28D 3.93
+C I_Bias1 VPP 3.79
+C VPP Out_ref 61.76
+C Input VM5D 10.79
+C VM40D Disable_TIA_B 19.27
+C VPP Input 35.43
+C VM39D VM36D 11.01
+C VM31D VM40D 3.84
+C VM39D Disable_TIA_B 6.84
+C Out_1 VPP 61.82
+C VM31D VM39D 28.93
+C I_Bias1 Input 2.16
+C VPP VM28D 42.93
+C I_Bias1 VM6D 15.21
+R Disable_TIA 4128
+C I_Bias1 GND 92.60
+R I_Bias1 37451
+R Out_2 31379
+C Out_1 GND 6.42
+R Out_1 147562
+C Input GND 28.65
+R Input 170745
+C VPP GND 245.77
+R VPP 332908
+R VN 731215
+C VM6D GND 3.63
+R VM6D 11781
+C VM36D GND 3.75
+R VM36D 11781
+C VM40D GND 113.24
+R VM40D 126220
+R VM31D 31379
+C Out_ref GND 6.85
+R Out_ref 147562
+R Disable_TIA_B 138732
+C VM5D GND 3.39
+R VM5D 11781
+C VM28D GND 113.42
+R VM28D 126220
+C VM39D GND 29.42
+R VM39D 170745
diff --git a/mag/tia/tia_cur_mirror.ext b/mag/tia/tia_cur_mirror.ext
new file mode 100644
index 0000000..7d8fd45
--- /dev/null
+++ b/mag/tia/tia_cur_mirror.ext
@@ -0,0 +1,86 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use sky130_fd_pr__nfet_01v8_F8VELN sky130_fd_pr__nfet_01v8_F8VELN_0 1 0 683 0 1 330
+use sky130_fd_pr__nfet_01v8_854667 sky130_fd_pr__nfet_01v8_854667_0 1 0 881 0 1 -490
+node "m1_71_n690#" 3 694.139 71 -690 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46080 1856 291600 3600 0 0 0 0 0 0 0 0
+node "m1_71_130#" 7 828.69 71 130 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 114720 4634 579000 5840 0 0 0 0 0 0 0 0
+node "m1_167_370#" 4 520.842 167 370 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69120 2784 185400 2420 0 0 0 0 0 0 0 0
+node "li_n20_n140#" 150 629.18 -20 -140 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 169200 3060 0 0 0 0 0 0 0 0 0 0 0 0
+node "a_122_42#" 2621 3176.33 122 42 p 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 148104 4752 0 0 76296 4624 554500 13740 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "a_122_42#" "m1_71_130#" 2163.25
+cap "m1_167_370#" "m1_71_130#" 696.758
+cap "a_122_42#" "m1_71_n690#" 643.233
+cap "li_n20_n140#" "a_122_42#" 533.916
+cap "a_122_42#" "m1_167_370#" 679.16
+cap "m1_71_n690#" "m1_71_130#" 758.891
+cap "li_n20_n140#" "m1_71_130#" 76.9541
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 1245.84
+cap "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" 519.061
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -152.846
+cap "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 203.499
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 512.161
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -83.7439
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" 363.405
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -42
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -715.591
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" -17.0106
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 152.388
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -180.222
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" -325.397
+cap "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -18.416
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" 458.576
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" 124.13
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -35
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" 221.671
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" 268.349
+cap "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" 0.118287
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" -42
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 9.5431
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" -3.92553
+cap "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 58.4307
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -1120.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -101520 -5736 0 0 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "VSUBS"
+merge "VSUBS" "li_n20_n140#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_447_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_255_n200#" 1016.99 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2047068 -2472 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_255_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_63_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_63_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n129_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n129_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n321_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n321_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n513_n200#" "m1_167_370#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_745_n200#" "sky130_fd_pr__nfet_01v8_854667_0/a_229_n200#" 3444.04 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5387952 -1648 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_229_n200#" "sky130_fd_pr__nfet_01v8_854667_0/a_n287_n200#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n287_n200#" "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n803_n200#" "m1_71_n690#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_487_n200#" "sky130_fd_pr__nfet_01v8_854667_0/a_n29_n200#" 4014.09 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5789712 -4120 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n29_n200#" "sky130_fd_pr__nfet_01v8_854667_0/a_n545_n200#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n545_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_543_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_543_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_351_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_351_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_159_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_159_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n33_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n33_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n225_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n225_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n417_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n417_n200#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "m1_71_130#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_545_n288#" "sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" -26163.5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -4723920 -3984 0 0 -1463904 -2400 -19558344 -8208 0 0 0 0 0 0 0 0 0 0
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_287_n288#" "sky130_fd_pr__nfet_01v8_854667_0/a_29_n288#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_29_n288#" "sky130_fd_pr__nfet_01v8_854667_0/a_n229_n288#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n229_n288#" "sky130_fd_pr__nfet_01v8_854667_0/a_n487_n288#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n487_n288#" "sky130_fd_pr__nfet_01v8_854667_0/a_n745_n288#"
+merge "sky130_fd_pr__nfet_01v8_854667_0/a_n745_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_399_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_399_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_495_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_495_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_207_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_207_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_303_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_303_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_15_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_15_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_111_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_111_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n177_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n177_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n81_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n81_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n369_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n369_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n273_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n273_222#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n561_n288#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n561_n288#" "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#"
+merge "sky130_fd_pr__nfet_01v8_F8VELN_0/a_n465_222#" "a_122_42#"
diff --git a/mag/tia/tia_cur_mirror.mag b/mag/tia/tia_cur_mirror.mag
new file mode 100644
index 0000000..c1df3ec
--- /dev/null
+++ b/mag/tia/tia_cur_mirror.mag
@@ -0,0 +1,197 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< pwell >>
+rect 122 552 1244 618
+rect 122 42 1244 108
+rect 130 -260 1640 -180
+<< poly >>
+rect 122 602 1244 618
+rect 122 568 138 602
+rect 172 568 330 602
+rect 364 568 522 602
+rect 556 568 714 602
+rect 748 568 906 602
+rect 940 568 1098 602
+rect 1132 568 1244 602
+rect 122 552 1244 568
+rect 122 92 1244 108
+rect 122 58 234 92
+rect 268 58 426 92
+rect 460 58 618 92
+rect 652 58 810 92
+rect 844 58 1002 92
+rect 1036 58 1194 92
+rect 1228 58 1244 92
+rect 122 42 1244 58
+<< polycont >>
+rect 138 568 172 602
+rect 330 568 364 602
+rect 522 568 556 602
+rect 714 568 748 602
+rect 906 568 940 602
+rect 1098 568 1132 602
+rect 234 58 268 92
+rect 426 58 460 92
+rect 618 58 652 92
+rect 810 58 844 92
+rect 1002 58 1036 92
+rect 1194 58 1228 92
+<< locali >>
+rect 122 568 138 602
+rect 172 568 330 602
+rect 364 568 522 602
+rect 556 568 714 602
+rect 748 568 906 602
+rect 940 568 1098 602
+rect 1132 568 1244 602
+rect 122 58 234 92
+rect 268 58 426 92
+rect 460 58 618 92
+rect 652 58 810 92
+rect 844 58 1002 92
+rect 1036 58 1194 92
+rect 1228 58 1244 92
+rect -20 -140 1390 -20
+<< viali >>
+rect 138 568 172 602
+rect 330 568 364 602
+rect 522 568 556 602
+rect 714 568 748 602
+rect 906 568 940 602
+rect 1098 568 1132 602
+rect 234 58 268 92
+rect 426 58 460 92
+rect 618 58 652 92
+rect 810 58 844 92
+rect 1002 58 1036 92
+rect 1194 58 1228 92
+<< metal1 >>
+rect 120 602 1440 630
+rect 120 568 138 602
+rect 172 568 330 602
+rect 364 568 522 602
+rect 556 568 714 602
+rect 748 568 906 602
+rect 940 568 1098 602
+rect 1132 568 1440 602
+rect 120 560 1440 568
+rect 167 370 177 530
+rect 229 370 239 530
+rect 359 370 369 530
+rect 421 370 431 530
+rect 551 370 561 530
+rect 613 370 623 530
+rect 743 370 753 530
+rect 805 370 815 530
+rect 935 370 945 530
+rect 997 370 1007 530
+rect 1127 370 1137 530
+rect 1189 370 1199 530
+rect 71 130 81 290
+rect 133 130 143 290
+rect 263 130 273 290
+rect 325 130 335 290
+rect 455 130 465 290
+rect 517 130 527 290
+rect 647 130 657 290
+rect 709 130 719 290
+rect 839 130 849 290
+rect 901 130 911 290
+rect 1031 130 1041 290
+rect 1093 130 1103 290
+rect 1223 130 1233 290
+rect 1285 130 1295 290
+rect 1330 100 1440 560
+rect 120 92 1440 100
+rect 120 58 234 92
+rect 268 58 426 92
+rect 460 58 618 92
+rect 652 58 810 92
+rect 844 58 1002 92
+rect 1036 58 1194 92
+rect 1228 58 1440 92
+rect 120 30 1440 58
+rect 1310 -180 1440 30
+rect 130 -260 1640 -180
+rect 329 -450 339 -290
+rect 391 -450 401 -290
+rect 845 -450 855 -290
+rect 907 -450 917 -290
+rect 1361 -450 1371 -290
+rect 1423 -450 1430 -290
+rect 71 -690 81 -530
+rect 133 -690 143 -530
+rect 587 -690 597 -530
+rect 649 -690 659 -530
+rect 1103 -690 1113 -530
+rect 1165 -690 1175 -530
+rect 1480 -720 1570 -260
+rect 1619 -690 1629 -530
+rect 1681 -690 1691 -530
+rect 70 -800 1690 -720
+<< via1 >>
+rect 177 370 229 530
+rect 369 370 421 530
+rect 561 370 613 530
+rect 753 370 805 530
+rect 945 370 997 530
+rect 1137 370 1189 530
+rect 81 130 133 290
+rect 273 130 325 290
+rect 465 130 517 290
+rect 657 130 709 290
+rect 849 130 901 290
+rect 1041 130 1093 290
+rect 1233 130 1285 290
+rect 339 -450 391 -290
+rect 855 -450 907 -290
+rect 1371 -450 1423 -290
+rect 81 -690 133 -530
+rect 597 -690 649 -530
+rect 1113 -690 1165 -530
+rect 1629 -690 1681 -530
+<< metal2 >>
+rect 170 530 1200 540
+rect 170 370 177 530
+rect 229 370 369 530
+rect 421 370 561 530
+rect 613 370 753 530
+rect 805 370 945 530
+rect 997 370 1137 530
+rect 1189 370 1200 530
+rect 170 360 1200 370
+rect 80 290 1430 300
+rect 80 130 81 290
+rect 133 130 273 290
+rect 325 130 465 290
+rect 517 130 657 290
+rect 709 130 849 290
+rect 901 130 1041 290
+rect 1093 130 1233 290
+rect 1285 130 1430 290
+rect 80 120 1430 130
+rect 1130 -260 1430 120
+rect 320 -290 1430 -260
+rect 320 -450 339 -290
+rect 391 -450 855 -290
+rect 907 -450 1371 -290
+rect 1423 -450 1430 -290
+rect 320 -460 1430 -450
+rect 70 -530 1690 -520
+rect 70 -690 81 -530
+rect 133 -690 597 -530
+rect 649 -690 1113 -530
+rect 1165 -690 1629 -530
+rect 1681 -690 1690 -530
+rect 70 -700 1690 -690
+use sky130_fd_pr__nfet_01v8_854667  sky130_fd_pr__nfet_01v8_854667_0
+timestamp 1647868710
+transform 1 0 881 0 1 -490
+box -941 -410 941 410
+use sky130_fd_pr__nfet_01v8_F8VELN  sky130_fd_pr__nfet_01v8_F8VELN_0
+timestamp 1647868710
+transform 1 0 683 0 1 330
+box -743 -410 743 410
+<< end >>
diff --git a/mag/tia/tia_one_tia.ext b/mag/tia/tia_one_tia.ext
new file mode 100644
index 0000000..d7f98d3
--- /dev/null
+++ b/mag/tia/tia_one_tia.ext
@@ -0,0 +1,703 @@
+timestamp 1647868710
+version 8.3
+tech sky130A
+style ngspice()
+scale 1000 1 500000
+resistclasses 4400000 2200000 950000 3050000 120000 197000 114000 191000 120000 197000 114000 191000 48200 319800 2000000 48200 48200 12800 125 125 47 47 29 5
+use tia_cur_mirror tia_cur_mirror_0 1 0 910 0 1 -660
+use sky130_fd_pr__cap_mim_m3_2_ZWVPUJ sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0 1 0 891 0 -1 760
+use rf_transistors rf_transistors_0 1 0 -2380 0 1 2280
+use fb_transistor fb_transistor_0 1 0 -4020 0 1 -1780
+use dis_tran dis_tran_0 1 0 -1907 0 1 -3307
+node "m2_n1840_n2910#" 5 3983.92 -1840 -2910 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5288800 28580 1613500 10640 228164 2066 0 0 0 0
+node "m2_1800_2380#" 4 650.949 1800 2380 m2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 831600 10280 869400 4900 0 0 0 0 0 0
+node "m1_n1960_n3240#" 3 611.41 -1960 -3240 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 275300 5680 0 0 0 0 0 0 0 0 0 0
+node "m1_1540_1550#" 21 3934.05 1540 1550 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 410800 9220 3037700 37740 1452950 7800 0 0 0 0 0 0
+node "m1_1850_2290#" 12 1302.08 1850 2290 m1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 153200 7740 0 0 0 0 0 0 0 0 0 0
+node "li_1590_1050#" 887 8251.28 1590 1050 v0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 609000 13020 2716176 39976 1084200 12180 0 0 0 0 0 0 0 0
+node "li_n2010_n3330#" 1593 12309.7 -2010 -3330 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2154700 32960 30408 708 2513200 19660 760600 5380 100464 1268 1508864 10044 0 0
+node "li_n1910_3600#" 1318 7727.82 -1910 3600 li 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1230900 22680 87408 1468 1810900 18640 291000 2850 110124 1328 361000 2660 0 0
+node "w_1686_386#" 5450 0 1686 386 pw 2816944 6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+node "w_1650_2620#" 16150 5.1 1650 2620 nw 0 0 0 0 1700 360 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+substrate "VSUBS" 0 0 -1073741817 -1073741817 space 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+cap "m1_1540_1550#" "li_n1910_3600#" 5113.86
+cap "m2_n1840_n2910#" "li_1590_1050#" 548.915
+cap "m1_n1960_n3240#" "m2_n1840_n2910#" 218.826
+cap "m2_1800_2380#" "w_1686_386#" 1016.3
+cap "m1_n1960_n3240#" "li_1590_1050#" 29.1036
+cap "m1_1540_1550#" "m2_1800_2380#" 472.357
+cap "m2_n1840_n2910#" "li_n1910_3600#" 235.656
+cap "li_n1910_3600#" "li_1590_1050#" 2090.22
+cap "m1_1540_1550#" "m1_1850_2290#" 150.247
+cap "m2_1800_2380#" "li_1590_1050#" 2844.37
+cap "m1_1540_1550#" "li_n2010_n3330#" 55.7677
+cap "m2_1800_2380#" "li_n1910_3600#" 1156.5
+cap "li_1590_1050#" "m1_1850_2290#" 3.70174
+cap "w_1650_2620#" "li_n1910_3600#" 1.57207
+cap "m1_1540_1550#" "w_1686_386#" 1218.73
+cap "m2_n1840_n2910#" "li_n2010_n3330#" 10841.6
+cap "li_n1910_3600#" "m1_1850_2290#" 849.605
+cap "li_n2010_n3330#" "li_1590_1050#" 4066.91
+cap "m1_n1960_n3240#" "li_n2010_n3330#" 1808.71
+cap "m2_1800_2380#" "m1_1850_2290#" 99.9414
+cap "m1_1540_1550#" "m2_n1840_n2910#" 8447.46
+cap "li_n1910_3600#" "li_n2010_n3330#" 6.96446
+cap "w_1686_386#" "li_1590_1050#" 3026.08
+cap "m1_1540_1550#" "li_1590_1050#" 2781.34
+cap "rf_transistors_0/a_623_n2862#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 1.82843
+cap "rf_transistors_0/a_623_n2862#" "dis_tran_0/m1_90_2440#" -1.16873
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -167.624
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "dis_tran_0/m1_90_2440#" 1667.54
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "dis_tran_0/m1_90_2440#" -680.296
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/a_623_n2862#" 2.21634
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "dis_tran_0/m1_90_2440#" -492.618
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "dis_tran_0/m1_90_2440#" -1908.54
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 214.374
+cap "dis_tran_0/m1_90_2440#" "tia_cur_mirror_0/a_122_42#" 0.719434
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "dis_tran_0/m1_90_2440#" 1823.38
+cap "rf_transistors_0/a_622_n2244#" "dis_tran_0/m1_90_2440#" 201.029
+cap "rf_transistors_0/a_622_n2244#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -173.649
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/m1_571_n2156#" 1.19957
+cap "rf_transistors_0/a_622_n2244#" "rf_transistors_0/m1_571_n2156#" 0.0205882
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "dis_tran_0/m1_90_2440#" -2853.72
+cap "dis_tran_0/m1_90_2440#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -228.484
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 424.931
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/a_622_n2244#" 8.34131
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -92.031
+cap "rf_transistors_0/a_622_n2244#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -195.024
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/m1_571_n2156#" 0.213828
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -58.2504
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/a_122_42#" -784.176
+cap "rf_transistors_0/a_622_n2244#" "rf_transistors_0/m1_571_n2156#" 5.32907e-15
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/a_622_n2244#" -177.366
+cap "dis_tran_0/m1_90_2440#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -2105.22
+cap "dis_tran_0/m1_90_2440#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -4854.96
+cap "dis_tran_0/m1_90_2440#" "tia_cur_mirror_0/a_122_42#" 5.86121
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -610.301
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -631.699
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -464.084
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/a_622_n2244#" 26.7814
+cap "rf_transistors_0/a_622_n2244#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -1757.2
+cap "dis_tran_0/m1_90_2440#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -230.751
+cap "rf_transistors_0/a_622_n2244#" "tia_cur_mirror_0/a_122_42#" 1.6375
+cap "dis_tran_0/m1_90_2440#" "rf_transistors_0/a_622_n2244#" 209.181
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -5848.1
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/a_622_n2244#" 543.237
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -23.535
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 4721.78
+cap "tia_cur_mirror_0/a_122_42#" "rf_transistors_0/m1_1649_n1330#" 289.089
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/a_622_n2244#" 218.808
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 14.0081
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/m1_1649_n1330#" -386.552
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_531#" 3.18514
+cap "rf_transistors_0/a_622_n2244#" "rf_transistors_0/m1_1649_n1330#" 349.981
+cap "tia_cur_mirror_0/a_122_42#" "dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n225_1149#" 1.22396
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "rf_transistors_0/m1_1649_n1330#" 191.955
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/m1_167_370#" -1.47151
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/m1_1649_n1330#" 2769.29
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -48.209
+cap "tia_cur_mirror_0/a_122_42#" "rf_transistors_0/a_622_n2244#" 7.48
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -21.7462
+cap "tia_cur_mirror_0/a_122_42#" "li_1590_1050#" 1.0622
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/a_122_42#" 46.5438
+cap "tia_cur_mirror_0/a_122_42#" "dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n129_531#" 4.2536
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 2778
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 2121.98
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "fb_transistor_0/a_5923_2322#" 0.568834
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "tia_cur_mirror_0/a_122_42#" -486.967
+cap "dis_tran_0/m1_90_1830#" "tia_cur_mirror_0/a_122_42#" 0.545087
+cap "tia_cur_mirror_0/a_122_42#" "li_n2010_n3330#" 1478.51
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -222.759
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "fb_transistor_0/dw_5500_1960#" 7.66025
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1665.2
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 1726.37
+cap "li_n2010_n3330#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 42.2024
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -52.8102
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 3397.88
+cap "fb_transistor_0/a_5923_2322#" "tia_cur_mirror_0/a_122_42#" 3.90766
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "li_n2010_n3330#" 1014.39
+cap "rf_transistors_0/a_622_n2244#" "tia_cur_mirror_0/a_122_42#" 0.117143
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/a_122_42#" 497.666
+cap "dis_tran_0/m1_90_2440#" "tia_cur_mirror_0/a_122_42#" 0.703591
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 1033.6
+cap "li_n2010_n3330#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 258.807
+cap "li_n2010_n3330#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 49.1398
+cap "rf_transistors_0/m1_571_n712#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -598.998
+cap "rf_transistors_0/a_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -1140.36
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/a_2421_22#" -1112.13
+cap "rf_transistors_0/a_2421_22#" "tia_cur_mirror_0/m1_71_130#" 0.0927718
+cap "rf_transistors_0/m1_571_n712#" "rf_transistors_0/a_2421_22#" 233.323
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" -0.885375
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -134.513
+cap "rf_transistors_0/m1_571_n712#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 667.782
+cap "dis_tran_0/m1_90_2440#" "rf_transistors_0/a_2421_22#" -11.5312
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/a_2421_22#" -352.818
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -58.446
+cap "rf_transistors_0/m1_571_n712#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -338.231
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 3.19921
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -2440.66
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -345.18
+cap "rf_transistors_0/m1_571_n712#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -8467.35
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/m1_167_370#" 2.98797
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/m1_167_370#" -275.279
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/m1_167_370#" -1101.08
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 10.697
+cap "rf_transistors_0/m1_571_n712#" "tia_cur_mirror_0/m1_167_370#" 322.128
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -68.6037
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/m1_571_n712#" -375.261
+cap "rf_transistors_0/m1_571_n712#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 221.215
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "tia_cur_mirror_0/m1_167_370#" 1.42722
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/m1_167_370#" -11242.7
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -0.633176
+cap "fb_transistor_0/m1_5811_4163#" "rf_transistors_0/m1_1747_n712#" 338.795
+cap "rf_transistors_0/m1_1747_n712#" "tia_cur_mirror_0/m1_167_370#" -142.353
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 2729.97
+cap "rf_transistors_0/m1_1649_n472#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 1681.57
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "tia_cur_mirror_0/m1_167_370#" 319.635
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -28.848
+cap "tia_cur_mirror_0/a_122_42#" "rf_transistors_0/m1_1649_n472#" 145.057
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 217.075
+cap "tia_cur_mirror_0/m1_167_370#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 589.686
+cap "fb_transistor_0/m1_5811_4163#" "rf_transistors_0/m1_1649_n472#" 79.5561
+cap "rf_transistors_0/m1_1649_n472#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 130.45
+cap "tia_cur_mirror_0/m1_167_370#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 3250.16
+cap "rf_transistors_0/m1_1649_n472#" "tia_cur_mirror_0/m1_167_370#" 2807.61
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -0.0838636
+cap "rf_transistors_0/m1_1747_n712#" "rf_transistors_0/m1_1649_n472#" -176.428
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/m1_167_370#" 135.219
+cap "rf_transistors_0/m1_1747_n712#" "tia_cur_mirror_0/a_122_42#" 29.8323
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -35.3143
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "rf_transistors_0/m1_1649_n472#" 186.749
+cap "fb_transistor_0/m1_5811_4163#" "tia_cur_mirror_0/m1_167_370#" -57.8039
+cap "tia_cur_mirror_0/m1_167_370#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" -204.886
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" -6.28635
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/m1_167_370#" -0.992126
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/a_122_42#" 870.106
+cap "tia_cur_mirror_0/a_122_42#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 676.277
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/a_5923_3450#" 2279.23
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 1613.48
+cap "fb_transistor_0/a_5923_3450#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 1740.54
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 1238.63
+cap "fb_transistor_0/m1_5811_4163#" "fb_transistor_0/a_5923_3450#" 226.851
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/m1_167_370#" 1.37218
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -4.72807
+cap "fb_transistor_0/a_5923_3450#" "tia_cur_mirror_0/m1_167_370#" -65.9043
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 3353.15
+cap "fb_transistor_0/a_5923_3450#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 0.568834
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "rf_transistors_0/m1_3021_n2774#" 0.132095
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" 33.1988
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "tia_cur_mirror_0/m1_167_370#" 98.3882
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 2755.25
+cap "fb_transistor_0/m1_5811_4163#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" 6.03405
+cap "fb_transistor_0/m1_5811_4163#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1621.75
+cap "fb_transistor_0/m1_5811_4163#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 808.824
+cap "tia_cur_mirror_0/a_122_42#" "fb_transistor_0/a_5923_3450#" 13.3922
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/m1_167_370#" 3144.96
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/m1_3021_n2774#" 0.302799
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 602.068
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 503.226
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/m1_167_370#" 2534.92
+cap "fb_transistor_0/m1_5811_4163#" "tia_cur_mirror_0/m1_167_370#" -456.084
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "fb_transistor_0/m1_6165_3028#" 12.7356
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" 365.719
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 19.9042
+cap "rf_transistors_0/a_623_658#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -103.449
+cap "rf_transistors_0/a_623_658#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -1161.54
+cap "rf_transistors_0/m1_669_n472#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -14.1397
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 794.286
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/m1_571_755#" -1.32401
+cap "rf_transistors_0/a_623_658#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -643.069
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/m1_669_n472#" 424.01
+cap "rf_transistors_0/m1_571_755#" "rf_transistors_0/m1_669_n472#" 779.872
+cap "rf_transistors_0/m1_571_755#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 1.2626
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 43.3527
+cap "rf_transistors_0/m1_571_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -117.847
+cap "rf_transistors_0/m1_571_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 273.643
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 29.103
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/m1_669_n472#" 419.897
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -0.32381
+cap "fb_transistor_0/m1_5811_4163#" "rf_transistors_0/m1_571_755#" 0.0585396
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -508.699
+cap "rf_transistors_0/m1_669_n472#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -266.711
+cap "rf_transistors_0/m1_571_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -222.905
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "tia_cur_mirror_0/m1_167_370#" -1115.45
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 12.1199
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -482.134
+cap "rf_transistors_0/m1_669_n472#" "rf_transistors_0/m1_571_755#" -392.318
+cap "rf_transistors_0/m1_571_755#" "tia_cur_mirror_0/m1_167_370#" 342.994
+cap "rf_transistors_0/m1_669_n472#" "tia_cur_mirror_0/m1_167_370#" -2110.06
+cap "rf_transistors_0/m1_571_755#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 190.603
+cap "rf_transistors_0/m1_669_n472#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" 1.2626
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/m1_167_370#" 164.659
+cap "rf_transistors_0/m1_669_n472#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -559.203
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/m1_571_755#" -6517.94
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "tia_cur_mirror_0/m1_167_370#" -9324.33
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1319.67
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "rf_transistors_0/w_2421_22#" -17.0503
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "tia_cur_mirror_0/m1_167_370#" -335.3
+cap "tia_cur_mirror_0/a_122_42#" "tia_cur_mirror_0/m1_167_370#" 2.58016
+cap "fb_transistor_0/m1_5811_4163#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 85.7989
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/w_2421_22#" 2332.88
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "rf_transistors_0/m1_1747_755#" -6.77792
+cap "tia_cur_mirror_0/m1_167_370#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1716.47
+cap "fb_transistor_0/m1_5811_4163#" "tia_cur_mirror_0/m1_167_370#" 18.8936
+cap "fb_transistor_0/m1_5811_4163#" "rf_transistors_0/w_2421_22#" -3.71097
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 661.76
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "rf_transistors_0/m1_1747_755#" 911.148
+cap "rf_transistors_0/w_2421_22#" "tia_cur_mirror_0/m1_167_370#" 3109.64
+cap "tia_cur_mirror_0/a_122_42#" "rf_transistors_0/m1_1747_755#" 4.96581
+cap "fb_transistor_0/m1_5811_4163#" "rf_transistors_0/m1_1747_755#" 732.419
+cap "rf_transistors_0/m1_1747_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 551.993
+cap "tia_cur_mirror_0/m1_167_370#" "rf_transistors_0/m1_1747_755#" -278.515
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "fb_transistor_0/m1_5811_4163#" -1.50903
+cap "rf_transistors_0/m1_1649_n472#" "tia_cur_mirror_0/m1_167_370#" 178.984
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/m1_1747_755#" 1735.06
+cap "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n605_n200#" "tia_cur_mirror_0/m1_167_370#" 11.4337
+cap "rf_transistors_0/w_2421_22#" "tia_cur_mirror_0/m1_167_370#" -17.0249
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/m1_3153_755#" -7.90053
+cap "fb_transistor_0/m1_5811_4163#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 816.544
+cap "tia_cur_mirror_0/m1_167_370#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 1.36287
+cap "rf_transistors_0/m1_3153_755#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -46.0445
+cap "tia_cur_mirror_0/m1_167_370#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 7313.59
+cap "rf_transistors_0/w_2421_22#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -0.123047
+cap "rf_transistors_0/m1_3153_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 5866.45
+cap "tia_cur_mirror_0/m1_167_370#" "fb_transistor_0/m1_5811_4163#" -54.3473
+cap "rf_transistors_0/m1_3153_755#" "fb_transistor_0/m1_5811_4163#" 345.576
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 2632.83
+cap "tia_cur_mirror_0/m1_167_370#" "rf_transistors_0/m1_3153_755#" -129.844
+cap "fb_transistor_0/m1_5811_4163#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 3056.47
+cap "tia_cur_mirror_0/m1_167_370#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" -0.992126
+cap "tia_cur_mirror_0/m1_167_370#" "rf_transistors_0/m1_3021_n1330#" -2.11351
+cap "rf_transistors_0/w_2421_22#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -61.162
+cap "tia_cur_mirror_0/m1_167_370#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 9307.16
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 2159.33
+cap "rf_transistors_0/w_2421_22#" "fb_transistor_0/m1_5811_4163#" 116.616
+cap "rf_transistors_0/m1_3153_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 7223.1
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/dw_5500_1960#" 670.3
+cap "fb_transistor_0/dw_5500_1960#" "fb_transistor_0/m1_6165_3028#" 25.1034
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/m1_669_n472#" -14.1397
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/m1_669_n472#" 23.8635
+cap "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" -0.32381
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/m1_571_755#" 420.938
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 197.15
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 63.828
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/m1_571_755#" 667.617
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "rf_transistors_0/m1_571_755#" 52.9834
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/a_623_658#" 336.954
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/m1_571_755#" 1169.95
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 81.1304
+cap "rf_transistors_0/a_623_658#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 204.643
+cap "rf_transistors_0/a_623_658#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" 1125.01
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/m1_571_755#" -2194.83
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "fb_transistor_0/m1_5811_4163#" 0.505656
+cap "rf_transistors_0/a_623_658#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 0.278491
+cap "rf_transistors_0/m1_571_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -3197.63
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "rf_transistors_0/a_623_658#" -2617.2
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/a_623_658#" -1608.78
+cap "rf_transistors_0/m1_669_n472#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -7.82617
+cap "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -16.6452
+cap "rf_transistors_0/m1_571_755#" "rf_transistors_0/a_623_658#" 631.996
+cap "rf_transistors_0/m1_669_n472#" "rf_transistors_0/a_623_658#" 23.0504
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" -865.592
+cap "rf_transistors_0/a_623_658#" "fb_transistor_0/m1_5811_4163#" 0.612009
+cap "rf_transistors_0/a_623_658#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1336.14
+cap "rf_transistors_0/m1_1747_755#" "rf_transistors_0/w_2421_22#" 4011.24
+cap "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "rf_transistors_0/w_2421_22#" 14.4334
+cap "rf_transistors_0/m1_1747_755#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -9.9509
+cap "rf_transistors_0/m1_1747_755#" "fb_transistor_0/m1_5811_4163#" -0.274164
+cap "rf_transistors_0/m1_1747_755#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1437.5
+cap "rf_transistors_0/m1_1747_755#" "rf_transistors_0/a_623_658#" 177.671
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "rf_transistors_0/w_2421_22#" -4078.7
+cap "rf_transistors_0/w_2421_22#" "fb_transistor_0/m1_5811_4163#" -195.089
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1056.54
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" -146.929
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "fb_transistor_0/m1_5811_4163#" 125.391
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/a_623_658#" 4184.52
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/m1_5811_4163#" 86.3905
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "rf_transistors_0/a_623_658#" 4.67552
+cap "rf_transistors_0/m1_3153_755#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" -42.0893
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "fb_transistor_0/m1_5811_4163#" 1104.25
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 489.224
+cap "rf_transistors_0/a_623_n908#" "fb_transistor_0/m1_5811_4163#" -1.4312
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/a_623_n908#" -13.8443
+cap "rf_transistors_0/w_2421_22#" "fb_transistor_0/m1_5811_4163#" 196.836
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" 2293.84
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "rf_transistors_0/a_623_n908#" 0.455013
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/m1_5811_4163#" 1754.27
+cap "rf_transistors_0/w_2421_22#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 1622.16
+cap "rf_transistors_0/w_2421_22#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 1122.29
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "fb_transistor_0/m1_5811_4163#" 892.2
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/m1_3153_755#" -7.41023
+cap "rf_transistors_0/m1_3153_755#" "fb_transistor_0/m1_5811_4163#" -6.15951
+cap "rf_transistors_0/a_2421_658#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" 1.13775
+cap "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" 2921.45
+cap "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "fb_transistor_0/dw_5500_1960#" 266.088
+cap "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" -0.370861
+cap "rf_transistors_0/w_2421_22#" "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" -1.21333
+merge "fb_transistor_0/m1_7233_4403#" "fb_transistor_0/m1_6917_4403#" 16126.7 0 0 0 0 -5518176 -2528 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10598290 -31497 0 0 79320350 -16206 0 0 0 0 43520 -828 0 0
+merge "fb_transistor_0/m1_6917_4403#" "fb_transistor_0/m1_6601_4403#"
+merge "fb_transistor_0/m1_6601_4403#" "fb_transistor_0/m1_6285_4403#"
+merge "fb_transistor_0/m1_6285_4403#" "fb_transistor_0/m1_5969_4403#"
+merge "fb_transistor_0/m1_5969_4403#" "rf_transistors_0/m1_3839_995#"
+merge "rf_transistors_0/m1_3839_995#" "rf_transistors_0/m1_3643_995#"
+merge "rf_transistors_0/m1_3643_995#" "rf_transistors_0/m1_3447_995#"
+merge "rf_transistors_0/m1_3447_995#" "rf_transistors_0/w_2421_22#"
+merge "rf_transistors_0/w_2421_22#" "w_1650_2620#"
+merge "w_1650_2620#" "rf_transistors_0/m1_3251_995#"
+merge "rf_transistors_0/m1_3251_995#" "rf_transistors_0/m1_3055_995#"
+merge "rf_transistors_0/m1_3055_995#" "rf_transistors_0/m1_2859_995#"
+merge "rf_transistors_0/m1_2859_995#" "rf_transistors_0/m1_2663_995#"
+merge "rf_transistors_0/m1_2663_995#" "rf_transistors_0/m1_2467_995#"
+merge "rf_transistors_0/m1_2467_995#" "rf_transistors_0/m1_2041_995#"
+merge "rf_transistors_0/m1_2041_995#" "rf_transistors_0/m1_1845_995#"
+merge "rf_transistors_0/m1_1845_995#" "rf_transistors_0/m1_1649_995#"
+merge "rf_transistors_0/m1_1649_995#" "rf_transistors_0/m1_1453_995#"
+merge "rf_transistors_0/m1_1453_995#" "rf_transistors_0/m1_1257_995#"
+merge "rf_transistors_0/m1_1257_995#" "rf_transistors_0/m1_1061_995#"
+merge "rf_transistors_0/m1_1061_995#" "rf_transistors_0/m1_865_995#"
+merge "rf_transistors_0/m1_865_995#" "rf_transistors_0/m1_669_995#"
+merge "rf_transistors_0/m1_669_995#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#"
+merge "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/c2_n2751_n1800#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#"
+merge "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_2/w_n902_n737#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/w_n957_n419#" "rf_transistors_0/m1_3839_119#"
+merge "rf_transistors_0/m1_3839_119#" "rf_transistors_0/m1_3643_119#"
+merge "rf_transistors_0/m1_3643_119#" "rf_transistors_0/m1_3447_119#"
+merge "rf_transistors_0/m1_3447_119#" "rf_transistors_0/m1_3251_119#"
+merge "rf_transistors_0/m1_3251_119#" "rf_transistors_0/m1_3055_119#"
+merge "rf_transistors_0/m1_3055_119#" "rf_transistors_0/m1_2859_119#"
+merge "rf_transistors_0/m1_2859_119#" "rf_transistors_0/m1_2663_119#"
+merge "rf_transistors_0/m1_2663_119#" "rf_transistors_0/m1_2467_119#"
+merge "rf_transistors_0/m1_2467_119#" "rf_transistors_0/m1_2041_119#"
+merge "rf_transistors_0/m1_2041_119#" "rf_transistors_0/m1_1845_119#"
+merge "rf_transistors_0/m1_1845_119#" "rf_transistors_0/m1_1649_119#"
+merge "rf_transistors_0/m1_1649_119#" "rf_transistors_0/m1_1453_119#"
+merge "rf_transistors_0/m1_1453_119#" "rf_transistors_0/m1_1257_119#"
+merge "rf_transistors_0/m1_1257_119#" "rf_transistors_0/m1_1061_119#"
+merge "rf_transistors_0/m1_1061_119#" "rf_transistors_0/m1_865_119#"
+merge "rf_transistors_0/m1_865_119#" "rf_transistors_0/m1_669_119#"
+merge "rf_transistors_0/m1_669_119#" "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#"
+merge "rf_transistors_0/sky130_fd_pr__pfet_01v8_NZHYX4_1/w_n902_n737#" "li_n1910_3600#"
+merge "rf_transistors_0/m1_3741_359#" "rf_transistors_0/m1_3545_359#" 65229.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -9219560 -9056 172489906 -37192 -7357800 0 0 0 0 0 0 0
+merge "rf_transistors_0/m1_3545_359#" "rf_transistors_0/m1_3741_755#"
+merge "rf_transistors_0/m1_3741_755#" "rf_transistors_0/m1_3545_755#"
+merge "rf_transistors_0/m1_3545_755#" "rf_transistors_0/m1_3349_359#"
+merge "rf_transistors_0/m1_3349_359#" "rf_transistors_0/m1_3153_359#"
+merge "rf_transistors_0/m1_3153_359#" "rf_transistors_0/m1_2957_359#"
+merge "rf_transistors_0/m1_2957_359#" "rf_transistors_0/m1_2761_359#"
+merge "rf_transistors_0/m1_2761_359#" "rf_transistors_0/m1_2565_359#"
+merge "rf_transistors_0/m1_2565_359#" "rf_transistors_0/m1_2369_359#"
+merge "rf_transistors_0/m1_2369_359#" "rf_transistors_0/m1_1943_359#"
+merge "rf_transistors_0/m1_1943_359#" "rf_transistors_0/m1_1747_359#"
+merge "rf_transistors_0/m1_1747_359#" "rf_transistors_0/m1_1551_359#"
+merge "rf_transistors_0/m1_1551_359#" "rf_transistors_0/m1_1355_359#"
+merge "rf_transistors_0/m1_1355_359#" "rf_transistors_0/m1_1159_359#"
+merge "rf_transistors_0/m1_1159_359#" "rf_transistors_0/m1_963_359#"
+merge "rf_transistors_0/m1_963_359#" "rf_transistors_0/m1_767_359#"
+merge "rf_transistors_0/m1_767_359#" "rf_transistors_0/m1_571_359#"
+merge "rf_transistors_0/m1_571_359#" "rf_transistors_0/m1_3349_755#"
+merge "rf_transistors_0/m1_3349_755#" "rf_transistors_0/m1_3153_755#"
+merge "rf_transistors_0/m1_3153_755#" "rf_transistors_0/m1_2957_755#"
+merge "rf_transistors_0/m1_2957_755#" "rf_transistors_0/m1_2761_755#"
+merge "rf_transistors_0/m1_2761_755#" "rf_transistors_0/m1_2565_755#"
+merge "rf_transistors_0/m1_2565_755#" "rf_transistors_0/m1_2369_755#"
+merge "rf_transistors_0/m1_2369_755#" "rf_transistors_0/m1_1943_755#"
+merge "rf_transistors_0/m1_1943_755#" "rf_transistors_0/m1_1747_755#"
+merge "rf_transistors_0/m1_1747_755#" "rf_transistors_0/m1_1551_755#"
+merge "rf_transistors_0/m1_1551_755#" "rf_transistors_0/m1_1355_755#"
+merge "rf_transistors_0/m1_1355_755#" "rf_transistors_0/m1_1159_755#"
+merge "rf_transistors_0/m1_1159_755#" "rf_transistors_0/m1_963_755#"
+merge "rf_transistors_0/m1_963_755#" "rf_transistors_0/m1_767_755#"
+merge "rf_transistors_0/m1_767_755#" "rf_transistors_0/m1_571_755#"
+merge "rf_transistors_0/m1_571_755#" "fb_transistor_0/a_5923_2832#"
+merge "fb_transistor_0/a_5923_2832#" "fb_transistor_0/a_5923_3450#"
+merge "fb_transistor_0/a_5923_3450#" "rf_transistors_0/m1_2923_n1090#"
+merge "rf_transistors_0/m1_2923_n1090#" "rf_transistors_0/m1_2727_n1090#"
+merge "rf_transistors_0/m1_2727_n1090#" "rf_transistors_0/m1_2531_n1090#"
+merge "rf_transistors_0/m1_2531_n1090#" "rf_transistors_0/m1_2335_n1090#"
+merge "rf_transistors_0/m1_2335_n1090#" "rf_transistors_0/m1_2139_n1090#"
+merge "rf_transistors_0/m1_2139_n1090#" "rf_transistors_0/m1_1943_n1090#"
+merge "rf_transistors_0/m1_1943_n1090#" "rf_transistors_0/m1_1747_n1090#"
+merge "rf_transistors_0/m1_1747_n1090#" "rf_transistors_0/m1_1551_n1090#"
+merge "rf_transistors_0/m1_1551_n1090#" "rf_transistors_0/m1_1355_n1090#"
+merge "rf_transistors_0/m1_1355_n1090#" "rf_transistors_0/m1_1159_n1090#"
+merge "rf_transistors_0/m1_1159_n1090#" "rf_transistors_0/m1_963_n1090#"
+merge "rf_transistors_0/m1_963_n1090#" "rf_transistors_0/m1_767_n1090#"
+merge "rf_transistors_0/m1_767_n1090#" "rf_transistors_0/m1_571_n1090#"
+merge "rf_transistors_0/m1_571_n1090#" "rf_transistors_0/m1_2923_n712#"
+merge "rf_transistors_0/m1_2923_n712#" "rf_transistors_0/m1_2727_n712#"
+merge "rf_transistors_0/m1_2727_n712#" "rf_transistors_0/m1_2531_n712#"
+merge "rf_transistors_0/m1_2531_n712#" "rf_transistors_0/m1_2335_n712#"
+merge "rf_transistors_0/m1_2335_n712#" "rf_transistors_0/m1_2139_n712#"
+merge "rf_transistors_0/m1_2139_n712#" "rf_transistors_0/m1_1943_n712#"
+merge "rf_transistors_0/m1_1943_n712#" "rf_transistors_0/m1_1747_n712#"
+merge "rf_transistors_0/m1_1747_n712#" "rf_transistors_0/m1_1551_n712#"
+merge "rf_transistors_0/m1_1551_n712#" "rf_transistors_0/m1_1355_n712#"
+merge "rf_transistors_0/m1_1355_n712#" "rf_transistors_0/m1_1159_n712#"
+merge "rf_transistors_0/m1_1159_n712#" "rf_transistors_0/m1_963_n712#"
+merge "rf_transistors_0/m1_963_n712#" "rf_transistors_0/m1_767_n712#"
+merge "rf_transistors_0/m1_767_n712#" "rf_transistors_0/m1_571_n712#"
+merge "rf_transistors_0/m1_571_n712#" "fb_transistor_0/a_5923_2322#"
+merge "fb_transistor_0/a_5923_2322#" "rf_transistors_0/m1_2923_n2534#"
+merge "rf_transistors_0/m1_2923_n2534#" "rf_transistors_0/m1_2727_n2534#"
+merge "rf_transistors_0/m1_2727_n2534#" "rf_transistors_0/m1_2531_n2534#"
+merge "rf_transistors_0/m1_2531_n2534#" "rf_transistors_0/m1_2335_n2534#"
+merge "rf_transistors_0/m1_2335_n2534#" "rf_transistors_0/m1_2139_n2534#"
+merge "rf_transistors_0/m1_2139_n2534#" "rf_transistors_0/m1_1943_n2534#"
+merge "rf_transistors_0/m1_1943_n2534#" "rf_transistors_0/m1_1747_n2534#"
+merge "rf_transistors_0/m1_1747_n2534#" "rf_transistors_0/m1_1551_n2534#"
+merge "rf_transistors_0/m1_1551_n2534#" "rf_transistors_0/m1_1355_n2534#"
+merge "rf_transistors_0/m1_1355_n2534#" "rf_transistors_0/m1_1159_n2534#"
+merge "rf_transistors_0/m1_1159_n2534#" "rf_transistors_0/m1_963_n2534#"
+merge "rf_transistors_0/m1_963_n2534#" "rf_transistors_0/m1_767_n2534#"
+merge "rf_transistors_0/m1_767_n2534#" "rf_transistors_0/m1_571_n2534#"
+merge "rf_transistors_0/m1_571_n2534#" "rf_transistors_0/m1_2923_n2156#"
+merge "rf_transistors_0/m1_2923_n2156#" "rf_transistors_0/m1_2727_n2156#"
+merge "rf_transistors_0/m1_2727_n2156#" "rf_transistors_0/m1_2531_n2156#"
+merge "rf_transistors_0/m1_2531_n2156#" "rf_transistors_0/m1_2335_n2156#"
+merge "rf_transistors_0/m1_2335_n2156#" "rf_transistors_0/m1_2139_n2156#"
+merge "rf_transistors_0/m1_2139_n2156#" "rf_transistors_0/m1_1943_n2156#"
+merge "rf_transistors_0/m1_1943_n2156#" "rf_transistors_0/m1_1747_n2156#"
+merge "rf_transistors_0/m1_1747_n2156#" "rf_transistors_0/m1_1551_n2156#"
+merge "rf_transistors_0/m1_1551_n2156#" "rf_transistors_0/m1_1355_n2156#"
+merge "rf_transistors_0/m1_1355_n2156#" "rf_transistors_0/m1_1159_n2156#"
+merge "rf_transistors_0/m1_1159_n2156#" "rf_transistors_0/m1_963_n2156#"
+merge "rf_transistors_0/m1_963_n2156#" "rf_transistors_0/m1_767_n2156#"
+merge "rf_transistors_0/m1_767_n2156#" "rf_transistors_0/m1_571_n2156#"
+merge "rf_transistors_0/m1_571_n2156#" "m1_1540_1550#"
+merge "fb_transistor_0/m1_7243_3268#" "fb_transistor_0/m1_7047_3268#" 14839.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 34845715 -10088 0 0 0 0 0 0 0 0
+merge "fb_transistor_0/m1_7047_3268#" "fb_transistor_0/m1_6851_3268#"
+merge "fb_transistor_0/m1_6851_3268#" "fb_transistor_0/m1_6655_3268#"
+merge "fb_transistor_0/m1_6655_3268#" "fb_transistor_0/m1_6459_3268#"
+merge "fb_transistor_0/m1_6459_3268#" "fb_transistor_0/m1_7391_4163#"
+merge "fb_transistor_0/m1_7391_4163#" "fb_transistor_0/m1_7075_4163#"
+merge "fb_transistor_0/m1_7075_4163#" "fb_transistor_0/m1_6759_4163#"
+merge "fb_transistor_0/m1_6759_4163#" "fb_transistor_0/m1_6443_4163#"
+merge "fb_transistor_0/m1_6443_4163#" "fb_transistor_0/m1_6263_3268#"
+merge "fb_transistor_0/m1_6263_3268#" "fb_transistor_0/m1_6067_3268#"
+merge "fb_transistor_0/m1_6067_3268#" "fb_transistor_0/m1_5871_3268#"
+merge "fb_transistor_0/m1_5871_3268#" "fb_transistor_0/m1_6127_4163#"
+merge "fb_transistor_0/m1_6127_4163#" "fb_transistor_0/m1_5811_4163#"
+merge "fb_transistor_0/m1_5811_4163#" "fb_transistor_0/m1_7243_2410#"
+merge "fb_transistor_0/m1_7243_2410#" "fb_transistor_0/m1_7047_2410#"
+merge "fb_transistor_0/m1_7047_2410#" "fb_transistor_0/m1_6851_2410#"
+merge "fb_transistor_0/m1_6851_2410#" "fb_transistor_0/m1_6655_2410#"
+merge "fb_transistor_0/m1_6655_2410#" "fb_transistor_0/m1_6459_2410#"
+merge "fb_transistor_0/m1_6459_2410#" "fb_transistor_0/m1_6263_2410#"
+merge "fb_transistor_0/m1_6263_2410#" "fb_transistor_0/m1_6067_2410#"
+merge "fb_transistor_0/m1_6067_2410#" "fb_transistor_0/m1_5871_2410#"
+merge "fb_transistor_0/m1_5871_2410#" "m2_1800_2380#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_661_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" -24709.1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -40012480 -5160 0 0 0 0 0 0 0 0 0 0
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_503_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_345_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_187_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_29_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n129_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n287_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n445_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n603_n297#" "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#"
+merge "fb_transistor_0/sky130_fd_pr__pfet_01v8_GYVK57_0/a_n761_n297#" "m1_1850_2290#"
+merge "fb_transistor_0/VSUBS" "dis_tran_0/VSUBS" 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+merge "dis_tran_0/VSUBS" "rf_transistors_0/VSUBS"
+merge "rf_transistors_0/VSUBS" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/VSUBS"
+merge "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/VSUBS" "tia_cur_mirror_0/VSUBS"
+merge "tia_cur_mirror_0/VSUBS" "VSUBS"
+merge "rf_transistors_0/m1_3021_n472#" "rf_transistors_0/m1_2825_n472#" 45558.9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47684792 -47124 0 0 273600 -1000 0 0 0 0
+merge "rf_transistors_0/m1_2825_n472#" "rf_transistors_0/m1_2629_n472#"
+merge "rf_transistors_0/m1_2629_n472#" "rf_transistors_0/m1_2433_n472#"
+merge "rf_transistors_0/m1_2433_n472#" "rf_transistors_0/m1_2237_n472#"
+merge "rf_transistors_0/m1_2237_n472#" "rf_transistors_0/m1_2041_n472#"
+merge "rf_transistors_0/m1_2041_n472#" "rf_transistors_0/m1_1845_n472#"
+merge "rf_transistors_0/m1_1845_n472#" "rf_transistors_0/m1_1649_n472#"
+merge "rf_transistors_0/m1_1649_n472#" "rf_transistors_0/m1_1453_n472#"
+merge "rf_transistors_0/m1_1453_n472#" "rf_transistors_0/m1_1257_n472#"
+merge "rf_transistors_0/m1_1257_n472#" "rf_transistors_0/m1_1061_n472#"
+merge "rf_transistors_0/m1_1061_n472#" "rf_transistors_0/m1_865_n472#"
+merge "rf_transistors_0/m1_865_n472#" "rf_transistors_0/m1_669_n472#"
+merge "rf_transistors_0/m1_669_n472#" "rf_transistors_0/m1_3021_n1916#"
+merge "rf_transistors_0/m1_3021_n1916#" "rf_transistors_0/m1_2825_n1916#"
+merge "rf_transistors_0/m1_2825_n1916#" "rf_transistors_0/m1_2629_n1916#"
+merge "rf_transistors_0/m1_2629_n1916#" "rf_transistors_0/m1_2433_n1916#"
+merge "rf_transistors_0/m1_2433_n1916#" "rf_transistors_0/m1_2237_n1916#"
+merge "rf_transistors_0/m1_2237_n1916#" "rf_transistors_0/m1_2041_n1916#"
+merge "rf_transistors_0/m1_2041_n1916#" "rf_transistors_0/m1_1845_n1916#"
+merge "rf_transistors_0/m1_1845_n1916#" "rf_transistors_0/m1_1649_n1916#"
+merge "rf_transistors_0/m1_1649_n1916#" "rf_transistors_0/m1_1453_n1916#"
+merge "rf_transistors_0/m1_1453_n1916#" "rf_transistors_0/m1_1257_n1916#"
+merge "rf_transistors_0/m1_1257_n1916#" "rf_transistors_0/m1_1061_n1916#"
+merge "rf_transistors_0/m1_1061_n1916#" "rf_transistors_0/m1_865_n1916#"
+merge "rf_transistors_0/m1_865_n1916#" "rf_transistors_0/m1_669_n1916#"
+merge "rf_transistors_0/m1_669_n1916#" "rf_transistors_0/m1_3021_n1330#"
+merge "rf_transistors_0/m1_3021_n1330#" "rf_transistors_0/m1_2825_n1330#"
+merge "rf_transistors_0/m1_2825_n1330#" "rf_transistors_0/m1_2629_n1330#"
+merge "rf_transistors_0/m1_2629_n1330#" "rf_transistors_0/m1_2433_n1330#"
+merge "rf_transistors_0/m1_2433_n1330#" "rf_transistors_0/m1_2237_n1330#"
+merge "rf_transistors_0/m1_2237_n1330#" "rf_transistors_0/m1_2041_n1330#"
+merge "rf_transistors_0/m1_2041_n1330#" "rf_transistors_0/m1_1845_n1330#"
+merge "rf_transistors_0/m1_1845_n1330#" "rf_transistors_0/m1_1649_n1330#"
+merge "rf_transistors_0/m1_1649_n1330#" "rf_transistors_0/m1_1453_n1330#"
+merge "rf_transistors_0/m1_1453_n1330#" "rf_transistors_0/m1_1257_n1330#"
+merge "rf_transistors_0/m1_1257_n1330#" "rf_transistors_0/m1_1061_n1330#"
+merge "rf_transistors_0/m1_1061_n1330#" "rf_transistors_0/m1_865_n1330#"
+merge "rf_transistors_0/m1_865_n1330#" "rf_transistors_0/m1_669_n1330#"
+merge "rf_transistors_0/m1_669_n1330#" "dis_tran_0/m1_2382_397#"
+merge "dis_tran_0/m1_2382_397#" "dis_tran_0/m1_2190_397#"
+merge "dis_tran_0/m1_2190_397#" "dis_tran_0/m1_1998_397#"
+merge "dis_tran_0/m1_1998_397#" "dis_tran_0/m1_1806_397#"
+merge "dis_tran_0/m1_1806_397#" "dis_tran_0/m1_1614_397#"
+merge "dis_tran_0/m1_1614_397#" "dis_tran_0/m1_1422_397#"
+merge "dis_tran_0/m1_1422_397#" "dis_tran_0/m1_1230_397#"
+merge "dis_tran_0/m1_1230_397#" "dis_tran_0/m1_1038_397#"
+merge "dis_tran_0/m1_1038_397#" "dis_tran_0/m1_846_397#"
+merge "dis_tran_0/m1_846_397#" "dis_tran_0/m1_654_397#"
+merge "dis_tran_0/m1_654_397#" "dis_tran_0/m1_462_397#"
+merge "dis_tran_0/m1_462_397#" "dis_tran_0/m1_270_397#"
+merge "dis_tran_0/m1_270_397#" "dis_tran_0/m1_78_397#"
+merge "dis_tran_0/m1_78_397#" "dis_tran_0/m1_2382_775#"
+merge "dis_tran_0/m1_2382_775#" "dis_tran_0/m1_2190_775#"
+merge "dis_tran_0/m1_2190_775#" "dis_tran_0/m1_1998_775#"
+merge "dis_tran_0/m1_1998_775#" "dis_tran_0/m1_1806_775#"
+merge "dis_tran_0/m1_1806_775#" "dis_tran_0/m1_1614_775#"
+merge "dis_tran_0/m1_1614_775#" "dis_tran_0/m1_1422_775#"
+merge "dis_tran_0/m1_1422_775#" "dis_tran_0/m1_1230_775#"
+merge "dis_tran_0/m1_1230_775#" "dis_tran_0/m1_1038_775#"
+merge "dis_tran_0/m1_1038_775#" "dis_tran_0/m1_846_775#"
+merge "dis_tran_0/m1_846_775#" "dis_tran_0/m1_654_775#"
+merge "dis_tran_0/m1_654_775#" "dis_tran_0/m1_462_775#"
+merge "dis_tran_0/m1_462_775#" "dis_tran_0/m1_270_775#"
+merge "dis_tran_0/m1_270_775#" "dis_tran_0/m1_78_775#"
+merge "dis_tran_0/m1_78_775#" "dis_tran_0/m1_2382_1633#"
+merge "dis_tran_0/m1_2382_1633#" "dis_tran_0/m1_2190_1633#"
+merge "dis_tran_0/m1_2190_1633#" "dis_tran_0/m1_1998_1633#"
+merge "dis_tran_0/m1_1998_1633#" "dis_tran_0/m1_1806_1633#"
+merge "dis_tran_0/m1_1806_1633#" "dis_tran_0/m1_1614_1633#"
+merge "dis_tran_0/m1_1614_1633#" "dis_tran_0/m1_1422_1633#"
+merge "dis_tran_0/m1_1422_1633#" "dis_tran_0/m1_1230_1633#"
+merge "dis_tran_0/m1_1230_1633#" "dis_tran_0/m1_1038_1633#"
+merge "dis_tran_0/m1_1038_1633#" "dis_tran_0/m1_846_1633#"
+merge "dis_tran_0/m1_846_1633#" "dis_tran_0/m1_654_1633#"
+merge "dis_tran_0/m1_654_1633#" "dis_tran_0/m1_462_1633#"
+merge "dis_tran_0/m1_462_1633#" "dis_tran_0/m1_270_1633#"
+merge "dis_tran_0/m1_270_1633#" "dis_tran_0/m1_78_1633#"
+merge "dis_tran_0/m1_78_1633#" "dis_tran_0/m1_2382_2011#"
+merge "dis_tran_0/m1_2382_2011#" "dis_tran_0/m1_2190_2011#"
+merge "dis_tran_0/m1_2190_2011#" "dis_tran_0/m1_1998_2011#"
+merge "dis_tran_0/m1_1998_2011#" "dis_tran_0/m1_1806_2011#"
+merge "dis_tran_0/m1_1806_2011#" "dis_tran_0/m1_1614_2011#"
+merge "dis_tran_0/m1_1614_2011#" "dis_tran_0/m1_1422_2011#"
+merge "dis_tran_0/m1_1422_2011#" "dis_tran_0/m1_1230_2011#"
+merge "dis_tran_0/m1_1230_2011#" "dis_tran_0/m1_1038_2011#"
+merge "dis_tran_0/m1_1038_2011#" "dis_tran_0/m1_846_2011#"
+merge "dis_tran_0/m1_846_2011#" "dis_tran_0/m1_654_2011#"
+merge "dis_tran_0/m1_654_2011#" "dis_tran_0/m1_462_2011#"
+merge "dis_tran_0/m1_462_2011#" "dis_tran_0/m1_270_2011#"
+merge "dis_tran_0/m1_270_2011#" "dis_tran_0/m1_78_2011#"
+merge "dis_tran_0/m1_78_2011#" "rf_transistors_0/m1_3021_n2774#"
+merge "rf_transistors_0/m1_3021_n2774#" "rf_transistors_0/m1_2825_n2774#"
+merge "rf_transistors_0/m1_2825_n2774#" "rf_transistors_0/m1_2629_n2774#"
+merge "rf_transistors_0/m1_2629_n2774#" "rf_transistors_0/m1_2433_n2774#"
+merge "rf_transistors_0/m1_2433_n2774#" "rf_transistors_0/m1_2237_n2774#"
+merge "rf_transistors_0/m1_2237_n2774#" "rf_transistors_0/m1_2041_n2774#"
+merge "rf_transistors_0/m1_2041_n2774#" "rf_transistors_0/m1_1845_n2774#"
+merge "rf_transistors_0/m1_1845_n2774#" "rf_transistors_0/m1_1649_n2774#"
+merge "rf_transistors_0/m1_1649_n2774#" "rf_transistors_0/m1_1453_n2774#"
+merge "rf_transistors_0/m1_1453_n2774#" "rf_transistors_0/m1_1257_n2774#"
+merge "rf_transistors_0/m1_1257_n2774#" "rf_transistors_0/m1_1061_n2774#"
+merge "rf_transistors_0/m1_1061_n2774#" "rf_transistors_0/m1_865_n2774#"
+merge "rf_transistors_0/m1_865_n2774#" "rf_transistors_0/m1_669_n2774#"
+merge "rf_transistors_0/m1_669_n2774#" "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#"
+merge "sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0/m4_n2851_n1900#" "m2_n1840_n2910#"
+merge "rf_transistors_0/a_2421_658#" "rf_transistors_0/a_2421_550#" -82732 -202176 -6752 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9844328 -12248 -112979848 -35300 -51971820 -7880 0 0 0 0 0 0 0 0
+merge "rf_transistors_0/a_2421_550#" "rf_transistors_0/a_2421_1186#"
+merge "rf_transistors_0/a_2421_1186#" "rf_transistors_0/a_623_550#"
+merge "rf_transistors_0/a_623_550#" "rf_transistors_0/a_623_658#"
+merge "rf_transistors_0/a_623_658#" "fb_transistor_0/m1_7341_3028#"
+merge "fb_transistor_0/m1_7341_3028#" "fb_transistor_0/m1_7145_3028#"
+merge "fb_transistor_0/m1_7145_3028#" "fb_transistor_0/m1_6949_3028#"
+merge "fb_transistor_0/m1_6949_3028#" "fb_transistor_0/m1_6753_3028#"
+merge "fb_transistor_0/m1_6753_3028#" "fb_transistor_0/m1_6557_3028#"
+merge "fb_transistor_0/m1_6557_3028#" "fb_transistor_0/m1_6361_3028#"
+merge "fb_transistor_0/m1_6361_3028#" "fb_transistor_0/m1_6165_3028#"
+merge "fb_transistor_0/m1_6165_3028#" "fb_transistor_0/m1_5969_3028#"
+merge "fb_transistor_0/m1_5969_3028#" "rf_transistors_0/a_623_22#"
+merge "rf_transistors_0/a_623_22#" "rf_transistors_0/a_623_n908#"
+merge "rf_transistors_0/a_623_n908#" "rf_transistors_0/a_622_n290#"
+merge "rf_transistors_0/a_622_n290#" "rf_transistors_0/a_2421_22#"
+merge "rf_transistors_0/a_2421_22#" "fb_transistor_0/m1_7341_2650#"
+merge "fb_transistor_0/m1_7341_2650#" "fb_transistor_0/m1_7145_2650#"
+merge "fb_transistor_0/m1_7145_2650#" "fb_transistor_0/m1_6949_2650#"
+merge "fb_transistor_0/m1_6949_2650#" "fb_transistor_0/m1_6753_2650#"
+merge "fb_transistor_0/m1_6753_2650#" "fb_transistor_0/m1_6557_2650#"
+merge "fb_transistor_0/m1_6557_2650#" "fb_transistor_0/m1_6361_2650#"
+merge "fb_transistor_0/m1_6361_2650#" "fb_transistor_0/m1_6165_2650#"
+merge "fb_transistor_0/m1_6165_2650#" "fb_transistor_0/m1_5969_2650#"
+merge "fb_transistor_0/m1_5969_2650#" "fb_transistor_0/w_5706_2166#"
+merge "fb_transistor_0/w_5706_2166#" "w_1686_386#"
+merge "w_1686_386#" "tia_cur_mirror_0/m1_167_370#"
+merge "tia_cur_mirror_0/m1_167_370#" "rf_transistors_0/a_623_n1418#"
+merge "rf_transistors_0/a_623_n1418#" "rf_transistors_0/a_623_n2352#"
+merge "rf_transistors_0/a_623_n2352#" "rf_transistors_0/a_622_n2244#"
+merge "rf_transistors_0/a_622_n2244#" "rf_transistors_0/a_623_n2862#"
+merge "rf_transistors_0/a_623_n2862#" "li_1590_1050#"
+merge "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_1/a_n1356_n683#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" -62571 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -62427212 -48000 0 0 6858858 -24236 0 0 0 0 3043200 -3700 0 0
+merge "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_854667_0/a_n905_n374#" "dis_tran_0/m1_2478_157#"
+merge "dis_tran_0/m1_2478_157#" "dis_tran_0/m1_2286_157#"
+merge "dis_tran_0/m1_2286_157#" "dis_tran_0/m1_2094_157#"
+merge "dis_tran_0/m1_2094_157#" "dis_tran_0/m1_1902_157#"
+merge "dis_tran_0/m1_1902_157#" "dis_tran_0/m1_1710_157#"
+merge "dis_tran_0/m1_1710_157#" "dis_tran_0/m1_1518_157#"
+merge "dis_tran_0/m1_1518_157#" "dis_tran_0/m1_1326_157#"
+merge "dis_tran_0/m1_1326_157#" "dis_tran_0/m1_1134_157#"
+merge "dis_tran_0/m1_1134_157#" "dis_tran_0/m1_942_157#"
+merge "dis_tran_0/m1_942_157#" "dis_tran_0/m1_750_157#"
+merge "dis_tran_0/m1_750_157#" "dis_tran_0/m1_558_157#"
+merge "dis_tran_0/m1_558_157#" "dis_tran_0/m1_366_157#"
+merge "dis_tran_0/m1_366_157#" "dis_tran_0/m1_174_157#"
+merge "dis_tran_0/m1_174_157#" "dis_tran_0/m1_2478_1015#"
+merge "dis_tran_0/m1_2478_1015#" "dis_tran_0/m1_2286_1015#"
+merge "dis_tran_0/m1_2286_1015#" "dis_tran_0/m1_2094_1015#"
+merge "dis_tran_0/m1_2094_1015#" "dis_tran_0/m1_1902_1015#"
+merge "dis_tran_0/m1_1902_1015#" "dis_tran_0/m1_1710_1015#"
+merge "dis_tran_0/m1_1710_1015#" "dis_tran_0/m1_1518_1015#"
+merge "dis_tran_0/m1_1518_1015#" "dis_tran_0/m1_1326_1015#"
+merge "dis_tran_0/m1_1326_1015#" "dis_tran_0/m1_1134_1015#"
+merge "dis_tran_0/m1_1134_1015#" "dis_tran_0/m1_942_1015#"
+merge "dis_tran_0/m1_942_1015#" "dis_tran_0/m1_750_1015#"
+merge "dis_tran_0/m1_750_1015#" "dis_tran_0/m1_558_1015#"
+merge "dis_tran_0/m1_558_1015#" "dis_tran_0/m1_366_1015#"
+merge "dis_tran_0/m1_366_1015#" "dis_tran_0/m1_174_1015#"
+merge "dis_tran_0/m1_174_1015#" "dis_tran_0/m1_2478_1393#"
+merge "dis_tran_0/m1_2478_1393#" "dis_tran_0/m1_2286_1393#"
+merge "dis_tran_0/m1_2286_1393#" "dis_tran_0/m1_2094_1393#"
+merge "dis_tran_0/m1_2094_1393#" "dis_tran_0/m1_1902_1393#"
+merge "dis_tran_0/m1_1902_1393#" "dis_tran_0/m1_1710_1393#"
+merge "dis_tran_0/m1_1710_1393#" "dis_tran_0/m1_1518_1393#"
+merge "dis_tran_0/m1_1518_1393#" "dis_tran_0/m1_1326_1393#"
+merge "dis_tran_0/m1_1326_1393#" "dis_tran_0/m1_1134_1393#"
+merge "dis_tran_0/m1_1134_1393#" "dis_tran_0/m1_942_1393#"
+merge "dis_tran_0/m1_942_1393#" "dis_tran_0/m1_750_1393#"
+merge "dis_tran_0/m1_750_1393#" "dis_tran_0/m1_558_1393#"
+merge "dis_tran_0/m1_558_1393#" "dis_tran_0/m1_366_1393#"
+merge "dis_tran_0/m1_366_1393#" "dis_tran_0/m1_174_1393#"
+merge "dis_tran_0/m1_174_1393#" "dis_tran_0/m1_2478_2251#"
+merge "dis_tran_0/m1_2478_2251#" "dis_tran_0/m1_2286_2251#"
+merge "dis_tran_0/m1_2286_2251#" "dis_tran_0/m1_2094_2251#"
+merge "dis_tran_0/m1_2094_2251#" "dis_tran_0/m1_1902_2251#"
+merge "dis_tran_0/m1_1902_2251#" "dis_tran_0/m1_1710_2251#"
+merge "dis_tran_0/m1_1710_2251#" "dis_tran_0/m1_1518_2251#"
+merge "dis_tran_0/m1_1518_2251#" "dis_tran_0/m1_1326_2251#"
+merge "dis_tran_0/m1_1326_2251#" "dis_tran_0/m1_1134_2251#"
+merge "dis_tran_0/m1_1134_2251#" "dis_tran_0/m1_942_2251#"
+merge "dis_tran_0/m1_942_2251#" "dis_tran_0/m1_750_2251#"
+merge "dis_tran_0/m1_750_2251#" "dis_tran_0/m1_558_2251#"
+merge "dis_tran_0/m1_558_2251#" "dis_tran_0/m1_366_2251#"
+merge "dis_tran_0/m1_366_2251#" "dis_tran_0/m1_174_2251#"
+merge "dis_tran_0/m1_174_2251#" "dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#"
+merge "dis_tran_0/sky130_fd_pr__nfet_01v8_RRWALQ_0/a_n1331_n1301#" "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#"
+merge "rf_transistors_0/sky130_fd_pr__nfet_01v8_lvt_ZRA4RB_0/a_n1356_n683#" "tia_cur_mirror_0/m1_71_n690#"
+merge "tia_cur_mirror_0/m1_71_n690#" "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#"
+merge "tia_cur_mirror_0/sky130_fd_pr__nfet_01v8_F8VELN_0/a_n707_n374#" "li_n2010_n3330#"
+merge "dis_tran_0/m1_90_70#" "dis_tran_0/m1_90_590#" -7847.46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -14633431 -1258 0 0 0 0 0 0 0 0 0 0
+merge "dis_tran_0/m1_90_590#" "dis_tran_0/m1_90_1210#"
+merge "dis_tran_0/m1_90_1210#" "dis_tran_0/m1_90_1830#"
+merge "dis_tran_0/m1_90_1830#" "dis_tran_0/m1_90_2440#"
+merge "dis_tran_0/m1_90_2440#" "m1_n1960_n3240#"
diff --git a/mag/tia/tia_one_tia.mag b/mag/tia/tia_one_tia.mag
new file mode 100644
index 0000000..16be07e
--- /dev/null
+++ b/mag/tia/tia_one_tia.mag
@@ -0,0 +1,417 @@
+magic
+tech sky130A
+magscale 1 2
+timestamp 1647868710
+<< error_s >>
+rect -331 -1140 -90 -1109
+rect 230 -1140 471 -1109
+rect -91 -1380 -90 -1349
+rect 230 -1380 231 -1349
+<< nwell >>
+rect 1650 2620 1660 2790
+<< pwell >>
+rect -180 2030 850 2110
+rect -1950 1380 -1780 1530
+rect 670 1380 850 1530
+rect -1950 860 -1750 920
+rect 660 860 850 920
+rect -1950 560 -1750 630
+rect 660 560 850 620
+rect -1950 -60 -1760 90
+rect 690 -60 850 90
+<< locali >>
+rect -1910 3600 1710 3680
+rect -190 2220 -80 3600
+rect 1600 3050 1710 3600
+rect 1600 2960 3780 3050
+rect 1600 2220 1710 2400
+rect 3530 2220 3780 2960
+rect -2010 790 -1870 2130
+rect 790 1260 920 2140
+rect 1460 2110 3780 2220
+rect 800 1010 920 1260
+rect 1690 1800 3560 1890
+rect 1690 1210 1790 1800
+rect 3470 1230 3560 1800
+rect 1670 1050 1780 1210
+rect 790 790 920 1010
+rect -2010 690 920 790
+rect -2010 -640 -1870 690
+rect 790 30 920 690
+rect 1680 480 1780 1050
+rect 3470 480 3560 1020
+rect 1680 390 3560 480
+rect 800 -640 910 30
+rect -2010 -740 910 -640
+rect -2010 -3330 -1870 -740
+rect 720 -1180 910 -740
+rect 720 -1360 730 -1180
+rect 860 -1360 910 -1180
+rect 720 -1500 910 -1360
+rect 720 -1680 2700 -1500
+<< viali >>
+rect 1600 2400 1730 2960
+rect 1590 1050 1670 1210
+rect 3440 1020 3560 1230
+rect 730 -1360 860 -1180
+<< metal1 >>
+rect -2000 3470 -1750 3540
+rect -330 3470 60 3540
+rect -2000 3000 -1850 3470
+rect -180 3000 -100 3470
+rect -2000 2830 1490 3000
+rect 1594 2960 1736 2972
+rect -2000 2360 -1850 2830
+rect -180 2370 -100 2830
+rect 1590 2400 1600 2960
+rect 1730 2400 1740 2960
+rect 1860 2830 3520 2870
+rect 1594 2388 1736 2400
+rect -2000 2290 -1750 2360
+rect -330 2300 60 2370
+rect 3480 2330 3520 2830
+rect -2000 2070 -1850 2290
+rect -180 2110 -100 2300
+rect 1850 2290 3520 2330
+rect -2000 2000 -1750 2070
+rect -180 2030 930 2110
+rect 660 2000 930 2030
+rect -2000 1530 -1850 2000
+rect 790 1530 930 2000
+rect 1540 1550 1550 1740
+rect 1800 1690 3340 1740
+rect 1800 1680 1930 1690
+rect 1800 1550 1820 1680
+rect -2000 1380 930 1530
+rect -2000 920 -1850 1380
+rect 790 1210 930 1380
+rect 1584 1210 1676 1222
+rect 1730 1210 1820 1550
+rect 3434 1230 3566 1242
+rect 790 1050 840 1210
+rect 1070 1050 1080 1210
+rect 1580 1050 1590 1210
+rect 1670 1050 1680 1210
+rect 1730 1200 1910 1210
+rect 1730 1080 3340 1200
+rect 1730 1070 1910 1080
+rect 790 920 930 1050
+rect 1584 1038 1676 1050
+rect -2000 860 -1750 920
+rect 660 860 930 920
+rect -2000 630 -1850 860
+rect -2000 560 -1750 630
+rect 790 620 930 860
+rect 660 560 930 620
+rect -2000 90 -1850 560
+rect 790 90 930 560
+rect 1730 600 1820 1070
+rect 3430 1020 3440 1230
+rect 3560 1020 3570 1230
+rect 3434 1008 3566 1020
+rect 1730 540 1910 600
+rect -2000 -60 930 90
+rect -2000 -530 -1850 -60
+rect 790 -520 930 -60
+rect 770 -530 930 -520
+rect -2000 -580 -1750 -530
+rect 660 -580 930 -530
+rect -1960 -860 -1810 -800
+rect -1960 -1330 -1860 -860
+rect 724 -1180 866 -1168
+rect -1960 -1480 -1810 -1330
+rect 720 -1360 730 -1180
+rect 860 -1360 870 -1180
+rect 724 -1372 866 -1360
+rect -1960 -1950 -1860 -1480
+rect -1960 -2090 -1800 -1950
+rect -1960 -2100 -1770 -2090
+rect -1960 -2570 -1860 -2100
+rect -1960 -2720 -1800 -2570
+rect -1960 -3190 -1860 -2720
+rect -1960 -3240 -1810 -3190
+<< via1 >>
+rect 1600 2400 1730 2960
+rect 1550 1550 1800 1740
+rect 840 1050 1070 1210
+rect 1590 1050 1670 1210
+rect 3440 1020 3560 1230
+rect 730 -1360 860 -1180
+<< metal2 >>
+rect -1710 3420 1690 3440
+rect -1710 3280 -260 3420
+rect -20 3280 1690 3420
+rect -1710 3270 1690 3280
+rect 1440 3260 1690 3270
+rect -1810 3190 1430 3200
+rect -1810 3040 360 3190
+rect 760 3040 1430 3190
+rect -1810 3030 1430 3040
+rect 1550 2980 1690 3260
+rect 1550 2960 3280 2980
+rect -1810 2790 1430 2800
+rect -1810 2640 370 2790
+rect 770 2640 1430 2790
+rect -1810 2630 1430 2640
+rect 1550 2570 1600 2960
+rect 1440 2560 1600 2570
+rect -1700 2540 1600 2560
+rect -1700 2400 -260 2540
+rect -20 2400 1600 2540
+rect 1730 2620 3280 2960
+rect 2220 2560 2660 2570
+rect -300 2380 0 2400
+rect 300 2390 340 2400
+rect 1600 2390 1730 2400
+rect 1800 2380 2220 2550
+rect 2660 2380 3440 2550
+rect 2220 2370 2660 2380
+rect -90 1970 230 1980
+rect -1710 1800 -90 1970
+rect 230 1800 710 1970
+rect -90 1790 230 1800
+rect 1550 1740 1800 1750
+rect -1800 1720 1550 1730
+rect -1800 1570 370 1720
+rect 770 1570 1550 1720
+rect -1800 1560 1550 1570
+rect 2220 1660 2660 1670
+rect 1550 1540 1800 1550
+rect 1850 1480 2220 1660
+rect 2660 1480 3300 1660
+rect 2220 1470 2660 1480
+rect -1800 1350 770 1360
+rect -1800 1200 370 1350
+rect 1950 1240 3500 1420
+rect -1800 1190 770 1200
+rect 840 1210 1070 1220
+rect 1590 1210 1670 1220
+rect 1960 1210 2120 1240
+rect 3310 1230 3560 1240
+rect -190 1110 700 1120
+rect -1710 360 -90 1110
+rect 230 360 710 1110
+rect 1070 1050 1590 1210
+rect 1670 1050 2120 1210
+rect 840 1040 1190 1050
+rect 1590 1040 1670 1050
+rect 1950 1040 2120 1050
+rect 3390 1040 3440 1230
+rect -180 350 310 360
+rect -1810 280 770 290
+rect -1810 130 370 280
+rect -1810 120 770 130
+rect -1800 -90 780 -80
+rect -1800 -240 370 -90
+rect 770 -240 780 -90
+rect -1800 -250 780 -240
+rect 980 -250 1190 1040
+rect 1950 1020 3440 1040
+rect 1950 1010 3560 1020
+rect 1950 860 3500 1010
+rect 2220 800 2660 810
+rect 1850 620 2220 800
+rect 2660 620 3300 800
+rect 2220 610 2660 620
+rect -90 -330 230 -320
+rect -1710 -500 -90 -330
+rect 230 -500 710 -330
+rect -90 -510 230 -500
+rect -760 -880 -440 -870
+rect -1730 -1060 -760 -890
+rect -440 -1060 770 -890
+rect -760 -1070 -440 -1060
+rect -1830 -1140 540 -1130
+rect -1830 -1680 -90 -1140
+rect 230 -1680 540 -1140
+rect 630 -1170 770 -1060
+rect 630 -1180 860 -1170
+rect 630 -1360 730 -1180
+rect 860 -1360 1050 -1180
+rect 630 -1370 860 -1360
+rect -90 -1690 230 -1680
+rect 630 -1750 770 -1370
+rect -1730 -1760 770 -1750
+rect -1730 -2300 -760 -1760
+rect -440 -2300 770 -1760
+rect -760 -2310 -440 -2300
+rect -1840 -2370 550 -2360
+rect -1840 -2910 -90 -2370
+rect 230 -2910 550 -2370
+rect -90 -2920 230 -2910
+rect -760 -2980 -440 -2970
+rect 630 -2980 770 -2300
+rect -1730 -3160 -760 -2980
+rect -440 -3160 770 -2980
+rect -760 -3170 -440 -3160
+<< via2 >>
+rect -260 3280 -20 3420
+rect 360 3040 760 3190
+rect 370 2640 770 2790
+rect -260 2400 -20 2540
+rect 2220 2380 2660 2560
+rect -90 1800 230 1970
+rect 370 1570 770 1720
+rect 2220 1480 2660 1660
+rect 370 1200 770 1350
+rect -90 360 230 1110
+rect 370 130 770 280
+rect 370 -240 770 -90
+rect 2220 620 2660 800
+rect -90 -500 230 -330
+rect -760 -1060 -440 -880
+rect -90 -1680 230 -1140
+rect -760 -2300 -440 -1760
+rect -90 -2910 230 -2370
+rect -760 -3160 -440 -2980
+<< metal3 >>
+rect -260 3430 -20 3440
+rect -300 3090 -290 3430
+rect 30 3090 40 3430
+rect 360 3195 780 3200
+rect 350 3190 780 3195
+rect -260 2920 -20 3090
+rect 350 3040 360 3190
+rect 760 3040 780 3190
+rect 350 3035 780 3040
+rect -270 2760 -10 2920
+rect 360 2790 780 3035
+rect -260 2545 -20 2760
+rect 360 2640 370 2790
+rect 770 2640 780 2790
+rect -270 2540 -10 2545
+rect -270 2400 -260 2540
+rect -20 2400 -10 2540
+rect -270 2395 -10 2400
+rect -100 1970 240 1975
+rect -100 1800 -90 1970
+rect 230 1800 240 1970
+rect -100 1795 240 1800
+rect -90 1115 230 1795
+rect 360 1720 780 2640
+rect 2210 2560 2670 2565
+rect 2210 2380 2220 2560
+rect 2660 2380 2670 2560
+rect 2210 2375 2670 2380
+rect 360 1570 370 1720
+rect 770 1570 780 1720
+rect 2220 1665 2660 2375
+rect 360 1350 780 1570
+rect 2210 1660 2670 1665
+rect 2210 1480 2220 1660
+rect 2660 1480 2670 1660
+rect 2210 1475 2670 1480
+rect 360 1200 370 1350
+rect 770 1200 780 1350
+rect 360 1195 780 1200
+rect -100 1110 240 1115
+rect -100 360 -90 1110
+rect 230 360 240 1110
+rect -100 355 240 360
+rect 360 1010 770 1195
+rect -90 -325 230 355
+rect 360 280 780 1010
+rect 2220 805 2660 1475
+rect 2210 800 2670 805
+rect 2210 620 2220 800
+rect 2660 620 2670 800
+rect 2210 615 2670 620
+rect 360 130 370 280
+rect 770 130 780 280
+rect 360 -90 780 130
+rect 360 -240 370 -90
+rect 770 -240 780 -90
+rect 360 -260 780 -240
+rect -100 -330 240 -325
+rect -100 -500 -90 -330
+rect 230 -500 240 -330
+rect -100 -505 240 -500
+rect -770 -880 -430 -875
+rect -770 -1060 -760 -880
+rect -440 -1060 -430 -880
+rect -770 -1065 -430 -1060
+rect -760 -1220 -440 -1065
+rect -90 -1135 230 -505
+rect -100 -1140 240 -1135
+rect -770 -1370 -430 -1220
+rect -100 -1230 -90 -1140
+rect -770 -1680 -760 -1370
+rect -440 -1680 -430 -1370
+rect -110 -1660 -90 -1230
+rect -100 -1680 -90 -1660
+rect 230 -1680 240 -1140
+rect -760 -1755 -440 -1680
+rect -100 -1685 240 -1680
+rect -770 -1760 -430 -1755
+rect -770 -2300 -760 -1760
+rect -440 -2300 -430 -1760
+rect -770 -2305 -430 -2300
+rect -760 -2975 -440 -2305
+rect -90 -2365 230 -1685
+rect -100 -2370 240 -2365
+rect -100 -2910 -90 -2370
+rect 230 -2910 240 -2370
+rect -100 -2915 240 -2910
+rect -770 -2980 -430 -2975
+rect -770 -3160 -760 -2980
+rect -440 -3160 -430 -2980
+rect -770 -3165 -430 -3160
+<< via3 >>
+rect -290 3420 30 3430
+rect -290 3280 -260 3420
+rect -260 3280 -20 3420
+rect -20 3280 30 3420
+rect -290 3090 30 3280
+rect -760 -1680 -440 -1370
+rect -90 -1670 230 -1350
+<< metal4 >>
+rect -291 3430 31 3431
+rect -291 3090 -290 3430
+rect 30 3090 31 3430
+rect -291 3089 31 3090
+rect -90 -1349 230 -960
+rect -91 -1350 231 -1349
+rect -761 -1370 -439 -1369
+rect -761 -1680 -760 -1370
+rect -440 -1680 -439 -1370
+rect -91 -1670 -90 -1350
+rect 230 -1670 231 -1350
+rect -91 -1671 231 -1670
+rect -761 -1681 -439 -1680
+<< via4 >>
+rect -290 3090 30 3430
+rect -760 -1680 -440 -1370
+<< metal5 >>
+rect -320 3430 60 3460
+rect -320 3090 -290 3430
+rect 30 3090 60 3430
+rect -320 2510 60 3090
+rect -784 -1350 -416 -1346
+rect -784 -1370 2950 -1350
+rect -784 -1680 -760 -1370
+rect -440 -1470 2950 -1370
+rect -440 -1670 3760 -1470
+rect -440 -1680 -416 -1670
+rect -784 -1704 -416 -1680
+rect 2610 -1790 3760 -1670
+use dis_tran  dis_tran_0
+timestamp 1647868710
+transform 1 0 -1907 0 1 -3307
+box -53 -53 2681 2621
+use fb_transistor  fb_transistor_0
+timestamp 1647868710
+transform 1 0 -4020 0 1 -1780
+box 5420 1880 7860 4782
+use rf_transistors  rf_transistors_0
+timestamp 1647868710
+transform 1 0 -2380 0 1 2280
+box 440 -2984 4042 1374
+use sky130_fd_pr__cap_mim_m3_2_ZWVPUJ  sky130_fd_pr__cap_mim_m3_2_ZWVPUJ_0
+timestamp 1647868710
+transform 1 0 891 0 -1 760
+box -2851 -1901 2873 1901
+use tia_cur_mirror  tia_cur_mirror_0
+timestamp 1647868710
+transform 1 0 910 0 1 -660
+box -60 -900 1822 740
+<< end >>
diff --git a/xschem/bias/current_mirror_channel.sch b/xschem/bias/current_mirror_channel.sch
new file mode 100644
index 0000000..e376342
--- /dev/null
+++ b/xschem/bias/current_mirror_channel.sch
@@ -0,0 +1,658 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {8uA in} -110 -230 0 0 0.3 0.3 {}
+T {80uA out} 940 -340 0 0 0.3 0.3 {}
+T {96uA out} 1130 -340 0 0 0.3 0.3 {}
+T {64uA out} 1310 -340 0 0 0.3 0.3 {}
+T {128uA out} 1560 -340 0 0 0.3 0.3 {}
+T {128uA out} 1740 -340 0 0 0.3 0.3 {}
+T {128uA out} 1920 -340 0 0 0.3 0.3 {}
+T {128uA out} 2100 -340 0 0 0.3 0.3 {}
+T {128uA out} 2280 -340 0 0 0.3 0.3 {}
+T {128uA out} 2460 -340 0 0 0.3 0.3 {}
+T {8uA out} 2660 -340 0 0 0.3 0.3 {}
+T {120uA out} 3200 -340 0 0 0.3 0.3 {}
+N -40 -140 -40 -50 { lab=I_in_channel}
+N -40 -200 -40 -150 { lab=I_in_channel}
+N -60 -200 -40 -200 { lab=I_in_channel}
+N -40 -150 -40 -140 { lab=I_in_channel}
+N -40 -170 -0 -170 { lab=I_in_channel}
+N -0 -110 0 -80 { lab=#net1}
+N -120 0 970 0 { lab=VN}
+N 0 -20 0 0 { lab=VN}
+N -100 -530 1060 -530 { lab=VP}
+N 110 -140 110 -50 { lab=I_in_channel}
+N 150 -110 150 -80 { lab=#net2}
+N 150 -20 150 0 { lab=VN}
+N -40 -50 -40 20 { lab=I_in_channel}
+N -40 20 720 20 { lab=I_in_channel}
+N 110 -50 110 20 { lab=I_in_channel}
+N 150 -530 150 -490 { lab=VP}
+N 110 -340 150 -340 { lab=vm4d}
+N 110 -460 110 -370 { lab=vm4d}
+N 150 -430 150 -400 { lab=#net3}
+N 150 -370 230 -370 { lab=VP}
+N 230 -530 230 -370 { lab=VP}
+N 0 -140 90 -140 { lab=VN}
+N 90 -140 90 0 { lab=VN}
+N 150 -140 240 -140 { lab=VN}
+N 240 -140 240 0 { lab=VN}
+N 150 -50 240 -50 { lab=VN}
+N -0 -50 90 -50 { lab=VN}
+N 910 -530 910 -490 { lab=VP}
+N 870 -460 870 -370 { lab=vm12d}
+N 910 -430 910 -400 { lab=#net4}
+N 910 -370 1000 -370 { lab=VP}
+N 1000 -530 1000 -370 { lab=VP}
+N 110 -550 110 -460 { lab=vm4d}
+N 110 -550 720 -550 { lab=vm4d}
+N 910 -300 930 -300 { lab=TIA_I_Bias1}
+N 910 -340 910 -300 { lab=TIA_I_Bias1}
+N 150 -340 150 -170 { lab=vm4d}
+N 110 -370 110 -340 { lab=vm4d}
+N 620 -70 620 0 { lab=VN}
+N 460 -450 460 -430 { lab=VP}
+N 430 -440 460 -440 { lab=VP}
+N 620 -530 620 -130 { lab=VP}
+N 1120 -530 1120 -490 { lab=VP}
+N 1080 -460 1080 -370 { lab=vm12d}
+N 1120 -430 1120 -400 { lab=#net5}
+N 1120 -370 1210 -370 { lab=VP}
+N 1210 -530 1210 -370 { lab=VP}
+N 1120 -300 1140 -300 { lab=A_Out_I_Bias}
+N 1120 -340 1120 -300 { lab=A_Out_I_Bias}
+N 1300 -530 1300 -490 { lab=VP}
+N 1260 -460 1260 -370 { lab=vm12d}
+N 1300 -430 1300 -400 { lab=#net6}
+N 1300 -370 1390 -370 { lab=VP}
+N 1390 -530 1390 -370 { lab=VP}
+N 1300 -300 1320 -300 { lab=Comp_To_Logic_Bias}
+N 1300 -340 1300 -300 { lab=Comp_To_Logic_Bias}
+N 1210 -530 1390 -530 { lab=VP}
+N 1390 -530 2360 -530 { lab=VP}
+N 1550 -530 1550 -490 { lab=VP}
+N 1510 -460 1510 -370 { lab=vm12d}
+N 1550 -430 1550 -400 { lab=#net7}
+N 1550 -370 1640 -370 { lab=VP}
+N 1640 -530 1640 -370 { lab=VP}
+N 1550 -300 1570 -300 { lab=Comp_Bias_1}
+N 1550 -340 1550 -300 { lab=Comp_Bias_1}
+N 1730 -530 1730 -490 { lab=VP}
+N 1690 -460 1690 -370 { lab=vm12d}
+N 1730 -430 1730 -400 { lab=#net8}
+N 1730 -370 1820 -370 { lab=VP}
+N 1820 -530 1820 -370 { lab=VP}
+N 1730 -300 1750 -300 { lab=Comp_Bias_2}
+N 1730 -340 1730 -300 { lab=Comp_Bias_2}
+N 1910 -530 1910 -490 { lab=VP}
+N 1870 -460 1870 -370 { lab=vm12d}
+N 1910 -430 1910 -400 { lab=#net9}
+N 1910 -370 2000 -370 { lab=VP}
+N 2000 -530 2000 -370 { lab=VP}
+N 1910 -300 1930 -300 { lab=Comp_Bias_3}
+N 1910 -340 1910 -300 { lab=Comp_Bias_3}
+N 2090 -530 2090 -490 { lab=VP}
+N 2050 -460 2050 -370 { lab=vm12d}
+N 2090 -430 2090 -400 { lab=#net10}
+N 2090 -370 2180 -370 { lab=VP}
+N 2180 -530 2180 -370 { lab=VP}
+N 2090 -300 2110 -300 { lab=Comp_Bias_4}
+N 2090 -340 2090 -300 { lab=Comp_Bias_4}
+N 2270 -530 2270 -490 { lab=VP}
+N 2230 -460 2230 -370 { lab=vm12d}
+N 2270 -430 2270 -400 { lab=#net11}
+N 2270 -370 2360 -370 { lab=VP}
+N 2360 -530 2360 -370 { lab=VP}
+N 2270 -300 2290 -300 { lab=Comp_Bias_5}
+N 2270 -340 2270 -300 { lab=Comp_Bias_5}
+N 2450 -530 2450 -490 { lab=VP}
+N 2410 -460 2410 -370 { lab=vm12d}
+N 2450 -430 2450 -400 { lab=#net12}
+N 2450 -370 2540 -370 { lab=VP}
+N 2540 -530 2540 -370 { lab=VP}
+N 2450 -300 2470 -300 { lab=Comp_Bias_6}
+N 2450 -340 2450 -300 { lab=Comp_Bias_6}
+N 2360 -530 2540 -530 { lab=VP}
+N 2270 -460 2360 -460 { lab=VP}
+N 2090 -460 2180 -460 { lab=VP}
+N 1910 -460 2000 -460 { lab=VP}
+N 1730 -460 1820 -460 { lab=VP}
+N 1550 -460 1640 -460 { lab=VP}
+N 1300 -460 1390 -460 { lab=VP}
+N 1120 -460 1210 -460 { lab=VP}
+N 910 -460 1000 -460 { lab=VP}
+N 150 -460 230 -460 { lab=VP}
+N 460 -370 460 -350 { lab=vm12d}
+N 460 -350 580 -350 { lab=vm12d}
+N 2650 -530 2650 -490 { lab=VP}
+N 2610 -460 2610 -370 { lab=vm4d}
+N 2650 -430 2650 -400 { lab=#net13}
+N 2650 -370 2740 -370 { lab=VP}
+N 2740 -530 2740 -370 { lab=VP}
+N 2650 -300 2670 -300 { lab=FB_Bias_1}
+N 2650 -340 2650 -300 { lab=FB_Bias_1}
+N 2540 -530 2930 -530 { lab=VP}
+N 2650 -460 2740 -460 { lab=VP}
+N 2450 -460 2540 -460 { lab=VP}
+N 3180 -530 3180 -490 { lab=VP}
+N 3140 -460 3140 -370 { lab=vm12d}
+N 3180 -430 3180 -400 { lab=#net14}
+N 3180 -370 3270 -370 { lab=VP}
+N 3270 -530 3270 -370 { lab=VP}
+N 3140 -550 3140 -470 { lab=vm12d}
+N 3140 -470 3140 -460 { lab=vm12d}
+N 3180 -300 3200 -300 { lab=LVDS_Bias}
+N 3180 -340 3180 -300 { lab=LVDS_Bias}
+N 3180 -460 3270 -460 { lab=VP}
+N 3100 -530 3270 -530 { lab=VP}
+N 1060 -530 1210 -530 { lab=VP}
+N 270 -140 270 -50 { lab=I_in_channel}
+N 310 -110 310 -80 { lab=#net15}
+N 310 -20 310 0 { lab=VN}
+N 270 -50 270 20 { lab=I_in_channel}
+N 310 -140 400 -140 { lab=VN}
+N 400 -140 400 0 { lab=VN}
+N 310 -50 400 -50 { lab=VN}
+N 310 -530 310 -490 { lab=VP}
+N 270 -340 310 -340 { lab=vm12d}
+N 270 -460 270 -370 { lab=vm12d}
+N 310 -430 310 -400 { lab=#net16}
+N 310 -370 390 -370 { lab=VP}
+N 390 -530 390 -370 { lab=VP}
+N 270 -370 270 -340 { lab=vm12d}
+N 310 -460 390 -460 { lab=VP}
+N 270 -570 270 -460 { lab=vm12d}
+N 310 -340 310 -170 { lab=vm12d}
+N 270 -570 870 -570 { lab=vm12d}
+N 900 -450 900 -440 { lab=#net17}
+N 870 -570 1080 -570 { lab=vm12d}
+N 1080 -570 1260 -570 { lab=vm12d}
+N 1260 -570 1510 -570 { lab=vm12d}
+N 1510 -570 3140 -570 { lab=vm12d}
+N 3140 -570 3140 -550 { lab=vm12d}
+N 1510 -570 1510 -460 { lab=vm12d}
+N 1690 -570 1690 -460 { lab=vm12d}
+N 1870 -570 1870 -460 { lab=vm12d}
+N 2050 -570 2050 -460 { lab=vm12d}
+N 2230 -570 2230 -460 { lab=vm12d}
+N 2410 -570 2410 -460 { lab=vm12d}
+N 2930 -530 3100 -530 { lab=VP}
+N 2610 -550 2610 -460 { lab=vm4d}
+N 720 -550 2610 -550 { lab=vm4d}
+N 1260 -570 1260 -460 { lab=vm12d}
+N 1080 -570 1080 -460 { lab=vm12d}
+N 870 -570 870 -460 { lab=vm12d}
+N 460 -550 460 -510 { lab=vm4d}
+N 430 -530 430 -440 { lab=VP}
+N 580 -570 580 -350 { lab=vm12d}
+C {devices/ipin.sym} -60 -200 0 0 {name=p1 lab=I_in_channel}
+C {devices/iopin.sym} -100 -530 0 1 {name=p2 lab=VP}
+C {sky130_fd_pr/nfet_01v8.sym} -20 -140 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 130 -460 0 0 {name=M2
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -20 -50 0 0 {name=M3
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/iopin.sym} -120 0 0 1 {name=p4 lab=VN}
+C {sky130_fd_pr/pfet_01v8.sym} 130 -370 0 0 {name=M4
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 930 -300 0 0 {name=p5 lab=TIA_I_Bias1}
+C {devices/opin.sym} 1140 -300 0 0 {name=p6 lab=A_Out_I_Bias}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 460 -480 2 1 {name=C4 model=cap_mim_m3_2 W=30 L=15 MF=1 spiceprefix=X}
+C {devices/opin.sym} 1570 -300 0 0 {name=p7 lab=Comp_Bias_1}
+C {devices/opin.sym} 1320 -300 0 0 {name=p12 lab=Comp_To_Logic_Bias}
+C {devices/opin.sym} 1750 -300 0 0 {name=p15 lab=Comp_Bias_2}
+C {devices/opin.sym} 1930 -300 0 0 {name=p16 lab=Comp_Bias_3}
+C {devices/opin.sym} 2110 -300 0 0 {name=p17 lab=Comp_Bias_4}
+C {devices/opin.sym} 2290 -300 0 0 {name=p18 lab=Comp_Bias_5}
+C {devices/opin.sym} 2470 -300 0 0 {name=p19 lab=Comp_Bias_6}
+C {sky130_fd_pr/nfet_01v8.sym} 130 -140 0 0 {name=M5
+L=0.15
+W=2
+nf=1 
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 130 -50 0 0 {name=M6
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 890 -460 0 0 {name=M13
+L=0.5
+W=2
+nf=1
+mult=4*5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 890 -370 0 0 {name=M14
+L=0.15
+W=2
+nf=1
+mult=4*4*5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1100 -460 0 0 {name=M9
+L=0.5
+W=2
+nf=1
+mult=4*6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1100 -370 0 0 {name=M10
+L=0.15
+W=2
+nf=1
+mult=4*4*6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1280 -460 0 0 {name=M15
+L=0.5
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1280 -370 0 0 {name=M16
+L=0.15
+W=2
+nf=1
+mult=4*4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1530 -460 0 0 {name=M17
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1530 -370 0 0 {name=M18
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1710 -460 0 0 {name=M19
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1710 -370 0 0 {name=M20
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 2670 -300 0 0 {name=p9 lab=FB_Bias_1}
+C {sky130_fd_pr/pfet_01v8.sym} 2630 -460 0 0 {name=M31
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2630 -370 0 0 {name=M32
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 3200 -300 0 0 {name=p13 lab=LVDS_Bias}
+C {sky130_fd_pr/nfet_01v8.sym} 290 -140 0 0 {name=M7
+L=0.15
+W=2
+nf=1 
+mult=2*4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 290 -50 0 0 {name=M8
+L=0.5
+W=2
+nf=1 
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 290 -460 0 0 {name=M11
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 290 -370 0 0 {name=M12
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1890 -460 0 0 {name=M21
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1890 -370 0 0 {name=M22
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2070 -460 0 0 {name=M23
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2070 -370 0 0 {name=M24
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2250 -460 0 0 {name=M25
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2250 -370 0 0 {name=M26
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2430 -460 0 0 {name=M27
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2430 -370 0 0 {name=M28
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 3160 -460 0 0 {name=M29
+L=0.5
+W=2
+nf=1
+mult=4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 3160 -370 0 0 {name=M30
+L=0.15
+W=2
+nf=1
+mult=4*4*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 460 -400 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=15 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 620 -100 0 0 {name=C2 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} 160 -550 0 0 {name=l1 sig_type=std_logic lab=vm4d}
+C {devices/lab_wire.sym} 320 -570 0 0 {name=l2 sig_type=std_logic lab=vm12d}
diff --git a/xschem/bias/current_mirror_channel.spice b/xschem/bias/current_mirror_channel.spice
new file mode 100644
index 0000000..46f8b03
--- /dev/null
+++ b/xschem/bias/current_mirror_channel.spice
@@ -0,0 +1,52 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/bias/current_mirror_channel.sch
+**.subckt current_mirror_channel I_in_channel VP TIA_I_Bias2 VN TIA_I_Bias1 A_Out_I_Bias
+*.ipin I_in_channel
+*.iopin VP
+*.opin TIA_I_Bias2
+*.iopin VN
+*.opin TIA_I_Bias1
+*.opin A_Out_I_Bias
+XM1 I_in_channel I_in_channel net1 VN sky130_fd_pr__nfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2 m=2
+XM2 net5 net4 VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM3 net1 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM4 net4 net4 net5 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XC8 VP net4 sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XM5 net4 I_in_channel net2 VN sky130_fd_pr__nfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2 m=2
+XM6 TIA_I_Bias2 I_in_channel net3 VN sky130_fd_pr__nfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2 m=2
+XM7 net2 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM8 net3 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM13 net6 net4 VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4*10 m=4*4*10
+XM14 TIA_I_Bias1 net4 net6 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*10 m=4*10
+XM9 net7 net4 VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4*12 m=4*4*12
+XM10 A_Out_I_Bias net4 net7 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*12 m=4*12
+XC4 VP net4 sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC3 VN I_in_channel sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC6 VN I_in_channel sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC2 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+**.ends
+.end
diff --git a/xschem/bias/current_mirror_channel.sym b/xschem/bias/current_mirror_channel.sym
new file mode 100644
index 0000000..c044033
--- /dev/null
+++ b/xschem/bias/current_mirror_channel.sym
@@ -0,0 +1,54 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -117 -6 0 0 0.3 0.3 {}
+T {@name} 135 -142 0 0 0.2 0.2 {}
+L 4 -130 -130 130 -130 {}
+L 4 -130 130 130 130 {}
+L 4 -130 -130 -130 130 {}
+L 4 130 -130 130 130 {}
+B 5 147.5 -122.5 152.5 -117.5 {name=VP dir=inout }
+L 7 130 -120 150 -120 {}
+T {VP} 125 -124 0 1 0.2 0.2 {}
+B 5 147.5 -102.5 152.5 -97.5 {name=LVDS_Bias dir=out }
+L 4 130 -100 150 -100 {}
+T {LVDS_Bias} 125 -104 0 1 0.2 0.2 {}
+B 5 147.5 -82.5 152.5 -77.5 {name=Comp_Bias_2 dir=out }
+L 4 130 -80 150 -80 {}
+T {Comp_Bias_2} 125 -84 0 1 0.2 0.2 {}
+B 5 147.5 -62.5 152.5 -57.5 {name=A_Out_I_Bias dir=out }
+L 4 130 -60 150 -60 {}
+T {A_Out_I_Bias} 125 -64 0 1 0.2 0.2 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=Comp_Bias_1 dir=out }
+L 4 130 -40 150 -40 {}
+T {Comp_Bias_1} 125 -44 0 1 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=Comp_To_Logic_Bias dir=out }
+L 4 130 -20 150 -20 {}
+T {Comp_To_Logic_Bias} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=TIA_I_Bias1 dir=out }
+L 4 130 0 150 0 {}
+T {TIA_I_Bias1} 125 -4 0 1 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=Comp_Bias_3 dir=out }
+L 4 130 20 150 20 {}
+T {Comp_Bias_3} 125 16 0 1 0.2 0.2 {}
+B 5 147.5 37.5 152.5 42.5 {name=Comp_Bias_4 dir=out }
+L 4 130 40 150 40 {}
+T {Comp_Bias_4} 125 36 0 1 0.2 0.2 {}
+B 5 147.5 57.5 152.5 62.5 {name=Comp_Bias_5 dir=out }
+L 4 130 60 150 60 {}
+T {Comp_Bias_5} 125 56 0 1 0.2 0.2 {}
+B 5 147.5 77.5 152.5 82.5 {name=Comp_Bias_6 dir=out }
+L 4 130 80 150 80 {}
+T {Comp_Bias_6} 125 76 0 1 0.2 0.2 {}
+B 5 147.5 97.5 152.5 102.5 {name=FB_Bias_1 dir=out }
+L 4 130 100 150 100 {}
+T {FB_Bias_1} 125 96 0 1 0.2 0.2 {}
+B 5 -152.5 -122.5 -147.5 -117.5 {name=I_in_channel dir=in }
+L 4 -150 -120 -130 -120 {}
+T {I_in_channel} -125 -124 0 0 0.2 0.2 {}
+B 5 147.5 117.5 152.5 122.5 {name=VN dir=inout }
+L 7 130 120 150 120 {}
+T {VN} 125 116 0 1 0.2 0.2 {}
diff --git a/xschem/bias/current_mirrorx8.sch b/xschem/bias/current_mirrorx8.sch
new file mode 100644
index 0000000..8319dc3
--- /dev/null
+++ b/xschem/bias/current_mirrorx8.sch
@@ -0,0 +1,369 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {9uA} -120 -150 0 0 0.4 0.4 {}
+N -130 -350 770 -350 { lab=VP}
+N -40 -320 -40 -290 { lab=VP}
+N -40 -350 -40 -320 { lab=VP}
+N -40 -260 -40 -230 { lab=#net1}
+N -110 -200 -40 -200 { lab=VP}
+N -110 -350 -110 -200 { lab=VP}
+N 290 -200 370 -200 { lab=VP}
+N 290 -350 290 -200 { lab=VP}
+N 290 -290 370 -290 { lab=VP}
+N 370 -260 370 -230 { lab=#net2}
+N 370 -350 370 -320 { lab=VP}
+N 410 -290 410 -200 { lab=I_In}
+N 0 -290 0 -200 { lab=I_In}
+N -40 -170 -40 -110 { lab=I_In}
+N -70 -110 -40 -110 { lab=I_In}
+N 370 -110 380 -110 { lab=I_out_0}
+N 370 -170 370 -110 { lab=I_out_0}
+N 440 -200 520 -200 { lab=VP}
+N 440 -350 440 -200 { lab=VP}
+N 440 -290 520 -290 { lab=VP}
+N 520 -260 520 -230 { lab=#net3}
+N 520 -350 520 -320 { lab=VP}
+N 560 -290 560 -200 { lab=I_In}
+N 520 -110 530 -110 { lab=I_out_1}
+N 520 -170 520 -110 { lab=I_out_1}
+N 590 -200 670 -200 { lab=VP}
+N 590 -350 590 -200 { lab=VP}
+N 590 -290 670 -290 { lab=VP}
+N 670 -260 670 -230 { lab=#net4}
+N 670 -350 670 -320 { lab=VP}
+N 710 -290 710 -200 { lab=I_In}
+N 670 -110 680 -110 { lab=I_out_2}
+N 670 -170 670 -110 { lab=I_out_2}
+N 740 -200 820 -200 { lab=VP}
+N 740 -350 740 -200 { lab=VP}
+N 740 -290 820 -290 { lab=VP}
+N 820 -260 820 -230 { lab=#net5}
+N 820 -350 820 -320 { lab=VP}
+N 860 -290 860 -200 { lab=I_In}
+N 820 -110 830 -110 { lab=I_out_3}
+N 820 -170 820 -110 { lab=I_out_3}
+N 890 -200 970 -200 { lab=VP}
+N 890 -350 890 -200 { lab=VP}
+N 890 -290 970 -290 { lab=VP}
+N 970 -260 970 -230 { lab=#net6}
+N 970 -350 970 -320 { lab=VP}
+N 1010 -290 1010 -200 { lab=I_In}
+N 970 -110 980 -110 { lab=I_out_4}
+N 970 -170 970 -110 { lab=I_out_4}
+N 1040 -200 1120 -200 { lab=VP}
+N 1040 -350 1040 -200 { lab=VP}
+N 1040 -290 1120 -290 { lab=VP}
+N 1120 -260 1120 -230 { lab=#net7}
+N 1120 -350 1120 -320 { lab=VP}
+N 1160 -290 1160 -200 { lab=I_In}
+N 1120 -110 1130 -110 { lab=I_out_5}
+N 1120 -170 1120 -110 { lab=I_out_5}
+N 1190 -200 1270 -200 { lab=VP}
+N 1190 -350 1190 -200 { lab=VP}
+N 1190 -290 1270 -290 { lab=VP}
+N 1270 -260 1270 -230 { lab=#net8}
+N 1270 -350 1270 -320 { lab=VP}
+N 1310 -290 1310 -200 { lab=I_In}
+N 1270 -110 1280 -110 { lab=I_out_6}
+N 1270 -170 1270 -110 { lab=I_out_6}
+N 1340 -200 1420 -200 { lab=VP}
+N 1340 -350 1340 -200 { lab=VP}
+N 1420 -260 1420 -230 { lab=#net9}
+N 1420 -350 1420 -320 { lab=VP}
+N 1460 -290 1460 -200 { lab=I_In}
+N 1420 -110 1430 -110 { lab=I_out_7}
+N 1420 -170 1420 -110 { lab=I_out_7}
+N 770 -350 1420 -350 { lab=VP}
+N 0 -360 0 -290 { lab=I_In}
+N 0 -370 0 -360 { lab=I_In}
+N 0 -370 1460 -370 { lab=I_In}
+N 1460 -370 1460 -300 { lab=I_In}
+N 1310 -370 1310 -290 { lab=I_In}
+N 1160 -370 1160 -290 { lab=I_In}
+N 1010 -370 1010 -290 { lab=I_In}
+N 860 -370 860 -290 { lab=I_In}
+N 710 -370 710 -290 { lab=I_In}
+N 560 -370 560 -290 { lab=I_In}
+N 410 -370 410 -290 { lab=I_In}
+N -40 -170 0 -170 { lab=I_In}
+N 0 -200 0 -170 { lab=I_In}
+N 60 -350 60 -120 { lab=VP}
+N 200 -370 200 -120 { lab=I_In}
+N 90 -200 200 -200 { lab=I_In}
+N 90 -330 200 -330 { lab=I_In}
+N 90 -270 90 -260 { lab=VP}
+N 60 -270 90 -270 { lab=VP}
+N -140 -40 200 -40 { lab=VN}
+N 200 -60 200 -40 { lab=VN}
+N 160 -70 160 -40 { lab=VN}
+N 60 -60 60 -40 { lab=VN}
+N 20 -70 20 -40 { lab=VN}
+N 1340 -290 1420 -290 { lab=VP}
+N 1460 -300 1460 -290 { lab=I_In}
+C {sky130_fd_pr/pfet_01v8.sym} -20 -290 0 1 {name=M1
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -20 -200 0 1 {name=M2
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 380 -110 0 0 {name=p1 lab=I_out_0}
+C {devices/ipin.sym} -70 -110 0 0 {name=p2 lab=I_In}
+C {devices/iopin.sym} -130 -350 2 0 {name=p3 lab=VP}
+C {devices/opin.sym} 530 -110 0 0 {name=p4 lab=I_out_1}
+C {devices/opin.sym} 680 -110 0 0 {name=p5 lab=I_out_2}
+C {devices/opin.sym} 830 -110 0 0 {name=p6 lab=I_out_3}
+C {devices/opin.sym} 980 -110 0 0 {name=p7 lab=I_out_4}
+C {devices/opin.sym} 1130 -110 0 0 {name=p8 lab=I_out_5}
+C {devices/opin.sym} 1280 -110 0 0 {name=p9 lab=I_out_6}
+C {devices/opin.sym} 1430 -110 0 0 {name=p10 lab=I_out_7}
+C {devices/iopin.sym} -140 -40 2 0 {name=p11 lab=VN}
+C {sky130_fd_pr/pfet_01v8.sym} 390 -290 0 1 {name=M3
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 390 -200 0 1 {name=M4
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 540 -290 0 1 {name=M5
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 540 -200 0 1 {name=M6
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -290 0 1 {name=M7
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -200 0 1 {name=M8
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 840 -290 0 1 {name=M9
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 840 -200 0 1 {name=M10
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 990 -290 0 1 {name=M11
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 990 -200 0 1 {name=M12
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1140 -290 0 1 {name=M13
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1140 -200 0 1 {name=M14
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1290 -290 0 1 {name=M15
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1290 -200 0 1 {name=M16
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1440 -290 0 1 {name=M17
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1440 -200 0 1 {name=M18
+L=0.15
+W=2
+nf=1
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
diff --git a/xschem/bias/current_mirrorx8.spice b/xschem/bias/current_mirrorx8.spice
new file mode 100644
index 0000000..72d8e44
--- /dev/null
+++ b/xschem/bias/current_mirrorx8.spice
@@ -0,0 +1,70 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/bias/current_mirrorx8.sch
+**.subckt current_mirrorx8 I_out_0 I_In VP I_out_1 I_out_2 I_out_3 I_out_4 I_out_5 I_out_6 I_out_7
+*+ VN
+*.opin I_out_0
+*.ipin I_In
+*.iopin VP
+*.opin I_out_1
+*.opin I_out_2
+*.opin I_out_3
+*.opin I_out_4
+*.opin I_out_5
+*.opin I_out_6
+*.opin I_out_7
+*.iopin VN
+XM1 net1 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM2 I_In I_In net1 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM3 net2 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM4 I_out_0 I_In net2 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM5 net3 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM6 I_out_1 I_In net3 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM7 net4 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM8 I_out_2 I_In net4 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM9 net5 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM10 I_out_3 I_In net5 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM11 net6 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM12 I_out_4 I_In net6 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 net7 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM14 I_out_5 I_In net7 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM15 net8 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM16 I_out_6 I_In net8 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM17 net9 I_In VP VP sky130_fd_pr__pfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM18 I_out_7 I_In net9 VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+**.ends
+.end
diff --git a/xschem/bias/current_mirrorx8.sym b/xschem/bias/current_mirrorx8.sym
new file mode 100644
index 0000000..8547e75
--- /dev/null
+++ b/xschem/bias/current_mirrorx8.sym
@@ -0,0 +1,45 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -90 -6 0 0 0.3 0.3 {}
+T {@name} 135 -112 0 0 0.2 0.2 {}
+L 4 -130 -100 130 -100 {}
+L 4 -130 100 130 100 {}
+L 4 -130 -100 -130 100 {}
+L 4 130 -100 130 100 {}
+B 5 147.5 -92.5 152.5 -87.5 {name=VP dir=inout }
+L 7 130 -90 150 -90 {}
+T {VP} 125 -94 0 1 0.2 0.2 {}
+B 5 147.5 -72.5 152.5 -67.5 {name=I_out_3 dir=out }
+L 4 130 -70 150 -70 {}
+T {I_out_3} 125 -74 0 1 0.2 0.2 {}
+B 5 147.5 -52.5 152.5 -47.5 {name=I_out_1 dir=out }
+L 4 130 -50 150 -50 {}
+T {I_out_1} 125 -54 0 1 0.2 0.2 {}
+B 5 -152.5 -92.5 -147.5 -87.5 {name=I_In dir=in }
+L 4 -150 -90 -130 -90 {}
+T {I_In} -125 -94 0 0 0.2 0.2 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=I_out_0 dir=out }
+L 4 130 -30 150 -30 {}
+T {I_out_0} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=I_out_4 dir=out }
+L 4 130 -10 150 -10 {}
+T {I_out_4} 125 -14 0 1 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=I_out_5 dir=out }
+L 4 130 10 150 10 {}
+T {I_out_5} 125 6 0 1 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=I_out_6 dir=out }
+L 4 130 30 150 30 {}
+T {I_out_6} 125 26 0 1 0.2 0.2 {}
+B 5 147.5 47.5 152.5 52.5 {name=I_out_7 dir=out }
+L 4 130 50 150 50 {}
+T {I_out_7} 125 46 0 1 0.2 0.2 {}
+B 5 147.5 67.5 152.5 72.5 {name=I_out_2 dir=out }
+L 4 130 70 150 70 {}
+T {I_out_2} 125 66 0 1 0.2 0.2 {}
+B 5 147.5 87.5 152.5 92.5 {name=VN dir=inout }
+L 7 130 90 150 90 {}
+T {VN} 125 86 0 1 0.2 0.2 {}
diff --git a/xschem/bias/low_pvt_source.sch b/xschem/bias/low_pvt_source.sch
new file mode 100644
index 0000000..7a1b702
--- /dev/null
+++ b/xschem/bias/low_pvt_source.sch
@@ -0,0 +1,612 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {(M01)} 2940 -370 0 0 0.2 0.2 {}
+T {(MR2)} 2940 -110 0 0 0.2 0.2 {}
+T {(M02)} 3120 -460 0 0 0.2 0.2 {}
+T {(M8)} 2720 -210 0 0 0.2 0.2 {}
+T {startup} 1820 -820 0 0 0.4 0.4 {}
+N 1560 -900 1560 -860 { lab=VP}
+N 1560 -800 1560 -770 { lab=VM1D}
+N 1480 -740 1560 -740 { lab=VP}
+N 1480 -900 1480 -740 { lab=VP}
+N 1480 -830 1560 -830 { lab=VP}
+N 1560 -340 1560 0 { lab=VN}
+N 840 0 2580 0 { lab=VN}
+N 2150 -800 2150 -720 { lab=VM16D}
+N 2150 -690 2250 -690 { lab=VP}
+N 2150 -830 2250 -830 { lab=VP}
+N 2250 -830 2250 -690 { lab=VP}
+N 2150 -900 2150 -870 { lab=VP}
+N 2150 -870 2150 -860 { lab=VP}
+N 2250 -900 2250 -830 { lab=VP}
+N 2700 -800 2700 -770 { lab=VM18D}
+N 2700 -740 2780 -740 { lab=VP}
+N 2700 -830 2780 -830 { lab=VP}
+N 2780 -830 2780 -740 { lab=VP}
+N 2780 -900 2780 -830 { lab=VP}
+N 2700 -900 2700 -860 { lab=VP}
+N 2700 -900 2780 -900 { lab=VP}
+N 2920 -800 2920 -770 { lab=VM20D}
+N 2920 -740 3000 -740 { lab=VP}
+N 2920 -830 3000 -830 { lab=VP}
+N 3000 -830 3000 -740 { lab=VP}
+N 3000 -900 3000 -830 { lab=VP}
+N 2920 -900 2920 -860 { lab=VP}
+N 2920 -900 3000 -900 { lab=VP}
+N 2780 -900 2920 -900 { lab=VP}
+N 2460 -900 2700 -900 { lab=VP}
+N 1600 -830 1600 -740 { lab=VM8D}
+N 1600 -930 1600 -830 { lab=VM8D}
+N 1600 -930 2870 -930 { lab=VM8D}
+N 2870 -930 2880 -930 { lab=VM8D}
+N 2880 -930 2880 -830 { lab=VM8D}
+N 2880 -830 2880 -740 { lab=VM8D}
+N 2660 -930 2660 -830 { lab=VM8D}
+N 2660 -830 2660 -740 { lab=VM8D}
+N 2110 -930 2110 -830 { lab=VM8D}
+N 2110 -830 2110 -690 { lab=VM8D}
+N 1600 -370 2110 -370 { lab=VM2D}
+N 2420 -40 2420 0 { lab=VN}
+N 2150 -340 2150 -280 { lab=VM12D}
+N 2150 -250 2150 -220 { lab=VN}
+N 2150 -220 2150 0 { lab=VN}
+N 2230 -370 2230 -350 { lab=VN}
+N 2580 0 2920 0 { lab=VN}
+N 2920 -110 2920 0 { lab=VN}
+N 2920 -120 2920 -110 { lab=VN}
+N 2920 -150 2920 -120 { lab=VN}
+N 2610 -150 2880 -150 { lab=VM3G}
+N 2460 -250 2660 -250 { lab=VM12G}
+N 2700 -250 2700 -220 { lab=VN}
+N 2700 -220 2700 0 { lab=VN}
+N 2920 -360 2920 -180 { lab=VM3D}
+N 2850 -390 2920 -390 { lab=VN}
+N 2840 -390 2850 -390 { lab=VN}
+N 2840 -390 2840 0 { lab=VN}
+N 2920 0 3270 0 { lab=VN}
+N 3270 -490 3270 0 { lab=VN}
+N 2920 -490 3070 -490 { lab=VM22D}
+N 2960 -390 3110 -390 { lab=VM4S}
+N 3110 -460 3110 -390 { lab=VM4S}
+N 3110 -490 3270 -490 { lab=VN}
+N 3110 -560 3170 -560 { lab=I_ref}
+N 3110 -560 3110 -520 { lab=I_ref}
+N 1120 -930 1600 -930 { lab=VM8D}
+N 2500 -370 2700 -370 { lab=VM14D}
+N 1560 -370 1560 -340 { lab=VN}
+N 2400 -250 2460 -250 { lab=VM12G}
+N 2150 -370 2230 -370 { lab=VN}
+N 2460 -340 2460 -290 { lab=VM12G}
+N 2190 -250 2400 -250 { lab=VM12G}
+N 2920 -710 2920 -420 { lab=VM22D}
+N 1560 -710 1560 -690 { lab=VM9D}
+N 2460 -370 2460 -340 { lab=VM12G}
+N 2230 -350 2230 -340 { lab=VN}
+N 2230 -340 2230 0 { lab=VN}
+N 2700 -710 2700 -680 { lab=VM14D}
+N 2700 -620 2700 -280 { lab=VM14D}
+N 2460 -430 2460 -400 { lab=VP}
+N 2460 -900 2460 -490 { lab=VP}
+N 1560 -400 1600 -400 { lab=VM2D}
+N 1600 -400 1600 -370 { lab=VM2D}
+N 2150 -480 2150 -400 { lab=VM11D}
+N 2150 -620 2150 -540 { lab=VM8D}
+N 2150 -660 2150 -620 { lab=VM8D}
+N 1610 -510 2110 -510 { lab=VM9D}
+N 1600 -510 1610 -510 { lab=VM9D}
+N 1560 -480 1560 -400 { lab=VM2D}
+N 1560 -630 1560 -540 { lab=VM9D}
+N 2110 -660 2150 -660 { lab=VM8D}
+N 2110 -690 2110 -660 { lab=VM8D}
+N 1560 -540 1600 -540 { lab=VM9D}
+N 1600 -540 1600 -510 { lab=VM9D}
+N 1940 -710 1940 -630 { lab=VM50D}
+N 1940 -770 1940 -740 { lab=VP}
+N 1940 -900 1940 -770 { lab=VP}
+N 1980 -740 1980 -600 { lab=VM11D}
+N 1940 -600 1940 -570 { lab=VN}
+N 1810 -570 1940 -570 { lab=VN}
+N 1780 -570 1810 -570 { lab=VN}
+N 1780 -610 1780 -570 { lab=VN}
+N 1780 -640 1780 -610 { lab=VN}
+N 1820 -640 1940 -640 { lab=VM50D}
+N 1780 -700 1780 -670 { lab=VM8D}
+N 1780 -930 1780 -760 { lab=VM8D}
+N 1940 -570 1940 0 { lab=VN}
+N 1980 -600 1980 -480 { lab=VM11D}
+N 1980 -450 2150 -450 { lab=VM11D}
+N 1980 -480 1980 -450 { lab=VM11D}
+N 2080 -900 2080 -870 { lab=VP}
+N 2080 -810 2110 -810 { lab=VM8D}
+N 840 -900 2460 -900 { lab=VP}
+N 980 -900 980 -860 { lab=VP}
+N 1070 -900 1070 -860 { lab=VP}
+N 1180 -890 1180 -860 { lab=VP}
+N 1180 -900 1180 -890 { lab=VP}
+N 940 -810 940 -780 { lab=VN}
+N 940 -780 1180 -780 { lab=VN}
+N 1180 -800 1180 -780 { lab=VN}
+N 1070 -800 1070 -780 { lab=VN}
+N 980 -800 980 -780 { lab=VN}
+N 1070 -780 1070 -0 { lab=VN}
+N 2150 -510 2150 -480 { lab=VM11D}
+N 1560 -510 1560 -480 { lab=VM2D}
+N 3090 -270 3090 -0 { lab=VN}
+N 3110 -390 3110 -360 { lab=VM4S}
+N 3090 -330 3090 -270 { lab=VN}
+N 3110 -20 3110 0 { lab=VN}
+N 3110 -90 3110 -80 { lab=#net1}
+N 3110 -160 3110 -150 { lab=#net2}
+N 3110 -300 3110 -290 { lab=#net3}
+N 3110 -230 3110 -220 { lab=#net4}
+N 2460 -290 2460 -250 { lab=VM12G}
+N 2420 -250 2420 -230 { lab=VM12G}
+N 2420 -170 2460 -170 { lab=#net5}
+N 2460 -230 2590 -230 { lab=VM3G}
+N 2610 -230 2610 -150 { lab=VM3G}
+N 2440 -200 2440 0 { lab=VN}
+N 2420 -100 2460 -100 { lab=#net6}
+N 2460 -40 2460 30 { lab=#net7}
+N 2610 -150 2610 30 { lab=VM3G}
+N 2590 -230 2610 -230 { lab=VM3G}
+N 2440 -0 2440 200 { lab=VN}
+N 2590 -0 2590 200 { lab=VN}
+N 2460 230 2610 230 { lab=#net8}
+N 2610 160 2610 170 { lab=#net9}
+N 2610 90 2610 100 { lab=#net10}
+N 2460 90 2460 100 { lab=#net11}
+N 2460 160 2460 170 { lab=#net12}
+N 2700 -680 2700 -620 { lab=VM14D}
+N 2460 -490 2460 -430 { lab=VP}
+N 1780 -760 1780 -700 { lab=VM8D}
+N 1560 -690 1560 -630 { lab=VM9D}
+N 1180 -780 1290 -780 { lab=VN}
+N 1290 -800 1290 -780 { lab=VN}
+N 1290 -780 1390 -780 { lab=VN}
+N 1390 -800 1390 -780 { lab=VN}
+N 1390 -900 1390 -860 { lab=VP}
+N 1290 -900 1290 -860 { lab=VP}
+C {sky130_fd_pr/pfet_01v8.sym} 1580 -830 0 1 {name=M1
+L=1
+W=4
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1580 -370 0 1 {name=M2
+L=6
+W=4
+nf=1
+mult=30
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1580 -740 0 1 {name=M5
+L=0.2
+W=4
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2130 -370 0 0 {name=M11
+L=6
+W=4
+nf=1 
+mult=65
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2170 -250 0 1 {name=M12
+L=6
+W=4
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2680 -250 0 0 {name=M14
+L=6
+W=4
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2130 -830 0 0 {name=M16
+L=1
+W=4
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2130 -690 0 0 {name=M17
+L=0.2
+W=4
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2680 -830 0 0 {name=M18
+L=1
+W=4
+nf=1
+mult=10*3*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2680 -740 0 0 {name=M19
+L=0.2
+W=4
+nf=1
+mult=2*3*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2900 -830 0 0 {name=M20
+L=1
+W=4
+nf=1
+mult=10*1*1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2900 -740 0 0 {name=M21
+L=0.2
+W=4
+nf=1
+mult=2*1*1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2940 -390 0 1 {name=M22
+L=6
+W=4
+nf=1 
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/iopin.sym} 840 -900 0 1 {name=p1 lab=VP}
+C {devices/opin.sym} 3170 -560 0 0 {name=p2 lab=I_ref}
+C {devices/iopin.sym} 840 0 0 1 {name=p3 lab=VN}
+C {sky130_fd_pr/nfet_01v8.sym} 2900 -150 0 0 {name=M3
+L=6
+W=4
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 2150 -410 0 1 {name=l1 sig_type=std_logic lab=VM11D}
+C {devices/lab_wire.sym} 1560 -450 0 1 {name=l2 sig_type=std_logic lab=VM2D}
+C {devices/lab_wire.sym} 2150 -320 0 0 {name=l4 sig_type=std_logic lab=VM12D}
+C {devices/ngspice_get_value.sym} 1560 -450 2 1 {name=r3 node="v(xisource.vm2d)"
+descr="v(xisource.vm2d)"}
+C {devices/ngspice_get_value.sym} 2150 -290 0 1 {name=r8 node="v(xisource.vm12d)"
+descr="v(xisource.vm12d)"}
+C {devices/lab_wire.sym} 2460 -290 0 1 {name=l9 sig_type=std_logic lab=VM12G}
+C {devices/ngspice_get_value.sym} 2460 -250 0 0 {name=r9 node="v(xisource.vm12g)"
+descr="v(xisource.vm12g)"}
+C {devices/ngspice_get_value.sym} 1590 -690 2 1 {name=r11 node="i(v.xisource.v1)"
+descr="i(v.xisource.v1)"}
+C {devices/ngspice_get_value.sym} 2150 -430 0 0 {name=r13 node="v(xisource.vm11d)"
+descr="v(xisource.vm11d)"}
+C {devices/lab_wire.sym} 2700 -380 0 1 {name=l12 sig_type=std_logic lab=VM14D}
+C {devices/ngspice_get_value.sym} 2700 -400 0 0 {name=r14 node="v(xisource.vm14d)"
+descr="v(xisource.vm14d)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2480 -370 0 1 {name=M13
+L=0.15
+W=4
+nf=1
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 2750 -660 2 1 {name=r16 node="i(v.xisource.v2)"
+descr="i(v.xisource.v2)"}
+C {devices/ngspice_get_value.sym} 2500 -480 2 1 {name=r17 node="i(v.xisource.v3)"
+descr="i(v.xisource.v3)"}
+C {devices/lab_wire.sym} 2920 -530 0 1 {name=l14 sig_type=std_logic lab=VM22D}
+C {devices/ngspice_get_value.sym} 2920 -560 0 0 {name=r19 node="v(xisource.vm22d)"
+descr="v(xisource.vm22d)"}
+C {devices/lab_wire.sym} 2720 -150 0 1 {name=l15 sig_type=std_logic lab=VM3G}
+C {devices/ngspice_get_value.sym} 2720 -150 2 1 {name=r20 node="v(xisource.vm3g)"
+descr="v(xisource.vm3g)"}
+C {devices/lab_wire.sym} 2920 -340 0 1 {name=l16 sig_type=std_logic lab=VM3D}
+C {devices/ngspice_get_value.sym} 2920 -340 2 1 {name=r21 node="v(xisource.vm3d)"
+descr="v(xisource.vm3d)"}
+C {devices/lab_wire.sym} 3110 -420 0 1 {name=l17 sig_type=std_logic lab=VM4S}
+C {devices/ngspice_get_value.sym} 3110 -420 2 1 {name=r22 node="v(xisource.vm4s)"
+descr="v(xisource.vm4s)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 3090 -490 0 0 {name=M4
+L=0.15
+W=4
+nf=1
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1960 -740 0 1 {name=M48
+L=2
+W=0.5
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 1740 -740 2 0 {name=r27 node="i(v.xisource.v5)"
+descr="i(v.xisource.v5)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1960 -600 0 1 {name=M50
+L=0.2
+W=4
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 2080 -840 0 1 {name=C3 model=cap_mim_m3_1 W=20 L=20 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} 1940 -680 0 0 {name=l3 sig_type=std_logic lab=VM50D}
+C {devices/ngspice_get_value.sym} 1940 -680 2 0 {name=r2 node="v(xisource.vm50d)"
+descr="v(xisource.vm50d)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2130 -510 0 0 {name=M8
+L=1
+W=4
+nf=1
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1580 -510 0 1 {name=M9
+L=1
+W=4
+nf=1
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1800 -640 0 1 {name=M10
+L=2
+W=0.5
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 1560 -590 0 1 {name=l5 sig_type=std_logic lab=VM9D}
+C {devices/ngspice_get_value.sym} 1560 -580 2 1 {name=r1 node="v(xisource.vm9d)"
+descr="v(xisource.vm9d)"}
+C {devices/lab_wire.sym} 2150 -790 2 0 {name=l6 sig_type=std_logic lab=VM16D}
+C {devices/ngspice_get_value.sym} 2150 -730 0 0 {name=r4 node="v(xisource.vm16d)"
+descr="v(xisource.vm16d)"}
+C {devices/ngspice_get_value.sym} 2150 -570 0 0 {name=r5 node="v(xisource.vm8d)"
+descr="v(xisource.vm16d)"}
+C {devices/lab_wire.sym} 2150 -630 2 0 {name=l7 sig_type=std_logic lab=VM8D}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1180 -830 2 0 {name=C4 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} 1560 -780 0 0 {name=l8 sig_type=std_logic lab=VM1D}
+C {devices/lab_wire.sym} 2700 -780 0 1 {name=l10 sig_type=std_logic lab=VM18D}
+C {devices/lab_wire.sym} 2920 -780 0 1 {name=l11 sig_type=std_logic lab=VM20D}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 3110 -330 0 0 {name=R7
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 3110 -260 0 0 {name=R3
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 3110 -190 0 0 {name=R4
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 3110 -120 0 0 {name=R5
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 3110 -50 0 0 {name=R6
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2420 -200 0 1 {name=R8
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2460 -200 0 0 {name=R1
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2460 -70 0 0 {name=R2
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2420 -70 0 1 {name=R9
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2460 60 0 0 {name=R10
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2460 130 0 0 {name=R11
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2460 200 0 0 {name=R12
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2610 60 0 0 {name=R13
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2610 130 0 0 {name=R14
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 2610 200 0 0 {name=R15
+W=1.41
+L=10
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1290 -830 2 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
diff --git a/xschem/bias/low_pvt_source.spice b/xschem/bias/low_pvt_source.spice
new file mode 100644
index 0000000..508428d
--- /dev/null
+++ b/xschem/bias/low_pvt_source.spice
@@ -0,0 +1,88 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/bias/low_pvt_source.sch
+**.subckt low_pvt_source VP I_ref VN
+*.iopin VP
+*.opin I_ref
+*.iopin VN
+XM1 VM1D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM2 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=30 m=30
+XM5 VM9D VM8D VM1D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=65 m=65
+XM12 VM12D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM16D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM17 VM8D VM8D VM16D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM18 VM18D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*3*2 m=10*3*2
+XM19 VM14D VM8D VM18D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*3*2 m=2*3*2
+XM20 VM20D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*1*1 m=10*1*1
+XM21 VM22D VM8D VM20D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*1*1 m=2*1*1
+XM22 VM22D VM4S VM3D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM3 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM4 I_ref VM22D VM4S VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM48 VM50D VM11D VP VP sky130_fd_pr__pfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM50 VM50D VM11D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC3 VP VM8D sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XM8 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM9 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM10 VM8D VM50D VN VN sky130_fd_pr__nfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XC4 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XR7 net3 VM4S VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR3 net4 net3 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR4 net2 net4 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR5 net1 net2 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR6 VN net1 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR8 net5 VM12G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR1 net5 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR2 net7 net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR9 VN net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR10 net11 net7 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR11 net12 net11 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR12 net8 net12 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR13 net10 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR14 net9 net10 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR15 net8 net9 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+**.ends
+.end
diff --git a/xschem/bias/low_pvt_source.sym b/xschem/bias/low_pvt_source.sym
new file mode 100644
index 0000000..8f724ca
--- /dev/null
+++ b/xschem/bias/low_pvt_source.sym
@@ -0,0 +1,20 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -81 -6 0 0 0.3 0.3 {}
+T {@name} 135 -42 0 0 0.2 0.2 {}
+L 4 -130 -30 130 -30 {}
+L 4 -130 30 130 30 {}
+L 4 -130 -30 -130 30 {}
+L 4 130 -30 130 30 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VP dir=inout }
+L 7 130 -20 150 -20 {}
+T {VP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=I_ref dir=out }
+L 4 130 0 150 0 {}
+T {I_ref} 125 -4 0 1 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/bias/xschemrc b/xschem/bias/xschemrc
new file mode 100644
index 0000000..1a02a9e
--- /dev/null
+++ b/xschem/bias/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+# set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/comp.out b/xschem/comp.out
new file mode 100644
index 0000000..cab2e30
--- /dev/null
+++ b/xschem/comp.out
@@ -0,0 +1,20 @@
+Equate elements:  no current cell.
+Flattening unmatched subcell bias_curm_p in circuit ../../asic/layout/bias/curr_mirror_distribution.spice (0)(9 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_U4PLGH in circuit ../../asic/layout/bias/curr_mirror_distribution.spice (0)(9 instances)
+Flattening unmatched subcell sky130_fd_pr__pfet_01v8_PDCJZ5 in circuit ../../asic/layout/bias/curr_mirror_distribution.spice (0)(9 instances)
+
+Class ../../asic/layout/bias/curr_mirror_distribution.spice (0):  Merged 162 parallel devices.
+Subcircuit summary:
+Circuit 1: ../../asic/layout/bias/curr_mir |Circuit 2: current_mirrorx8.spice          
+-------------------------------------------|-------------------------------------------
+sky130_fd_pr__pfet_01v8 (180->18)          |sky130_fd_pr__pfet_01v8 (180->18)          
+Number of devices: 18                      |Number of devices: 18                      
+Number of nets: 19                         |Number of nets: 19                         
+---------------------------------------------------------------------------------------
+Resolving automorphisms by property value.
+Resolving automorphisms by pin name.
+Netlists match with 4 symmetries.
+Circuits match correctly.
+Cells have no pins;  pin matching not needed.
+Device classes ../../asic/layout/bias/curr_mirror_distribution.spice and current_mirrorx8.spice are equivalent.
+Circuits match uniquely.
diff --git a/xschem/comp/Makefile b/xschem/comp/Makefile
new file mode 120000
index 0000000..d0b0e8e
--- /dev/null
+++ b/xschem/comp/Makefile
@@ -0,0 +1 @@
+../Makefile
\ No newline at end of file
diff --git a/xschem/comp/comp.pdf b/xschem/comp/comp.pdf
new file mode 100644
index 0000000..3d3db56
--- /dev/null
+++ b/xschem/comp/comp.pdf
Binary files differ
diff --git a/xschem/comp/comp.png b/xschem/comp/comp.png
new file mode 100644
index 0000000..28a6a34
--- /dev/null
+++ b/xschem/comp/comp.png
Binary files differ
diff --git a/xschem/comp/comp.sch b/xschem/comp/comp.sch
new file mode 100644
index 0000000..6b0dc8a
--- /dev/null
+++ b/xschem/comp/comp.sch
@@ -0,0 +1,454 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 330 -550 330 -510 { lab=VP}
+N 330 -550 710 -550 { lab=VP}
+N 710 -550 710 -510 { lab=VP}
+N 330 -450 330 -200 { lab=OutN}
+N 710 -450 710 -200 { lab=OutP}
+N 330 -140 330 -100 { lab=VIq}
+N 330 -100 710 -100 { lab=VIq}
+N 710 -140 710 -100 { lab=VIq}
+N 750 -170 830 -170 { lab=Inn}
+N 330 -170 590 -170 { lab=VIq}
+N 180 -170 290 -170 { lab=Inp}
+N 590 -170 710 -170 { lab=VIq}
+N 590 -100 590 -10 { lab=VIq}
+N 310 -390 330 -390 { lab=OutN}
+N 710 -390 730 -390 { lab=OutP}
+N -50 280 920 280 { lab=VN}
+N 920 270 920 280 { lab=VN}
+N 770 150 850 150 { lab=VN}
+N 850 150 850 280 { lab=VN}
+N 920 280 1000 280 { lab=VN}
+N 920 150 1000 150 { lab=VN}
+N 1000 150 1000 280 { lab=VN}
+N 920 240 1000 240 { lab=VN}
+N 770 240 850 240 { lab=VN}
+N 770 180 770 210 { lab=#net1}
+N 770 270 770 280 { lab=VN}
+N 920 180 920 210 { lab=#net2}
+N 590 150 680 150 { lab=VN}
+N 680 150 680 280 { lab=VN}
+N 590 240 680 240 { lab=VN}
+N 590 180 590 210 { lab=#net3}
+N 590 270 590 280 { lab=VN}
+N 260 150 340 150 { lab=VN}
+N 340 150 340 280 { lab=VN}
+N 260 240 340 240 { lab=VN}
+N 260 180 260 210 { lab=#net4}
+N 260 270 260 280 { lab=VN}
+N -50 150 30 150 { lab=VN}
+N 30 150 30 280 { lab=VN}
+N -50 240 30 240 { lab=VN}
+N -50 180 -50 210 { lab=#net5}
+N -50 270 -50 280 { lab=VN}
+N -160 280 -50 280 { lab=VN}
+N -90 150 -90 240 { lab=bias}
+N -90 120 -90 150 { lab=bias}
+N 220 100 220 240 { lab=bias}
+N -50 100 220 100 { lab=bias}
+N -50 100 -50 120 { lab=bias}
+N -90 100 -50 100 { lab=bias}
+N -90 100 -90 120 { lab=bias}
+N -120 70 -90 70 { lab=bias}
+N -90 70 -90 100 { lab=bias}
+N 220 100 370 100 { lab=bias}
+N 550 100 550 240 { lab=bias}
+N 260 -10 260 120 { lab=OutN}
+N 590 -10 590 120 { lab=VIq}
+N 590 -170 590 -100 { lab=VIq}
+N 370 100 730 100 { lab=bias}
+N 730 100 730 240 { lab=bias}
+N 730 100 880 100 { lab=bias}
+N 880 100 880 240 { lab=bias}
+N 1000 280 1160 280 { lab=VN}
+N 1160 230 1160 280 { lab=VN}
+N 1160 100 1160 170 { lab=bias}
+N 880 100 1160 100 { lab=bias}
+N 1160 280 1280 280 { lab=VN}
+N 1280 230 1280 280 { lab=VN}
+N 1280 100 1280 170 { lab=bias}
+N 1160 100 1280 100 { lab=bias}
+N 600 -480 670 -480 { lab=VP}
+N 220 -610 330 -610 { lab=VP}
+N 330 -610 330 -550 { lab=VP}
+N 550 -480 550 -460 { lab=VP}
+N 490 -480 490 -460 { lab=VP}
+N 510 -430 530 -430 { lab=VN}
+N 520 -430 520 280 { lab=VN}
+N 710 -550 900 -550 { lab=VP}
+N 710 -230 770 -230 { lab=OutP}
+N 260 -220 260 -10 { lab=OutN}
+N 260 -230 260 -220 { lab=OutN}
+N 260 -230 330 -230 { lab=OutN}
+N 550 -480 600 -480 { lab=VP}
+N 370 -480 490 -480 { lab=VP}
+N 770 -230 770 120 { lab=OutP}
+N 510 -360 520 -360 { lab=VN}
+N 520 -360 530 -360 { lab=VN}
+N 920 -550 920 120 { lab=VP}
+N 900 -550 920 -550 { lab=VP}
+N 330 -390 370 -390 { lab=OutN}
+N 370 -390 490 -390 { lab=OutN}
+N 490 -400 490 -390 { lab=OutN}
+N 550 -400 550 -390 { lab=OutP}
+N 550 -390 670 -390 { lab=OutP}
+N 670 -390 710 -390 { lab=OutP}
+N 490 -480 550 -480 { lab=VP}
+N 520 -550 520 -480 { lab=VP}
+N 710 -320 1070 -320 { lab=OutP}
+N 1070 -70 1070 280 { lab=VN}
+C {devices/code.sym} 1520 -300 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 810 -450 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 810 -420 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 810 -390 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 810 -360 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1520 -120 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 310 -170 0 0 {name=M1
+L=0.2
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 730 -170 0 1 {name=M2
+L=0.2
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 180 -520 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 180 -490 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 180 -460 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 180 -430 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 780 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 780 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 780 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 780 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {devices/ngspice_get_value.sym} 250 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 250 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 250 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 250 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 710 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 440 150 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 440 180 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 440 210 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 440 240 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} -210 150 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} -210 180 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} -210 210 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} -210 240 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 330 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 710 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 630 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 180 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -120 70 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 830 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 220 -610 2 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -160 280 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 310 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 1070 -320 0 0 {name=p7 lab=OutP}
+C {devices/ngspice_get_value.sym} 970 -470 0 0 {name=r17 node="v(x7.Vm8D)"
+descr="v(x7.Vm8D)"}
+C {sky130_fd_pr/nfet_01v8.sym} 750 240 0 0 {name=M14
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 900 240 0 0 {name=M16
+L=0.5
+W=2
+nf=1 
+mult=5*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 900 150 0 0 {name=M11
+L=0.15
+W=2
+nf=1 
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 750 150 0 0 {name=M3
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 570 240 0 0 {name=M10
+L=0.5
+W=2
+nf=1 
+mult=20*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 570 150 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=20
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 240 240 0 0 {name=M13
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 240 150 0 0 {name=M15
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -70 240 0 0 {name=M17
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -70 150 0 0 {name=M18
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1160 200 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1280 200 0 0 {name=C2 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/res_high_po_0p35.sym} 490 -430 0 1 {name=R1
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 550 -430 0 0 {name=R2
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
diff --git a/xschem/comp/comp.spice b/xschem/comp/comp.spice
new file mode 100644
index 0000000..b02ecd1
--- /dev/null
+++ b/xschem/comp/comp.spice
@@ -0,0 +1,141 @@
+**.subckt comp Inp bias Inn VP VN OutN OutP
+*.ipin Inp
+*.ipin bias
+*.ipin Inn
+*.iopin VP
+*.iopin VN
+*.opin OutN
+*.opin OutP
+XM1 OutN Inp VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM2 OutP Inn VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM4 OutP bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM3 OutN bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM7 bias bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM9 VIq bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM5 OutP net1 VP VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XM6 OutN net1 VP VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1 
+XR1 OutN net1 GND sky130_fd_pr__res_xhigh_po_0p35 L=3 mult=1 m=1
+XR2 net1 OutP GND sky130_fd_pr__res_xhigh_po_0p35 L=3 mult=1 m=1
+**** begin user architecture code
+
+*.lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice tt
+.lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+
+
+
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn)
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc
+
+
+**** end user architecture code
+**.ends
+.GLOBAL GND
+** flattened .save nodes
+.end
diff --git a/xschem/comp/comp.svg b/xschem/comp/comp.svg
new file mode 100644
index 0000000..646bebd
--- /dev/null
+++ b/xschem/comp/comp.svg
@@ -0,0 +1,534 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="3088" height="2077" version="1.1">
+<style type="text/css">
+.l0{
+ fill: #000000;
+  stroke: #000000;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l1{
+ fill: #00ccee;
+  stroke: #00ccee;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l2{
+  fill: none;
+  stroke: #3f3f3f;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l3{
+ fill: #cccccc; fill-opacity: 0.5;
+  stroke: #cccccc;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l4{
+ fill: #88dd00;
+  stroke: #88dd00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l5{
+ fill: #bb2200;
+  stroke: #bb2200;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l6{
+ fill: #00ccee; fill-opacity: 0.5;
+  stroke: #00ccee;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l7{
+ fill: #ff0000; fill-opacity: 0.5;
+  stroke: #ff0000;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l8{
+ fill: #ffff00; fill-opacity: 0.5;
+  stroke: #ffff00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l9{
+ fill: #ffffff; fill-opacity: 0.5;
+  stroke: #ffffff;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l10{
+ fill: #ff00ff;
+  stroke: #ff00ff;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l11{
+ fill: #00ff00; fill-opacity: 0.5;
+  stroke: #00ff00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l12{
+ fill: #0044dd; fill-opacity: 0.5;
+  stroke: #0044dd;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l13{
+ fill: #aaaa00; fill-opacity: 0.5;
+  stroke: #aaaa00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l14{
+  fill: none;
+  stroke: #aaccaa;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l15{
+ fill: #ff7777; fill-opacity: 0.5;
+  stroke: #ff7777;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l16{
+ fill: #bfff81; fill-opacity: 0.5;
+  stroke: #bfff81;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l17{
+  fill: none;
+  stroke: #00ffcc;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l18{
+ fill: #ce0097; fill-opacity: 0.5;
+  stroke: #ce0097;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l19{
+  fill: none;
+  stroke: #d2d46b;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l20{
+  fill: none;
+  stroke: #ef6158;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+.l21{
+  fill: none;
+  stroke: #fdb200;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 2.02779;
+}
+text {font-family: Sans-Serif;}
+</style>
+<rect class="l0" x="0" y="0" width="3088" height="2077"/>
+<text fill="#00ccee"  xml:space="preserve" font-size="26.3613" transform="translate(1588.17, 1257.13)" >VIq</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(878.665, 1147.18)" >Inp</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(562.251, 1391.26)" >bias</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(1843.99, 1147.18)" >Inn</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(1427.32, 383.612) rotate(270)" >VP</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(1122.8, 1668.23) rotate(270)" >VN</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(1088.4, 730.012)" >OutN</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="32.2193" transform="translate(1658.57, 734.11)" >OutP</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="26.3613" transform="translate(1982.46, 1219.58)" >VM8D</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="29.2903" transform="translate(2400.22, 851.146)" >TT_MODELS</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="29.2903" transform="translate(2400.22, 1189.11)" >SPICE</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1188.34, 1095.75)" >M1</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1250.2, 1180.51)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1250.2, 1097.99)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1245.51, 1128.87)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1178.18, 1128.87)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1264.28, 1113.26)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1266.63, 1173.2)" >1 x 3 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1190.34, 1180.51)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1611.64, 1095.75)" >M2</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1569.78, 1180.51)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1567.78, 1097.99)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1573.47, 1128.87)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1639.8, 1128.87)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1432.7, 1113.26)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1453.35, 1173.2)" >1 x 3 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1611.64, 1180.51)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1638.96, 1452.5)" >M4</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1700.82, 1537.25)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1700.82, 1454.73)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1696.13, 1485.61)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1628.8, 1485.61)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1714.9, 1470)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1717.25, 1529.95)" >1 x 1 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1640.96, 1537.25)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1056.91, 1452.5)" >M3</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1118.77, 1537.25)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1118.77, 1454.73)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1114.08, 1485.61)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1046.75, 1485.61)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1132.85, 1470)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1135.2, 1529.95)" >1 x 1 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1058.91, 1537.25)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(691.62, 1452.5)" >M7</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(649.762, 1537.25)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(647.762, 1454.73)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(653.456, 1485.61)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(719.784, 1485.61)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(512.68, 1470)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(545.333, 1529.95)" >1 x 1 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(691.62, 1537.25)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1338.55, 1452.5)" >M9</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1400.41, 1537.25)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1400.41, 1454.73)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1395.71, 1485.61)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1328.39, 1485.61)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1414.49, 1470)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1416.84, 1529.95)" >5 x 1 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1340.55, 1537.25)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1388.7, 775.447) rotate(270)" >R1</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1322.98, 856.447) rotate(270)" >1 * 0.35 / 3</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1355.84, 934.447) rotate(270)" >res_xhigh_po_0p35</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1359.36, 693.12) rotate(270)" >B</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1538.91, 775.447) rotate(270)" >R2</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1473.19, 856.447) rotate(270)" >1 * 0.35 / 3</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1506.05, 934.447) rotate(270)" >res_xhigh_po_0p35</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1509.56, 693.12) rotate(270)" >B</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1920.6, 1452.5)" >M8</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1982.46, 1537.25)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1982.46, 1454.73)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1977.76, 1485.61)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1910.44, 1485.61)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1996.54, 1470)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1998.89, 1529.95)" >3 x 1 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="14.6451" transform="translate(1922.6, 1537.25)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1273.67, 513.704)" >M5</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1229.81, 598.456)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1231.81, 515.943)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1235.51, 546.823)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1301.83, 546.823)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1129.73, 531.205)" >pfet_01v8</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1115.38, 591.154)" >1 x 2 / 0.15</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1526.31, 513.704)" >M6</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1588.17, 598.456)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1588.17, 515.943)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1583.47, 546.823)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="14.6451" transform="translate(1516.14, 546.823)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="19.5269" transform="translate(1602.25, 531.205)" >pfet_01v8</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="19.5269" transform="translate(1604.59, 591.154)" >1 x 2 / 0.15</text>
+<path class="l4" d="M2409.61 927.817L2484.71 927.817"/>
+<path class="l4" d="M2409.61 946.593L2447.16 946.593"/>
+<path class="l4" d="M2409.61 965.369L2484.71 965.369"/>
+<path class="l4" d="M2409.61 984.145L2465.94 984.145"/>
+<path class="l4" d="M2409.61 1002.92L2465.94 1002.92"/>
+<path class="l4" d="M2409.61 1021.7L2541.04 1021.7"/>
+<path class="l4" d="M2409.61 1040.47L2447.16 1040.47"/>
+<path class="l4" d="M2409.61 909.042L2503.49 909.042"/>
+<path class="l4" d="M2409.61 890.266L2447.16 890.266"/>
+<path class="l4" d="M2559.81 890.266L2578.59 890.266"/>
+<path class="l4" d="M2578.59 890.266L2578.59 1078.02"/>
+<path class="l4" d="M2409.61 1078.02L2578.59 1078.02"/>
+<path class="l4" d="M2409.61 1059.25L2409.61 1078.02"/>
+<path class="l4" d="M2559.81 871.49L2559.81 1059.25"/>
+<path class="l4" d="M2390.83 1059.25L2559.81 1059.25"/>
+<path class="l4" d="M2390.83 871.49L2390.83 1059.25"/>
+<path class="l4" d="M2390.83 871.49L2559.81 871.49"/>
+<path class="l4" d="M2409.61 1265.78L2484.71 1265.78"/>
+<path class="l4" d="M2409.61 1284.56L2447.16 1284.56"/>
+<path class="l4" d="M2409.61 1303.33L2484.71 1303.33"/>
+<path class="l4" d="M2409.61 1322.11L2465.94 1322.11"/>
+<path class="l4" d="M2409.61 1340.89L2465.94 1340.89"/>
+<path class="l4" d="M2409.61 1359.66L2541.04 1359.66"/>
+<path class="l4" d="M2409.61 1378.44L2447.16 1378.44"/>
+<path class="l4" d="M2409.61 1247.01L2503.49 1247.01"/>
+<path class="l4" d="M2409.61 1228.23L2447.16 1228.23"/>
+<path class="l4" d="M2559.81 1228.23L2578.59 1228.23"/>
+<path class="l4" d="M2578.59 1228.23L2578.59 1415.99"/>
+<path class="l4" d="M2409.61 1415.99L2578.59 1415.99"/>
+<path class="l4" d="M2409.61 1397.21L2409.61 1415.99"/>
+<path class="l4" d="M2559.81 1209.45L2559.81 1397.21"/>
+<path class="l4" d="M2390.83 1397.21L2559.81 1397.21"/>
+<path class="l4" d="M2390.83 1209.45L2390.83 1397.21"/>
+<path class="l4" d="M2390.83 1209.45L2559.81 1209.45"/>
+<path class="l4" d="M1222.04 1092.11L1222.04 1176.6"/>
+<path class="l4" d="M1170.4 1134.35L1212.65 1134.35"/>
+<path class="l4" d="M1245.51 1078.02L1245.51 1101.49"/>
+<path class="l4" d="M1245.51 1167.21L1245.51 1190.68"/>
+<path class="l4" d="M1212.65 1106.19L1212.65 1162.52"/>
+<path class="l4" d="M1222.04 1101.49L1245.51 1101.49"/>
+<path class="l4" d="M1222.04 1167.21L1236.12 1167.21"/>
+<path class="l4" d="M1236.12 1162.52L1245.51 1167.21L1236.12 1171.9L1236.12 1162.52"/>
+<path class="l4" d="M1606.94 1092.11L1606.94 1176.6"/>
+<path class="l4" d="M1616.33 1134.35L1658.57 1134.35"/>
+<path class="l4" d="M1583.47 1078.02L1583.47 1101.49"/>
+<path class="l4" d="M1583.47 1167.21L1583.47 1190.68"/>
+<path class="l4" d="M1616.33 1106.19L1616.33 1162.52"/>
+<path class="l4" d="M1583.47 1101.49L1606.94 1101.49"/>
+<path class="l4" d="M1592.86 1167.21L1606.94 1167.21"/>
+<path class="l4" d="M1592.86 1162.52L1583.47 1167.21L1592.86 1171.9L1592.86 1162.52"/>
+<path class="l4" d="M1672.66 1448.85L1672.66 1533.34"/>
+<path class="l4" d="M1621.02 1491.09L1663.27 1491.09"/>
+<path class="l4" d="M1696.13 1434.76L1696.13 1458.23"/>
+<path class="l4" d="M1696.13 1523.95L1696.13 1547.42"/>
+<path class="l4" d="M1663.27 1462.93L1663.27 1519.26"/>
+<path class="l4" d="M1672.66 1458.23L1696.13 1458.23"/>
+<path class="l4" d="M1672.66 1523.95L1686.74 1523.95"/>
+<path class="l4" d="M1686.74 1519.26L1696.13 1523.95L1686.74 1528.64L1686.74 1519.26"/>
+<path class="l4" d="M1090.61 1448.85L1090.61 1533.34"/>
+<path class="l4" d="M1038.97 1491.09L1081.22 1491.09"/>
+<path class="l4" d="M1114.08 1434.76L1114.08 1458.23"/>
+<path class="l4" d="M1114.08 1523.95L1114.08 1547.42"/>
+<path class="l4" d="M1081.22 1462.93L1081.22 1519.26"/>
+<path class="l4" d="M1090.61 1458.23L1114.08 1458.23"/>
+<path class="l4" d="M1090.61 1523.95L1104.69 1523.95"/>
+<path class="l4" d="M1104.69 1519.26L1114.08 1523.95L1104.69 1528.64L1104.69 1519.26"/>
+<path class="l4" d="M686.926 1448.85L686.926 1533.34"/>
+<path class="l4" d="M696.314 1491.09L738.559 1491.09"/>
+<path class="l4" d="M663.456 1434.76L663.456 1458.23"/>
+<path class="l4" d="M663.456 1523.95L663.456 1547.42"/>
+<path class="l4" d="M696.314 1462.93L696.314 1519.26"/>
+<path class="l4" d="M663.456 1458.23L686.926 1458.23"/>
+<path class="l4" d="M672.844 1523.95L686.926 1523.95"/>
+<path class="l4" d="M672.844 1519.26L663.456 1523.95L672.844 1528.64L672.844 1519.26"/>
+<path class="l4" d="M1372.24 1448.85L1372.24 1533.34"/>
+<path class="l4" d="M1320.61 1491.09L1362.86 1491.09"/>
+<path class="l4" d="M1395.71 1434.76L1395.71 1458.23"/>
+<path class="l4" d="M1395.71 1523.95L1395.71 1547.42"/>
+<path class="l4" d="M1362.86 1462.93L1362.86 1519.26"/>
+<path class="l4" d="M1372.24 1458.23L1395.71 1458.23"/>
+<path class="l4" d="M1372.24 1523.95L1386.33 1523.95"/>
+<path class="l4" d="M1386.33 1519.26L1395.71 1523.95L1386.33 1528.64L1386.33 1519.26"/>
+<path class="l4" d="M1283.06 721.283L1301.83 721.283"/>
+<path class="l4" d="M1301.83 721.283L1306.53 735.365"/>
+<path class="l4" d="M1306.53 735.365L1315.92 707.202"/>
+<path class="l4" d="M1315.92 707.202L1325.3 735.365"/>
+<path class="l4" d="M1325.3 735.365L1334.69 707.202"/>
+<path class="l4" d="M1334.69 707.202L1344.08 735.365"/>
+<path class="l4" d="M1344.08 735.365L1353.47 707.202"/>
+<path class="l4" d="M1353.47 707.202L1362.86 735.365"/>
+<path class="l4" d="M1362.86 735.365L1372.24 707.202"/>
+<path class="l4" d="M1372.24 707.202L1376.94 721.283"/>
+<path class="l4" d="M1376.94 721.283L1395.71 721.283"/>
+<path class="l4" d="M1433.26 721.283L1452.04 721.283"/>
+<path class="l4" d="M1452.04 721.283L1456.73 735.365"/>
+<path class="l4" d="M1456.73 735.365L1466.12 707.202"/>
+<path class="l4" d="M1466.12 707.202L1475.51 735.365"/>
+<path class="l4" d="M1475.51 735.365L1484.9 707.202"/>
+<path class="l4" d="M1484.9 707.202L1494.29 735.365"/>
+<path class="l4" d="M1494.29 735.365L1503.67 707.202"/>
+<path class="l4" d="M1503.67 707.202L1513.06 735.365"/>
+<path class="l4" d="M1513.06 735.365L1522.45 707.202"/>
+<path class="l4" d="M1522.45 707.202L1527.14 721.283"/>
+<path class="l4" d="M1527.14 721.283L1545.92 721.283"/>
+<path class="l4" d="M1954.29 1448.85L1954.29 1533.34"/>
+<path class="l4" d="M1902.66 1491.09L1944.91 1491.09"/>
+<path class="l4" d="M1977.76 1434.76L1977.76 1458.23"/>
+<path class="l4" d="M1977.76 1523.95L1977.76 1547.42"/>
+<path class="l4" d="M1944.91 1462.93L1944.91 1519.26"/>
+<path class="l4" d="M1954.29 1458.23L1977.76 1458.23"/>
+<path class="l4" d="M1954.29 1523.95L1968.38 1523.95"/>
+<path class="l4" d="M1968.38 1519.26L1977.76 1523.95L1968.38 1528.64L1968.38 1519.26"/>
+<path class="l4" d="M1268.98 510.055L1268.98 594.547"/>
+<path class="l4" d="M1245.51 495.974L1245.51 519.443"/>
+<path class="l4" d="M1245.51 585.159L1245.51 608.628"/>
+<path class="l4" d="M1278.36 524.137L1278.36 580.465"/>
+<path class="l4" d="M1245.51 585.159L1268.98 585.159"/>
+<path class="l4" d="M1245.51 519.443L1259.59 519.443"/>
+<path class="l4" d="M1297.14 552.301L1320.61 552.301"/>
+<path class="l4" d="M1259.59 514.749L1268.98 519.443L1259.59 524.137L1259.59 514.749"/>
+<circle class="l4" cx="1287.75" cy="552.301" r="9.38791" style="fill:none;"/>
+<path class="l4" d="M1560 510.055L1560 594.547"/>
+<path class="l4" d="M1583.47 495.974L1583.47 519.443"/>
+<path class="l4" d="M1583.47 585.159L1583.47 608.628"/>
+<path class="l4" d="M1550.61 524.137L1550.61 580.465"/>
+<path class="l4" d="M1560 585.159L1583.47 585.159"/>
+<path class="l4" d="M1569.39 519.443L1583.47 519.443"/>
+<path class="l4" d="M1508.37 552.301L1531.84 552.301"/>
+<path class="l4" d="M1569.39 514.749L1560 519.443L1569.39 524.137L1569.39 514.749"/>
+<circle class="l4" cx="1541.23" cy="552.301" r="9.38791" style="fill:none;"/>
+<path class="l5" d="M1245.51 1129.66L1236.12 1134.35L1245.51 1139.05L1245.51 1129.66"/>
+<path class="l5" d="M1240.81 1073.33L1250.2 1073.33L1250.2 1082.72L1240.81 1082.72L1240.81 1073.33z"/>
+<path class="l5" d="M1165.71 1129.66L1175.1 1129.66L1175.1 1139.05L1165.71 1139.05L1165.71 1129.66z"/>
+<path class="l5" d="M1240.81 1185.99L1250.2 1185.99L1250.2 1195.37L1240.81 1195.37L1240.81 1185.99z"/>
+<path class="l5" d="M1245.36 1134.2L1245.65 1134.2L1245.65 1134.5L1245.36 1134.5L1245.36 1134.2z"/>
+<path class="l5" d="M1583.47 1129.66L1592.86 1134.35L1583.47 1139.05L1583.47 1129.66"/>
+<path class="l5" d="M1578.78 1073.33L1588.17 1073.33L1588.17 1082.72L1578.78 1082.72L1578.78 1073.33z"/>
+<path class="l5" d="M1653.88 1129.66L1663.27 1129.66L1663.27 1139.05L1653.88 1139.05L1653.88 1129.66z"/>
+<path class="l5" d="M1578.78 1185.99L1588.17 1185.99L1588.17 1195.37L1578.78 1195.37L1578.78 1185.99z"/>
+<path class="l5" d="M1583.32 1134.2L1583.62 1134.2L1583.62 1134.5L1583.32 1134.5L1583.32 1134.2z"/>
+<path class="l5" d="M1696.13 1486.4L1686.74 1491.09L1696.13 1495.79L1696.13 1486.4"/>
+<path class="l5" d="M1691.43 1430.07L1700.82 1430.07L1700.82 1439.46L1691.43 1439.46L1691.43 1430.07z"/>
+<path class="l5" d="M1616.33 1486.4L1625.72 1486.4L1625.72 1495.79L1616.33 1495.79L1616.33 1486.4z"/>
+<path class="l5" d="M1691.43 1542.73L1700.82 1542.73L1700.82 1552.11L1691.43 1552.11L1691.43 1542.73z"/>
+<path class="l5" d="M1695.98 1490.95L1696.27 1490.95L1696.27 1491.24L1695.98 1491.24L1695.98 1490.95z"/>
+<path class="l5" d="M1114.08 1486.4L1104.69 1491.09L1114.08 1495.79L1114.08 1486.4"/>
+<path class="l5" d="M1109.38 1430.07L1118.77 1430.07L1118.77 1439.46L1109.38 1439.46L1109.38 1430.07z"/>
+<path class="l5" d="M1034.28 1486.4L1043.67 1486.4L1043.67 1495.79L1034.28 1495.79L1034.28 1486.4z"/>
+<path class="l5" d="M1109.38 1542.73L1118.77 1542.73L1118.77 1552.11L1109.38 1552.11L1109.38 1542.73z"/>
+<path class="l5" d="M1113.93 1490.95L1114.22 1490.95L1114.22 1491.24L1113.93 1491.24L1113.93 1490.95z"/>
+<path class="l5" d="M663.456 1486.4L672.844 1491.09L663.456 1495.79L663.456 1486.4"/>
+<path class="l5" d="M658.762 1430.07L668.15 1430.07L668.15 1439.46L658.762 1439.46L658.762 1430.07z"/>
+<path class="l5" d="M733.865 1486.4L743.253 1486.4L743.253 1495.79L733.865 1495.79L733.865 1486.4z"/>
+<path class="l5" d="M658.762 1542.73L668.15 1542.73L668.15 1552.11L658.762 1552.11L658.762 1542.73z"/>
+<path class="l5" d="M663.309 1490.95L663.603 1490.95L663.603 1491.24L663.309 1491.24L663.309 1490.95z"/>
+<path class="l5" d="M1395.71 1486.4L1386.33 1491.09L1395.71 1495.79L1395.71 1486.4"/>
+<path class="l5" d="M1391.02 1430.07L1400.41 1430.07L1400.41 1439.46L1391.02 1439.46L1391.02 1430.07z"/>
+<path class="l5" d="M1315.92 1486.4L1325.3 1486.4L1325.3 1495.79L1315.92 1495.79L1315.92 1486.4z"/>
+<path class="l5" d="M1391.02 1542.73L1400.41 1542.73L1400.41 1552.11L1391.02 1552.11L1391.02 1542.73z"/>
+<path class="l5" d="M1395.57 1490.95L1395.86 1490.95L1395.86 1491.24L1395.57 1491.24L1395.57 1490.95z"/>
+<path class="l5" d="M1581.12 1263.44L1585.82 1263.44L1585.82 1268.13L1581.12 1268.13L1581.12 1263.44z"/>
+<path class="l5" d="M963.869 1134.35L952.134 1124.96L936.879 1124.96L936.879 1143.74L952.134 1143.74L963.869 1134.35"/>
+<path class="l5" d="M963.851 1134.33L963.888 1134.33L963.888 1134.37L963.851 1134.37L963.851 1134.33z"/>
+<path class="l5" d="M663.456 1378.44L651.721 1369.05L636.466 1369.05L636.466 1387.83L651.721 1387.83L663.456 1378.44"/>
+<path class="l5" d="M663.438 1378.42L663.474 1378.42L663.474 1378.46L663.438 1378.46L663.438 1378.42z"/>
+<path class="l5" d="M1808.78 1134.35L1820.52 1124.96L1835.77 1124.96L1835.77 1143.74L1820.52 1143.74L1808.78 1134.35"/>
+<path class="l5" d="M1808.76 1134.33L1808.8 1134.33L1808.8 1134.37L1808.76 1134.37L1808.76 1134.33z"/>
+<path class="l5" d="M1414.49 420.87L1405.39 410.309L1405.39 400.628L1414.49 390.066L1423.58 400.628L1423.58 410.309L1414.49 420.87"/>
+<path class="l5" d="M1414.47 420.852L1414.51 420.852L1414.51 420.889L1414.47 420.889L1414.47 420.852z"/>
+<path class="l5" d="M1114.08 1584.97L1123.17 1595.53L1123.17 1605.21L1114.08 1615.78L1104.98 1605.21L1104.98 1595.53L1114.08 1584.97"/>
+<path class="l5" d="M1114.06 1584.95L1114.09 1584.95L1114.09 1584.99L1114.06 1584.99L1114.06 1584.95z"/>
+<path class="l5" d="M1207.95 730.671L1207.95 711.896L1192.7 711.896L1180.96 721.283L1192.7 730.671L1207.95 730.671"/>
+<path class="l5" d="M1207.94 721.265L1207.97 721.265L1207.97 721.302L1207.94 721.302L1207.94 721.265z"/>
+<path class="l5" d="M1621.02 711.896L1621.02 730.671L1636.28 730.671L1648.01 721.283L1636.28 711.896L1621.02 711.896"/>
+<path class="l5" d="M1621 721.265L1621.04 721.265L1621.04 721.302L1621 721.302L1621 721.265z"/>
+<path class="l5" d="M1278.36 716.589L1287.75 716.589L1287.75 725.977L1278.36 725.977L1278.36 716.589z"/>
+<path class="l5" d="M1391.02 716.589L1400.41 716.589L1400.41 725.977L1391.02 725.977L1391.02 716.589z"/>
+<path class="l5" d="M1334.69 679.038L1344.08 679.038L1344.08 688.426L1334.69 688.426L1334.69 679.038z"/>
+<path class="l5" d="M1428.57 716.589L1437.96 716.589L1437.96 725.977L1428.57 725.977L1428.57 716.589z"/>
+<path class="l5" d="M1541.23 716.589L1550.61 716.589L1550.61 725.977L1541.23 725.977L1541.23 716.589z"/>
+<path class="l5" d="M1484.9 679.038L1494.29 679.038L1494.29 688.426L1484.9 688.426L1484.9 679.038z"/>
+<path class="l5" d="M1977.76 1486.4L1968.38 1491.09L1977.76 1495.79L1977.76 1486.4"/>
+<path class="l5" d="M1973.07 1430.07L1982.46 1430.07L1982.46 1439.46L1973.07 1439.46L1973.07 1430.07z"/>
+<path class="l5" d="M1897.97 1486.4L1907.35 1486.4L1907.35 1495.79L1897.97 1495.79L1897.97 1486.4z"/>
+<path class="l5" d="M1973.07 1542.73L1982.46 1542.73L1982.46 1552.11L1973.07 1552.11L1973.07 1542.73z"/>
+<path class="l5" d="M1977.62 1490.95L1977.91 1490.95L1977.91 1491.24L1977.62 1491.24L1977.62 1490.95z"/>
+<path class="l5" d="M1975.42 1225.88L1980.11 1225.88L1980.11 1230.58L1975.42 1230.58L1975.42 1225.88z"/>
+<path class="l5" d="M1254.89 547.607L1245.51 552.301L1254.89 556.995L1254.89 547.607"/>
+<path class="l5" d="M1240.81 603.935L1250.2 603.935L1250.2 613.322L1240.81 613.322L1240.81 603.935z"/>
+<path class="l5" d="M1315.92 547.607L1325.3 547.607L1325.3 556.995L1315.92 556.995L1315.92 547.607z"/>
+<path class="l5" d="M1240.81 491.28L1250.2 491.28L1250.2 500.668L1240.81 500.668L1240.81 491.28z"/>
+<path class="l5" d="M1245.36 552.154L1245.65 552.154L1245.65 552.448L1245.36 552.448L1245.36 552.154z"/>
+<path class="l5" d="M1574.08 547.607L1583.47 552.301L1574.08 556.995L1574.08 547.607"/>
+<path class="l5" d="M1578.78 603.935L1588.17 603.935L1588.17 613.322L1578.78 613.322L1578.78 603.935z"/>
+<path class="l5" d="M1503.67 547.607L1513.06 547.607L1513.06 556.995L1503.67 556.995L1503.67 547.607z"/>
+<path class="l5" d="M1578.78 491.28L1588.17 491.28L1588.17 500.668L1578.78 500.668L1578.78 491.28z"/>
+<path class="l5" d="M1583.32 552.154L1583.62 552.154L1583.62 552.448L1583.32 552.448L1583.32 552.154z"/>
+<path class="l1" d="M1245.51 420.87L1245.51 495.974"/>
+<path class="l1" d="M1245.51 420.87L1583.47 420.87"/>
+<path class="l1" d="M1583.47 420.87L1583.47 495.974"/>
+<path class="l1" d="M1583.47 495.974L1583.47 552.301"/>
+<path class="l1" d="M1245.51 495.974L1245.51 552.301"/>
+<path class="l1" d="M1245.51 608.628L1245.51 1078.02"/>
+<path class="l1" d="M1583.47 608.628L1583.47 1078.02"/>
+<path class="l1" d="M1245.51 1190.68L1245.51 1265.78"/>
+<path class="l1" d="M1245.51 1265.78L1583.47 1265.78"/>
+<path class="l1" d="M1583.47 1190.68L1583.47 1265.78"/>
+<path class="l1" d="M1283.06 1584.97L1414.49 1584.97"/>
+<path class="l1" d="M1658.57 1134.35L1808.78 1134.35"/>
+<path class="l1" d="M1245.51 1134.35L1395.71 1134.35"/>
+<path class="l1" d="M663.456 1378.44L663.456 1434.76"/>
+<path class="l1" d="M663.456 1491.09L663.456 1547.42"/>
+<path class="l1" d="M963.869 1134.35L1170.4 1134.35"/>
+<path class="l1" d="M738.559 1434.76L738.559 1491.09"/>
+<path class="l1" d="M663.456 1584.97L1283.06 1584.97"/>
+<path class="l1" d="M1395.71 1134.35L1583.47 1134.35"/>
+<path class="l1" d="M663.456 1547.42L663.456 1584.97"/>
+<path class="l1" d="M1395.71 1491.09L1395.71 1547.42"/>
+<path class="l1" d="M1395.71 1547.42L1395.71 1584.97"/>
+<path class="l1" d="M1114.08 1491.09L1114.08 1547.42"/>
+<path class="l1" d="M1114.08 1547.42L1114.08 1584.97"/>
+<path class="l1" d="M1414.49 1584.97L1583.47 1584.97"/>
+<path class="l1" d="M1696.13 1547.42L1696.13 1584.97"/>
+<path class="l1" d="M1696.13 1491.09L1696.13 1547.42"/>
+<path class="l1" d="M663.456 1378.44L1508.37 1378.44"/>
+<path class="l1" d="M1621.02 1378.44L1621.02 1491.09"/>
+<path class="l1" d="M738.559 1378.44L738.559 1434.76"/>
+<path class="l1" d="M1320.61 1378.44L1320.61 1491.09"/>
+<path class="l1" d="M1038.97 1378.44L1038.97 1491.09"/>
+<path class="l1" d="M1696.13 1059.25L1696.13 1434.76"/>
+<path class="l1" d="M1508.37 1378.44L1621.02 1378.44"/>
+<path class="l1" d="M1583.47 1584.97L1696.13 1584.97"/>
+<path class="l1" d="M1395.71 1265.78L1395.71 1434.76"/>
+<path class="l1" d="M1114.08 1040.47L1114.08 1434.76"/>
+<path class="l1" d="M1114.08 1040.47L1245.51 1040.47"/>
+<path class="l1" d="M1583.47 1040.47L1696.13 1040.47"/>
+<path class="l1" d="M1433.26 1134.35L1433.26 1415.99"/>
+<path class="l1" d="M1433.26 1415.99L1564.7 1415.99"/>
+<path class="l1" d="M1564.7 1415.99L1564.7 1584.97"/>
+<path class="l1" d="M1696.13 1040.47L1696.13 1059.25"/>
+<path class="l1" d="M1207.95 721.283L1245.51 721.283"/>
+<path class="l1" d="M1583.47 721.283L1621.02 721.283"/>
+<path class="l1" d="M1545.92 721.283L1583.47 721.283"/>
+<path class="l1" d="M1395.71 721.283L1433.26 721.283"/>
+<path class="l1" d="M1245.51 721.283L1283.06 721.283"/>
+<path class="l1" d="M1339.39 420.87L1339.39 683.732"/>
+<path class="l1" d="M1489.59 420.87L1489.59 683.732"/>
+<path class="l1" d="M1414.49 552.301L1414.49 721.283"/>
+<path class="l1" d="M1414.49 552.301L1508.37 552.301"/>
+<path class="l1" d="M1320.61 552.301L1414.49 552.301"/>
+<path class="l1" d="M1696.13 1584.97L1977.76 1584.97"/>
+<path class="l1" d="M1977.76 1547.42L1977.76 1584.97"/>
+<path class="l1" d="M1977.76 1491.09L1977.76 1547.42"/>
+<path class="l1" d="M1902.66 1378.44L1902.66 1491.09"/>
+<path class="l1" d="M1621.02 1378.44L1902.66 1378.44"/>
+<path class="l1" d="M1977.76 683.732L1977.76 1434.76"/>
+<path class="l1" d="M1977.76 646.18L1977.76 683.732"/>
+<path class="l1" d="M1414.49 646.18L1977.76 646.18"/>
+<circle class="l1" cx="1245.51" cy="1040.47" r="7.51033"/>
+<circle class="l1" cx="1038.97" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="738.559" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="1114.08" cy="1584.97" r="7.51033"/>
+<circle class="l1" cx="1414.49" cy="646.18" r="7.51033"/>
+<circle class="l1" cx="1414.49" cy="552.301" r="7.51033"/>
+<circle class="l1" cx="1414.49" cy="552.301" r="7.51033"/>
+<circle class="l1" cx="1414.49" cy="552.301" r="7.51033"/>
+<circle class="l1" cx="1414.49" cy="721.283" r="7.51033"/>
+<circle class="l1" cx="1489.59" cy="420.87" r="7.51033"/>
+<circle class="l1" cx="1339.39" cy="420.87" r="7.51033"/>
+<circle class="l1" cx="1621.02" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="1245.51" cy="721.283" r="7.51033"/>
+<circle class="l1" cx="1583.47" cy="721.283" r="7.51033"/>
+<circle class="l1" cx="1583.47" cy="721.283" r="7.51033"/>
+<circle class="l1" cx="1245.51" cy="721.283" r="7.51033"/>
+<circle class="l1" cx="1564.7" cy="1584.97" r="7.51033"/>
+<circle class="l1" cx="1433.26" cy="1134.35" r="7.51033"/>
+<circle class="l1" cx="1583.47" cy="1040.47" r="7.51033"/>
+<circle class="l1" cx="1395.71" cy="1265.78" r="7.51033"/>
+<circle class="l1" cx="1621.02" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="1320.61" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="1621.02" cy="1378.44" r="7.51033"/>
+<circle class="l1" cx="1696.13" cy="1584.97" r="7.51033"/>
+<circle class="l1" cx="1696.13" cy="1584.97" r="7.51033"/>
+<circle class="l1" cx="1696.13" cy="1584.97" r="7.51033"/>
+<circle class="l1" cx="1395.71" cy="1584.97" r="7.51033"/>
+</svg>
diff --git a/xschem/comp/comp.sym b/xschem/comp/comp.sym
new file mode 100644
index 0000000..8fe30fc
--- /dev/null
+++ b/xschem/comp/comp.sym
@@ -0,0 +1,40 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=X1"}
+V {}
+S {}
+E {}
+L 4 -20 -40 60 0 {}
+L 4 -20 40 60 0 {}
+L 4 -20 -40 -20 40 {}
+L 4 -50 -30 -20 -30 {}
+L 4 -50 30 -20 30 {}
+L 4 30 -20 70 -20 {}
+L 4 30 20 70 20 {}
+L 4 20 -60 20 -20 {}
+L 4 0 -60 -0 -30 {}
+L 4 20 20 20 50 {}
+B 5 67.5 -22.5 72.5 -17.5 {name=OutN
+dir=out}
+B 5 67.5 17.5 72.5 22.5 {name=OutP
+dir=out}
+B 5 -52.5 27.5 -47.5 32.5 {name=Inn
+dir=in}
+B 5 -52.5 -32.5 -47.5 -27.5 {name=Inp
+dir=in}
+B 5 17.5 -62.5 22.5 -57.5 {name=VP
+dir=inout}
+B 5 17.5 47.5 22.5 52.5 {name=VN
+dir=inout}
+B 5 -2.5 -62.5 2.5 -57.5 {name=bias
+dir=in}
+T {+} -20 -30 0 0 0.3 0.3 {}
+T {-} -20 10 0 0 0.4 0.4 {}
+T {+} 60 20 0 0 0.3 0.3 {}
+T {-} 60 -40 0 0 0.4 0.4 {}
+T {VP} 30 -60 0 0 0.2 0.2 {}
+T {VN} 30 40 0 0 0.2 0.2 {}
+T {10uA bias} -60 -60 0 0 0.2 0.2 {}
+T {@name} 60 -50 0 0 0.2 0.2 {}
diff --git a/xschem/comp/compEn.pdf b/xschem/comp/compEn.pdf
new file mode 100644
index 0000000..8ed7bfc
--- /dev/null
+++ b/xschem/comp/compEn.pdf
Binary files differ
diff --git a/xschem/comp/compEn.png b/xschem/comp/compEn.png
new file mode 100644
index 0000000..6fc9d71
--- /dev/null
+++ b/xschem/comp/compEn.png
Binary files differ
diff --git a/xschem/comp/compEn.sch b/xschem/comp/compEn.sch
new file mode 100644
index 0000000..0446e20
--- /dev/null
+++ b/xschem/comp/compEn.sch
@@ -0,0 +1,485 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 330 -550 330 -510 { lab=VP}
+N 330 -550 760 -550 { lab=VP}
+N 760 -550 760 -510 { lab=VP}
+N 760 -510 760 -480 { lab=VP}
+N 330 -510 330 -480 { lab=VP}
+N 330 -450 330 -200 { lab=OutN}
+N 760 -450 760 -200 { lab=OutP}
+N 330 -140 330 -100 { lab=VIq}
+N 330 -100 760 -100 { lab=VIq}
+N 760 -140 760 -100 { lab=VIq}
+N 800 -170 880 -170 { lab=Inn}
+N 330 -170 660 -170 { lab=VIq}
+N 180 -170 290 -170 { lab=Inp}
+N 660 -170 760 -170 { lab=VIq}
+N 660 -100 660 -10 { lab=VIq}
+N 270 -390 330 -390 { lab=OutN}
+N 760 -390 820 -390 { lab=OutP}
+N 740 -390 760 -390 { lab=OutP}
+N 330 -390 350 -390 { lab=OutN}
+N 110 280 970 280 { lab=VN}
+N 970 270 970 280 { lab=VN}
+N 820 150 890 150 { lab=VN}
+N 890 150 890 280 { lab=VN}
+N 970 280 1040 280 { lab=VN}
+N 970 150 1040 150 { lab=VN}
+N 1040 150 1040 280 { lab=VN}
+N 970 240 1040 240 { lab=VN}
+N 820 240 890 240 { lab=VN}
+N 820 180 820 210 { lab=#net1}
+N 820 270 820 280 { lab=VN}
+N 970 180 970 210 { lab=#net2}
+N 660 150 740 150 { lab=VN}
+N 740 150 740 280 { lab=VN}
+N 660 240 740 240 { lab=VN}
+N 660 180 660 210 { lab=#net3}
+N 660 270 660 280 { lab=VN}
+N 260 150 330 150 { lab=VN}
+N 330 150 330 280 { lab=VN}
+N 260 240 330 240 { lab=VN}
+N 260 180 260 210 { lab=#net4}
+N 260 270 260 280 { lab=VN}
+N 110 150 180 150 { lab=VN}
+N 180 150 180 280 { lab=VN}
+N 110 240 180 240 { lab=VN}
+N 110 180 110 210 { lab=#net5}
+N 110 270 110 280 { lab=VN}
+N -180 280 110 280 { lab=VN}
+N 70 150 70 240 { lab=bias}
+N 70 120 70 150 { lab=bias}
+N 220 100 220 240 { lab=bias}
+N 110 100 220 100 { lab=bias}
+N 110 100 110 120 { lab=bias}
+N 70 100 110 100 { lab=bias}
+N 70 100 70 120 { lab=bias}
+N 40 70 70 70 { lab=bias}
+N 70 70 70 100 { lab=bias}
+N 220 100 370 100 { lab=bias}
+N 620 100 620 240 { lab=bias}
+N 260 -10 260 120 { lab=OutN}
+N 660 -10 660 120 { lab=VIq}
+N 660 -170 660 -100 { lab=VIq}
+N 820 -10 820 130 { lab=OutP}
+N 370 100 780 100 { lab=bias}
+N 780 100 780 240 { lab=bias}
+N 780 100 930 100 { lab=bias}
+N 930 100 930 240 { lab=bias}
+N 970 -10 970 120 { lab=VP}
+N 1040 280 1150 280 { lab=VN}
+N 1150 230 1150 280 { lab=VN}
+N 1150 100 1150 170 { lab=bias}
+N 930 100 1150 100 { lab=bias}
+N 1150 280 1270 280 { lab=VN}
+N 1270 230 1270 280 { lab=VN}
+N 1270 100 1270 170 { lab=bias}
+N 1150 100 1270 100 { lab=bias}
+N 970 -260 970 -10 { lab=VP}
+N 730 -390 740 -390 { lab=OutP}
+N 720 -390 730 -390 { lab=OutP}
+N 640 -480 720 -480 { lab=VM8D}
+N 220 -610 330 -610 { lab=VP}
+N 330 -610 330 -550 { lab=VP}
+N 350 -390 530 -390 { lab=OutN}
+N 530 -400 530 -390 { lab=OutN}
+N 590 -390 720 -390 { lab=OutP}
+N 590 -400 590 -390 { lab=OutP}
+N 590 -480 590 -460 { lab=VM8D}
+N 530 -480 530 -460 { lab=VM8D}
+N 550 -430 570 -430 { lab=VN}
+N 970 -540 970 -260 { lab=VP}
+N 760 -550 970 -550 { lab=VP}
+N 970 -550 970 -540 { lab=VP}
+N 820 -230 820 -10 { lab=OutP}
+N 760 -230 820 -230 { lab=OutP}
+N 260 -220 260 -10 { lab=OutN}
+N 260 -230 260 -220 { lab=OutN}
+N 260 -230 330 -230 { lab=OutN}
+N 590 -480 640 -480 { lab=VM8D}
+N 370 -480 530 -480 { lab=VM8D}
+N 530 -480 590 -480 { lab=VM8D}
+N 560 -430 560 280 { lab=VN}
+C {devices/code.sym} 1180 -310 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 870 -510 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 870 -480 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 870 -450 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 870 -420 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1180 -130 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 310 -170 0 0 {name=M1
+L=0.2
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 780 -170 0 1 {name=M2
+L=0.2
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 180 -520 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 180 -490 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 180 -460 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 180 -430 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 830 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 830 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 830 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 830 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {devices/ngspice_get_value.sym} 250 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 250 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 250 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 250 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 760 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 1060 150 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 1060 180 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 1060 210 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 1060 240 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} 350 150 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 350 180 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 350 210 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 350 240 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 330 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 760 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 700 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 180 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} 40 70 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 880 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 220 -610 2 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -180 280 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 270 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 820 -390 0 0 {name=p7 lab=OutP}
+C {devices/lab_wire.sym} 500 -480 0 1 {name=l1 sig_type=std_logic lab=VM8D}
+C {devices/ngspice_get_value.sym} 970 -160 0 0 {name=r17 node="v(x7.Vm8D)"
+descr="v(x7.Vm8D)"}
+C {sky130_fd_pr/nfet_01v8.sym} 800 240 0 0 {name=M14
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 950 240 0 0 {name=M16
+L=0.5
+W=2
+nf=1 
+mult=5*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 950 150 0 0 {name=M11
+L=0.15
+W=2
+nf=1 
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 800 150 0 0 {name=M3
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 640 240 0 0 {name=M10
+L=0.5
+W=2
+nf=1 
+mult=10*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 640 150 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 240 240 0 0 {name=M13
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 240 150 0 0 {name=M15
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 90 240 0 0 {name=M17
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 90 150 0 0 {name=M18
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1150 200 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1270 200 0 0 {name=C2 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 530 -430 2 0 {name=R1
+W=0.35
+L=1
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 590 -430 2 1 {name=R2
+W=0.35
+L=1
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 740 -480 0 0 {name=M5
+L=0.35
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 350 -480 0 1 {name=M4
+L=0.35
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/compEn.sym b/xschem/comp/compEn.sym
new file mode 100644
index 0000000..8fe30fc
--- /dev/null
+++ b/xschem/comp/compEn.sym
@@ -0,0 +1,40 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=X1"}
+V {}
+S {}
+E {}
+L 4 -20 -40 60 0 {}
+L 4 -20 40 60 0 {}
+L 4 -20 -40 -20 40 {}
+L 4 -50 -30 -20 -30 {}
+L 4 -50 30 -20 30 {}
+L 4 30 -20 70 -20 {}
+L 4 30 20 70 20 {}
+L 4 20 -60 20 -20 {}
+L 4 0 -60 -0 -30 {}
+L 4 20 20 20 50 {}
+B 5 67.5 -22.5 72.5 -17.5 {name=OutN
+dir=out}
+B 5 67.5 17.5 72.5 22.5 {name=OutP
+dir=out}
+B 5 -52.5 27.5 -47.5 32.5 {name=Inn
+dir=in}
+B 5 -52.5 -32.5 -47.5 -27.5 {name=Inp
+dir=in}
+B 5 17.5 -62.5 22.5 -57.5 {name=VP
+dir=inout}
+B 5 17.5 47.5 22.5 52.5 {name=VN
+dir=inout}
+B 5 -2.5 -62.5 2.5 -57.5 {name=bias
+dir=in}
+T {+} -20 -30 0 0 0.3 0.3 {}
+T {-} -20 10 0 0 0.4 0.4 {}
+T {+} 60 20 0 0 0.3 0.3 {}
+T {-} 60 -40 0 0 0.4 0.4 {}
+T {VP} 30 -60 0 0 0.2 0.2 {}
+T {VN} 30 40 0 0 0.2 0.2 {}
+T {10uA bias} -60 -60 0 0 0.2 0.2 {}
+T {@name} 60 -50 0 0 0.2 0.2 {}
diff --git a/xschem/comp/comp_adv.pdf b/xschem/comp/comp_adv.pdf
new file mode 100644
index 0000000..ec1469b
--- /dev/null
+++ b/xschem/comp/comp_adv.pdf
Binary files differ
diff --git a/xschem/comp/comp_adv.png b/xschem/comp/comp_adv.png
new file mode 100644
index 0000000..ffb4270
--- /dev/null
+++ b/xschem/comp/comp_adv.png
Binary files differ
diff --git a/xschem/comp/comp_adv.sch b/xschem/comp/comp_adv.sch
new file mode 100644
index 0000000..b16252e
--- /dev/null
+++ b/xschem/comp/comp_adv.sch
@@ -0,0 +1,376 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 420 -660 420 -620 { lab=VP}
+N 420 -660 600 -660 { lab=VP}
+N 600 -660 600 -620 { lab=VP}
+N 600 -620 600 -590 { lab=VP}
+N 420 -620 420 -590 { lab=VP}
+N 420 -560 420 -200 { lab=OutN}
+N 600 -560 600 -200 { lab=OutP}
+N 420 -140 420 -100 { lab=VIq}
+N 420 -100 600 -100 { lab=VIq}
+N 600 -140 600 -100 { lab=VIq}
+N 440 70 510 70 { lab=VN}
+N 640 -170 720 -170 { lab=Inn}
+N 420 -170 500 -170 { lab=VN}
+N 110 -40 110 -10 { lab=bias}
+N 110 20 110 50 { lab=VN}
+N 270 -170 380 -170 { lab=Inp}
+N 150 -10 150 20 { lab=bias}
+N 110 70 440 70 { lab=VN}
+N 500 -170 600 -170 { lab=VN}
+N 110 50 110 70 { lab=VN}
+N 500 20 500 50 { lab=VN}
+N 500 50 500 70 { lab=VN}
+N 350 20 350 50 { lab=VN}
+N 350 50 350 70 { lab=VN}
+N 510 70 600 70 { lab=VN}
+N 660 50 660 70 { lab=VN}
+N 660 20 660 50 { lab=VN}
+N 110 -40 560 -40 { lab=bias}
+N 620 -40 620 20 { lab=bias}
+N 150 -40 150 -10 { lab=bias}
+N 460 -40 460 20 { lab=bias}
+N 310 -40 310 20 { lab=bias}
+N 660 -210 660 -10 { lab=OutP}
+N 560 -40 620 -40 { lab=bias}
+N 600 70 660 70 { lab=VN}
+N 500 -100 500 -10 { lab=VIq}
+N 350 -220 350 -10 { lab=OutN}
+N 350 -220 420 -220 { lab=OutN}
+N 600 -220 660 -220 { lab=OutP}
+N 520 -170 520 -20 { lab=VN}
+N 520 -20 590 -20 { lab=VN}
+N 590 -20 590 70 { lab=VN}
+N 660 -220 660 -210 { lab=OutP}
+N 400 -390 420 -390 { lab=OutN}
+N 600 -390 620 -390 { lab=OutP}
+N 580 -390 600 -390 { lab=OutP}
+N 500 -390 520 -390 { lab=VM8D}
+N 420 -390 440 -390 { lab=OutN}
+N 510 -590 510 -390 { lab=VM8D}
+N 510 -590 560 -590 { lab=VM8D}
+N 460 -590 510 -590 { lab=VM8D}
+N 660 70 810 70 { lab=VN}
+N 810 50 810 70 { lab=VN}
+N 810 20 810 50 { lab=VN}
+N 770 -40 770 20 { lab=bias}
+N 620 -40 770 -40 { lab=bias}
+N 510 -540 810 -540 { lab=VM8D}
+N 470 -410 550 -410 { lab=VN}
+N 550 -410 960 -410 { lab=VN}
+N 960 -410 960 60 { lab=VN}
+N 960 60 960 70 { lab=VN}
+N 810 70 960 70 { lab=VN}
+N 810 -540 810 -10 { lab=VM8D}
+C {devices/code.sym} 1260 -310 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 690 -630 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 690 -600 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 690 -570 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 690 -540 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1260 -130 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 400 -170 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 620 -170 0 1 {name=M2
+L=0.15
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 640 20 0 0 {name=M4
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 330 20 0 0 {name=M3
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 130 20 0 1 {name=M7
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 270 -630 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 270 -600 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 270 -570 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 270 -540 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 670 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 670 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 670 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 670 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 480 20 0 0 {name=M9
+L=0.3
+W=2
+nf=1 
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 340 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 340 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 340 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 340 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 600 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 470 120 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 470 150 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 470 180 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 470 210 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} 110 110 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 110 140 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 110 170 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 110 200 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 420 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 600 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 540 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 270 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} 110 -40 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 720 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 510 -660 3 0 {name=p4 lab=VP}
+C {devices/iopin.sym} 350 70 1 0 {name=p5 lab=VN}
+C {devices/opin.sym} 400 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 620 -390 0 0 {name=p7 lab=OutP}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 790 20 0 0 {name=M8
+L=0.3
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 810 -120 0 1 {name=l1 sig_type=std_logic lab=VM8D}
+C {devices/ngspice_get_value.sym} 810 -160 0 0 {name=r17 node="v(x7.Vm8D)"
+descr="v(x7.Vm8D)"}
+C {sky130_fd_pr/pfet_01v8.sym} 440 -590 0 1 {name=M5
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 580 -590 0 0 {name=M10
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 470 -390 1 0 {name=R1
+W=0.35
+L=1.5
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 550 -390 1 0 {name=R2
+W=0.35
+L=1.5
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
diff --git a/xschem/comp/comp_adv.sym b/xschem/comp/comp_adv.sym
new file mode 100644
index 0000000..8fe30fc
--- /dev/null
+++ b/xschem/comp/comp_adv.sym
@@ -0,0 +1,40 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=X1"}
+V {}
+S {}
+E {}
+L 4 -20 -40 60 0 {}
+L 4 -20 40 60 0 {}
+L 4 -20 -40 -20 40 {}
+L 4 -50 -30 -20 -30 {}
+L 4 -50 30 -20 30 {}
+L 4 30 -20 70 -20 {}
+L 4 30 20 70 20 {}
+L 4 20 -60 20 -20 {}
+L 4 0 -60 -0 -30 {}
+L 4 20 20 20 50 {}
+B 5 67.5 -22.5 72.5 -17.5 {name=OutN
+dir=out}
+B 5 67.5 17.5 72.5 22.5 {name=OutP
+dir=out}
+B 5 -52.5 27.5 -47.5 32.5 {name=Inn
+dir=in}
+B 5 -52.5 -32.5 -47.5 -27.5 {name=Inp
+dir=in}
+B 5 17.5 -62.5 22.5 -57.5 {name=VP
+dir=inout}
+B 5 17.5 47.5 22.5 52.5 {name=VN
+dir=inout}
+B 5 -2.5 -62.5 2.5 -57.5 {name=bias
+dir=in}
+T {+} -20 -30 0 0 0.3 0.3 {}
+T {-} -20 10 0 0 0.4 0.4 {}
+T {+} 60 20 0 0 0.3 0.3 {}
+T {-} 60 -40 0 0 0.4 0.4 {}
+T {VP} 30 -60 0 0 0.2 0.2 {}
+T {VN} 30 40 0 0 0.2 0.2 {}
+T {10uA bias} -60 -60 0 0 0.2 0.2 {}
+T {@name} 60 -50 0 0 0.2 0.2 {}
diff --git a/xschem/comp/comp_adv2.pdf b/xschem/comp/comp_adv2.pdf
new file mode 100644
index 0000000..e4029dc
--- /dev/null
+++ b/xschem/comp/comp_adv2.pdf
Binary files differ
diff --git a/xschem/comp/comp_adv2.png b/xschem/comp/comp_adv2.png
new file mode 100644
index 0000000..165f9ea
--- /dev/null
+++ b/xschem/comp/comp_adv2.png
Binary files differ
diff --git a/xschem/comp/comp_adv2.sch b/xschem/comp/comp_adv2.sch
new file mode 100644
index 0000000..bf1cf3d
--- /dev/null
+++ b/xschem/comp/comp_adv2.sch
@@ -0,0 +1,402 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 420 -690 420 -650 { lab=VP}
+N 420 -690 600 -690 { lab=VP}
+N 600 -690 600 -650 { lab=VP}
+N 600 -650 600 -620 { lab=VP}
+N 420 -650 420 -620 { lab=VP}
+N 420 -590 420 -200 { lab=OutN}
+N 600 -590 600 -200 { lab=OutP}
+N 420 -140 420 -100 { lab=VIq}
+N 420 -100 600 -100 { lab=VIq}
+N 600 -140 600 -100 { lab=VIq}
+N 440 70 510 70 { lab=VN}
+N 640 -170 720 -170 { lab=Inn}
+N 420 -170 500 -170 { lab=VN}
+N 110 -40 110 -10 { lab=bias}
+N 110 20 110 50 { lab=VN}
+N 270 -170 380 -170 { lab=Inp}
+N 150 -10 150 20 { lab=bias}
+N 110 70 440 70 { lab=VN}
+N 500 -170 600 -170 { lab=VN}
+N 110 50 110 70 { lab=VN}
+N 500 20 500 50 { lab=VN}
+N 500 50 500 70 { lab=VN}
+N 350 20 350 50 { lab=VN}
+N 350 50 350 70 { lab=VN}
+N 510 70 600 70 { lab=VN}
+N 660 50 660 70 { lab=VN}
+N 660 20 660 50 { lab=VN}
+N 110 -40 560 -40 { lab=bias}
+N 620 -40 620 20 { lab=bias}
+N 150 -40 150 -10 { lab=bias}
+N 460 -40 460 20 { lab=bias}
+N 310 -40 310 20 { lab=bias}
+N 660 -210 660 -10 { lab=OutP}
+N 560 -40 620 -40 { lab=bias}
+N 600 70 660 70 { lab=VN}
+N 500 -100 500 -10 { lab=VIq}
+N 350 -220 350 -10 { lab=OutN}
+N 350 -220 420 -220 { lab=OutN}
+N 600 -220 660 -220 { lab=OutP}
+N 660 -220 660 -210 { lab=OutP}
+N 400 -390 420 -390 { lab=OutN}
+N 600 -390 620 -390 { lab=OutP}
+N 580 -390 600 -390 { lab=OutP}
+N 500 -390 520 -390 { lab=#net1}
+N 420 -390 440 -390 { lab=OutN}
+N 510 -620 510 -390 { lab=#net1}
+N 510 -620 560 -620 { lab=#net1}
+N 460 -620 510 -620 { lab=#net1}
+N 660 70 810 70 { lab=VN}
+N 810 50 810 70 { lab=VN}
+N 810 20 810 50 { lab=VN}
+N 510 -570 810 -570 { lab=#net1}
+N 470 -410 550 -410 { lab=VN}
+N 550 -410 960 -410 { lab=VN}
+N 960 -410 960 60 { lab=VN}
+N 960 60 960 70 { lab=VN}
+N 810 70 960 70 { lab=VN}
+N 580 -450 600 -450 { lab=OutP}
+N 510 -450 520 -450 { lab=#net1}
+N 500 -450 510 -450 { lab=#net1}
+N 430 -450 440 -450 { lab=OutN}
+N 420 -450 430 -450 { lab=OutN}
+N 470 -430 470 -410 { lab=VN}
+N 550 -430 550 -410 { lab=VN}
+N 760 20 770 20 { lab=VM6D}
+N 1000 -10 1040 -10 { lab=VM6D}
+N 1000 -10 1000 20 { lab=VM6D}
+N 1040 -40 1040 -10 { lab=VM6D}
+N 760 -40 1040 -40 { lab=VM6D}
+N 760 -40 760 20 { lab=VM6D}
+N 1040 50 1040 70 { lab=VN}
+N 960 70 1040 70 { lab=VN}
+N 1040 -570 1040 -40 { lab=VM6D}
+N 600 -690 1040 -690 { lab=VP}
+N 1040 -690 1040 -660 { lab=VP}
+N 1040 -660 1040 -630 { lab=VP}
+N 1040 -630 1040 -600 { lab=VP}
+N 970 -600 1000 -600 { lab=CMM_fb}
+N 1040 20 1040 50 { lab=VN}
+N 510 -170 510 -70 { lab=VN}
+N 510 -70 600 -70 { lab=VN}
+N 600 -70 600 70 { lab=VN}
+N 810 -230 810 -10 { lab=VM8D}
+N 810 -570 810 -290 { lab=#net1}
+C {devices/code.sym} 1390 -310 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 690 -660 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 690 -630 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 690 -600 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 690 -570 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1390 -130 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 400 -170 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 620 -170 0 1 {name=M2
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 130 20 0 1 {name=M7
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 270 -660 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 270 -630 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 270 -600 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 270 -570 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 670 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 670 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 670 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 670 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 480 20 0 0 {name=M9
+L=0.3
+W=2
+nf=1 
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 340 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 340 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 340 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 340 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 600 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 470 120 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 470 150 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 470 180 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 470 210 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} 110 110 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 110 140 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 110 170 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 110 200 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 420 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 600 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 540 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 270 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} 110 -40 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 720 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 510 -690 3 0 {name=p4 lab=VP}
+C {devices/iopin.sym} 350 70 1 0 {name=p5 lab=VN}
+C {devices/opin.sym} 400 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 620 -390 0 0 {name=p7 lab=OutP}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 790 20 0 0 {name=M8
+L=0.15
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 810 -120 0 1 {name=l1 sig_type=std_logic lab=VM8D}
+C {devices/ngspice_get_value.sym} 810 -160 0 0 {name=r17 node="v(xcmp1.Vm8D)"
+descr="v(xcmp1.Vm8D)"}
+C {sky130_fd_pr/pfet_01v8.sym} 440 -620 0 1 {name=M5
+L=0.15
+W=2
+nf=1
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 580 -620 0 0 {name=M10
+L=0.15
+W=2
+nf=1
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} 970 -600 0 0 {name=p8 lab=CMM_fb}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1020 20 0 0 {name=M6
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1020 -600 0 0 {name=M11
+L=0.5
+W=2
+nf=1
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 1040 -90 0 1 {name=l2 sig_type=std_logic lab=VM6D}
+C {devices/ngspice_get_value.sym} 1040 -130 0 0 {name=r18 node="v(xcmp1.VM6D)"
+descr="v(xcmp1.VM6D)"}
+C {devices/vsource.sym} 810 -260 0 0 {name=V1 value=0}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 550 -450 3 0 {name=R1
+W=1.41
+L=4
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_1p41.sym} 470 -450 3 0 {name=R2
+W=1.41
+L=4
+model=res_xhigh_po_1p41
+spiceprefix=X
+mult=1}
diff --git a/xschem/comp/comp_adv2.svg b/xschem/comp/comp_adv2.svg
new file mode 100644
index 0000000..4b6dd54
--- /dev/null
+++ b/xschem/comp/comp_adv2.svg
@@ -0,0 +1,630 @@
+<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1" version="1.1">
+<style type="text/css">
+.l0{
+ fill: #000000;
+  stroke: #000000;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l1{
+ fill: #00ccee;
+  stroke: #00ccee;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l2{
+  fill: none;
+  stroke: #3f3f3f;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l3{
+ fill: #cccccc; fill-opacity: 0.5;
+  stroke: #cccccc;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l4{
+ fill: #88dd00;
+  stroke: #88dd00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l5{
+ fill: #bb2200;
+  stroke: #bb2200;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l6{
+ fill: #00ccee; fill-opacity: 0.5;
+  stroke: #00ccee;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l7{
+ fill: #ff0000; fill-opacity: 0.5;
+  stroke: #ff0000;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l8{
+ fill: #ffff00; fill-opacity: 0.5;
+  stroke: #ffff00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l9{
+ fill: #ffffff; fill-opacity: 0.5;
+  stroke: #ffffff;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l10{
+ fill: #ff00ff;
+  stroke: #ff00ff;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l11{
+ fill: #00ff00; fill-opacity: 0.5;
+  stroke: #00ff00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l12{
+ fill: #0044dd; fill-opacity: 0.5;
+  stroke: #0044dd;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l13{
+ fill: #aaaa00; fill-opacity: 0.5;
+  stroke: #aaaa00;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l14{
+  fill: none;
+  stroke: #aaccaa;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l15{
+ fill: #ff7777; fill-opacity: 0.5;
+  stroke: #ff7777;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l16{
+ fill: #bfff81; fill-opacity: 0.5;
+  stroke: #bfff81;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l17{
+  fill: none;
+  stroke: #00ffcc;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l18{
+ fill: #ce0097; fill-opacity: 0.5;
+  stroke: #ce0097;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l19{
+  fill: none;
+  stroke: #d2d46b;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l20{
+  fill: none;
+  stroke: #ef6158;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+.l21{
+  fill: none;
+  stroke: #fdb200;
+  stroke-linecap:round;
+  stroke-linejoin:round;
+  stroke-width: 0.000712169;
+}
+text {font-family: Sans-Serif;}
+</style>
+<rect class="l0" x="0" y="0" width="1" height="1"/>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.00925819" transform="translate(0.393175, 0.775298)" >VIq</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.161555, 0.736681)" >Inp</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.0560486, 0.822405)" >bias</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.48302, 0.736681)" >Inn</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.336683, 0.376195) rotate(270)" >VP</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.229738, 0.903521) rotate(270)" >VN</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.246455, 0.59017)" >OutN</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.417903, 0.591609)" >OutP</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.00925819" transform="translate(0.531652, 0.76211)" >VM8D</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.0113156" transform="translate(0.623146, 0.453132)" >CMM_fb</text>
+<text fill="#00ccee"  xml:space="preserve" font-size="0.00925819" transform="translate(0.683317, 0.781892)" >VM6D</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.0102869" transform="translate(0.922356, 0.632713)" >TT_MODELS</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.402765)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.397951)" >M5 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.422547)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.417733)" >M5 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.44233)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.437516)" >M5 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.462112)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.453758, 0.457298)" >M5 cdg</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.0102869" transform="translate(0.922356, 0.751408)" >SPICE</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.26294, 0.718621)" >M1</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.27448, 0.748386)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.27448, 0.719407)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.272831, 0.730252)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.253049, 0.730252)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.279426, 0.724767)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.28025, 0.745821)" >6 x 2 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.26294, 0.748386)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.401417, 0.718621)" >M2</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.389878, 0.748386)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.389878, 0.719407)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.391526, 0.730252)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.411309, 0.730252)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.384932, 0.724767)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.384108, 0.745821)" >6 x 2 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.401417, 0.748386)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0783039, 0.843909)" >M7</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.0667641, 0.873675)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.0667641, 0.844696)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.0684126, 0.855541)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.0881951, 0.855541)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0618185, 0.850056)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0609942, 0.87111)" >1 x 2 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.0783039, 0.873675)" >LVT</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.402765)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.397951)" >M6 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.422547)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.417733)" >M6 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.44233)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.437516)" >M6 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.462112)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.176804, 0.457298)" >M6 cdg</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.659937)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.655123)" >M2 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.679719)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.674905)" >M2 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.699502)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.694688)" >M2 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.719284)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.44057, 0.71447)" >M2 cdg</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.315693, 0.843909)" >M9</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.327233, 0.873675)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.327233, 0.844696)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.325585, 0.855541)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.305802, 0.855541)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.332179, 0.850056)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.333003, 0.87111)" >10 x 2 / 0.3</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.315693, 0.873675)" >LVT</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.659937)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.655123)" >M1 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.679719)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.674905)" >M1 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.699502)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.694688)" >M1 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.719284)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.217193, 0.71447)" >M1 cdg</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.917109)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.912295)" >M9 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.936891)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.932077)" >M9 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.956674)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.95186)" >M9 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.976456)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.308687, 0.971642)" >M9 cdg</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.910515)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.905701)" >M7 gm</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.930297)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.925483)" >M7 gds</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.950079)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.945266)" >M7 cgs</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.969862)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.0712976, 0.965048)" >M7 cdg</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.275716, 0.692907)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.275716, 0.688094)" >v(Voutn)</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.388641, 0.692907)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.388641, 0.688094)" >v(Voutp)</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.354846, 0.772037)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.354846, 0.767224)" >v(xcmp1.VIq)</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.520112, 0.843909)" >M8</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.531652, 0.873675)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.531652, 0.844696)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.530003, 0.855541)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.510221, 0.855541)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.536598, 0.850056)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.537422, 0.87111)" >3 x 2 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.520112, 0.873675)" >LVT</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.532888, 0.732472)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.532888, 0.727659)" >v(xcmp1.Vm8D)</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.282723, 0.421884)" >M5</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.271183, 0.451649)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.271183, 0.42267)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.272831, 0.433515)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.292614, 0.433515)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.266237, 0.42803)" >pfet_01v8</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.265413, 0.449085)" >3 x 2 / 0.15</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.381635, 0.421884)" >M10</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.393175, 0.451649)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.393175, 0.42267)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.391526, 0.433515)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.371744, 0.433515)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.39812, 0.42803)" >pfet_01v8</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.398945, 0.449085)" >3 x 2 / 0.15</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.671778, 0.843909)" >M6</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.683317, 0.873675)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.683317, 0.844696)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.681669, 0.855541)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.661886, 0.855541)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.688263, 0.850056)" >nfet_01v8_lvt</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.689087, 0.87111)" >1 x 2 / 0.15</text>
+<text fill="#88dd00"  xml:space="preserve" font-size="0.00514344" transform="translate(0.671778, 0.873675)" >LVT</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.671778, 0.435072)" >M11</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.683317, 0.464837)" >D</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.683317, 0.435858)" >S</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.681669, 0.446704)" >B</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.661886, 0.446704)" >G</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.688263, 0.441218)" >pfet_01v8</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.689087, 0.462273)" >6 x 2 / 0.5</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.684554, 0.752255)" >?</text>
+<text fill="#ff7777"  xml:space="preserve" font-size="0.00685792" transform="translate(0.684554, 0.747441)" >v(xcmp1.VM6D)</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.543192, 0.666692)" >V1</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.543192, 0.674934)" >0</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.345824, 0.537648) rotate(270)" >R1</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.368904, 0.537648) rotate(270)" >1 * 1.41 / 4</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.357364, 0.537648) rotate(270)" >res_xhigh_po_1p41</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.354983, 0.557431) rotate(270)" >B</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.293071, 0.537648) rotate(270)" >R2</text>
+<text fill="#aaaa00"  xml:space="preserve" font-size="0.00685792" transform="translate(0.316151, 0.537648) rotate(270)" >1 * 1.41 / 4</text>
+<text fill="#cccccc"  xml:space="preserve" font-size="0.00685792" transform="translate(0.304611, 0.537648) rotate(270)" >res_xhigh_po_1p41</text>
+<text fill="#ff0000"  xml:space="preserve" font-size="0.00514344" transform="translate(0.30223, 0.557431) rotate(270)" >B</text>
+<path class="l4" d="M0.925653 0.65964L0.952029 0.65964"/>
+<path class="l4" d="M0.925653 0.666234L0.938841 0.666234"/>
+<path class="l4" d="M0.925653 0.672829L0.952029 0.672829"/>
+<path class="l4" d="M0.925653 0.679423L0.945435 0.679423"/>
+<path class="l4" d="M0.925653 0.686017L0.945435 0.686017"/>
+<path class="l4" d="M0.925653 0.692611L0.971812 0.692611"/>
+<path class="l4" d="M0.925653 0.699205L0.938841 0.699205"/>
+<path class="l4" d="M0.925653 0.653046L0.958623 0.653046"/>
+<path class="l4" d="M0.925653 0.646452L0.938841 0.646452"/>
+<path class="l4" d="M0.978406 0.646452L0.985 0.646452"/>
+<path class="l4" d="M0.985 0.646452L0.985 0.712394"/>
+<path class="l4" d="M0.925653 0.712394L0.985 0.712394"/>
+<path class="l4" d="M0.925653 0.705799L0.925653 0.712394"/>
+<path class="l4" d="M0.978406 0.639858L0.978406 0.705799"/>
+<path class="l4" d="M0.919058 0.705799L0.978406 0.705799"/>
+<path class="l4" d="M0.919058 0.639858L0.919058 0.705799"/>
+<path class="l4" d="M0.919058 0.639858L0.978406 0.639858"/>
+<path class="l4" d="M0.925653 0.778335L0.952029 0.778335"/>
+<path class="l4" d="M0.925653 0.784929L0.938841 0.784929"/>
+<path class="l4" d="M0.925653 0.791523L0.952029 0.791523"/>
+<path class="l4" d="M0.925653 0.798118L0.945435 0.798118"/>
+<path class="l4" d="M0.925653 0.804712L0.945435 0.804712"/>
+<path class="l4" d="M0.925653 0.811306L0.971812 0.811306"/>
+<path class="l4" d="M0.925653 0.8179L0.938841 0.8179"/>
+<path class="l4" d="M0.925653 0.771741L0.958623 0.771741"/>
+<path class="l4" d="M0.925653 0.765147L0.938841 0.765147"/>
+<path class="l4" d="M0.978406 0.765147L0.985 0.765147"/>
+<path class="l4" d="M0.985 0.765147L0.985 0.831088"/>
+<path class="l4" d="M0.925653 0.831088L0.985 0.831088"/>
+<path class="l4" d="M0.925653 0.824494L0.925653 0.831088"/>
+<path class="l4" d="M0.978406 0.758553L0.978406 0.824494"/>
+<path class="l4" d="M0.919058 0.824494L0.978406 0.824494"/>
+<path class="l4" d="M0.919058 0.758553L0.919058 0.824494"/>
+<path class="l4" d="M0.919058 0.758553L0.978406 0.758553"/>
+<path class="l4" d="M0.264589 0.717339L0.264589 0.747013"/>
+<path class="l4" d="M0.246455 0.732176L0.261292 0.732176"/>
+<path class="l4" d="M0.272831 0.712394L0.272831 0.720636"/>
+<path class="l4" d="M0.272831 0.743716L0.272831 0.751958"/>
+<path class="l4" d="M0.261292 0.722285L0.261292 0.742067"/>
+<path class="l4" d="M0.264589 0.720636L0.272831 0.720636"/>
+<path class="l4" d="M0.264589 0.743716L0.269534 0.743716"/>
+<path class="l4" d="M0.269534 0.742067L0.272831 0.743716L0.269534 0.745364L0.269534 0.742067"/>
+<path class="l4" d="M0.399769 0.717339L0.399769 0.747013"/>
+<path class="l4" d="M0.403066 0.732176L0.417903 0.732176"/>
+<path class="l4" d="M0.391526 0.712394L0.391526 0.720636"/>
+<path class="l4" d="M0.391526 0.743716L0.391526 0.751958"/>
+<path class="l4" d="M0.403066 0.722285L0.403066 0.742067"/>
+<path class="l4" d="M0.391526 0.720636L0.399769 0.720636"/>
+<path class="l4" d="M0.394823 0.743716L0.399769 0.743716"/>
+<path class="l4" d="M0.394823 0.742067L0.391526 0.743716L0.394823 0.745364L0.394823 0.742067"/>
+<path class="l4" d="M0.0766553 0.842628L0.0766553 0.872302"/>
+<path class="l4" d="M0.0799524 0.857465L0.0947893 0.857465"/>
+<path class="l4" d="M0.0684126 0.837682L0.0684126 0.845925"/>
+<path class="l4" d="M0.0684126 0.869005L0.0684126 0.877247"/>
+<path class="l4" d="M0.0799524 0.847574L0.0799524 0.867356"/>
+<path class="l4" d="M0.0684126 0.845925L0.0766553 0.845925"/>
+<path class="l4" d="M0.0717097 0.869005L0.0766553 0.869005"/>
+<path class="l4" d="M0.0717097 0.867356L0.0684126 0.869005L0.0717097 0.870653L0.0717097 0.867356"/>
+<path class="l4" d="M0.317342 0.842628L0.317342 0.872302"/>
+<path class="l4" d="M0.299208 0.857465L0.314045 0.857465"/>
+<path class="l4" d="M0.325585 0.837682L0.325585 0.845925"/>
+<path class="l4" d="M0.325585 0.869005L0.325585 0.877247"/>
+<path class="l4" d="M0.314045 0.847574L0.314045 0.867356"/>
+<path class="l4" d="M0.317342 0.845925L0.325585 0.845925"/>
+<path class="l4" d="M0.317342 0.869005L0.322288 0.869005"/>
+<path class="l4" d="M0.322288 0.867356L0.325585 0.869005L0.322288 0.870653L0.322288 0.867356"/>
+<path class="l4" d="M0.521761 0.842628L0.521761 0.872302"/>
+<path class="l4" d="M0.503627 0.857465L0.518464 0.857465"/>
+<path class="l4" d="M0.530003 0.837682L0.530003 0.845925"/>
+<path class="l4" d="M0.530003 0.869005L0.530003 0.877247"/>
+<path class="l4" d="M0.518464 0.847574L0.518464 0.867356"/>
+<path class="l4" d="M0.521761 0.845925L0.530003 0.845925"/>
+<path class="l4" d="M0.521761 0.869005L0.526706 0.869005"/>
+<path class="l4" d="M0.526706 0.867356L0.530003 0.869005L0.526706 0.870653L0.526706 0.867356"/>
+<path class="l4" d="M0.281074 0.420602L0.281074 0.450276"/>
+<path class="l4" d="M0.272831 0.415657L0.272831 0.423899"/>
+<path class="l4" d="M0.272831 0.446979L0.272831 0.455222"/>
+<path class="l4" d="M0.284371 0.425548L0.284371 0.44533"/>
+<path class="l4" d="M0.272831 0.446979L0.281074 0.446979"/>
+<path class="l4" d="M0.272831 0.423899L0.277777 0.423899"/>
+<path class="l4" d="M0.290965 0.435439L0.299208 0.435439"/>
+<path class="l4" d="M0.277777 0.422251L0.281074 0.423899L0.277777 0.425548L0.277777 0.422251"/>
+<circle class="l4" cx="0.287668" cy="0.435439" r="0.00329708" style="fill:none;"/>
+<path class="l4" d="M0.383283 0.420602L0.383283 0.450276"/>
+<path class="l4" d="M0.391526 0.415657L0.391526 0.423899"/>
+<path class="l4" d="M0.391526 0.446979L0.391526 0.455222"/>
+<path class="l4" d="M0.379986 0.425548L0.379986 0.44533"/>
+<path class="l4" d="M0.383283 0.446979L0.391526 0.446979"/>
+<path class="l4" d="M0.386581 0.423899L0.391526 0.423899"/>
+<path class="l4" d="M0.36515 0.435439L0.373392 0.435439"/>
+<path class="l4" d="M0.386581 0.422251L0.383283 0.423899L0.386581 0.425548L0.386581 0.422251"/>
+<circle class="l4" cx="0.376689" cy="0.435439" r="0.00329708" style="fill:none;"/>
+<path class="l4" d="M0.673426 0.842628L0.673426 0.872302"/>
+<path class="l4" d="M0.655292 0.857465L0.670129 0.857465"/>
+<path class="l4" d="M0.681669 0.837682L0.681669 0.845925"/>
+<path class="l4" d="M0.681669 0.869005L0.681669 0.877247"/>
+<path class="l4" d="M0.670129 0.847574L0.670129 0.867356"/>
+<path class="l4" d="M0.673426 0.845925L0.681669 0.845925"/>
+<path class="l4" d="M0.673426 0.869005L0.678372 0.869005"/>
+<path class="l4" d="M0.678372 0.867356L0.681669 0.869005L0.678372 0.870653L0.678372 0.867356"/>
+<path class="l4" d="M0.673426 0.433791L0.673426 0.463464"/>
+<path class="l4" d="M0.681669 0.428845L0.681669 0.437088"/>
+<path class="l4" d="M0.681669 0.460167L0.681669 0.46841"/>
+<path class="l4" d="M0.670129 0.438736L0.670129 0.458519"/>
+<path class="l4" d="M0.673426 0.460167L0.681669 0.460167"/>
+<path class="l4" d="M0.676723 0.437088L0.681669 0.437088"/>
+<path class="l4" d="M0.655292 0.448627L0.663535 0.448627"/>
+<path class="l4" d="M0.676723 0.435439L0.673426 0.437088L0.676723 0.438736L0.676723 0.435439"/>
+<circle class="l4" cx="0.666832" cy="0.448627" r="0.00329708" style="fill:none;"/>
+<path class="l4" d="M0.531652 0.657992L0.534949 0.657992"/>
+<path class="l4" d="M0.5333 0.656343L0.5333 0.65964"/>
+<path class="l4" d="M0.530003 0.653046L0.530003 0.692611"/>
+<circle class="l4" cx="0.530003" cy="0.672829" r="0.00989123" style="fill:none;"/>
+<path class="l4" d="M0.371744 0.54754L0.378338 0.54754"/>
+<path class="l4" d="M0.370095 0.542594L0.371744 0.54754"/>
+<path class="l4" d="M0.366798 0.552485L0.370095 0.542594"/>
+<path class="l4" d="M0.363501 0.542594L0.366798 0.552485"/>
+<path class="l4" d="M0.360204 0.552485L0.363501 0.542594"/>
+<path class="l4" d="M0.356907 0.542594L0.360204 0.552485"/>
+<path class="l4" d="M0.35361 0.552485L0.356907 0.542594"/>
+<path class="l4" d="M0.350313 0.542594L0.35361 0.552485"/>
+<path class="l4" d="M0.347016 0.552485L0.350313 0.542594"/>
+<path class="l4" d="M0.345367 0.54754L0.347016 0.552485"/>
+<path class="l4" d="M0.338773 0.54754L0.345367 0.54754"/>
+<path class="l4" d="M0.31899 0.54754L0.325585 0.54754"/>
+<path class="l4" d="M0.317342 0.542594L0.31899 0.54754"/>
+<path class="l4" d="M0.314045 0.552485L0.317342 0.542594"/>
+<path class="l4" d="M0.310748 0.542594L0.314045 0.552485"/>
+<path class="l4" d="M0.307451 0.552485L0.310748 0.542594"/>
+<path class="l4" d="M0.304154 0.542594L0.307451 0.552485"/>
+<path class="l4" d="M0.300857 0.552485L0.304154 0.542594"/>
+<path class="l4" d="M0.297559 0.542594L0.300857 0.552485"/>
+<path class="l4" d="M0.294262 0.552485L0.297559 0.542594"/>
+<path class="l4" d="M0.292614 0.54754L0.294262 0.552485"/>
+<path class="l4" d="M0.28602 0.54754L0.292614 0.54754"/>
+<path class="l5" d="M0.272831 0.730527L0.269534 0.732176L0.272831 0.733825L0.272831 0.730527"/>
+<path class="l5" d="M0.271183 0.710745L0.27448 0.710745L0.27448 0.714042L0.271183 0.714042L0.271183 0.710745z"/>
+<path class="l5" d="M0.244806 0.730527L0.248103 0.730527L0.248103 0.733825L0.244806 0.733825L0.244806 0.730527z"/>
+<path class="l5" d="M0.271183 0.75031L0.27448 0.75031L0.27448 0.753607L0.271183 0.753607L0.271183 0.75031z"/>
+<path class="l5" d="M0.27278 0.732125L0.272883 0.732125L0.272883 0.732228L0.27278 0.732228L0.27278 0.732125z"/>
+<path class="l5" d="M0.391526 0.730527L0.394823 0.732176L0.391526 0.733825L0.391526 0.730527"/>
+<path class="l5" d="M0.389878 0.710745L0.393175 0.710745L0.393175 0.714042L0.389878 0.714042L0.389878 0.710745z"/>
+<path class="l5" d="M0.416254 0.730527L0.419551 0.730527L0.419551 0.733825L0.416254 0.733825L0.416254 0.730527z"/>
+<path class="l5" d="M0.389878 0.75031L0.393175 0.75031L0.393175 0.753607L0.389878 0.753607L0.389878 0.75031z"/>
+<path class="l5" d="M0.391475 0.732125L0.391578 0.732125L0.391578 0.732228L0.391475 0.732228L0.391475 0.732125z"/>
+<path class="l5" d="M0.0684126 0.855816L0.0717097 0.857465L0.0684126 0.859113L0.0684126 0.855816"/>
+<path class="l5" d="M0.0667641 0.836034L0.0700612 0.836034L0.0700612 0.839331L0.0667641 0.839331L0.0667641 0.836034z"/>
+<path class="l5" d="M0.0931407 0.855816L0.0964378 0.855816L0.0964378 0.859113L0.0931407 0.859113L0.0931407 0.855816z"/>
+<path class="l5" d="M0.0667641 0.875599L0.0700612 0.875599L0.0700612 0.878896L0.0667641 0.878896L0.0667641 0.875599z"/>
+<path class="l5" d="M0.0683611 0.857413L0.0684642 0.857413L0.0684642 0.857516L0.0683611 0.857516L0.0683611 0.857413z"/>
+<path class="l5" d="M0.325585 0.855816L0.322288 0.857465L0.325585 0.859113L0.325585 0.855816"/>
+<path class="l5" d="M0.323936 0.836034L0.327233 0.836034L0.327233 0.839331L0.323936 0.839331L0.323936 0.836034z"/>
+<path class="l5" d="M0.297559 0.855816L0.300857 0.855816L0.300857 0.859113L0.297559 0.859113L0.297559 0.855816z"/>
+<path class="l5" d="M0.323936 0.875599L0.327233 0.875599L0.327233 0.878896L0.323936 0.878896L0.323936 0.875599z"/>
+<path class="l5" d="M0.325533 0.857413L0.325636 0.857413L0.325636 0.857516L0.325533 0.857516L0.325533 0.857413z"/>
+<path class="l5" d="M0.390702 0.777511L0.39235 0.777511L0.39235 0.779159L0.390702 0.779159L0.390702 0.777511z"/>
+<path class="l5" d="M0.173919 0.732176L0.169798 0.728879L0.16444 0.728879L0.16444 0.735473L0.169798 0.735473L0.173919 0.732176"/>
+<path class="l5" d="M0.173913 0.73217L0.173926 0.73217L0.173926 0.732182L0.173913 0.732182L0.173913 0.73217z"/>
+<path class="l5" d="M0.0684126 0.8179L0.0642913 0.814603L0.0589335 0.814603L0.0589335 0.821197L0.0642913 0.821197L0.0684126 0.8179"/>
+<path class="l5" d="M0.0684062 0.817894L0.0684191 0.817894L0.0684191 0.817906L0.0684062 0.817906L0.0684062 0.817894z"/>
+<path class="l5" d="M0.470656 0.732176L0.474777 0.728879L0.480135 0.728879L0.480135 0.735473L0.474777 0.735473L0.470656 0.732176"/>
+<path class="l5" d="M0.47065 0.73217L0.470662 0.73217L0.470662 0.732182L0.47065 0.732182L0.47065 0.73217z"/>
+<path class="l5" d="M0.332179 0.38928L0.328985 0.385571L0.328985 0.382171L0.332179 0.378462L0.335373 0.382171L0.335373 0.385571L0.332179 0.38928"/>
+<path class="l5" d="M0.332172 0.389274L0.332185 0.389274L0.332185 0.389287L0.332172 0.389287L0.332172 0.389274z"/>
+<path class="l5" d="M0.226672 0.890436L0.229866 0.894145L0.229866 0.897545L0.226672 0.901254L0.223478 0.897545L0.223478 0.894145L0.226672 0.890436"/>
+<path class="l5" d="M0.226666 0.890429L0.226679 0.890429L0.226679 0.890442L0.226666 0.890442L0.226666 0.890429z"/>
+<path class="l5" d="M0.259643 0.590402L0.259643 0.583808L0.254285 0.583808L0.250164 0.587105L0.254285 0.590402L0.259643 0.590402"/>
+<path class="l5" d="M0.259637 0.587098L0.25965 0.587098L0.25965 0.587111L0.259637 0.587111L0.259637 0.587098z"/>
+<path class="l5" d="M0.404714 0.583808L0.404714 0.590402L0.410072 0.590402L0.414194 0.587105L0.410072 0.583808L0.404714 0.583808"/>
+<path class="l5" d="M0.404708 0.587098L0.404721 0.587098L0.404721 0.587111L0.404708 0.587111L0.404708 0.587098z"/>
+<path class="l5" d="M0.530003 0.855816L0.526706 0.857465L0.530003 0.859113L0.530003 0.855816"/>
+<path class="l5" d="M0.528355 0.836034L0.531652 0.836034L0.531652 0.839331L0.528355 0.839331L0.528355 0.836034z"/>
+<path class="l5" d="M0.501978 0.855816L0.505275 0.855816L0.505275 0.859113L0.501978 0.859113L0.501978 0.855816z"/>
+<path class="l5" d="M0.528355 0.875599L0.531652 0.875599L0.531652 0.878896L0.528355 0.878896L0.528355 0.875599z"/>
+<path class="l5" d="M0.529952 0.857413L0.530055 0.857413L0.530055 0.857516L0.529952 0.857516L0.529952 0.857413z"/>
+<path class="l5" d="M0.529179 0.764323L0.530828 0.764323L0.530828 0.765971L0.529179 0.765971L0.529179 0.764323z"/>
+<path class="l5" d="M0.276128 0.433791L0.272831 0.435439L0.276128 0.437088L0.276128 0.433791"/>
+<path class="l5" d="M0.271183 0.453573L0.27448 0.453573L0.27448 0.45687L0.271183 0.45687L0.271183 0.453573z"/>
+<path class="l5" d="M0.297559 0.433791L0.300857 0.433791L0.300857 0.437088L0.297559 0.437088L0.297559 0.433791z"/>
+<path class="l5" d="M0.271183 0.414008L0.27448 0.414008L0.27448 0.417305L0.271183 0.417305L0.271183 0.414008z"/>
+<path class="l5" d="M0.27278 0.435388L0.272883 0.435388L0.272883 0.435491L0.27278 0.435491L0.27278 0.435388z"/>
+<path class="l5" d="M0.388229 0.433791L0.391526 0.435439L0.388229 0.437088L0.388229 0.433791"/>
+<path class="l5" d="M0.389878 0.453573L0.393175 0.453573L0.393175 0.45687L0.389878 0.45687L0.389878 0.453573z"/>
+<path class="l5" d="M0.363501 0.433791L0.366798 0.433791L0.366798 0.437088L0.363501 0.437088L0.363501 0.433791z"/>
+<path class="l5" d="M0.389878 0.414008L0.393175 0.414008L0.393175 0.417305L0.389878 0.417305L0.389878 0.414008z"/>
+<path class="l5" d="M0.391475 0.435388L0.391578 0.435388L0.391578 0.435491L0.391475 0.435491L0.391475 0.435388z"/>
+<path class="l5" d="M0.63551 0.448627L0.631389 0.44533L0.626031 0.44533L0.626031 0.451924L0.631389 0.451924L0.63551 0.448627"/>
+<path class="l5" d="M0.635503 0.448621L0.635516 0.448621L0.635516 0.448634L0.635503 0.448634L0.635503 0.448621z"/>
+<path class="l5" d="M0.681669 0.855816L0.678372 0.857465L0.681669 0.859113L0.681669 0.855816"/>
+<path class="l5" d="M0.68002 0.836034L0.683317 0.836034L0.683317 0.839331L0.68002 0.839331L0.68002 0.836034z"/>
+<path class="l5" d="M0.653644 0.855816L0.656941 0.855816L0.656941 0.859113L0.653644 0.859113L0.653644 0.855816z"/>
+<path class="l5" d="M0.68002 0.875599L0.683317 0.875599L0.683317 0.878896L0.68002 0.878896L0.68002 0.875599z"/>
+<path class="l5" d="M0.681617 0.857413L0.68172 0.857413L0.68172 0.857516L0.681617 0.857516L0.681617 0.857413z"/>
+<path class="l5" d="M0.678372 0.446979L0.681669 0.448627L0.678372 0.450276L0.678372 0.446979"/>
+<path class="l5" d="M0.68002 0.466761L0.683317 0.466761L0.683317 0.470058L0.68002 0.470058L0.68002 0.466761z"/>
+<path class="l5" d="M0.653644 0.446979L0.656941 0.446979L0.656941 0.450276L0.653644 0.450276L0.653644 0.446979z"/>
+<path class="l5" d="M0.68002 0.427196L0.683317 0.427196L0.683317 0.430493L0.68002 0.430493L0.68002 0.427196z"/>
+<path class="l5" d="M0.681617 0.448576L0.68172 0.448576L0.68172 0.448679L0.681617 0.448679L0.681617 0.448576z"/>
+<path class="l5" d="M0.680845 0.784105L0.682493 0.784105L0.682493 0.785754L0.680845 0.785754L0.680845 0.784105z"/>
+<path class="l5" d="M0.528355 0.651398L0.531652 0.651398L0.531652 0.654695L0.528355 0.654695L0.528355 0.651398z"/>
+<path class="l5" d="M0.528355 0.690963L0.531652 0.690963L0.531652 0.69426L0.528355 0.69426L0.528355 0.690963z"/>
+<path class="l5" d="M0.376689 0.545891L0.379986 0.545891L0.379986 0.549188L0.376689 0.549188L0.376689 0.545891z"/>
+<path class="l5" d="M0.337124 0.545891L0.340421 0.545891L0.340421 0.549188L0.337124 0.549188L0.337124 0.545891z"/>
+<path class="l5" d="M0.356907 0.559079L0.360204 0.559079L0.360204 0.562377L0.356907 0.562377L0.356907 0.559079z"/>
+<path class="l5" d="M0.323936 0.545891L0.327233 0.545891L0.327233 0.549188L0.323936 0.549188L0.323936 0.545891z"/>
+<path class="l5" d="M0.284371 0.545891L0.287668 0.545891L0.287668 0.549188L0.284371 0.549188L0.284371 0.545891z"/>
+<path class="l5" d="M0.304154 0.559079L0.307451 0.559079L0.307451 0.562377L0.304154 0.562377L0.304154 0.559079z"/>
+<circle class="l15" cx="0.450874" cy="0.409062" r="0.0012364" />
+<circle class="l15" cx="0.450874" cy="0.428845" r="0.0012364" />
+<circle class="l15" cx="0.450874" cy="0.448627" r="0.0012364" />
+<circle class="l15" cx="0.450874" cy="0.46841" r="0.0012364" />
+<circle class="l15" cx="0.173919" cy="0.409062" r="0.0012364" />
+<circle class="l15" cx="0.173919" cy="0.428845" r="0.0012364" />
+<circle class="l15" cx="0.173919" cy="0.448627" r="0.0012364" />
+<circle class="l15" cx="0.173919" cy="0.46841" r="0.0012364" />
+<circle class="l15" cx="0.437685" cy="0.666234" r="0.0012364" />
+<circle class="l15" cx="0.437685" cy="0.686017" r="0.0012364" />
+<circle class="l15" cx="0.437685" cy="0.705799" r="0.0012364" />
+<circle class="l15" cx="0.437685" cy="0.725582" r="0.0012364" />
+<circle class="l15" cx="0.220078" cy="0.666234" r="0.0012364" />
+<circle class="l15" cx="0.220078" cy="0.686017" r="0.0012364" />
+<circle class="l15" cx="0.220078" cy="0.705799" r="0.0012364" />
+<circle class="l15" cx="0.220078" cy="0.725582" r="0.0012364" />
+<circle class="l15" cx="0.305802" cy="0.923406" r="0.0012364" />
+<circle class="l15" cx="0.305802" cy="0.943189" r="0.0012364" />
+<circle class="l15" cx="0.305802" cy="0.962971" r="0.0012364" />
+<circle class="l15" cx="0.305802" cy="0.982754" r="0.0012364" />
+<circle class="l15" cx="0.0684126" cy="0.916812" r="0.0012364" />
+<circle class="l15" cx="0.0684126" cy="0.936595" r="0.0012364" />
+<circle class="l15" cx="0.0684126" cy="0.956377" r="0.0012364" />
+<circle class="l15" cx="0.0684126" cy="0.97616" r="0.0012364" />
+<circle class="l15" cx="0.272831" cy="0.699205" r="0.0012364" />
+<circle class="l15" cx="0.391526" cy="0.699205" r="0.0012364" />
+<circle class="l15" cx="0.351961" cy="0.778335" r="0.0012364" />
+<circle class="l15" cx="0.530003" cy="0.73877" r="0.0012364" />
+<circle class="l15" cx="0.681669" cy="0.758553" r="0.0012364" />
+<path class="l1" d="M0.272831 0.38928L0.272831 0.415657"/>
+<path class="l1" d="M0.272831 0.38928L0.391526 0.38928"/>
+<path class="l1" d="M0.391526 0.38928L0.391526 0.415657"/>
+<path class="l1" d="M0.391526 0.415657L0.391526 0.435439"/>
+<path class="l1" d="M0.272831 0.415657L0.272831 0.435439"/>
+<path class="l1" d="M0.272831 0.455222L0.272831 0.712394"/>
+<path class="l1" d="M0.391526 0.455222L0.391526 0.712394"/>
+<path class="l1" d="M0.272831 0.751958L0.272831 0.778335"/>
+<path class="l1" d="M0.272831 0.778335L0.391526 0.778335"/>
+<path class="l1" d="M0.391526 0.751958L0.391526 0.778335"/>
+<path class="l1" d="M0.28602 0.890436L0.332179 0.890436"/>
+<path class="l1" d="M0.417903 0.732176L0.470656 0.732176"/>
+<path class="l1" d="M0.272831 0.732176L0.325585 0.732176"/>
+<path class="l1" d="M0.0684126 0.8179L0.0684126 0.837682"/>
+<path class="l1" d="M0.0684126 0.857465L0.0684126 0.877247"/>
+<path class="l1" d="M0.173919 0.732176L0.246455 0.732176"/>
+<path class="l1" d="M0.0947893 0.837682L0.0947893 0.857465"/>
+<path class="l1" d="M0.0684126 0.890436L0.28602 0.890436"/>
+<path class="l1" d="M0.325585 0.732176L0.391526 0.732176"/>
+<path class="l1" d="M0.0684126 0.877247L0.0684126 0.890436"/>
+<path class="l1" d="M0.325585 0.857465L0.325585 0.877247"/>
+<path class="l1" d="M0.325585 0.877247L0.325585 0.890436"/>
+<path class="l1" d="M0.226672 0.857465L0.226672 0.877247"/>
+<path class="l1" d="M0.226672 0.877247L0.226672 0.890436"/>
+<path class="l1" d="M0.332179 0.890436L0.391526 0.890436"/>
+<path class="l1" d="M0.431091 0.877247L0.431091 0.890436"/>
+<path class="l1" d="M0.431091 0.857465L0.431091 0.877247"/>
+<path class="l1" d="M0.0684126 0.8179L0.36515 0.8179"/>
+<path class="l1" d="M0.404714 0.8179L0.404714 0.857465"/>
+<path class="l1" d="M0.0947893 0.8179L0.0947893 0.837682"/>
+<path class="l1" d="M0.299208 0.8179L0.299208 0.857465"/>
+<path class="l1" d="M0.200296 0.8179L0.200296 0.857465"/>
+<path class="l1" d="M0.431091 0.705799L0.431091 0.837682"/>
+<path class="l1" d="M0.36515 0.8179L0.404714 0.8179"/>
+<path class="l1" d="M0.391526 0.890436L0.431091 0.890436"/>
+<path class="l1" d="M0.325585 0.778335L0.325585 0.837682"/>
+<path class="l1" d="M0.226672 0.699205L0.226672 0.837682"/>
+<path class="l1" d="M0.226672 0.699205L0.272831 0.699205"/>
+<path class="l1" d="M0.391526 0.699205L0.431091 0.699205"/>
+<path class="l1" d="M0.431091 0.699205L0.431091 0.705799"/>
+<path class="l1" d="M0.259643 0.587105L0.272831 0.587105"/>
+<path class="l1" d="M0.391526 0.587105L0.404714 0.587105"/>
+<path class="l1" d="M0.378338 0.587105L0.391526 0.587105"/>
+<path class="l1" d="M0.325585 0.587105L0.338773 0.587105"/>
+<path class="l1" d="M0.272831 0.587105L0.28602 0.587105"/>
+<path class="l1" d="M0.332179 0.435439L0.332179 0.587105"/>
+<path class="l1" d="M0.332179 0.435439L0.36515 0.435439"/>
+<path class="l1" d="M0.299208 0.435439L0.332179 0.435439"/>
+<path class="l1" d="M0.431091 0.890436L0.530003 0.890436"/>
+<path class="l1" d="M0.530003 0.877247L0.530003 0.890436"/>
+<path class="l1" d="M0.530003 0.857465L0.530003 0.877247"/>
+<path class="l1" d="M0.332179 0.46841L0.530003 0.46841"/>
+<path class="l1" d="M0.305802 0.573916L0.358555 0.573916"/>
+<path class="l1" d="M0.358555 0.573916L0.628916 0.573916"/>
+<path class="l1" d="M0.628916 0.573916L0.628916 0.883842"/>
+<path class="l1" d="M0.628916 0.883842L0.628916 0.890436"/>
+<path class="l1" d="M0.530003 0.890436L0.628916 0.890436"/>
+<path class="l1" d="M0.378338 0.54754L0.391526 0.54754"/>
+<path class="l1" d="M0.332179 0.54754L0.338773 0.54754"/>
+<path class="l1" d="M0.325585 0.54754L0.332179 0.54754"/>
+<path class="l1" d="M0.279426 0.54754L0.28602 0.54754"/>
+<path class="l1" d="M0.272831 0.54754L0.279426 0.54754"/>
+<path class="l1" d="M0.305802 0.560728L0.305802 0.573916"/>
+<path class="l1" d="M0.358555 0.560728L0.358555 0.573916"/>
+<path class="l1" d="M0.497033 0.857465L0.503627 0.857465"/>
+<path class="l1" d="M0.655292 0.837682L0.681669 0.837682"/>
+<path class="l1" d="M0.655292 0.837682L0.655292 0.857465"/>
+<path class="l1" d="M0.681669 0.8179L0.681669 0.837682"/>
+<path class="l1" d="M0.497033 0.8179L0.681669 0.8179"/>
+<path class="l1" d="M0.497033 0.8179L0.497033 0.857465"/>
+<path class="l1" d="M0.681669 0.877247L0.681669 0.890436"/>
+<path class="l1" d="M0.628916 0.890436L0.681669 0.890436"/>
+<path class="l1" d="M0.681669 0.46841L0.681669 0.8179"/>
+<path class="l1" d="M0.391526 0.38928L0.681669 0.38928"/>
+<path class="l1" d="M0.681669 0.38928L0.681669 0.409062"/>
+<path class="l1" d="M0.681669 0.409062L0.681669 0.428845"/>
+<path class="l1" d="M0.681669 0.428845L0.681669 0.448627"/>
+<path class="l1" d="M0.63551 0.448627L0.655292 0.448627"/>
+<path class="l1" d="M0.681669 0.857465L0.681669 0.877247"/>
+<path class="l1" d="M0.332179 0.732176L0.332179 0.798118"/>
+<path class="l1" d="M0.332179 0.798118L0.391526 0.798118"/>
+<path class="l1" d="M0.391526 0.798118L0.391526 0.890436"/>
+<path class="l1" d="M0.530003 0.692611L0.530003 0.837682"/>
+<path class="l1" d="M0.530003 0.46841L0.530003 0.653046"/>
+</svg>
diff --git a/xschem/comp/comp_adv2.sym b/xschem/comp/comp_adv2.sym
new file mode 100644
index 0000000..2785d84
--- /dev/null
+++ b/xschem/comp/comp_adv2.sym
@@ -0,0 +1,36 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -58.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=OutP dir=out }
+L 4 130 -10 150 -10 {}
+T {OutP} 125 -14 0 1 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=OutN dir=out }
+L 4 130 10 150 10 {}
+T {OutN} 125 6 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=Inn dir=in }
+L 4 -150 -30 -130 -30 {}
+T {Inn} -125 -34 0 0 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=Inp dir=in }
+L 4 -150 -10 -130 -10 {}
+T {Inp} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=CMM_fb dir=in }
+L 4 -150 10 -130 10 {}
+T {CMM_fb} -125 6 0 0 0.2 0.2 {}
+B 5 -152.5 27.5 -147.5 32.5 {name=bias dir=in }
+L 4 -150 30 -130 30 {}
+T {bias} -125 26 0 0 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=VN dir=inout }
+L 7 130 30 150 30 {}
+T {VN} 125 26 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_adv3.pdf b/xschem/comp/comp_adv3.pdf
new file mode 100644
index 0000000..b001c9a
--- /dev/null
+++ b/xschem/comp/comp_adv3.pdf
Binary files differ
diff --git a/xschem/comp/comp_adv3.png b/xschem/comp/comp_adv3.png
new file mode 100644
index 0000000..4acafcb
--- /dev/null
+++ b/xschem/comp/comp_adv3.png
Binary files differ
diff --git a/xschem/comp/comp_adv3.sch b/xschem/comp/comp_adv3.sch
new file mode 100644
index 0000000..41d565c
--- /dev/null
+++ b/xschem/comp/comp_adv3.sch
@@ -0,0 +1,305 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {dummy} 130 90 0 0 0.2 0.2 {}
+N 420 -690 600 -690 { lab=VP}
+N 420 -140 420 -100 { lab=VIq}
+N 420 -100 600 -100 { lab=VIq}
+N 600 -140 600 -100 { lab=VIq}
+N 440 70 490 70 { lab=VN}
+N 640 -170 720 -170 { lab=Inn}
+N 420 -170 500 -170 { lab=VN}
+N 30 -40 30 -10 { lab=bias}
+N 30 20 30 50 { lab=VN}
+N 270 -170 380 -170 { lab=Inp}
+N 70 -10 70 20 { lab=bias}
+N 30 70 440 70 { lab=VN}
+N 500 -170 600 -170 { lab=VN}
+N 30 50 30 70 { lab=VN}
+N 480 20 480 50 { lab=VN}
+N 480 50 480 70 { lab=VN}
+N 490 70 600 70 { lab=VN}
+N 30 -40 560 -40 { lab=bias}
+N 70 -40 70 -10 { lab=bias}
+N 440 -40 440 20 { lab=bias}
+N 600 70 660 70 { lab=VN}
+N 400 -390 420 -390 { lab=OutN}
+N 600 -390 620 -390 { lab=OutP}
+N 600 -690 1040 -690 { lab=VP}
+N 510 -170 510 -70 { lab=VN}
+N 510 -70 600 -70 { lab=VN}
+N 600 -70 600 70 { lab=VN}
+N 510 -320 510 -170 { lab=VN}
+N 600 -410 600 -200 { lab=OutP}
+N 420 -410 420 -200 { lab=OutN}
+N 440 -440 510 -440 { lab=VN}
+N 510 -440 510 -320 { lab=VN}
+N 510 -440 580 -440 { lab=VN}
+N -10 70 30 70 { lab=VN}
+N -10 -40 30 -40 { lab=bias}
+N 480 -100 480 -10 { lab=VIq}
+N 580 -580 580 -440 { lab=VN}
+N 600 -550 600 -470 { lab=VP}
+N 600 -690 600 -610 { lab=VP}
+N 420 -550 420 -470 { lab=VP}
+N 440 -580 440 -440 { lab=VN}
+N 420 -690 420 -610 { lab=VP}
+N -70 -690 420 -690 { lab=VP}
+N 600 -610 600 -550 { lab=VP}
+N 420 -610 420 -550 { lab=VP}
+N 110 20 110 70 {}
+N 150 -40 150 -10 {}
+N 150 20 230 20 {}
+N 230 20 230 70 {}
+N 150 50 150 70 {}
+C {devices/code.sym} 1390 -310 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 880 -810 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 880 -780 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 880 -750 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 880 -720 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1390 -130 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 400 -170 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 620 -170 0 1 {name=M2
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 50 20 0 1 {name=M7
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 160 -370 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 160 -340 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 160 -310 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 160 -280 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 670 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 670 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 670 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 670 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 460 20 0 0 {name=M9
+L=0.3
+W=2
+nf=1 
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 340 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 340 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 340 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 340 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 600 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 470 120 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 470 150 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 470 180 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 470 210 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} 30 110 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 30 140 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 30 170 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 30 200 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 420 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 600 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 540 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 270 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -10 -40 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 720 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 510 -690 3 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -10 70 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 400 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 620 -390 0 0 {name=p7 lab=OutP}
+C {sky130_fd_pr/res_xhigh_po_2p85.sym} 420 -440 0 1 {name=R1
+W=2.85
+L=1.5
+model=res_xhigh_po_2p85
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_2p85.sym} 600 -440 0 0 {name=R2
+W=2.85
+L=1.5
+model=res_xhigh_po_2p85
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 130 20 0 0 {name=M3
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_adv3.sym b/xschem/comp/comp_adv3.sym
new file mode 100644
index 0000000..193796e
--- /dev/null
+++ b/xschem/comp/comp_adv3.sym
@@ -0,0 +1,33 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -58.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=OutP dir=out }
+L 4 130 -10 150 -10 {}
+T {OutP} 125 -14 0 1 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=OutN dir=out }
+L 4 130 10 150 10 {}
+T {OutN} 125 6 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=Inn dir=in }
+L 4 -150 -30 -130 -30 {}
+T {Inn} -125 -34 0 0 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=Inp dir=in }
+L 4 -150 -10 -130 -10 {}
+T {Inp} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=bias dir=in }
+L 4 -150 10 -130 10 {}
+T {bias} -125 6 0 0 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=VN dir=inout }
+L 7 130 30 150 30 {}
+T {VN} 125 26 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_adv3_di.pdf b/xschem/comp/comp_adv3_di.pdf
new file mode 100644
index 0000000..5094513
--- /dev/null
+++ b/xschem/comp/comp_adv3_di.pdf
Binary files differ
diff --git a/xschem/comp/comp_adv3_di.png b/xschem/comp/comp_adv3_di.png
new file mode 100644
index 0000000..0fd7268
--- /dev/null
+++ b/xschem/comp/comp_adv3_di.png
Binary files differ
diff --git a/xschem/comp/comp_adv3_di.sch b/xschem/comp/comp_adv3_di.sch
new file mode 100644
index 0000000..540ae76
--- /dev/null
+++ b/xschem/comp/comp_adv3_di.sch
@@ -0,0 +1,435 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 420 -690 600 -690 { lab=VP}
+N 420 -140 420 -100 { lab=VIq}
+N 420 -100 600 -100 { lab=VIq}
+N 600 -140 600 -100 { lab=VIq}
+N 440 70 490 70 { lab=VN}
+N 640 -170 720 -170 { lab=Inn}
+N 420 -170 500 -170 { lab=VN}
+N 30 -40 30 -10 { lab=bias}
+N 30 20 30 50 { lab=VN}
+N 270 -170 380 -170 { lab=Inp}
+N 70 -10 70 20 { lab=bias}
+N 30 70 440 70 { lab=VN}
+N 500 -170 600 -170 { lab=VN}
+N 30 50 30 70 { lab=VN}
+N 480 20 480 50 { lab=VN}
+N 480 50 480 70 { lab=VN}
+N 490 70 600 70 { lab=VN}
+N 30 -40 560 -40 { lab=bias}
+N 70 -40 70 -10 { lab=bias}
+N 440 -40 440 20 { lab=bias}
+N 600 70 660 70 { lab=VN}
+N 400 -390 420 -390 { lab=OutN}
+N 600 -390 620 -390 { lab=OutP}
+N 600 -690 1040 -690 { lab=VP}
+N 510 -170 510 -70 { lab=VN}
+N 510 -70 600 -70 { lab=VN}
+N 600 -70 600 70 { lab=VN}
+N 510 -320 510 -170 { lab=VN}
+N 600 -410 600 -200 { lab=OutP}
+N 420 -410 420 -200 { lab=OutN}
+N 440 -440 510 -440 { lab=VN}
+N 510 -440 510 -320 { lab=VN}
+N 510 -440 580 -440 { lab=VN}
+N -10 70 30 70 { lab=VN}
+N -10 -40 30 -40 { lab=bias}
+N 480 -100 480 -10 { lab=VIq}
+N 600 -550 600 -470 { lab=VP}
+N 600 -690 600 -610 { lab=VP}
+N 420 -550 420 -470 { lab=VP}
+N 420 -690 420 -610 { lab=VP}
+N -70 -690 420 -690 { lab=VP}
+N 600 -610 600 -550 { lab=VP}
+N 420 -610 420 -550 { lab=VP}
+N 660 70 1250 70 { lab=VN}
+N 1250 40 1250 70 { lab=VN}
+N 1170 -60 1170 -20 { lab=VN}
+N 1170 -20 1350 -20 { lab=VN}
+N 1350 -60 1350 -20 { lab=VN}
+N 1170 -240 1170 -120 { lab=OutN}
+N 420 -240 1170 -240 { lab=OutN}
+N 1350 -260 1350 -120 { lab=OutP}
+N 600 -260 1350 -260 { lab=OutP}
+N 1390 -90 1410 -90 { lab=Inn2}
+N 1110 -90 1130 -90 { lab=Inp2}
+N 1250 10 1250 40 { lab=VN}
+N 1170 -90 1350 -90 { lab=VN}
+N 1250 -20 1250 10 { lab=VN}
+N 1350 -20 1530 -20 { lab=VN}
+N 1530 -90 1530 -20 { lab=VN}
+N 1450 -90 1530 -90 { lab=VN}
+N 1450 -60 1450 -20 { lab=VN}
+N 1070 -20 1170 -20 { lab=VN}
+N 1070 -60 1070 -20 { lab=VN}
+N 990 -20 1070 -20 { lab=VN}
+N 990 -90 990 -20 { lab=VN}
+N 990 -90 1070 -90 { lab=VN}
+N 1110 -120 1110 -90 { lab=Inp2}
+N 1050 -170 1070 -170 { lab=Inp2}
+N 1070 -170 1070 -120 { lab=Inp2}
+N 1070 -170 1110 -170 { lab=Inp2}
+N 1110 -170 1110 -120 { lab=Inp2}
+N 1450 -170 1470 -170 { lab=Inn2}
+N 1450 -170 1450 -120 { lab=Inn2}
+N 1410 -170 1450 -170 { lab=Inn2}
+N 1410 -170 1410 -90 { lab=Inn2}
+N 1250 -90 1250 -20 { lab=VN}
+N 870 -90 950 -90 { lab=VN}
+N 870 -90 870 -20 { lab=VN}
+N 870 -20 990 -20 { lab=VN}
+N 950 -60 950 -20 { lab=VN}
+N 950 -120 1070 -120 { lab=Inp2}
+N 1570 -90 1650 -90 { lab=VN}
+N 1650 -90 1650 -30 { lab=VN}
+N 1650 -30 1650 -20 { lab=VN}
+N 1530 -20 1650 -20 { lab=VN}
+N 1570 -130 1570 -120 { lab=Inn2}
+N 1450 -130 1570 -130 { lab=Inn2}
+N 150 -40 150 -10 { lab=bias}
+N 100 20 100 60 { lab=VN}
+N 100 20 110 20 { lab=VN}
+N 100 60 100 70 { lab=VN}
+N 150 20 220 20 { lab=VN}
+N 220 20 220 70 { lab=VN}
+N 150 50 150 70 { lab=VN}
+N 1570 -60 1570 -20 { lab=VN}
+C {devices/code.sym} 1510 -620 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 880 -810 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 880 -780 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 880 -750 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 880 -720 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 1510 -440 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 400 -170 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 620 -170 0 1 {name=M2
+L=0.15
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 50 20 0 1 {name=M7
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 160 -370 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 160 -340 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 160 -310 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 160 -280 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 670 -270 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 670 -240 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 670 -210 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 670 -180 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 460 20 0 0 {name=M9
+L=0.3
+W=2
+nf=1 
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 340 -270 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 340 -240 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 340 -210 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 340 -180 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 600 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 470 120 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 470 150 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 470 180 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 470 210 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} 30 110 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 30 140 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 30 170 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 30 200 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 420 -220 0 0 {name=r21 node="v(Voutn)"
+descr="v(Voutn)"}
+C {devices/ngspice_get_value.sym} 600 -220 0 1 {name=r22 node="v(Voutp)"
+descr="v(Voutp)"}
+C {devices/ngspice_get_value.sym} 540 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 270 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -10 -40 0 0 {name=p2 lab=bias}
+C {devices/ipin.sym} 720 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} 510 -690 3 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -10 70 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 400 -390 2 0 {name=p6 lab=OutN}
+C {devices/opin.sym} 620 -390 0 0 {name=p7 lab=OutP}
+C {sky130_fd_pr/res_xhigh_po_2p85.sym} 420 -440 0 1 {name=R1
+W=2.85
+L=1
+model=res_xhigh_po_2p85
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_2p85.sym} 600 -440 0 0 {name=R2
+W=2.85
+L=1
+model=res_xhigh_po_2p85
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1150 -90 0 0 {name=M3
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1370 -90 0 1 {name=M4
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ipin.sym} 1470 -170 0 1 {name=p8 lab=Inn2}
+C {devices/ipin.sym} 1050 -170 0 0 {name=p9 lab=Inp2}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1430 -90 0 0 {name=M5
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1090 -90 0 1 {name=M6
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 970 -90 0 1 {name=M8
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1550 -90 0 0 {name=M10
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 130 20 0 0 {name=M11
+L=0.3
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_adv3_di.sym b/xschem/comp/comp_adv3_di.sym
new file mode 100644
index 0000000..2b32bd9
--- /dev/null
+++ b/xschem/comp/comp_adv3_di.sym
@@ -0,0 +1,39 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -72 -6 0 0 0.3 0.3 {}
+T {@name} 135 -62 0 0 0.2 0.2 {}
+L 4 -130 -50 130 -50 {}
+L 4 -130 50 130 50 {}
+L 4 -130 -50 -130 50 {}
+L 4 130 -50 130 50 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=VP dir=inout }
+L 7 130 -40 150 -40 {}
+T {VP} 125 -44 0 1 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=OutP dir=out }
+L 4 130 -20 150 -20 {}
+T {OutP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=OutN dir=out }
+L 4 130 0 150 0 {}
+T {OutN} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=Inn dir=in }
+L 4 -150 -40 -130 -40 {}
+T {Inn} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=Inp dir=in }
+L 4 -150 -20 -130 -20 {}
+T {Inp} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Inn2 dir=in }
+L 4 -150 0 -130 0 {}
+T {Inn2} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Inp2 dir=in }
+L 4 -150 20 -130 20 {}
+T {Inp2} -125 16 0 0 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=bias dir=in }
+L 4 -150 40 -130 40 {}
+T {bias} -125 36 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_amp_20db.pdf b/xschem/comp/comp_amp_20db.pdf
new file mode 100644
index 0000000..ccc7231
--- /dev/null
+++ b/xschem/comp/comp_amp_20db.pdf
Binary files differ
diff --git a/xschem/comp/comp_amp_20db.png b/xschem/comp/comp_amp_20db.png
new file mode 100644
index 0000000..46ed766
--- /dev/null
+++ b/xschem/comp/comp_amp_20db.png
Binary files differ
diff --git a/xschem/comp/comp_amp_20db.sch b/xschem/comp/comp_amp_20db.sch
new file mode 100644
index 0000000..089c959
--- /dev/null
+++ b/xschem/comp/comp_amp_20db.sch
@@ -0,0 +1,156 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 370 -90 430 -90 { lab=VN}
+N 370 -110 540 -110 { lab=OutN1}
+N 370 -130 540 -130 { lab=OutP1}
+N 10 -300 10 -280 { lab=VP}
+N 380 70 440 70 { lab=VN}
+N 440 70 440 90 { lab=VN}
+N -40 30 80 30 { lab=Bias1}
+N 10 -280 10 -250 { lab=VP}
+N 380 50 400 50 { lab=cmm_out}
+N 400 -30 400 50 { lab=cmm_out}
+N -30 -30 400 -30 { lab=cmm_out}
+N 80 150 500 150 { lab=OutN1}
+N 500 -110 500 150 { lab=OutN1}
+N 520 -130 520 170 { lab=OutP1}
+N 50 170 520 170 { lab=OutP1}
+N 60 150 80 150 { lab=OutN1}
+N 40 170 50 170 { lab=OutP1}
+N 10 -250 10 -220 { lab=VP}
+N -30 -220 -30 -30 { lab=cmm_out}
+N 60 90 80 90 { lab=OutN1}
+N 60 90 60 150 { lab=OutN1}
+N 50 70 80 70 { lab=OutP1}
+N 40 70 50 70 { lab=OutP1}
+N 40 70 40 170 { lab=OutP1}
+N 20 110 80 110 { lab=V_ref}
+N 20 50 70 50 { lab=V_ref}
+N 70 50 80 50 { lab=V_ref}
+N 20 50 20 110 { lab=V_ref}
+N 540 -110 550 -110 { lab=OutN1}
+N 10 -110 70 -110 { lab=#net1}
+N 10 -190 10 -110 { lab=#net1}
+N 1030 70 1090 70 { lab=VN}
+N 620 30 730 30 { lab=Bias2}
+N 1030 50 1050 50 { lab=cmm_out1}
+N 730 150 1140 150 { lab=out_n}
+N 700 170 1160 170 { lab=out_p}
+N 710 150 730 150 { lab=out_n}
+N 690 170 700 170 { lab=out_p}
+N 710 90 730 90 { lab=out_n}
+N 710 90 710 150 { lab=out_n}
+N 700 70 730 70 { lab=out_p}
+N 690 70 700 70 { lab=out_p}
+N 690 70 690 170 { lab=out_p}
+N 670 110 730 110 { lab=V_ref}
+N 670 50 720 50 { lab=V_ref}
+N 720 50 730 50 { lab=V_ref}
+N 660 -300 660 -280 { lab=VP}
+N 660 -280 660 -250 { lab=VP}
+N 660 -250 660 -220 { lab=VP}
+N 620 -220 620 -40 { lab=cmm_out1}
+N 1030 -150 1070 -150 { lab=VP}
+N 1030 -90 1080 -90 { lab=VN}
+N 1030 -110 1140 -110 { lab=out_n}
+N 1140 -110 1140 150 { lab=out_n}
+N 1030 -130 1160 -130 { lab=out_p}
+N 1160 -130 1160 170 { lab=out_p}
+N 540 -150 730 -150 { lab=OutP1}
+N 540 -150 540 -130 { lab=OutP1}
+N 550 -110 560 -110 { lab=OutN1}
+N 560 -130 560 -110 { lab=OutN1}
+N 560 -130 730 -130 { lab=OutN1}
+N 660 -110 730 -110 { lab=#net2}
+N 660 -190 660 -110 { lab=#net2}
+N -50 -150 70 -150 { lab=In_n}
+N -50 -130 70 -130 { lab=In_p}
+N 1140 -110 1190 -110 { lab=out_n}
+N 1160 -130 1190 -130 { lab=out_p}
+N -50 30 -40 30 { lab=Bias1}
+N 20 210 670 210 { lab=V_ref}
+N 20 110 20 210 { lab=V_ref}
+N 420 -150 420 30 { lab=VP}
+N 420 -300 420 -150 { lab=VP}
+N 10 -300 420 -300 { lab=VP}
+N -110 -300 10 -300 { lab=VP}
+N 370 -150 420 -150 { lab=VP}
+N 380 30 420 30 { lab=VP}
+N 430 -90 440 -90 { lab=VN}
+N 440 -90 440 70 { lab=VN}
+N -80 230 440 230 { lab=VN}
+N 440 120 440 230 { lab=VN}
+N 440 90 440 120 { lab=VN}
+N 420 -300 660 -300 { lab=VP}
+N 660 -300 1070 -300 { lab=VP}
+N 1070 -300 1070 -150 { lab=VP}
+N 440 230 1090 230 { lab=VN}
+N 1090 70 1090 230 { lab=VN}
+N 1090 -90 1090 70 { lab=VN}
+N 1080 -90 1090 -90 { lab=VN}
+N 1030 30 1070 30 { lab=VP}
+N 1070 -150 1070 30 { lab=VP}
+N 670 50 670 110 { lab=V_ref}
+N 670 110 670 210 { lab=V_ref}
+N -50 110 20 110 { lab=V_ref}
+N 1050 -40 1050 50 { lab=cmm_out1}
+N 620 -40 1050 -40 { lab=cmm_out1}
+C {comp/comp_adv3.sym} 220 -120 0 0 {name=xcmp1}
+C {devices/lab_wire.sym} 450 -130 0 1 {name=l8 sig_type=std_logic lab=OutP1}
+C {devices/lab_wire.sym} 450 -110 0 1 {name=l9 sig_type=std_logic lab=OutN1}
+C {devices/ngspice_get_value.sym} 460 -200 0 0 {name=r1 node="v(xamp1.OutP1)"
+descr="v(xamp1.OutP1)"}
+C {devices/ngspice_get_value.sym} 460 -170 0 0 {name=r2 node="v(xamp1.OutN1)"
+descr="v(xamp1.OutN1)"}
+C {cmm_sense/cmm_sense5.sym} 230 70 0 0 {name=x1}
+C {devices/lab_wire.sym} 160 -30 0 1 {name=l14 sig_type=std_logic lab=cmm_out}
+C {devices/ngspice_get_value.sym} 160 0 0 0 {name=r3 node="v(xamp1.cmm_out)"
+descr="v(xamp1.cmm_out)"}
+C {comp/comp_adv3.sym} 880 -120 0 0 {name=xcmp2}
+C {cmm_sense/cmm_sense5.sym} 880 70 0 0 {name=x2}
+C {devices/ngspice_get_value.sym} 820 0 0 0 {name=r4 node="v(xamp1.cmm_out1)"
+descr="v(xamp1.cmm_out1)"}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} -10 -220 0 0 {name=M1
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 390 -290 0 0 {name=r5 node="i(v2)"
+descr="i(v2)"}
+C {devices/ipin.sym} -50 -150 0 0 {name=p1 lab=In_n}
+C {devices/ipin.sym} -50 -130 0 0 {name=p2 lab=In_p}
+C {devices/iopin.sym} -110 -300 0 1 {name=p3 lab=VP}
+C {devices/opin.sym} 1190 -130 0 0 {name=p4 lab=out_p}
+C {devices/opin.sym} 1190 -110 0 0 {name=p5 lab=out_n}
+C {devices/ipin.sym} -50 30 0 0 {name=p6 lab=Bias1}
+C {devices/ipin.sym} -50 110 0 0 {name=p7 lab=V_ref}
+C {devices/ipin.sym} 620 30 0 0 {name=p8 lab=Bias2}
+C {devices/iopin.sym} -80 230 0 1 {name=p9 lab=VN}
+C {devices/lab_wire.sym} 820 -40 0 1 {name=l1 sig_type=std_logic lab=cmm_out1}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 640 -220 0 0 {name=M2
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_amp_20db.sym b/xschem/comp/comp_amp_20db.sym
new file mode 100644
index 0000000..5c6ec94
--- /dev/null
+++ b/xschem/comp/comp_amp_20db.sym
@@ -0,0 +1,38 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -76.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -62 0 0 0.2 0.2 {}
+L 4 -130 -50 130 -50 {}
+L 4 -130 50 130 50 {}
+L 4 -130 -50 -130 50 {}
+L 4 130 -50 130 50 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=VP dir=inout }
+L 7 130 -40 150 -40 {}
+T {VP} 125 -44 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=In_n dir=in }
+L 4 -150 -40 -130 -40 {}
+T {In_n} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=In_p dir=in }
+L 4 -150 -20 -130 -20 {}
+T {In_p} -125 -24 0 0 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=out_p dir=out }
+L 4 130 -20 150 -20 {}
+T {out_p} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=out_n dir=out }
+L 4 130 0 150 0 {}
+T {out_n} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Bias1 dir=in }
+L 4 -150 0 -130 0 {}
+T {Bias1} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Bias2 dir=in }
+L 4 -150 20 -130 20 {}
+T {Bias2} -125 16 0 0 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=V_ref dir=in }
+L 4 -150 40 -130 40 {}
+T {V_ref} -125 36 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_amp_20db_no_cmm.pdf b/xschem/comp/comp_amp_20db_no_cmm.pdf
new file mode 100644
index 0000000..439a2c5
--- /dev/null
+++ b/xschem/comp/comp_amp_20db_no_cmm.pdf
Binary files differ
diff --git a/xschem/comp/comp_amp_20db_no_cmm.png b/xschem/comp/comp_amp_20db_no_cmm.png
new file mode 100644
index 0000000..a22a387
--- /dev/null
+++ b/xschem/comp/comp_amp_20db_no_cmm.png
Binary files differ
diff --git a/xschem/comp/comp_amp_20db_no_cmm.sch b/xschem/comp/comp_amp_20db_no_cmm.sch
new file mode 100644
index 0000000..999f253
--- /dev/null
+++ b/xschem/comp/comp_amp_20db_no_cmm.sch
@@ -0,0 +1,56 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 370 -90 430 -90 { lab=VN}
+N 370 -110 540 -110 { lab=OutN1}
+N 370 -130 540 -130 { lab=OutP1}
+N 540 -110 550 -110 { lab=OutN1}
+N 10 -110 70 -110 { lab=Bias1}
+N 1030 -150 1070 -150 { lab=VP}
+N 1030 -90 1080 -90 { lab=VN}
+N 1030 -110 1140 -110 { lab=out_n}
+N 1030 -130 1160 -130 { lab=#net1}
+N 540 -150 730 -150 { lab=OutP1}
+N 540 -150 540 -130 { lab=OutP1}
+N 550 -110 560 -110 { lab=OutN1}
+N 560 -130 560 -110 { lab=OutN1}
+N 560 -130 730 -130 { lab=OutN1}
+N 660 -110 730 -110 { lab=Bias2}
+N -50 -150 70 -150 { lab=In_n}
+N -50 -130 70 -130 { lab=In_p}
+N 1140 -110 1190 -110 { lab=out_n}
+N 1160 -130 1190 -130 { lab=#net1}
+N 420 -300 420 -150 { lab=VP}
+N 10 -300 420 -300 { lab=VP}
+N -110 -300 10 -300 { lab=VP}
+N 370 -150 420 -150 { lab=VP}
+N 430 -90 440 -90 { lab=VN}
+N -80 230 440 230 { lab=VN}
+N 420 -300 660 -300 { lab=VP}
+N 660 -300 1070 -300 { lab=VP}
+N 1070 -300 1070 -150 { lab=VP}
+N 440 230 1090 230 { lab=VN}
+N 1080 -90 1090 -90 { lab=VN}
+N 1090 -90 1090 230 { lab=VN}
+N 440 -90 440 230 { lab=VN}
+C {devices/lab_wire.sym} 450 -130 0 1 {name=l8 sig_type=std_logic lab=OutP1}
+C {devices/lab_wire.sym} 450 -110 0 1 {name=l9 sig_type=std_logic lab=OutN1}
+C {devices/ngspice_get_value.sym} 460 -200 0 0 {name=r1 node="v(xamp1.OutP1)"
+descr="v(xamp1.OutP1)"}
+C {devices/ngspice_get_value.sym} 460 -170 0 0 {name=r2 node="v(xamp1.OutN1)"
+descr="v(xamp1.OutN1)"}
+C {comp/comp_adv3.sym} 880 -120 0 0 {name=xcmp2}
+C {devices/ngspice_get_value.sym} 390 -290 0 0 {name=r5 node="i(v2)"
+descr="i(v2)"}
+C {devices/ipin.sym} -50 -150 0 0 {name=p1 lab=In_n}
+C {devices/ipin.sym} -50 -130 0 0 {name=p2 lab=In_p}
+C {devices/iopin.sym} -110 -300 0 1 {name=p3 lab=VP}
+C {devices/opin.sym} 1190 -130 0 0 {name=p4 lab=out_p}
+C {devices/opin.sym} 1190 -110 0 0 {name=p5 lab=out_n}
+C {devices/ipin.sym} 10 -110 0 0 {name=p6 lab=Bias1}
+C {devices/ipin.sym} 660 -110 0 0 {name=p8 lab=Bias2}
+C {devices/iopin.sym} -80 230 0 1 {name=p9 lab=VN}
+C {comp/comp_adv3.sym} 220 -120 0 0 {name=xcmp1}
diff --git a/xschem/comp/comp_amp_20db_no_cmm.sym b/xschem/comp/comp_amp_20db_no_cmm.sym
new file mode 100644
index 0000000..89a09b1
--- /dev/null
+++ b/xschem/comp/comp_amp_20db_no_cmm.sym
@@ -0,0 +1,36 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -108 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=In_n dir=in }
+L 4 -150 -30 -130 -30 {}
+T {In_n} -125 -34 0 0 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=In_p dir=in }
+L 4 -150 -10 -130 -10 {}
+T {In_p} -125 -14 0 0 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=out_p dir=out }
+L 4 130 -10 150 -10 {}
+T {out_p} 125 -14 0 1 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=Bias1 dir=in }
+L 4 -150 10 -130 10 {}
+T {Bias1} -125 6 0 0 0.2 0.2 {}
+B 5 -152.5 27.5 -147.5 32.5 {name=Bias2 dir=in }
+L 4 -150 30 -130 30 {}
+T {Bias2} -125 26 0 0 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=out_n dir=out }
+L 4 130 10 150 10 {}
+T {out_n} 125 6 0 1 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=VN dir=inout }
+L 7 130 30 150 30 {}
+T {VN} 125 26 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_amp_di_40db.pdf b/xschem/comp/comp_amp_di_40db.pdf
new file mode 100644
index 0000000..47e05a4
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db.pdf
Binary files differ
diff --git a/xschem/comp/comp_amp_di_40db.png b/xschem/comp/comp_amp_di_40db.png
new file mode 100644
index 0000000..544ad2a
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db.png
Binary files differ
diff --git a/xschem/comp/comp_amp_di_40db.sch b/xschem/comp/comp_amp_di_40db.sch
new file mode 100644
index 0000000..3e46c32
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db.sch
@@ -0,0 +1,310 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 300 810 360 810 { lab=VN}
+N 300 790 490 790 { lab=OutN1_di}
+N 300 770 490 770 { lab=OutP1_di}
+N -60 600 -60 620 { lab=VP}
+N 310 970 370 970 { lab=VN}
+N 370 970 370 990 { lab=VN}
+N -110 930 10 930 { lab=Bias1}
+N -60 620 -60 650 { lab=VP}
+N 310 950 330 950 { lab=cmm_out_di}
+N 330 870 330 950 { lab=cmm_out_di}
+N -100 870 330 870 { lab=cmm_out_di}
+N 10 1050 450 1050 { lab=OutN1_di}
+N 450 790 450 1050 { lab=OutN1_di}
+N 470 770 470 1070 { lab=OutP1_di}
+N -20 1070 470 1070 { lab=OutP1_di}
+N -10 1050 10 1050 { lab=OutN1_di}
+N -30 1070 -20 1070 { lab=OutP1_di}
+N -60 650 -60 680 { lab=VP}
+N -100 680 -100 870 { lab=cmm_out_di}
+N -10 990 10 990 { lab=OutN1_di}
+N -10 990 -10 1050 { lab=OutN1_di}
+N -20 970 10 970 { lab=OutP1_di}
+N -30 970 -20 970 { lab=OutP1_di}
+N -30 970 -30 1070 { lab=OutP1_di}
+N -50 1010 10 1010 { lab=V_ref}
+N -50 950 0 950 { lab=V_ref}
+N 0 950 10 950 { lab=V_ref}
+N -50 950 -50 1010 { lab=V_ref}
+N -110 980 -50 980 { lab=V_ref}
+N 490 790 520 790 { lab=OutN1_di}
+N 1010 960 1070 960 { lab=VN}
+N 1070 960 1070 980 { lab=VN}
+N 590 920 710 920 { lab=Bias2}
+N 1010 940 1030 940 { lab=#net1}
+N 1030 860 1030 940 { lab=#net1}
+N 600 860 1030 860 { lab=#net1}
+N 710 1040 1110 1040 { lab=#net2}
+N 680 1060 1130 1060 { lab=#net3}
+N 690 1040 710 1040 { lab=#net2}
+N 670 1060 680 1060 { lab=#net3}
+N 690 980 710 980 { lab=#net2}
+N 690 980 690 1040 { lab=#net2}
+N 680 960 710 960 { lab=#net3}
+N 670 960 680 960 { lab=#net3}
+N 670 960 670 1060 { lab=#net3}
+N 650 1000 710 1000 { lab=V_ref}
+N 650 940 700 940 { lab=V_ref}
+N 700 940 710 940 { lab=V_ref}
+N 650 940 650 1000 { lab=V_ref}
+N 510 970 650 970 { lab=V_ref}
+N 630 600 630 620 { lab=VP}
+N 630 620 630 650 { lab=VP}
+N 630 650 630 680 { lab=VP}
+N 590 680 590 860 { lab=#net1}
+N 590 860 600 860 { lab=#net1}
+N 1000 810 1060 810 { lab=VN}
+N 1000 790 1110 790 { lab=#net2}
+N 1110 790 1110 1040 { lab=#net2}
+N 1000 770 1130 770 { lab=#net3}
+N 1130 770 1130 1060 { lab=#net3}
+N 510 750 700 750 { lab=OutP1_di}
+N 510 750 510 770 { lab=OutP1_di}
+N 490 770 510 770 { lab=OutP1_di}
+N 520 790 530 790 { lab=OutN1_di}
+N 530 770 530 790 { lab=OutN1_di}
+N 530 770 700 770 { lab=OutN1_di}
+N 630 790 700 790 { lab=#net4}
+N 630 710 630 790 { lab=#net4}
+N 510 970 510 1060 { lab=V_ref}
+N -60 830 0 830 { lab=#net5}
+N -60 710 -60 830 { lab=#net5}
+N -170 770 0 770 { lab=In_p}
+N -170 750 0 750 { lab=In_n}
+N -170 790 0 790 { lab=In_ref_n}
+N -170 810 0 810 { lab=In_ref_p}
+N 510 1060 510 1100 { lab=V_ref}
+N -50 1100 510 1100 { lab=V_ref}
+N -50 1010 -50 1100 { lab=V_ref}
+N -170 1130 370 1130 { lab=VN}
+N 370 990 370 1130 { lab=VN}
+N 310 930 350 930 { lab=VP}
+N 350 750 350 930 { lab=VP}
+N 360 810 370 810 { lab=VN}
+N 370 810 370 970 { lab=VN}
+N -170 580 350 580 { lab=VP}
+N 350 580 350 750 { lab=VP}
+N -60 580 -60 600 { lab=VP}
+N 350 580 630 580 { lab=VP}
+N 630 580 630 600 { lab=VP}
+N 1000 750 1050 750 { lab=VP}
+N 1050 590 1050 750 { lab=VP}
+N 1050 580 1050 590 { lab=VP}
+N 630 580 1050 580 { lab=VP}
+N 1010 920 1050 920 { lab=VP}
+N 1060 810 1070 810 { lab=VN}
+N 1070 810 1070 960 { lab=VN}
+N 370 1130 1070 1130 { lab=VN}
+N 1070 980 1070 1130 { lab=VN}
+N 1130 770 1160 770 { lab=#net3}
+N 1110 790 1160 790 { lab=#net2}
+N 300 750 350 750 { lab=VP}
+N 1050 750 1050 920 { lab=VP}
+N 1660 960 1720 960 { lab=VN}
+N 1720 960 1720 980 { lab=VN}
+N 1240 920 1360 920 { lab=Bias3}
+N 1660 940 1680 940 { lab=#net6}
+N 1680 860 1680 940 { lab=#net6}
+N 1250 860 1680 860 { lab=#net6}
+N 1360 1040 1760 1040 { lab=#net7}
+N 1330 1060 1780 1060 { lab=#net8}
+N 1340 1040 1360 1040 { lab=#net7}
+N 1320 1060 1330 1060 { lab=#net8}
+N 1340 980 1360 980 { lab=#net7}
+N 1340 980 1340 1040 { lab=#net7}
+N 1330 960 1360 960 { lab=#net8}
+N 1320 960 1330 960 { lab=#net8}
+N 1320 960 1320 1060 { lab=#net8}
+N 1300 1000 1360 1000 { lab=V_ref}
+N 1300 940 1350 940 { lab=V_ref}
+N 1350 940 1360 940 { lab=V_ref}
+N 1300 940 1300 1000 { lab=V_ref}
+N 1160 970 1300 970 { lab=V_ref}
+N 1280 600 1280 620 { lab=VP}
+N 1280 620 1280 650 { lab=VP}
+N 1280 650 1280 680 { lab=VP}
+N 1240 680 1240 860 { lab=#net6}
+N 1240 860 1250 860 { lab=#net6}
+N 1650 810 1710 810 { lab=VN}
+N 1650 790 1760 790 { lab=#net7}
+N 1760 790 1760 1040 { lab=#net7}
+N 1650 770 1780 770 { lab=#net8}
+N 1780 770 1780 1060 { lab=#net8}
+N 1160 750 1350 750 { lab=#net3}
+N 1160 750 1160 770 { lab=#net3}
+N 1170 790 1180 790 { lab=#net2}
+N 1180 770 1180 790 { lab=#net2}
+N 1180 770 1350 770 { lab=#net2}
+N 1280 790 1350 790 { lab=#net9}
+N 1280 710 1280 790 { lab=#net9}
+N 1160 970 1160 1060 { lab=V_ref}
+N 1160 1060 1160 1100 { lab=V_ref}
+N 1280 580 1280 600 { lab=VP}
+N 1650 750 1700 750 { lab=VP}
+N 1700 590 1700 750 { lab=VP}
+N 1700 580 1700 590 { lab=VP}
+N 1280 580 1700 580 { lab=VP}
+N 1660 920 1700 920 { lab=VP}
+N 1710 810 1720 810 { lab=VN}
+N 1720 810 1720 960 { lab=VN}
+N 1720 980 1720 1130 { lab=VN}
+N 1780 770 1810 770 { lab=#net8}
+N 1760 790 1810 790 { lab=#net7}
+N 1700 750 1700 920 { lab=VP}
+N 1160 790 1170 790 { lab=#net2}
+N 510 1100 1160 1100 { lab=V_ref}
+N 1070 1130 1720 1130 { lab=VN}
+N 2310 960 2370 960 { lab=VN}
+N 2370 960 2370 980 { lab=VN}
+N 1890 920 2010 920 { lab=Bias4}
+N 2310 940 2330 940 { lab=#net10}
+N 2330 860 2330 940 { lab=#net10}
+N 1900 860 2330 860 { lab=#net10}
+N 2010 1040 2410 1040 { lab=Out_n}
+N 1980 1060 2430 1060 { lab=Out_p}
+N 1990 1040 2010 1040 { lab=Out_n}
+N 1970 1060 1980 1060 { lab=Out_p}
+N 1990 980 2010 980 { lab=Out_n}
+N 1990 980 1990 1040 { lab=Out_n}
+N 1980 960 2010 960 { lab=Out_p}
+N 1970 960 1980 960 { lab=Out_p}
+N 1970 960 1970 1060 { lab=Out_p}
+N 1950 1000 2010 1000 { lab=V_ref}
+N 1950 940 2000 940 { lab=V_ref}
+N 2000 940 2010 940 { lab=V_ref}
+N 1950 940 1950 1000 { lab=V_ref}
+N 1810 970 1950 970 { lab=V_ref}
+N 1930 600 1930 620 { lab=VP}
+N 1930 620 1930 650 { lab=VP}
+N 1930 650 1930 680 { lab=VP}
+N 1890 680 1890 860 { lab=#net10}
+N 1890 860 1900 860 { lab=#net10}
+N 2300 810 2360 810 { lab=VN}
+N 2300 790 2410 790 { lab=Out_n}
+N 2410 790 2410 1040 { lab=Out_n}
+N 2300 770 2430 770 { lab=Out_p}
+N 2430 770 2430 1060 { lab=Out_p}
+N 1810 750 2000 750 { lab=#net8}
+N 1810 750 1810 770 { lab=#net8}
+N 1820 790 1830 790 { lab=#net7}
+N 1830 770 1830 790 { lab=#net7}
+N 1830 770 2000 770 { lab=#net7}
+N 1930 790 2000 790 { lab=#net11}
+N 1930 710 1930 790 { lab=#net11}
+N 1810 970 1810 1060 { lab=V_ref}
+N 1810 1060 1810 1100 { lab=V_ref}
+N 1930 580 1930 600 { lab=VP}
+N 2300 750 2350 750 { lab=VP}
+N 2350 590 2350 750 { lab=VP}
+N 2350 580 2350 590 { lab=VP}
+N 1930 580 2350 580 { lab=VP}
+N 2310 920 2350 920 { lab=VP}
+N 2360 810 2370 810 { lab=VN}
+N 2370 810 2370 960 { lab=VN}
+N 2370 980 2370 1130 { lab=VN}
+N 2430 770 2460 770 { lab=Out_p}
+N 2410 790 2460 790 { lab=Out_n}
+N 2350 750 2350 920 { lab=VP}
+N 1810 790 1820 790 { lab=#net7}
+N 1160 1100 1810 1100 { lab=V_ref}
+N 1720 1130 2370 1130 { lab=VN}
+N 1050 580 1280 580 { lab=VP}
+N 1700 580 1930 580 { lab=VP}
+C {comp/comp_adv3_di.sym} 150 790 0 0 {name=x4}
+C {devices/lab_wire.sym} 380 770 0 1 {name=l32 sig_type=std_logic lab=OutP1_di}
+C {devices/lab_wire.sym} 380 790 0 1 {name=l33 sig_type=std_logic lab=OutN1_di}
+C {devices/ngspice_get_value.sym} 440 710 0 0 {name=r6 node="v(OutP1)"
+descr="v(OutP1)"}
+C {devices/ngspice_get_value.sym} 450 730 0 0 {name=r7 node="v(OutN1)"
+descr="v(OutN1)"}
+C {cmm_sense/cmm_sense5.sym} 160 970 0 0 {name=x5}
+C {devices/lab_wire.sym} 90 870 0 1 {name=l38 sig_type=std_logic lab=cmm_out_di}
+C {devices/ngspice_get_value.sym} 90 900 0 0 {name=r8 node="v(cmm_out)"
+descr="v(cmm_out)"}
+C {comp/comp_adv3.sym} 850 780 0 0 {name=xcmp6}
+C {cmm_sense/cmm_sense5.sym} 860 960 0 0 {name=x7}
+C {devices/ngspice_get_value.sym} 790 890 0 0 {name=r9 node="v(cmm_out)"
+descr="v(cmm_out)"}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} -80 680 0 0 {name=M4
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ipin.sym} -170 750 0 0 {name=p1 lab=In_n}
+C {devices/iopin.sym} -170 580 0 1 {name=p2 lab=VP}
+C {devices/opin.sym} 2460 770 0 0 {name=p3 lab=Out_p}
+C {devices/ipin.sym} -170 770 0 0 {name=p4 lab=In_p}
+C {devices/ipin.sym} -170 790 0 0 {name=p5 lab=In_ref_n}
+C {devices/ipin.sym} -170 810 0 0 {name=p6 lab=In_ref_p}
+C {devices/ipin.sym} -110 930 0 0 {name=p7 lab=Bias1}
+C {devices/ipin.sym} -110 980 0 0 {name=p8 lab=V_ref}
+C {devices/ipin.sym} 590 920 0 0 {name=p9 lab=Bias2}
+C {devices/iopin.sym} -170 1130 0 1 {name=p10 lab=VN}
+C {devices/opin.sym} 2460 790 0 0 {name=p11 lab=Out_n}
+C {comp/comp_adv3.sym} 1500 780 0 0 {name=xcmp1}
+C {cmm_sense/cmm_sense5.sym} 1510 960 0 0 {name=x2}
+C {devices/ngspice_get_value.sym} 1440 890 0 0 {name=r1 node="v(cmm_out)"
+descr="v(cmm_out)"}
+C {devices/ipin.sym} 1240 920 0 0 {name=p12 lab=Bias3}
+C {comp/comp_adv3.sym} 2150 780 0 0 {name=xcmp2}
+C {cmm_sense/cmm_sense5.sym} 2160 960 0 0 {name=x3}
+C {devices/ngspice_get_value.sym} 2090 890 0 0 {name=r2 node="v(cmm_out)"
+descr="v(cmm_out)"}
+C {devices/ipin.sym} 1890 920 0 0 {name=p13 lab=Bias4}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 610 680 0 0 {name=M1
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1260 680 0 0 {name=M2
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1910 680 0 0 {name=M3
+L=0.5
+W=2
+nf=1
+mult=16
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_amp_di_40db.sym b/xschem/comp/comp_amp_di_40db.sym
new file mode 100644
index 0000000..5a17ea6
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db.sym
@@ -0,0 +1,51 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -90 -6 0 0 0.3 0.3 {}
+T {@name} 135 -102 0 0 0.2 0.2 {}
+L 4 -130 -90 130 -90 {}
+L 4 -130 90 130 90 {}
+L 4 -130 -90 -130 90 {}
+L 4 130 -90 130 90 {}
+B 5 147.5 -82.5 152.5 -77.5 {name=VP dir=inout }
+L 7 130 -80 150 -80 {}
+T {VP} 125 -84 0 1 0.2 0.2 {}
+B 5 -152.5 -82.5 -147.5 -77.5 {name=In_n dir=in }
+L 4 -150 -80 -130 -80 {}
+T {In_n} -125 -84 0 0 0.2 0.2 {}
+B 5 -152.5 -62.5 -147.5 -57.5 {name=In_p dir=in }
+L 4 -150 -60 -130 -60 {}
+T {In_p} -125 -64 0 0 0.2 0.2 {}
+B 5 147.5 -62.5 152.5 -57.5 {name=Out_p dir=out }
+L 4 130 -60 150 -60 {}
+T {Out_p} 125 -64 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=In_ref_n dir=in }
+L 4 -150 -40 -130 -40 {}
+T {In_ref_n} -125 -44 0 0 0.2 0.2 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=Out_n dir=out }
+L 4 130 -40 150 -40 {}
+T {Out_n} 125 -44 0 1 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=In_ref_p dir=in }
+L 4 -150 -20 -130 -20 {}
+T {In_ref_p} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Bias4 dir=in }
+L 4 -150 0 -130 0 {}
+T {Bias4} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Bias3 dir=in }
+L 4 -150 20 -130 20 {}
+T {Bias3} -125 16 0 0 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=Bias2 dir=in }
+L 4 -150 40 -130 40 {}
+T {Bias2} -125 36 0 0 0.2 0.2 {}
+B 5 -152.5 57.5 -147.5 62.5 {name=Bias1 dir=in }
+L 4 -150 60 -130 60 {}
+T {Bias1} -125 56 0 0 0.2 0.2 {}
+B 5 -152.5 77.5 -147.5 82.5 {name=V_ref dir=in }
+L 4 -150 80 -130 80 {}
+T {V_ref} -125 76 0 0 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VN dir=inout }
+L 7 130 -20 150 -20 {}
+T {VN} 125 -24 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_amp_di_40db_no_cmm.pdf b/xschem/comp/comp_amp_di_40db_no_cmm.pdf
new file mode 100644
index 0000000..92c7fa1
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db_no_cmm.pdf
Binary files differ
diff --git a/xschem/comp/comp_amp_di_40db_no_cmm.png b/xschem/comp/comp_amp_di_40db_no_cmm.png
new file mode 100644
index 0000000..8abd609
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db_no_cmm.png
Binary files differ
diff --git a/xschem/comp/comp_amp_di_40db_no_cmm.sch b/xschem/comp/comp_amp_di_40db_no_cmm.sch
new file mode 100644
index 0000000..96590a5
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db_no_cmm.sch
@@ -0,0 +1,107 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 300 810 360 810 { lab=VN}
+N 300 790 490 790 { lab=OutN1_di}
+N 300 770 490 770 { lab=OutP1_di}
+N 490 790 520 790 { lab=OutN1_di}
+N 1000 810 1060 810 { lab=VN}
+N 1000 790 1110 790 { lab=OutN2_di}
+N 1000 770 1130 770 { lab=OutP2_di}
+N 510 750 700 750 { lab=OutP1_di}
+N 510 750 510 770 { lab=OutP1_di}
+N 490 770 510 770 { lab=OutP1_di}
+N 520 790 530 790 { lab=OutN1_di}
+N 530 770 530 790 { lab=OutN1_di}
+N 530 770 700 770 { lab=OutN1_di}
+N -50 830 10 830 { lab=Bias1}
+N -160 770 10 770 { lab=In_p}
+N -160 750 10 750 { lab=In_n}
+N -170 1130 370 1130 { lab=VN}
+N 360 810 370 810 { lab=VN}
+N -170 580 350 580 { lab=VP}
+N 350 580 350 750 { lab=VP}
+N 350 580 630 580 { lab=VP}
+N 1000 750 1050 750 { lab=VP}
+N 1050 590 1050 750 { lab=VP}
+N 1050 580 1050 590 { lab=VP}
+N 630 580 1050 580 { lab=VP}
+N 1060 810 1070 810 { lab=VN}
+N 370 1130 1070 1130 { lab=VN}
+N 1130 770 1160 770 { lab=OutP2_di}
+N 1110 790 1160 790 { lab=OutN2_di}
+N 300 750 350 750 { lab=VP}
+N 1650 810 1710 810 { lab=VN}
+N 1650 790 1760 790 { lab=OutN3_di}
+N 1650 770 1780 770 { lab=OutP3_di}
+N 1160 750 1350 750 { lab=OutP2_di}
+N 1160 750 1160 770 { lab=OutP2_di}
+N 1170 790 1180 790 { lab=OutN2_di}
+N 1180 770 1180 790 { lab=OutN2_di}
+N 1180 770 1350 770 { lab=OutN2_di}
+N 1280 790 1350 790 { lab=Bias3}
+N 1650 750 1700 750 { lab=VP}
+N 1700 590 1700 750 { lab=VP}
+N 1700 580 1700 590 { lab=VP}
+N 1280 580 1700 580 { lab=VP}
+N 1710 810 1720 810 { lab=VN}
+N 1780 770 1810 770 { lab=OutP3_di}
+N 1760 790 1810 790 { lab=OutN3_di}
+N 1160 790 1170 790 { lab=OutN2_di}
+N 1070 1130 1720 1130 { lab=VN}
+N 2300 810 2360 810 { lab=VN}
+N 2300 790 2410 790 { lab=Out_n}
+N 2300 770 2430 770 { lab=Out_p}
+N 1810 750 2000 750 { lab=OutP3_di}
+N 1810 750 1810 770 { lab=OutP3_di}
+N 1820 790 1830 790 { lab=OutN3_di}
+N 1830 770 1830 790 { lab=OutN3_di}
+N 1830 770 2000 770 { lab=OutN3_di}
+N 1930 790 2000 790 { lab=Bias4}
+N 2300 750 2350 750 { lab=VP}
+N 2350 590 2350 750 { lab=VP}
+N 2350 580 2350 590 { lab=VP}
+N 1930 580 2350 580 { lab=VP}
+N 2360 810 2370 810 { lab=VN}
+N 2430 770 2460 770 { lab=Out_p}
+N 2410 790 2460 790 { lab=Out_n}
+N 1810 790 1820 790 { lab=OutN3_di}
+N 1720 1130 2370 1130 { lab=VN}
+N 1050 580 1280 580 { lab=VP}
+N 1700 580 1930 580 { lab=VP}
+N 2370 810 2370 1130 { lab=VN}
+N 1720 810 1720 1130 { lab=VN}
+N 620 790 700 790 { lab=Bias2}
+N 1070 810 1070 1130 { lab=VN}
+N 370 810 370 1130 { lab=VN}
+N -160 810 10 810 { lab=In_Ref_p}
+N -160 790 10 790 { lab=In_Ref_n}
+C {devices/lab_wire.sym} 380 770 0 1 {name=l32 sig_type=std_logic lab=OutP1_di}
+C {devices/lab_wire.sym} 380 790 0 1 {name=l33 sig_type=std_logic lab=OutN1_di}
+C {devices/ngspice_get_value.sym} 440 710 0 0 {name=r6 node="v(OutP1)"
+descr="v(OutP1)"}
+C {devices/ngspice_get_value.sym} 450 730 0 0 {name=r7 node="v(OutN1)"
+descr="v(OutN1)"}
+C {comp/comp_adv3.sym} 850 780 0 0 {name=xcmp6}
+C {devices/ipin.sym} -160 750 0 0 {name=p1 lab=In_n}
+C {devices/iopin.sym} -170 580 0 1 {name=p2 lab=VP}
+C {devices/opin.sym} 2460 770 0 0 {name=p3 lab=Out_p}
+C {devices/ipin.sym} -160 770 0 0 {name=p4 lab=In_p}
+C {devices/ipin.sym} -50 830 0 0 {name=p7 lab=Bias1}
+C {devices/ipin.sym} 620 790 0 0 {name=p9 lab=Bias2}
+C {devices/iopin.sym} -170 1130 0 1 {name=p10 lab=VN}
+C {devices/opin.sym} 2460 790 0 0 {name=p11 lab=Out_n}
+C {comp/comp_adv3.sym} 1500 780 0 0 {name=xcmp1}
+C {devices/ipin.sym} 1280 790 0 0 {name=p12 lab=Bias3}
+C {comp/comp_adv3.sym} 2150 780 0 0 {name=xcmp2}
+C {devices/ipin.sym} 1930 790 0 0 {name=p13 lab=Bias4}
+C {comp/comp_adv3_di.sym} 160 790 0 0 {name=x1}
+C {devices/ipin.sym} -160 790 0 0 {name=p5 lab=In_Ref_n}
+C {devices/ipin.sym} -160 810 0 0 {name=p6 lab=In_Ref_p}
+C {devices/lab_wire.sym} 1190 750 0 1 {name=l1 sig_type=std_logic lab=OutP2_di}
+C {devices/lab_wire.sym} 1190 770 0 1 {name=l2 sig_type=std_logic lab=OutN2_di}
+C {devices/lab_wire.sym} 1840 750 0 1 {name=l3 sig_type=std_logic lab=OutP3_di}
+C {devices/lab_wire.sym} 1840 770 0 1 {name=l4 sig_type=std_logic lab=OutN3_di}
diff --git a/xschem/comp/comp_amp_di_40db_no_cmm.sym b/xschem/comp/comp_amp_di_40db_no_cmm.sym
new file mode 100644
index 0000000..e7ababc
--- /dev/null
+++ b/xschem/comp/comp_amp_di_40db_no_cmm.sym
@@ -0,0 +1,48 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -121.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -92 0 0 0.2 0.2 {}
+L 4 -130 -80 130 -80 {}
+L 4 -130 80 130 80 {}
+L 4 -130 -80 -130 80 {}
+L 4 130 -80 130 80 {}
+B 5 147.5 -72.5 152.5 -67.5 {name=VP dir=inout }
+L 7 130 -70 150 -70 {}
+T {VP} 125 -74 0 1 0.2 0.2 {}
+B 5 -152.5 -72.5 -147.5 -67.5 {name=In_n dir=in }
+L 4 -150 -70 -130 -70 {}
+T {In_n} -125 -74 0 0 0.2 0.2 {}
+B 5 -152.5 -52.5 -147.5 -47.5 {name=In_p dir=in }
+L 4 -150 -50 -130 -50 {}
+T {In_p} -125 -54 0 0 0.2 0.2 {}
+B 5 147.5 -52.5 152.5 -47.5 {name=Out_p dir=out }
+L 4 130 -50 150 -50 {}
+T {Out_p} 125 -54 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=In_Ref_n dir=in }
+L 4 -150 -30 -130 -30 {}
+T {In_Ref_n} -125 -34 0 0 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=Bias2 dir=in }
+L 4 -150 -10 -130 -10 {}
+T {Bias2} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=Bias4 dir=in }
+L 4 -150 10 -130 10 {}
+T {Bias4} -125 6 0 0 0.2 0.2 {}
+B 5 -152.5 27.5 -147.5 32.5 {name=Bias3 dir=in }
+L 4 -150 30 -130 30 {}
+T {Bias3} -125 26 0 0 0.2 0.2 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=Out_n dir=out }
+L 4 130 -30 150 -30 {}
+T {Out_n} 125 -34 0 1 0.2 0.2 {}
+B 5 -152.5 47.5 -147.5 52.5 {name=In_Ref_p dir=in }
+L 4 -150 50 -130 50 {}
+T {In_Ref_p} -125 46 0 0 0.2 0.2 {}
+B 5 -152.5 67.5 -147.5 72.5 {name=Bias1 dir=in }
+L 4 -150 70 -130 70 {}
+T {Bias1} -125 66 0 0 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=VN dir=inout }
+L 7 130 -10 150 -10 {}
+T {VN} 125 -14 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_casc.pdf b/xschem/comp/comp_casc.pdf
new file mode 100644
index 0000000..6a4e9cc
--- /dev/null
+++ b/xschem/comp/comp_casc.pdf
Binary files differ
diff --git a/xschem/comp/comp_casc.png b/xschem/comp/comp_casc.png
new file mode 100644
index 0000000..c9926b0
--- /dev/null
+++ b/xschem/comp/comp_casc.png
Binary files differ
diff --git a/xschem/comp/comp_casc.sch b/xschem/comp/comp_casc.sch
new file mode 100644
index 0000000..0d7f11e
--- /dev/null
+++ b/xschem/comp/comp_casc.sch
@@ -0,0 +1,540 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {Nom V: 1.4V} 1270 -370 0 0 0.4 0.4 {}
+T {Max V: 0.9V
+Nom V: 0.6V
+Min V: 0.3V
+} 1700 -70 0 0 0.4 0.4 {}
+N 330 -600 710 -600 { lab=VP}
+N 330 -140 330 -100 { lab=VIq}
+N 330 -100 710 -100 { lab=VIq}
+N 710 -140 710 -100 { lab=VIq}
+N 750 -170 830 -170 { lab=Inn}
+N 330 -170 590 -170 { lab=VIq}
+N 180 -170 290 -170 { lab=Inp}
+N 590 -170 710 -170 { lab=VIq}
+N 590 -100 590 -10 { lab=VIq}
+N -270 360 920 360 { lab=VN}
+N 920 360 1000 360 { lab=VN}
+N 590 230 680 230 { lab=VN}
+N 680 230 680 360 { lab=VN}
+N 590 320 680 320 { lab=VN}
+N 590 260 590 290 { lab=#net1}
+N 590 350 590 360 { lab=VN}
+N -270 230 -190 230 { lab=VN}
+N -190 230 -190 360 { lab=VN}
+N -270 320 -190 320 { lab=VN}
+N -270 260 -270 290 { lab=#net2}
+N -270 350 -270 360 { lab=VN}
+N -410 360 -270 360 { lab=VN}
+N -310 230 -310 320 { lab=I_bias1}
+N -310 200 -310 230 { lab=I_bias1}
+N -270 180 -210 180 { lab=I_bias1}
+N -270 180 -270 200 { lab=I_bias1}
+N -310 180 -270 180 { lab=I_bias1}
+N -310 180 -310 200 { lab=I_bias1}
+N 550 180 550 320 { lab=I_bias1}
+N 590 -10 590 200 { lab=VIq}
+N 590 -170 590 -100 { lab=VIq}
+N 370 180 730 180 { lab=I_bias1}
+N 730 180 880 180 { lab=I_bias1}
+N 1000 360 1810 360 { lab=VN}
+N 1810 310 1810 360 { lab=VN}
+N 1810 180 1810 250 { lab=I_bias1}
+N 880 180 1810 180 { lab=I_bias1}
+N 1810 360 1930 360 { lab=VN}
+N 1810 180 1930 180 { lab=I_bias1}
+N 710 -600 900 -600 { lab=VP}
+N 900 -600 920 -600 { lab=VP}
+N 1190 -250 1190 -220 { lab=VM2D}
+N 1190 -280 1190 -250 { lab=VM2D}
+N 710 -280 1190 -280 { lab=VM2D}
+N 1190 -220 1190 -190 { lab=VM2D}
+N 1190 -160 1190 60 { lab=OutP}
+N 1170 90 1170 120 { lab=VN}
+N 1170 120 1190 120 { lab=VN}
+N 1190 120 1190 360 { lab=VN}
+N 1190 -90 1230 -90 { lab=OutP}
+N 1530 -250 1530 -220 { lab=VM1D}
+N 1530 -280 1530 -250 { lab=VM1D}
+N 1530 -220 1530 -190 { lab=VM1D}
+N 1530 -160 1530 60 { lab=OutN}
+N 1510 90 1510 120 { lab=VN}
+N 1510 120 1530 120 { lab=VN}
+N 1530 120 1530 360 { lab=VN}
+N 1530 -90 1570 -90 { lab=OutN}
+N 330 -330 1530 -330 { lab=VM1D}
+N 1530 -330 1530 -280 { lab=VM1D}
+N 1230 -190 1230 -150 { lab=V_ref1}
+N 1230 -150 1570 -150 { lab=V_ref1}
+N 1570 -190 1570 -150 { lab=V_ref1}
+N 1570 -190 1590 -190 { lab=V_ref1}
+N -240 -600 330 -600 { lab=VP}
+N -340 180 -310 180 { lab=I_bias1}
+N 1570 -90 1590 -90 { lab=OutN}
+N -210 180 370 180 { lab=I_bias1}
+N 710 -280 710 -200 { lab=VM2D}
+N 330 -330 330 -200 { lab=VM1D}
+N 710 -430 710 -280 { lab=VM2D}
+N 710 -600 710 -570 { lab=VP}
+N 710 -510 710 -490 { lab=#net3}
+N 710 -460 800 -460 { lab=VP}
+N 800 -600 800 -460 { lab=VP}
+N 710 -540 790 -540 { lab=VP}
+N 790 -540 800 -540 { lab=VP}
+N 330 -600 330 -570 { lab=VP}
+N 330 -510 330 -490 { lab=#net4}
+N 330 -460 420 -460 { lab=VP}
+N 420 -600 420 -460 { lab=VP}
+N 330 -540 410 -540 { lab=VP}
+N 410 -540 420 -540 { lab=VP}
+N 330 -430 330 -330 { lab=VM1D}
+N 670 -540 670 -460 { lab=VM3D}
+N 670 -460 670 -410 { lab=VM3D}
+N 290 -410 670 -410 { lab=VM3D}
+N 290 -460 290 -410 { lab=VM3D}
+N 290 -540 290 -460 { lab=VM3D}
+N -70 -600 -70 -570 { lab=VP}
+N -70 -510 -70 -490 { lab=#net5}
+N -150 -460 -70 -460 { lab=VP}
+N -150 -600 -150 -460 { lab=VP}
+N -140 -540 -70 -540 { lab=VP}
+N -150 -540 -140 -540 { lab=VP}
+N -30 -540 -30 -460 { lab=VM3D}
+N -70 -410 290 -410 { lab=VM3D}
+N -30 -460 -30 -410 { lab=VM3D}
+N -70 -430 -70 -280 { lab=VM3D}
+N 120 -480 120 -410 { lab=VM3D}
+N 120 -600 120 -540 { lab=VP}
+N 920 -600 1830 -600 { lab=VP}
+N -70 -280 -70 -70 { lab=VM3D}
+N -70 -0 -70 360 { lab=VN}
+N -70 -40 -70 -10 { lab=VN}
+N -70 -10 -70 -0 { lab=VN}
+N -190 -40 -110 -40 { lab=cmm_fb}
+N 1490 120 1510 120 { lab=VN}
+N 1490 60 1530 60 { lab=OutN}
+N 1150 60 1190 60 { lab=OutP}
+N 1150 120 1170 120 { lab=VN}
+C {devices/code.sym} 2370 -740 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 830 -550 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 830 -520 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 830 -490 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 830 -460 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 2370 -560 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 310 -170 0 0 {name=M1
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 730 -170 0 1 {name=M2
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 440 -550 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 440 -520 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 440 -490 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 440 -460 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 770 -130 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 770 -100 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 770 -70 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 770 -40 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {devices/ngspice_get_value.sym} 280 -120 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 280 -90 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 280 -60 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 280 -30 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 710 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 440 230 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 440 260 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 440 290 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 440 320 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} -460 230 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} -460 260 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} -460 290 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} -460 320 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 630 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 180 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -340 180 0 0 {name=p2 lab=I_bias1}
+C {devices/ipin.sym} 830 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} -240 -600 2 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -410 360 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 1590 -90 2 1 {name=p6 lab=OutN}
+C {devices/opin.sym} 1230 -90 0 0 {name=p7 lab=OutP}
+C {devices/lab_wire.sym} 1530 -310 0 1 {name=l1 sig_type=std_logic lab=VM1D}
+C {sky130_fd_pr/nfet_01v8.sym} 570 320 0 0 {name=M10
+L=0.5
+W=2
+nf=1 
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 570 230 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -290 320 0 0 {name=M17
+L=0.5
+W=2
+nf=1 
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -290 230 0 0 {name=M18
+L=0.15
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1810 280 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/pfet_01v8.sym} 1210 -190 0 1 {name=M4
+L=0.2
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1190 90 0 0 {name=R3
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1530 90 0 0 {name=R4
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {devices/ngspice_get_value.sym} 1170 -280 0 0 {name=r19 node="v(xcmp1.VM2D)"
+descr="v(xcmp1.VM2D)"}
+C {devices/lab_wire.sym} 1190 -260 0 1 {name=l2 sig_type=std_logic lab=VM2D}
+C {devices/ngspice_get_value.sym} 1170 -330 0 0 {name=r17 node="v(xcmp1.VM1D)"
+descr="v(xcmp1.VM1D)"}
+C {devices/ipin.sym} 1590 -190 0 1 {name=p8 lab=V_ref1
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1550 -190 0 1 {name=M5
+L=0.2
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -190 -40 0 0 {name=p9 lab=cmm_fb}
+C {devices/ngspice_get_value.sym} 1240 70 0 0 {name=r18 node="v(out_p1)"
+descr="v(out_p1)"}
+C {devices/ngspice_get_value.sym} 1240 70 0 0 {name=r20 node="v(out_p1)"
+descr="v(out_p1)"}
+C {devices/ngspice_get_value.sym} 1580 70 0 0 {name=r21 node="v(out_n1)"
+descr="v(out_n1)"}
+C {sky130_fd_pr/pfet_01v8.sym} 310 -540 0 0 {name=M21
+L=0.5
+W=2
+nf=1
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 310 -460 0 0 {name=M22
+L=0.15
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -50 -540 0 1 {name=M23
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -50 -460 0 1 {name=M24
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 120 -510 0 0 {name=C3 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/nfet_01v8.sym} -90 -40 0 0 {name=M3
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} -70 -340 0 1 {name=l3 sig_type=std_logic lab=VM3D}
+C {devices/ngspice_get_value.sym} -70 -290 0 0 {name=r22 node="v(xcmp1.VM3D)"
+descr="v(xcmp1.VM3D)"}
+C {devices/ngspice_get_value.sym} -290 180 0 0 {name=r23 node="v(V_IBias)"
+descr="v(V_IBias)"}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -540 0 0 {name=M6
+L=0.5
+W=2
+nf=1
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -460 0 0 {name=M7
+L=0.15
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1490 90 0 1 {name=R1
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1150 90 0 1 {name=R2
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
diff --git a/xschem/comp/comp_casc.sym b/xschem/comp/comp_casc.sym
new file mode 100644
index 0000000..5841382
--- /dev/null
+++ b/xschem/comp/comp_casc.sym
@@ -0,0 +1,39 @@
+v {xschem version=3.0.0 file_version=1.2}
+G {}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=X1"}
+
+T {@symname} -58.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -62 0 0 0.2 0.2 {}
+L 4 -130 -50 130 -50 {}
+L 4 -130 50 130 50 {}
+L 4 -130 -50 -130 50 {}
+L 4 130 -50 130 50 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=VP dir=inout }
+L 7 130 -40 150 -40 {}
+T {VP} 125 -44 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=cmm_fb dir=in }
+L 4 -150 -40 -130 -40 {}
+T {cmm_fb} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=V_ref1 dir=in }
+L 4 -150 -20 -130 -20 {}
+T {V_ref1} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Inn dir=in }
+L 4 -150 0 -130 0 {}
+T {Inn} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Inp dir=in }
+L 4 -150 20 -130 20 {}
+T {Inp} -125 16 0 0 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=OutP dir=out }
+L 4 130 -20 150 -20 {}
+T {OutP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=OutN dir=out }
+L 4 130 0 150 0 {}
+T {OutN} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=I_bias1 dir=in }
+L 4 -150 40 -130 40 {}
+T {I_bias1} -125 36 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_casc2.pdf b/xschem/comp/comp_casc2.pdf
new file mode 100644
index 0000000..5560c42
--- /dev/null
+++ b/xschem/comp/comp_casc2.pdf
Binary files differ
diff --git a/xschem/comp/comp_casc2.png b/xschem/comp/comp_casc2.png
new file mode 100644
index 0000000..4189a13
--- /dev/null
+++ b/xschem/comp/comp_casc2.png
Binary files differ
diff --git a/xschem/comp/comp_casc2.sch b/xschem/comp/comp_casc2.sch
new file mode 100644
index 0000000..2ac1889
--- /dev/null
+++ b/xschem/comp/comp_casc2.sch
@@ -0,0 +1,709 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {Nom V: 1.4V} 1540 -380 0 0 0.4 0.4 {}
+T {Max V: 0.9V
+Nom V: 0.6V
+Min V: 0.3V
+} 1730 40 0 0 0.4 0.4 {}
+N 330 -600 710 -600 { lab=VP}
+N 330 -140 330 -100 { lab=VIq}
+N 330 -100 710 -100 { lab=VIq}
+N 710 -140 710 -100 { lab=VIq}
+N 750 -170 830 -170 { lab=Inn}
+N 330 -170 590 -170 { lab=VIq}
+N 180 -170 290 -170 { lab=Inp}
+N 590 -170 710 -170 { lab=VIq}
+N 590 -100 590 -10 { lab=VIq}
+N -270 360 920 360 { lab=VN}
+N 920 360 1000 360 { lab=VN}
+N 590 230 680 230 { lab=VN}
+N 680 230 680 360 { lab=VN}
+N 590 320 680 320 { lab=VN}
+N 590 260 590 290 { lab=#net1}
+N 590 350 590 360 { lab=VN}
+N -270 230 -190 230 { lab=VN}
+N -190 230 -190 360 { lab=VN}
+N -270 320 -190 320 { lab=VN}
+N -270 260 -270 290 { lab=#net2}
+N -270 350 -270 360 { lab=VN}
+N -410 360 -270 360 { lab=VN}
+N -310 230 -310 320 { lab=I_bias1}
+N -310 200 -310 230 { lab=I_bias1}
+N -270 180 -210 180 { lab=I_bias1}
+N -270 180 -270 200 { lab=I_bias1}
+N -310 180 -270 180 { lab=I_bias1}
+N -310 180 -310 200 { lab=I_bias1}
+N 550 180 550 320 { lab=I_bias1}
+N 590 -10 590 200 { lab=VIq}
+N 590 -170 590 -100 { lab=VIq}
+N 370 180 730 180 { lab=I_bias1}
+N 730 180 880 180 { lab=I_bias1}
+N 1000 360 1810 360 { lab=VN}
+N 1810 310 1810 360 { lab=VN}
+N 1810 180 1810 250 { lab=I_bias1}
+N 880 180 1810 180 { lab=I_bias1}
+N 1810 360 1930 360 { lab=VN}
+N 1810 180 1930 180 { lab=I_bias1}
+N 710 -600 900 -600 { lab=VP}
+N 900 -600 920 -600 { lab=VP}
+N 1190 -250 1190 -220 { lab=VM2D}
+N 1190 -280 1190 -250 { lab=VM2D}
+N 710 -280 1190 -280 { lab=VM2D}
+N 1190 -220 1190 -190 { lab=VM2D}
+N 1190 -160 1190 60 { lab=#net3}
+N 1190 120 1190 360 { lab=VN}
+N 1530 -250 1530 -220 { lab=VM1D}
+N 1530 -280 1530 -250 { lab=VM1D}
+N 1530 -220 1530 -190 { lab=VM1D}
+N 1530 -160 1530 60 { lab=#net4}
+N 1510 90 1510 120 { lab=VN}
+N 1510 120 1530 120 { lab=VN}
+N 1530 120 1530 360 { lab=VN}
+N 330 -330 1530 -330 { lab=VM1D}
+N 1530 -330 1530 -280 { lab=VM1D}
+N 1230 -190 1230 -150 { lab=V_ref1}
+N 1230 -150 1570 -150 { lab=V_ref1}
+N 1570 -190 1570 -150 { lab=V_ref1}
+N 1570 -190 1590 -190 { lab=V_ref1}
+N -240 -600 330 -600 { lab=VP}
+N -340 180 -310 180 { lab=I_bias1}
+N -210 180 370 180 { lab=I_bias1}
+N 710 -280 710 -200 { lab=VM2D}
+N 330 -330 330 -200 { lab=VM1D}
+N 710 -430 710 -280 { lab=VM2D}
+N 710 -600 710 -570 { lab=VP}
+N 710 -510 710 -490 { lab=#net5}
+N 710 -460 800 -460 { lab=VP}
+N 800 -600 800 -460 { lab=VP}
+N 710 -540 790 -540 { lab=VP}
+N 790 -540 800 -540 { lab=VP}
+N 330 -600 330 -570 { lab=VP}
+N 330 -510 330 -490 { lab=#net6}
+N 330 -460 420 -460 { lab=VP}
+N 420 -600 420 -460 { lab=VP}
+N 330 -540 410 -540 { lab=VP}
+N 410 -540 420 -540 { lab=VP}
+N 330 -430 330 -330 { lab=VM1D}
+N 670 -540 670 -460 { lab=VM3D}
+N 670 -460 670 -410 { lab=VM3D}
+N 290 -410 670 -410 { lab=VM3D}
+N 290 -460 290 -410 { lab=VM3D}
+N 290 -540 290 -460 { lab=VM3D}
+N -70 -600 -70 -570 { lab=VP}
+N -70 -510 -70 -490 { lab=#net7}
+N -150 -460 -70 -460 { lab=VP}
+N -150 -600 -150 -460 { lab=VP}
+N -140 -540 -70 -540 { lab=VP}
+N -150 -540 -140 -540 { lab=VP}
+N -30 -540 -30 -460 { lab=VM3D}
+N -70 -410 290 -410 { lab=VM3D}
+N -30 -460 -30 -410 { lab=VM3D}
+N -70 -430 -70 -280 { lab=VM3D}
+N 120 -480 120 -410 { lab=VM3D}
+N 120 -600 120 -540 { lab=VP}
+N -70 -280 -70 -70 { lab=VM3D}
+N -70 -0 -70 360 { lab=VN}
+N -70 -40 -70 -10 { lab=VN}
+N -70 -10 -70 -0 { lab=VN}
+N -190 -40 -110 -40 { lab=cmm_fb}
+N 1190 120 1210 120 { lab=VN}
+N 1210 90 1210 120 { lab=VN}
+N 1450 60 1450 360 { lab=VN}
+N 1270 60 1270 360 { lab=VN}
+N 1190 30 1230 30 { lab=#net3}
+N 1270 -80 1270 0 { lab=OutP}
+N 1270 -80 1290 -80 { lab=OutP}
+N 1270 -380 1270 -80 { lab=OutP}
+N 1450 -80 1570 -80 { lab=OutN}
+N 1450 -80 1450 -0 { lab=OutN}
+N 1450 -380 1450 -80 { lab=OutN}
+N 1490 30 1530 30 { lab=#net4}
+N 970 230 1050 230 { lab=VN}
+N 1050 230 1050 360 { lab=VN}
+N 970 320 1050 320 { lab=VN}
+N 970 260 970 290 { lab=#net8}
+N 970 350 970 360 { lab=VN}
+N 930 230 930 320 { lab=I_bias1}
+N 930 200 930 230 { lab=I_bias1}
+N 930 180 930 200 { lab=I_bias1}
+N 970 -600 970 -570 { lab=VP}
+N 970 -510 970 -490 { lab=#net9}
+N 890 -460 970 -460 { lab=VP}
+N 890 -600 890 -460 { lab=VP}
+N 900 -540 970 -540 { lab=VP}
+N 890 -540 900 -540 { lab=VP}
+N 1010 -540 1010 -460 { lab=#net10}
+N 1010 -460 1010 -410 { lab=#net10}
+N 970 -410 970 200 { lab=#net10}
+N 970 -430 970 -410 { lab=#net10}
+N 1270 -600 1270 -570 { lab=VP}
+N 1270 -510 1270 -490 { lab=#net11}
+N 1190 -460 1270 -460 { lab=VP}
+N 1190 -600 1190 -460 { lab=VP}
+N 1200 -540 1270 -540 { lab=VP}
+N 1190 -540 1200 -540 { lab=VP}
+N 1310 -540 1310 -460 { lab=#net10}
+N 1310 -460 1310 -410 { lab=#net10}
+N 920 -600 1470 -600 { lab=VP}
+N 1450 -600 1450 -570 { lab=VP}
+N 1450 -510 1450 -490 { lab=#net12}
+N 1450 -460 1530 -460 { lab=VP}
+N 1530 -600 1530 -460 { lab=VP}
+N 1450 -540 1520 -540 { lab=VP}
+N 1520 -540 1530 -540 { lab=VP}
+N 1410 -540 1410 -460 { lab=#net10}
+N 1410 -460 1410 -410 { lab=#net10}
+N 1470 -600 1530 -600 { lab=VP}
+N 970 -410 1410 -410 { lab=#net10}
+N 1270 -430 1270 -380 { lab=OutP}
+N 1450 -430 1450 -380 { lab=OutN}
+C {devices/code.sym} 2370 -740 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/ngspice_get_value.sym} 830 -550 0 0 {name=r9 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M5 gm"}
+C {devices/ngspice_get_value.sym} 830 -520 0 0 {name=r10 node="@m.x7.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M5 gds"}
+C {devices/ngspice_get_value.sym} 830 -490 0 0 {name=r11 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M5 cgs"}
+C {devices/ngspice_get_value.sym} 830 -460 0 0 {name=r12 node="@m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M5 cdg"}
+C {devices/code.sym} 2370 -560 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 310 -170 0 0 {name=M1
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 730 -170 0 1 {name=M2
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 440 -550 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 440 -520 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 440 -490 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 440 -460 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/ngspice_get_value.sym} 770 -130 0 0 {name=r37 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 770 -100 0 0 {name=r38 node="@m.x7.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 770 -70 0 0 {name=r39 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 770 -40 0 0 {name=r40 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {devices/ngspice_get_value.sym} 280 -120 0 1 {name=r1 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 280 -90 0 1 {name=r2 node="@m.x7.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 280 -60 0 1 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 280 -30 0 1 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/lab_wire.sym} 710 -100 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 440 230 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 440 260 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 440 290 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 440 320 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} -460 230 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} -460 260 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} -460 290 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} -460 320 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 630 -100 0 0 {name=r24 node="v(xcmp1.VIq)"
+descr="v(xcmp1.VIq)"}
+C {devices/ipin.sym} 180 -170 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -340 180 0 0 {name=p2 lab=I_bias1}
+C {devices/ipin.sym} 830 -170 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} -240 -600 2 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -410 360 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 1570 -80 2 1 {name=p6 lab=OutN}
+C {devices/opin.sym} 1290 -80 0 0 {name=p7 lab=OutP}
+C {devices/lab_wire.sym} 1530 -310 0 1 {name=l1 sig_type=std_logic lab=VM1D}
+C {sky130_fd_pr/nfet_01v8.sym} 570 320 0 0 {name=M10
+L=0.5
+W=2
+nf=1 
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 570 230 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -290 320 0 0 {name=M17
+L=0.5
+W=2
+nf=1 
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -290 230 0 0 {name=M18
+L=0.15
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1810 280 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/pfet_01v8.sym} 1210 -190 0 1 {name=M4
+L=0.2
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1190 90 0 1 {name=R3
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1530 90 0 0 {name=R4
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {devices/ngspice_get_value.sym} 1170 -280 0 0 {name=r19 node="v(xcmp1.VM2D)"
+descr="v(xcmp1.VM2D)"}
+C {devices/lab_wire.sym} 1190 -260 0 1 {name=l2 sig_type=std_logic lab=VM2D}
+C {devices/ngspice_get_value.sym} 1170 -330 0 0 {name=r17 node="v(xcmp1.VM1D)"
+descr="v(xcmp1.VM1D)"}
+C {devices/ipin.sym} 1590 -190 0 1 {name=p8 lab=V_ref1
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1550 -190 0 1 {name=M5
+L=0.2
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -190 -40 0 0 {name=p9 lab=cmm_fb}
+C {devices/ngspice_get_value.sym} 1190 50 0 1 {name=r18 node="v(out_p1)"
+descr="v(out_p1)"}
+C {devices/ngspice_get_value.sym} 1530 50 0 0 {name=r21 node="v(out_n1)"
+descr="v(out_n1)"}
+C {sky130_fd_pr/pfet_01v8.sym} 310 -540 0 0 {name=M21
+L=0.5
+W=2
+nf=1
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 310 -460 0 0 {name=M22
+L=0.15
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -50 -540 0 1 {name=M23
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -50 -460 0 1 {name=M24
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 120 -510 0 0 {name=C3 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/nfet_01v8.sym} -90 -40 0 0 {name=M3
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} -70 -340 0 1 {name=l3 sig_type=std_logic lab=VM3D}
+C {devices/ngspice_get_value.sym} -70 -290 0 0 {name=r22 node="v(xcmp1.VM3D)"
+descr="v(xcmp1.VM3D)"}
+C {devices/ngspice_get_value.sym} -290 180 0 0 {name=r23 node="v(V_IBias)"
+descr="v(V_IBias)"}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -540 0 0 {name=M6
+L=0.5
+W=2
+nf=1
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 690 -460 0 0 {name=M7
+L=0.15
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1250 30 0 0 {name=M8
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1470 30 0 1 {name=M9
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 950 320 0 0 {name=M11
+L=0.5
+W=2
+nf=1 
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 950 230 0 0 {name=M13
+L=0.15
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 790 170 0 0 {name=r20 node="v(V_IBias)"
+descr="v(V_IBias)"}
+C {sky130_fd_pr/pfet_01v8.sym} 990 -540 0 1 {name=M14
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 990 -460 0 1 {name=M15
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1290 -540 0 1 {name=M16
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1290 -460 0 1 {name=M19
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1430 -540 0 0 {name=M20
+L=0.5
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1430 -460 0 0 {name=M25
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_casc_p.pdf b/xschem/comp/comp_casc_p.pdf
new file mode 100644
index 0000000..2f151a7
--- /dev/null
+++ b/xschem/comp/comp_casc_p.pdf
Binary files differ
diff --git a/xschem/comp/comp_casc_p.png b/xschem/comp/comp_casc_p.png
new file mode 100644
index 0000000..dce94cb
--- /dev/null
+++ b/xschem/comp/comp_casc_p.png
Binary files differ
diff --git a/xschem/comp/comp_casc_p.sch b/xschem/comp/comp_casc_p.sch
new file mode 100644
index 0000000..033d941
--- /dev/null
+++ b/xschem/comp/comp_casc_p.sch
@@ -0,0 +1,553 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {Nom V: 1.4V} 700 -20 0 0 0.4 0.4 {}
+T {Max V: 0.9V
+Nom V: 0.6V
+Min V: 0.3V
+} 1380 -370 0 0 0.4 0.4 {}
+N 680 -220 710 -220 { lab=Inn}
+N 330 -220 370 -220 { lab=Inp}
+N 410 -190 410 -10 { lab=VM3D}
+N 410 230 500 230 { lab=VN}
+N 500 230 500 360 { lab=VN}
+N 410 320 500 320 { lab=VN}
+N 410 260 410 290 { lab=#net1}
+N 410 350 410 360 { lab=VN}
+N -300 230 -220 230 { lab=VN}
+N -220 230 -220 360 { lab=VN}
+N -300 320 -220 320 { lab=VN}
+N -300 260 -300 290 { lab=#net2}
+N -300 350 -300 360 { lab=VN}
+N -410 360 -300 360 { lab=VN}
+N -340 230 -340 320 { lab=VM4D}
+N -340 200 -340 230 { lab=VM4D}
+N -300 180 -240 180 { lab=VM4D}
+N -300 180 -300 200 { lab=VM4D}
+N -340 180 -300 180 { lab=VM4D}
+N -340 180 -340 200 { lab=VM4D}
+N 370 180 370 320 { lab=VM4D}
+N 410 -10 410 200 { lab=VM3D}
+N 450 180 660 180 { lab=VM4D}
+N 810 310 810 360 { lab=VN}
+N 810 180 810 250 { lab=VM4D}
+N 1000 -250 1000 -220 { lab=OutP}
+N 1000 -280 1000 -250 { lab=OutP}
+N 1370 -250 1370 -220 { lab=OutN}
+N 1370 -280 1370 -250 { lab=OutN}
+N 1370 -220 1370 -190 { lab=OutN}
+N 1370 -330 1370 -280 { lab=OutN}
+N -340 -600 520 -600 { lab=VP}
+N -240 180 450 180 { lab=VM4D}
+N 520 -600 520 -570 { lab=VP}
+N 520 -510 520 -490 { lab=#net3}
+N 520 -460 610 -460 { lab=VP}
+N 610 -600 610 -460 { lab=VP}
+N 520 -540 600 -540 { lab=VP}
+N 600 -540 610 -540 { lab=VP}
+N 480 -460 480 -410 { lab=I_bias2}
+N 480 -540 480 -460 { lab=I_bias2}
+N -140 -600 -140 -570 { lab=VP}
+N -140 -510 -140 -490 { lab=#net4}
+N -220 -460 -140 -460 { lab=VP}
+N -220 -600 -220 -460 { lab=VP}
+N -210 -540 -140 -540 { lab=VP}
+N -220 -540 -210 -540 { lab=VP}
+N -100 -540 -100 -460 { lab=I_bias2}
+N -140 -410 480 -410 { lab=I_bias2}
+N -100 -460 -100 -410 { lab=I_bias2}
+N -180 -350 -140 -350 { lab=I_bias2}
+N -140 -430 -140 -350 { lab=I_bias2}
+N 330 -480 330 -410 { lab=I_bias2}
+N 330 -600 330 -540 { lab=VP}
+N 640 -190 640 -10 { lab=VM6D}
+N 640 230 730 230 { lab=VN}
+N 730 230 730 360 { lab=VN}
+N 640 320 730 320 { lab=VN}
+N 640 260 640 290 { lab=#net5}
+N 640 350 640 360 { lab=VN}
+N 600 180 600 320 { lab=VM4D}
+N 640 -10 640 200 { lab=VM6D}
+N 410 -320 410 -250 { lab=VIq}
+N 410 -320 520 -320 { lab=VIq}
+N 520 -430 520 -320 { lab=VIq}
+N 520 -320 640 -320 { lab=VIq}
+N 640 -320 640 -250 { lab=VIq}
+N 550 -220 640 -220 { lab=VIq}
+N 550 -320 550 -220 { lab=VIq}
+N 410 -220 490 -220 { lab=VIq}
+N 490 -320 490 -220 { lab=VIq}
+N -300 -230 -300 180 { lab=VM4D}
+N -300 -290 -300 -260 { lab=VP}
+N -300 -600 -300 -290 { lab=VP}
+N -380 -260 -340 -260 { lab=cmm_fb}
+N 410 20 1000 20 { lab=VM3D}
+N 1000 -70 1000 20 { lab=VM3D}
+N 1000 -460 1000 -280 { lab=OutP}
+N 1000 -100 1000 -70 { lab=VM3D}
+N 1370 -100 1370 -70 { lab=VM6D}
+N 640 70 1370 70 { lab=VM6D}
+N 1370 -70 1370 70 { lab=VM6D}
+N 1370 -190 1370 -130 { lab=OutN}
+N 930 -190 960 -190 { lab=V_ref1}
+N 960 -190 960 -100 { lab=V_ref1}
+N 960 -190 1330 -190 { lab=V_ref1}
+N 1330 -190 1330 -100 { lab=V_ref1}
+N 1000 -220 1000 -130 { lab=OutP}
+N 1000 -240 1030 -240 { lab=OutP}
+N 1370 -240 1410 -240 { lab=OutN}
+N 1370 -460 1370 -330 { lab=OutN}
+N -300 360 1130 360 { lab=VN}
+N 1370 -600 1370 -520 { lab=VP}
+N 1000 -600 1000 -520 { lab=VP}
+N 520 -600 1370 -600 { lab=VP}
+N 660 180 810 180 { lab=VM4D}
+N 10 -600 10 -570 { lab=VP}
+N 10 -510 10 -490 { lab=#net6}
+N -70 -460 10 -460 { lab=VP}
+N -70 -600 -70 -460 { lab=VP}
+N -60 -540 10 -540 { lab=VP}
+N -70 -540 -60 -540 { lab=VP}
+N 50 -540 50 -460 { lab=I_bias2}
+N 50 -460 50 -410 { lab=I_bias2}
+N 10 -430 10 180 { lab=VM4D}
+N 1130 -350 1130 360 { lab=VN}
+N 1000 -460 1050 -460 { lab=OutP}
+N 1000 -520 1050 -520 { lab=VP}
+N 1320 -520 1370 -520 { lab=VP}
+N 1320 -460 1370 -460 { lab=OutN}
+N 1020 -490 1030 -490 { lab=VN}
+N 1030 -490 1030 -410 { lab=VN}
+N 1030 -410 1340 -410 { lab=VN}
+N 1340 -490 1340 -410 { lab=VN}
+N 1340 -490 1350 -490 { lab=VN}
+N 1130 -410 1130 -350 { lab=VN}
+C {devices/code.sym} 1840 -280 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/code.sym} 1840 -100 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm3.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm5.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm8.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save v(Voutp)
+save v(Voutn)
+save v(VIa)
+save v(VIq)
+
+save v(Vinn)
+save v(Vinp)
+save v(VM8G)
+
+op
+write comp.raw
+run
+*reset
+*noise v(vm1d) I1 dec 100 1 10G
+*print all
+*setplot noise2
+*write noise2.raw
+*run
+reset
+ac dec 10 1 1T
+plot vdb(Voutp) vdb(Voutn) 
+plot phase(Voutp)/pi*180 phase(Voutn)/pi*180 
+run
+reset
+tran 1ps 10ns
+plot v(Vinp) v(Voutn) v(Voutp)
+run
+.endc 
+"}
+C {devices/ngspice_get_value.sym} 630 -550 0 0 {name=r33 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 630 -520 0 0 {name=r34 node="@m.x7.xm6.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 630 -490 0 0 {name=r35 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 630 -460 0 0 {name=r36 node="@m.xm6.msky130_fd_pr__pfet_01v8_lvt[cdg]"
+descr="M6 cdg"}
+C {devices/lab_wire.sym} 600 -320 0 1 {name=l7 sig_type=std_logic lab=VIq}
+C {devices/ngspice_get_value.sym} 260 230 0 0 {name=r5 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M9 gm" }
+C {devices/ngspice_get_value.sym} 260 260 0 0 {name=r6 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M9 gds"}
+C {devices/ngspice_get_value.sym} 260 290 0 0 {name=r7 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M9 cgs"}
+C {devices/ngspice_get_value.sym} 260 320 0 0 {name=r8 node="@m.xm9.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M9 cdg"}
+C {devices/ngspice_get_value.sym} -460 230 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} -460 260 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} -460 290 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} -460 320 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M7 cdg"}
+C {devices/ngspice_get_value.sym} 580 -340 0 0 {name=r24 node="v(xcmp_p1.VIq)"
+descr="v(xcmp_p1.VIq)"}
+C {devices/ipin.sym} 330 -220 0 0 {name=p1 lab=Inp}
+C {devices/ipin.sym} -380 -260 0 0 {name=p2 lab=cmm_fb}
+C {devices/ipin.sym} 710 -220 0 1 {name=p3 lab=Inn}
+C {devices/iopin.sym} -340 -600 2 0 {name=p4 lab=VP}
+C {devices/iopin.sym} -410 360 2 0 {name=p5 lab=VN}
+C {devices/opin.sym} 1410 -240 2 1 {name=p6 lab=OutN}
+C {devices/opin.sym} 1030 -240 0 0 {name=p7 lab=OutP}
+C {sky130_fd_pr/nfet_01v8.sym} 390 320 0 0 {name=M10
+L=0.5
+W=2
+nf=1 
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 390 230 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -320 320 0 0 {name=M17
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -320 230 0 0 {name=M18
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 810 280 0 0 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1000 -490 0 1 {name=R3
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1370 -490 0 0 {name=R4
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {devices/ngspice_get_value.sym} 840 -290 0 0 {name=r19 node="v(xcmp1.VM2D)"
+descr="v(xcmp1.VM2D)"}
+C {devices/ngspice_get_value.sym} 840 -340 0 0 {name=r17 node="v(xcmp1.VM1D)"
+descr="v(xcmp1.VM1D)"}
+C {devices/ipin.sym} 930 -190 0 0 {name=p8 lab=V_ref1
+}
+C {devices/ipin.sym} -180 -350 0 0 {name=p9 lab=I_bias2}
+C {devices/ngspice_get_value.sym} 1560 -470 0 0 {name=r18 node="v(out_p1)"
+descr="v(out_p1)"}
+C {devices/ngspice_get_value.sym} 860 -400 0 0 {name=r20 node="v(out_p1)"
+descr="v(out_p1)"}
+C {devices/ngspice_get_value.sym} 1440 -540 0 0 {name=r21 node="v(out_n1)"
+descr="v(out_n1)"}
+C {sky130_fd_pr/pfet_01v8.sym} 500 -540 0 0 {name=M21
+L=0.5
+W=2
+nf=1
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 500 -460 0 0 {name=M22
+L=0.15
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -120 -540 0 1 {name=M23
+L=0.5
+W=2
+nf=1
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -120 -460 0 1 {name=M24
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 330 -510 0 0 {name=C3 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/nfet_01v8.sym} 980 -100 0 0 {name=M2
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -320 -260 0 0 {name=M4
+L=0.2
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1350 -100 0 0 {name=M7
+L=0.2
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 410 -80 0 1 {name=l1 sig_type=std_logic lab=VM3D}
+C {devices/lab_wire.sym} 640 -80 0 1 {name=l2 sig_type=std_logic lab=VM6D}
+C {devices/ngspice_get_value.sym} 410 -40 0 0 {name=r1 node="v(xcmp_p1.VM3D)"
+descr="v(xcmp_p1.VM3D)"}
+C {devices/ngspice_get_value.sym} 640 -40 0 0 {name=r2 node="v(xcmp_p1.VM6D)"
+descr="v(xcmp_p1.VM6D)"}
+C {devices/lab_wire.sym} -300 -70 0 1 {name=l3 sig_type=std_logic lab=VM4D}
+C {devices/ngspice_get_value.sym} -300 -30 0 0 {name=r3 node="v(xcmp_p1.VM4D)"
+descr="v(xcmp_p1.VM4D)"}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 390 -220 0 0 {name=M11
+L=0.35
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 660 -220 0 1 {name=M3
+L=0.35
+W=2
+nf=1
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 620 230 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 620 320 0 0 {name=M5
+L=0.5
+W=2
+nf=1 
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} -140 -350 0 0 {name=r4 node="v(xcmp_p1.VM24D)"
+descr="v(xcmp_p1.VM24D)"}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1050 -490 0 0 {name=R1
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_high_po_0p35.sym} 1320 -490 0 1 {name=R2
+W=0.35
+L=2
+model=res_high_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/pfet_01v8.sym} 30 -540 0 1 {name=M6
+L=0.5
+W=2
+nf=1
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 30 -460 0 1 {name=M8
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
diff --git a/xschem/comp/comp_casc_p.sym b/xschem/comp/comp_casc_p.sym
new file mode 100644
index 0000000..f5eef25
--- /dev/null
+++ b/xschem/comp/comp_casc_p.sym
@@ -0,0 +1,39 @@
+v {xschem version=3.0.0 file_version=1.2}
+G {}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=X1"}
+
+T {@symname} -67.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -62 0 0 0.2 0.2 {}
+L 4 -130 -50 130 -50 {}
+L 4 -130 50 130 50 {}
+L 4 -130 -50 -130 50 {}
+L 4 130 -50 130 50 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=VP dir=inout }
+L 7 130 -40 150 -40 {}
+T {VP} 125 -44 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=I_bias2 dir=in }
+L 4 -150 -40 -130 -40 {}
+T {I_bias2} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=cmm_fb dir=in }
+L 4 -150 -20 -130 -20 {}
+T {cmm_fb} -125 -24 0 0 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=OutP dir=out }
+L 4 130 -20 150 -20 {}
+T {OutP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=OutN dir=out }
+L 4 130 0 150 0 {}
+T {OutN} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Inn dir=in }
+L 4 -150 0 -130 0 {}
+T {Inn} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Inp dir=in }
+L 4 -150 20 -130 20 {}
+T {Inp} -125 16 0 0 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=V_ref1 dir=in }
+L 4 -150 40 -130 40 {}
+T {V_ref1} -125 36 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comp_complete.pdf b/xschem/comp/comp_complete.pdf
new file mode 100644
index 0000000..cdb960f
--- /dev/null
+++ b/xschem/comp/comp_complete.pdf
Binary files differ
diff --git a/xschem/comp/comp_complete.png b/xschem/comp/comp_complete.png
new file mode 100644
index 0000000..e865c3b
--- /dev/null
+++ b/xschem/comp/comp_complete.png
Binary files differ
diff --git a/xschem/comp/comp_to_logic.pdf b/xschem/comp/comp_to_logic.pdf
new file mode 100644
index 0000000..61235b1
--- /dev/null
+++ b/xschem/comp/comp_to_logic.pdf
Binary files differ
diff --git a/xschem/comp/comp_to_logic.png b/xschem/comp/comp_to_logic.png
new file mode 100644
index 0000000..c6c1276
--- /dev/null
+++ b/xschem/comp/comp_to_logic.png
Binary files differ
diff --git a/xschem/comp/comp_to_logic.sch b/xschem/comp/comp_to_logic.sch
new file mode 100644
index 0000000..34a4ec6
--- /dev/null
+++ b/xschem/comp/comp_to_logic.sch
@@ -0,0 +1,428 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {64uA} -480 50 0 0 0.2 0.2 {}
+T {needed delta approx. 100mV} 400 50 0 0 0.2 0.2 {}
+T {current consumption ~2mA} 400 70 0 0 0.2 0.2 {}
+T {dummy} -330 90 0 0 0.3 0.3 {}
+N 240 0 240 30 { lab=VM4D}
+N 240 30 480 30 { lab=VM4D}
+N 480 0 480 30 { lab=VM4D}
+N -580 280 380 280 { lab=VN}
+N 380 -30 380 280 { lab=VN}
+N 380 -30 480 -30 { lab=VN}
+N 240 -30 380 -30 { lab=VN}
+N 270 260 270 280 { lab=VN}
+N 270 180 270 200 { lab=VN}
+N 270 30 270 120 { lab=VM4D}
+N 230 150 230 230 { lab=I_Bias}
+N -520 230 -440 230 { lab=VN}
+N -520 230 -520 280 { lab=VN}
+N -520 150 -440 150 { lab=VN}
+N -520 150 -520 230 { lab=VN}
+N -440 260 -440 280 { lab=VN}
+N -440 180 -440 200 { lab=VN}
+N -440 120 -400 120 { lab=I_Bias}
+N -400 120 -400 150 { lab=I_Bias}
+N -400 150 -400 230 { lab=I_Bias}
+N -440 80 -440 120 { lab=I_Bias}
+N 270 230 350 230 { lab=VN}
+N 350 230 350 280 { lab=VN}
+N 270 150 350 150 { lab=VN}
+N 350 150 350 230 { lab=VN}
+N 200 -200 240 -200 { lab=VM1D}
+N 200 -230 200 -200 { lab=VM1D}
+N -70 -390 480 -390 { lab=VP}
+N 240 -230 310 -230 { lab=VP}
+N 310 -390 310 -230 { lab=VP}
+N 410 -230 480 -230 { lab=VP}
+N 410 -390 410 -230 { lab=VP}
+N 480 -200 520 -200 { lab=VM6D}
+N 520 -230 520 -200 { lab=VM6D}
+N 480 -200 480 -60 { lab=VM6D}
+N 240 -200 240 -60 { lab=VM1D}
+N 520 -30 550 -30 { lab=In_p}
+N 170 -30 200 -30 { lab=In_n}
+N 480 -280 480 -260 { lab=VP}
+N 480 -390 480 -340 { lab=VP}
+N 520 -310 520 -230 { lab=VM6D}
+N 240 -310 310 -310 { lab=VP}
+N 240 -390 240 -340 { lab=VP}
+N 240 -280 240 -260 { lab=VP}
+N 200 -310 200 -230 { lab=VM1D}
+N 410 -310 480 -310 { lab=VP}
+N 240 -340 240 -330 { lab=VP}
+N 980 -230 1060 -230 { lab=VP}
+N 980 -390 980 -230 { lab=VP}
+N 480 -390 980 -390 { lab=VP}
+N 980 -390 1060 -390 { lab=VP}
+N 1210 -230 1290 -230 { lab=VP}
+N 1290 -390 1290 -230 { lab=VP}
+N 1060 -390 1290 -390 { lab=VP}
+N 380 280 1280 280 { lab=VN}
+N 1060 -200 1060 130 { lab=VM11D}
+N 1060 240 1060 280 { lab=VN}
+N 1060 210 1060 240 { lab=VN}
+N 1060 130 1060 180 { lab=VM11D}
+N 1210 -200 1210 180 { lab=VM12D}
+N 1100 170 1100 210 { lab=VM11D}
+N 1060 170 1100 170 { lab=VM11D}
+N 1170 170 1170 210 { lab=VM11D}
+N 1210 210 1210 240 { lab=VN}
+N 1210 240 1210 280 { lab=VN}
+N 1100 170 1170 170 { lab=VM11D}
+N 1100 -230 1100 -170 { lab=VM1D}
+N 240 -170 1100 -170 { lab=VM1D}
+N 1170 -230 1170 -150 { lab=VM6D}
+N 480 -150 1170 -150 { lab=VM6D}
+N 1290 -390 1430 -390 { lab=VP}
+N 1430 -390 1430 -260 { lab=VP}
+N 1430 -260 1430 -230 { lab=VP}
+N 1280 280 1430 280 { lab=VN}
+N 1430 170 1430 280 { lab=VN}
+N 1430 140 1430 170 { lab=VN}
+N 1430 -200 1430 110 { lab=VM17D}
+N 1390 -230 1390 140 { lab=VM12D}
+N 1210 -40 1390 -40 { lab=VM12D}
+N 1570 -260 1570 -230 { lab=VP}
+N 1570 140 1570 170 { lab=VN}
+N 1570 -200 1570 110 { lab=VM13D}
+N 1530 -230 1530 140 { lab=VM17D}
+N 1430 280 1570 280 { lab=VN}
+N 1570 170 1570 280 { lab=VN}
+N 1570 -390 1570 -260 { lab=VP}
+N 1430 -390 1570 -390 { lab=VP}
+N 580 -260 580 -230 { lab=VP}
+N 580 -390 580 -260 { lab=VP}
+N 520 -230 540 -230 { lab=VM6D}
+N 140 -260 140 -230 { lab=VP}
+N 140 -390 140 -260 { lab=VP}
+N 180 -230 200 -230 { lab=VM1D}
+N 140 -150 480 -150 { lab=VM6D}
+N 1570 -40 1630 -40 { lab=VM13D}
+N 1430 -40 1530 -40 { lab=VM17D}
+N 660 -390 660 -200 { lab=VP}
+N 70 -390 70 -200 { lab=VP}
+N 140 -200 140 -150 { lab=VM6D}
+N 580 -200 580 -170 { lab=VM1D}
+N 230 230 230 300 { lab=I_Bias}
+N -400 300 230 300 { lab=I_Bias}
+N -400 230 -400 300 { lab=I_Bias}
+N -30 -150 140 -150 { lab=VM6D}
+N -270 -170 240 -170 { lab=VM1D}
+N 1100 -320 1100 -230 { lab=VM1D}
+N 1060 -290 1060 -260 { lab=VP}
+N 980 -320 1060 -320 { lab=VP}
+N 1060 -390 1060 -350 { lab=VP}
+N 1170 -320 1170 -230 { lab=VM6D}
+N 1210 -290 1210 -260 { lab=VP}
+N 1210 -320 1290 -320 { lab=VP}
+N 1210 -390 1210 -350 { lab=VP}
+N 240 -330 240 -280 { lab=VP}
+N 480 -340 480 -280 { lab=VP}
+N 1060 -350 1060 -290 { lab=VP}
+N 1210 -350 1210 -290 { lab=VP}
+N 1720 -260 1720 -230 { lab=VP}
+N 1720 140 1720 170 { lab=VN}
+N 1720 -200 1720 110 { lab=Out}
+N 1680 -230 1680 140 { lab=VM13D}
+N 1720 170 1720 280 { lab=VN}
+N 1720 -390 1720 -260 { lab=VP}
+N 1570 280 1720 280 { lab=VN}
+N 1570 -390 1720 -390 { lab=VP}
+N 1630 -40 1680 -40 { lab=VM13D}
+N 1720 -100 1780 -100 { lab=Out}
+N 270 200 270 260 { lab=VN}
+N -440 200 -440 260 { lab=VN}
+N -330 150 -330 280 { lab=VN}
+N -290 150 -210 150 { lab=VN}
+N -210 150 -210 280 { lab=VN}
+N -290 180 -290 280 { lab=VN}
+N -290 120 -210 120 { lab=VN}
+N -210 120 -210 150 { lab=VN}
+C {devices/iopin.sym} -70 -390 2 0 {name=p1 lab=VP}
+C {devices/iopin.sym} -580 280 2 0 {name=p2 lab=VN}
+C {devices/ipin.sym} 550 -30 0 1 {name=p3 lab=In_p}
+C {devices/ipin.sym} 170 -30 0 0 {name=p5 lab=In_n}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 220 -30 0 0 {name=M1
+L=0.15
+W=2	
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 220 -230 0 0 {name=M2
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 250 150 0 0 {name=M4
+L=0.3
+W=2
+nf=1 
+mult=2*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 500 -30 0 1 {name=M6
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ipin.sym} -440 80 0 0 {name=p6 lab=I_Bias}
+C {sky130_fd_pr/nfet_01v8.sym} -420 150 0 1 {name=M7
+L=0.3
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 500 -230 0 1 {name=M3
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1080 -230 0 1 {name=M8
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1190 -230 0 0 {name=M9
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1080 210 0 1 {name=M11
+L=0.15
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1190 210 0 0 {name=M12
+L=0.15
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1410 -230 0 0 {name=M14
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1550 -230 0 0 {name=M16
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 240 -90 0 1 {name=l1 sig_type=std_logic lab=VM1D}
+C {devices/lab_wire.sym} 480 -90 0 0 {name=l2 sig_type=std_logic lab=VM6D}
+C {devices/lab_wire.sym} 1060 -50 0 1 {name=l3 sig_type=std_logic lab=VM11D}
+C {devices/lab_wire.sym} 1210 -60 0 1 {name=l4 sig_type=std_logic lab=VM12D}
+C {devices/lab_wire.sym} 1430 -60 0 1 {name=l5 sig_type=std_logic lab=VM17D}
+C {devices/lab_wire.sym} 270 100 0 1 {name=l6 sig_type=std_logic lab=VM4D}
+C {devices/ngspice_get_value.sym} 1210 0 0 0 {name=r1 node="v(xctl1.VM12D)"
+descr="v(xctl1.VM12D)"}
+C {devices/ngspice_get_value.sym} 1430 0 0 0 {name=r2 node="v(xctl1.VM13D)"
+descr="v(xctl1.VM13D)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1550 140 0 0 {name=M13
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1410 140 0 0 {name=M17
+L=0.15
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 160 -230 0 1 {name=M15
+L=0.15
+W=0.5
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 1780 -100 0 0 {name=p7 lab=Out}
+C {sky130_fd_pr/pfet_01v8.sym} 1700 -230 0 0 {name=M19
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1700 140 0 0 {name=M20
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 560 -230 0 0 {name=M5
+L=0.15
+W=0.5
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -310 150 0 0 {name=M10
+L=0.3
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 1570 -60 0 1 {name=l7 sig_type=std_logic lab=VM13D}
diff --git a/xschem/comp/comp_to_logic.sym b/xschem/comp/comp_to_logic.sym
new file mode 100644
index 0000000..a2e96c6
--- /dev/null
+++ b/xschem/comp/comp_to_logic.sym
@@ -0,0 +1,30 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -76.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -42 0 0 0.2 0.2 {}
+L 4 -130 -30 130 -30 {}
+L 4 -130 30 130 30 {}
+L 4 -130 -30 -130 30 {}
+L 4 130 -30 130 30 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VP dir=inout }
+L 7 130 -20 150 -20 {}
+T {VP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=Out dir=out }
+L 4 130 0 150 0 {}
+T {Out} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=In_p dir=in }
+L 4 -150 -20 -130 -20 {}
+T {In_p} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=In_n dir=in }
+L 4 -150 0 -130 0 {}
+T {In_n} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=I_Bias dir=in }
+L 4 -150 20 -130 20 {}
+T {I_Bias} -125 16 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/comparator_complete.sch b/xschem/comp/comparator_complete.sch
new file mode 100644
index 0000000..49d9e07
--- /dev/null
+++ b/xschem/comp/comparator_complete.sch
@@ -0,0 +1,123 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 2350 230 2380 230 { lab=VP}
+N 2380 210 2380 230 { lab=VP}
+N 2350 290 2380 290 { lab=VN}
+N 2380 290 2380 310 { lab=VN}
+N 2350 250 2550 250 { lab=Outp_20db}
+N 2780 270 2800 270 { lab=Outp_20db}
+N 3600 310 3620 310 { lab=VN}
+N 3620 310 3620 330 { lab=VN}
+N 3220 270 3280 270 { lab=Outp}
+N 3280 270 3300 270 { lab=Outp}
+N 3600 290 3720 290 { lab=Digital_out}
+N 2550 250 2570 250 { lab=Outp_20db}
+N 3100 290 3300 290 { lab=Outn}
+N 1630 120 1630 160 { lab=VN}
+N 1660 100 1690 100 { lab=#net1}
+N 1560 100 1600 100 { lab=InRef}
+N 1970 140 1970 230 { lab=#net1}
+N 1970 230 1980 230 { lab=#net1}
+N 1980 270 2050 270 { lab=Bias_comp1}
+N 1980 230 2050 230 { lab=#net1}
+N 1690 100 1970 100 { lab=#net1}
+N 1970 100 1970 140 { lab=#net1}
+N 1560 250 1600 250 { lab=In}
+N 1660 250 2050 250 { lab=#net2}
+N 1820 100 1820 140 { lab=#net1}
+N 1820 200 1820 250 { lab=#net2}
+N 1980 290 2050 290 { lab=Bias_comp2}
+N 2350 270 2480 270 { lab=Outn_20db}
+N 2540 270 2570 270 { lab=#net3}
+N 2570 220 2570 250 { lab=Outp_20db}
+N 2570 210 2630 210 { lab=Outp_20db}
+N 2570 210 2570 220 { lab=Outp_20db}
+N 2570 270 2630 270 { lab=#net3}
+N 2630 210 2770 210 { lab=Outp_20db}
+N 3100 270 3220 270 { lab=Outp}
+N 1540 430 3610 430 { lab=VN}
+N 3620 330 3620 430 { lab=VN}
+N 3610 430 3620 430 { lab=VN}
+N 1550 -50 3620 -50 { lab=VP}
+N 3620 -50 3620 270 { lab=VP}
+N 3600 270 3620 270 { lab=VP}
+N 3100 310 3100 430 { lab=VN}
+N 3100 -50 3100 250 { lab=VP}
+N 2740 290 2800 290 { lab=RefA}
+N 2740 310 2800 310 { lab=Bias_comp4}
+N 2740 330 2800 330 { lab=Bias_comp6}
+N 2740 350 2800 350 { lab=Bias_comp5}
+N 2740 370 2800 370 { lab=RefB}
+N 2740 390 2800 390 { lab=Bias_comp3}
+N 3270 310 3300 310 { lab=Bias_to_logic}
+N 2600 240 2610 240 { lab=VN}
+N 2600 240 2600 430 { lab=VN}
+N 2380 310 2380 430 { lab=VN}
+N 2380 0 2380 210 { lab=VP}
+N 2380 -50 2380 -0 { lab=VP}
+N 1630 160 1630 210 { lab=VN}
+N 1630 210 1680 210 { lab=VN}
+N 1680 210 1680 430 { lab=VN}
+N 1680 190 1680 210 { lab=VN}
+N 1780 170 1800 170 { lab=VN}
+N 1780 170 1780 210 { lab=VN}
+N 1680 210 1780 210 { lab=VN}
+N 1680 100 1680 130 { lab=#net1}
+N 2770 210 2770 270 { lab=Outp_20db}
+N 2770 270 2780 270 { lab=Outp_20db}
+N 2750 250 2790 250 { lab=#net3}
+N 2750 250 2750 270 { lab=#net3}
+N 2630 270 2750 270 { lab=#net3}
+N 2790 250 2800 250 { lab=#net3}
+C {comp/comp_amp_20db_no_cmm.sym} 2200 260 0 0 {name=xamp1}
+C {comp/comp_to_logic.sym} 3450 290 0 0 {name=xl}
+C {devices/lab_wire.sym} 2380 250 0 1 {name=l45 sig_type=std_logic lab=Outp_20db}
+C {devices/lab_wire.sym} 2380 270 0 1 {name=l47 sig_type=std_logic lab=Outn_20db}
+C {devices/lab_wire.sym} 3180 270 0 1 {name=l14 sig_type=std_logic lab=Outp}
+C {devices/lab_wire.sym} 3180 290 0 1 {name=l33 sig_type=std_logic lab=Outn}
+C {devices/ngspice_get_value.sym} 2420 150 0 0 {name=r4 node="v(Outp_20db)"
+descr="v(Outp_20db)"}
+C {devices/ngspice_get_value.sym} 2420 190 0 0 {name=r5 node="v(Outn_20db)"
+descr="v(Outn_20db)"}
+C {comp/comp_amp_di_40db_no_cmm.sym} 2950 320 0 0 {name=xamp2}
+C {devices/ngspice_get_value.sym} 2030 120 0 0 {name=r13 node="v(fb_bias_2)"
+descr="v(fb_bias_2)"}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 1630 100 3 0 {name=R6
+W=0.35
+L=40
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 1820 170 2 1 {name=R7
+W=0.35
+L=40
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 2630 240 0 0 {name=R8
+W=0.35
+L=40
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {devices/ipin.sym} 1560 100 0 0 {name=p1 lab=InRef}
+C {devices/iopin.sym} 1550 -50 0 1 {name=p2 lab=VP}
+C {devices/opin.sym} 3720 290 0 0 {name=p3 lab=Digital_out}
+C {devices/ipin.sym} 1560 250 0 0 {name=p4 lab=In}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1680 160 2 1 {name=C1 model=cap_mim_m3_2 W=30 L=20 MF=1 spiceprefix=X}
+C {devices/ipin.sym} 1980 270 0 0 {name=p5 lab=Bias_comp1}
+C {devices/ipin.sym} 1980 290 0 0 {name=p6 lab=Bias_comp2}
+C {devices/iopin.sym} 1540 430 0 1 {name=p7 lab=VN}
+C {devices/ipin.sym} 2740 310 0 0 {name=p8 lab=Bias_comp4}
+C {devices/ipin.sym} 2740 330 0 0 {name=p9 lab=Bias_comp6}
+C {devices/ipin.sym} 2740 390 0 0 {name=p10 lab=Bias_comp3}
+C {devices/ipin.sym} 2740 350 0 0 {name=p11 lab=Bias_comp5}
+C {devices/ipin.sym} 2740 290 0 0 {name=p12 lab=RefA}
+C {devices/ipin.sym} 2740 370 0 0 {name=p13 lab=RefB}
+C {devices/ipin.sym} 3270 310 0 0 {name=p14 lab=Bias_to_logic}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 1630 250 1 0 {name=C2 model=cap_mim_m3_1 W=5 L=5 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 2510 270 1 0 {name=C3 model=cap_mim_m3_1 W=5 L=5 MF=1 spiceprefix=X}
diff --git a/xschem/comp/comparator_complete.sym b/xschem/comp/comparator_complete.sym
new file mode 100644
index 0000000..4daaf61
--- /dev/null
+++ b/xschem/comp/comparator_complete.sym
@@ -0,0 +1,54 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -103.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -122 0 0 0.2 0.2 {}
+L 4 -130 -110 130 -110 {}
+L 4 -130 110 130 110 {}
+L 4 -130 -110 -130 110 {}
+L 4 130 -110 130 110 {}
+B 5 147.5 -102.5 152.5 -97.5 {name=VP dir=inout }
+L 7 130 -100 150 -100 {}
+T {VP} 125 -104 0 1 0.2 0.2 {}
+B 5 -152.5 -102.5 -147.5 -97.5 {name=InRef dir=in }
+L 4 -150 -100 -130 -100 {}
+T {InRef} -125 -104 0 0 0.2 0.2 {}
+B 5 -152.5 -82.5 -147.5 -77.5 {name=In dir=in }
+L 4 -150 -80 -130 -80 {}
+T {In} -125 -84 0 0 0.2 0.2 {}
+B 5 -152.5 -62.5 -147.5 -57.5 {name=Bias_comp1 dir=in }
+L 4 -150 -60 -130 -60 {}
+T {Bias_comp1} -125 -64 0 0 0.2 0.2 {}
+B 5 147.5 -82.5 152.5 -77.5 {name=Digital_out dir=out }
+L 4 130 -80 150 -80 {}
+T {Digital_out} 125 -84 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=RefA dir=in }
+L 4 -150 -40 -130 -40 {}
+T {RefA} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=Bias_comp2 dir=in }
+L 4 -150 -20 -130 -20 {}
+T {Bias_comp2} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=Bias_to_logic dir=in }
+L 4 -150 0 -130 0 {}
+T {Bias_to_logic} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=Bias_comp4 dir=in }
+L 4 -150 20 -130 20 {}
+T {Bias_comp4} -125 16 0 0 0.2 0.2 {}
+B 5 -152.5 37.5 -147.5 42.5 {name=Bias_comp6 dir=in }
+L 4 -150 40 -130 40 {}
+T {Bias_comp6} -125 36 0 0 0.2 0.2 {}
+B 5 -152.5 57.5 -147.5 62.5 {name=Bias_comp5 dir=in }
+L 4 -150 60 -130 60 {}
+T {Bias_comp5} -125 56 0 0 0.2 0.2 {}
+B 5 -152.5 77.5 -147.5 82.5 {name=RefB dir=in }
+L 4 -150 80 -130 80 {}
+T {RefB} -125 76 0 0 0.2 0.2 {}
+B 5 -152.5 97.5 -147.5 102.5 {name=Bias_comp3 dir=in }
+L 4 -150 100 -130 100 {}
+T {Bias_comp3} -125 96 0 0 0.2 0.2 {}
+B 5 147.5 -62.5 152.5 -57.5 {name=VN dir=inout }
+L 7 130 -60 150 -60 {}
+T {VN} 125 -64 0 1 0.2 0.2 {}
diff --git a/xschem/comp/osch.pdf b/xschem/comp/osch.pdf
new file mode 100644
index 0000000..2ac4f5e
--- /dev/null
+++ b/xschem/comp/osch.pdf
Binary files differ
diff --git a/xschem/comp/osch.png b/xschem/comp/osch.png
new file mode 100644
index 0000000..b205af9
--- /dev/null
+++ b/xschem/comp/osch.png
Binary files differ
diff --git a/xschem/comp/osch.sch b/xschem/comp/osch.sch
new file mode 100644
index 0000000..c657b9d
--- /dev/null
+++ b/xschem/comp/osch.sch
@@ -0,0 +1,585 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 1930 680 1930 710 { lab=GND}
+N 1930 590 1930 620 { lab=Vin1}
+N 1960 560 1960 590 { lab=Vin1}
+N 1930 590 1970 590 { lab=Vin1}
+N 1780 670 1780 710 { lab=GND}
+N 1930 360 1930 400 { lab=GND}
+N 2130 410 2130 500 { lab=VM1D}
+N 2130 500 2130 530 { lab=VM1D}
+N 2570 620 2570 640 { lab=GND}
+N 2570 590 2570 620 { lab=GND}
+N 2570 440 2610 440 { lab=GND}
+N 2400 500 2400 510 { lab=GND}
+N 2490 440 2530 440 { lab=#net1}
+N 2610 440 2650 440 { lab=GND}
+N 2130 530 2130 540 { lab=VM1D}
+N 2230 590 2290 590 { lab=#net2}
+N 1930 190 1930 220 { lab=VDD}
+N 1930 250 1930 280 { lab=VGM5}
+N 1930 340 1930 360 { lab=GND}
+N 2130 540 2570 540 { lab=VM1D}
+N 2400 440 2490 440 { lab=#net1}
+N 2570 330 2940 330 { lab=VM4D}
+N 2650 440 2660 440 { lab=GND}
+N 2130 290 2130 340 { lab=VM1D}
+N 1970 220 1970 250 { lab=VGM5}
+N 1930 250 1970 250 { lab=VGM5}
+N 2280 240 2280 270 { lab=VDD}
+N 2280 210 2280 240 { lab=VDD}
+N 2280 300 2280 320 { lab=VGM8}
+N 2280 380 2280 430 { lab=GND}
+N 2280 300 2320 300 { lab=VGM8}
+N 2320 270 2320 300 { lab=VGM8}
+N 2280 190 2280 210 { lab=VDD}
+N 2280 110 2280 130 { lab=VDD}
+N 2450 210 2450 270 { lab=VGM8}
+N 2450 130 2450 150 { lab=VDD}
+N 2570 540 2570 560 { lab=VM1D}
+N 2570 470 2570 490 { lab=VM1D}
+N 2570 490 2570 540 { lab=VM1D}
+N 2280 130 2280 190 { lab=VDD}
+N 2980 640 2980 660 { lab=#net3}
+N 2960 120 2980 120 { lab=#net4}
+N 2960 120 2960 150 { lab=#net4}
+N 2980 90 2980 120 { lab=#net4}
+N 2980 180 2980 300 { lab=VM2D}
+N 2980 330 3090 330 { lab=GND}
+N 3090 330 3090 360 { lab=GND}
+N 1970 220 2090 220 { lab=VGM5}
+N 2130 250 2130 290 { lab=VM1D}
+N 2130 190 2130 220 { lab=VDD}
+N 2130 340 2130 410 { lab=VM1D}
+N 2570 330 2570 410 { lab=VM4D}
+N 2570 160 2570 200 { lab=VDD}
+N 2980 580 3080 580 { lab=VM2S}
+N 2880 580 2980 580 { lab=VM2S}
+N 2510 590 2510 690 { lab=VM1G}
+N 1970 590 2000 590 { lab=Vin1}
+N 2070 590 2230 590 { lab=#net2}
+N 2060 590 2070 590 { lab=#net2}
+N 2570 300 2570 330 { lab=VM4D}
+N 3220 650 3220 660 { lab=GND}
+N 3220 620 3220 650 { lab=GND}
+N 3220 580 3220 590 { lab=VM2S}
+N 3080 580 3220 580 { lab=VM2S}
+N 2930 630 2930 660 { lab=GND}
+N 2930 630 2940 630 { lab=GND}
+N 3260 620 3350 620 { lab=VGM11}
+N 3350 590 3350 620 { lab=VGM11}
+N 3350 590 3390 590 { lab=VGM11}
+N 3390 560 3390 590 { lab=VGM11}
+N 3390 620 3390 650 { lab=GND}
+N 3390 650 3390 660 { lab=GND}
+N 3390 480 3390 500 { lab=VDD}
+N 2570 200 2570 240 { lab=VDD}
+N 2320 270 2450 270 { lab=VGM8}
+N 2460 330 2570 330 { lab=VM4D}
+N 2460 330 2460 350 { lab=VM4D}
+N 2460 410 2460 440 { lab=#net1}
+N 2350 590 2530 590 { lab=VM1G}
+N 2870 620 2870 660 { lab=GND}
+N 2790 580 2790 630 { lab=VM1G}
+N 2250 680 2250 720 { lab=GND}
+N 2980 360 2980 410 { lab=VM2S}
+N 2980 470 2980 580 { lab=VM2S}
+N 2980 420 2980 470 { lab=VM2S}
+N 2980 410 2980 420 { lab=VM2S}
+N 2700 690 2790 690 { lab=GND}
+N 2650 630 2700 630 { lab=VM1G}
+N 2510 670 2650 670 { lab=VM1G}
+N 2450 270 2530 270 { lab=VGM8}
+N 2570 240 2570 270 { lab=VDD}
+N 2790 580 2820 580 { lab=VM1G}
+N 2170 620 2250 620 { lab=#net2}
+N 2170 620 2170 630 { lab=#net2}
+N 2170 690 2250 690 { lab=GND}
+N 2680 690 2700 690 { lab=GND}
+N 2650 630 2650 670 { lab=VM1G}
+N 2730 630 2790 630 { lab=VM1G}
+N 2700 630 2730 630 { lab=VM1G}
+N 2250 590 2250 620 { lab=#net2}
+N 890 -1160 890 -1130 { lab=VDD}
+N 890 -1180 890 -1160 { lab=VDD}
+N 890 -1100 890 -1080 { lab=#net5}
+N 890 -1080 890 -1070 { lab=#net5}
+N 890 -1040 890 -1010 { lab=GND}
+N 890 -1010 890 -990 { lab=GND}
+N 850 -1130 850 -1040 { lab=#net6}
+N 1060 -1160 1060 -1130 { lab=VDD}
+N 1060 -1180 1060 -1160 { lab=VDD}
+N 1060 -1100 1060 -1080 { lab=#net7}
+N 1060 -1080 1060 -1070 { lab=#net7}
+N 1060 -1040 1060 -1010 { lab=GND}
+N 1060 -1010 1060 -990 { lab=GND}
+N 1020 -1130 1020 -1040 { lab=#net5}
+N 1230 -1160 1230 -1130 { lab=VDD}
+N 1230 -1180 1230 -1160 { lab=VDD}
+N 1230 -1100 1230 -1080 { lab=#net8}
+N 1230 -1080 1230 -1070 { lab=#net8}
+N 1230 -1040 1230 -1010 { lab=GND}
+N 1230 -1010 1230 -990 { lab=GND}
+N 1190 -1130 1190 -1040 { lab=#net7}
+N 1390 -1160 1390 -1130 { lab=VDD}
+N 1390 -1180 1390 -1160 { lab=VDD}
+N 1390 -1100 1390 -1080 { lab=#net9}
+N 1390 -1080 1390 -1070 { lab=#net9}
+N 1390 -1040 1390 -1010 { lab=GND}
+N 1390 -1010 1390 -990 { lab=GND}
+N 1350 -1130 1350 -1040 { lab=#net10}
+N 890 -1080 1020 -1080 { lab=#net5}
+N 1060 -1080 1190 -1080 { lab=#net7}
+C {devices/vsource.sym} 1780 640 0 0 {name=Vdd value=1.8}
+C {devices/code.sym} 1840 -680 0 0 {name=TT_MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+*.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice tt
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} 1780 610 0 0 {name=l3 lab=VDD}
+C {devices/gnd.sym} 1930 710 0 0 {name=l26 lab=GND}
+C {devices/lab_pin.sym} 1960 560 0 0 {name=l14 sig_type=std_logic lab=Vin1}
+C {devices/gnd.sym} 1930 400 0 0 {name=l1 lab=GND}
+C {devices/gnd.sym} 1780 710 0 0 {name=l2 lab=GND}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 560 -550 0 0 {name=M4
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/gnd.sym} 2660 440 0 0 {name=l9 lab=GND}
+C {devices/gnd.sym} 2570 640 0 0 {name=l10 lab=GND}
+C {devices/vsource.sym} 2400 470 0 0 {name=Vbias2 value=1.55}
+C {devices/gnd.sym} 2400 510 0 0 {name=l18 lab=GND}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2550 590 0 0 {name=M1
+L=0.3
+W=17
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 2570 540 2 0 {name=l31 sig_type=std_logic lab=VM1D}
+C {devices/lab_wire.sym} 2570 300 2 0 {name=l32 sig_type=std_logic lab=VM4D}
+C {devices/vsource.sym} 1930 650 0 0 {name=V1 value=0.9
+*"DC 0.9 AC 1"}
+C {sky130_fd_pr/pfet_01v8.sym} 1950 220 0 1 {name=M10
+L=0.3
+W=15
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/isource.sym} 1930 310 0 0 {name=I0 value=0.92m}
+C {devices/vdd.sym} 1930 190 0 0 {name=l6 lab=VDD}
+C {devices/ngspice_get_value.sym} 2660 510 0 0 {name=r1 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 2660 540 0 0 {name=r2 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 2660 570 0 0 {name=r3 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M1 cgs"}
+C {devices/ngspice_get_value.sym} 2660 600 0 0 {name=r4 node="@m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M1 cdg"}
+C {devices/ngspice_get_value.sym} 2700 380 0 0 {name=r5 node="@m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M4 gm"}
+C {devices/ngspice_get_value.sym} 2700 410 0 0 {name=r6 node="@m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M4 gds"}
+C {devices/ngspice_get_value.sym} 2700 440 0 0 {name=r7 node="@m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M4 cgs"}
+C {devices/ngspice_get_value.sym} 2700 470 0 0 {name=r8 node="@m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M4 cdg"}
+C {devices/ngspice_get_value.sym} 2170 50 0 0 {name=r9 node="@m.xm6.msky130_fd_pr__pfet_01v8[gm]"
+descr="M6 gm"}
+C {devices/ngspice_get_value.sym} 2170 80 0 0 {name=r10 node="@m.xm6.msky130_fd_pr__pfet_01v8[gds]"
+descr="M6 gds"}
+C {devices/ngspice_get_value.sym} 2170 110 0 0 {name=r11 node="@m.xm6.msky130_fd_pr__pfet_01v8[cgs]"
+descr="M6 cgs"}
+C {devices/ngspice_get_value.sym} 2170 140 0 0 {name=r12 node="@m.xm6.msky130_fd_pr__pfet_01v8[cdg]"
+descr="M6 cdg"}
+C {sky130_fd_pr/pfet_01v8.sym} 2300 270 0 1 {name=M8
+L=0.3
+W=4
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/isource.sym} 2280 350 0 0 {name=I2 value=65u}
+C {devices/gnd.sym} 2280 430 0 0 {name=l11 lab=GND}
+C {devices/gnd.sym} 2280 430 0 0 {name=l13 lab=GND}
+C {devices/vdd.sym} 2280 110 0 0 {name=l16 lab=VDD}
+C {devices/ngspice_get_value.sym} 2700 210 0 0 {name=r13 node="@m.xm7.msky130_fd_pr__pfet_01v8[gm]"
+descr="M7 gm"}
+C {devices/ngspice_get_value.sym} 2700 240 0 0 {name=r14 node="@m.xm7.msky130_fd_pr__pfet_01v8[gds]"
+descr="M7 gds"}
+C {devices/ngspice_get_value.sym} 2700 270 0 0 {name=r15 node="@m.xm7.msky130_fd_pr__pfet_01v8[cgs]"
+descr="M7 cgs"}
+C {devices/ngspice_get_value.sym} 2700 300 0 0 {name=r16 node="@m.xm7.msky130_fd_pr__pfet_01v8[cdg]"
+descr="M7 cdg"}
+C {devices/code.sym} 1830 -370 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+* Power consumption
+op
+* save all
+* #OP#
+print @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+print vdd#branch
+print v(vm2d)
+print v(vm3d)
+print v(UD_M5)
+wrdata 'result_op.csv' vdd#branch
+ac dec 10 1 10G
+meas ac dc_gain_vm2d FIND vdb(vm2d) AT=1
+let bw_amp_vm2d=dc_gain_vm2d-3
+meas ac dc_gain_vm3d FIND vdb(vm3d) AT=1
+let bw_amp_vm3d=dc_gain_vm3d-3
+meas ac bw_vm2d when vdb(vm2d)=bw_amp_vm2d
+meas ac bw_vm3d when vdb(vm3d)=bw_amp_vm3d
+*MEAS AC phasem FIND vp(vm2d) WHEN vdb(vm2d)=0
+* wrdata 'result_ac.csv' dc_gain bw
+* plot vdb(vm2D) log
+*
+*print WM3D
+run
+reset
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm1.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm4.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm11.msky130_fd_pr__nfet_01v8_lvt[gm]
+save @m.xm11.msky130_fd_pr__nfet_01v8_lvt[gds]
+save @m.xm11.msky130_fd_pr__nfet_01v8_lvt[cgs]
+save @m.xm11.msky130_fd_pr__nfet_01v8_lvt[cdg]
+save @m.xm6.msky130_fd_pr__pfet_01v8[gm]
+save @m.xm6.msky130_fd_pr__pfet_01v8[gds]
+save @m.xm6.msky130_fd_pr__pfet_01v8[cgs]
+save @m.xm6.msky130_fd_pr__pfet_01v8[cdg]
+save @m.xm7.msky130_fd_pr__pfet_01v8[gm]
+save @m.xm7.msky130_fd_pr__pfet_01v8[gds]
+save @m.xm7.msky130_fd_pr__pfet_01v8[cgs]
+save @m.xm7.msky130_fd_pr__pfet_01v8[cdg]
+save v(vm2s)
+save v(vm1g)
+save v(vm1d)
+save v(vm2d)
+save v(vm3d)
+save v(vm4d)
+save v(vgm8)
+save v(vdm8)
+save v(vgm5)
+save v(vgm11)
+*save v(vfb)
+save i(vm2s)
+op
+write shahdoost_optim3_manual.raw
+run
+reset
+noise v(vm1d) I1 dec 100 1 10G
+print all
+setplot noise1
+write noise_question1.raw
+setplot noise2
+write noise_question2.raw
+run
+reset
+ac dec 10 1 1T
+plot vdb(vm1d) vdb(vm4d) vdb(vm1g) 
+plot vdb(vm2d) vdb(vm2s) 
+*vdb(vfb)
+plot phase(vm1d)/pi*180 phase(vm4d)/pi*180 phase(vm1g)/pi*180
+plot phase(vm2d)/pi*180 phase(vm2s)/pi*180 phase(vfb)/pi*180
+run
+reset
+tran 1ps 10ns
+plot v(vm1g) v(vm2d)
+run
+.endc 
+"}
+C {devices/ngspice_get_value.sym} 2570 370 0 0 {name=r17 node="v(vm4d)"
+descr="v(vm4d)"}
+C {devices/ngspice_get_value.sym} 2570 520 0 0 {name=r18 node="v(vm1d)"
+descr="v(vm1d)"}
+C {devices/lab_wire.sym} 2360 270 2 0 {name=l17 sig_type=std_logic lab=VGM8}
+C {devices/ngspice_get_value.sym} 2400 270 0 0 {name=r19 node="v(vgm8)"
+descr="v(vgm8)"}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 2450 180 0 0 {name=C4 model=cap_mim_m3_1 W=10 L=10 MF=1 spiceprefix=X}
+C {devices/vdd.sym} 2450 130 0 0 {name=l19 lab=VDD}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2960 330 0 0 {name=M2
+L=0.4
+W=5
+nf=1 
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/vdd.sym} 890 -1180 0 0 {name=l4 lab=VDD}
+C {devices/gnd.sym} 890 -990 0 0 {name=l15 lab=GND}
+C {sky130_fd_pr/res_high_po_0p35.sym} 2980 150 0 0 {name=R2
+W=0.35
+L=3
+model=res_high_po_0p35
+spiceprefix=X
+mult=5}
+C {devices/gnd.sym} 3090 360 0 0 {name=l20 lab=GND}
+C {devices/lab_wire.sym} 2980 260 2 0 {name=l21 sig_type=std_logic lab=VM2D}
+C {devices/lab_wire.sym} 2980 550 2 0 {name=l22 sig_type=std_logic lab=VM2S}
+C {devices/ngspice_get_value.sym} 2980 530 0 0 {name=r21 node="v(vm2s)"
+descr="v(vm2s)"}
+C {devices/ngspice_get_value.sym} 2980 240 0 0 {name=r22 node="v(vm2d)"
+descr="v(vm2d)"}
+C {devices/ngspice_get_value.sym} 3070 230 0 0 {name=r23 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 3070 260 0 0 {name=r24 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 3070 290 0 0 {name=r25 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M2 cgs"}
+C {devices/ngspice_get_value.sym} 3070 320 0 0 {name=r26 node="@m.xm2.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M2 cdg"}
+C {sky130_fd_pr/pfet_01v8.sym} 560 -670 0 0 {name=M6
+L=0.3
+W=15
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/vdd.sym} 2130 190 0 0 {name=l7 lab=VDD}
+C {devices/lab_wire.sym} 2000 220 2 0 {name=l23 sig_type=std_logic lab=VGM5}
+C {devices/ngspice_get_value.sym} 2010 220 0 0 {name=r27 node="v(vgm5)"
+descr="v(vgm5)"}
+C {devices/vdd.sym} 2570 160 0 0 {name=l5 lab=VDD}
+C {devices/gnd.sym} 2930 660 0 0 {name=l25 lab=GND}
+C {devices/res.sym} 2030 590 1 0 {name=R4
+value=1e6
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_pin.sym} 2510 690 0 0 {name=l28 sig_type=std_logic lab=VM1G}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 870 -1040 0 0 {name=M11
+L=0.150
+W=0.74
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 3370 620 0 0 {name=M12
+L=0.3
+W=5
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/isource.sym} 3390 530 0 0 {name=I1 value=1m}
+C {devices/vdd.sym} 3390 480 0 0 {name=l8 lab=VDD}
+C {devices/gnd.sym} 3220 660 0 0 {name=l12 lab=GND}
+C {devices/gnd.sym} 3390 660 0 0 {name=l24 lab=GND}
+C {devices/lab_wire.sym} 3270 620 2 0 {name=l29 sig_type=std_logic lab=VGM11}
+C {devices/ngspice_get_value.sym} 3270 620 0 0 {name=r20 node="v(vgm11)"
+descr="v(vgm11)"}
+C {devices/ngspice_get_value.sym} 3210 480 0 0 {name=r28 node="@m.xm11.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M11 gm"}
+C {devices/ngspice_get_value.sym} 3210 510 0 0 {name=r29 node="@m.xm11.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M11 gds"}
+C {devices/ngspice_get_value.sym} 3210 540 0 0 {name=r30 node="@m.xm11.msky130_fd_pr__nfet_01v8_lvt[cgs]"
+descr="M11 cgs"}
+C {devices/ngspice_get_value.sym} 3210 570 0 0 {name=r31 node="@m.xm11.msky130_fd_pr__nfet_01v8_lvt[cdg]"
+descr="M11 cdg"}
+C {devices/res.sym} 2320 590 1 0 {name=R1
+value=100
+footprint=1206
+device=resistor
+m=1}
+C {devices/gnd.sym} 2870 660 0 0 {name=l33 lab=GND}
+C {devices/gnd.sym} 2790 690 0 0 {name=l27 lab=GND}
+C {devices/gnd.sym} 2250 720 0 0 {name=l35 lab=GND}
+C {devices/isource.sym} 2250 650 0 0 {name=I3 value="DC 0 AC 1"}
+C {devices/ngspice_get_value.sym} 2410 590 0 0 {name=r32 node="v(vm1g)"
+descr="v(vm1g)"}
+C {sky130_fd_pr/pfet_01v8.sym} 870 -1130 0 0 {name=M3
+L=0.150
+W=1.12
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} 2570 730 0 0 {name=l34 lab=GND}
+C {devices/capa.sym} 2980 610 0 0 {name=C1
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 2850 580 1 0 {name=C2
+m=1
+value=310f
+footprint=1206
+device="ceramic capacitor"}
+C {devices/vdd.sym} 1060 -1180 0 0 {name=l30 lab=VDD}
+C {devices/gnd.sym} 1060 -990 0 0 {name=l36 lab=GND}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1040 -1040 0 0 {name=M5
+L=0.150
+W=0.74
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1040 -1130 0 0 {name=M7
+L=0.150
+W=1.12
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/vdd.sym} 1230 -1180 0 0 {name=l37 lab=VDD}
+C {devices/gnd.sym} 1230 -990 0 0 {name=l38 lab=GND}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1210 -1040 0 0 {name=M9
+L=0.150
+W=0.74
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1210 -1130 0 0 {name=M13
+L=0.150
+W=1.12
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/vdd.sym} 1390 -1180 0 0 {name=l39 lab=VDD}
+C {devices/gnd.sym} 1390 -990 0 0 {name=l40 lab=GND}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1370 -1040 0 0 {name=M14
+L=0.150
+W=0.74
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1370 -1130 0 0 {name=M15
+L=0.150
+W=1.12
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
diff --git a/xschem/comp/result_op.csv b/xschem/comp/result_op.csv
new file mode 100644
index 0000000..86449e8
--- /dev/null
+++ b/xschem/comp/result_op.csv
@@ -0,0 +1,2 @@
+ vdd             vdd#branch     
+ 1.80000000e+00 -1.28275264e-04 
diff --git a/xschem/comp/switch.pdf b/xschem/comp/switch.pdf
new file mode 100644
index 0000000..500a11c
--- /dev/null
+++ b/xschem/comp/switch.pdf
Binary files differ
diff --git a/xschem/comp/switch.png b/xschem/comp/switch.png
new file mode 100644
index 0000000..6bdc65b
--- /dev/null
+++ b/xschem/comp/switch.png
Binary files differ
diff --git a/xschem/comp/switch.sch b/xschem/comp/switch.sch
new file mode 100644
index 0000000..41cd61b
--- /dev/null
+++ b/xschem/comp/switch.sch
@@ -0,0 +1,103 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 400 -740 400 -670 { lab=VP}
+N 340 -540 370 -540 { lab=In}
+N 340 -740 340 -540 { lab=In}
+N 340 -740 370 -740 { lab=In}
+N 430 -740 450 -740 { lab=Out}
+N 450 -740 450 -540 { lab=Out}
+N 430 -540 450 -540 { lab=Out}
+N 30 -670 100 -670 { lab=Enable}
+N 100 -720 100 -670 { lab=Enable}
+N 100 -720 110 -720 { lab=Enable}
+N 100 -670 100 -590 { lab=Enable}
+N 100 -590 110 -590 { lab=Enable}
+N 150 -590 150 -560 { lab=VN}
+N 150 -750 150 -720 { lab=VP}
+N 150 -780 150 -750 { lab=VP}
+N 150 -690 150 -620 { lab=#net1}
+N 150 -670 230 -670 { lab=#net1}
+N 230 -790 230 -670 { lab=#net1}
+N 230 -790 400 -790 { lab=#net1}
+N 400 -790 400 -780 { lab=#net1}
+N 100 -500 400 -500 { lab=Enable}
+N 100 -590 100 -500 { lab=Enable}
+N 20 -470 150 -470 { lab=VN}
+N 150 -560 150 -470 { lab=VN}
+N 20 -820 150 -820 { lab=VP}
+N 150 -820 150 -780 { lab=VP}
+N 150 -820 250 -820 { lab=VP}
+N 150 -470 310 -470 { lab=VN}
+N 310 -670 400 -670 { lab=VP}
+N 300 -640 340 -640 { lab=In}
+N 450 -640 470 -640 { lab=Out}
+N 310 -820 310 -670 { lab=VP}
+N 250 -820 310 -820 { lab=VP}
+N 310 -610 310 -470 { lab=VN}
+N 310 -610 400 -610 { lab=VN}
+N 400 -610 400 -540 { lab=VN}
+C {sky130_fd_pr/pfet_01v8.sym} 400 -760 3 1 {name=M1
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 130 -720 0 0 {name=M3
+L=0.15
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 130 -590 0 0 {name=M4
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/iopin.sym} 20 -820 2 0 {name=p1 lab=VP}
+C {devices/ipin.sym} 30 -670 0 0 {name=p2 lab=Enable}
+C {devices/opin.sym} 470 -640 0 0 {name=p3 lab=Out}
+C {devices/iopin.sym} 20 -470 2 0 {name=p4 lab=VN}
+C {devices/ipin.sym} 300 -640 0 0 {name=p5 lab=In}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 400 -520 1 1 {name=M2
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
diff --git a/xschem/comp/switch.sym b/xschem/comp/switch.sym
new file mode 100644
index 0000000..11dbd0a
--- /dev/null
+++ b/xschem/comp/switch.sym
@@ -0,0 +1,26 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -45 -6 0 0 0.3 0.3 {}
+T {@name} 135 -42 0 0 0.2 0.2 {}
+L 4 -130 -30 130 -30 {}
+L 4 -130 30 130 30 {}
+L 4 -130 -30 -130 30 {}
+L 4 130 -30 130 30 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VP dir=inout }
+L 7 130 -20 150 -20 {}
+T {VP} 125 -24 0 1 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=Enable dir=in }
+L 4 -150 -20 -130 -20 {}
+T {Enable} -125 -24 0 0 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=Out dir=out }
+L 4 130 0 150 0 {}
+T {Out} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=In dir=in }
+L 4 -150 0 -130 0 {}
+T {In} -125 -4 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/comp/xschemrc b/xschem/comp/xschemrc
new file mode 120000
index 0000000..bebc967
--- /dev/null
+++ b/xschem/comp/xschemrc
@@ -0,0 +1 @@
+../xschemrc
\ No newline at end of file
diff --git a/xschem/comp_adv3.spice b/xschem/comp_adv3.spice
new file mode 100644
index 0000000..075dd33
--- /dev/null
+++ b/xschem/comp_adv3.spice
@@ -0,0 +1,31 @@
+
+* expanding   symbol:  comp/comp_adv3.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3.sch
+.subckt comp_adv3  VP OutP OutN Inn Inp bias VN
+*.ipin Inp
+*.ipin bias
+*.ipin Inn
+*.iopin VP
+*.iopin VN
+*.opin OutN
+*.opin OutP
+XM1 OutN Inp VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM2 OutP Inn VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 bias bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM9 VIq bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XR1 OutN VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1.5 mult=1 m=1
+XR2 OutP VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1.5 mult=1 m=1
+XM3 bias VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+.ends
+
diff --git a/xschem/comp_adv3_di.spice b/xschem/comp_adv3_di.spice
new file mode 100644
index 0000000..72ad40a
--- /dev/null
+++ b/xschem/comp_adv3_di.spice
@@ -0,0 +1,51 @@
+
+* expanding   symbol:  comp/comp_adv3_di.sym # of pins=9
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3_di.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3_di.sch
+.subckt comp_adv3_di  VP OutP OutN Inn Inp Inn2 Inp2 bias VN
+*.ipin Inp
+*.ipin bias
+*.ipin Inn
+*.iopin VP
+*.iopin VN
+*.opin OutN
+*.opin OutP
+*.ipin Inn2
+*.ipin Inp2
+XM1 OutN Inp VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM2 OutP Inn VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 bias bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM9 VIq bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XR1 OutN VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1 mult=1 m=1
+XR2 OutP VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1 mult=1 m=1
+XM3 OutN Inp2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM4 OutP Inn2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM5 Inn2 Inn2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM6 Inp2 Inp2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM8 Inp2 VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM10 Inn2 VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM11 bias VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+.ends
+
diff --git a/xschem/comp_amp_20db_no_cmm.spice b/xschem/comp_amp_20db_no_cmm.spice
new file mode 100644
index 0000000..1fffaad
--- /dev/null
+++ b/xschem/comp_amp_20db_no_cmm.spice
@@ -0,0 +1,17 @@
+
+* expanding   symbol:  comp/comp_amp_20db_no_cmm.sym # of pins=8
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_20db_no_cmm.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_20db_no_cmm.sch
+.subckt comp_amp_20db_no_cmm  VP In_n In_p out_p Bias1 Bias2 out_n VN
+*.ipin In_n
+*.ipin In_p
+*.iopin VP
+*.opin out_p
+*.opin out_n
+*.ipin Bias1
+*.ipin Bias2
+*.iopin VN
+xcmp2 VP out_p out_n OutP1 OutN1 Bias2 VN comp_adv3
+xcmp1 VP OutP1 OutN1 In_n In_p Bias1 VN comp_adv3
+.ends
+
diff --git a/xschem/comp_amp_di_40db_no_cmm.spice b/xschem/comp_amp_di_40db_no_cmm.spice
new file mode 100644
index 0000000..0793165
--- /dev/null
+++ b/xschem/comp_amp_di_40db_no_cmm.spice
@@ -0,0 +1,24 @@
+
+* expanding   symbol:  comp/comp_amp_di_40db_no_cmm.sym # of pins=12
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_di_40db_no_cmm.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_di_40db_no_cmm.sch
+.subckt comp_amp_di_40db_no_cmm  VP In_n In_p Out_p In_Ref_n Bias2 Bias4 Bias3 Out_n In_Ref_p Bias1
++ VN
+*.ipin In_n
+*.iopin VP
+*.opin Out_p
+*.ipin In_p
+*.ipin Bias1
+*.ipin Bias2
+*.iopin VN
+*.opin Out_n
+*.ipin Bias3
+*.ipin Bias4
+*.ipin In_Ref_n
+*.ipin In_Ref_p
+xcmp6 VP OutP2_di OutN2_di OutP1_di OutN1_di Bias2 VN comp_adv3
+xcmp1 VP OutP3_di OutN3_di OutP2_di OutN2_di Bias3 VN comp_adv3
+xcmp2 VP Out_p Out_n OutP3_di OutN3_di Bias4 VN comp_adv3
+x1 VP OutP1_di OutN1_di In_n In_p In_Ref_n In_Ref_p Bias1 VN comp_adv3_di
+.ends
+
diff --git a/xschem/comp_to_logic.spice b/xschem/comp_to_logic.spice
new file mode 100644
index 0000000..0d01dc7
--- /dev/null
+++ b/xschem/comp_to_logic.spice
@@ -0,0 +1,70 @@
+
+* expanding   symbol:  comp/comp_to_logic.sym # of pins=6
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_to_logic.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_to_logic.sch
+.subckt comp_to_logic  VP Out In_p In_n I_Bias VN
+*.iopin VP
+*.iopin VN
+*.ipin In_p
+*.ipin In_n
+*.ipin I_Bias
+*.opin Out
+XM1 VM1D In_n VM4D VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM2 VM1D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM4 VM4D I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*8 m=2*8
+XM6 VM6D In_p VM4D VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM7 I_Bias I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM3 VM6D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 VM11D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM9 VM12D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM11 VM11D VM11D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=3 m=3
+XM12 VM12D VM11D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=3 m=3
+XM14 VM17D VM12D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM13D VM17D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VM13D VM17D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM17 VM17D VM12D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM15 VM6D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM19 Out VM13D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM20 Out VM13D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM5 VM1D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM10 VN VN VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+.ends
+
diff --git a/xschem/comparator_complete.spice b/xschem/comparator_complete.spice
new file mode 100644
index 0000000..e04e6dc
--- /dev/null
+++ b/xschem/comparator_complete.spice
@@ -0,0 +1,32 @@
+
+* expanding   symbol:  comp/comparator_complete.sym # of pins=14
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comparator_complete.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comparator_complete.sch
+.subckt comparator_complete  VP InRef In Bias_comp1 Digital_out RefA Bias_comp2 Bias_to_logic
++ Bias_comp4 Bias_comp6 Bias_comp5 RefB Bias_comp3 VN
+*.ipin InRef
+*.iopin VP
+*.opin Digital_out
+*.ipin In
+*.ipin Bias_comp1
+*.ipin Bias_comp2
+*.iopin VN
+*.ipin Bias_comp4
+*.ipin Bias_comp6
+*.ipin Bias_comp3
+*.ipin Bias_comp5
+*.ipin RefA
+*.ipin RefB
+*.ipin Bias_to_logic
+xamp1 VP net1 net2 Outp_20db Bias_comp1 Bias_comp2 Outn_20db VN comp_amp_20db_no_cmm
+xl VP Digital_out Outp Outn Bias_to_logic VN comp_to_logic
+xamp2 VP net3 Outp_20db Outp RefA Bias_comp4 Bias_comp6 Bias_comp5 Outn RefB Bias_comp3 VN
++ comp_amp_di_40db_no_cmm
+XR6 net1 InRef VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XR7 net1 net2 VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XR8 net3 Outp_20db VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XC1 VN net1 sky130_fd_pr__cap_mim_m3_2 W=30 L=20 VM=1 m=1
+XC2 net2 In sky130_fd_pr__cap_mim_m3_1 W=5 L=5 MF=1 m=1
+XC3 net3 Outn_20db sky130_fd_pr__cap_mim_m3_1 W=5 L=5 MF=1 m=1
+.ends
+
diff --git a/xschem/current_mirror_channel.spice b/xschem/current_mirror_channel.spice
new file mode 100644
index 0000000..d4136cf
--- /dev/null
+++ b/xschem/current_mirror_channel.spice
@@ -0,0 +1,121 @@
+
+* expanding   symbol:  bias/current_mirror_channel.sym # of pins=14
+** sym_path: /home/simon/code/particle_detector/xschem/bias/current_mirror_channel.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/current_mirror_channel.sch
+.subckt current_mirror_channel  VP LVDS_Bias Comp_Bias_2 A_Out_I_Bias Comp_Bias_1 Comp_To_Logic_Bias
++ TIA_I_Bias1 Comp_Bias_3 Comp_Bias_4 Comp_Bias_5 Comp_Bias_6 FB_Bias_1 I_in_channel VN
+*.ipin I_in_channel
+*.iopin VP
+*.iopin VN
+*.opin TIA_I_Bias1
+*.opin A_Out_I_Bias
+*.opin Comp_Bias_1
+*.opin Comp_To_Logic_Bias
+*.opin Comp_Bias_2
+*.opin Comp_Bias_3
+*.opin Comp_Bias_4
+*.opin Comp_Bias_5
+*.opin Comp_Bias_6
+*.opin FB_Bias_1
+*.opin LVDS_Bias
+XM1 I_in_channel I_in_channel net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM2 net3 vm4d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM3 net1 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 vm4d vm4d net3 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XC4 VP vm4d sky130_fd_pr__cap_mim_m3_2 W=30 L=15 VM=1 m=1
+XM5 vm4d I_in_channel net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM6 net2 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 net4 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*5 m=4*5
+XM14 TIA_I_Bias1 vm12d net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*5 m=4*4*5
+XM9 net5 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*6 m=4*6
+XM10 A_Out_I_Bias vm12d net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*6 m=4*4*6
+XM15 net6 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM16 Comp_To_Logic_Bias vm12d net6 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*4 m=4*4*4
+XM17 net7 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM18 Comp_Bias_1 vm12d net7 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM19 net8 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM20 Comp_Bias_2 vm12d net8 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM31 net13 vm4d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM32 FB_Bias_1 vm4d net13 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM7 vm12d I_in_channel net15 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2*4*4 m=2*4*4
+XM8 net15 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM11 net16 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM12 vm12d vm12d net16 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM21 net9 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM22 Comp_Bias_3 vm12d net9 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM23 net10 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM24 Comp_Bias_4 vm12d net10 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM25 net11 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM26 Comp_Bias_5 vm12d net11 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM27 net12 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM28 Comp_Bias_6 vm12d net12 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM29 net14 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM30 LVDS_Bias vm12d net14 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XC1 VP vm12d sky130_fd_pr__cap_mim_m3_2 W=30 L=15 VM=1 m=1
+XC2 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
diff --git a/xschem/current_mirrorx8.spice b/xschem/current_mirrorx8.spice
new file mode 100644
index 0000000..620ac29
--- /dev/null
+++ b/xschem/current_mirrorx8.spice
@@ -0,0 +1,72 @@
+
+* expanding   symbol:  bias/current_mirrorx8.sym # of pins=11
+** sym_path: /home/simon/code/particle_detector/xschem/bias/current_mirrorx8.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/current_mirrorx8.sch
+.subckt current_mirrorx8  VP I_out_3 I_out_1 I_In I_out_0 I_out_4 I_out_5 I_out_6 I_out_7 I_out_2 VN
+*.opin I_out_0
+*.ipin I_In
+*.iopin VP
+*.opin I_out_1
+*.opin I_out_2
+*.opin I_out_3
+*.opin I_out_4
+*.opin I_out_5
+*.opin I_out_6
+*.opin I_out_7
+*.iopin VN
+XM1 net1 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM2 I_In I_In net1 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM3 net2 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 I_out_0 I_In net2 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM5 net3 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM6 I_out_1 I_In net3 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM7 net4 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM8 I_out_2 I_In net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM9 net5 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM10 I_out_3 I_In net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM11 net6 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM12 I_out_4 I_In net6 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM13 net7 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM14 I_out_5 I_In net7 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM15 net8 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM16 I_out_6 I_In net8 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM17 net9 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM18 I_out_7 I_In net9 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+.ends
+
diff --git a/xschem/esd/esd_clamp.sch b/xschem/esd/esd_clamp.sch
new file mode 100644
index 0000000..21d1c96
--- /dev/null
+++ b/xschem/esd/esd_clamp.sch
@@ -0,0 +1,137 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 60 -240 60 100 { lab=VN}
+N 60 100 980 100 { lab=VN}
+N 980 -60 980 100 { lab=VN}
+N 500 -90 940 -90 { lab=VGM1}
+N 500 -120 500 -90 { lab=VGM1}
+N 980 -270 980 -120 { lab=VP}
+N 100 -300 980 -300 { lab=VP}
+N 980 -300 980 -270 { lab=VP}
+N 500 -300 500 -260 { lab=VP}
+N 290 -220 290 -50 { lab=VGM1}
+N 250 90 250 100 { lab=VN}
+N 290 -270 290 -240 { lab=VP}
+N 290 -300 290 -270 { lab=VP}
+N 100 -270 100 -240 { lab=VP}
+N 100 -300 100 -270 { lab=VP}
+N 100 -210 100 -170 { lab=VGM5}
+N 100 -170 250 -170 { lab=VGM5}
+N 250 -240 250 -170 { lab=VGM5}
+N 250 -170 250 -80 { lab=VGM5}
+N 250 -50 250 90 { lab=VN}
+N 290 -90 500 -90 { lab=VGM1}
+N 500 30 500 60 { lab=VN}
+N 500 60 500 100 { lab=VN}
+N 500 -90 500 -0 { lab=VGM1}
+N 100 30 460 30 { lab=VGM5}
+N 100 -170 100 30 { lab=VGM5}
+N 40 100 60 100 { lab=VN}
+N 50 -300 100 -300 { lab=VP}
+N 980 -90 980 -60 { lab=VN}
+N 500 -200 500 -180 { lab=#net1}
+N 640 -300 640 20 { lab=VP}
+N 680 20 680 50 { lab=VN}
+N 680 50 680 100 { lab=VN}
+N 680 -190 680 -10 { lab=#net1}
+N 500 -190 680 -190 { lab=#net1}
+C {sky130_fd_pr/diode.sym} 500 -150 2 0 {name=D1
+model=diode_pw2nd_05v5
+area=10e12
+}
+C {sky130_fd_pr/pfet_01v8.sym} 80 -240 0 0 {name=M3
+L=1
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 270 -240 0 0 {name=M4
+L=0.3
+W=2
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 480 30 0 0 {name=M5
+L=1
+W=2
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/iopin.sym} 50 -300 0 1 {name=p1 lab=VP}
+C {devices/iopin.sym} 40 100 0 1 {name=p2 lab=VN}
+C {devices/lab_wire.sym} 530 -90 0 1 {name=l1 sig_type=std_logic lab=VGM1}
+C {devices/lab_wire.sym} 300 30 0 1 {name=l2 sig_type=std_logic lab=VGM5}
+C {sky130_fd_pr/diode.sym} 500 -230 2 0 {name=D2
+model=diode_pw2nd_05v5
+area=10e12
+}
+C {sky130_fd_pr/nfet_01v8.sym} 960 -90 0 0 {name=M1
+L=0.3
+W=2
+nf=1 
+mult=1000
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 660 20 0 0 {name=M6
+L=1
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 270 -50 0 1 {name=M2
+L=0.3
+W=2
+nf=1 
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
diff --git a/xschem/esd/esd_clamp.sym b/xschem/esd/esd_clamp.sym
new file mode 100644
index 0000000..f87be76
--- /dev/null
+++ b/xschem/esd/esd_clamp.sym
@@ -0,0 +1,17 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -58.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -32 0 0 0.2 0.2 {}
+L 4 -130 -20 130 -20 {}
+L 4 -130 20 130 20 {}
+L 4 -130 -20 -130 20 {}
+L 4 130 -20 130 20 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=VP dir=inout }
+L 7 130 -10 150 -10 {}
+T {VP} 125 -14 0 1 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=VN dir=inout }
+L 7 130 10 150 10 {}
+T {VN} 125 6 0 1 0.2 0.2 {}
diff --git a/xschem/esd/esd_diodes.sch b/xschem/esd/esd_diodes.sch
new file mode 100644
index 0000000..9e1a11e
--- /dev/null
+++ b/xschem/esd/esd_diodes.sch
@@ -0,0 +1,139 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 10 -50 40 -50 { lab=io}
+N 40 -80 40 -50 { lab=io}
+N 40 -50 40 -20 { lab=io}
+N 10 60 40 60 { lab=VN}
+N 40 40 40 60 { lab=VN}
+N 10 -170 40 -170 { lab=VP}
+N 40 -170 40 -140 { lab=VP}
+N 180 -80 180 -50 { lab=io}
+N 180 -50 180 -20 { lab=io}
+N 180 40 180 60 { lab=VN}
+N 180 -170 180 -140 { lab=VP}
+N 40 60 800 60 { lab=VN}
+N 320 -80 320 -50 { lab=io}
+N 320 -50 320 -20 { lab=io}
+N 320 40 320 60 { lab=VN}
+N 320 -170 320 -140 { lab=VP}
+N 460 -80 460 -50 { lab=io}
+N 460 -50 460 -20 { lab=io}
+N 460 40 460 60 { lab=VN}
+N 460 -170 460 -140 { lab=VP}
+N 600 -80 600 -50 { lab=io}
+N 600 -50 600 -20 { lab=io}
+N 600 40 600 60 { lab=VN}
+N 600 -170 600 -140 { lab=VP}
+N 740 -80 740 -50 { lab=io}
+N 740 -50 740 -20 { lab=io}
+N 740 40 740 60 { lab=VN}
+N 740 -170 740 -140 { lab=VP}
+N 880 -80 880 -50 { lab=io}
+N 880 -50 880 -20 { lab=io}
+N 880 40 880 60 { lab=VN}
+N 880 -170 880 -140 { lab=VP}
+N 1020 -80 1020 -50 { lab=io}
+N 1020 -50 1020 -20 { lab=io}
+N 1020 40 1020 60 { lab=VN}
+N 1020 -170 1020 -140 { lab=VP}
+N 1160 -80 1160 -50 { lab=io}
+N 1160 -50 1160 -20 { lab=io}
+N 1160 40 1160 60 { lab=VN}
+N 1160 -170 1160 -140 { lab=VP}
+N 1300 -80 1300 -50 { lab=io}
+N 1300 -50 1300 -20 { lab=io}
+N 1300 40 1300 60 { lab=VN}
+N 1300 -170 1300 -140 { lab=VP}
+N 800 60 1300 60 { lab=VN}
+N 40 -170 1300 -170 { lab=VP}
+N 40 -50 1300 -50 { lab=io}
+N 1300 60 1460 60 { lab=VN}
+N 1300 -50 1500 -50 { lab=io}
+N 1300 -170 1530 -170 { lab=VP}
+C {sky130_fd_pr/diode.sym} 40 -110 0 0 {name=D1
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {devices/iopin.sym} 10 -170 0 1 {name=p1 lab=VP}
+C {devices/iopin.sym} 10 -50 0 1 {name=p2 lab=io}
+C {devices/iopin.sym} 10 60 0 1 {name=p3 lab=VN}
+C {sky130_fd_pr/diode.sym} 40 10 0 0 {name=D11
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 180 -110 0 0 {name=D2
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 320 -110 0 0 {name=D3
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 460 -110 0 0 {name=D4
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 600 -110 0 0 {name=D5
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 740 -110 0 0 {name=D6
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 880 -110 0 0 {name=D7
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1020 -110 0 0 {name=D8
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1160 -110 0 0 {name=D9
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1300 -110 0 0 {name=D10
+model=diode_pd2nw_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 180 10 0 0 {name=D12
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 320 10 0 0 {name=D13
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 460 10 0 0 {name=D14
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 600 10 0 0 {name=D15
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 740 10 0 0 {name=D16
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 880 10 0 0 {name=D17
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1020 10 0 0 {name=D18
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1160 10 0 0 {name=D19
+model=diode_pw2nd_11v0
+area=4e12
+}
+C {sky130_fd_pr/diode.sym} 1300 10 0 0 {name=D20
+model=diode_pw2nd_11v0
+area=4e12
+}
diff --git a/xschem/esd/esd_diodes.spice b/xschem/esd/esd_diodes.spice
new file mode 100644
index 0000000..77df757
--- /dev/null
+++ b/xschem/esd/esd_diodes.spice
@@ -0,0 +1,27 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/esd/esd_diodes.sch
+**.subckt esd_diodes VP io VN
+*.iopin VP
+*.iopin io
+*.iopin VN
+D1 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D11 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D2 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D3 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D4 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D5 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D6 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D7 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D8 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D9 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D10 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D12 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D13 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D14 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D15 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D16 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D17 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D18 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D19 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D20 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+**.ends
+.end
diff --git a/xschem/esd/esd_diodes.sym b/xschem/esd/esd_diodes.sym
new file mode 100644
index 0000000..02ca9f1
--- /dev/null
+++ b/xschem/esd/esd_diodes.sym
@@ -0,0 +1,20 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -63 -6 0 0 0.3 0.3 {}
+T {@name} 135 -42 0 0 0.2 0.2 {}
+L 4 -130 -30 130 -30 {}
+L 4 -130 30 130 30 {}
+L 4 -130 -30 -130 30 {}
+L 4 130 -30 130 30 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VP dir=inout }
+L 7 130 -20 150 -20 {}
+T {VP} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=io dir=inout }
+L 7 130 0 150 0 {}
+T {io} 125 -4 0 1 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/esd/xschemrc b/xschem/esd/xschemrc
new file mode 100644
index 0000000..1a02a9e
--- /dev/null
+++ b/xschem/esd/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+# set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/esd_diodes.spice b/xschem/esd_diodes.spice
new file mode 100644
index 0000000..f29492a
--- /dev/null
+++ b/xschem/esd_diodes.spice
@@ -0,0 +1,30 @@
+
+* expanding   symbol:  esd/esd_diodes.sym # of pins=3
+** sym_path: /home/simon/code/particle_detector/xschem/esd/esd_diodes.sym
+** sch_path: /home/simon/code/particle_detector/xschem/esd/esd_diodes.sch
+.subckt esd_diodes  VP io VN
+*.iopin VP
+*.iopin io
+*.iopin VN
+D1 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D11 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D2 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D3 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D4 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D5 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D6 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D7 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D8 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D9 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D10 io VP sky130_fd_pr__diode_pd2nw_11v0 area=4e12
+D12 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D13 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D14 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D15 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D16 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D17 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D18 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D19 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+D20 VN io sky130_fd_pr__diode_pw2nd_11v0 area=4e12
+.ends
+
diff --git a/xschem/feedback_sukwani.spice b/xschem/feedback_sukwani.spice
new file mode 100644
index 0000000..068f5e9
--- /dev/null
+++ b/xschem/feedback_sukwani.spice
@@ -0,0 +1,162 @@
+
+* expanding   symbol:  tia/feedback_sukwani.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/tia/feedback_sukwani.sym
+** sch_path: /home/simon/code/particle_detector/xschem/tia/feedback_sukwani.sch
+.subckt feedback_sukwani  VP Disable_FB Out I_Bias InN InP VN
+*.iopin VN
+*.iopin VP
+*.ipin I_Bias
+*.ipin Disable_FB
+*.ipin InP
+*.ipin InN
+*.opin Out
+XM3 net1 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 I_Bias I_Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM12 net2 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*1 m=4*1
+XM13 VM13D I_Bias net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM29 Disable_FB_B Disable_FB VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM30 Disable_FB_B Disable_FB VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM47 net6 net5 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM48 net5 net5 net6 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XC8 VP VM14D sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC20 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=20 VM=1 m=1
+XM55 I_Bias Disable_FB VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2 m=2
+XM15 VM16D InP VM13D VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D InN VM13D VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM10 VM34D net9 net10 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM24 net10 net9 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM25 net9 net9 net13 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM26 VM9D net5 net14 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM27 net13 net9 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM28 net14 net5 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM43 net21 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM44 VM34D I_Bias net21 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM45 net22 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM46 VM9D I_Bias net22 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM50 VM34D Disable_FB_B VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*5 m=4*5
+XM51 VM14D VM14D net4 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM52 net4 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM5 net7 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 net8 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=9*2 m=9*2
+XM16 net5 VM14D net7 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM19 VM34D VM14D net8 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=9*8 m=9*8
+XM2 net3 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM6 VM16D VM16D net3 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM7 net11 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 net9 VM16D net11 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM9 net12 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=9*2 m=9*2
+XM18 VM9D VM16D net12 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=9*8 m=9*8
+XM20 net16 VM34D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*9 m=2*9
+XC3 VN I_Bias sky130_fd_pr__cap_mim_m3_2 W=30 L=10 VM=1 m=1
+XM23 Out VM34D net16 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*2*9 m=4*2*9
+XM31 net17 VM34D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM32 VM34D VM34D net17 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM33 net20 VM9D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM34 VM9D VM9D net20 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM35 net19 VM9D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM36 VM31D VM9D net19 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM37 net15 VM31D VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM38 Out VM31D net15 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM39 net18 VM31D VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM40 VM31D VM31D net18 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM1 VM31D Disable_FB VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=5*2 m=5*2
+XC1 VN I_Bias sky130_fd_pr__cap_mim_m3_2 W=30 L=10 VM=1 m=1
+XC4 VM16D VM14D sky130_fd_pr__cap_mim_m3_2 W=15 L=15 VM=1 m=1
+XC2 VM14D net23 sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR1 net23 VM16D VN sky130_fd_pr__res_xhigh_po_0p69 L=2 mult=1 m=1
+.ends
+
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outn\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outn\051_small.png"
new file mode 100644
index 0000000..d2bc221
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outp\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outp\051_small.png"
new file mode 100644
index 0000000..e4f7991
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.7\135_v\050tia1_outp\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outn\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outn\051_small.png"
new file mode 100644
index 0000000..ef73998
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outp\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outp\051_small.png"
new file mode 100644
index 0000000..43ef82b
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.8\135_v\050tia1_outp\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outn\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outn\051_small.png"
new file mode 100644
index 0000000..36cb650
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outp\051_small.png" "b/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outp\051_small.png"
new file mode 100644
index 0000000..a209d9e
--- /dev/null
+++ "b/xschem/final_test/tran_tia1/tran_UB_\1331.9\135_v\050tia1_outp\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outn\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outn\051_small.png"
new file mode 100644
index 0000000..e297411
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outp\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outp\051_small.png"
new file mode 100644
index 0000000..82fd7ac
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.7\135_v\050tia2_outp\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outn\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outn\051_small.png"
new file mode 100644
index 0000000..d1cd8a0
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outp\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outp\051_small.png"
new file mode 100644
index 0000000..67750b0
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.8\135_v\050tia2_outp\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outn\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outn\051_small.png"
new file mode 100644
index 0000000..bde348d
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outn\051_small.png"
Binary files differ
diff --git "a/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outp\051_small.png" "b/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outp\051_small.png"
new file mode 100644
index 0000000..ffe890b
--- /dev/null
+++ "b/xschem/final_test/tran_tia2/tran_UB_\1331.9\135_v\050tia2_outp\051_small.png"
Binary files differ
diff --git a/xschem/low_pvt_source.spice b/xschem/low_pvt_source.spice
new file mode 100644
index 0000000..ca9c6c9
--- /dev/null
+++ b/xschem/low_pvt_source.spice
@@ -0,0 +1,91 @@
+
+* expanding   symbol:  bias/low_pvt_source.sym # of pins=3
+** sym_path: /home/simon/code/particle_detector/xschem/bias/low_pvt_source.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/low_pvt_source.sch
+.subckt low_pvt_source  VP I_ref VN
+*.iopin VP
+*.opin I_ref
+*.iopin VN
+XM1 VM1D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM2 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=30 m=30
+XM5 VM9D VM8D VM1D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=65 m=65
+XM12 VM12D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM16D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM17 VM8D VM8D VM16D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM18 VM18D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*3*2 m=10*3*2
+XM19 VM14D VM8D VM18D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*3*2 m=2*3*2
+XM20 VM20D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*1*1 m=10*1*1
+XM21 VM22D VM8D VM20D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*1*1 m=2*1*1
+XM22 VM22D VM4S VM3D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM3 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM4 I_ref VM22D VM4S VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM48 VM50D VM11D VP VP sky130_fd_pr__pfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM50 VM50D VM11D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC3 VP VM8D sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XM8 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM9 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM10 VM8D VM50D VN VN sky130_fd_pr__nfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XC4 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR7 net3 VM4S VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR3 net4 net3 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR4 net2 net4 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR5 net1 net2 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR6 VN net1 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR8 net5 VM12G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR1 net5 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR2 net7 net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR9 VN net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR10 net11 net7 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR11 net12 net11 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR12 net8 net12 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR13 net10 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR14 net9 net10 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR15 net8 net9 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
diff --git a/xschem/lvds/receiver.sch b/xschem/lvds/receiver.sch
new file mode 100644
index 0000000..dbc4e9b
--- /dev/null
+++ b/xschem/lvds/receiver.sch
@@ -0,0 +1,325 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -120 -40 -120 0 { lab=#net1}
+N -120 0 110 0 { lab=#net1}
+N 110 -40 110 0 { lab=#net1}
+N -120 -240 -120 -100 { lab=#net2}
+N -120 -70 -120 -40 { lab=#net1}
+N 110 -70 110 -40 { lab=#net1}
+N 110 -240 110 -100 { lab=#net3}
+N -270 -360 -270 -300 { lab=VP}
+N -120 -360 -120 -300 { lab=VP}
+N 110 -360 110 -300 { lab=VP}
+N 260 -360 260 -300 { lab=VP}
+N -270 -360 1260 -360 { lab=VP}
+N -270 -300 -270 -270 { lab=VP}
+N -120 -300 -120 -270 { lab=VP}
+N 110 -300 110 -270 { lab=VP}
+N 260 -300 260 -270 { lab=VP}
+N 220 -270 220 -230 { lab=#net3}
+N 260 -240 260 -230 { lab=#net3}
+N 110 -220 260 -220 { lab=#net3}
+N 260 -230 260 -220 { lab=#net3}
+N 220 -230 220 -220 { lab=#net3}
+N -270 -220 -120 -220 { lab=#net2}
+N -270 -240 -270 -220 { lab=#net2}
+N -230 -270 -230 -220 { lab=#net2}
+N -80 -270 -30 -270 { lab=#net3}
+N -30 -270 20 -220 { lab=#net3}
+N 20 -220 110 -220 { lab=#net3}
+N -120 -220 -20 -220 { lab=#net2}
+N -20 -220 30 -270 { lab=#net2}
+N 30 -270 70 -270 { lab=#net2}
+N 0 -0 0 30 { lab=#net1}
+N 0 240 100 240 { lab=VN}
+N 0 180 0 240 { lab=VN}
+N 0 90 0 120 { lab=#net1}
+N 0 150 0 180 { lab=VN}
+N -510 180 -510 240 { lab=VN}
+N -510 90 -510 120 { lab=I_bias}
+N -510 150 -510 180 { lab=VN}
+N -510 240 0 240 { lab=VN}
+N -470 150 -40 150 { lab=I_bias}
+N -510 -80 -510 30 { lab=I_bias}
+N 100 240 1000 240 { lab=VN}
+N 540 -240 540 60 { lab=#net4}
+N 540 150 540 240 { lab=VN}
+N 730 -240 730 60 { lab=#net5}
+N 540 60 540 90 { lab=#net4}
+N 540 120 540 150 { lab=VN}
+N 580 70 580 120 { lab=#net4}
+N 540 70 580 70 { lab=#net4}
+N 580 120 690 120 { lab=#net4}
+N 730 120 730 150 { lab=VN}
+N 730 150 730 240 { lab=VN}
+N 730 60 730 90 { lab=#net5}
+N 730 -300 730 -270 { lab=VP}
+N 730 -360 730 -300 { lab=VP}
+N 540 -300 540 -270 { lab=VP}
+N 540 -360 540 -300 { lab=VP}
+N 400 -270 500 -270 { lab=#net3}
+N 260 -220 390 -220 { lab=#net3}
+N 390 -270 390 -220 { lab=#net3}
+N 390 -270 400 -270 { lab=#net3}
+N -120 -180 770 -180 { lab=#net2}
+N 770 -270 770 -180 { lab=#net2}
+N 930 -240 930 90 { lab=#net6}
+N 890 -270 890 120 { lab=#net5}
+N 930 -300 930 -270 { lab=VP}
+N 930 -360 930 -300 { lab=VP}
+N 930 120 930 150 { lab=VN}
+N 930 150 930 240 { lab=VN}
+N 1110 -240 1110 90 { lab=RX_out}
+N 1070 -270 1070 120 { lab=#net6}
+N 1110 -300 1110 -270 { lab=VP}
+N 1110 -360 1110 -300 { lab=VP}
+N 1110 120 1110 150 { lab=VN}
+N 1110 150 1110 240 { lab=VN}
+N 1000 240 1180 240 { lab=VN}
+N 730 -80 890 -80 { lab=#net5}
+N 930 -80 1070 -80 { lab=#net6}
+N 0 30 0 90 { lab=#net1}
+N -510 90 -470 90 { lab=I_bias}
+N -470 90 -470 150 { lab=I_bias}
+N 150 -70 180 -70 { lab=RX_N}
+N -190 -70 -160 -70 { lab=RX_P}
+N -650 -360 -270 -360 { lab=VP}
+N -650 240 -510 240 { lab=VN}
+N 1110 -80 1180 -80 { lab=RX_out}
+N -570 -220 -510 -220 { lab=I_bias}
+N -510 -220 -510 -80 { lab=I_bias}
+N -510 30 -510 90 { lab=I_bias}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} -140 -70 0 0 {name=M1
+L=0.15
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 130 -70 0 1 {name=M3
+L=0.15
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -20 150 0 0 {name=M4
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} -100 -270 0 1 {name=M7
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} -250 -270 0 1 {name=M8
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 90 -270 0 0 {name=M5
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 240 -270 0 0 {name=M6
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 520 -270 0 0 {name=M10
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 750 -270 0 1 {name=M11
+L=0.35
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -490 150 0 1 {name=M12
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 560 120 0 1 {name=M13
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 710 120 0 0 {name=M14
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 910 120 0 0 {name=M15
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 910 -270 0 0 {name=M16
+L=0.15
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1090 120 0 0 {name=M17
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1090 -270 0 0 {name=M18
+L=0.15
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -190 -70 0 0 {name=p1 lab=RX_P}
+C {devices/iopin.sym} -650 -360 0 1 {name=p2 lab=VP}
+C {devices/opin.sym} 1180 -80 0 0 {name=p3 lab=RX_out}
+C {devices/ipin.sym} 180 -70 0 1 {name=p4 lab=RX_N}
+C {devices/iopin.sym} -650 240 0 1 {name=p5 lab=VN}
+C {devices/ipin.sym} -570 -220 0 0 {name=p6 lab=I_bias}
diff --git a/xschem/lvds/receiver.spice b/xschem/lvds/receiver.spice
new file mode 100644
index 0000000..841c98f
--- /dev/null
+++ b/xschem/lvds/receiver.spice
@@ -0,0 +1,56 @@
+** sch_path: /home/simon/code/asic/analog/lvds/receiver.sch
+**.subckt receiver RX_P xxx xxx RX_N
+*.ipin RX_P
+*.iopin xxx
+*.opin xxx
+*.ipin RX_N
+XM1 net2 RX_P net1 net1 sky130_fd_pr__nfet_01v8_lvt L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM3 net3 RX_N net1 net1 sky130_fd_pr__nfet_01v8_lvt L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM4 net1 net6 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM7 net2 net3 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM8 net2 net2 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM5 net3 net2 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM6 net3 net3 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM10 net8 net3 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM11 net9 net2 net4 net4 sky130_fd_pr__pfet_01v8_lvt L=0.35 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM12 net6 net6 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM13 net8 net8 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM14 net9 net8 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM15 net10 net9 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM16 net10 net9 net4 net4 sky130_fd_pr__pfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM17 net11 net10 net5 net5 sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM18 net11 net10 net4 net4 sky130_fd_pr__pfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+**.ends
+.end
diff --git a/xschem/lvds/receiver.sym b/xschem/lvds/receiver.sym
new file mode 100644
index 0000000..88c60ea
--- /dev/null
+++ b/xschem/lvds/receiver.sym
@@ -0,0 +1,29 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -54 -6 0 0 0.3 0.3 {}
+T {@name} 135 -42 0 0 0.2 0.2 {}
+L 4 -130 -30 130 -30 {}
+L 4 -130 30 130 30 {}
+L 4 -130 -30 -130 30 {}
+L 4 130 -30 130 30 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=VP dir=inout }
+L 7 130 -20 150 -20 {}
+T {VP} 125 -24 0 1 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=I_bias dir=in }
+L 4 -150 -20 -130 -20 {}
+T {I_bias} -125 -24 0 0 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=RX_out dir=out }
+L 4 130 0 150 0 {}
+T {RX_out} 125 -4 0 1 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=RX_N dir=in }
+L 4 -150 0 -130 0 {}
+T {RX_N} -125 -4 0 0 0.2 0.2 {}
+B 5 -152.5 17.5 -147.5 22.5 {name=RX_P dir=in }
+L 4 -150 20 -130 20 {}
+T {RX_P} -125 16 0 0 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=VN dir=inout }
+L 7 130 20 150 20 {}
+T {VN} 125 16 0 1 0.2 0.2 {}
diff --git a/xschem/lvds/transmitter.sch b/xschem/lvds/transmitter.sch
new file mode 100644
index 0000000..0d151e1
--- /dev/null
+++ b/xschem/lvds/transmitter.sch
@@ -0,0 +1,522 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {For electrical specifications see: 
+https://docs.xilinx.com/r/en-US/ds926-zynq-ultrascale-plus-rfsoc/LVDS-DC-Specifications-LVDS
+
+We aim for a common mode voltage of 1.25V and a differential output voltage of 350mV} 810 -720 0 0 0.2 0.2 {}
+T {120uA} 130 0 0 0 0.3 0.3 {}
+T {3.5mA} 500 80 0 0 0.3 0.3 {}
+T {3.5mA} 780 -560 0 0 0.3 0.3 {}
+T {240uA} 1570 100 0 0 0.3 0.3 {}
+T {nom. 120uA} 1310 -560 0 0 0.3 0.3 {}
+T {Switching:
+
+High= M4 and M2 conductive
+Low= M3 and M5 conductive
+
+} -450 -450 0 0 0.2 0.2 {}
+T {Switches:
+n-channel: ~20µA/µm width ==> 175µm
+p-channel: ~10µA/µm width ==> 350µm} 720 80 0 0 0.2 0.2 {}
+T {Current mirror
+n-channel 0.3µm: ~5µA/µm width ==> 700µm
+p-channel 0.3µm: ~2.5µA/µm width ==> 1400µm} 720 140 0 0 0.2 0.2 {}
+T {generate 1.2V reference by simply 
+dividing the supply voltage
+TODO 1: A bandgap reference 
+would be preferable 
+TODO 2: LVDS should have a voltage of ~1.2V.
+Currently we set it to ~1.1V. That's ok but 
+not ideal.} 1250 -100 0 1 0.2 0.2 {}
+T {nom. 120uA} 1640 -560 0 0 0.3 0.3 {}
+T {TODO: The current sources are oversized. 
+Consider shrinking them to reduce the footprint} 700 240 0 0 0.2 0.2 {}
+N 520 -610 760 -610 { lab=VP}
+N -540 -610 520 -610 { lab=VP}
+N 730 -60 770 -60 { lab=OutP}
+N 770 -60 770 -20 { lab=OutP}
+N 630 -60 670 -60 { lab=vm20g}
+N 520 -60 570 -60 { lab=OutN}
+N 520 -60 520 -20 { lab=OutN}
+N 570 50 570 110 { lab=vm1d}
+N 520 50 570 50 { lab=vm1d}
+N 520 40 520 50 { lab=vm1d}
+N 580 50 770 50 { lab=vm1d}
+N 770 40 770 50 { lab=vm1d}
+N 570 50 580 50 { lab=vm1d}
+N 570 140 680 140 { lab=VN}
+N 680 140 680 210 { lab=VN}
+N 570 300 680 300 { lab=VN}
+N 520 10 770 10 { lab=VN}
+N 600 -40 600 -30 { lab=VN}
+N 600 -30 700 -30 { lab=VN}
+N 700 -40 700 -30 { lab=VN}
+N 680 -20 680 10 { lab=VN}
+N 680 -30 680 -20 { lab=VN}
+N 680 210 680 300 { lab=VN}
+N 570 260 570 300 { lab=VN}
+N 570 230 670 230 { lab=VN}
+N 670 230 680 230 { lab=VN}
+N 530 140 530 230 { lab=Bias}
+N 180 260 180 300 { lab=VN}
+N 100 230 180 230 { lab=VN}
+N 100 230 100 300 { lab=VN}
+N 100 140 180 140 { lab=VN}
+N 100 140 100 230 { lab=VN}
+N 220 140 220 230 { lab=Bias}
+N 760 -610 770 -610 { lab=VP}
+N 520 -310 770 -310 { lab=vm6d}
+N 520 -250 520 -60 { lab=OutN}
+N 770 -250 770 -60 { lab=OutP}
+N 770 -350 770 -320 { lab=vm6d}
+N 770 -320 770 -310 { lab=vm6d}
+N 770 -610 1260 -610 { lab=VP}
+N 680 300 1270 300 { lab=VN}
+N 1270 -90 1270 -30 { lab=vm19g}
+N 1460 160 1460 200 { lab=#net1}
+N 1460 130 1540 130 { lab=VN}
+N 1540 130 1540 200 { lab=VN}
+N 1460 220 1530 220 { lab=VN}
+N 1530 220 1540 220 { lab=VN}
+N 1420 130 1420 220 { lab=Bias}
+N 1270 300 1380 300 { lab=VN}
+N 1460 250 1460 300 { lab=VN}
+N 1270 -610 1270 -150 { lab=VP}
+N 1260 -610 1270 -610 { lab=VP}
+N 770 -440 770 -410 { lab=#net2}
+N 770 -610 770 -500 { lab=VP}
+N 660 -380 770 -380 { lab=VP}
+N 180 170 180 200 { lab=#net3}
+N 650 -610 650 -380 { lab=VP}
+N 650 -470 770 -470 { lab=VP}
+N 650 -380 660 -380 { lab=VP}
+N 220 80 220 140 { lab=Bias}
+N 180 80 220 80 { lab=Bias}
+N 180 80 180 110 { lab=Bias}
+N 220 230 220 280 { lab=Bias}
+N 220 280 530 280 { lab=Bias}
+N 530 230 530 280 { lab=Bias}
+N 530 280 1340 280 { lab=Bias}
+N 1420 220 1420 280 { lab=Bias}
+N 1420 50 1420 90 { lab=vm11d}
+N 1420 90 1460 90 { lab=vm11d}
+N 1460 90 1460 100 { lab=vm11d}
+N 1460 90 1630 90 { lab=vm11d}
+N 1630 50 1630 90 { lab=vm11d}
+N 1420 20 1630 20 { lab=VN}
+N 1540 200 1540 220 { lab=VN}
+N 1460 300 1530 300 { lab=VN}
+N 1530 300 1540 300 { lab=VN}
+N 1540 220 1540 300 { lab=VN}
+N 1540 20 1540 130 { lab=VN}
+N 1340 280 1420 280 { lab=Bias}
+N 1380 300 1460 300 { lab=VN}
+N 1420 -350 1420 -10 { lab=vm19d}
+N 1630 -350 1630 -10 { lab=vm20d}
+N 1270 -610 1630 -610 { lab=VP}
+N 1630 -610 1630 -500 { lab=VP}
+N 1420 -440 1420 -410 { lab=#net4}
+N 1630 -440 1630 -410 { lab=#net5}
+N 1420 -610 1420 -500 { lab=VP}
+N 1420 -470 1630 -470 { lab=VP}
+N 1420 -380 1630 -380 { lab=VP}
+N 1520 -470 1520 -380 { lab=VP}
+N 1520 -610 1520 -470 { lab=VP}
+N 1380 -330 1420 -330 { lab=vm19d}
+N 1380 -380 1380 -330 { lab=vm19d}
+N 1380 -470 1380 -380 { lab=vm19d}
+N 1630 -330 1670 -330 { lab=vm20d}
+N 1670 -380 1670 -330 { lab=vm20d}
+N 1670 -470 1670 -380 { lab=vm20d}
+N 810 -470 810 -380 { lab=vm19d}
+N 810 -380 810 -330 { lab=vm19d}
+N 810 -330 1380 -330 { lab=vm19d}
+N 1290 -120 1310 -120 { lab=VN}
+N 1310 -120 1310 300 { lab=VN}
+N 650 -190 650 -60 { lab=vm20g}
+N 650 -190 1370 -190 { lab=vm20g}
+N 1370 20 1380 20 { lab=vm19g}
+N 1670 -30 1670 20 { lab=vm20g}
+N 1490 -70 1490 -30 { lab=vm20d}
+N 1370 -190 1490 -190 { lab=vm20g}
+N 1490 -190 1490 -140 { lab=vm20g}
+N 1490 -140 1490 -130 { lab=vm20g}
+N 770 -120 800 -120 { lab=OutP}
+N 480 -120 520 -120 { lab=OutN}
+N 150 30 180 30 { lab=Bias}
+N 180 30 180 80 { lab=Bias}
+N 390 0 390 10 { lab=vm2g}
+N 390 10 480 10 { lab=vm2g}
+N -90 -210 810 -210 { lab=vm5g}
+N 390 -50 390 -0 { lab=vm2g}
+N -280 -280 -220 -280 { lab=vx1y}
+N -380 -280 -360 -280 { lab=vx14y}
+N -280 0 -220 0 { lab=vx6y}
+N -630 0 -600 0 { lab=In}
+N -650 0 -630 0 { lab=In}
+N -410 -280 -380 -280 { lab=vx14y}
+N 520 -280 770 -280 { lab=VP}
+N 1270 -30 1270 20 { lab=vm19g}
+N 1270 80 1270 300 { lab=VN}
+N 1290 50 1310 50 { lab=VN}
+N 810 10 890 10 { lab=vm5g}
+N 890 -210 890 10 { lab=vm5g}
+N 810 -210 890 -210 { lab=vm5g}
+N -540 300 570 300 { lab=VN}
+N 420 250 420 300 { lab=VN}
+N 570 170 570 200 { lab=#net6}
+N 810 -280 890 -280 { lab=vm5g}
+N 890 -280 890 -220 { lab=vm5g}
+N 890 -220 890 -210 { lab=vm5g}
+N 390 -280 390 -50 { lab=vm2g}
+N 390 -280 480 -280 { lab=vm2g}
+N 1270 20 1370 20 { lab=vm19g}
+N 1490 -190 1670 -190 { lab=vm20g}
+N 1670 -190 1670 -30 { lab=vm20g}
+N 1490 -30 1630 -30 { lab=vm20d}
+N -140 -280 -10 -280 { lab=vm2g}
+N -10 -280 390 -280 { lab=vm2g}
+N -280 0 -220 0 { lab=vx6y}
+N -140 -280 -140 -210 { lab=vm2g}
+N -140 -210 -140 -140 { lab=vm2g}
+N -140 -140 -140 -70 { lab=vm2g}
+N -140 0 -140 210 { lab=vm5g}
+N -220 -280 -220 -70 { lab=vx1y}
+N -220 -0 -220 220 { lab=vx6y}
+N -520 -0 -360 0 { lab=vx9y}
+N -510 -280 -490 -280 { lab=vx9y}
+N -510 -280 -510 -0 { lab=vx9y}
+N -140 -0 -90 0 { lab=vm5g}
+N -90 -210 -90 0 { lab=vm5g}
+N 770 50 990 50 { lab=vm1d}
+N 990 50 990 80 { lab=vm1d}
+N 990 140 990 300 { lab=VN}
+N 770 -310 940 -310 { lab=vm6d}
+N 940 -310 940 -280 { lab=vm6d}
+N 940 -220 940 0 { lab=VN}
+N 940 0 1130 0 { lab=VN}
+N 1130 0 1130 300 { lab=VN}
+N 650 -380 650 -280 { lab=VP}
+N 420 190 530 190 { lab=Bias}
+N 680 10 680 140 { lab=VN}
+N -60 -610 -60 -530 { lab=VP}
+N -60 -530 60 -530 { lab=VP}
+N -60 -470 60 -470 { lab=VN}
+N -60 -470 -60 300 { lab=VN}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 600 -60 3 0 {name=R1
+W=0.35
+L=20
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/pfet_01v8.sym} 500 -280 0 0 {name=M3
+L=0.15
+W=2
+nf=1
+mult=90
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 790 -280 0 1 {name=M4
+L=0.15
+W=2
+nf=1
+mult=90
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -650 0 0 0 {name=p1 lab=In}
+C {devices/iopin.sym} -540 -610 0 1 {name=p2 lab=VP}
+C {devices/opin.sym} 800 -120 0 0 {name=p3 lab=OutP}
+C {sky130_fd_pr/pfet_01v8.sym} 790 -380 0 1 {name=M7
+L=0.15
+W=2
+nf=1
+mult=24*2*29
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 700 -60 3 0 {name=R2
+W=0.35
+L=20
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 1270 -120 0 1 {name=R3
+W=0.35
+L=20
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {devices/iopin.sym} -540 300 0 1 {name=p4 lab=VN}
+C {sky130_fd_pr/nfet_01v8.sym} 200 140 0 1 {name=M9
+L=0.15
+W=2
+nf=1 
+mult=12*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 200 230 0 1 {name=M10
+L=0.3
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_xhigh_po_0p35.sym} 1270 50 0 1 {name=R4
+W=0.35
+L=30
+model=res_xhigh_po_0p35
+spiceprefix=X
+mult=1}
+C {sky130_fd_pr/nfet_01v8.sym} 1440 130 0 0 {name=M11
+L=0.15
+W=2
+nf=1 
+mult=12*4*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1440 220 0 0 {name=M12
+L=0.3
+W=2
+nf=1 
+mult=12*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 790 -470 0 1 {name=M13
+L=0.3
+W=2
+nf=1
+mult=24*29
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1400 20 0 0 {name=M19
+L=0.3
+W=2
+nf=1
+mult=24
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1650 20 0 1 {name=M20
+L=0.3
+W=2
+nf=1
+mult=24
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1400 -380 0 0 {name=M21
+L=0.15
+W=2
+nf=1
+mult=24*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1400 -470 0 0 {name=M22
+L=0.3
+W=2
+nf=1
+mult=24
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1650 -470 0 1 {name=M24
+L=0.3
+W=2
+nf=1
+mult=24
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 1490 -100 0 0 {name=C2 model=cap_mim_m3_1 W=30 L=10 MF=1 spiceprefix=X}
+C {devices/opin.sym} 480 -120 0 1 {name=p5 lab=OutN}
+C {devices/ipin.sym} 150 30 0 0 {name=p6 lab=Bias}
+C {sky130_stdcells/inv_16.sym} -180 -280 0 0 {name=x5 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_fd_pr/pfet_01v8.sym} 1650 -380 0 1 {name=M23
+L=0.15
+W=2
+nf=1
+mult=24*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 390 10 0 1 {name=l5 sig_type=std_logic lab=vm2g}
+C {devices/lab_wire.sym} 870 10 0 0 {name=l6 sig_type=std_logic lab=vm5g}
+C {devices/lab_wire.sym} 580 -310 0 1 {name=l7 sig_type=std_logic lab=vm6d}
+C {devices/lab_wire.sym} 1420 -260 0 1 {name=l8 sig_type=std_logic lab=vm19d}
+C {devices/lab_wire.sym} 1630 -260 0 0 {name=l9 sig_type=std_logic lab=vm20d}
+C {sky130_stdcells/inv_4.sym} -560 0 0 0 {name=x9 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 -210 0 0 {name=x2 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 -140 0 0 {name=x3 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 -70 0 0 {name=x4 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {devices/lab_wire.sym} 1530 -190 0 1 {name=l3 sig_type=std_logic lab=vm20g}
+C {sky130_fd_pr/nfet_01v8.sym} 550 140 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=12*29*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 550 230 0 0 {name=M8
+L=0.3
+W=2
+nf=1 
+mult=12*29
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 570 90 0 1 {name=l2 sig_type=std_logic lab=vm1d}
+C {devices/lab_wire.sym} 1330 20 0 1 {name=l4 sig_type=std_logic lab=vm19g}
+C {devices/lab_wire.sym} 1470 90 0 1 {name=l10 sig_type=std_logic lab=vm11d}
+C {sky130_stdcells/inv_16.sym} -180 0 0 0 {name=x11 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 70 0 0 {name=x19 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 140 0 0 {name=x20 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -180 210 0 0 {name=x21 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_4.sym} -450 -280 0 0 {name=x14 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -320 -280 0 0 {name=x1 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_stdcells/inv_16.sym} -320 0 0 0 {name=x6 VGND=VN VNB=VN VPB=VP VPWR=VP prefix=sky130_fd_sc_hs__ }
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 500 10 0 0 {name=M2
+L=0.15
+W=2
+nf=1
+mult=50
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 790 10 0 1 {name=M5
+L=0.15
+W=2
+nf=1
+mult=50
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} -60 -500 2 1 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 60 -500 2 1 {name=C3 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} -270 -280 0 1 {name=l1 sig_type=std_logic lab=vx1y}
+C {devices/lab_wire.sym} -400 -280 0 1 {name=l11 sig_type=std_logic lab=vx14y}
+C {devices/lab_wire.sym} -480 0 0 1 {name=l12 sig_type=std_logic lab=vx9y}
+C {devices/lab_wire.sym} -270 0 0 1 {name=l13 sig_type=std_logic lab=vx6y}
+C {devices/code.sym} 1840 -510 0 0 {name=MODELS only_toplevel=true value="
+.include /usr/local/share/pdk/sky130B/libs.ref/sky130_fd_sc_hs/spice/sky130_fd_sc_hs.spice
+"}
diff --git a/xschem/lvds/transmitter.spice b/xschem/lvds/transmitter.spice
new file mode 100644
index 0000000..daf13b7
--- /dev/null
+++ b/xschem/lvds/transmitter.spice
@@ -0,0 +1,100 @@
+** sch_path: /home/simon/code/asic/analog/lvds/transmitter.sch
+**.subckt transmitter In VP OutP VN OutN Bias
+*.ipin In
+*.iopin VP
+*.opin OutP
+*.iopin VN
+*.opin OutN
+*.ipin Bias
+XR1 net1 OutN VN sky130_fd_pr__res_xhigh_po_0p35 L=10 mult=1 m=1
+XM3 OutN vm2g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=180 m=180
+XM4 OutP vm5g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=180 m=180
+XM6 vm6d vm15d net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*26 m=24*26
+XM7 vm6d vm19d net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*6 m=24*6
+XR2 OutP net1 VN sky130_fd_pr__res_xhigh_po_0p35 L=10 mult=1 m=1
+XR3 vm20g VP VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XM9 Bias Bias net7 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM10 net7 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XR4 VN vm20g VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XM11 net9 Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*2 m=12*2
+XM12 net3 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*2 m=12*2
+XM13 net5 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*6 m=24*6
+XM14 net4 vm15d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*26 m=24*26
+XM17 vm15d vm15d net6 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XM18 net6 vm15d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XM19 vm19d net1 net9 VN sky130_fd_pr__nfet_01v8_lvt L=0.5 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XM20 vm20d vm20g net9 VN sky130_fd_pr__nfet_01v8_lvt L=0.5 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=24 m=24
+XM21 vm19d vm19d net10 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+XM22 net10 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+XM24 net11 vm20d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+XC2 net1 vm20g sky130_fd_pr__cap_mim_m3_1 W=10 L=10 MF=1 m=1
+x5 net13 VN VN VP VP __UNCONNECTED_PIN__0 sky130_fd_sc_hs__inv_16
+x1 net14 VN VN VP VP net13 sky130_fd_sc_hs__inv_4
+x14 net19 VN VN VP VP net14 sky130_fd_sc_hs__inv_1
+XM2 OutN vm2g net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM5 OutP vm5g net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM15 vm15d Bias net8 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM16 net8 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM23 vm20d vm20d net11 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+x10 net19 VN VN VP VP net18 sky130_fd_sc_hs__inv_1
+x6 net19 VN VN VP VP net15 sky130_fd_sc_hs__inv_4
+x7 net19 VN VN VP VP net17 sky130_fd_sc_hs__inv_4
+x8 net18 VN VN VP VP net16 sky130_fd_sc_hs__inv_4
+x9 In VN VN VP VP net19 sky130_fd_sc_hs__inv_4
+x2 net15 VN VN VP VP net12 sky130_fd_sc_hs__inv_16
+x3 net17 VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x4 net16 VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+XC1 net2 VN sky130_fd_pr__cap_mim_m3_1 W=10 L=10 MF=1 m=1
+XC3 Bias VN sky130_fd_pr__cap_mim_m3_1 W=10 L=10 MF=1 m=1
+XM1 net2 Bias net20 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29 m=12*29
+XM8 net20 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29 m=12*29
+**.ends
+.end
diff --git a/xschem/lvds/transmitter.sym b/xschem/lvds/transmitter.sym
new file mode 100644
index 0000000..ef85b44
--- /dev/null
+++ b/xschem/lvds/transmitter.sym
@@ -0,0 +1,30 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -67.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=OutP dir=out }
+L 4 130 -10 150 -10 {}
+T {OutP} 125 -14 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=In dir=in }
+L 4 -150 -30 -130 -30 {}
+T {In} -125 -34 0 0 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=OutN dir=out }
+L 4 130 10 150 10 {}
+T {OutN} 125 6 0 1 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=Bias dir=in }
+L 4 -150 -10 -130 -10 {}
+T {Bias} -125 -14 0 0 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=VN dir=inout }
+L 7 130 30 150 30 {}
+T {VN} 125 26 0 1 0.2 0.2 {}
diff --git a/xschem/lvds/xschemrc b/xschem/lvds/xschemrc
new file mode 100644
index 0000000..1a02a9e
--- /dev/null
+++ b/xschem/lvds/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+# set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/mpw6_submission.sch b/xschem/mpw6_submission.sch
new file mode 100644
index 0000000..7a14c36
--- /dev/null
+++ b/xschem/mpw6_submission.sch
@@ -0,0 +1,181 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 80 50 2110 50 { lab=VN}
+N 2110 50 2120 50 { lab=VN}
+N 120 -750 2120 -750 { lab=VP_an}
+N 270 -750 270 -650 { lab=VP_an}
+N 750 -750 750 -630 { lab=VP_an}
+N 1330 -660 1410 -660 { lab=In_TIA}
+N 1350 -640 1410 -640 { lab=#net1}
+N 1710 -620 1760 -620 { lab=Tia_Out}
+N 1710 -640 1790 -640 { lab=Tia_ref}
+N 2240 -680 2280 -680 { lab=Out_N}
+N 2240 -660 2280 -660 { lab=Out_P}
+N 1710 -660 1750 -660 { lab=#net2}
+N 1330 -680 1410 -680 { lab=Dis_TIA}
+N 860 -570 860 -500 { lab=#net3}
+N 750 -570 860 -570 { lab=#net3}
+N 750 -450 750 50 { lab=VN}
+N 750 -590 890 -590 { lab=I_out}
+N 270 -610 270 50 { lab=VN}
+N 270 -630 450 -630 { lab=#net4}
+N 750 -610 790 -610 { lab=#net5}
+N 750 -550 790 -550 { lab=#net6}
+N 750 -530 790 -530 { lab=#net7}
+N 750 -510 790 -510 { lab=#net8}
+N 750 -490 790 -490 { lab=#net9}
+N 750 -470 790 -470 { lab=#net10}
+N 1390 -520 1410 -520 { lab=Dis_FB}
+N 1240 -750 1240 -500 { lab=VP_an}
+N 1230 -180 1230 50 { lab=VN}
+N 1710 -600 1770 -600 { lab=VN}
+N 1770 -600 1770 50 { lab=VN}
+N 1710 -480 1770 -480 { lab=VN}
+N 1710 -520 1730 -520 { lab=VP_an}
+N 1730 -750 1730 -520 { lab=VP_an}
+N 1710 -680 1730 -680 { lab=VP_an}
+N 1710 -500 1750 -500 { lab=In_TIA}
+N 1750 -570 1750 -500 { lab=In_TIA}
+N 1390 -570 1750 -570 { lab=In_TIA}
+N 1380 -570 1390 -570 { lab=In_TIA}
+N 1380 -660 1380 -570 { lab=In_TIA}
+N 1790 -640 1800 -640 { lab=Tia_ref}
+N 1920 -660 1940 -660 { lab=Tia_ref}
+N 1900 -680 1940 -680 { lab=Tia_Out}
+N 1800 -640 1890 -640 { lab=Tia_ref}
+N 1890 -640 1890 -520 { lab=Tia_ref}
+N 1890 -520 2040 -520 { lab=Tia_ref}
+N 1890 -660 1920 -660 { lab=Tia_ref}
+N 1890 -660 1890 -640 { lab=Tia_ref}
+N 1870 -680 1900 -680 { lab=Tia_Out}
+N 1870 -680 1870 -620 { lab=Tia_Out}
+N 1760 -620 1870 -620 { lab=Tia_Out}
+N 1870 -620 1870 -500 { lab=Tia_Out}
+N 1870 -500 2040 -500 { lab=Tia_Out}
+N 1360 -480 1410 -480 { lab=Tia_ref}
+N 1360 -480 1360 -420 { lab=Tia_ref}
+N 1810 -620 1810 -420 { lab=Tia_Out}
+N 1380 -460 1410 -460 { lab=Tia_Out}
+N 1380 -420 1810 -420 { lab=Tia_Out}
+N 1380 -460 1380 -420 { lab=Tia_Out}
+N 1360 -420 1360 -410 { lab=Tia_ref}
+N 1360 -410 1360 -400 { lab=Tia_ref}
+N 1360 -400 1830 -400 { lab=Tia_ref}
+N 1830 -640 1830 -400 { lab=Tia_ref}
+N 1340 -500 1340 -460 { lab=#net11}
+N 1340 -500 1410 -500 { lab=#net11}
+N 1320 -640 1320 -440 { lab=#net1}
+N 1320 -640 1350 -640 { lab=#net1}
+N 1850 -700 1940 -700 { lab=Bias_A_out}
+N 1210 -420 1300 -420 { lab=Bias_A_out}
+N 1210 -400 1300 -400 { lab=Comp_Bias_1}
+N 1210 -380 1300 -380 { lab=Bias_ctl}
+N 1210 -360 1300 -360 { lab=#net1}
+N 1210 -340 1300 -340 { lab=Comp_Bias_3}
+N 1210 -320 1300 -320 { lab=Comp_Bias_4}
+N 1210 -280 1300 -280 { lab=Comp_Bias_6}
+N 1340 -460 1340 -300 { lab=#net11}
+N 1210 -460 1300 -460 { lab=Bias_LVDS}
+N 1920 -420 2040 -420 { lab=Bias_ctl}
+N 1920 -400 2040 -400 { lab=Comp_Bias_4}
+N 1920 -380 2040 -380 { lab=Comp_Bias_6}
+N 1920 -360 2040 -360 { lab=Comp_Bias_5}
+N 1920 -340 2040 -340 { lab=Ref_B}
+N 1920 -320 2040 -320 { lab=Comp_Bias_3}
+N 1920 -440 2040 -440 { lab=Comp_Bias_2}
+N 1920 -460 2040 -460 { lab=Ref_A}
+N 1920 -480 2040 -480 { lab=Comp_Bias_1}
+N 1230 -220 1230 -180 { lab=VN}
+N 2340 -520 2400 -520 { lab=VP_an}
+N 2400 -750 2400 -520 { lab=VP_an}
+N 2120 -750 2400 -750 { lab=VP_an}
+N 2340 -480 2400 -480 { lab=VN}
+N 2400 -480 2400 50 { lab=VN}
+N 2120 50 2870 50 { lab=VN}
+N 2840 -440 2870 -440 { lab=VN}
+N 2870 -440 2870 50 { lab=VN}
+N 2860 -750 2860 -500 { lab=VP_dig}
+N 2840 -500 2860 -500 { lab=VP_dig}
+N 2840 -480 2880 -480 { lab=Out_P_LVDS}
+N 2840 -460 2880 -460 { lab=Out_N_LVDS}
+N 2440 -480 2540 -480 { lab=Bias_LVDS}
+N 2420 -500 2540 -500 { lab=#net12}
+N 2340 -500 2420 -500 { lab=#net12}
+N 1320 -440 1320 -380 { lab=#net1}
+N 1210 -440 1300 -440 { lab=Comp_Bias_2}
+N 120 -810 2860 -810 { lab=VP_dig}
+N 2860 -810 2860 -750 { lab=VP_dig}
+N 1210 -240 1230 -240 { lab=VN}
+N 1230 -240 1230 -220 { lab=VN}
+N 1210 -260 1340 -260 { lab=#net11}
+N 1340 -300 1340 -260 { lab=#net11}
+N 1210 -300 1300 -300 { lab=Comp_Bias_5}
+N 1300 -360 1320 -360 { lab=#net1}
+N 1320 -380 1320 -360 { lab=#net1}
+N 1210 -480 1240 -480 { lab=VP_an}
+N 1240 -500 1240 -480 { lab=VP_an}
+N 860 -480 910 -480 { lab=#net3}
+N 860 -500 860 -480 { lab=#net3}
+N 2240 -750 2240 -700 { lab=VP_an}
+N 2240 -640 2380 -640 { lab=VN}
+N 2380 -640 2380 -480 { lab=VN}
+C {outdriver/outdriver.sym} 2090 -670 0 0 {name=x4}
+C {bias/current_mirrorx8.sym} 600 -540 0 0 {name=x5}
+C {bias/low_pvt_source.sym} 120 -630 0 0 {name=x6}
+C {bias/current_mirror_channel.sym} 1060 -360 0 0 {name=x7}
+C {tia/tia_rgc_core.sym} 1560 -640 0 0 {name=x8}
+C {devices/iopin.sym} 120 -750 0 1 {name=p1 lab=VP_an}
+C {devices/ipin.sym} 1330 -660 0 0 {name=p2 lab=In_TIA}
+C {devices/opin.sym} 2280 -680 0 0 {name=p3 lab=Out_N}
+C {devices/iopin.sym} 80 50 0 1 {name=p4 lab=VN}
+C {devices/opin.sym} 2280 -660 0 0 {name=p5 lab=Out_P}
+C {devices/noconn.sym} 1750 -660 2 0 {name=l2}
+C {devices/ipin.sym} 1330 -680 0 0 {name=p6 lab=Dis_TIA}
+C {devices/opin.sym} 890 -590 0 0 {name=p7 lab=I_out}
+C {devices/noconn.sym} 790 -610 2 0 {name=l3}
+C {devices/noconn.sym} 790 -550 2 0 {name=l4}
+C {devices/noconn.sym} 790 -530 2 0 {name=l5}
+C {devices/noconn.sym} 790 -510 2 0 {name=l6}
+C {devices/noconn.sym} 790 -490 2 0 {name=l7}
+C {devices/noconn.sym} 790 -470 2 0 {name=l8}
+C {tia/feedback_sukwani.sym} 1560 -490 0 0 {name=x1}
+C {lvds/transmitter.sym} 2690 -470 0 0 {name=x3}
+C {devices/ipin.sym} 1390 -520 0 0 {name=p8 lab=Dis_FB}
+C {comp/comparator_complete.sym} 2190 -420 0 0 {name=x2}
+C {devices/ipin.sym} 1920 -340 0 0 {name=p9 lab=Ref_B}
+C {devices/ipin.sym} 1920 -460 0 0 {name=p10 lab=Ref_A}
+C {devices/lab_wire.sym} 1220 -400 0 1 {name=l1 sig_type=std_logic lab=Comp_Bias_1}
+C {devices/lab_wire.sym} 1930 -380 0 1 {name=l9 sig_type=std_logic lab=Comp_Bias_6}
+C {devices/lab_wire.sym} 1930 -360 0 1 {name=l10 sig_type=std_logic lab=Comp_Bias_5}
+C {devices/lab_wire.sym} 1930 -400 0 1 {name=l11 sig_type=std_logic lab=Comp_Bias_4}
+C {devices/lab_wire.sym} 1930 -420 0 1 {name=l12 sig_type=std_logic lab=Bias_ctl}
+C {devices/lab_wire.sym} 1930 -440 0 1 {name=l13 sig_type=std_logic lab=Comp_Bias_2}
+C {devices/lab_wire.sym} 1930 -480 0 1 {name=l14 sig_type=std_logic lab=Comp_Bias_1}
+C {devices/lab_wire.sym} 1930 -320 0 1 {name=l15 sig_type=std_logic lab=Comp_Bias_3}
+C {devices/lab_wire.sym} 1220 -300 0 1 {name=l16 sig_type=std_logic lab=Comp_Bias_5}
+C {devices/lab_wire.sym} 1220 -440 0 1 {name=l17 sig_type=std_logic lab=Comp_Bias_2}
+C {devices/lab_wire.sym} 1220 -340 0 1 {name=l18 sig_type=std_logic lab=Comp_Bias_3}
+C {devices/lab_wire.sym} 1220 -320 0 1 {name=l19 sig_type=std_logic lab=Comp_Bias_4}
+C {devices/lab_wire.sym} 1220 -280 0 1 {name=l20 sig_type=std_logic lab=Comp_Bias_6}
+C {devices/opin.sym} 2880 -460 0 0 {name=p11 lab=Out_N_LVDS}
+C {devices/opin.sym} 2880 -480 0 0 {name=p12 lab=Out_P_LVDS}
+C {devices/lab_wire.sym} 1220 -460 0 1 {name=l22 sig_type=std_logic lab=Bias_LVDS}
+C {devices/lab_wire.sym} 2450 -480 0 1 {name=l23 sig_type=std_logic lab=Bias_LVDS}
+C {devices/lab_wire.sym} 1220 -380 0 1 {name=l24 sig_type=std_logic lab=Bias_ctl}
+C {devices/lab_wire.sym} 1220 -420 0 1 {name=l26 sig_type=std_logic lab=Bias_A_out}
+C {devices/lab_wire.sym} 1850 -700 0 1 {name=l27 sig_type=std_logic lab=Bias_A_out}
+C {devices/iopin.sym} 120 -810 0 1 {name=p13 lab=VP_dig}
+C {devices/lab_wire.sym} 1910 -520 0 1 {name=l21 sig_type=std_logic lab=Tia_ref}
+C {devices/lab_wire.sym} 1910 -500 0 1 {name=l25 sig_type=std_logic lab=Tia_Out}
+C {devices/code.sym} 3050 -610 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+.include /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice/sky130_fd_sc_hs.spice
+
+"}
diff --git a/xschem/mpw6_submission.spice b/xschem/mpw6_submission.spice
new file mode 100644
index 0000000..090b341
--- /dev/null
+++ b/xschem/mpw6_submission.spice
@@ -0,0 +1,950 @@
+** sch_path: /home/simon/code/particle_detector/xschem/mpw6_submission.sch
+**.subckt mpw6_submission VP_an In_TIA Out_N VN Out_P Dis_TIA I_out Dis_FB Ref_B Ref_A Out_N_LVDS
+*+ Out_P_LVDS VP_dig
+*.iopin VP_an
+*.ipin In_TIA
+*.opin Out_N
+*.iopin VN
+*.opin Out_P
+*.ipin Dis_TIA
+*.opin I_out
+*.ipin Dis_FB
+*.ipin Ref_B
+*.ipin Ref_A
+*.opin Out_N_LVDS
+*.opin Out_P_LVDS
+*.iopin VP_dig
+x4 VP_an Out_N Out_P Bias_A_out Tia_Out Tia_ref VN outdriver
+x5 VP_an net5 I_out net4 net3 net6 net7 net8 net9 net10 VN current_mirrorx8
+x6 VP_an net4 VN low_pvt_source
+x7 VP_an Bias_LVDS Comp_Bias_2 Bias_A_out Comp_Bias_1 Bias_ctl net1 Comp_Bias_3 Comp_Bias_4
++ Comp_Bias_5 Comp_Bias_6 net11 net3 VN current_mirror_channel
+x8 VP_an net2 Tia_ref Tia_Out Dis_TIA In_TIA net1 VN tia_rgc_core
+x1 VP_an Dis_FB In_TIA net11 Tia_ref Tia_Out VN feedback_sukwani
+x3 VP_dig Out_P_LVDS net12 Out_N_LVDS Bias_LVDS VN transmitter
+x2 VP_an Tia_ref Tia_Out Comp_Bias_1 net12 Ref_A Comp_Bias_2 Bias_ctl Comp_Bias_4 Comp_Bias_6
++ Comp_Bias_5 Ref_B Comp_Bias_3 VN comparator_complete
+**** begin user architecture code
+
+
+.include /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice/sky130_fd_sc_hs.spice
+
+
+**** end user architecture code
+**.ends
+
+* expanding   symbol:  outdriver/outdriver.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/outdriver/outdriver.sym
+** sch_path: /home/simon/code/particle_detector/xschem/outdriver/outdriver.sch
+.subckt outdriver  VP OutputN OutputP I_Bias InputSignal InputRef VN
+*.iopin VN
+*.ipin InputRef
+*.iopin VP
+*.ipin I_Bias
+*.ipin InputSignal
+*.opin OutputN
+*.opin OutputP
+XM1 V_da1_P InputSignal VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XM3 VM3D I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(64) m=2*(64)
+XM6 VM6D I_Bias VM3D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=64 m=64
+XM7 I_Bias I_Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 net1 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*2 m=2*2
+XM2 V_da2_P V_da1_P VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM4 V_da2_N V_da1_N VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM9 net2 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(256+64) m=2*(256+64)
+XM10 VM1_D I_Bias net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=256+64 m=256+64
+XM11 OutputP V_da2_P VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM12 OutputN V_da2_N VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM13 net3 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(1024+256) m=2*(1024+256)
+XM14 VM14D I_Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1024+256 m=1024+256
+XR7 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR5 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR3 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XR4 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XC2 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XM5 V_da1_N InputRef VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XR8 OutputP VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC1 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC6 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC8 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR1 OutputN VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC7 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC9 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC10 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC11 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC12 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC13 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC14 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC5 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XC3 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+.ends
+
+
+* expanding   symbol:  bias/current_mirrorx8.sym # of pins=11
+** sym_path: /home/simon/code/particle_detector/xschem/bias/current_mirrorx8.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/current_mirrorx8.sch
+.subckt current_mirrorx8  VP I_out_3 I_out_1 I_In I_out_0 I_out_4 I_out_5 I_out_6 I_out_7 I_out_2 VN
+*.opin I_out_0
+*.ipin I_In
+*.iopin VP
+*.opin I_out_1
+*.opin I_out_2
+*.opin I_out_3
+*.opin I_out_4
+*.opin I_out_5
+*.opin I_out_6
+*.opin I_out_7
+*.iopin VN
+XM1 net1 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM2 I_In I_In net1 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM3 net2 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 I_out_0 I_In net2 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM5 net3 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM6 I_out_1 I_In net3 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM7 net4 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM8 I_out_2 I_In net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM9 net5 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM10 I_out_3 I_In net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM11 net6 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM12 I_out_4 I_In net6 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM13 net7 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM14 I_out_5 I_In net7 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM15 net8 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM16 I_out_6 I_In net8 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM17 net9 I_In VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM18 I_out_7 I_In net9 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+.ends
+
+
+* expanding   symbol:  bias/low_pvt_source.sym # of pins=3
+** sym_path: /home/simon/code/particle_detector/xschem/bias/low_pvt_source.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/low_pvt_source.sch
+.subckt low_pvt_source  VP I_ref VN
+*.iopin VP
+*.opin I_ref
+*.iopin VN
+XM1 VM1D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM2 VM2D VM2D VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=30 m=30
+XM5 VM9D VM8D VM1D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 VM11D VM2D VM12D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=65 m=65
+XM12 VM12D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D VM12G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM16D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM17 VM8D VM8D VM16D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM18 VM18D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*3*2 m=10*3*2
+XM19 VM14D VM8D VM18D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*3*2 m=2*3*2
+XM20 VM20D VM8D VP VP sky130_fd_pr__pfet_01v8 L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10*1*1 m=10*1*1
+XM21 VM22D VM8D VM20D VP sky130_fd_pr__pfet_01v8 L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*1*1 m=2*1*1
+XM22 VM22D VM4S VM3D VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM3 VM3D VM3G VN VN sky130_fd_pr__nfet_01v8 L=6 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VP VM14D VM12G VM12G sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM4 I_ref VM22D VM4S VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=20 m=20
+XM48 VM50D VM11D VP VP sky130_fd_pr__pfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM50 VM50D VM11D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC3 VP VM8D sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XM8 VM8D VM9D VM11D VM11D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM9 VM9D VM9D VM2D VM2D sky130_fd_pr__nfet_01v8_lvt L=1 W=4 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=20 m=20
+XM10 VM8D VM50D VN VN sky130_fd_pr__nfet_01v8 L=2 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XC4 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR7 net3 VM4S VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR3 net4 net3 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR4 net2 net4 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR5 net1 net2 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR6 VN net1 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR8 net5 VM12G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR1 net5 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR2 net7 net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR9 VN net6 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR10 net11 net7 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR11 net12 net11 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR12 net8 net12 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR13 net10 VM3G VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR14 net9 net10 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XR15 net8 net9 VN sky130_fd_pr__res_xhigh_po_1p41 L=10 mult=1 m=1
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
+
+* expanding   symbol:  bias/current_mirror_channel.sym # of pins=14
+** sym_path: /home/simon/code/particle_detector/xschem/bias/current_mirror_channel.sym
+** sch_path: /home/simon/code/particle_detector/xschem/bias/current_mirror_channel.sch
+.subckt current_mirror_channel  VP LVDS_Bias Comp_Bias_2 A_Out_I_Bias Comp_Bias_1 Comp_To_Logic_Bias
++ TIA_I_Bias1 Comp_Bias_3 Comp_Bias_4 Comp_Bias_5 Comp_Bias_6 FB_Bias_1 I_in_channel VN
+*.ipin I_in_channel
+*.iopin VP
+*.iopin VN
+*.opin TIA_I_Bias1
+*.opin A_Out_I_Bias
+*.opin Comp_Bias_1
+*.opin Comp_To_Logic_Bias
+*.opin Comp_Bias_2
+*.opin Comp_Bias_3
+*.opin Comp_Bias_4
+*.opin Comp_Bias_5
+*.opin Comp_Bias_6
+*.opin FB_Bias_1
+*.opin LVDS_Bias
+XM1 I_in_channel I_in_channel net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM2 net3 vm4d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM3 net1 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 vm4d vm4d net3 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XC4 VP vm4d sky130_fd_pr__cap_mim_m3_2 W=30 L=15 VM=1 m=1
+XM5 vm4d I_in_channel net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM6 net2 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 net4 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*5 m=4*5
+XM14 TIA_I_Bias1 vm12d net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*5 m=4*4*5
+XM9 net5 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*6 m=4*6
+XM10 A_Out_I_Bias vm12d net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*6 m=4*4*6
+XM15 net6 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM16 Comp_To_Logic_Bias vm12d net6 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*4 m=4*4*4
+XM17 net7 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM18 Comp_Bias_1 vm12d net7 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM19 net8 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM20 Comp_Bias_2 vm12d net8 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM31 net13 vm4d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM32 FB_Bias_1 vm4d net13 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM7 vm12d I_in_channel net15 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2*4*4 m=2*4*4
+XM8 net15 I_in_channel VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM11 net16 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM12 vm12d vm12d net16 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM21 net9 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM22 Comp_Bias_3 vm12d net9 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM23 net10 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM24 Comp_Bias_4 vm12d net10 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM25 net11 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM26 Comp_Bias_5 vm12d net11 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM27 net12 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM28 Comp_Bias_6 vm12d net12 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XM29 net14 vm12d VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*8 m=4*8
+XM30 LVDS_Bias vm12d net14 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*4*8 m=4*4*8
+XC1 VP vm12d sky130_fd_pr__cap_mim_m3_2 W=30 L=15 VM=1 m=1
+XC2 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
+
+* expanding   symbol:  tia/tia_rgc_core.sym # of pins=8
+** sym_path: /home/simon/code/particle_detector/xschem/tia/tia_rgc_core.sym
+** sch_path: /home/simon/code/particle_detector/xschem/tia/tia_rgc_core.sch
+.subckt tia_rgc_core  VP Out_2 Out_ref Out_1 Disable_TIA Input I_Bias1 VN
+*.iopin VN
+*.iopin VP
+*.opin Out_2
+*.ipin I_Bias1
+*.ipin Input
+*.ipin Disable_TIA
+*.opin Out_1
+*.opin Out_ref
+XM5 VM5D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM6 VM6D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1.0 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 Out_1 Input VM28D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM8 Out_1 Input VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM9 Input I_Bias1 VM5D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM10 I_Bias1 I_Bias1 VM6D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM23 I_Bias1 Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=5 m=5
+XM26 Disable_TIA_B Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM27 Disable_TIA_B Disable_TIA VP VP sky130_fd_pr__pfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM28 VM28D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM36 VM36D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM37 Out_ref VM39D VM40D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM38 Out_ref VM39D VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM39 VM39D I_Bias1 VM36D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM40 VM40D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XC20 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XM16 Out_2 VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM15 Out_2 Out_1 Input Input sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM31 VM31D Out_ref VM39D VM39D sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM35 VM31D VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC7 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC2 VP VM28D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 VM=1 m=1
+XC5 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC4 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC1 VP VM40D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 VM=1 m=1
+XC10 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC3 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC6 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC8 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC9 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+.ends
+
+
+* expanding   symbol:  tia/feedback_sukwani.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/tia/feedback_sukwani.sym
+** sch_path: /home/simon/code/particle_detector/xschem/tia/feedback_sukwani.sch
+.subckt feedback_sukwani  VP Disable_FB Out I_Bias InN InP VN
+*.iopin VN
+*.iopin VP
+*.ipin I_Bias
+*.ipin Disable_FB
+*.ipin InP
+*.ipin InN
+*.opin Out
+XM3 net1 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM4 I_Bias I_Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM12 net2 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*1 m=4*1
+XM13 VM13D I_Bias net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*4 m=4*4
+XM29 Disable_FB_B Disable_FB VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM30 Disable_FB_B Disable_FB VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=1 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM47 net6 net5 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM48 net5 net5 net6 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XC8 VP VM14D sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC20 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=20 VM=1 m=1
+XM55 I_Bias Disable_FB VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=2 m=2
+XM15 VM16D InP VM13D VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM14 VM14D InN VM13D VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM10 VM34D net9 net10 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM24 net10 net9 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM25 net9 net9 net13 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM26 VM9D net5 net14 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM27 net13 net9 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM28 net14 net5 VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM43 net21 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM44 VM34D I_Bias net21 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM45 net22 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM46 VM9D I_Bias net22 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM50 VM34D Disable_FB_B VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=4*5 m=4*5
+XM51 VM14D VM14D net4 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM52 net4 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM5 net7 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM11 net8 VM14D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=9*2 m=9*2
+XM16 net5 VM14D net7 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM19 VM34D VM14D net8 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=9*8 m=9*8
+XM2 net3 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM6 VM16D VM16D net3 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM7 net11 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 net9 VM16D net11 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=8 m=8
+XM9 net12 VM16D VP VP sky130_fd_pr__pfet_01v8_lvt L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=9*2 m=9*2
+XM18 VM9D VM16D net12 VP sky130_fd_pr__pfet_01v8_lvt L=0.35 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=9*8 m=9*8
+XM20 net16 VM34D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*9 m=2*9
+XC3 VN I_Bias sky130_fd_pr__cap_mim_m3_2 W=30 L=10 VM=1 m=1
+XM23 Out VM34D net16 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*2*9 m=4*2*9
+XM31 net17 VM34D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM32 VM34D VM34D net17 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM33 net20 VM9D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM34 VM9D VM9D net20 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM35 net19 VM9D VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM36 VM31D VM9D net19 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*4 m=2*4
+XM37 net15 VM31D VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1*9 m=1*9
+XM38 Out VM31D net15 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4*9 m=4*9
+XM39 net18 VM31D VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM40 VM31D VM31D net18 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM1 VM31D Disable_FB VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=5*2 m=5*2
+XC1 VN I_Bias sky130_fd_pr__cap_mim_m3_2 W=30 L=10 VM=1 m=1
+XC4 VM16D VM14D sky130_fd_pr__cap_mim_m3_2 W=15 L=15 VM=1 m=1
+XC2 VM14D net23 sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR1 net23 VM16D VN sky130_fd_pr__res_xhigh_po_0p69 L=2 mult=1 m=1
+.ends
+
+
+* expanding   symbol:  lvds/transmitter.sym # of pins=6
+** sym_path: /home/simon/code/particle_detector/xschem/lvds/transmitter.sym
+** sch_path: /home/simon/code/particle_detector/xschem/lvds/transmitter.sch
+.subckt transmitter  VP OutP In OutN Bias VN
+*.ipin In
+*.iopin VP
+*.opin OutP
+*.iopin VN
+*.opin OutN
+*.ipin Bias
+XR1 vm20g OutN VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XM3 OutN vm2g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM4 OutP vm5g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM7 vm6d vm19d net2 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2*29 m=24*2*29
+XR2 OutP vm20g VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XR3 vm19g VP VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XM9 Bias Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*4 m=12*4
+XM10 net3 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XR4 VN vm19g VN sky130_fd_pr__res_xhigh_po_0p35 L=30 mult=1 m=1
+XM11 vm11d Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*4*2 m=12*4*2
+XM12 net1 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*2 m=12*2
+XM13 net2 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*29 m=24*29
+XM19 vm19d vm19g vm11d VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=24 m=24
+XM20 vm20d vm20g vm11d VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=24 m=24
+XM21 vm19d vm19d net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+XM22 net4 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XM24 net5 vm20d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XC2 vm20g vm20d sky130_fd_pr__cap_mim_m3_1 W=30 L=10 MF=1 m=1
+x5 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+XM23 vm20d vm20d net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+x9 In VN VN VP VP vx9y sky130_fd_sc_hs__inv_4
+x2 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+x3 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+x4 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+XM1 vm1d Bias net6 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29*4 m=12*29*4
+XM8 net6 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29 m=12*29
+x11 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x19 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x20 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x21 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x14 vx9y VN VN VP VP vx14y sky130_fd_sc_hs__inv_4
+x1 vx14y VN VN VP VP vx1y sky130_fd_sc_hs__inv_16
+x6 vx9y VN VN VP VP vx6y sky130_fd_sc_hs__inv_16
+XM2 OutN vm2g vm1d VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=50 m=50
+XM5 OutP vm5g vm1d VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=50 m=50
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC3 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
+
+* expanding   symbol:  comp/comparator_complete.sym # of pins=14
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comparator_complete.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comparator_complete.sch
+.subckt comparator_complete  VP InRef In Bias_comp1 Digital_out RefA Bias_comp2 Bias_to_logic
++ Bias_comp4 Bias_comp6 Bias_comp5 RefB Bias_comp3 VN
+*.ipin InRef
+*.iopin VP
+*.opin Digital_out
+*.ipin In
+*.ipin Bias_comp1
+*.ipin Bias_comp2
+*.iopin VN
+*.ipin Bias_comp4
+*.ipin Bias_comp6
+*.ipin Bias_comp3
+*.ipin Bias_comp5
+*.ipin RefA
+*.ipin RefB
+*.ipin Bias_to_logic
+xamp1 VP net1 net2 Outp_20db Bias_comp1 Bias_comp2 Outn_20db VN comp_amp_20db_no_cmm
+xl VP Digital_out Outp Outn Bias_to_logic VN comp_to_logic
+xamp2 VP net3 Outp_20db Outp RefA Bias_comp4 Bias_comp6 Bias_comp5 Outn RefB Bias_comp3 VN
++ comp_amp_di_40db_no_cmm
+XR6 net1 InRef VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XR7 net1 net2 VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XR8 net3 Outp_20db VN sky130_fd_pr__res_xhigh_po_0p35 L=40 mult=1 m=1
+XC1 VN net1 sky130_fd_pr__cap_mim_m3_2 W=30 L=20 VM=1 m=1
+XC2 net2 In sky130_fd_pr__cap_mim_m3_1 W=5 L=5 MF=1 m=1
+XC3 net3 Outn_20db sky130_fd_pr__cap_mim_m3_1 W=5 L=5 MF=1 m=1
+.ends
+
+
+* expanding   symbol:  comp/comp_amp_20db_no_cmm.sym # of pins=8
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_20db_no_cmm.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_20db_no_cmm.sch
+.subckt comp_amp_20db_no_cmm  VP In_n In_p out_p Bias1 Bias2 out_n VN
+*.ipin In_n
+*.ipin In_p
+*.iopin VP
+*.opin out_p
+*.opin out_n
+*.ipin Bias1
+*.ipin Bias2
+*.iopin VN
+xcmp2 VP out_p out_n OutP1 OutN1 Bias2 VN comp_adv3
+xcmp1 VP OutP1 OutN1 In_n In_p Bias1 VN comp_adv3
+.ends
+
+
+* expanding   symbol:  comp/comp_to_logic.sym # of pins=6
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_to_logic.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_to_logic.sch
+.subckt comp_to_logic  VP Out In_p In_n I_Bias VN
+*.iopin VP
+*.iopin VN
+*.ipin In_p
+*.ipin In_n
+*.ipin I_Bias
+*.opin Out
+XM1 VM1D In_n VM4D VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM2 VM1D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM4 VM4D I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*8 m=2*8
+XM6 VM6D In_p VM4D VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM7 I_Bias I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM3 VM6D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 VM11D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM9 VM12D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM11 VM11D VM11D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=3 m=3
+XM12 VM12D VM11D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=3 m=3
+XM14 VM17D VM12D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM16 VM13D VM17D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM13 VM13D VM17D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM17 VM17D VM12D VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM15 VM6D VM1D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM19 Out VM13D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=4 m=4
+XM20 Out VM13D VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM5 VM1D VM6D VP VP sky130_fd_pr__pfet_01v8 L=0.15 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM10 VN VN VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+.ends
+
+
+* expanding   symbol:  comp/comp_amp_di_40db_no_cmm.sym # of pins=12
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_di_40db_no_cmm.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_amp_di_40db_no_cmm.sch
+.subckt comp_amp_di_40db_no_cmm  VP In_n In_p Out_p In_Ref_n Bias2 Bias4 Bias3 Out_n In_Ref_p Bias1
++ VN
+*.ipin In_n
+*.iopin VP
+*.opin Out_p
+*.ipin In_p
+*.ipin Bias1
+*.ipin Bias2
+*.iopin VN
+*.opin Out_n
+*.ipin Bias3
+*.ipin Bias4
+*.ipin In_Ref_n
+*.ipin In_Ref_p
+xcmp6 VP OutP2_di OutN2_di OutP1_di OutN1_di Bias2 VN comp_adv3
+xcmp1 VP OutP3_di OutN3_di OutP2_di OutN2_di Bias3 VN comp_adv3
+xcmp2 VP Out_p Out_n OutP3_di OutN3_di Bias4 VN comp_adv3
+x1 VP OutP1_di OutN1_di In_n In_p In_Ref_n In_Ref_p Bias1 VN comp_adv3_di
+.ends
+
+
+* expanding   symbol:  comp/comp_adv3.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3.sch
+.subckt comp_adv3  VP OutP OutN Inn Inp bias VN
+*.ipin Inp
+*.ipin bias
+*.ipin Inn
+*.iopin VP
+*.iopin VN
+*.opin OutN
+*.opin OutP
+XM1 OutN Inp VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM2 OutP Inn VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 bias bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM9 VIq bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XR1 OutN VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1.5 mult=1 m=1
+XR2 OutP VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1.5 mult=1 m=1
+XM3 bias VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+.ends
+
+
+* expanding   symbol:  comp/comp_adv3_di.sym # of pins=9
+** sym_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3_di.sym
+** sch_path: /home/simon/code/particle_detector/xschem/comp/comp_adv3_di.sch
+.subckt comp_adv3_di  VP OutP OutN Inn Inp Inn2 Inp2 bias VN
+*.ipin Inp
+*.ipin bias
+*.ipin Inn
+*.iopin VP
+*.iopin VN
+*.opin OutN
+*.opin OutP
+*.ipin Inn2
+*.ipin Inp2
+XM1 OutN Inp VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM2 OutP Inn VIq VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 bias bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM9 VIq bias VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XR1 OutN VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1 mult=1 m=1
+XR2 OutP VP VN sky130_fd_pr__res_xhigh_po_2p85 L=1 mult=1 m=1
+XM3 OutN Inp2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM4 OutP Inn2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM5 Inn2 Inn2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM6 Inp2 Inp2 VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM8 Inp2 VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM10 Inn2 VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+XM11 bias VN VN VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1 m=1
+.ends
+
+.end
diff --git a/xschem/mpw6_submission.sym b/xschem/mpw6_submission.sym
new file mode 100644
index 0000000..9fecfb4
--- /dev/null
+++ b/xschem/mpw6_submission.sym
@@ -0,0 +1,51 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -85.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -92 0 0 0.2 0.2 {}
+L 4 -130 -80 130 -80 {}
+L 4 -130 80 130 80 {}
+L 4 -130 -80 -130 80 {}
+L 4 130 -80 130 80 {}
+B 5 147.5 -72.5 152.5 -67.5 {name=VP_dig dir=inout }
+L 7 130 -70 150 -70 {}
+T {VP_dig} 125 -74 0 1 0.2 0.2 {}
+B 5 147.5 -52.5 152.5 -47.5 {name=VP_an dir=inout }
+L 7 130 -50 150 -50 {}
+T {VP_an} 125 -54 0 1 0.2 0.2 {}
+B 5 -152.5 -72.5 -147.5 -67.5 {name=Dis_TIA dir=in }
+L 4 -150 -70 -130 -70 {}
+T {Dis_TIA} -125 -74 0 0 0.2 0.2 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=Out_N dir=out }
+L 4 130 -30 150 -30 {}
+T {Out_N} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=Out_P dir=out }
+L 4 130 -10 150 -10 {}
+T {Out_P} 125 -14 0 1 0.2 0.2 {}
+B 5 -152.5 -52.5 -147.5 -47.5 {name=In_TIA dir=in }
+L 4 -150 -50 -130 -50 {}
+T {In_TIA} -125 -54 0 0 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=I_out dir=out }
+L 4 130 10 150 10 {}
+T {I_out} 125 6 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=Dis_FB dir=in }
+L 4 -150 -30 -130 -30 {}
+T {Dis_FB} -125 -34 0 0 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=Out_P_LVDS dir=out }
+L 4 130 30 150 30 {}
+T {Out_P_LVDS} 125 26 0 1 0.2 0.2 {}
+B 5 147.5 47.5 152.5 52.5 {name=Out_N_LVDS dir=out }
+L 4 130 50 150 50 {}
+T {Out_N_LVDS} 125 46 0 1 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=Ref_A dir=in }
+L 4 -150 -10 -130 -10 {}
+T {Ref_A} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=Ref_B dir=in }
+L 4 -150 10 -130 10 {}
+T {Ref_B} -125 6 0 0 0.2 0.2 {}
+B 5 147.5 67.5 152.5 72.5 {name=VN dir=inout }
+L 7 130 70 150 70 {}
+T {VN} 125 66 0 1 0.2 0.2 {}
diff --git a/xschem/outdriver.spice b/xschem/outdriver.spice
new file mode 100644
index 0000000..a3b3fc1
--- /dev/null
+++ b/xschem/outdriver.spice
@@ -0,0 +1,75 @@
+
+* expanding   symbol:  outdriver/outdriver.sym # of pins=7
+** sym_path: /home/simon/code/particle_detector/xschem/outdriver/outdriver.sym
+** sch_path: /home/simon/code/particle_detector/xschem/outdriver/outdriver.sch
+.subckt outdriver  VP OutputN OutputP I_Bias InputSignal InputRef VN
+*.iopin VN
+*.ipin InputRef
+*.iopin VP
+*.ipin I_Bias
+*.ipin InputSignal
+*.opin OutputN
+*.opin OutputP
+XM1 V_da1_P InputSignal VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XM3 VM3D I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(64) m=2*(64)
+XM6 VM6D I_Bias VM3D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=64 m=64
+XM7 I_Bias I_Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 net1 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*2 m=2*2
+XM2 V_da2_P V_da1_P VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM4 V_da2_N V_da1_N VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM9 net2 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(256+64) m=2*(256+64)
+XM10 VM1_D I_Bias net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=256+64 m=256+64
+XM11 OutputP V_da2_P VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM12 OutputN V_da2_N VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM13 net3 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(1024+256) m=2*(1024+256)
+XM14 VM14D I_Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1024+256 m=1024+256
+XR7 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR5 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR3 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XR4 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XC2 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XM5 V_da1_N InputRef VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XR8 OutputP VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC1 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC6 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC8 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XR1 OutputN VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC7 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC9 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC10 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC11 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC12 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC13 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC14 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC5 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XC3 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+.ends
+
diff --git a/xschem/outdriver/outdriver.sch b/xschem/outdriver/outdriver.sch
new file mode 100644
index 0000000..45c4104
--- /dev/null
+++ b/xschem/outdriver/outdriver.sch
@@ -0,0 +1,477 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {Bias
+96µA} 2020 -650 0 0 0.3 0.3 {}
+T {target 1.2V} 2430 -650 0 0 0.2 0.2 {}
+T {2.7mA} 2440 -190 0 0 0.3 0.3 {}
+T {11mA} 2980 -190 0 0 0.3 0.3 {}
+T {46mA} 3570 -180 0 0 0.3 0.3 {}
+N 2350 -640 2350 -630 { lab=V_da1_P}
+N 2480 -250 2480 -230 { lab=VN}
+N 2270 -550 2310 -550 { lab=InputSignal}
+N 1440 -230 2380 -230 { lab=VN}
+N 2350 -520 2350 -500 { lab=VM6D}
+N 2350 -630 2350 -580 { lab=V_da1_P}
+N 2350 -550 2450 -550 { lab=VM6D}
+N 2610 -630 2610 -620 { lab=V_da1_N}
+N 2610 -520 2610 -500 { lab=VM6D}
+N 2610 -620 2610 -580 { lab=V_da1_N}
+N 2520 -550 2610 -550 { lab=VM6D}
+N 2610 -640 2610 -630 { lab=V_da1_N}
+N 2080 -590 2100 -590 { lab=I_Bias}
+N 2480 -340 2580 -340 { lab=VN}
+N 2480 -430 2580 -430 { lab=VN}
+N 2480 -400 2480 -370 { lab=VM3D}
+N 2140 -470 2140 -380 { lab=I_Bias}
+N 2440 -430 2440 -340 { lab=I_Bias}
+N 2100 -350 2100 -340 { lab=VN}
+N 2100 -440 2100 -410 { lab=#net1}
+N 2010 -470 2100 -470 { lab=VN}
+N 2010 -470 2010 -340 { lab=VN}
+N 2010 -380 2100 -380 { lab=VN}
+N 2580 -430 2580 -230 { lab=VN}
+N 2450 -550 2450 -510 { lab=VM6D}
+N 2100 -500 2140 -500 { lab=I_Bias}
+N 2140 -500 2140 -470 { lab=I_Bias}
+N 2100 -590 2100 -500 { lab=I_Bias}
+N 2100 -340 2100 -230 { lab=VN}
+N 2010 -340 2010 -230 { lab=VN}
+N 2260 -250 2260 -230 { lab=VN}
+N 2260 -380 2260 -370 { lab=I_Bias}
+N 2260 -440 2280 -440 { lab=VN}
+N 2280 -440 2280 -230 { lab=VN}
+N 2140 -380 2260 -380 { lab=I_Bias}
+N 1430 -800 2790 -800 { lab=VP}
+N 2350 -500 2610 -500 { lab=VM6D}
+N 2450 -510 2450 -500 { lab=VM6D}
+N 2480 -500 2480 -460 { lab=VM6D}
+N 2900 -700 2900 -690 { lab=V_da2_P}
+N 3030 -250 3030 -230 { lab=VN}
+N 2820 -550 2860 -550 { lab=V_da1_P}
+N 2900 -780 2900 -760 { lab=VP}
+N 2900 -520 2900 -500 { lab=VM1_D}
+N 2900 -690 2900 -580 { lab=V_da2_P}
+N 2900 -550 3000 -550 { lab=VM1_D}
+N 3160 -690 3160 -620 { lab=V_da2_N}
+N 3160 -520 3160 -500 { lab=VM1_D}
+N 3160 -620 3160 -580 { lab=V_da2_N}
+N 3070 -550 3160 -550 { lab=VM1_D}
+N 3160 -700 3160 -690 { lab=V_da2_N}
+N 3160 -780 3160 -760 { lab=VP}
+N 3030 -340 3130 -340 { lab=VN}
+N 3030 -430 3130 -430 { lab=VN}
+N 3030 -400 3030 -370 { lab=#net2}
+N 2990 -430 2990 -340 { lab=I_Bias}
+N 3130 -430 3130 -230 { lab=VN}
+N 3000 -550 3000 -510 { lab=VM1_D}
+N 3070 -550 3070 -510 { lab=VM1_D}
+N 2900 -500 3160 -500 { lab=VM1_D}
+N 3000 -510 3000 -500 { lab=VM1_D}
+N 3070 -510 3070 -500 { lab=VM1_D}
+N 3030 -500 3030 -460 { lab=VM1_D}
+N 3480 -670 3480 -660 { lab=OutputP}
+N 3610 -250 3610 -230 { lab=VN}
+N 3340 -550 3440 -550 { lab=V_da2_P}
+N 3480 -750 3480 -730 { lab=VP}
+N 3480 -520 3480 -500 { lab=VM14D}
+N 3480 -660 3480 -580 { lab=OutputP}
+N 3480 -550 3580 -550 { lab=VM14D}
+N 3740 -520 3740 -500 { lab=VM14D}
+N 3650 -550 3740 -550 { lab=VM14D}
+N 3740 -750 3740 -730 { lab=VP}
+N 3610 -340 3710 -340 { lab=VN}
+N 3610 -430 3710 -430 { lab=VN}
+N 3610 -400 3610 -370 { lab=#net3}
+N 3570 -430 3570 -340 { lab=I_Bias}
+N 3710 -430 3710 -230 { lab=VN}
+N 3580 -550 3580 -510 { lab=VM14D}
+N 3650 -550 3650 -510 { lab=VM14D}
+N 3480 -500 3740 -500 { lab=VM14D}
+N 3580 -510 3580 -500 { lab=VM14D}
+N 3650 -510 3650 -500 { lab=VM14D}
+N 3610 -500 3610 -460 { lab=VM14D}
+N 2790 -800 3740 -800 { lab=VP}
+N 3740 -800 3740 -750 { lab=VP}
+N 3480 -800 3480 -750 { lab=VP}
+N 2900 -800 2900 -780 { lab=VP}
+N 3160 -800 3160 -780 { lab=VP}
+N 3340 -590 3340 -550 { lab=V_da2_P}
+N 3740 -650 3880 -650 { lab=OutputN}
+N 3480 -620 3880 -620 { lab=OutputP}
+N 2380 -230 3710 -230 { lab=VN}
+N 2820 -590 2820 -550 { lab=V_da1_P}
+N 2350 -590 2820 -590 { lab=V_da1_P}
+N 3340 -610 3340 -590 { lab=V_da2_P}
+N 3340 -630 3340 -610 { lab=V_da2_P}
+N 2900 -630 3340 -630 { lab=V_da2_P}
+N 3360 -600 3780 -600 { lab=V_da2_N}
+N 3740 -670 3740 -580 { lab=OutputN}
+N 3780 -600 3780 -550 { lab=V_da2_N}
+N 2650 -550 2680 -550 { lab=InputRef}
+N 2790 -340 2790 -230 { lab=VN}
+N 2750 -330 2750 -230 { lab=VN}
+N 2750 -400 2750 -380 { lab=InputRef}
+N 2650 -510 2650 -400 { lab=InputRef}
+N 2140 -380 2140 -210 { lab=I_Bias}
+N 2140 -210 3570 -210 { lab=I_Bias}
+N 3570 -340 3570 -210 { lab=I_Bias}
+N 2990 -340 2990 -210 { lab=I_Bias}
+N 2440 -340 2440 -210 { lab=I_Bias}
+N 2510 -550 2520 -550 { lab=VM6D}
+N 2510 -550 2510 -500 { lab=VM6D}
+N 3160 -640 3360 -640 { lab=V_da2_N}
+N 3360 -640 3360 -600 { lab=V_da2_N}
+N 3200 -590 3200 -550 { lab=V_da1_N}
+N 2610 -600 3200 -600 { lab=V_da1_N}
+N 3200 -600 3200 -590 { lab=V_da1_N}
+N 2650 -550 2650 -510 { lab=InputRef}
+N 3740 -800 4410 -800 { lab=VP}
+N 3880 -620 3900 -620 { lab=OutputP}
+N 3900 -620 4110 -620 { lab=OutputP}
+N 3930 -650 4030 -650 { lab=OutputN}
+N 3880 -650 3930 -650 { lab=OutputN}
+N 4040 -650 4110 -650 { lab=OutputN}
+N 4030 -650 4040 -650 { lab=OutputN}
+N 1580 -800 1580 -790 { lab=VP}
+N 1700 -800 1700 -790 { lab=VP}
+N 1580 -720 1790 -720 { lab=VN}
+N 1580 -730 1580 -720 { lab=VN}
+N 1700 -730 1700 -720 { lab=VN}
+N 2260 -310 2260 -250 { lab=VN}
+N 2650 -400 2750 -400 { lab=InputRef}
+N 2750 -460 2790 -460 { lab=VN}
+N 2790 -460 2790 -340 { lab=VN}
+N 1820 -800 1820 -790 { lab=VP}
+N 1940 -800 1940 -790 { lab=VP}
+N 2060 -800 2060 -790 { lab=VP}
+N 2180 -800 2180 -790 { lab=VP}
+N 1450 -620 1820 -620 { lab=VP}
+N 1450 -800 1450 -620 { lab=VP}
+N 1580 -720 1580 -700 { lab=VN}
+N 1700 -720 1700 -700 { lab=VN}
+N 1790 -720 2180 -720 { lab=VN}
+N 2180 -730 2180 -720 { lab=VN}
+N 2060 -730 2060 -720 { lab=VN}
+N 1940 -730 1940 -720 { lab=VN}
+N 1820 -720 1820 -700 { lab=VN}
+N 1820 -730 1820 -720 { lab=VN}
+N 1580 -640 1580 -620 { lab=VP}
+N 1700 -640 1700 -620 { lab=VP}
+N 1820 -640 1820 -620 { lab=VP}
+N 1960 -710 1960 -230 { lab=VN}
+N 1960 -720 1960 -710 { lab=VN}
+N 3610 -310 3610 -250 { lab=VN}
+N 3030 -310 3030 -250 { lab=VN}
+N 2480 -310 2480 -250 { lab=VN}
+N 2350 -800 2350 -700 { lab=VP}
+N 2180 -720 2590 -720 { lab=VN}
+N 2590 -720 2590 -670 { lab=VN}
+N 2370 -720 2370 -670 { lab=VN}
+N 2590 -720 3720 -720 { lab=VN}
+N 3720 -720 3720 -700 { lab=VN}
+N 3500 -720 3500 -700 { lab=VN}
+N 2920 -730 2920 -720 { lab=VN}
+N 3140 -730 3140 -720 { lab=VN}
+N 2610 -800 2610 -700 { lab=VP}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2330 -550 0 0 {name=M1
+L=0.15
+W=2
+nf=1
+mult=11*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 2350 -610 0 0 {name=r55 node="v(xoutd.v_da1_P)"
+descr="v(xoutd.v_da1_P)"}
+C {devices/iopin.sym} 1440 -230 0 1 {name=p1 lab=VN}
+C {devices/ipin.sym} 2680 -550 0 1 {name=p2 lab=InputRef}
+C {devices/iopin.sym} 1430 -800 0 1 {name=p4 lab=VP}
+C {devices/ipin.sym} 2080 -590 0 0 {name=p5 lab=I_Bias}
+C {devices/ipin.sym} 2270 -550 0 0 {name=p6 lab=InputSignal}
+C {sky130_fd_pr/nfet_01v8.sym} 2460 -340 0 0 {name=M3
+L=0.5
+W=2
+nf=1 
+mult=2*(64)
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/ngspice_get_value.sym} 2100 -160 0 0 {name=r5 node="@m.x2.xm2.msky130_fd_pr__pfet_01v8_lvt[gm]"
+descr="M2 gm"}
+C {devices/ngspice_get_value.sym} 2150 -160 0 0 {name=r2 node="@m.x2.xm2.msky130_fd_pr__pfet_01v8_lvt[gds]"
+descr="M2 gds"}
+C {devices/ngspice_get_value.sym} 2050 -160 0 0 {name=r3 node="@m.x2.xm1.msky130_fd_pr__nfet_01v8_lvt[gm]"
+descr="M1 gm"}
+C {devices/ngspice_get_value.sym} 2000 -160 0 0 {name=r4 node="@m.x2.xm1.msky130_fd_pr__nfet_01v8_lvt[gds]"
+descr="M1 gds"}
+C {devices/ngspice_get_value.sym} 2260 -160 0 0 {name=r6 node="@m.x2.xm3.msky130_fd_pr__nfet_01v8[gm]"
+descr="M3 gm"}
+C {devices/ngspice_get_value.sym} 2210 -160 0 0 {name=r7 node="@m.x2.xm3.msky130_fd_pr__nfet_01v8[gds]"
+descr="M3 gds"}
+C {sky130_fd_pr/nfet_01v8.sym} 2460 -430 0 0 {name=M6
+L=0.15
+W=2
+nf=1 
+mult=64
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2120 -470 0 1 {name=M7
+L=0.15
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2120 -380 0 1 {name=M8
+L=0.5
+W=2
+nf=1 
+mult=2*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2880 -550 0 0 {name=M2
+L=0.15
+W=2
+nf=1
+mult=44*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 3180 -550 0 1 {name=M4
+L=0.15
+W=2
+nf=1
+mult=44*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 3010 -340 0 0 {name=M9
+L=0.5
+W=2
+nf=1 
+mult=2*(256+64)
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 3010 -430 0 0 {name=M10
+L=0.15
+W=2
+nf=1 
+mult=256+64
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 3460 -550 0 0 {name=M11
+L=0.15
+W=2
+nf=1
+mult=44*4*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 3760 -550 0 1 {name=M12
+L=0.15
+W=2
+nf=1
+mult=44*4*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 3590 -340 0 0 {name=M13
+L=0.5
+W=2
+nf=1 
+mult=2*(1024+256)
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 3590 -430 0 0 {name=M14
+L=0.15
+W=2
+nf=1 
+mult=1024+256
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/res_high_po_5p73.sym} 3160 -730 0 0 {name=R7
+W=5.73
+L=4
+model=res_high_po_5p73
+spiceprefix=X
+mult=4*2}
+C {sky130_fd_pr/res_high_po_5p73.sym} 2900 -730 0 1 {name=R5
+W=5.73
+L=4
+model=res_high_po_5p73
+spiceprefix=X
+mult=4*2}
+C {sky130_fd_pr/res_high_po_2p85.sym} 2610 -670 0 0 {name=R3
+W=2.85
+L=6
+model=res_high_po_2p85
+spiceprefix=X
+mult=4}
+C {sky130_fd_pr/res_high_po_2p85.sym} 2350 -670 0 1 {name=R4
+W=2.85
+L=6
+model=res_high_po_2p85
+spiceprefix=X
+mult=4}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 2750 -430 2 0 {name=C2 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} 2350 -610 0 0 {name=l1 sig_type=std_logic lab=V_da1_P}
+C {devices/lab_wire.sym} 2480 -470 0 1 {name=l2 sig_type=std_logic lab=VM6D}
+C {devices/lab_wire.sym} 3030 -470 0 1 {name=l5 sig_type=std_logic lab=VM1_D}
+C {devices/lab_wire.sym} 3610 -470 0 1 {name=l6 sig_type=std_logic lab=VM14D}
+C {devices/ngspice_get_value.sym} 2610 -610 0 1 {name=r8 node="v(xoutd.v_da1_N)"
+descr="v(xoutd.v_da1_N)"}
+C {devices/ngspice_get_value.sym} 2420 -370 0 1 {name=r9 node="v(xoutd.vm3d)"
+descr="v(xoutd.vm3d)"}
+C {devices/ngspice_get_value.sym} 3030 -460 0 1 {name=r10 node="v(xoutd.vm1_d)"
+descr="v(xoutd.vm1_d)"}
+C {devices/ngspice_get_value.sym} 3610 -460 0 1 {name=r11 node="v(xoutd.vm14d)"
+descr="v(xoutd.vm14d)"}
+C {devices/ngspice_get_value.sym} 3160 -660 0 1 {name=r13 node="v(xoutd.V_da2_N)"
+descr="v(xoutd.V_da2_N)"}
+C {devices/ngspice_get_value.sym} 3480 -640 0 0 {name=r14 node="v(v_outp)"
+descr="v(v_outp)"}
+C {devices/ngspice_get_value.sym} 3740 -640 0 1 {name=r15 node="v(v_outn)"
+descr="v(v_outn)"}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 2630 -550 0 1 {name=M5
+L=0.15
+W=2
+nf=1
+mult=11*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 2480 -370 0 1 {name=l7 sig_type=std_logic lab=VM3D}
+C {devices/ngspice_get_value.sym} 2430 -460 0 1 {name=r1 node="v(xoutd.vm6d)"
+descr="v(xoutd.vm6d)"}
+C {devices/lab_wire.sym} 2610 -610 0 1 {name=l8 sig_type=std_logic lab=V_da1_N}
+C {devices/lab_wire.sym} 2900 -660 0 0 {name=l3 sig_type=std_logic lab=V_da2_P}
+C {devices/lab_wire.sym} 3160 -660 0 1 {name=l4 sig_type=std_logic lab=V_da2_N}
+C {devices/ngspice_get_value.sym} 2900 -660 0 0 {name=r12 node="v(xoutd.V_da2_P)"
+descr="v(xoutd.V_da2_P)"}
+C {devices/opin.sym} 4110 -650 0 0 {name=p8 lab=OutputN}
+C {devices/opin.sym} 4110 -620 0 0 {name=p9 lab=OutputP}
+C {sky130_fd_pr/res_high_po_5p73.sym} 3480 -700 0 1 {name=R8
+W=5.73
+L=4
+model=res_high_po_5p73
+spiceprefix=X
+mult=16*2}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 2750 -350 0 1 {name=C1 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1580 -760 2 1 {name=C6 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1700 -760 2 1 {name=C8 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {devices/ngspice_get_value.sym} 2500 -240 0 0 {name=r16 node="i(v.xoutd.v1)"
+descr="i(v.xoutd.v1)"}
+C {devices/ngspice_get_value.sym} 3050 -250 0 0 {name=r17 node="i(v.xoutd.v2)"
+descr="i(v.xoutd.v2)"}
+C {devices/ngspice_get_value.sym} 3630 -250 0 0 {name=r18 node="i(v.xoutd.v3)"
+descr="i(v.xoutd.v3)"}
+C {sky130_fd_pr/res_high_po_5p73.sym} 3740 -700 0 0 {name=R1
+W=5.73
+L=4
+model=res_high_po_5p73
+spiceprefix=X
+mult=16*2}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1820 -760 2 1 {name=C7 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1940 -760 2 1 {name=C9 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 2060 -760 2 1 {name=C10 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 2180 -760 2 1 {name=C11 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1580 -670 0 1 {name=C12 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1700 -670 0 1 {name=C13 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1820 -670 0 1 {name=C14 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 2260 -340 2 1 {name=C5 model=cap_mim_m3_1 W=20 L=20 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 2260 -410 0 0 {name=C3 model=cap_mim_m3_1 W=20 L=20 MF=1 spiceprefix=X}
diff --git a/xschem/outdriver/outdriver.spice b/xschem/outdriver/outdriver.spice
new file mode 100644
index 0000000..84abffc
--- /dev/null
+++ b/xschem/outdriver/outdriver.spice
@@ -0,0 +1,72 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/outdriver/outdriver.sch
+**.subckt outdriver VN InputRef VP I_Bias InputSignal OutputN OutputP
+*.iopin VN
+*.ipin InputRef
+*.iopin VP
+*.ipin I_Bias
+*.ipin InputSignal
+*.opin OutputN
+*.opin OutputP
+XM1 V_da1_P InputSignal VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XM3 VM3D I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(64) m=2*(64)
+XM6 VM6D I_Bias VM3D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=64 m=64
+XM7 I_Bias I_Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2 m=2
+XM8 net1 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*2 m=2*2
+XM2 V_da2_P V_da1_P VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM4 V_da2_N V_da1_N VM1_D VM1_D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*2 m=44*2
+XM9 net2 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(256+64) m=2*(256+64)
+XM10 VM1_D I_Bias net2 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=256+64 m=256+64
+XM11 OutputP V_da2_P VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM12 OutputN V_da2_N VM14D VM14D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=44*4*2 m=44*4*2
+XM13 net3 I_Bias VN VN sky130_fd_pr__nfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=2*(1024+256) m=2*(1024+256)
+XM14 VM14D I_Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=1024+256 m=1024+256
+XR7 V_da2_N VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR5 V_da2_P VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=4*2 m=4*2
+XR3 V_da1_N VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XR4 V_da1_P VP VN sky130_fd_pr__res_high_po_2p85 L=6 mult=4 m=4
+XC2 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XM5 V_da1_N InputRef VM6D VM6D sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=11*2 m=11*2
+XR8 OutputP VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC1 InputRef VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC6 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC8 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XR1 OutputN VP VN sky130_fd_pr__res_high_po_5p73 L=4 mult=16*2 m=16*2
+XC7 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC9 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC10 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC11 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC12 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC13 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC14 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC5 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+XC3 VN I_Bias sky130_fd_pr__cap_mim_m3_1 W=20 L=20 MF=1 m=1
+**.ends
+.end
diff --git a/xschem/outdriver/outdriver.sym b/xschem/outdriver/outdriver.sym
new file mode 100644
index 0000000..33b2fee
--- /dev/null
+++ b/xschem/outdriver/outdriver.sym
@@ -0,0 +1,32 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -58.5 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=OutputN dir=out }
+L 4 130 -10 150 -10 {}
+T {OutputN} 125 -14 0 1 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=OutputP dir=out }
+L 4 130 10 150 10 {}
+T {OutputP} 125 6 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=I_Bias dir=in }
+L 4 -150 -30 -130 -30 {}
+T {I_Bias} -125 -34 0 0 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=InputSignal dir=in }
+L 4 -150 -10 -130 -10 {}
+T {InputSignal} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=InputRef dir=in }
+L 4 -150 10 -130 10 {}
+T {InputRef} -125 6 0 0 0.2 0.2 {}
+B 5 147.5 27.5 152.5 32.5 {name=VN dir=inout }
+L 7 130 30 150 30 {}
+T {VN} 125 26 0 1 0.2 0.2 {}
diff --git a/xschem/outdriver/xschemrc b/xschem/outdriver/xschemrc
new file mode 100644
index 0000000..794c9fe
--- /dev/null
+++ b/xschem/outdriver/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+# set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/test.sch b/xschem/test.sch
new file mode 100644
index 0000000..a9a3d3e
--- /dev/null
+++ b/xschem/test.sch
@@ -0,0 +1,243 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {set the threshold for the comparator} 750 50 0 0 0.2 0.2 {}
+T {enable TIA and feedback} 1210 70 0 0 0.2 0.2 {}
+T {LVDS output} 1170 -210 0 0 0.2 0.2 {}
+T {differential output} 1170 -370 0 0 0.2 0.2 {}
+N 210 -110 340 -110 { lab=GND}
+N 340 -120 340 -110 { lab=GND}
+N 210 70 320 70 { lab=io_analog[10:0]}
+N 470 160 470 180 { lab=GND}
+N 470 90 470 100 { lab=io_analog[10]}
+N 990 -400 1080 -400 { lab=tia1_outp}
+N 990 -320 1080 -320 { lab=tia1_outn}
+N 990 -240 1080 -240 { lab=tia2_outp}
+N 990 -160 1080 -160 { lab=tia2_outn}
+N 800 -400 930 -400 { lab=io_analog[2]}
+N 800 -320 930 -320 { lab=io_analog[3]}
+N 800 -240 930 -240 { lab=io_analog[0]}
+N 800 -160 930 -160 { lab=io_analog[1]}
+N 1190 -140 1190 -130 { lab=tia2_outn}
+N 1190 -70 1190 -50 { lab=GND}
+N 1260 -70 1260 -50 { lab=GND}
+N 1080 -160 1190 -160 { lab=tia2_outn}
+N 1190 -160 1190 -140 { lab=tia2_outn}
+N 1080 -240 1250 -240 { lab=tia2_outp}
+N 1250 -240 1260 -240 { lab=tia2_outp}
+N 1260 -240 1260 -130 { lab=tia2_outp}
+N 1350 -140 1350 -130 { lab=tia1_outn}
+N 1350 -70 1350 -50 { lab=GND}
+N 1420 -70 1420 -50 { lab=GND}
+N 1080 -320 1340 -320 { lab=tia1_outn}
+N 1340 -320 1350 -320 { lab=tia1_outn}
+N 1350 -320 1350 -140 { lab=tia1_outn}
+N 1080 -400 1420 -400 { lab=tia1_outp}
+N 1420 -400 1420 -130 { lab=tia1_outp}
+N 210 90 240 90 { lab=GND}
+N 240 90 240 140 { lab=GND}
+N 210 -210 240 -210 { lab=GND}
+N 240 -210 240 90 { lab=GND}
+N 210 130 240 130 { lab=GND}
+N 240 140 240 150 { lab=GND}
+N 210 110 240 110 { lab=GND}
+N 210 10 240 10 { lab=GND}
+N 210 50 240 50 { lab=GND}
+N 210 30 240 30 { lab=GND}
+N 210 -50 240 -50 { lab=GND}
+N 210 -10 240 -10 { lab=GND}
+N 210 -30 240 -30 { lab=GND}
+N 210 -190 240 -190 { lab=GND}
+N 210 -170 240 -170 { lab=GND}
+N 210 -70 240 -70 { lab=GND}
+N 210 -90 240 -90 { lab=GND}
+N -120 -230 -90 -230 { lab=GND}
+N -120 -230 -120 160 { lab=GND}
+N -120 -210 -90 -210 { lab=GND}
+N -120 -190 -90 -190 { lab=GND}
+N -120 -170 -90 -170 { lab=GND}
+N -120 -150 -90 -150 { lab=GND}
+N -120 -130 -90 -130 { lab=GND}
+N -120 -110 -90 -110 { lab=GND}
+N -120 -90 -90 -90 { lab=GND}
+N -120 -70 -90 -70 { lab=GND}
+N -120 -50 -90 -50 { lab=GND}
+N -120 -30 -90 -30 { lab=GND}
+N -120 -10 -90 -10 { lab=GND}
+N -120 10 -90 10 { lab=GND}
+N 210 -150 300 -150 { lab=#net1}
+N 300 -180 300 -150 { lab=#net1}
+N 300 -180 340 -180 { lab=#net1}
+N 210 -230 240 -230 { lab=GND}
+N 240 -230 240 -210 { lab=GND}
+N 1170 130 1300 130 { lab=io_analog[4]}
+N 1360 130 1400 130 { lab=GND}
+N 1400 130 1400 140 { lab=GND}
+N 1170 200 1300 200 { lab=io_analog[5]}
+N 1360 200 1400 200 { lab=GND}
+N 1400 200 1400 210 { lab=GND}
+N 870 90 870 100 { lab=io_analog[9]}
+N 870 90 1000 90 { lab=io_analog[9]}
+N 210 -130 300 -130 { lab=#net2}
+N 300 -130 300 -80 { lab=#net2}
+N 300 -80 300 -70 { lab=#net2}
+N 300 -70 340 -70 { lab=#net2}
+N 340 -10 340 10 { lab=GND}
+N 870 200 870 220 { lab=GND}
+N 870 100 870 140 { lab=io_analog[9]}
+N 720 210 820 210 { lab=io_analog[8]}
+N 710 210 720 210 { lab=io_analog[8]}
+N 710 170 710 210 { lab=io_analog[8]}
+N 340 -70 480 -70 { lab=#net2}
+N 480 -70 710 -70 { lab=#net2}
+N 710 -70 710 110 { lab=#net2}
+N 1150 -400 1150 -390 { lab=tia1_outp}
+N 1150 -330 1150 -320 { lab=tia1_outn}
+N 1130 -240 1130 -230 { lab=tia2_outp}
+N 1130 -170 1130 -160 { lab=tia2_outn}
+C {user_analog_project_wrapper.sym} 60 -50 0 0 {name=xpw}
+C {devices/vsource.sym} 340 -150 0 0 {name=V1 value=1.8}
+C {devices/isource.sym} 470 130 0 0 {name=I0 value="pulse 0 5e-6 5n 1n 1n 5n 20n"}
+C {devices/lab_wire.sym} 250 70 0 1 {name=l1 sig_type=std_logic lab=io_analog[10:0]}
+C {devices/gnd.sym} 470 180 0 0 {name=l2 lab=GND}
+C {devices/gnd.sym} 340 -110 0 0 {name=l3 lab=GND}
+C {devices/lab_wire.sym} 470 90 0 1 {name=l4 sig_type=std_logic lab=io_analog[10]}
+C {devices/res.sym} 1130 -200 0 0 {name=R1
+value=50
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -400 3 0 {name=R3
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -320 3 0 {name=R2
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -240 3 0 {name=R4
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -160 3 0 {name=R5
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_wire.sym} 1010 -400 0 1 {name=l9 sig_type=std_logic lab=tia1_outp}
+C {devices/lab_wire.sym} 1010 -320 0 1 {name=l10 sig_type=std_logic lab=tia1_outn}
+C {devices/lab_wire.sym} 1000 -240 0 1 {name=l11 sig_type=std_logic lab=tia2_outp}
+C {devices/lab_wire.sym} 1000 -160 0 1 {name=l12 sig_type=std_logic lab=tia2_outn}
+C {devices/lab_wire.sym} 810 -320 0 1 {name=l13 sig_type=std_logic lab=io_analog[3]}
+C {devices/lab_wire.sym} 810 -400 0 1 {name=l14 sig_type=std_logic lab=io_analog[2]}
+C {devices/lab_wire.sym} 810 -160 0 1 {name=l15 sig_type=std_logic lab=io_analog[1]}
+C {devices/lab_wire.sym} 810 -240 0 1 {name=l16 sig_type=std_logic lab=io_analog[0]}
+C {devices/code.sym} 1620 -410 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+tran 200p 15n
+plot tia1_outp tia1_outn
+plot tia2_outp tia2_outn
+plot xpw.xsub.tia_ref xpw.xsub.tia_out
+
+
+.endc 
+"}
+C {devices/code.sym} 1620 -240 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+
+.include outdriver.spice
+.include user_analog_project_wrapper.spice
+.include esd_diodes.spice
+.include mpw6_submission.spice
+.include current_mirrorx8.spice
+.include low_pvt_source.spice
+.include current_mirror_channel.spice
+.include tia_rgc_core.spice
+.include feedback_sukwani.spice
+.include transmitter.spice
+.include comparator_complete.spice
+.include comp_amp_20db_no_cmm.spice
+.include comp_adv3.spice
+.include comp_to_logic.spice
+.include comp_amp_di_40db_no_cmm.spice
+.include comp_adv3_di.spice
+
+"}
+C {devices/code.sym} 1620 -70 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+.include /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice/sky130_fd_sc_hs.spice
+
+"}
+C {devices/capa.sym} 1190 -100 0 0 {name=C1
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 1260 -100 0 0 {name=C2
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 1190 -50 0 0 {name=l17 lab=GND}
+C {devices/gnd.sym} 1260 -50 0 0 {name=l18 lab=GND}
+C {devices/capa.sym} 1350 -100 0 0 {name=C3
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 1420 -100 0 0 {name=C4
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 1350 -50 0 0 {name=l19 lab=GND}
+C {devices/gnd.sym} 1420 -50 0 0 {name=l20 lab=GND}
+C {devices/gnd.sym} 240 150 0 0 {name=l21 lab=GND}
+C {devices/gnd.sym} -120 160 0 0 {name=l22 lab=GND}
+C {devices/res.sym} 1330 130 3 0 {name=R6
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_wire.sym} 1180 130 0 1 {name=l23 sig_type=std_logic lab=io_analog[4]}
+C {devices/gnd.sym} 1400 140 0 0 {name=l24 lab=GND}
+C {devices/res.sym} 1330 200 3 0 {name=R7
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_wire.sym} 1180 200 0 1 {name=l25 sig_type=std_logic lab=io_analog[5]}
+C {devices/gnd.sym} 1400 210 0 0 {name=l26 lab=GND}
+C {devices/lab_wire.sym} 870 90 0 1 {name=l5 sig_type=std_logic lab=io_analog[9]}
+C {devices/res.sym} 870 170 0 0 {name=R8
+value=1k
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_wire.sym} 720 210 0 1 {name=l27 sig_type=std_logic lab=io_analog[8]}
+C {devices/isource.sym} 710 140 0 0 {name=I1 value="10u"}
+C {devices/vsource.sym} 340 -40 0 0 {name=V2 value=1.8}
+C {devices/gnd.sym} 340 10 0 0 {name=l28 lab=GND}
+C {devices/gnd.sym} 870 220 0 0 {name=l29 lab=GND}
diff --git a/xschem/test.spice b/xschem/test.spice
new file mode 100644
index 0000000..d57e50f
--- /dev/null
+++ b/xschem/test.spice
@@ -0,0 +1,94 @@
+** sch_path: /home/simon/code/particle_detector/xschem/test.sch
+**.subckt test
+xpw GND GND GND GND net1 net2 GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND
++ GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND GND io_analog[10]
++ io_analog[9] io_analog[8] io_analog[7] io_analog[6] io_analog[5] io_analog[4] io_analog[3] io_analog[2]
++ io_analog[1] io_analog[0] GND GND GND GND GND GND GND GND GND GND user_analog_project_wrapper
+V1 net1 GND 1.8
+I0 io_analog[10] GND pulse 0 5e-6 5n 1n 1n 5n 20n
+R1 tia2_outp tia2_outn 50 m=1
+R3 io_analog[2] tia1_outp 1 m=1
+R2 io_analog[3] tia1_outn 1 m=1
+R4 io_analog[0] tia2_outp 1 m=1
+R5 io_analog[1] tia2_outn 1 m=1
+C1 tia2_outn GND 10p m=1
+C2 tia2_outp GND 10p m=1
+C3 tia1_outn GND 10p m=1
+C4 tia1_outp GND 10p m=1
+R6 io_analog[4] GND 1 m=1
+R7 io_analog[5] GND 1 m=1
+R8 io_analog[9] GND 1k m=1
+I1 net2 io_analog[8] 10u
+V2 net2 GND 1.8
+**** begin user architecture code
+
+
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+tran 200p 15n
+plot tia1_outp tia1_outn
+plot tia2_outp tia2_outn
+plot xpw.xsub.tia_ref xpw.xsub.tia_out
+
+
+.endc
+
+
+
+
+
+.include outdriver.spice
+.include user_analog_project_wrapper.spice
+.include esd_diodes.spice
+.include mpw6_submission.spice
+.include current_mirrorx8.spice
+.include low_pvt_source.spice
+.include current_mirror_channel.spice
+.include tia_rgc_core.spice
+.include feedback_sukwani.spice
+.include transmitter.spice
+.include comparator_complete.spice
+.include comp_amp_20db_no_cmm.spice
+.include comp_adv3.spice
+.include comp_to_logic.spice
+.include comp_amp_di_40db_no_cmm.spice
+.include comp_adv3_di.spice
+
+
+
+* .lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice #model#
+.lib /usr/local/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+.include /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice/sky130_fd_sc_hs.spice
+
+
+**** end user architecture code
+**.ends
diff --git a/xschem/test/test_esd.sch b/xschem/test/test_esd.sch
new file mode 100644
index 0000000..ab39eb9
--- /dev/null
+++ b/xschem/test/test_esd.sch
@@ -0,0 +1,62 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 1490 -1230 1490 -1160 { lab=VDD}
+N 1490 -1230 1570 -1230 { lab=VDD}
+N 1570 -1230 1570 -1190 { lab=VDD}
+N 1490 -1130 1570 -1130 { lab=GND}
+N 1490 -1140 1490 -1130 { lab=GND}
+C {/home/simon/code/asic/analog/esd/esd_clamp.sym} 1340 -1150 0 0 {name=x1}
+C {devices/vsource.sym} 1570 -1160 0 0 {name=V1 value="DC 0 pulse 0 3 1u 10u 10u 1u"}
+C {devices/code.sym} 1790 -1280 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+set ITL1=10000
+
+let min_temp=0
+let var_temp = min_temp
+let max_temp=100
+let temp_step=100
+
+option temp=0
+
+
+tran 100n 30u
+ 
+plot i(v1) 
+plot v(vdd) v(x1.vgm1) v(x1.vgm5)
+
+
+.endc 
+"}
+C {devices/code.sym} 1790 -1130 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include esd_clamp.spice
+
+"}
+C {devices/code.sym} 1790 -970 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice hl
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} 1570 -1230 0 0 {name=l1 lab=VDD}
+C {devices/gnd.sym} 1570 -1130 0 0 {name=l2 lab=GND}
diff --git a/xschem/test/test_esd_mc.sch b/xschem/test/test_esd_mc.sch
new file mode 100644
index 0000000..76b2d74
--- /dev/null
+++ b/xschem/test/test_esd_mc.sch
@@ -0,0 +1,75 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 1490 -1230 1490 -1160 { lab=VDD}
+N 1490 -1230 1570 -1230 { lab=VDD}
+N 1570 -1230 1570 -1190 { lab=VDD}
+N 1490 -1130 1570 -1130 { lab=GND}
+N 1490 -1140 1490 -1130 { lab=GND}
+C {/home/simon/code/asic/analog/esd/esd_clamp.sym} 1340 -1150 0 0 {name=xesd}
+C {devices/vsource.sym} 1570 -1160 0 0 {name=V1 value="DC #UB# pulse 0 3 100n 1u 1u 100n"}
+C {devices/code.sym} 1790 -1280 0 0 {name=SPICE
+only_toplevel=true
+value="
+.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+set ITL1=10000
+
+set model=\\"#model#\\"
+let mc_runs=100
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=10
+	dowhile var_temp <= max_temp
+		option temp=$&var_temp
+		tran 5n 5u
+		wrdata 'result_tran_tran_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' i(v1) v(vdd) v(xesd.VGM1)
+		run
+		reset
+		op
+		wrdata 'result_op_op_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' i(v1) v(vdd) v(xesd.VGM1)
+		run
+		reset
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1 
+	reset
+end
+
+.endc 
+"}
+C {devices/code.sym} 1790 -1130 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+* .include esd_clamp.spice
+.include ../../../esd_clamp.spice
+
+"}
+C {devices/code.sym} 1790 -970 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} 1570 -1230 0 0 {name=l1 lab=VDD}
+C {devices/gnd.sym} 1570 -1130 0 0 {name=l2 lab=GND}
diff --git a/xschem/test/test_low_pvt_source.sch b/xschem/test/test_low_pvt_source.sch
new file mode 100644
index 0000000..762bf3d
--- /dev/null
+++ b/xschem/test/test_low_pvt_source.sch
@@ -0,0 +1,133 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -730 -530 -730 -520 { lab=VDD}
+N -730 -520 -730 -500 { lab=VDD}
+N -790 -460 -790 -430 { lab=GND}
+N -690 -320 -690 -310 { lab=VDD}
+N -690 -250 -690 -240 { lab=GND}
+N -690 -480 -550 -480 { lab=V_iout}
+N -550 -480 -550 -420 { lab=V_iout}
+N -550 -360 -550 -340 { lab=V_iout}
+N -790 -500 -730 -500 { lab=VDD}
+N -790 -480 -690 -480 { lab=V_iout}
+N -550 -570 -550 -540 { lab=VDD}
+N -550 -420 -550 -360 { lab=V_iout}
+N -670 -450 -600 -450 { lab=V_iout}
+N -600 -450 -600 -390 { lab=V_iout}
+N -670 -390 -600 -390 { lab=V_iout}
+N -600 -390 -550 -390 { lab=V_iout}
+C {devices/code.sym} -220 -460 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+set ITL1=10000
+
+let min_temp=0
+let var_temp = min_temp
+let max_temp=100
+let temp_step=100
+
+option temp=20
+op
+write test_low_pvt_source.raw
+print var_temp i(v1)
+*  i(v.xisource.v1)
+run
+reset
+
+
+
+dowhile var_temp <= max_temp
+	option temp=$&var_temp
+	op
+	* wrdata 'result_\{$&var_temp\}deg.csv' v(V_vout) 
+	let var_temp = var_temp + temp_step
+	run
+	echo 'Result will follow ...'
+	print var_temp  i(v1)
+	* i(v.xisource.v1)
+	if i(v.xisource.v1) > 1e-6
+		echo 'Large current'
+		write 'result_op_\{$&var_temp\}deg.raw'
+	end
+	*tran 100n 100u
+	*MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+	reset
+end
+
+* reset
+* option temp=0
+* op 
+* run
+* print v(v_vout) i(v1)
+* let var_vout_0deg=v(v_vout)
+* reset
+* option temp=100
+* op 
+* run
+* print v(v_vout) i(v1)
+* let var_vout_100deg=v(v_vout)
+
+* print var_vout_100deg-var_vout_0deg
+
+* tran 100n 100u
+* plot i(v.xisource.v1)
+* MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+* noise i(v1) I0 dec 1000 10 100G
+* print all
+* wrdata result_noise.csv inoise_total onoise_total
+* setplot noise1
+* plot onoise_spectrum
+* noise i(v1) I0 dec 1000 2MEG 2G
+* print all
+* wrdata result_noise.csv inoise_total onoise_total
+* setplot noise3
+* plot onoise_spectrum
+
+
+.endc 
+"}
+C {devices/vdd.sym} -730 -530 0 0 {name=l11 lab=VDD}
+C {devices/code.sym} -220 -290 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include low_pvt_source.spice
+
+"}
+C {devices/code.sym} -220 -120 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice hl
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} -690 -320 0 0 {name=l7 lab=VDD}
+C {devices/vsource.sym} -690 -280 0 0 {name=V2 value=1.8
+
+}
+C {devices/gnd.sym} -690 -240 0 0 {name=l8 lab=GND}
+C {devices/lab_wire.sym} -550 -430 0 1 {name=l12 sig_type=std_logic lab=V_iout}
+C {devices/ngspice_get_value.sym} -550 -390 0 0 {name=r4 node="v(V_iout)"
+descr="v(V_iout)"}
+C {devices/vsource.sym} -550 -510 0 0 {name=V1 value=0
+*#UB#}
+C {devices/gnd.sym} -790 -430 0 0 {name=l1 lab=GND}
+C {/home/simon/code/asic/analog/bias/low_pvt_source.sym} -940 -480 0 0 {name=xisource}
+C {devices/vdd.sym} -550 -570 0 0 {name=l2 lab=VDD}
+C {devices/isource.sym} -670 -420 0 0 {name=I0 value=10u}
diff --git a/xschem/test/test_low_pvt_source_mc.sch b/xschem/test/test_low_pvt_source_mc.sch
new file mode 100644
index 0000000..4345e34
--- /dev/null
+++ b/xschem/test/test_low_pvt_source_mc.sch
@@ -0,0 +1,103 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -730 -530 -730 -520 { lab=VDD}
+N -730 -520 -730 -500 { lab=VDD}
+N -790 -460 -790 -430 { lab=GND}
+N -1030 -200 -1030 -190 { lab=VDD}
+N -1030 -130 -1030 -120 { lab=GND}
+N -690 -480 -190 -480 { lab=V_iout_0}
+N -190 -480 -190 -280 { lab=V_iout_0}
+N -790 -500 -730 -500 { lab=VDD}
+N -790 -480 -690 -480 { lab=V_iout_0}
+N -440 -400 -190 -400 { lab=V_iout_0}
+N -440 -460 -370 -460 { lab=V_iout_0}
+N -370 -460 -370 -400 { lab=V_iout_0}
+C {devices/code.sym} 70 -460 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+set model=\\"#model#\\"
+let mc_runs=100
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=3
+	dowhile var_temp <= max_temp
+		option temp=$&var_temp
+		wrdata 'result_op_op_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' i(V0)
+		op
+		run
+		if i(V0) > 1.3E-5
+			echo 'Large current'
+*			print i(v.xisource.v1) i(V0)
+*			write 'result_op_high_\{$&var_temp\}deg_\{$&mc_runNo\}_\{$&i(v.xisource.v1)\}.raw'
+		end
+		if i(V0) < 0.7E-5
+			echo 'Large current'
+*			print i(v.xisource.v1) i(V0)
+*			write 'result_op_low_\{$&var_temp\}deg_\{$&mc_runNo\}_\{$&i(v.xisource.v1)\}.raw'
+		end
+*
+*		tran 100n 100u
+*		MEAS tran isource AVG i(v.xisource.v1) from=50u to=100u
+*		wrdata 'result_tran_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' isource
+		run
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1 
+	reset
+end
+
+.endc 
+"}
+C {devices/vdd.sym} -730 -530 0 0 {name=l11 lab=VDD}
+C {devices/code.sym} 70 -290 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+* .include bandgap.spice
+.include ../../../low_pvt_source.spice
+
+"}
+C {devices/code.sym} 70 -120 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.#model#.red #model#
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} -1030 -200 0 0 {name=l7 lab=VDD}
+C {devices/vsource.sym} -1030 -160 0 0 {name=VB value=#UB#
+
+}
+C {devices/gnd.sym} -1030 -120 0 0 {name=l8 lab=GND}
+C {devices/lab_wire.sym} -690 -480 0 1 {name=l12 sig_type=std_logic lab=V_iout_0}
+C {devices/vsource.sym} -190 -510 0 0 {name=V0 value=0
+*#UB#}
+C {devices/gnd.sym} -790 -430 0 0 {name=l1 lab=GND}
+C {/home/simon/code/asic/analog/bias/low_pvt_source.sym} -940 -480 0 0 {name=xisource}
+C {devices/vdd.sym} -190 -540 0 0 {name=l2 lab=VDD}
+C {devices/ngspice_get_value.sym} -400 -510 0 1 {name=r25 node="v(xisource.vm47d)"
+descr="v(xisource.vm47d)"}
+C {devices/isource.sym} -440 -430 0 0 {name=I0 value=10u}
+C {devices/gnd.sym} -680 -320 2 0 {name=l9 lab=GND}
diff --git a/xschem/test/test_outd.sch b/xschem/test/test_outd.sch
new file mode 100644
index 0000000..a27bb46
--- /dev/null
+++ b/xschem/test/test_outd.sch
@@ -0,0 +1,178 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -470 -410 -400 -410 { lab=Vref}
+N -470 -450 -310 -450 { lab=Vin}
+N -310 -450 -240 -450 { lab=Vin}
+N -400 -410 -240 -410 { lab=Vref}
+N 120 -500 120 -490 { lab=VDD}
+N -230 -570 -230 -560 { lab=VDD}
+N 120 -370 120 -350 { lab=GND}
+N -620 -340 -620 -320 { lab=GND}
+N -510 -340 -510 -320 { lab=GND}
+N -620 -410 -620 -400 { lab=Vin}
+N -620 -450 -470 -450 { lab=Vin}
+N -620 -450 -620 -410 { lab=Vin}
+N -510 -410 -470 -410 { lab=Vref}
+N -510 -410 -510 -400 { lab=Vref}
+N -560 -190 -560 -180 { lab=VDD}
+N -560 -120 -560 -100 { lab=GND}
+N 100 -390 120 -390 { lab=GND}
+N 120 -390 120 -370 { lab=GND}
+N 100 -410 240 -410 { lab=Voutd_outp}
+N 240 -410 240 -400 { lab=Voutd_outp}
+N 100 -430 310 -430 { lab=Voutd_outn}
+N 310 -430 310 -400 { lab=Voutd_outn}
+N 240 -340 240 -320 { lab=GND}
+N 310 -340 310 -320 { lab=GND}
+N 100 -450 120 -450 { lab=VDD}
+N 120 -490 120 -450 { lab=VDD}
+N -240 -410 -200 -410 { lab=Vref}
+N -240 -430 -200 -430 { lab=Vin}
+N -240 -450 -240 -430 { lab=Vin}
+N -230 -450 -200 -450 { lab=Voutd_bias}
+N -230 -490 -230 -450 { lab=Voutd_bias}
+N -230 -500 -230 -490 { lab=Voutd_bias}
+C {devices/code.sym} 460 -590 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+reset
+
+op
+save currents
+write test_outd.raw
+run
+reset
+
+ac dec 10 1 1T
+plot db(v(voutd_outp)-v(voutd_outn)) 
+plot db(v(xoutd.V_da2_P)-v(xoutd.V_da2_N))
+plot db(v(xoutd.V_da1_P)-v(xoutd.V_da1_N))
+
+* hardcopy filter_gain.svg db(v(Vfilt1_N)-v(Vfilt1_P))
+* noise v(voutd_outp) v2 dec 1000 2MEG 2G
+* print all
+* * wrdata result_noise.csv inoise_total onoise_total
+* setplot noise1
+* plot inoise_spectrum
+* plot onoise_spectrum
+
+reset
+* noise v(xoutd.v_da1_p) v2 dec 1000 2MEG 2G
+* setplot noise1
+* plot inoise_spectrum
+* plot onoise_spectrum
+* run
+
+* noise v(xoutd.v_da1_p) v2 dec 1000 10 1T
+* print all
+* setplot noise3
+* plot inoise_spectrum
+* plot onoise_spectrum
+* run
+
+* noise v(V_da2_P) v2 dec 1000 2MEG 2G
+* setplot noise5
+* plot inoise_spectrum
+* plot onoise_spectrum
+* run
+
+
+noise v(voutd_outp) v2 dec 100 10 1T
+print all
+setplot noise1
+plot inoise_spectrum
+plot onoise_spectrum
+run
+
+noise v(voutd_outp) v2 dec 100 1MEG 10G
+print all
+setplot noise3
+plot inoise_spectrum
+plot onoise_spectrum
+run
+
+
+
+
+* noise v(V_da2_P) v2 dec 1000 10 1T
+* print all
+* setplot noise11
+* plot inoise_spectrum
+* plot onoise_spectrum
+* run
+
+
+
+.endc 
+"}
+C {devices/code.sym} 460 -420 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+* .include tia.spice
+* .include filter_diff.spice
+* .include diffamp.spice
+* .include cmm_sense3.spice
+* .include comp.spice
+.include outdriver.spice
+
+"}
+C {devices/code.sym} 460 -250 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/gnd.sym} 120 -350 0 0 {name=l9 lab=GND}
+C {devices/vdd.sym} 120 -500 0 0 {name=l10 lab=VDD}
+C {devices/isource.sym} -230 -530 0 0 {name=I2 value=96u}
+C {devices/vdd.sym} -230 -570 0 0 {name=l12 lab=VDD}
+C {devices/lab_wire.sym} -230 -480 0 1 {name=l16 sig_type=std_logic lab=Voutd_bias}
+C {devices/ngspice_get_value.sym} -440 -450 0 0 {name=r9 node="v(Vin)"
+descr="v(Vin)"}
+C {devices/vsource.sym} -620 -370 0 0 {name=V2 value="DC 1.3 AC 1"}
+C {devices/vsource.sym} -510 -370 0 0 {name=V3 value=1.3}
+C {devices/gnd.sym} -510 -320 0 0 {name=l1 lab=GND}
+C {devices/gnd.sym} -620 -320 0 0 {name=l2 lab=GND}
+C {devices/vsource.sym} -560 -150 0 0 {name=V4 value=1.8}
+C {devices/vdd.sym} -560 -190 0 0 {name=l5 lab=VDD}
+C {devices/gnd.sym} -560 -100 0 0 {name=l6 lab=GND}
+C {/home/simon/code/asic/analog/outdriver/outdriver.sym} -50 -420 0 0 {name=xoutd}
+C {devices/capa.sym} 240 -370 0 0 {name=C1
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 310 -370 0 0 {name=C2
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 240 -320 0 0 {name=l3 lab=GND}
+C {devices/gnd.sym} 310 -320 0 0 {name=l4 lab=GND}
+C {devices/ngspice_get_value.sym} -440 -410 0 0 {name=r1 node="v(Vref)"
+descr="v(Vref)"}
+C {devices/lab_wire.sym} 160 -430 0 1 {name=l7 sig_type=std_logic lab=Voutd_outn}
+C {devices/lab_wire.sym} 160 -410 0 1 {name=l8 sig_type=std_logic lab=Voutd_outp}
+C {devices/lab_wire.sym} -340 -450 0 1 {name=l11 sig_type=std_logic lab=Vin}
+C {devices/lab_wire.sym} -340 -410 0 1 {name=l13 sig_type=std_logic lab=Vref}
+C {devices/ngspice_get_value.sym} -130 -470 0 0 {name=r2 node="v(voutd_bias)"
+descr="v(voutd_bias)"}
diff --git a/xschem/test/test_tia_rgc_full.sch b/xschem/test/test_tia_rgc_full.sch
new file mode 100644
index 0000000..2d9d8f4
--- /dev/null
+++ b/xschem/test/test_tia_rgc_full.sch
@@ -0,0 +1,260 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -230 -200 30 -200 { lab=Vtia_outP_2}
+N -1720 -150 -1720 -130 { lab=GND}
+N -1720 -400 -1720 -210 { lab=#net1}
+N -1030 -250 -1030 -240 { lab=VDD}
+N -1030 -240 -1030 -220 { lab=VDD}
+N -1600 -400 -1600 -340 { lab=#net1}
+N -1720 -400 -1600 -400 { lab=#net1}
+N -1600 -400 -1570 -400 { lab=#net1}
+N -1480 -280 -1480 -260 { lab=GND}
+N -1600 -280 -1600 -260 { lab=GND}
+N -1510 -400 -1450 -400 { lab=Vinb}
+N -1480 -400 -1480 -340 { lab=Vinb}
+N -1410 -310 -1410 -280 { lab=GND}
+N -1410 -280 -1370 -280 { lab=GND}
+N -1370 -280 -1370 -260 { lab=GND}
+N -1370 -310 -1370 -280 { lab=GND}
+N -1450 -400 -1370 -400 { lab=Vinb}
+N -1370 -400 -1370 -340 { lab=Vinb}
+N -1260 -400 -910 -400 { lab=Vinb}
+N -1370 -400 -1260 -400 { lab=Vinb}
+N -230 -180 30 -180 { lab=Vtia_outP_1}
+N 30 -120 30 -30 { lab=GND}
+N 30 -30 90 -30 { lab=GND}
+N 90 -120 90 -30 { lab=GND}
+N 60 -120 60 -30 { lab=GND}
+N 30 -180 60 -180 { lab=Vtia_outP_1}
+N 60 -180 60 -160 { lab=Vtia_outP_1}
+N -1370 -450 -1370 -400 { lab=Vinb}
+N -1240 -400 -1240 -350 { lab=Vinb}
+N -1240 -290 -1240 -270 { lab=GND}
+N 30 -200 110 -200 { lab=Vtia_outP_2}
+N -910 -400 -740 -400 { lab=Vinb}
+N -740 -400 -740 -200 { lab=Vinb}
+N -740 -200 -650 -200 { lab=Vinb}
+N -800 -220 -650 -220 { lab=GND}
+N -810 -560 -640 -560 { lab=Vbias2}
+N -630 -540 -580 -540 { lab=GND}
+N -640 -560 -580 -560 { lab=Vbias2}
+N -350 -180 -320 -180 { lab=#net2}
+N -320 -420 -320 -180 { lab=#net2}
+N -630 -420 -320 -420 { lab=#net2}
+N -630 -520 -630 -420 { lab=#net2}
+N -630 -520 -580 -520 { lab=#net2}
+N -610 -500 -580 -500 { lab=Vtia_outP_1}
+N -610 -500 -610 -370 { lab=Vtia_outP_1}
+N -610 -370 -300 -370 { lab=Vtia_outP_1}
+N -300 -370 -300 -160 { lab=Vtia_outP_1}
+N -350 -160 -300 -160 { lab=Vtia_outP_1}
+N -350 -140 -350 -90 { lab=GND}
+N -350 -270 -350 -220 { lab=VDD}
+N -910 -180 -650 -180 { lab=Vbias1}
+N -910 -180 -910 -160 { lab=Vbias1}
+N -1030 -160 -910 -160 { lab=Vbias1}
+N -350 -200 -230 -200 { lab=Vtia_outP_2}
+N -300 -180 -230 -180 { lab=Vtia_outP_1}
+N -280 -540 -250 -540 { lab=Vinb}
+N -250 -540 -250 -340 { lab=Vinb}
+N -280 -560 -230 -560 { lab=VDD}
+N -230 -590 -230 -560 { lab=VDD}
+N -280 -520 -230 -520 { lab=GND}
+N -230 -520 -230 -510 { lab=GND}
+N -700 -480 -580 -480 { lab=GND}
+N -700 -480 -700 -470 { lab=GND}
+N -810 -560 -810 -550 { lab=Vbias2}
+N -810 -490 -810 -470 { lab=GND}
+N -740 -340 -250 -340 { lab=Vinb}
+N -720 -540 -630 -540 { lab=GND}
+N -720 -540 -720 -520 { lab=GND}
+N -650 -600 -650 -540 { lab=GND}
+C {devices/code.sym} 570 -440 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+* .option temp=100
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+** TIA
+
+
+op
+write test_tia_rgc_full.raw
+run
+reset
+* option temp=20
+* noise v(Vtia_outP-Vtia_outN) iin dec 100 1 100G
+* print all
+* setplot noise2
+* write noise_tia2.raw
+* wrdata result_noise_tia2.csv
+* run
+* reset
+
+ac dec 1000 10 1T
+plot vdb(Vtia_outP_1) vdb(Vtia_outP_2)
+plot v(Vinb)
+plot phase(Vinb)/pi*180 phase(Vtia_outP_1)/pi*180
+hardcopy bandwidth.svg vdb(Vtia_outP_1)
+hardcopy impedance.svg v(Vinb)
+
+
+* tran 1p 100n
+* plot v(Vtia_outP_1) v(Vtia_outP_2)
+* plot v(Vinb)
+meas ac gain FIND vdb(vtia_outp_1) AT=10MEG
+meas ac max_gain max vdb(vtia_outp_1) from=1MEG to=100G
+meas ac min_gain min vdb(vtia_outp_1) from=1MEG to=100MEG
+let bw_gain=gain-3
+meas ac bandwidth when vdb(vtia_outp_1)=bw_gain fall = LAST
+wrdata result_freq.csv gain max_gain min_gain bandwidth
+run
+reset
+noise v(vtia_outp_1) i1 dec 1000 10 2G
+print all
+* wrdata result_noise.csv inoise_total onoise_total
+setplot noise1
+plot inoise_spectrum
+plot onoise_spectrum
+hardcopy tia_rgc_inoise_spectrum.svg inoise_spectrum
+hardcopy tia_rgc_onoise_spectrum.svg onoise_spectrum
+* plot log(inoise_spectrum)
+* write noise_tia2.raw
+run
+* 
+reset
+noise v(vtia_outp_1) i1 dec 1000 2MEG 2G
+print all
+* wrdata result_noise.csv inoise_total onoise_total
+setplot noise3
+plot inoise_spectrum
+plot onoise_spectrum
+hardcopy tia_rgc_inoise_spectrum_zoom.svg inoise_spectrum
+hardcopy tia_rgc_onoise_spectrum_zoom.svg onoise_spectrum
+* plot log(inoise_spectrum)
+* write noise_tia2.raw
+run
+* 
+
+
+.endc 
+"}
+C {devices/lab_wire.sym} -1240 -400 0 1 {name=l5 sig_type=std_logic lab=Vinb}
+C {devices/code.sym} 570 -270 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include tia_rgc_core.spice
+.include tia_rgc_feedback.spice
+
+"}
+C {devices/code.sym} 570 -100 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice sf
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} -890 -630 0 0 {name=l7 lab=VDD}
+C {devices/vsource.sym} -890 -600 0 0 {name=V2 value=1.8
+*#UB#}
+C {devices/gnd.sym} -890 -570 0 0 {name=l8 lab=GND}
+C {devices/lab_wire.sym} -200 -180 0 1 {name=l10 sig_type=std_logic lab=Vtia_outP_1}
+C {devices/ngspice_get_value.sym} -90 -150 0 0 {name=r4 node="v(Vtia_outP_1)"
+descr="v(Vtia_outP_1)"}
+C {devices/isource.sym} -1720 -180 0 0 {name=I1 value="DC 0 AC 1"
+* "pulse 0 50E-9 10n 0.1n 0.1n 5n 10n"
+* 
+*
+*}
+C {devices/gnd.sym} -1720 -130 0 0 {name=l16 lab=GND}
+C {devices/isource.sym} -1030 -190 0 0 {name=I2 value=80u}
+C {devices/ngspice_get_value.sym} -1310 -400 0 0 {name=r2 node="v(Vinb)"
+descr="v(Vinb)"}
+C {devices/vdd.sym} -1030 -250 0 0 {name=l4 lab=VDD}
+C {devices/capa.sym} -1480 -310 0 0 {name=C1
+m=1
+value=200f
+footprint=1206
+device="ceramic capacitor"}
+C {devices/ind.sym} -1540 -400 1 0 {name=L1
+m=1
+value=1n
+footprint=1206
+device=inductor}
+C {devices/capa.sym} -1600 -310 0 0 {name=C2
+m=1
+value=3p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} -1480 -260 0 0 {name=l9 lab=GND}
+C {devices/gnd.sym} -1600 -260 0 0 {name=l13 lab=GND}
+C {devices/ngspice_get_value.sym} -880 -260 0 0 {name=r3 node="v(Vbias1)"
+descr="v(Vbias1)"}
+C {sky130_fd_pr/nfet_01v8_esd.sym} -1390 -310 0 0 {name=M1
+L=0.165
+W=20.35
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=esd_nfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} -1370 -260 0 0 {name=l15 lab=GND}
+C {devices/lab_wire.sym} -910 -180 0 1 {name=l3 sig_type=std_logic lab=Vbias1}
+C {devices/ngspice_get_value.sym} -730 -570 0 0 {name=r5 node="v(Vbias2)"
+descr="v(Vbias2)"}
+C {devices/lab_wire.sym} -200 -200 0 1 {name=l14 sig_type=std_logic lab=Vtia_outP_2}
+C {devices/ngspice_get_value.sym} -100 -200 0 0 {name=r6 node="v(Vtia_outP_2)"
+descr="v(Vtia_outP_2)"}
+C {devices/isource.sym} -810 -520 0 0 {name=I3 value=8u}
+C {devices/lab_wire.sym} -810 -560 0 1 {name=l18 sig_type=std_logic lab=Vbias2}
+C {devices/gnd.sym} -810 -470 0 0 {name=l2 lab=GND}
+C {sky130_fd_pr/nfet_01v8.sym} 60 -140 1 0 {name=M2
+L=0.2
+W=1.5
+nf=1 
+mult=30
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} 60 -30 0 0 {name=l12 lab=GND}
+C {devices/gnd.sym} -1240 -270 0 0 {name=l22 lab=GND}
+C {devices/vdd.sym} -1370 -510 0 0 {name=l21 lab=VDD}
+C {/home/simon/code/asic/analog/tia/tia_rgc_core.sym} -500 -180 0 0 {name=x1}
+C {/home/simon/code/asic/analog/tia/tia_rgc_feedback.sym} -430 -520 0 0 {name=x2}
+C {devices/gnd.sym} -800 -220 0 0 {name=l19 lab=GND}
+C {devices/gnd.sym} -350 -90 0 0 {name=l6 lab=GND}
+C {devices/vdd.sym} -350 -270 0 0 {name=l17 lab=VDD}
+C {devices/vdd.sym} -230 -590 0 0 {name=l1 lab=VDD}
+C {devices/gnd.sym} -230 -510 0 0 {name=l11 lab=GND}
+C {devices/noconn.sym} 110 -200 2 0 {name=l24}
+C {devices/isource.sym} -1240 -320 0 0 {name=I4 value=20u}
+C {devices/gnd.sym} -720 -520 0 0 {name=l25 lab=GND}
+C {devices/gnd.sym} -700 -470 0 0 {name=l20 lab=GND}
diff --git a/xschem/test/test_tia_rgc_full_mc.sch b/xschem/test/test_tia_rgc_full_mc.sch
new file mode 100644
index 0000000..d59ce40
--- /dev/null
+++ b/xschem/test/test_tia_rgc_full_mc.sch
@@ -0,0 +1,246 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N -320 -240 -320 -230 { lab=VDD}
+N -320 -230 -320 -210 { lab=VDD}
+N -240 -160 20 -160 { lab=Vtia_outP_2}
+N -1880 -150 -1880 -130 { lab=GND}
+N -1880 -400 -1880 -210 { lab=#net1}
+N -820 -260 -820 -250 { lab=VDD}
+N -820 -250 -820 -230 { lab=VDD}
+N -1760 -400 -1760 -340 { lab=#net1}
+N -1880 -400 -1760 -400 { lab=#net1}
+N -1760 -400 -1730 -400 { lab=#net1}
+N -1640 -280 -1640 -260 { lab=GND}
+N -1760 -280 -1760 -260 { lab=GND}
+N -1670 -400 -1610 -400 { lab=Vinb}
+N -1640 -400 -1640 -340 { lab=Vinb}
+N -1570 -310 -1570 -280 { lab=GND}
+N -1570 -280 -1530 -280 { lab=GND}
+N -1530 -280 -1530 -260 { lab=GND}
+N -1530 -310 -1530 -280 { lab=GND}
+N -1610 -400 -1530 -400 { lab=Vinb}
+N -1530 -400 -1530 -340 { lab=Vinb}
+N -340 -200 -320 -200 { lab=VDD}
+N -320 -210 -320 -200 { lab=VDD}
+N -340 -120 -320 -120 { lab=GND}
+N -320 -120 -320 -80 { lab=GND}
+N -1420 -400 -1070 -400 { lab=Vinb}
+N -1530 -400 -1420 -400 { lab=Vinb}
+N -240 -140 20 -140 { lab=Vtia_outP_1}
+N 20 -80 20 10 { lab=GND}
+N 20 10 80 10 { lab=GND}
+N 80 -80 80 10 { lab=GND}
+N 50 -80 50 10 { lab=GND}
+N 20 -140 50 -140 { lab=Vtia_outP_1}
+N 50 -140 50 -120 { lab=Vtia_outP_1}
+N -1530 -450 -1530 -400 { lab=Vinb}
+N -340 -140 -240 -140 { lab=Vtia_outP_1}
+N -340 -180 -270 -180 { lab=Vtia_outP_2}
+N -270 -180 -270 -160 { lab=Vtia_outP_2}
+N -270 -160 -240 -160 { lab=Vtia_outP_2}
+N -340 -160 -310 -160 { lab=#net2}
+N -690 -350 -310 -350 { lab=#net2}
+N -690 -480 -690 -350 { lab=#net2}
+N -690 -490 -690 -480 { lab=#net2}
+N -690 -490 -640 -490 { lab=#net2}
+N -670 -370 -280 -370 { lab=Vtia_outP_1}
+N -670 -470 -670 -370 { lab=Vtia_outP_1}
+N -670 -470 -640 -470 { lab=Vtia_outP_1}
+N -810 -450 -640 -450 { lab=#net3}
+N -910 -510 -640 -510 { lab=#net4}
+N -910 -510 -910 -450 { lab=#net4}
+N -1000 -530 -640 -530 { lab=Vbias2}
+N -1000 -530 -1000 -450 { lab=Vbias2}
+N -730 -200 -640 -200 { lab=GND}
+N -820 -160 -640 -160 { lab=Vbias1}
+N -820 -170 -820 -160 { lab=Vbias1}
+N -690 -180 -640 -180 { lab=Vinb}
+N -690 -320 -690 -180 { lab=Vinb}
+N -1050 -320 -690 -320 { lab=Vinb}
+N -1050 -400 -1050 -320 { lab=Vinb}
+N -1070 -400 -1050 -400 { lab=Vinb}
+N -310 -160 -290 -160 { lab=#net2}
+N -290 -350 -290 -160 { lab=#net2}
+N -310 -350 -290 -350 { lab=#net2}
+N -260 -370 -260 -140 { lab=Vtia_outP_1}
+N -280 -370 -260 -370 { lab=Vtia_outP_1}
+N -320 -570 -320 -560 { lab=VDD}
+N -320 -560 -320 -540 { lab=VDD}
+N -340 -530 -320 -530 { lab=VDD}
+N -320 -540 -320 -530 { lab=VDD}
+N -340 -490 -320 -490 { lab=GND}
+N -320 -490 -320 -450 { lab=GND}
+N -690 -320 -240 -320 { lab=Vinb}
+N -240 -510 -240 -320 { lab=Vinb}
+N -340 -510 -240 -510 { lab=Vinb}
+C {devices/code.sym} 370 -490 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+** TIA
+
+set model=\\"#model#\\"
+let mc_runs=100
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=10
+	let noise_no=1
+	dowhile var_temp <= max_temp
+
+		* AC analysis
+		ac dec 10 1 1T
+		option temp=$&var_temp
+		* Write frequency spectra
+		wrdata 'result_ac_ac_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' v(Vinb) vdb(Vtia_outP_1) vdb(Vtia_outP_2)
+		* Measure and write key parameters
+		meas ac gain FIND vdb(vtia_outp_1) AT=50MEG
+		meas ac max_gain max vdb(vtia_outp_1) from=1MEG to=100G
+		meas ac min_gain min vdb(vtia_outp_1) from=1MEG to=100MEG
+		let bw_gain=gain-3
+		meas ac bandwidth_upper when vdb(vtia_outp_1)=bw_gain fall = LAST
+		let bandwidth_lower=bandwidth_upper
+		meas ac bandwidth_lower when vdb(vtia_outp_1)=bw_gain rise = LAST
+		wrdata 'result_meas_meas_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' gain max_gain min_gain bandwidth_upper bandwidth_lower
+		* Noise analysis		
+		noise v(vtia_outp_1) i1 dec 10 10 2G
+		setplot noise\{$&noise_no\}
+		let noise_no=noise_no+2
+		wrdata 'result_noise_full_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' inoise_spectrum onoise_spectrum
+		noise v(vtia_outp_1) i1 dec 10 2MEG 2G
+		setplot noise\{$&noise_no\}
+		let noise_no=noise_no+2
+		wrdata 'result_noise_zoom_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' inoise_spectrum onoise_spectrum		
+		run
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1 
+	reset
+end
+
+.endc 
+"}
+C {devices/vdd.sym} -320 -240 0 0 {name=l11 lab=VDD}
+C {devices/lab_wire.sym} -1400 -400 0 1 {name=l5 sig_type=std_logic lab=Vinb}
+C {devices/code.sym} 370 -320 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include ../../../tia_rgc_core.spice
+.include ../../../tia_rgc_feedback.spice
+
+"}
+C {devices/code.sym} 370 -150 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice sf
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/vdd.sym} -1090 -600 0 0 {name=l7 lab=VDD}
+C {devices/vsource.sym} -1090 -570 0 0 {name=V2 value=#UB#}
+C {devices/gnd.sym} -1090 -540 0 0 {name=l8 lab=GND}
+C {devices/lab_wire.sym} -210 -140 0 1 {name=l10 sig_type=std_logic lab=Vtia_outP_1}
+C {devices/ngspice_get_value.sym} -100 -110 0 0 {name=r4 node="v(Vtia_outP_1)"
+descr="v(Vtia_outP_1)"}
+C {devices/isource.sym} -1880 -180 0 0 {name=I1 value="DC 0 AC 1"
+* "pulse 0 50E-9 10n 0.1n 0.1n 5n 10n"
+* 
+*
+*}
+C {devices/gnd.sym} -1880 -130 0 0 {name=l16 lab=GND}
+C {devices/isource.sym} -820 -200 0 0 {name=I2 value=80u}
+C {devices/ngspice_get_value.sym} -1470 -400 0 0 {name=r2 node="v(Vinb)"
+descr="v(Vinb)"}
+C {devices/vdd.sym} -820 -260 0 0 {name=l4 lab=VDD}
+C {devices/capa.sym} -1640 -310 0 0 {name=C1
+m=1
+value=200f
+footprint=1206
+device="ceramic capacitor"}
+C {devices/ind.sym} -1700 -400 1 0 {name=L1
+m=1
+value=1n
+footprint=1206
+device=inductor}
+C {devices/capa.sym} -1760 -310 0 0 {name=C2
+m=1
+value=3p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} -1640 -260 0 0 {name=l9 lab=GND}
+C {devices/gnd.sym} -1760 -260 0 0 {name=l13 lab=GND}
+C {devices/ngspice_get_value.sym} -1040 -260 0 0 {name=r3 node="v(Vbias1)"
+descr="v(Vbias1)"}
+C {sky130_fd_pr/nfet_01v8_esd.sym} -1550 -310 0 0 {name=M1
+L=0.165
+W=20.35
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=esd_nfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} -1530 -260 0 0 {name=l15 lab=GND}
+C {devices/lab_wire.sym} -800 -160 0 1 {name=l3 sig_type=std_logic lab=Vbias1}
+C {devices/ngspice_get_value.sym} -1040 -230 0 0 {name=r5 node="v(Vbias2)"
+descr="v(Vbias2)"}
+C {devices/gnd.sym} -320 -80 0 0 {name=l1 lab=GND}
+C {devices/lab_wire.sym} -210 -160 0 1 {name=l14 sig_type=std_logic lab=Vtia_outP_2}
+C {devices/ngspice_get_value.sym} -110 -160 0 0 {name=r6 node="v(Vtia_outP_2)"
+descr="v(Vtia_outP_2)"}
+C {devices/isource.sym} -1000 -420 0 0 {name=I3 value=8u}
+C {devices/lab_wire.sym} -910 -530 0 1 {name=l18 sig_type=std_logic lab=Vbias2}
+C {sky130_fd_pr/nfet_01v8.sym} 50 -100 1 0 {name=M2
+L=0.3
+W=2
+nf=1 
+mult=3
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} 50 10 0 0 {name=l12 lab=GND}
+C {devices/noconn.sym} 20 -160 2 0 {name=l19}
+C {devices/vdd.sym} -1530 -510 0 0 {name=l21 lab=VDD}
+C {devices/isource.sym} -1530 -480 0 0 {name=I4 value=#ID#}
+C {devices/vsource.sym} -810 -420 0 0 {name=V1 value=#FB_PP_EN#}
+C {devices/gnd.sym} -810 -390 0 0 {name=l25 lab=GND}
+C {devices/vsource.sym} -910 -420 0 0 {name=V3 value=#FB_DIS#}
+C {devices/gnd.sym} -910 -390 0 0 {name=l17 lab=GND}
+C {devices/gnd.sym} -1000 -390 0 0 {name=l22 lab=GND}
+C {/home/simon/code/asic/analog/tia/tia_rgc_feedback.sym} -490 -490 0 0 {name=x2}
+C {/home/simon/code/asic/analog/tia/tia_rgc_core.sym} -490 -160 0 0 {name=x1}
+C {devices/gnd.sym} -730 -200 0 0 {name=l2 lab=GND}
+C {devices/vdd.sym} -320 -570 0 0 {name=l6 lab=VDD}
+C {devices/gnd.sym} -320 -450 0 0 {name=l20 lab=GND}
diff --git a/xschem/test/test_tia_rgc_integration.sch b/xschem/test/test_tia_rgc_integration.sch
new file mode 100644
index 0000000..2eb1427
--- /dev/null
+++ b/xschem/test/test_tia_rgc_integration.sch
@@ -0,0 +1,278 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 110 -120 130 -120 { lab=GND}
+N 130 -120 130 -90 { lab=GND}
+N 110 -160 150 -160 { lab=VDD}
+N 150 -180 150 -160 { lab=VDD}
+N 110 -140 260 -140 { lab=#net1}
+N 10 40 10 60 { lab=GND}
+N 10 -40 10 -20 { lab=VDD}
+N 560 -120 640 -120 { lab=#net2}
+N 560 -140 610 -140 { lab=VDD}
+N 590 0 590 20 { lab=GND}
+N 560 20 590 20 { lab=GND}
+N 560 -0 590 0 { lab=GND}
+N 560 -100 590 -100 { lab=GND}
+N 590 -100 590 -0 { lab=GND}
+N 560 -20 590 -20 { lab=GND}
+N 560 -40 590 -40 { lab=GND}
+N 560 -60 590 -60 { lab=GND}
+N 560 -80 590 -80 { lab=GND}
+N 940 -40 970 -40 { lab=GND}
+N 970 -40 970 -30 { lab=GND}
+N 940 -120 970 -120 { lab=VDD}
+N 970 -140 970 -120 { lab=VDD}
+N 940 -100 1040 -100 { lab=#net3}
+N 1210 -120 1250 -120 { lab=GND}
+N 1210 -130 1210 -120 { lab=GND}
+N 1550 -120 1590 -120 { lab=VDD}
+N 1550 -40 1590 -40 { lab=GND}
+N 1590 -40 1590 -30 { lab=GND}
+N -130 -350 -130 -330 { lab=GND}
+N -130 -480 -130 -410 { lab=#net4}
+N -10 -480 -10 -420 { lab=#net4}
+N -130 -480 -10 -480 { lab=#net4}
+N -10 -480 20 -480 { lab=#net4}
+N 110 -360 110 -340 { lab=GND}
+N -10 -360 -10 -340 { lab=GND}
+N 80 -480 140 -480 { lab=Vinb}
+N 110 -480 110 -420 { lab=Vinb}
+N 140 -480 920 -480 { lab=Vinb}
+N 1160 -100 1250 -100 { lab=Vinb}
+N 1160 -480 1160 -100 { lab=Vinb}
+N 1030 -480 1160 -480 { lab=Vinb}
+N 1550 -80 1710 -80 { lab=Vtia_out_ref}
+N 1550 -100 1710 -100 { lab=Vtia_outP_2}
+N 1710 -80 1740 -80 { lab=Vtia_out_ref}
+N 560 40 560 60 { lab=GND}
+N 940 -60 1030 -60 { lab=GND}
+N 940 -80 1010 -80 { lab=#net5}
+N 1010 -80 1010 20 { lab=#net5}
+N 1040 -80 1250 -80 { lab=#net3}
+N 1040 -100 1040 -80 { lab=#net3}
+N 1030 -60 1070 -60 { lab=GND}
+N 1070 -60 1070 -50 { lab=GND}
+N 1010 20 1720 20 { lab=#net5}
+N 1720 0 1800 0 { lab=#net5}
+N 1720 0 1720 20 { lab=#net5}
+N 1770 20 1800 20 { lab=Vtia_outP_1}
+N 1770 -50 1770 20 { lab=Vtia_outP_1}
+N 1770 -60 1770 -50 { lab=Vtia_outP_1}
+N 1550 -60 1770 -60 { lab=Vtia_outP_1}
+N 1750 40 1800 40 { lab=Vtia_out_ref}
+N 1750 -80 1750 40 { lab=Vtia_out_ref}
+N 1740 -80 1750 -80 { lab=Vtia_out_ref}
+N 2100 0 2140 0 { lab=VDD}
+N 2100 60 2140 60 { lab=GND}
+N 2140 60 2140 70 { lab=GND}
+N 2440 100 2440 120 { lab=GND}
+N 2100 40 2440 40 { lab=V_outP}
+N 2520 100 2520 120 { lab=GND}
+N 2520 20 2520 40 { lab=V_outN}
+N 2100 20 2520 20 { lab=V_outN}
+N 920 -480 1030 -480 { lab=Vinb}
+N 960 -580 1000 -580 { lab=GND}
+N 1000 -580 1000 -550 { lab=GND}
+N 960 -620 1000 -620 { lab=VDD}
+N 1000 -660 1000 -620 { lab=VDD}
+N 960 -600 1060 -600 { lab=Vinb}
+N 1060 -600 1060 -480 { lab=Vinb}
+N 2190 -140 2230 -140 { lab=GND}
+N 2230 -140 2230 -110 { lab=GND}
+N 2190 -180 2230 -180 { lab=VDD}
+N 2230 -220 2230 -180 { lab=VDD}
+N 2190 -160 2290 -160 { lab=V_outN}
+N 2290 -160 2290 20 { lab=V_outN}
+N 2210 200 2250 200 { lab=GND}
+N 2250 200 2250 230 { lab=GND}
+N 2210 160 2250 160 { lab=VDD}
+N 2250 120 2250 160 { lab=VDD}
+N 2210 180 2310 180 { lab=V_outP}
+N 2310 40 2310 180 { lab=V_outP}
+C {/home/simon/code/asic/analog/bias/current_mirrorx8.sym} 410 -50 0 0 {name=xcurm}
+C {/home/simon/code/asic/analog/bias/low_pvt_source.sym} -40 -140 0 0 {name=xisource}
+C {/home/simon/code/asic/analog/bias/current_mirror_channel.sym} 790 -80 0 0 {name=x1}
+C {devices/vsource.sym} 10 10 0 0 {name=V1 value=1.8}
+C {devices/gnd.sym} 130 -90 0 0 {name=l1 lab=GND}
+C {devices/vdd.sym} 10 -40 0 0 {name=l2 lab=VDD}
+C {devices/gnd.sym} 10 60 0 0 {name=l3 lab=GND}
+C {devices/vdd.sym} 150 -180 0 0 {name=l4 lab=VDD}
+C {devices/vdd.sym} 610 -140 0 0 {name=l5 lab=VDD}
+C {devices/gnd.sym} 590 20 0 0 {name=l6 lab=GND}
+C {devices/vdd.sym} 970 -140 0 0 {name=l7 lab=VDD}
+C {devices/gnd.sym} 970 -30 0 0 {name=l8 lab=GND}
+C {devices/gnd.sym} 1210 -130 2 0 {name=l9 lab=GND}
+C {devices/vdd.sym} 1590 -120 0 0 {name=l12 lab=VDD}
+C {devices/gnd.sym} 1590 -30 0 0 {name=l13 lab=GND}
+C {devices/lab_wire.sym} 1160 -380 0 1 {name=l14 sig_type=std_logic lab=Vinb}
+C {devices/isource.sym} -130 -380 0 0 {name=I1 value="DC 0 AC 1"
+* "pulse 0 50E-9 10n 0.1n 0.1n 5n 10n"
+* 
+*
+*}
+C {devices/gnd.sym} -130 -330 0 0 {name=l16 lab=GND}
+C {devices/ngspice_get_value.sym} 1160 -410 0 0 {name=r2 node="v(Vinb)"
+descr="v(Vinb)"}
+C {devices/capa.sym} 110 -390 0 0 {name=C1
+m=1
+value=200f
+footprint=1206
+device="ceramic capacitor"}
+C {devices/ind.sym} 50 -480 1 0 {name=L1
+m=1
+value=1n
+footprint=1206
+device=inductor}
+C {devices/capa.sym} -10 -390 0 0 {name=C2
+m=1
+value=3p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 110 -340 0 0 {name=l15 lab=GND}
+C {devices/gnd.sym} -10 -340 0 0 {name=l17 lab=GND}
+C {devices/gnd.sym} 1140 -520 0 0 {name=l22 lab=GND}
+C {devices/isource.sym} 1140 -550 0 0 {name=I4 value=5u}
+C {devices/vdd.sym} 1140 -580 0 0 {name=l19 lab=VDD}
+C {devices/code.sym} 2870 -360 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+* .option temp=100
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+** TIA
+
+
+op
+write test_tia_rgc_integration.raw
+run
+reset
+
+ac dec 1000 10 1T
+plot vdb(Vtia_outP_1) vdb(Vtia_outP_2)
+plot v(Vinb)
+plot phase(Vinb)/pi*180 phase(Vtia_outP_1)/pi*180
+
+plot db(v(V_outP)-v(V_outN))
+
+* tran 1p 100n
+* plot v(Vtia_outP_1) v(Vtia_outP_2)
+* plot v(Vinb)
+
+meas ac gain FIND vdb(vtia_outp_1) AT=10MEG
+meas ac max_gain max vdb(vtia_outp_1) from=1MEG to=100G
+meas ac min_gain min vdb(vtia_outp_1) from=1MEG to=100MEG
+let bw_gain=gain-3
+meas ac bandwidth when vdb(vtia_outp_1)=bw_gain fall = LAST
+wrdata result_ac_tia.csv gain max_gain min_gain bandwidth
+
+
+noise v(vtia_outp_1) i1 dec 1000 10 2G
+print all
+* wrdata result_noise.csv inoise_total onoise_total
+setplot noise1
+plot inoise_spectrum
+plot onoise_spectrum
+* hardcopy tia_rgc_inoise_spectrum.svg inoise_spectrum
+* hardcopy tia_rgc_onoise_spectrum.svg onoise_spectrum
+* plot log(inoise_spectrum)
+* write noise_tia2.raw
+
+noise v(vtia_outp_1) i1 dec 1000 2MEG 2G
+print all
+* wrdata result_noise.csv inoise_total onoise_total
+setplot noise3
+plot inoise_spectrum
+plot onoise_spectrum
+* hardcopy tia_rgc_inoise_spectrum_zoom.svg inoise_spectrum
+* hardcopy tia_rgc_onoise_spectrum_zoom.svg onoise_spectrum
+* plot log(inoise_spectrum)
+* write noise_tia2.raw
+
+noise v(v_outp) i1 dec 1000 2MEG 2G
+print all
+setplot noise5
+plot inoise_spectrum
+plot onoise_spectrum
+
+noise v(v_outp) i1 dec 1000 10 2G
+print all
+setplot noise7
+plot inoise_spectrum
+plot onoise_spectrum
+
+
+.endc 
+"}
+C {devices/code.sym} 2870 -190 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include tia_rgc_core.spice
+.include current_mirror_channel.spice
+.include current_mirrorx8.spice
+.include low_pvt_source.spice
+.include outdriver.spice
+.include esd_diodes.spice
+
+"}
+C {devices/code.sym} 2870 -20 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice sf
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.ll.red ll
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/lab_wire.sym} 1600 -100 0 1 {name=l23 sig_type=std_logic lab=Vtia_outP_2}
+C {devices/lab_wire.sym} 1600 -60 0 1 {name=l24 sig_type=std_logic lab=Vtia_outP_1}
+C {devices/noconn.sym} 1710 -100 2 0 {name=l26}
+C {devices/ngspice_get_value.sym} 1670 -240 0 0 {name=r6 node="v(Vtia_outP_2)"
+descr="v(Vtia_outP_2)"}
+C {devices/ngspice_get_value.sym} 1670 -210 0 0 {name=r4 node="v(Vtia_outP_1)"
+descr="v(Vtia_outP_1)"}
+C {devices/gnd.sym} 560 60 0 0 {name=l27 lab=GND}
+C {/home/simon/code/asic/analog/outdriver/outdriver.sym} 1950 30 0 0 {name=xoutd}
+C {/home/simon/code/asic/analog/tia/tia_rgc_core.sym} 1400 -80 0 0 {name=x3}
+C {devices/gnd.sym} 1070 -50 0 0 {name=l10 lab=GND}
+C {devices/vdd.sym} 2140 0 0 0 {name=l11 lab=VDD}
+C {devices/gnd.sym} 2140 70 0 0 {name=l25 lab=GND}
+C {devices/capa.sym} 2440 70 0 0 {name=C3
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 2440 120 0 0 {name=l28 lab=GND}
+C {devices/capa.sym} 2520 70 0 0 {name=C4
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 2520 120 0 0 {name=l29 lab=GND}
+C {devices/lab_wire.sym} 2380 20 0 1 {name=l30 sig_type=std_logic lab=V_outN}
+C {devices/lab_wire.sym} 2380 40 0 1 {name=l31 sig_type=std_logic lab=V_outP}
+C {devices/lab_wire.sym} 1600 -80 0 1 {name=l32 sig_type=std_logic lab=Vtia_out_ref}
+C {devices/ngspice_get_value.sym} 1670 -180 0 0 {name=r1 node="v(Vtia_out_ref)"
+descr="v(Vtia_out_ref)"}
+C {/home/simon/code/asic/analog/esd_diodes.sym} 810 -600 0 0 {name=x2}
+C {devices/vdd.sym} 1000 -660 0 0 {name=l18 lab=VDD}
+C {devices/gnd.sym} 1000 -550 0 0 {name=l20 lab=GND}
+C {/home/simon/code/asic/analog/esd_diodes.sym} 2040 -160 0 0 {name=x4}
+C {devices/vdd.sym} 2230 -220 0 0 {name=l21 lab=VDD}
+C {devices/gnd.sym} 2230 -110 0 0 {name=l33 lab=GND}
+C {/home/simon/code/asic/analog/esd_diodes.sym} 2060 180 0 0 {name=x5}
+C {devices/vdd.sym} 2250 120 0 0 {name=l34 lab=VDD}
+C {devices/gnd.sym} 2250 230 0 0 {name=l35 lab=GND}
diff --git a/xschem/test/test_tia_rgc_integration_mc.sch b/xschem/test/test_tia_rgc_integration_mc.sch
new file mode 100644
index 0000000..1b88b06
--- /dev/null
+++ b/xschem/test/test_tia_rgc_integration_mc.sch
@@ -0,0 +1,274 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+N 110 -120 130 -120 { lab=GND}
+N 130 -120 130 -90 { lab=GND}
+N 110 -160 150 -160 { lab=VDD}
+N 150 -180 150 -160 { lab=VDD}
+N 110 -140 260 -140 { lab=#net1}
+N 220 -290 220 -270 { lab=GND}
+N 220 -370 220 -350 { lab=VDD}
+N 560 -120 640 -120 { lab=#net2}
+N 560 -140 610 -140 { lab=VDD}
+N 590 0 590 20 { lab=GND}
+N 560 20 590 20 { lab=GND}
+N 560 -0 590 0 { lab=GND}
+N 560 -100 590 -100 { lab=GND}
+N 590 -100 590 -0 { lab=GND}
+N 560 -20 590 -20 { lab=GND}
+N 560 -40 590 -40 { lab=GND}
+N 560 -60 590 -60 { lab=GND}
+N 560 -80 590 -80 { lab=GND}
+N 940 -40 970 -40 { lab=GND}
+N 970 -40 970 -30 { lab=GND}
+N 940 -120 970 -120 { lab=VDD}
+N 970 -140 970 -120 { lab=VDD}
+N 940 -100 1040 -100 { lab=#net3}
+N 1210 -120 1250 -120 { lab=GND}
+N 1210 -130 1210 -120 { lab=GND}
+N 1550 -120 1590 -120 { lab=VDD}
+N 1550 -40 1590 -40 { lab=GND}
+N 1590 -40 1590 -30 { lab=GND}
+N 570 -350 570 -330 { lab=GND}
+N 570 -480 570 -410 { lab=#net4}
+N 690 -480 690 -420 { lab=#net4}
+N 570 -480 690 -480 { lab=#net4}
+N 690 -480 720 -480 { lab=#net4}
+N 810 -360 810 -340 { lab=GND}
+N 690 -360 690 -340 { lab=GND}
+N 780 -480 840 -480 { lab=Vinb}
+N 810 -480 810 -420 { lab=Vinb}
+N 880 -390 880 -360 { lab=GND}
+N 880 -360 920 -360 { lab=GND}
+N 920 -360 920 -340 { lab=GND}
+N 920 -390 920 -360 { lab=GND}
+N 840 -480 920 -480 { lab=Vinb}
+N 920 -480 920 -420 { lab=Vinb}
+N 920 -480 1030 -480 { lab=Vinb}
+N 920 -530 920 -480 { lab=Vinb}
+N 1050 -480 1050 -430 { lab=Vinb}
+N 1050 -370 1050 -350 { lab=GND}
+N 1160 -100 1250 -100 { lab=Vinb}
+N 1160 -480 1160 -100 { lab=Vinb}
+N 1030 -480 1160 -480 { lab=Vinb}
+N 1550 -80 1710 -80 { lab=#net5}
+N 1550 -100 1710 -100 { lab=Vtia_outP_2}
+N 1710 -80 1740 -80 { lab=#net5}
+N 560 40 560 60 { lab=GND}
+N 940 -60 1030 -60 { lab=GND}
+N 940 -80 1010 -80 { lab=#net6}
+N 1010 -80 1010 20 { lab=#net6}
+N 1040 -80 1250 -80 { lab=#net3}
+N 1040 -100 1040 -80 { lab=#net3}
+N 1030 -60 1070 -60 { lab=GND}
+N 1070 -60 1070 -50 { lab=GND}
+N 1010 20 1720 20 { lab=#net6}
+N 1720 0 1800 0 { lab=#net6}
+N 1720 0 1720 20 { lab=#net6}
+N 1770 20 1800 20 { lab=Vtia_outP_1}
+N 1770 -50 1770 20 { lab=Vtia_outP_1}
+N 1770 -60 1770 -50 { lab=Vtia_outP_1}
+N 1550 -60 1770 -60 { lab=Vtia_outP_1}
+N 1750 40 1800 40 { lab=#net5}
+N 1750 -80 1750 40 { lab=#net5}
+N 1740 -80 1750 -80 { lab=#net5}
+N 2100 0 2140 0 { lab=VDD}
+N 2100 60 2140 60 { lab=GND}
+N 2140 60 2140 70 { lab=GND}
+N 2230 100 2230 120 { lab=GND}
+N 2100 40 2230 40 { lab=V_outP}
+N 2310 100 2310 120 { lab=GND}
+N 2310 20 2310 40 { lab=V_outN}
+N 2100 20 2310 20 { lab=V_outN}
+C {/home/simon/code/asic/analog/bias/current_mirrorx8.sym} 410 -50 0 0 {name=xcurm}
+C {/home/simon/code/asic/analog/bias/low_pvt_source.sym} -40 -140 0 0 {name=xisource}
+C {/home/simon/code/asic/analog/bias/current_mirror_channel.sym} 790 -80 0 0 {name=x1}
+C {devices/vsource.sym} 220 -320 0 0 {name=V1 value=#UB#}
+C {devices/gnd.sym} 130 -90 0 0 {name=l1 lab=GND}
+C {devices/vdd.sym} 220 -370 0 0 {name=l2 lab=VDD}
+C {devices/gnd.sym} 220 -270 0 0 {name=l3 lab=GND}
+C {devices/vdd.sym} 150 -180 0 0 {name=l4 lab=VDD}
+C {devices/vdd.sym} 610 -140 0 0 {name=l5 lab=VDD}
+C {devices/gnd.sym} 590 20 0 0 {name=l6 lab=GND}
+C {devices/vdd.sym} 970 -140 0 0 {name=l7 lab=VDD}
+C {devices/gnd.sym} 970 -30 0 0 {name=l8 lab=GND}
+C {devices/gnd.sym} 1210 -130 2 0 {name=l9 lab=GND}
+C {devices/vdd.sym} 1590 -120 0 0 {name=l12 lab=VDD}
+C {devices/gnd.sym} 1590 -30 0 0 {name=l13 lab=GND}
+C {devices/lab_wire.sym} 1050 -480 0 1 {name=l14 sig_type=std_logic lab=Vinb}
+C {devices/isource.sym} 570 -380 0 0 {name=I1 value="DC 0 AC 1"
+* "pulse 0 50E-9 10n 0.1n 0.1n 5n 10n"
+* 
+*
+*}
+C {devices/gnd.sym} 570 -330 0 0 {name=l16 lab=GND}
+C {devices/ngspice_get_value.sym} 980 -480 0 0 {name=r2 node="v(Vinb)"
+descr="v(Vinb)"}
+C {devices/capa.sym} 810 -390 0 0 {name=C1
+m=1
+value=200f
+footprint=1206
+device="ceramic capacitor"}
+C {devices/ind.sym} 750 -480 1 0 {name=L1
+m=1
+value=1n
+footprint=1206
+device=inductor}
+C {devices/capa.sym} 690 -390 0 0 {name=C2
+m=1
+value=3p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 810 -340 0 0 {name=l15 lab=GND}
+C {devices/gnd.sym} 690 -340 0 0 {name=l17 lab=GND}
+C {sky130_fd_pr/nfet_01v8_esd.sym} 900 -390 0 0 {name=M1
+L=0.165
+W=20.35
+nf=1
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=esd_nfet_01v8
+spiceprefix=X
+}
+C {devices/gnd.sym} 920 -340 0 0 {name=l18 lab=GND}
+C {devices/vdd.sym} 920 -590 0 0 {name=l21 lab=VDD}
+C {devices/gnd.sym} 1050 -350 0 0 {name=l20 lab=GND}
+C {devices/code.sym} 2700 -360 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+* .option temp=100
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+set model=\\"#model#\\"
+let mc_runs=3
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=30
+	let noise_no=1
+	dowhile var_temp <= max_temp
+		op
+		wrdata 'result_op_op_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' v(v_outp) v(v_outn)
+
+		* AC analysis
+		ac dec 10 10 1T
+		option temp=$&var_temp
+		wrdata 'result_ac_ac_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' v(vinb) vdb(vtia_outp_1) db(v(v_outp)-v(v_outn))
+
+		* Measure AC at output driver
+		meas ac gain_tia FIND vdb(vtia_outp_1) AT=10MEG
+		meas ac max_gain_tia max vdb(vtia_outp_1) from=1MEG to=100G
+		meas ac min_gain_tia min vdb(vtia_outp_1) from=1MEG to=100MEG
+		let bw_gain_tia=gain_tia-3
+		meas ac bandwidth_tia when vdb(vtia_outp_1)=bw_gain_tia fall = LAST
+		wrdata result_meas_tia_\{$&var_temp\}deg_\{$&mc_runNo\}.csv gain_tia max_gain_tia min_gain_tia bandwidth_tia 
+	
+		* Measure AC at output driver
+		meas ac gain_out_p FIND vdb(v_outp) AT=10MEG
+		meas ac gain_out_n FIND vdb(v_outn) AT=10MEG
+		meas ac max_gain_out_p max vdb(v_outp) from=1MEG to=100G
+		meas ac max_gain_out_n max vdb(v_outn) from=1MEG to=100G
+		meas ac min_gain_out_n min vdb(v_outn) from=1MEG to=100MEG
+		meas ac min_gain_out_p min vdb(v_outp) from=1MEG to=100MEG
+		let bw_gain_out_p=gain_out_p-3
+		let bw_gain_out_n=gain_out_n-3
+		meas ac bandwidth_out_p when vdb(v_outp)=bw_gain_out_p fall = LAST
+		meas ac bandwidth_out_n when vdb(v_outn)=bw_gain_out_n fall = LAST
+		wrdata result_meas_out_\{$&var_temp\}deg_\{$&mc_runNo\}.csv gain_out_p gain_out_n max_gain_out_p max_gain_out_n min_gain_out_n min_gain_out_p bandwidth_out_p bandwidth_out_n	
+		
+		* noise at TIA
+		noise v(vtia_outp_1) i1 dec 10 10 2G
+		setplot noise1
+		wrdata result_noise_tiaov_\{$&var_temp\}deg_\{$&mc_runNo\}.csv inoise_spectrum onoise_spectrum
+		
+		noise v(vtia_outp_1) i1 dec 10 2MEG 2G
+		setplot noise3
+		wrdata result_noise_tiazoom_\{$&var_temp\}deg_\{$&mc_runNo\}.csv inoise_spectrum onoise_spectrum
+
+		noise v(v_outp) i1 dec 10 10 2G
+		setplot noise5
+		wrdata result_noise_outov_\{$&var_temp\}deg_\{$&mc_runNo\}.csv inoise_spectrum onoise_spectrum
+		
+		noise v(v_outp) i1 dec 10 2MEG 2G
+		setplot noise7
+		wrdata result_noise_outzoom_\{$&var_temp\}deg_\{$&mc_runNo\}.csv inoise_spectrum onoise_spectrum
+		run
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1 
+	reset
+end
+
+
+
+.endc 
+"}
+C {devices/code.sym} 2700 -190 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+.include ../../../tia_rgc_core.spice
+.include ../../../current_mirror_channel.spice
+.include ../../../current_mirrorx8.spice
+.include ../../../low_pvt_source.spice
+.include ../../../outdriver.spice
+
+"}
+C {devices/code.sym} 2700 -20 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice sf
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/lab_wire.sym} 1600 -100 0 1 {name=l23 sig_type=std_logic lab=Vtia_outP_2}
+C {devices/lab_wire.sym} 1600 -60 0 1 {name=l24 sig_type=std_logic lab=Vtia_outP_1}
+C {devices/noconn.sym} 1710 -100 2 0 {name=l26}
+C {devices/ngspice_get_value.sym} 1670 -240 0 0 {name=r6 node="v(Vtia_outP_2)"
+descr="v(Vtia_outP_2)"}
+C {devices/ngspice_get_value.sym} 1670 -210 0 0 {name=r4 node="v(Vtia_outP_1)"
+descr="v(Vtia_outP_1)"}
+C {devices/gnd.sym} 560 60 0 0 {name=l27 lab=GND}
+C {/home/simon/code/asic/analog/outdriver/outdriver.sym} 1950 30 0 0 {name=xoutd}
+C {/home/simon/code/asic/analog/tia/tia_rgc_core.sym} 1400 -80 0 0 {name=x3}
+C {devices/gnd.sym} 1070 -50 0 0 {name=l10 lab=GND}
+C {devices/vdd.sym} 2140 0 0 0 {name=l11 lab=VDD}
+C {devices/gnd.sym} 2140 70 0 0 {name=l25 lab=GND}
+C {devices/capa.sym} 2230 70 0 0 {name=C3
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 2230 120 0 0 {name=l28 lab=GND}
+C {devices/capa.sym} 2310 70 0 0 {name=C4
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 2310 120 0 0 {name=l29 lab=GND}
+C {devices/lab_wire.sym} 2170 20 0 1 {name=l30 sig_type=std_logic lab=V_outN}
+C {devices/lab_wire.sym} 2170 40 0 1 {name=l31 sig_type=std_logic lab=V_outP}
diff --git a/xschem/test/xschemrc b/xschem/test/xschemrc
new file mode 100644
index 0000000..794c9fe
--- /dev/null
+++ b/xschem/test/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+# set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/test_mc.sch b/xschem/test_mc.sch
new file mode 100644
index 0000000..44a41f9
--- /dev/null
+++ b/xschem/test_mc.sch
@@ -0,0 +1,227 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {enable TIA} 580 -140 0 0 0.4 0.4 {}
+T {provide a separate waveform for each TIA} 640 30 0 0 0.4 0.4 {}
+N 210 -110 340 -110 { lab=GND}
+N 340 -120 340 -110 { lab=GND}
+N 210 70 320 70 { lab=io_analog[10:0]}
+N 470 160 470 180 { lab=GND}
+N 470 90 470 100 { lab=io_analog[6]}
+N 690 160 690 180 { lab=GND}
+N 690 90 690 100 { lab=io_analog[7]}
+N 570 -90 690 -90 { lab=io_analog[3]}
+N 570 0 570 10 { lab=GND}
+N 570 -90 570 -60 { lab=io_analog[3]}
+N 990 -400 1080 -400 { lab=tia1_outp}
+N 990 -320 1080 -320 { lab=tia1_outn}
+N 990 -240 1080 -240 { lab=tia2_outp}
+N 990 -160 1080 -160 { lab=tia2_outn}
+N 800 -400 930 -400 { lab=io_analog[4]}
+N 800 -320 930 -320 { lab=io_analog[5]}
+N 800 -240 930 -240 { lab=io_analog[0]}
+N 800 -160 930 -160 { lab=io_analog[1]}
+N 1190 -140 1190 -130 { lab=tia2_outn}
+N 1190 -70 1190 -50 { lab=GND}
+N 1260 -70 1260 -50 { lab=GND}
+N 1080 -160 1190 -160 { lab=tia2_outn}
+N 1190 -160 1190 -140 { lab=tia2_outn}
+N 1080 -240 1250 -240 { lab=tia2_outp}
+N 1250 -240 1260 -240 { lab=tia2_outp}
+N 1260 -240 1260 -130 { lab=tia2_outp}
+N 1350 -140 1350 -130 { lab=tia1_outn}
+N 1350 -70 1350 -50 { lab=GND}
+N 1420 -70 1420 -50 { lab=GND}
+N 1080 -320 1340 -320 { lab=tia1_outn}
+N 1340 -320 1350 -320 { lab=tia1_outn}
+N 1350 -320 1350 -140 { lab=tia1_outn}
+N 1080 -400 1420 -400 { lab=tia1_outp}
+N 1420 -400 1420 -130 { lab=tia1_outp}
+N 210 90 240 90 { lab=GND}
+N 240 90 240 140 { lab=GND}
+N 210 -210 240 -210 { lab=GND}
+N 240 -210 240 90 { lab=GND}
+N 210 130 240 130 { lab=GND}
+N 240 140 240 150 { lab=GND}
+N 210 110 240 110 { lab=GND}
+N 210 10 240 10 { lab=GND}
+N 210 50 240 50 { lab=GND}
+N 210 30 240 30 { lab=GND}
+N 210 -50 240 -50 { lab=GND}
+N 210 -10 240 -10 { lab=GND}
+N 210 -30 240 -30 { lab=GND}
+N 210 -190 240 -190 { lab=GND}
+N 210 -170 240 -170 { lab=GND}
+N 210 -130 240 -130 { lab=GND}
+N 210 -70 240 -70 { lab=GND}
+N 210 -90 240 -90 { lab=GND}
+N -120 -230 -90 -230 { lab=GND}
+N -120 -230 -120 160 { lab=GND}
+N -120 -210 -90 -210 { lab=GND}
+N -120 -190 -90 -190 { lab=GND}
+N -120 -170 -90 -170 { lab=GND}
+N -120 -150 -90 -150 { lab=GND}
+N -120 -130 -90 -130 { lab=GND}
+N -120 -110 -90 -110 { lab=GND}
+N -120 -90 -90 -90 { lab=GND}
+N -120 -70 -90 -70 { lab=GND}
+N -120 -50 -90 -50 { lab=GND}
+N -120 -30 -90 -30 { lab=GND}
+N -120 -10 -90 -10 { lab=GND}
+N -120 10 -90 10 { lab=GND}
+N 210 -150 300 -150 { lab=#net1}
+N 300 -180 300 -150 { lab=#net1}
+N 300 -180 340 -180 { lab=#net1}
+N 210 -230 240 -230 { lab=GND}
+N 240 -230 240 -210 { lab=GND}
+C {user_analog_project_wrapper.sym} 60 -50 0 0 {name=x1}
+C {devices/vsource.sym} 340 -150 0 0 {name=V1 value=#UB#}
+C {devices/isource.sym} 470 130 0 0 {name=I0 value="pulse 0 1e-6 5n 1n 1n 5n 20n"}
+C {devices/lab_wire.sym} 250 70 0 1 {name=l1 sig_type=std_logic lab=io_analog[10:0]}
+C {devices/gnd.sym} 470 180 0 0 {name=l2 lab=GND}
+C {devices/gnd.sym} 340 -110 0 0 {name=l3 lab=GND}
+C {devices/lab_wire.sym} 470 90 0 1 {name=l4 sig_type=std_logic lab=io_analog[6]}
+C {devices/isource.sym} 690 130 0 0 {name=I1 value="pulse 0 1e-6 2n 1n 1n 5n 20n"}
+C {devices/gnd.sym} 690 180 0 0 {name=l5 lab=GND}
+C {devices/lab_wire.sym} 690 90 0 1 {name=l6 sig_type=std_logic lab=io_analog[7]}
+C {devices/gnd.sym} 570 10 0 0 {name=l7 lab=GND}
+C {devices/lab_wire.sym} 630 -90 0 1 {name=l8 sig_type=std_logic lab=io_analog[3]}
+C {devices/res.sym} 570 -30 0 0 {name=R1
+value=1k
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -400 3 0 {name=R3
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -320 3 0 {name=R2
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -240 3 0 {name=R4
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/res.sym} 960 -160 3 0 {name=R5
+value=1
+footprint=1206
+device=resistor
+m=1}
+C {devices/lab_wire.sym} 1010 -400 0 1 {name=l9 sig_type=std_logic lab=tia1_outp}
+C {devices/lab_wire.sym} 1010 -320 0 1 {name=l10 sig_type=std_logic lab=tia1_outn}
+C {devices/lab_wire.sym} 1000 -240 0 1 {name=l11 sig_type=std_logic lab=tia2_outp}
+C {devices/lab_wire.sym} 1000 -160 0 1 {name=l12 sig_type=std_logic lab=tia2_outn}
+C {devices/lab_wire.sym} 810 -320 0 1 {name=l13 sig_type=std_logic lab=io_analog[5]}
+C {devices/lab_wire.sym} 810 -400 0 1 {name=l14 sig_type=std_logic lab=io_analog[4]}
+C {devices/lab_wire.sym} 810 -160 0 1 {name=l15 sig_type=std_logic lab=io_analog[1]}
+C {devices/lab_wire.sym} 810 -240 0 1 {name=l16 sig_type=std_logic lab=io_analog[0]}
+C {devices/code.sym} 1620 -410 0 0 {name=SPICE
+only_toplevel=true
+value="
+*.options savecurrents
+.option warn=1
+.control
+set wr_vecnames
+set wr_singlescale
+set hcopydevtype=svg
+
+
+set ITL1=10000
+
+set model=\\"#model#\\"
+let mc_runs=20
+let mc_runNo = 1
+
+dowhile mc_runNo <= mc_runs
+   destroy all
+	let min_temp=0
+	let var_temp = min_temp
+	let max_temp=100
+	let temp_step=10
+	dowhile var_temp <= max_temp
+		option temp=$&var_temp
+		tran 200p 15n
+		wrdata 'result_tran_tia1_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' v(tia1_outp) v(tia1_outn)
+		wrdata 'result_tran_tia2_\{$&var_temp\}deg_\{$&mc_runNo\}.csv' v(tia2_outp) v(tia2_outn)
+		run
+		reset
+		let var_temp = var_temp + temp_step
+	end
+	let  mc_runNo = mc_runNo +1 
+	reset
+end
+
+
+
+
+.endc 
+"}
+C {devices/code.sym} 1620 -240 0 0 {name=INCLUDE
+only_toplevel=true
+format="tcleval( @value )"
+value="
+
+* .include ../../tia.spice
+* .include ../../filter_diff.spice
+* .include ../../cmm_sense3.spice
+
+* .include tia.spice
+* .include filter_diff.spice
+* .include diffamp.spice
+* .include cmm_sense3.spice
+* .include comp.spice
+* .include outdriver.spice
+
+.include ../../../user_analog_project_wrapper.spice
+.include ../../../esd_diodes.spice
+.include ../../../mpw5_submission.spice
+.include ../../../outdriver.spice
+.include ../../../current_mirrorx8.spice
+.include ../../../low_pvt_source.spice
+.include ../../../current_mirror_channel.spice
+.include ../../../tia_rgc_core.spice
+
+
+
+"}
+C {devices/code.sym} 1620 -70 0 0 {name=MODELS
+only_toplevel=true
+format="tcleval( @value )"
+value="
+.lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice #model#
+* .lib \\\\$::SKYWATER_MODELS\\\\/sky130.lib.spice.tt.red tt
+* .lib /home/simon/share/pdk/sky130A/libs.tech/ngspice/sky130.lib.spice.tt.red tt
+"}
+C {devices/capa.sym} 1190 -100 0 0 {name=C1
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 1260 -100 0 0 {name=C2
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 1190 -50 0 0 {name=l17 lab=GND}
+C {devices/gnd.sym} 1260 -50 0 0 {name=l18 lab=GND}
+C {devices/capa.sym} 1350 -100 0 0 {name=C3
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/capa.sym} 1420 -100 0 0 {name=C4
+m=1
+value=10p
+footprint=1206
+device="ceramic capacitor"}
+C {devices/gnd.sym} 1350 -50 0 0 {name=l19 lab=GND}
+C {devices/gnd.sym} 1420 -50 0 0 {name=l20 lab=GND}
+C {devices/gnd.sym} 240 150 0 0 {name=l21 lab=GND}
+C {devices/gnd.sym} -120 160 0 0 {name=l22 lab=GND}
diff --git a/xschem/tia/feedback_sukwani.sch b/xschem/tia/feedback_sukwani.sch
new file mode 100644
index 0000000..f083acf
--- /dev/null
+++ b/xschem/tia/feedback_sukwani.sch
@@ -0,0 +1,988 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+T {Dark current compensation} 960 -950 0 0 0.4 0.4 {}
+T {Current mirror} -720 -970 0 0 0.4 0.4 {}
+T {disable
+fet} -290 -340 0 0 0.2 0.2 {}
+T {i=k*(VinP-VinN)} 90 -710 0 0 0.2 0.2 {}
+T {i=k*(VinN-VinP)} 1940 -710 0 0 0.2 0.2 {}
+T {2µA} -570 -470 0 0 0.2 0.2 {}
+T {Add 0.5µA as bias} 260 -460 0 0 0.2 0.2 {}
+T {Add 2µA as bias} 2140 -410 0 0 0.2 0.2 {}
+T {disable
+fet} 2350 -310 0 1 0.2 0.2 {}
+T {Considerations:
+- To disable the feedback circuit we switch off the bias and the output circuit. 
+- The diffamp operates at a low bias current to maximize the time constant of the low-pass
+- Based on Menka Sukhwani et al 2021 JINST 16 P07042} -350 -1020 0 0 0.2 0.2 {}
+T {2µA} 1130 -380 0 0 0.2 0.2 {}
+N -1150 -880 -480 -880 { lab=VP}
+N -540 -330 -540 -240 { lab=I_Bias}
+N -500 -330 -410 -330 { lab=VN}
+N -410 -330 -410 -180 { lab=VN}
+N -500 -300 -500 -270 { lab=#net1}
+N -500 -210 -500 -180 { lab=VN}
+N -500 -240 -410 -240 { lab=VN}
+N 1080 -330 1080 -240 { lab=I_Bias}
+N 1120 -330 1200 -330 { lab=VN}
+N 1200 -330 1200 -180 { lab=VN}
+N 1120 -300 1120 -270 { lab=#net2}
+N 1120 -210 1120 -180 { lab=VN}
+N 1120 -240 1200 -240 { lab=VN}
+N 1120 -420 1120 -360 { lab=VM13D}
+N 900 -420 1120 -420 { lab=VM13D}
+N 900 -450 900 -420 { lab=VM13D}
+N 1120 -420 1330 -420 { lab=VM13D}
+N 1330 -450 1330 -420 { lab=VM13D}
+N 840 -480 860 -480 { lab=InP}
+N -860 -240 -860 -210 { lab=VN}
+N -860 -210 -860 -180 { lab=VN}
+N -860 -770 -860 -270 { lab=Disable_FB_B}
+N -860 -830 -860 -800 { lab=VP}
+N -860 -880 -860 -830 { lab=VP}
+N -900 -800 -900 -240 { lab=Disable_FB}
+N -1140 -550 -900 -550 { lab=Disable_FB}
+N 900 -880 900 -850 { lab=VP}
+N 860 -820 860 -790 { lab=VM16D}
+N 860 -790 860 -740 { lab=VM16D}
+N 900 -740 990 -740 { lab=VP}
+N 990 -880 990 -740 { lab=VP}
+N 900 -790 900 -770 { lab=#net3}
+N 900 -710 900 -510 { lab=VM16D}
+N 1330 -880 1330 -850 { lab=VP}
+N 1370 -820 1370 -790 { lab=VM14D}
+N 1370 -790 1370 -740 { lab=VM14D}
+N 1220 -740 1330 -740 { lab=VP}
+N 1220 -880 1220 -740 { lab=VP}
+N 1330 -790 1330 -770 { lab=#net4}
+N 1330 -710 1330 -510 { lab=VM14D}
+N 1580 -330 1580 -240 { lab=#net5}
+N 1620 -330 1710 -330 { lab=VN}
+N 1710 -330 1710 -180 { lab=VN}
+N 1620 -210 1620 -180 { lab=VN}
+N 1620 -240 1710 -240 { lab=VN}
+N 1580 -240 1580 -160 { lab=#net5}
+N 1620 -440 1620 -360 { lab=#net5}
+N 1620 -620 1620 -590 { lab=#net5}
+N 1620 -590 1620 -500 { lab=#net5}
+N 1620 -650 1620 -620 { lab=#net5}
+N 1620 -500 1620 -440 { lab=#net5}
+N 1620 -300 1620 -270 { lab=#net6}
+N -1120 -820 -950 -820 { lab=VN}
+N -950 -820 -950 -180 { lab=VN}
+N -540 -380 -540 -330 { lab=I_Bias}
+N -540 -390 -540 -380 { lab=I_Bias}
+N -540 -390 -500 -390 { lab=I_Bias}
+N -310 -390 -310 -300 { lab=I_Bias}
+N -500 -390 -310 -390 { lab=I_Bias}
+N -310 -240 -310 -180 { lab=VN}
+N -310 -270 -310 -240 { lab=VN}
+N -480 -880 2990 -880 { lab=VP}
+N -1130 -180 2910 -180 { lab=VN}
+N 1370 -480 1400 -480 { lab=InN}
+N 1370 -740 1370 -710 { lab=VM14D}
+N 1580 -740 1580 -710 { lab=VM14D}
+N 1580 -820 1580 -740 { lab=VM14D}
+N 1620 -880 1620 -850 { lab=VP}
+N 1620 -790 1620 -770 { lab=#net7}
+N 1620 -740 1730 -740 { lab=VP}
+N 1730 -880 1730 -740 { lab=VP}
+N 1620 -710 1620 -650 { lab=#net5}
+N 1540 -780 1540 -740 { lab=VM14D}
+N 1540 -740 1540 -720 { lab=VM14D}
+N 1540 -720 1540 -710 { lab=VM14D}
+N 1540 -880 1540 -840 { lab=VP}
+N 1790 -740 1790 -710 { lab=VM14D}
+N 1790 -820 1790 -740 { lab=VM14D}
+N 1830 -880 1830 -850 { lab=VP}
+N 1830 -790 1830 -770 { lab=#net8}
+N 1830 -740 1930 -740 { lab=VP}
+N 1930 -880 1930 -740 { lab=VP}
+N 1790 -330 1790 -240 { lab=#net9}
+N 1830 -330 1920 -330 { lab=VN}
+N 1920 -330 1920 -180 { lab=VN}
+N 1830 -210 1830 -180 { lab=VN}
+N 1830 -240 1920 -240 { lab=VN}
+N 1790 -240 1790 -160 { lab=#net9}
+N 1830 -300 1830 -270 { lab=#net10}
+N 1830 -710 1830 -360 { lab=VM34D}
+N -500 -440 -500 -380 { lab=I_Bias}
+N 660 -740 660 -710 { lab=VM16D}
+N 660 -820 660 -740 { lab=VM16D}
+N 620 -880 620 -850 { lab=VP}
+N 620 -790 620 -770 { lab=#net11}
+N 520 -740 620 -740 { lab=VP}
+N 520 -880 520 -740 { lab=VP}
+N 620 -710 620 -650 { lab=#net9}
+N 700 -780 700 -740 { lab=VM16D}
+N 700 -740 700 -720 { lab=VM16D}
+N 700 -720 700 -710 { lab=VM16D}
+N 700 -880 700 -840 { lab=VP}
+N 860 -740 860 -710 { lab=VM16D}
+N 460 -740 460 -710 { lab=VM16D}
+N 460 -820 460 -740 { lab=VM16D}
+N 420 -880 420 -850 { lab=VP}
+N 420 -790 420 -770 { lab=#net12}
+N 320 -740 420 -740 { lab=VP}
+N 320 -880 320 -740 { lab=VP}
+N 420 -710 420 -650 { lab=VM9D}
+N 1580 -360 1580 -330 { lab=#net5}
+N 1580 -360 1620 -360 { lab=#net5}
+N 1580 -710 1580 -690 { lab=VM14D}
+N 1580 -690 1790 -690 { lab=VM14D}
+N 1790 -710 1790 -690 { lab=VM14D}
+N 1330 -690 1580 -690 { lab=VM14D}
+N 1540 -710 1540 -690 { lab=VM14D}
+N 1370 -710 1370 -690 { lab=VM14D}
+N 660 -330 660 -240 { lab=#net9}
+N 530 -330 620 -330 { lab=VN}
+N 530 -330 530 -180 { lab=VN}
+N 620 -210 620 -180 { lab=VN}
+N 530 -240 620 -240 { lab=VN}
+N 660 -240 660 -160 { lab=#net9}
+N 620 -300 620 -270 { lab=#net13}
+N 660 -360 660 -330 { lab=#net9}
+N 620 -360 660 -360 { lab=#net9}
+N 620 -650 620 -360 { lab=#net9}
+N 460 -330 460 -240 { lab=#net5}
+N 320 -330 420 -330 { lab=VN}
+N 320 -330 320 -180 { lab=VN}
+N 420 -210 420 -180 { lab=VN}
+N 320 -240 420 -240 { lab=VN}
+N 460 -240 460 -160 { lab=#net5}
+N 420 -300 420 -270 { lab=#net14}
+N 420 -650 420 -360 { lab=VM9D}
+N 460 -690 900 -690 { lab=VM16D}
+N 460 -710 460 -690 { lab=VM16D}
+N 660 -710 660 -690 { lab=VM16D}
+N 700 -710 700 -690 { lab=VM16D}
+N 860 -710 860 -690 { lab=VM16D}
+N 660 -160 660 -150 { lab=#net9}
+N 660 -150 1790 -150 { lab=#net9}
+N 1790 -160 1790 -150 { lab=#net9}
+N 1580 -160 1580 -130 { lab=#net5}
+N 460 -130 1580 -130 { lab=#net5}
+N 460 -160 460 -130 { lab=#net5}
+N 1080 -390 1080 -330 { lab=I_Bias}
+N -310 -390 1080 -390 { lab=I_Bias}
+N -500 -380 -500 -360 { lab=I_Bias}
+N 2470 -330 2470 -240 { lab=VM31D}
+N 2600 -330 2600 -180 { lab=VN}
+N 2510 -210 2510 -180 { lab=VN}
+N 2510 -240 2600 -240 { lab=VN}
+N 2470 -240 2470 -160 { lab=VM31D}
+N 2510 -300 2510 -270 { lab=#net15}
+N 2470 -160 2470 -150 { lab=VM31D}
+N 2470 -740 2470 -710 { lab=VM34D}
+N 2470 -820 2470 -740 { lab=VM34D}
+N 2510 -880 2510 -850 { lab=VP}
+N 2510 -790 2510 -770 { lab=#net16}
+N 2470 -710 2470 -690 { lab=VM34D}
+N 2090 -740 2090 -710 { lab=VM34D}
+N 2090 -820 2090 -740 { lab=VM34D}
+N 2130 -880 2130 -850 { lab=VP}
+N 2130 -790 2130 -770 { lab=#net17}
+N 2090 -710 2090 -690 { lab=VM34D}
+N 2510 -710 2510 -360 { lab=Out}
+N 2090 -690 2470 -690 { lab=VM34D}
+N 2130 -710 2130 -690 { lab=VM34D}
+N 1830 -690 2090 -690 { lab=VM34D}
+N 70 -330 70 -240 { lab=VM31D}
+N 30 -210 30 -180 { lab=VN}
+N -60 -240 30 -240 { lab=VN}
+N 70 -240 70 -160 { lab=VM31D}
+N 30 -300 30 -270 { lab=#net18}
+N 70 -160 70 -150 { lab=VM31D}
+N 70 -740 70 -710 { lab=VM9D}
+N 70 -820 70 -740 { lab=VM9D}
+N 30 -880 30 -850 { lab=VP}
+N 30 -790 30 -770 { lab=#net19}
+N 70 -710 70 -690 { lab=VM9D}
+N 290 -740 290 -710 { lab=VM9D}
+N 290 -820 290 -740 { lab=VM9D}
+N 250 -880 250 -850 { lab=VP}
+N 250 -790 250 -770 { lab=#net20}
+N 290 -710 290 -690 { lab=VM9D}
+N 30 -710 30 -360 { lab=VM31D}
+N 70 -690 290 -690 { lab=VM9D}
+N 250 -710 250 -690 { lab=VM9D}
+N 290 -690 420 -690 { lab=VM9D}
+N 30 -360 70 -360 { lab=VM31D}
+N 70 -360 70 -340 { lab=VM31D}
+N 70 -340 70 -330 { lab=VM31D}
+N 70 -150 70 -100 { lab=VM31D}
+N 2470 -150 2470 -100 { lab=VM31D}
+N 70 -100 2470 -100 { lab=VM31D}
+N 2090 -330 2090 -240 { lab=I_Bias}
+N 2130 -330 2210 -330 { lab=VN}
+N 2210 -330 2210 -180 { lab=VN}
+N 2130 -300 2130 -270 { lab=#net21}
+N 2130 -210 2130 -180 { lab=VN}
+N 2130 -240 2210 -240 { lab=VN}
+N 2090 -390 2090 -330 { lab=I_Bias}
+N 1080 -390 2090 -390 { lab=I_Bias}
+N 2130 -690 2130 -360 { lab=VM34D}
+N 290 -330 290 -240 { lab=I_Bias}
+N 170 -330 250 -330 { lab=VN}
+N 170 -330 170 -180 { lab=VN}
+N 250 -300 250 -270 { lab=#net22}
+N 250 -210 250 -180 { lab=VN}
+N 170 -240 250 -240 { lab=VN}
+N 290 -390 290 -330 { lab=I_Bias}
+N 250 -690 250 -360 { lab=VM9D}
+N 2510 -540 2580 -540 { lab=Out}
+N 2370 -240 2370 -210 { lab=VN}
+N 2370 -210 2370 -180 { lab=VN}
+N 2380 -330 2470 -330 { lab=VM31D}
+N 2370 -330 2380 -330 { lab=VM31D}
+N 2370 -330 2370 -270 { lab=VM31D}
+N 2380 -780 2380 -690 { lab=VM34D}
+N 2380 -840 2380 -810 { lab=VP}
+N 2380 -880 2380 -840 { lab=VP}
+N 2230 -810 2340 -810 { lab=Disable_FB_B}
+N 910 -250 910 -180 { lab=VN}
+N 910 -390 910 -310 { lab=I_Bias}
+N -60 -240 -60 -180 { lab=VN}
+N 2510 -740 2600 -740 { lab=VP}
+N 2600 -880 2600 -740 { lab=VP}
+N 2130 -740 2210 -740 { lab=VP}
+N 2210 -880 2210 -740 { lab=VP}
+N 170 -740 250 -740 { lab=VP}
+N 170 -880 170 -740 { lab=VP}
+N -60 -740 30 -740 { lab=VP}
+N -60 -880 -60 -740 { lab=VP}
+N 2510 -330 2600 -330 { lab=VN}
+N -60 -330 30 -330 { lab=VN}
+N -60 -330 -60 -250 { lab=VN}
+N -60 -250 -60 -240 { lab=VN}
+N -60 -820 30 -820 { lab=VP}
+N 170 -820 250 -820 { lab=VP}
+N 320 -820 420 -820 { lab=VP}
+N 520 -820 620 -820 { lab=VP}
+N 900 -820 990 -820 { lab=VP}
+N 1220 -820 1330 -820 { lab=VP}
+N 1620 -820 1730 -820 { lab=VP}
+N 1830 -820 1930 -820 { lab=VP}
+N 2130 -820 2210 -820 { lab=VP}
+N 2510 -820 2600 -820 { lab=VP}
+N 900 -480 1330 -480 { lab=VN}
+N 1200 -480 1200 -330 { lab=VN}
+N -530 -490 -500 -490 { lab=I_Bias}
+N -500 -490 -500 -440 { lab=I_Bias}
+N 910 -250 950 -250 { lab=VN}
+N 910 -310 950 -310 { lab=I_Bias}
+N 1130 -690 1330 -690 { lab=VM14D}
+N 900 -690 1070 -690 { lab=VM16D}
+N 1130 -690 1130 -680 { lab=VM14D}
+N 1200 -690 1200 -610 { lab=VM14D}
+N 1050 -540 1100 -540 { lab=#net23}
+N 990 -690 990 -610 { lab=VM16D}
+N 990 -610 990 -540 { lab=VM16D}
+N 1020 -520 1020 -480 { lab=VN}
+N 1160 -540 1200 -540 { lab=VM14D}
+N 1200 -610 1200 -540 { lab=VM14D}
+C {devices/iopin.sym} -1130 -180 0 1 {name=p4 lab=VN}
+C {devices/iopin.sym} -1150 -880 0 1 {name=p5 lab=VP}
+C {sky130_fd_pr/nfet_01v8.sym} -520 -240 0 0 {name=M3
+L=0.5
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -520 -330 0 0 {name=M4
+L=0.15
+W=2
+nf=1 
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1100 -240 0 0 {name=M12
+L=0.5
+W=2
+nf=1 
+mult=4*1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1100 -330 0 0 {name=M13
+L=0.15
+W=2
+nf=1 
+mult=4*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -530 -490 0 0 {name=p3 lab=I_Bias}
+C {devices/lab_wire.sym} 1330 -600 1 0 {name=l4 sig_type=std_logic lab=VM14D}
+C {devices/lab_wire.sym} 900 -600 3 1 {name=l5 sig_type=std_logic lab=VM16D}
+C {devices/ngspice_get_value.sym} 1050 -420 0 0 {name=r1 node="v(xfb.vm13d)"
+descr="v(xfb.vm13d)"}
+C {devices/ngspice_get_value.sym} 900 -600 0 0 {name=r2 node="v(xfb.vm16d)"
+descr="v(xfb.vm16d)"}
+C {devices/lab_wire.sym} 1130 -420 0 1 {name=l7 sig_type=std_logic lab=VM13D}
+C {devices/ngspice_get_value.sym} 1330 -600 0 1 {name=r5 node="v(xfb.vm14d)"
+descr="v(xfb.vm14d)"}
+C {sky130_fd_pr/nfet_01v8.sym} -880 -240 0 0 {name=M29
+L=0.15
+W=1
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -880 -800 0 0 {name=M30
+L=0.15
+W=1
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} -1140 -550 0 0 {name=p2 lab=Disable_FB}
+C {devices/lab_wire.sym} -860 -660 3 1 {name=l15 sig_type=std_logic lab=Disable_FB_B}
+C {sky130_fd_pr/nfet_01v8.sym} 1600 -240 0 0 {name=M47
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1600 -330 0 0 {name=M48
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1540 -810 0 1 {name=C8 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} -1120 -850 0 1 {name=C20 model=cap_mim_m3_2 W=30 L=20 MF=1 spiceprefix=X}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} -290 -270 0 1 {name=M55
+L=0.15
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {devices/lab_wire.sym} -270 -270 0 1 {name=l16 sig_type=std_logic lab=Disable_FB}
+C {devices/ngspice_get_value.sym} 1320 -900 0 0 {name=r13 node="v(vbias2)"
+descr="v(vbias2)"}
+C {devices/ipin.sym} 840 -480 2 1 {name=p1 lab=InP}
+C {devices/ipin.sym} 1400 -480 0 1 {name=p7 lab=InN}
+C {sky130_fd_pr/nfet_01v8.sym} 880 -480 0 0 {name=M15
+L=0.5
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1350 -480 0 1 {name=M14
+L=0.5
+W=2
+nf=1 
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1810 -330 0 0 {name=M10
+L=0.15
+W=2
+nf=1
+mult=4*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1810 -240 0 0 {name=M24
+L=0.5
+W=2
+nf=1 
+mult=1*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 640 -330 0 1 {name=M25
+L=0.15
+W=2
+nf=1
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 440 -330 0 1 {name=M26
+L=0.15
+W=2
+nf=1
+mult=4*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 640 -240 0 1 {name=M27
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 440 -240 0 1 {name=M28
+L=0.5
+W=2
+nf=1 
+mult=1*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2110 -240 0 0 {name=M43
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2110 -330 0 0 {name=M44
+L=0.15
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 270 -240 0 1 {name=M45
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 270 -330 0 1 {name=M46
+L=0.15
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 2580 -540 0 0 {name=p6 lab=Out}
+C {devices/lab_wire.sym} 2330 -240 0 0 {name=l1 sig_type=std_logic lab=Disable_FB}
+C {sky130_fd_pr/pfet_01v8.sym} 2360 -810 0 0 {name=M50
+L=0.15
+W=2
+nf=1
+mult=4*5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 2230 -810 0 1 {name=l2 sig_type=std_logic lab=Disable_FB_B}
+C {devices/lab_wire.sym} 2440 -330 0 0 {name=l3 sig_type=std_logic lab=VM31D}
+C {devices/lab_wire.sym} 2390 -690 2 0 {name=l6 sig_type=std_logic lab=VM34D}
+C {devices/ngspice_get_value.sym} 2440 -360 0 1 {name=r4 node="v(xfb.vm31d)"
+descr="v(xfb.vm31d)"}
+C {devices/ngspice_get_value.sym} 2450 -640 0 1 {name=r6 node="v(xfb.vm34d)"
+descr="v(xfb.vm34d)"}
+C {devices/lab_wire.sym} 320 -690 2 0 {name=l8 sig_type=std_logic lab=VM9D}
+C {devices/ngspice_get_value.sym} 380 -640 0 1 {name=r7 node="v(xfb.vm9d)"
+descr="v(xfb.vm9d)"}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1350 -740 0 1 {name=M51
+L=0.35
+W=2
+nf=1
+mult=8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1350 -820 0 1 {name=M52
+L=1
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1600 -820 0 0 {name=M5
+L=1
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1810 -820 0 0 {name=M11
+L=1
+W=2
+nf=1
+mult=9*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1600 -740 0 0 {name=M16
+L=0.35
+W=2
+nf=1
+mult=8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 1810 -740 0 0 {name=M19
+L=0.35
+W=2
+nf=1
+mult=9*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 880 -820 0 0 {name=M2
+L=1
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 880 -740 0 0 {name=M6
+L=0.35
+W=2
+nf=1
+mult=8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 640 -820 0 1 {name=M7
+L=1
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 640 -740 0 1 {name=M8
+L=0.35
+W=2
+nf=1
+mult=8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 440 -820 0 1 {name=M9
+L=1
+W=2
+nf=1
+mult=9*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8_lvt.sym} 440 -740 0 1 {name=M18
+L=0.35
+W=2
+nf=1
+mult=9*8
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2490 -820 0 0 {name=M20
+L=0.5
+W=2
+nf=1
+mult=2*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 910 -280 2 0 {name=C3 model=cap_mim_m3_2 W=30 L=10 MF=1 spiceprefix=X}
+C {sky130_fd_pr/pfet_01v8.sym} 2490 -740 0 0 {name=M23
+L=0.15
+W=2
+nf=1
+mult=4*2*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2110 -820 0 0 {name=M31
+L=0.5
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 2110 -740 0 0 {name=M32
+L=0.15
+W=2
+nf=1
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 270 -820 0 1 {name=M33
+L=0.5
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 270 -740 0 1 {name=M34
+L=0.15
+W=2
+nf=1
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 50 -820 0 1 {name=M35
+L=0.5
+W=2
+nf=1
+mult=2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 50 -740 0 1 {name=M36
+L=0.15
+W=2
+nf=1
+mult=2*4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2490 -240 0 0 {name=M37
+L=0.5
+W=2
+nf=1 
+mult=1*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2490 -330 0 0 {name=M38
+L=0.15
+W=2
+nf=1 
+mult=4*9
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 50 -240 0 1 {name=M39
+L=0.5
+W=2
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 50 -330 0 1 {name=M40
+L=0.15
+W=2
+nf=1 
+mult=4
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 2350 -240 0 0 {name=M1
+L=0.15
+W=2
+nf=1 
+mult=5*2
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 950 -280 2 1 {name=C1 model=cap_mim_m3_2 W=30 L=10 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1100 -690 3 0 {name=C4 model=cap_mim_m3_2 W=15 L=15 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1130 -540 1 1 {name=C2 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/res_xhigh_po_0p69.sym} 1020 -540 3 0 {name=R1
+W=0.69
+L=2
+model=res_xhigh_po_0p69
+spiceprefix=X
+mult=1}
diff --git a/xschem/tia/feedback_sukwani.sym b/xschem/tia/feedback_sukwani.sym
new file mode 100644
index 0000000..9b361e4
--- /dev/null
+++ b/xschem/tia/feedback_sukwani.sym
@@ -0,0 +1,33 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+
+T {@symname} -90 -6 0 0 0.3 0.3 {}
+T {@name} 135 -52 0 0 0.2 0.2 {}
+L 4 -130 -40 130 -40 {}
+L 4 -130 40 130 40 {}
+L 4 -130 -40 -130 40 {}
+L 4 130 -40 130 40 {}
+B 5 147.5 -32.5 152.5 -27.5 {name=VP dir=inout }
+L 7 130 -30 150 -30 {}
+T {VP} 125 -34 0 1 0.2 0.2 {}
+B 5 -152.5 -32.5 -147.5 -27.5 {name=Disable_FB dir=in }
+L 4 -150 -30 -130 -30 {}
+T {Disable_FB} -125 -34 0 0 0.2 0.2 {}
+B 5 147.5 -12.5 152.5 -7.5 {name=Out dir=out }
+L 4 130 -10 150 -10 {}
+T {Out} 125 -14 0 1 0.2 0.2 {}
+B 5 -152.5 -12.5 -147.5 -7.5 {name=I_Bias dir=in }
+L 4 -150 -10 -130 -10 {}
+T {I_Bias} -125 -14 0 0 0.2 0.2 {}
+B 5 -152.5 7.5 -147.5 12.5 {name=InN dir=in }
+L 4 -150 10 -130 10 {}
+T {InN} -125 6 0 0 0.2 0.2 {}
+B 5 -152.5 27.5 -147.5 32.5 {name=InP dir=in }
+L 4 -150 30 -130 30 {}
+T {InP} -125 26 0 0 0.2 0.2 {}
+B 5 147.5 7.5 152.5 12.5 {name=VN dir=inout }
+L 7 130 10 150 10 {}
+T {VN} 125 6 0 1 0.2 0.2 {}
diff --git a/xschem/tia/tia_rgc_core.sch b/xschem/tia/tia_rgc_core.sch
new file mode 100644
index 0000000..7277499
--- /dev/null
+++ b/xschem/tia/tia_rgc_core.sch
@@ -0,0 +1,461 @@
+v {xschem version=3.0.0 file_version=1.2 }
+G {}
+K {}
+V {}
+S {}
+E {}
+L 3 620 -930 620 -130 {}
+L 3 40 -920 40 -120 {}
+L 3 1180 -930 1180 -130 {}
+L 3 1740 -930 1740 -130 {}
+T {disable
+fet} 90 -230 0 0 0.2 0.2 {}
+T {disable
+fet} 870 -280 0 0 0.2 0.2 {}
+T {disable
+fet} 1430 -280 0 0 0.2 0.2 {}
+T {TIA} 800 -940 0 0 0.4 0.4 {}
+T {Dummy TIA for 
+dark current
+detection} 1360 -1000 0 0 0.4 0.4 {}
+T {Current mirrors} 120 -930 0 0 0.4 0.4 {}
+T {Expected area usage: 200µm²
+Bandwidth ~1.3GHz (1.1 to 1.4GHz)
+Gain ~59 dBOhm
+Power consumption: ~3mA => ~5.4mW (FB off)
+Input impedance ~30 to 50 Ohm
+Output Noise (1MHz to 2 GHz): <20 nV/sqrt(Hz)
+
+Feedback modes:
+- No FB: dark current up to +/-5µA
+- FB en: dark current up to +/-20µA
+- FB Push pull: dark current up to +/-200µA} 0 -1300 0 0 0.4 0.4 {}
+T {limit rush-in current 
+when enabling TIA} -140 -400 0 0 0.2 0.2 {}
+N -550 -880 740 -880 { lab=VP}
+N 930 -720 930 -390 { lab=Out_1}
+N 780 -620 930 -620 { lab=Out_1}
+N 870 -360 890 -360 { lab=Input}
+N 870 -800 870 -360 { lab=Input}
+N 870 -800 890 -800 { lab=Input}
+N 740 -620 740 -590 { lab=Input}
+N 930 -830 930 -800 { lab=VP}
+N 930 -880 930 -830 { lab=VP}
+N 740 -680 740 -650 { lab=Out_2}
+N 740 -880 880 -880 { lab=VP}
+N 310 -210 310 -180 { lab=VN}
+N 740 -550 740 -400 { lab=Input}
+N 700 -370 700 -240 { lab=I_Bias1}
+N 740 -370 820 -370 { lab=VN}
+N 820 -370 820 -180 { lab=VN}
+N 230 -330 310 -330 { lab=VN}
+N 230 -330 230 -180 { lab=VN}
+N 350 -330 350 -240 { lab=I_Bias1}
+N 310 -300 310 -270 { lab=VM6D}
+N 740 -340 740 -270 { lab=VM5D}
+N 350 -360 350 -330 { lab=I_Bias1}
+N 310 -360 350 -360 { lab=I_Bias1}
+N 300 -400 310 -400 { lab=I_Bias1}
+N 310 -400 310 -360 { lab=I_Bias1}
+N 740 -210 740 -180 { lab=VN}
+N 740 -240 820 -240 { lab=VN}
+N 230 -240 310 -240 { lab=VN}
+N 150 -360 150 -270 { lab=I_Bias1}
+N 150 -360 310 -360 { lab=I_Bias1}
+N 150 -240 150 -210 { lab=VN}
+N 150 -210 150 -180 { lab=VN}
+N 110 -600 110 -240 { lab=Disable_TIA}
+N -540 -600 110 -600 { lab=Disable_TIA}
+N -150 -240 -150 -210 { lab=VN}
+N -150 -210 -150 -180 { lab=VN}
+N -150 -770 -150 -270 { lab=Disable_TIA_B}
+N -190 -600 -190 -240 { lab=Disable_TIA}
+N -190 -800 -190 -600 { lab=Disable_TIA}
+N -150 -830 -150 -800 { lab=VP}
+N -150 -880 -150 -830 { lab=VP}
+N 930 -220 930 -190 { lab=VN}
+N 930 -190 930 -180 { lab=VN}
+N 930 -330 930 -250 { lab=VM28D}
+N 740 -880 740 -860 { lab=VP}
+N 740 -800 740 -710 { lab=Out_2}
+N 930 -620 940 -620 { lab=Out_1}
+N 650 -830 700 -830 { lab=VN}
+N 650 -830 650 -180 { lab=VN}
+N 930 -250 1040 -250 { lab=VM28D}
+N 1490 -770 1490 -390 { lab=Out_ref}
+N 1330 -640 1490 -640 { lab=Out_ref}
+N 1430 -360 1450 -360 { lab=VM39D}
+N 1430 -800 1430 -360 { lab=VM39D}
+N 1430 -800 1450 -800 { lab=VM39D}
+N 1290 -610 1290 -540 { lab=VM39D}
+N 1290 -640 1290 -610 { lab=VM39D}
+N 1490 -830 1490 -800 { lab=VP}
+N 1490 -880 1490 -830 { lab=VP}
+N 1290 -760 1290 -670 { lab=VM31D}
+N 1290 -540 1290 -400 { lab=VM39D}
+N 1250 -370 1250 -240 { lab=I_Bias1}
+N 1290 -370 1370 -370 { lab=VN}
+N 1370 -370 1370 -180 { lab=VN}
+N 1290 -340 1290 -270 { lab=VM36D}
+N 1290 -210 1290 -180 { lab=VN}
+N 1290 -240 1370 -240 { lab=VN}
+N 1490 -220 1490 -190 { lab=VN}
+N 1490 -190 1490 -180 { lab=VN}
+N 1490 -330 1490 -250 { lab=VM40D}
+N 1290 -840 1290 -810 { lab=VP}
+N 1290 -880 1290 -840 { lab=VP}
+N 1290 -780 1290 -760 { lab=VM31D}
+N 1200 -810 1250 -810 { lab=VN}
+N 1200 -810 1200 -180 { lab=VN}
+N 860 -220 890 -220 { lab=Disable_TIA_B}
+N 1420 -220 1450 -220 { lab=Disable_TIA_B}
+N 1290 -590 1430 -590 { lab=VM39D}
+N 700 -420 700 -370 { lab=I_Bias1}
+N 700 -420 1250 -420 { lab=I_Bias1}
+N 1250 -420 1250 -370 { lab=I_Bias1}
+N 1140 -820 1140 -250 { lab=VM28D}
+N 1040 -250 1140 -250 { lab=VM28D}
+N 350 -240 510 -240 { lab=I_Bias1}
+N 510 -240 700 -240 { lab=I_Bias1}
+N 1590 -880 1700 -880 { lab=VP}
+N 1700 -820 1700 -250 { lab=VM40D}
+N -520 -820 -350 -820 { lab=VN}
+N -540 -760 -520 -760 { lab=VP}
+N -540 -880 -540 -760 { lab=VP}
+N -350 -820 -350 -180 { lab=VN}
+N -150 -360 -70 -360 { lab=Disable_TIA_B}
+N 930 -770 930 -720 { lab=Out_1}
+N 580 -570 740 -570 { lab=Input}
+N 740 -570 870 -570 { lab=Input}
+N 740 -710 740 -680 { lab=Out_2}
+N 740 -590 740 -550 { lab=Input}
+N 740 -750 760 -750 { lab=Out_2}
+N 740 -860 740 -830 { lab=VP}
+N 1490 -560 1510 -560 { lab=Out_ref}
+N 1490 -250 1700 -250 { lab=VM40D}
+N 880 -880 1590 -880 { lab=VP}
+N 930 -360 1050 -360 { lab=VN}
+N 1050 -360 1050 -180 { lab=VN}
+N 1490 -360 1590 -360 { lab=VN}
+N 1590 -360 1590 -180 { lab=VN}
+N -530 -180 1590 -180 { lab=VN}
+N -520 -760 -430 -760 { lab=VP}
+N -260 -70 -260 -40 { lab=VN}
+N -260 -40 220 -40 { lab=VN}
+N 220 -60 220 -40 { lab=VN}
+N 180 -70 180 -40 { lab=VN}
+N 70 -70 70 -40 { lab=VN}
+N -40 -70 -40 -40 { lab=VN}
+N -150 -70 -150 -40 { lab=VN}
+N 110 -60 110 -40 { lab=VN}
+N 0 -60 0 -40 { lab=VN}
+N -110 -60 -110 -40 { lab=VN}
+N -220 -60 -220 -40 { lab=VN}
+N -220 -120 220 -120 { lab=Disable_TIA_B}
+N -70 -360 -70 -120 { lab=Disable_TIA_B}
+N -260 -180 -260 -70 { lab=VN}
+C {devices/iopin.sym} -530 -180 0 1 {name=p4 lab=VN}
+C {devices/iopin.sym} -550 -880 0 1 {name=p5 lab=VP}
+C {devices/ngspice_get_value.sym} 550 -370 0 0 {name=r6 node="@m.xtia.xm10.msky130_fd_pr__pfet_01v8[gm]"
+descr="M10 gm"}
+C {devices/ngspice_get_value.sym} 560 -340 0 0 {name=r7 node="@m.xtia.xm10.msky130_fd_pr__pfet_01v8[gds]"
+descr="M10 gds"}
+C {devices/opin.sym} 760 -750 0 0 {name=p15 lab=Out_2}
+C {sky130_fd_pr/nfet_01v8.sym} 720 -240 0 0 {name=M5
+L=1
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/ipin.sym} 300 -400 0 0 {name=p7 lab=I_Bias1}
+C {sky130_fd_pr/nfet_01v8.sym} 330 -240 0 1 {name=M6
+L=1.0
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 910 -360 0 0 {name=M7
+L=0.2
+W=2
+nf=1
+mult=100
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 910 -800 0 0 {name=M8
+L=0.2
+W=2
+nf=1
+mult=60
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 720 -370 0 0 {name=M9
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 330 -330 0 1 {name=M10
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 740 -280 0 1 {name=l1 sig_type=std_logic lab=VM5D}
+C {devices/ngspice_get_value.sym} 740 -310 0 0 {name=r3 node="v(xtia.vm5D)"
+descr="v(xtia.vm5D)"}
+C {devices/ipin.sym} 580 -570 0 0 {name=p8 lab=Input}
+C {devices/ipin.sym} -540 -600 0 0 {name=p1 lab=Disable_TIA}
+C {sky130_fd_pr/nfet_01v8.sym} 130 -240 0 0 {name=M23
+L=0.15
+W=2
+nf=1 
+mult=5
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} -170 -240 0 0 {name=M26
+L=1
+W=0.5
+nf=1 
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} -170 -800 0 0 {name=M27
+L=1
+W=0.5
+nf=1
+mult=1
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 910 -220 0 0 {name=M28
+L=0.15
+W=2
+nf=1 
+mult=100
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 930 -260 0 1 {name=l6 sig_type=std_logic lab=VM28D}
+C {devices/ngspice_get_value.sym} 930 -280 0 0 {name=r4 node="v(xtia.vm28D)"
+descr="v(xtia.vm28D)"}
+C {devices/lab_wire.sym} -150 -660 3 1 {name=l9 sig_type=std_logic lab=Disable_TIA_B}
+C {devices/opin.sym} 940 -620 0 0 {name=p6 lab=Out_1}
+C {devices/ngspice_get_value.sym} -120 -690 0 0 {name=r9 node="v(xtia.Disable_TIA_B)"
+descr="v(xtia.Disable_TIA_B)"}
+C {sky130_fd_pr/nfet_01v8.sym} 1270 -240 0 0 {name=M36
+L=1
+W=2
+nf=1 
+mult=6
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1470 -360 0 0 {name=M37
+L=0.2
+W=2
+nf=1
+mult=100
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1470 -800 0 0 {name=M38
+L=0.2
+W=2
+nf=1
+mult=60
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1270 -370 0 0 {name=M39
+L=0.15
+W=2
+nf=1 
+mult=12
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8.sym} 1470 -220 0 0 {name=M40
+L=0.15
+W=2
+nf=1 
+mult=100
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8
+spiceprefix=X
+}
+C {devices/lab_wire.sym} 860 -220 3 1 {name=l13 sig_type=std_logic lab=Disable_TIA_B}
+C {devices/lab_wire.sym} 1420 -220 3 1 {name=l14 sig_type=std_logic lab=Disable_TIA_B}
+C {sky130_fd_pr/cap_mim_m3_2.sym} -520 -850 0 0 {name=C20 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/pfet_01v8.sym} 720 -830 0 0 {name=M16
+L=0.5
+W=2
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 760 -620 0 1 {name=M15
+L=0.2
+W=2
+nf=1
+mult=30
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/nfet_01v8_lvt.sym} 1310 -640 0 1 {name=M31
+L=0.2
+W=2
+nf=1
+mult=30
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=nfet_01v8_lvt
+spiceprefix=X
+}
+C {sky130_fd_pr/pfet_01v8.sym} 1270 -810 0 0 {name=M35
+L=0.5
+W=2
+nf=1
+mult=10
+ad="'int((nf+1)/2) * W/nf * 0.29'" 
+pd="'2*int((nf+1)/2) * (W/nf + 0.29)'"
+as="'int((nf+2)/2) * W/nf * 0.29'" 
+ps="'2*int((nf+2)/2) * (W/nf + 0.29)'"
+nrd="'0.29 / W'" nrs="'0.29 / W'"
+sa=0 sb=0 sd=0
+model=pfet_01v8
+spiceprefix=X
+}
+C {devices/opin.sym} 1510 -560 0 0 {name=p3 lab=Out_ref}
+C {sky130_fd_pr/cap_mim_m3_2.sym} -430 -790 2 0 {name=C7 model=cap_mim_m3_2 W=30 L=30 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1140 -850 0 1 {name=C2 model=cap_mim_m3_2 W=25 L=18 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 570 -210 2 0 {name=C5 model=cap_mim_m3_1 W=15 L=12 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_mim_m3_1.sym} 460 -210 2 0 {name=C4 model=cap_mim_m3_1 W=15 L=12 MF=1 spiceprefix=X}
+C {devices/lab_wire.sym} 1290 -530 0 1 {name=l2 sig_type=std_logic lab=VM39D}
+C {devices/lab_wire.sym} 1490 -270 0 1 {name=l3 sig_type=std_logic lab=VM40D}
+C {devices/lab_wire.sym} 1290 -280 0 1 {name=l4 sig_type=std_logic lab=VM36D}
+C {devices/lab_wire.sym} 1290 -750 0 1 {name=l5 sig_type=std_logic lab=VM31D}
+C {devices/lab_wire.sym} 310 -270 0 0 {name=l7 sig_type=std_logic lab=VM6D}
+C {sky130_fd_pr/cap_mim_m3_2.sym} 1700 -850 0 1 {name=C1 model=cap_mim_m3_2 W=25 L=18 MF=1 spiceprefix=X}
+C {sky130_fd_pr/cap_var_lvt.sym} -220 -90 0 0 {name=C10 model=cap_var_lvt W=5 L=2 VM=1 spiceprefix=X}
+C {sky130_fd_pr/cap_var_lvt.sym} -110 -90 0 0 {name=C3 model=cap_var_lvt W=5 L=2 VM=1 spiceprefix=X}
+C {sky130_fd_pr/cap_var_lvt.sym} 0 -90 0 0 {name=C6 model=cap_var_lvt W=5 L=2 VM=1 spiceprefix=X}
+C {sky130_fd_pr/cap_var_lvt.sym} 110 -90 0 0 {name=C8 model=cap_var_lvt W=5 L=2 VM=1 spiceprefix=X}
+C {sky130_fd_pr/cap_var_lvt.sym} 220 -90 0 0 {name=C9 model=cap_var_lvt W=5 L=2 VM=1 spiceprefix=X}
diff --git a/xschem/tia/tia_rgc_core.spice b/xschem/tia/tia_rgc_core.spice
new file mode 100644
index 0000000..8561c37
--- /dev/null
+++ b/xschem/tia/tia_rgc_core.spice
@@ -0,0 +1,80 @@
+** sch_path: /home/simon/code/caravel_tia/xschem/tia/tia_rgc_core.sch
+**.subckt tia_rgc_core VN VP Out_2 I_Bias1 Input Disable_TIA Out_1 Out_ref
+*.iopin VN
+*.iopin VP
+*.opin Out_2
+*.ipin I_Bias1
+*.ipin Input
+*.ipin Disable_TIA
+*.opin Out_1
+*.opin Out_ref
+XM5 VM5D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM6 VM6D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1.0 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 Out_1 Input VM28D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM8 Out_1 Input VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM9 Input I_Bias1 VM5D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM10 I_Bias1 I_Bias1 VM6D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM23 I_Bias1 Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=5 m=5
+XM26 Disable_TIA_B Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM27 Disable_TIA_B Disable_TIA VP VP sky130_fd_pr__pfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM28 VM28D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM36 VM36D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM37 Out_ref VM39D VM40D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM38 Out_ref VM39D VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM39 VM39D I_Bias1 VM36D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM40 VM40D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XC20 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XM16 Out_2 VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM15 Out_2 Out_1 Input Input sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM31 VM31D Out_ref VM39D VM39D sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM35 VM31D VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC7 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
+XC2 VP VM28D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 MF=1 m=1
+XC5 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC4 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC1 VP VM40D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 MF=1 m=1
+XC10 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1
+XC3 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1
+XC6 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1
+XC8 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1
+XC9 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1
+**.ends
+.end
diff --git a/xschem/tia/tia_rgc_core.sym b/xschem/tia/tia_rgc_core.sym
new file mode 100644
index 0000000..d4c0861
--- /dev/null
+++ b/xschem/tia/tia_rgc_core.sym
@@ -0,0 +1,35 @@
+v {xschem version=3.0.0 file_version=1.2}
+K {type=subcircuit
+format="@name @pinlist @symname"
+template="name=x1"
+}
+T {@symname} -72 -6 0 0 0.3 0.3 {}
+T {@name} 135 -62 0 0 0.2 0.2 {}
+L 4 -130 -50 130 -50 {}
+L 4 -130 50 130 50 {}
+L 4 -130 -50 -130 50 {}
+L 4 130 -50 130 50 {}
+B 5 147.5 -42.5 152.5 -37.5 {name=VP dir=inout }
+L 7 130 -40 150 -40 {}
+T {VP} 125 -44 0 1 0.2 0.2 {}
+B 5 147.5 -22.5 152.5 -17.5 {name=Out_2 dir=out }
+L 4 130 -20 150 -20 {}
+T {Out_2} 125 -24 0 1 0.2 0.2 {}
+B 5 147.5 -2.5 152.5 2.5 {name=Out_ref dir=out }
+L 4 130 0 150 0 {}
+T {Out_ref} 125 -4 0 1 0.2 0.2 {}
+B 5 147.5 17.5 152.5 22.5 {name=Out_1 dir=out }
+L 4 130 20 150 20 {}
+T {Out_1} 125 16 0 1 0.2 0.2 {}
+B 5 -152.5 -42.5 -147.5 -37.5 {name=Disable_TIA dir=in }
+L 4 -150 -40 -130 -40 {}
+T {Disable_TIA} -125 -44 0 0 0.2 0.2 {}
+B 5 -152.5 -22.5 -147.5 -17.5 {name=Input dir=in }
+L 4 -150 -20 -130 -20 {}
+T {Input} -125 -24 0 0 0.2 0.2 {}
+B 5 -152.5 -2.5 -147.5 2.5 {name=I_Bias1 dir=in }
+L 4 -150 0 -130 0 {}
+T {I_Bias1} -125 -4 0 0 0.2 0.2 {}
+B 5 147.5 37.5 152.5 42.5 {name=VN dir=inout }
+L 7 130 40 150 40 {}
+T {VN} 125 36 0 1 0.2 0.2 {}
diff --git a/xschem/tia/xschemrc b/xschem/tia/xschemrc
new file mode 100644
index 0000000..1a02a9e
--- /dev/null
+++ b/xschem/tia/xschemrc
@@ -0,0 +1,292 @@
+#### xschemrc system configuration file
+
+#### values may be overridden by user's ~/.xschem/xschemrc configuration file
+#### or by project-local ./xschemrc
+
+###########################################################################
+#### XSCHEM INSTALLATION DIRECTORY: XSCHEM_SHAREDIR
+###########################################################################
+#### Normally there is no reason to set this variable if using standard
+#### installation. Location of files is set at compile time but may be overridden
+#### with following line:
+# set XSCHEM_SHAREDIR $env(HOME)/share/xschem
+
+###########################################################################
+#### XSCHEM SYSTEM-WIDE DESIGN LIBRARY PATHS: XSCHEM_LIBRARY_PATH
+###########################################################################
+#### If unset xschem starts with XSCHEM_LIBRARY_PATH set to the default, typically:
+# /home/schippes/.xschem/xschem_library
+# /home/schippes/share/xschem/xschem_library/devices
+# /home/schippes/share/doc/xschem/examples
+# /home/schippes/share/doc/xschem/ngspice
+# /home/schippes/share/doc/xschem/logic
+# /home/schippes/share/doc/xschem/xschem_simulator
+# /home/schippes/share/doc/xschem/binto7seg
+# /home/schippes/share/doc/xschem/pcb
+# /home/schippes/share/doc/xschem/rom8k
+
+#### Flush any previous definition
+set XSCHEM_LIBRARY_PATH {}
+#### include devices/*.sym
+append XSCHEM_LIBRARY_PATH ${XSCHEM_SHAREDIR}/xschem_library
+#### include skywater libraries. Here i use [pwd]. This works if i start xschem from here.
+append XSCHEM_LIBRARY_PATH :$env(PWD)
+append XSCHEM_LIBRARY_PATH :/home/simon/share/pdk/sky130A/libs.tech/xschem
+# append XSCHEM_LIBRARY_PATH :/mnt/sda7/home/schippes/pdks/sky130A/libs.tech/xschem
+#### add ~/.xschem/xschem_library (USER_CONF_DIR is normally ~/.xschem)
+append XSCHEM_LIBRARY_PATH :$USER_CONF_DIR/xschem_library 
+
+###########################################################################
+#### SET CUSTOM COLORS FOR XSCHEM LIBRARIES MATCHING CERTAIN PATTERNS
+###########################################################################
+#### each line contains a dircolor(pattern) followed by a color
+#### color can be an ordinary name (grey, brown, blue) or a hex code {#77aaff}
+#### hex code must be enclosed in braces
+array unset dircolor
+set dircolor(sky130_fd_pr$) blue
+set dircolor(sky130_tests$) blue
+set dircolor(xschem_sky130$) blue
+set dircolor(xschem_library$) red
+set dircolor(devices$) red
+
+###########################################################################
+#### WINDOW TO OPEN ON STARTUP: XSCHEM_START_WINDOW
+###########################################################################
+#### Start without a design if no filename given on command line:
+#### To avoid absolute paths, use a path that is relative to one of the
+#### XSCHEM_LIBRARY_PATH directories. Default: empty
+set XSCHEM_START_WINDOW {sky130_tests/top.sch}
+
+###########################################################################
+#### DIRECTORY WHERE SIMULATIONS, NETLIST AND SIMULATOR OUTPUTS ARE PLACED
+###########################################################################
+#### If unset $USER_CONF_DIR/simulations is assumed (normally ~/.xschem/simulations) 
+# set netlist_dir $env(HOME)/.xschem/simulations
+set netlist_dir .
+
+###########################################################################
+#### CHANGE DEFAULT [] WITH SOME OTHER CHARACTERS FOR BUSSED SIGNALS 
+#### IN SPICE NETLISTS (EXAMPLE: DATA[7] --> DATA<7>) 
+###########################################################################
+#### default: empty (use xschem default, [ ])
+# set bus_replacement_char {<>}
+#### for XSPICE: replace square brackets as the are used for XSPICE vector nodes.
+# set bus_replacement_char {__} 
+
+###########################################################################
+#### SOME DEFAULT BEHAVIOR
+###########################################################################
+#### Allowed values:  spice, verilog, vhdl, tedax, default: spice
+# set netlist_type spice
+
+#### Some netlisting options (these are the defaults)
+# set hspice_netlist 1
+# set verilog_2001 1
+
+#### to use a fixed line with set change_lw to 0 and set some value to line_width
+#### these are the defaults
+# set line_width 0
+# set change_lw 1
+
+#### allow color postscript and svg exports. Default: 1, enable color
+# set color_ps 1
+
+#### initial size of xschem window you can specify also position with (wxh+x+y)
+#### this is the default:
+# set initial_geometry {900x600}
+
+#### if set to 0, when zooming out allow the viewport do drift toward the mouse position,
+#### allowing to move away by zooming / unzooming with mouse wheel
+#### default setting: 0
+# set unzoom_nodrift 0
+
+#### if set to 1 allow to place multiple components with same name.
+#### Warning: this is normally not allowed in any simulation netlist.
+#### default: 0, do not allow place multiple elements with same name (refdes)
+# set disable_unique_names 0
+
+#### if set to 1 continue drawing lines / wires after click
+#### default: 0
+# set persistent_command 1
+
+#### if set to 1 automatically join/trim wires while editing
+#### this may slow down on rally big designs. Can be disabled via menu 
+#### default: 0
+# set autotrim_wires 0
+
+#### set widget scaling (mainly for font display), this is useful on 4K displays
+#### default: unset (tk uses its default) > 1.0 ==> bigger 
+# set tk_scaling 1.7
+
+#### disable some symbol layers. Default: none, all layers are visible.
+# set enable_layer(5) 0 ;# example to disable pin red boxes
+
+#### enable to scale grid point size as done with lines at close zoom, default: 0
+# set big_grid_points 0
+
+###########################################################################
+#### EXPORT FORMAT TRANSLATORS, PNG AND PDF
+###########################################################################
+#### command to translate xpm to png; (assumes command takes source 
+#### and dest file as arguments, example: gm convert plot.xpm plot.png)
+#### default: {gm convert}
+# set to_png {gm convert}
+
+#### command to translate ps to pdf; (assumes command takes source
+#### and dest file as arguments, example: ps2pdf plot.ps plot.pdf)
+#### default: ps2pdf
+# set to_pdf ps2pdf
+set to_pdf {ps2pdf -dAutoRotatePages=/None}
+
+
+###########################################################################
+#### CUSTOM GRID / SNAP VALUE SETTINGS
+###########################################################################
+#### Warning: changing these values will likely break compatibility
+#### with existing symbol libraries. Defaults: grid 20, snap 10.
+# set grid 20
+# set snap 10
+
+###########################################################################
+#### CUSTOM COLORS  MAY BE DEFINED HERE
+###########################################################################
+#  set cadlayers 22
+#  set light_colors {
+#   "#ffffff" "#0044ee" "#aaaaaa" "#222222" "#229900"
+#   "#bb2200" "#00ccee" "#ff0000" "#888800" "#00aaaa"
+#   "#880088" "#00ff00" "#0000cc" "#666600" "#557755"
+#   "#aa2222" "#7ccc40" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+#  set dark_colors {
+#   "#000000" "#00ccee" "#3f3f3f" "#cccccc" "#88dd00"
+#   "#bb2200" "#00ccee" "#ff0000" "#ffff00" "#ffffff"
+#   "#ff00ff" "#00ff00" "#0000cc" "#aaaa00" "#aaccaa"
+#   "#ff7777" "#bfff81" "#00ffcc" "#ce0097" "#d2d46b"
+#   "#ef6158" "#fdb200" }
+
+###########################################################################
+#### CAIRO STUFF
+###########################################################################
+#### Scale all fonts by this number
+# set cairo_font_scale 1.0
+
+#### default for following two is 0.85 (xscale) and 0.88 (yscale) to 
+#### match cairo font spacing
+# set nocairo_font_xscale 1.0
+#### set nocairo_font_yscale 1.0
+
+#### Scale line spacing by this number
+# set cairo_font_line_spacing 1.0
+
+#### Specify a font
+# set cairo_font_name {Sans-Serif}
+# set svg_font_name {Sans-Serif}
+
+#### Lift up text by some zoom-corrected pixels for
+#### better compatibility wrt no cairo version.
+#### Useful values in the range [-1, 3]
+# set cairo_vert_correct 0
+# set nocairo_vert_correct 0
+
+###########################################################################
+#### KEYBINDINGS
+###########################################################################
+#### General format for specifying a replacement for a keybind
+#### Replace Ctrl-d with Escape (so you wont kill the program)
+# set replace_key(Control-d) Escape
+
+#### swap w and W keybinds; Always specify Shift for capital letters
+# set replace_key(Shift-W) w
+# set replace_key(w) Shift-W
+
+###########################################################################
+#### TERMINAL
+###########################################################################
+#### default for linux: xterm
+# set terminal {xterm -geometry 100x35 -fn 9x15 -bg black -fg white -cr white -ms white }
+#### lxterminal is not OK since it will not inherit env vars: 
+#### In order to reduce memory usage and increase the performance, all instances
+#### of the lxterminal are sharing a single process. LXTerminal is part of LXDE
+
+###########################################################################
+#### EDITOR
+###########################################################################
+#### editor must not detach from launching shell (-f mandatory for gvim)
+#### default for linux: gvim -f
+# set editor {gvim -f -geometry 90x28}
+# set editor { xterm -geometry 100x40 -e nano }
+# set editor { xterm -geometry 100x40 -e pico }
+
+#### For Windows
+# set editor {notepad.exe}
+
+###########################################################################
+#### SHOW ERC INFO WINDOW (erc errors, warnings etc)
+###########################################################################
+#### default: 0 (can be enabled by menu)
+# set show_infowindow 0
+
+###########################################################################
+#### CONFIGURE COMPUTER FARM JOB REDIRECTORS FOR SIMULATIONS
+###########################################################################
+#### RTDA NC
+# set computerfarm {nc run -Il}
+#### LSF BSUB
+# set computerfarm {bsub -Is}
+
+###########################################################################
+#### TCP CONNECTION WITH GAW
+###########################################################################
+#### set gaw address for socket connection: {host port}
+#### default: set to localhost, port 2020
+# set gaw_tcp_address {localhost 2020}
+
+###########################################################################
+#### XSCHEM LISTEN TO TCP PORT
+###########################################################################
+#### set xschem listening port; default: not enabled
+# set xschem_listen_port 2021
+
+###########################################################################
+#### BESPICE WAVE SOCKET CONNECTION
+###########################################################################
+#### set bespice wave listening port; default: not enabled
+set bespice_listen_port 2022
+
+
+
+###########################################################################
+#### UTILE SPICE STIMULI DESCRIPTION LANGUAGE AND TRANSLATOR
+###########################################################################
+#### default paths are set as shown here: 
+# set utile_gui_path ${XSCHEM_SHAREDIR}/utile/utile3
+# set utile_cmd_path ${XSCHEM_SHAREDIR}/utile/utile
+
+###########################################################################
+#### TCL FILES TO LOAD AT STARTUP
+###########################################################################
+#### list of tcl files to preload.
+# lappend tcl_files ${XSCHEM_SHAREDIR}/change_index.tcl
+lappend tcl_files ${XSCHEM_SHAREDIR}/ngspice_backannotate.tcl
+lappend tcl_files /home/simon/share/pdk/sky130A/libs.tech/xschem/scripts/sky130_models.tcl
+###########################################################################
+#### XSCHEM TOOLBAR
+###########################################################################
+#### default: not enabled.
+# set toolbar_visible 1
+# set toolbar_horiz   1
+
+###########################################################################
+#### SKYWATER PDK SPECIFIC VARIABLES
+###########################################################################
+
+## (spice patched) skywater-pdk install
+# set SKYWATER_MODELS ~/skywater-pdk/libraries/sky130_fd_pr_ngspice/latest
+# set SKYWATER_STDCELLS ~/skywater-pdk/libraries/sky130_fd_sc_hd/latest
+
+## opencircuitdesign pdks install. You need to change these to point to your open_pdks installation
+# set SKYWATER_MODELS /usr/local/share/pdk/sky130A/libs.tech/ngspice
+# set SKYWATER_STDCELLS /usr/local/share/pdk/sky130A/libs.ref/sky130_fd_sc_hd/spice
+set SKYWATER_MODELS $env(HOME)/share/pdk/sky130A/libs.tech/ngspice
+set SKYWATER_STDCELLS $env(HOME)/share/pdk/sky130A/libs.ref/sky130_fd_sc_hs/spice
diff --git a/xschem/tia_rgc_core.spice b/xschem/tia_rgc_core.spice
new file mode 100644
index 0000000..ac73da7
--- /dev/null
+++ b/xschem/tia_rgc_core.spice
@@ -0,0 +1,83 @@
+
+* expanding   symbol:  tia/tia_rgc_core.sym # of pins=8
+** sym_path: /home/simon/code/particle_detector/xschem/tia/tia_rgc_core.sym
+** sch_path: /home/simon/code/particle_detector/xschem/tia/tia_rgc_core.sch
+.subckt tia_rgc_core  VP Out_2 Out_ref Out_1 Disable_TIA Input I_Bias1 VN
+*.iopin VN
+*.iopin VP
+*.opin Out_2
+*.ipin I_Bias1
+*.ipin Input
+*.ipin Disable_TIA
+*.opin Out_1
+*.opin Out_ref
+XM5 VM5D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM6 VM6D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1.0 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM7 Out_1 Input VM28D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM8 Out_1 Input VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM9 Input I_Bias1 VM5D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XM10 I_Bias1 I_Bias1 VM6D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM23 I_Bias1 Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=5 m=5
+XM26 Disable_TIA_B Disable_TIA VN VN sky130_fd_pr__nfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM27 Disable_TIA_B Disable_TIA VP VP sky130_fd_pr__pfet_01v8 L=1 W=0.5 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1
+XM28 VM28D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM36 VM36D I_Bias1 VN VN sky130_fd_pr__nfet_01v8 L=1 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=6 m=6
+XM37 Out_ref VM39D VM40D VN sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XM38 Out_ref VM39D VP VP sky130_fd_pr__pfet_01v8 L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=60 m=60
+XM39 VM39D I_Bias1 VM36D VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=12 m=12
+XM40 VM40D Disable_TIA_B VN VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=100 m=100
+XC20 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XM16 Out_2 VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XM15 Out_2 Out_1 Input Input sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM31 VM31D Out_ref VM39D VM39D sky130_fd_pr__nfet_01v8_lvt L=0.2 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=30 m=30
+XM35 VM31D VN VP VP sky130_fd_pr__pfet_01v8 L=0.5 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=10 m=10
+XC7 VP VN sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC2 VP VM28D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 VM=1 m=1
+XC5 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC4 VN I_Bias1 sky130_fd_pr__cap_mim_m3_1 W=15 L=12 MF=1 m=1
+XC1 VP VM40D sky130_fd_pr__cap_mim_m3_2 W=25 L=18 VM=1 m=1
+XC10 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC3 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC6 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC8 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+XC9 Disable_TIA_B VN VN sky130_fd_pr__cap_var_lvt W=5 L=2 VM=1 m=1
+.ends
+
diff --git a/xschem/transmitter.spice b/xschem/transmitter.spice
new file mode 100644
index 0000000..a94afd7
--- /dev/null
+++ b/xschem/transmitter.spice
@@ -0,0 +1,86 @@
+
+* expanding   symbol:  lvds/transmitter.sym # of pins=6
+** sym_path: /home/simon/code/particle_detector/xschem/lvds/transmitter.sym
+** sch_path: /home/simon/code/particle_detector/xschem/lvds/transmitter.sch
+.subckt transmitter  VP OutP In OutN Bias VN
+*.ipin In
+*.iopin VP
+*.opin OutP
+*.iopin VN
+*.opin OutN
+*.ipin Bias
+XR1 vm20g OutN VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XM3 OutN vm2g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM4 OutP vm5g vm6d VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=90 m=90
+XM7 vm6d vm19d net2 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2*29 m=24*2*29
+XR2 OutP vm20g VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XR3 vm19g VP VN sky130_fd_pr__res_xhigh_po_0p35 L=20 mult=1 m=1
+XM9 Bias Bias net3 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*4 m=12*4
+XM10 net3 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12 m=12
+XR4 VN vm19g VN sky130_fd_pr__res_xhigh_po_0p35 L=30 mult=1 m=1
+XM11 vm11d Bias net1 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*4*2 m=12*4*2
+XM12 net1 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*2 m=12*2
+XM13 net2 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*29 m=24*29
+XM19 vm19d vm19g vm11d VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=24 m=24
+XM20 vm20d vm20g vm11d VN sky130_fd_pr__nfet_01v8_lvt L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
++ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
++ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=24 m=24
+XM21 vm19d vm19d net4 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+XM22 net4 vm19d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XM24 net5 vm20d VP VP sky130_fd_pr__pfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24 m=24
+XC2 vm20g vm20d sky130_fd_pr__cap_mim_m3_1 W=30 L=10 MF=1 m=1
+x5 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+XM23 vm20d vm20d net5 VP sky130_fd_pr__pfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=24*2 m=24*2
+x9 In VN VN VP VP vx9y sky130_fd_sc_hs__inv_4
+x2 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+x3 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+x4 vx1y VN VN VP VP vm2g sky130_fd_sc_hs__inv_16
+XM1 vm1d Bias net6 VN sky130_fd_pr__nfet_01v8 L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29*4 m=12*29*4
+XM8 net6 Bias VN VN sky130_fd_pr__nfet_01v8 L=0.3 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=12*29 m=12*29
+x11 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x19 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x20 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x21 vx6y VN VN VP VP vm5g sky130_fd_sc_hs__inv_16
+x14 vx9y VN VN VP VP vx14y sky130_fd_sc_hs__inv_4
+x1 vx14y VN VN VP VP vx1y sky130_fd_sc_hs__inv_16
+x6 vx9y VN VN VP VP vx6y sky130_fd_sc_hs__inv_16
+XM2 OutN vm2g vm1d VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=50 m=50
+XM5 OutP vm5g vm1d VN sky130_fd_pr__nfet_01v8_lvt L=0.15 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
++ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
++ sa=0 sb=0 sd=0 mult=50 m=50
+XC1 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+XC3 VN VP sky130_fd_pr__cap_mim_m3_2 W=30 L=30 VM=1 m=1
+.ends
+
diff --git a/xschem/user_analog_project_wrapper.sch b/xschem/user_analog_project_wrapper.sch
index e3cbcec..91f6cc5 100644
--- a/xschem/user_analog_project_wrapper.sch
+++ b/xschem/user_analog_project_wrapper.sch
@@ -1,69 +1,120 @@
-v {xschem version=2.9.9 file_version=1.2 }
+v {xschem version=3.0.0 file_version=1.2 }
 G {}
 K {}
 V {}
 S {}
 E {}
-N 3830 -460 3830 -390 { lab=vdda1}
-N 3730 -460 3830 -460 { lab=vdda1}
-N 3860 -230 3860 -180 { lab=vssa1}
-N 3770 -180 3860 -180 { lab=vssa1}
-N 3890 -460 3890 -390 { lab=vccd1}
-N 3890 -460 3960 -460 { lab=vccd1}
-N 3890 -130 3890 -60 { lab=vccd1}
-N 3890 -130 3950 -130 { lab=vccd1}
-N 3830 -130 3830 -60 { lab=io_analog[4]}
-N 3790 -130 3830 -130 { lab=io_analog[4]}
-N 3860 100 3860 150 { lab=vssa1}
-N 3800 150 3860 150 { lab=vssa1}
-N 4010 -10 4110 -10 { lab=gpio_analog[7]}
-N 4010 20 4110 20 { lab=io_out[15]}
-N 4010 50 4110 50 { lab=io_out[16]}
-N 4010 -340 4130 -340 { lab=gpio_analog[3]}
-N 4010 -310 4130 -310 { lab=io_out[11]}
-N 4010 -280 4130 -280 { lab=io_out[12]}
-N 3670 300 3670 340 { lab=io_clamp_low[2]}
-N 3670 400 3670 420 { lab=vssa1}
-N 3670 440 3670 460 { lab=io_clamp_high[2]}
-N 3670 520 3670 530 { lab=vssa1}
-N 3670 570 3670 590 { lab=io_clamp_low[1]}
-N 3670 650 3670 670 { lab=vssa1}
-N 4160 300 4160 330 { lab=io_clamp_high[1]}
-N 4160 390 4160 410 { lab=vssa1}
-N 4160 440 4160 460 { lab=io_clamp_low[0]}
-N 4160 520 4160 530 { lab=vssa1}
-N 4160 550 4160 560 { lab=io_clamp_high[0]}
-N 4160 620 4160 640 { lab=io_analog[4]}
-N 3630 300 3670 300 { lab=io_clamp_low[2]}
-N 3630 420 3670 420 { lab=vssa1}
-N 3630 440 3670 440 { lab=io_clamp_high[2]}
-N 3630 530 3670 530 { lab=vssa1}
-N 3630 570 3670 570 { lab=io_clamp_low[1]}
-N 3630 670 3670 670 { lab=vssa1}
-N 4130 300 4160 300 { lab=io_clamp_high[1]}
-N 4130 410 4160 410 { lab=vssa1}
-N 4130 440 4160 440 { lab=io_clamp_low[0]}
-N 4130 530 4160 530 { lab=vssa1}
-N 4130 550 4160 550 { lab=io_clamp_high[0]}
-N 4130 640 4160 640 { lab=io_analog[4]}
-N 3670 710 3670 750 { lab=io_oeb[12]}
-N 3670 810 3670 830 { lab=vssd1}
-N 3670 850 3670 870 { lab=io_oeb[16]}
-N 3670 930 3670 940 { lab=vssd1}
-N 4160 710 4160 740 { lab=io_oeb[11]}
-N 4160 800 4160 820 { lab=vssd1}
-N 4160 850 4160 870 { lab=#net1}
-N 4160 930 4160 940 { lab=vssd1}
-N 3630 710 3670 710 { lab=io_oeb[12]}
-N 3630 830 3670 830 { lab=vssd1}
-N 3630 850 3670 850 { lab=io_oeb[16]}
-N 3630 940 3670 940 { lab=vssd1}
-N 4130 710 4160 710 { lab=io_oeb[11]}
-N 4130 820 4160 820 { lab=vssd1}
-N 4130 850 4160 850 { lab=#net1}
-N 4130 940 4160 940 { lab=vssd1}
-C {example_por.sym} 3860 -310 0 0 {name=x1}
-C {example_por.sym} 3860 20 0 0 {name=x2}
+T {4} 4720 -400 0 0 0.2 0.2 {}
+T {5} 4720 -360 0 0 0.2 0.2 {}
+T {10} 4720 -380 0 0 0.2 0.2 {}
+T {9} 4720 -340 0 0 0.2 0.2 {}
+T {8} 4720 -320 0 0 0.2 0.2 {}
+T {0} 5080 -280 0 0 0.2 0.2 {}
+T {1} 5080 -300 0 0 0.2 0.2 {}
+T {2} 5080 -340 0 0 0.2 0.2 {}
+T {3} 5080 -360 0 0 0.2 0.2 {}
+T {7} 5080 -320 0 0 0.2 0.2 {}
+N 3670 300 3670 340 { lab=io_clamp_low[0]}
+N 3670 400 3670 420 { lab=vccd2}
+N 4160 300 4160 330 { lab=io_clamp_high[0]}
+N 4160 390 4160 410 { lab=vccd2}
+N 3630 300 3670 300 { lab=io_clamp_low[0]}
+N 3630 420 3670 420 { lab=vccd2}
+N 4130 300 4160 300 { lab=io_clamp_high[0]}
+N 4130 410 4160 410 { lab=vccd2}
+N 3670 460 3670 500 { lab=io_clamp_low[1]}
+N 3670 560 3670 580 { lab=vccd2}
+N 4160 460 4160 490 { lab=io_clamp_high[1]}
+N 4160 550 4160 570 { lab=vccd2}
+N 3630 460 3670 460 { lab=io_clamp_low[1]}
+N 3630 580 3670 580 { lab=vccd2}
+N 4130 460 4160 460 { lab=io_clamp_high[1]}
+N 4130 570 4160 570 { lab=vccd2}
+N 3670 620 3670 660 { lab=io_clamp_low[2]}
+N 3670 720 3670 740 { lab=vccd2}
+N 4160 620 4160 650 { lab=io_clamp_high[2]}
+N 4160 710 4160 730 { lab=vccd2}
+N 3630 620 3670 620 { lab=io_clamp_low[2]}
+N 3630 740 3670 740 { lab=vccd2}
+N 4130 620 4160 620 { lab=io_clamp_high[2]}
+N 4130 730 4160 730 { lab=vccd2}
+N 5070 -350 5340 -350 { lab=io_analog[3]}
+N 5340 -350 5410 -350 { lab=io_analog[3]}
+N 5070 -310 5390 -310 { lab=io_analog[7]}
+N 5390 -310 5410 -310 { lab=io_analog[7]}
+N 5070 -330 5410 -330 { lab=io_analog[2]}
+N 5070 -290 5410 -290 { lab=io_analog[1]}
+N 5070 -250 5410 -250 { lab=vssd1}
+N 5070 -370 5410 -370 { lab=vccd2}
+N 5070 -390 5410 -390 { lab=vccd1}
+N 4440 -310 4770 -310 { lab=io_analog[8]}
+N 4440 -330 4770 -330 { lab=io_analog[9]}
+N 4440 -350 4770 -350 { lab=io_analog[5]}
+N 4440 -370 4770 -370 { lab=io_analog[10]}
+N 4440 -390 4770 -390 { lab=io_analog[4]}
+N 5260 -480 5260 -290 { lab=io_analog[1]}
+N 5280 -550 5280 -270 { lab=io_analog[0]}
+N 5210 -550 5280 -550 { lab=io_analog[0]}
+N 5180 -460 5190 -460 { lab=vssd1}
+N 5190 -460 5210 -460 { lab=vssd1}
+N 5210 -460 5210 -250 { lab=vssd1}
+N 5210 -530 5210 -460 { lab=vssd1}
+N 5180 -530 5210 -530 { lab=vssd1}
+N 5180 -480 5260 -480 { lab=io_analog[1]}
+N 5180 -550 5210 -550 { lab=io_analog[0]}
+N 5180 -570 5230 -570 { lab=vccd1}
+N 5230 -570 5230 -390 { lab=vccd1}
+N 5180 -500 5230 -500 { lab=vccd1}
+N 5170 -120 5190 -120 { lab=vccd2}
+N 5190 -370 5190 -120 { lab=vccd2}
+N 5210 -250 5210 80 { lab=vssd1}
+N 5170 80 5210 80 { lab=vssd1}
+N 5170 -80 5210 -80 { lab=vssd1}
+N 5190 -120 5190 40 { lab=vccd2}
+N 5170 40 5190 40 { lab=vccd2}
+N 5170 -40 5190 -40 { lab=vccd2}
+N 5170 0 5210 0 { lab=vssd1}
+N 5170 -100 5280 -100 { lab=io_analog[3]}
+N 5280 -100 5300 -100 { lab=io_analog[3]}
+N 5300 -350 5300 -100 { lab=io_analog[3]}
+N 5070 -270 5410 -270 { lab=io_analog[0]}
+N 5170 -20 5320 -20 { lab=io_analog[2]}
+N 5320 -330 5320 -20 { lab=io_analog[2]}
+N 5170 60 5340 60 { lab=io_analog[7]}
+N 5340 -310 5340 60 { lab=io_analog[7]}
+N 5190 40 5190 110 { lab=vccd2}
+N 4570 110 5190 110 { lab=vccd2}
+N 4570 -120 4570 110 { lab=vccd2}
+N 4570 -120 4590 -120 { lab=vccd2}
+N 4580 -40 4590 -40 { lab=vccd2}
+N 4570 -40 4580 -40 { lab=vccd2}
+N 4580 40 4590 40 { lab=vccd2}
+N 4570 40 4580 40 { lab=vccd2}
+N 4550 -80 4590 -80 { lab=vssd1}
+N 4550 -80 4550 120 { lab=vssd1}
+N 4550 120 4550 130 { lab=vssd1}
+N 4550 130 5210 130 { lab=vssd1}
+N 5210 80 5210 130 { lab=vssd1}
+N 4550 0 4590 0 { lab=vssd1}
+N 4550 80 4590 80 { lab=vssd1}
+N 4530 60 4590 60 { lab=io_analog[5]}
+N 4550 -100 4590 -100 { lab=io_analog[8]}
+N 4550 -310 4550 -100 { lab=io_analog[8]}
+N 4530 -20 4590 -20 { lab=io_analog[9]}
+N 4530 -330 4530 -20 { lab=io_analog[9]}
+N 4510 60 4530 60 { lab=io_analog[5]}
+N 4510 -350 4510 60 { lab=io_analog[5]}
+N 4570 110 4570 240 { lab=vccd2}
+N 4570 240 4590 240 { lab=vccd2}
+N 4570 160 4590 160 { lab=vccd2}
+N 4550 130 4550 280 { lab=vssd1}
+N 4550 280 4590 280 { lab=vssd1}
+N 4550 200 4590 200 { lab=vssd1}
+N 4500 180 4590 180 { lab=io_analog[10]}
+N 4490 180 4500 180 { lab=io_analog[10]}
+N 4490 -370 4490 180 { lab=io_analog[10]}
+N 4470 260 4590 260 { lab=io_analog[4]}
+N 4470 -390 4470 260 { lab=io_analog[4]}
 C {devices/iopin.sym} 3240 -470 0 0 {name=p1 lab=vdda1}
 C {devices/iopin.sym} 3240 -440 0 0 {name=p2 lab=vdda2}
 C {devices/iopin.sym} 3240 -410 0 0 {name=p3 lab=vssa1}
@@ -96,85 +147,69 @@
 C {devices/iopin.sym} 3250 530 0 0 {name=p31 lab=io_clamp_low[2:0]}
 C {devices/opin.sym} 3270 600 0 0 {name=p32 lab=user_irq[2:0]}
 C {devices/ipin.sym} 3290 210 0 0 {name=p28 lab=la_oenb[127:0]}
-C {devices/lab_pin.sym} 3730 -460 0 0 {name=l1 sig_type=std_logic lab=vdda1}
-C {devices/lab_pin.sym} 3770 -180 0 0 {name=l2 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 3960 -460 0 1 {name=l3 sig_type=std_logic lab=vccd1}
-C {devices/lab_pin.sym} 3950 -130 0 1 {name=l4 sig_type=std_logic lab=vccd1}
-C {devices/lab_pin.sym} 3790 -130 0 0 {name=l5 sig_type=std_logic lab=io_analog[4]}
-C {devices/lab_pin.sym} 3800 150 0 0 {name=l6 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 4130 -340 0 1 {name=l7 sig_type=std_logic lab=gpio_analog[3]}
-C {devices/lab_pin.sym} 4130 -310 0 1 {name=l8 sig_type=std_logic lab=io_out[11]}
-C {devices/lab_pin.sym} 4130 -280 0 1 {name=l9 sig_type=std_logic lab=io_out[12]}
-C {devices/lab_pin.sym} 4110 -10 0 1 {name=l10 sig_type=std_logic lab=gpio_analog[7]}
-C {devices/lab_pin.sym} 4110 20 0 1 {name=l11 sig_type=std_logic lab=io_out[15]}
-C {devices/lab_pin.sym} 4110 50 0 1 {name=l12 sig_type=std_logic lab=io_out[16]}
 C {sky130_fd_pr/res_generic_m1.sym} 3670 370 0 0 {name=R1
 W=11
 L=0.25
 model=res_generic_m3
 mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 3670 490 0 0 {name=R2
-W=11
-L=0.25
-model=res_generic_m3
-mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 3670 620 0 0 {name=R4
-W=11
-L=0.25
-model=res_generic_m3
-mult=1}
 C {sky130_fd_pr/res_generic_m1.sym} 4160 360 0 0 {name=R5
 W=11
 L=0.25
 model=res_generic_m3
 mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 4160 490 0 0 {name=R6
+C {devices/lab_pin.sym} 3630 300 0 0 {name=l13 sig_type=std_logic lab=io_clamp_low[0]}
+C {devices/lab_pin.sym} 4130 300 0 0 {name=l16 sig_type=std_logic lab=io_clamp_high[0]}
+C {devices/lab_pin.sym} 5410 -390 0 1 {name=l33 sig_type=std_logic lab=vccd1}
+C {esd/esd_diodes.sym} 5020 -100 0 0 {name=x2}
+C {esd/esd_diodes.sym} 5020 -20 0 0 {name=x5}
+C {esd/esd_diodes.sym} 4740 -100 0 1 {name=x6}
+C {esd/esd_diodes.sym} 4740 -20 0 1 {name=x7}
+C {devices/lab_pin.sym} 4440 -330 0 0 {name=l37 sig_type=std_logic lab=io_analog[9]}
+C {devices/lab_pin.sym} 5410 -290 0 1 {name=l39 sig_type=std_logic lab=io_analog[1]}
+C {devices/lab_pin.sym} 5410 -270 0 1 {name=l40 sig_type=std_logic lab=io_analog[0]}
+C {devices/lab_pin.sym} 5410 -310 0 1 {name=l41 sig_type=std_logic lab=io_analog[7]}
+C {devices/lab_pin.sym} 5410 -250 0 1 {name=l42 sig_type=std_logic lab=vssd1}
+C {sky130_fd_pr/res_generic_m1.sym} 3670 530 0 0 {name=R2
 W=11
 L=0.25
 model=res_generic_m3
 mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 4160 590 0 0 {name=R7
+C {sky130_fd_pr/res_generic_m1.sym} 4160 520 0 0 {name=R3
 W=11
 L=0.25
 model=res_generic_m3
 mult=1}
-C {devices/lab_pin.sym} 3630 300 0 0 {name=l13 sig_type=std_logic lab=io_clamp_low[2]}
-C {devices/lab_pin.sym} 3630 440 0 0 {name=l14 sig_type=std_logic lab=io_clamp_high[2]}
-C {devices/lab_pin.sym} 3630 570 0 0 {name=l15 sig_type=std_logic lab=io_clamp_low[1]}
-C {devices/lab_pin.sym} 4130 300 0 0 {name=l16 sig_type=std_logic lab=io_clamp_high[1]}
-C {devices/lab_pin.sym} 4130 440 0 0 {name=l17 sig_type=std_logic lab=io_clamp_low[0]}
-C {devices/lab_pin.sym} 3630 420 0 0 {name=l18 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 3630 530 0 0 {name=l19 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 4130 410 0 0 {name=l20 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 4130 530 0 0 {name=l21 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 3630 670 0 0 {name=l22 sig_type=std_logic lab=vssa1}
-C {devices/lab_pin.sym} 4130 550 0 0 {name=l23 sig_type=std_logic lab=io_clamp_high[0]}
-C {devices/lab_pin.sym} 4130 640 0 0 {name=l24 sig_type=std_logic lab=io_analog[4]}
-C {sky130_fd_pr/res_generic_m1.sym} 3670 780 0 0 {name=R8
-W=0.56
-L=0.49
+C {devices/lab_pin.sym} 3630 460 0 0 {name=l14 sig_type=std_logic lab=io_clamp_low[1]}
+C {devices/lab_pin.sym} 4130 460 0 0 {name=l15 sig_type=std_logic lab=io_clamp_high[1]}
+C {sky130_fd_pr/res_generic_m1.sym} 3670 690 0 0 {name=R4
+W=11
+L=0.25
 model=res_generic_m3
 mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 3670 900 0 0 {name=R9
-W=0.56
-L=0.31
+C {sky130_fd_pr/res_generic_m1.sym} 4160 680 0 0 {name=R6
+W=11
+L=0.25
 model=res_generic_m3
 mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 4160 770 0 0 {name=R11
-W=0.56
-L=0.58
-model=res_generic_m3
-mult=1}
-C {sky130_fd_pr/res_generic_m1.sym} 4160 900 0 0 {name=R12
-W=0.56
-L=0.6
-model=res_generic_m3
-mult=1}
-C {devices/lab_pin.sym} 4130 850 0 0 {name=l25 sig_type=std_logic lab=io_oeb[15]}
-C {devices/lab_pin.sym} 3630 850 0 0 {name=l26 sig_type=std_logic lab=io_oeb[16]}
-C {devices/lab_pin.sym} 4130 710 0 0 {name=l27 sig_type=std_logic lab=io_oeb[11]}
-C {devices/lab_pin.sym} 3630 710 0 0 {name=l28 sig_type=std_logic lab=io_oeb[12]}
-C {devices/lab_pin.sym} 3630 830 0 0 {name=l29 sig_type=std_logic lab=vssd1}
-C {devices/lab_pin.sym} 3630 940 0 0 {name=l30 sig_type=std_logic lab=vssd1}
-C {devices/lab_pin.sym} 4130 820 0 0 {name=l31 sig_type=std_logic lab=vssd1}
-C {devices/lab_pin.sym} 4130 940 0 0 {name=l32 sig_type=std_logic lab=vssd1}
+C {devices/lab_pin.sym} 3630 620 0 0 {name=l19 sig_type=std_logic lab=io_clamp_low[2]}
+C {devices/lab_pin.sym} 4130 620 0 0 {name=l21 sig_type=std_logic lab=io_clamp_high[2]}
+C {esd/esd_diodes.sym} 4740 60 0 1 {name=x8}
+C {devices/lab_pin.sym} 4440 -310 0 0 {name=l1 sig_type=std_logic lab=io_analog[8]}
+C {mpw6_submission.sym} 4920 -320 0 0 {name=xsub}
+C {esd/esd_diodes.sym} 5020 60 0 0 {name=x4}
+C {devices/lab_pin.sym} 5410 -370 0 1 {name=l2 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 5410 -330 0 1 {name=l3 sig_type=std_logic lab=io_analog[2]}
+C {devices/lab_pin.sym} 5410 -350 0 1 {name=l4 sig_type=std_logic lab=io_analog[3]}
+C {esd/esd_diodes.sym} 5030 -550 0 0 {name=x9}
+C {esd/esd_diodes.sym} 5030 -480 0 0 {name=x10}
+C {devices/lab_pin.sym} 3630 420 0 0 {name=l5 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 3630 580 0 0 {name=l6 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 3630 740 0 0 {name=l7 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 4130 730 0 0 {name=l8 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 4130 570 0 0 {name=l9 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 4130 410 0 0 {name=l10 sig_type=std_logic lab=vccd2}
+C {devices/lab_pin.sym} 4440 -350 0 0 {name=l11 sig_type=std_logic lab=io_analog[5]}
+C {devices/lab_pin.sym} 4440 -370 0 0 {name=l12 sig_type=std_logic lab=io_analog[10]}
+C {devices/lab_pin.sym} 4440 -390 0 0 {name=l17 sig_type=std_logic lab=io_analog[4]}
+C {esd/esd_diodes.sym} 4740 180 0 1 {name=x3}
+C {esd/esd_diodes.sym} 4740 260 0 1 {name=x11}
diff --git a/xschem/user_analog_project_wrapper.spice b/xschem/user_analog_project_wrapper.spice
index 0dc2d20..e209fc8 100644
--- a/xschem/user_analog_project_wrapper.spice
+++ b/xschem/user_analog_project_wrapper.spice
@@ -1,4 +1,8 @@
-.subckt user_analog_project_wrapper vdda1 vdda2 vssa1 vssa2 vccd1 vccd2 vssd1 vssd2 wb_clk_i
+
+* expanding   symbol:  user_analog_project_wrapper.sym # of pins=32
+** sym_path: /home/simon/code/particle_detector/xschem/user_analog_project_wrapper.sym
+** sch_path: /home/simon/code/particle_detector/xschem/user_analog_project_wrapper.sch
+.subckt user_analog_project_wrapper  vdda1 vdda2 vssa1 vssa2 vccd1 vccd2 vssd1 vssd2 wb_clk_i
 + wb_rst_i wbs_stb_i wbs_cyc_i wbs_we_i wbs_sel_i[3] wbs_sel_i[2] wbs_sel_i[1] wbs_sel_i[0] wbs_dat_i[31]
 + wbs_dat_i[30] wbs_dat_i[29] wbs_dat_i[28] wbs_dat_i[27] wbs_dat_i[26] wbs_dat_i[25] wbs_dat_i[24] wbs_dat_i[23]
 + wbs_dat_i[22] wbs_dat_i[21] wbs_dat_i[20] wbs_dat_i[19] wbs_dat_i[18] wbs_dat_i[17] wbs_dat_i[16] wbs_dat_i[15]
@@ -48,41 +52,41 @@
 + la_data_out[27] la_data_out[26] la_data_out[25] la_data_out[24] la_data_out[23] la_data_out[22] la_data_out[21]
 + la_data_out[20] la_data_out[19] la_data_out[18] la_data_out[17] la_data_out[16] la_data_out[15] la_data_out[14]
 + la_data_out[13] la_data_out[12] la_data_out[11] la_data_out[10] la_data_out[9] la_data_out[8] la_data_out[7]
-+ la_data_out[6] la_data_out[5] la_data_out[4] la_data_out[3] la_data_out[2] la_data_out[1] la_data_out[0] io_in[26]
-+ io_in[25] io_in[24] io_in[23] io_in[22] io_in[21] io_in[20] io_in[19] io_in[18] io_in[17] io_in[16] io_in[15]
-+ io_in[14] io_in[13] io_in[12] io_in[11] io_in[10] io_in[9] io_in[8] io_in[7] io_in[6] io_in[5] io_in[4]
-+ io_in[3] io_in[2] io_in[1] io_in[0] io_in_3v3[26] io_in_3v3[25] io_in_3v3[24] io_in_3v3[23] io_in_3v3[22]
-+ io_in_3v3[21] io_in_3v3[20] io_in_3v3[19] io_in_3v3[18] io_in_3v3[17] io_in_3v3[16] io_in_3v3[15] io_in_3v3[14]
-+ io_in_3v3[13] io_in_3v3[12] io_in_3v3[11] io_in_3v3[10] io_in_3v3[9] io_in_3v3[8] io_in_3v3[7] io_in_3v3[6]
-+ io_in_3v3[5] io_in_3v3[4] io_in_3v3[3] io_in_3v3[2] io_in_3v3[1] io_in_3v3[0] user_clock2 io_out[26] io_out[25]
-+ io_out[24] io_out[23] io_out[22] io_out[21] io_out[20] io_out[19] io_out[18] io_out[17] io_out[16] io_out[15]
-+ io_out[14] io_out[13] io_out[12] io_out[11] io_out[10] io_out[9] io_out[8] io_out[7] io_out[6] io_out[5]
-+ io_out[4] io_out[3] io_out[2] io_out[1] io_out[0] io_oeb[26] io_oeb[25] io_oeb[24] io_oeb[23] io_oeb[22]
-+ io_oeb[21] io_oeb[20] io_oeb[19] io_oeb[18] io_oeb[17] io_oeb[16] io_oeb[15] io_oeb[14] io_oeb[13] io_oeb[12]
-+ io_oeb[11] io_oeb[10] io_oeb[9] io_oeb[8] io_oeb[7] io_oeb[6] io_oeb[5] io_oeb[4] io_oeb[3] io_oeb[2]
-+ io_oeb[1] io_oeb[0] gpio_analog[17] gpio_analog[16] gpio_analog[15] gpio_analog[14] gpio_analog[13]
-+ gpio_analog[12] gpio_analog[11] gpio_analog[10] gpio_analog[9] gpio_analog[8] gpio_analog[7] gpio_analog[6]
-+ gpio_analog[5] gpio_analog[4] gpio_analog[3] gpio_analog[2] gpio_analog[1] gpio_analog[0] gpio_noesd[17]
-+ gpio_noesd[16] gpio_noesd[15] gpio_noesd[14] gpio_noesd[13] gpio_noesd[12] gpio_noesd[11] gpio_noesd[10]
-+ gpio_noesd[9] gpio_noesd[8] gpio_noesd[7] gpio_noesd[6] gpio_noesd[5] gpio_noesd[4] gpio_noesd[3] gpio_noesd[2]
-+ gpio_noesd[1] gpio_noesd[0] io_analog[10] io_analog[9] io_analog[8] io_analog[7] io_analog[6] io_analog[5]
-+ io_analog[4] io_analog[3] io_analog[2] io_analog[1] io_analog[0] io_clamp_high[2] io_clamp_high[1]
-+ io_clamp_high[0] io_clamp_low[2] io_clamp_low[1] io_clamp_low[0] user_irq[2] user_irq[1] user_irq[0] la_oenb[127]
-+ la_oenb[126] la_oenb[125] la_oenb[124] la_oenb[123] la_oenb[122] la_oenb[121] la_oenb[120] la_oenb[119]
-+ la_oenb[118] la_oenb[117] la_oenb[116] la_oenb[115] la_oenb[114] la_oenb[113] la_oenb[112] la_oenb[111]
-+ la_oenb[110] la_oenb[109] la_oenb[108] la_oenb[107] la_oenb[106] la_oenb[105] la_oenb[104] la_oenb[103]
-+ la_oenb[102] la_oenb[101] la_oenb[100] la_oenb[99] la_oenb[98] la_oenb[97] la_oenb[96] la_oenb[95] la_oenb[94]
-+ la_oenb[93] la_oenb[92] la_oenb[91] la_oenb[90] la_oenb[89] la_oenb[88] la_oenb[87] la_oenb[86] la_oenb[85]
-+ la_oenb[84] la_oenb[83] la_oenb[82] la_oenb[81] la_oenb[80] la_oenb[79] la_oenb[78] la_oenb[77] la_oenb[76]
-+ la_oenb[75] la_oenb[74] la_oenb[73] la_oenb[72] la_oenb[71] la_oenb[70] la_oenb[69] la_oenb[68] la_oenb[67]
-+ la_oenb[66] la_oenb[65] la_oenb[64] la_oenb[63] la_oenb[62] la_oenb[61] la_oenb[60] la_oenb[59] la_oenb[58]
-+ la_oenb[57] la_oenb[56] la_oenb[55] la_oenb[54] la_oenb[53] la_oenb[52] la_oenb[51] la_oenb[50] la_oenb[49]
-+ la_oenb[48] la_oenb[47] la_oenb[46] la_oenb[45] la_oenb[44] la_oenb[43] la_oenb[42] la_oenb[41] la_oenb[40]
-+ la_oenb[39] la_oenb[38] la_oenb[37] la_oenb[36] la_oenb[35] la_oenb[34] la_oenb[33] la_oenb[32] la_oenb[31]
-+ la_oenb[30] la_oenb[29] la_oenb[28] la_oenb[27] la_oenb[26] la_oenb[25] la_oenb[24] la_oenb[23] la_oenb[22]
-+ la_oenb[21] la_oenb[20] la_oenb[19] la_oenb[18] la_oenb[17] la_oenb[16] la_oenb[15] la_oenb[14] la_oenb[13]
-+ la_oenb[12] la_oenb[11] la_oenb[10] la_oenb[9] la_oenb[8] la_oenb[7] la_oenb[6] la_oenb[5] la_oenb[4]
-+ la_oenb[3] la_oenb[2] la_oenb[1] la_oenb[0]
++ la_data_out[6] la_data_out[5] la_data_out[4] la_data_out[3] la_data_out[2] la_data_out[1] la_data_out[0]
++ la_oenb[127] la_oenb[126] la_oenb[125] la_oenb[124] la_oenb[123] la_oenb[122] la_oenb[121] la_oenb[120]
++ la_oenb[119] la_oenb[118] la_oenb[117] la_oenb[116] la_oenb[115] la_oenb[114] la_oenb[113] la_oenb[112]
++ la_oenb[111] la_oenb[110] la_oenb[109] la_oenb[108] la_oenb[107] la_oenb[106] la_oenb[105] la_oenb[104]
++ la_oenb[103] la_oenb[102] la_oenb[101] la_oenb[100] la_oenb[99] la_oenb[98] la_oenb[97] la_oenb[96] la_oenb[95]
++ la_oenb[94] la_oenb[93] la_oenb[92] la_oenb[91] la_oenb[90] la_oenb[89] la_oenb[88] la_oenb[87] la_oenb[86]
++ la_oenb[85] la_oenb[84] la_oenb[83] la_oenb[82] la_oenb[81] la_oenb[80] la_oenb[79] la_oenb[78] la_oenb[77]
++ la_oenb[76] la_oenb[75] la_oenb[74] la_oenb[73] la_oenb[72] la_oenb[71] la_oenb[70] la_oenb[69] la_oenb[68]
++ la_oenb[67] la_oenb[66] la_oenb[65] la_oenb[64] la_oenb[63] la_oenb[62] la_oenb[61] la_oenb[60] la_oenb[59]
++ la_oenb[58] la_oenb[57] la_oenb[56] la_oenb[55] la_oenb[54] la_oenb[53] la_oenb[52] la_oenb[51] la_oenb[50]
++ la_oenb[49] la_oenb[48] la_oenb[47] la_oenb[46] la_oenb[45] la_oenb[44] la_oenb[43] la_oenb[42] la_oenb[41]
++ la_oenb[40] la_oenb[39] la_oenb[38] la_oenb[37] la_oenb[36] la_oenb[35] la_oenb[34] la_oenb[33] la_oenb[32]
++ la_oenb[31] la_oenb[30] la_oenb[29] la_oenb[28] la_oenb[27] la_oenb[26] la_oenb[25] la_oenb[24] la_oenb[23]
++ la_oenb[22] la_oenb[21] la_oenb[20] la_oenb[19] la_oenb[18] la_oenb[17] la_oenb[16] la_oenb[15] la_oenb[14]
++ la_oenb[13] la_oenb[12] la_oenb[11] la_oenb[10] la_oenb[9] la_oenb[8] la_oenb[7] la_oenb[6] la_oenb[5]
++ la_oenb[4] la_oenb[3] la_oenb[2] la_oenb[1] la_oenb[0] io_in[26] io_in[25] io_in[24] io_in[23] io_in[22]
++ io_in[21] io_in[20] io_in[19] io_in[18] io_in[17] io_in[16] io_in[15] io_in[14] io_in[13] io_in[12] io_in[11]
++ io_in[10] io_in[9] io_in[8] io_in[7] io_in[6] io_in[5] io_in[4] io_in[3] io_in[2] io_in[1] io_in[0]
++ io_in_3v3[26] io_in_3v3[25] io_in_3v3[24] io_in_3v3[23] io_in_3v3[22] io_in_3v3[21] io_in_3v3[20] io_in_3v3[19]
++ io_in_3v3[18] io_in_3v3[17] io_in_3v3[16] io_in_3v3[15] io_in_3v3[14] io_in_3v3[13] io_in_3v3[12] io_in_3v3[11]
++ io_in_3v3[10] io_in_3v3[9] io_in_3v3[8] io_in_3v3[7] io_in_3v3[6] io_in_3v3[5] io_in_3v3[4] io_in_3v3[3]
++ io_in_3v3[2] io_in_3v3[1] io_in_3v3[0] io_out[26] io_out[25] io_out[24] io_out[23] io_out[22] io_out[21]
++ io_out[20] io_out[19] io_out[18] io_out[17] io_out[16] io_out[15] io_out[14] io_out[13] io_out[12] io_out[11]
++ io_out[10] io_out[9] io_out[8] io_out[7] io_out[6] io_out[5] io_out[4] io_out[3] io_out[2] io_out[1] io_out[0]
++ io_oeb[26] io_oeb[25] io_oeb[24] io_oeb[23] io_oeb[22] io_oeb[21] io_oeb[20] io_oeb[19] io_oeb[18] io_oeb[17]
++ io_oeb[16] io_oeb[15] io_oeb[14] io_oeb[13] io_oeb[12] io_oeb[11] io_oeb[10] io_oeb[9] io_oeb[8] io_oeb[7]
++ io_oeb[6] io_oeb[5] io_oeb[4] io_oeb[3] io_oeb[2] io_oeb[1] io_oeb[0] gpio_analog[17] gpio_analog[16]
++ gpio_analog[15] gpio_analog[14] gpio_analog[13] gpio_analog[12] gpio_analog[11] gpio_analog[10] gpio_analog[9]
++ gpio_analog[8] gpio_analog[7] gpio_analog[6] gpio_analog[5] gpio_analog[4] gpio_analog[3] gpio_analog[2]
++ gpio_analog[1] gpio_analog[0] gpio_noesd[17] gpio_noesd[16] gpio_noesd[15] gpio_noesd[14] gpio_noesd[13]
++ gpio_noesd[12] gpio_noesd[11] gpio_noesd[10] gpio_noesd[9] gpio_noesd[8] gpio_noesd[7] gpio_noesd[6] gpio_noesd[5]
++ gpio_noesd[4] gpio_noesd[3] gpio_noesd[2] gpio_noesd[1] gpio_noesd[0] io_analog[10] io_analog[9] io_analog[8]
++ io_analog[7] io_analog[6] io_analog[5] io_analog[4] io_analog[3] io_analog[2] io_analog[1] io_analog[0]
++ io_clamp_high[2] io_clamp_high[1] io_clamp_high[0] io_clamp_low[2] io_clamp_low[1] io_clamp_low[0] user_clock2
++ user_irq[2] user_irq[1] user_irq[0]
 *.iopin vdda1
 *.iopin vdda2
 *.iopin vssa1
@@ -128,75 +132,23 @@
 *.opin user_irq[2],user_irq[1],user_irq[0]
 *.ipin
 *+ la_oenb[127],la_oenb[126],la_oenb[125],la_oenb[124],la_oenb[123],la_oenb[122],la_oenb[121],la_oenb[120],la_oenb[119],la_oenb[118],la_oenb[117],la_oenb[116],la_oenb[115],la_oenb[114],la_oenb[113],la_oenb[112],la_oenb[111],la_oenb[110],la_oenb[109],la_oenb[108],la_oenb[107],la_oenb[106],la_oenb[105],la_oenb[104],la_oenb[103],la_oenb[102],la_oenb[101],la_oenb[100],la_oenb[99],la_oenb[98],la_oenb[97],la_oenb[96],la_oenb[95],la_oenb[94],la_oenb[93],la_oenb[92],la_oenb[91],la_oenb[90],la_oenb[89],la_oenb[88],la_oenb[87],la_oenb[86],la_oenb[85],la_oenb[84],la_oenb[83],la_oenb[82],la_oenb[81],la_oenb[80],la_oenb[79],la_oenb[78],la_oenb[77],la_oenb[76],la_oenb[75],la_oenb[74],la_oenb[73],la_oenb[72],la_oenb[71],la_oenb[70],la_oenb[69],la_oenb[68],la_oenb[67],la_oenb[66],la_oenb[65],la_oenb[64],la_oenb[63],la_oenb[62],la_oenb[61],la_oenb[60],la_oenb[59],la_oenb[58],la_oenb[57],la_oenb[56],la_oenb[55],la_oenb[54],la_oenb[53],la_oenb[52],la_oenb[51],la_oenb[50],la_oenb[49],la_oenb[48],la_oenb[47],la_oenb[46],la_oenb[45],la_oenb[44],la_oenb[43],la_oenb[42],la_oenb[41],la_oenb[40],la_oenb[39],la_oenb[38],la_oenb[37],la_oenb[36],la_oenb[35],la_oenb[34],la_oenb[33],la_oenb[32],la_oenb[31],la_oenb[30],la_oenb[29],la_oenb[28],la_oenb[27],la_oenb[26],la_oenb[25],la_oenb[24],la_oenb[23],la_oenb[22],la_oenb[21],la_oenb[20],la_oenb[19],la_oenb[18],la_oenb[17],la_oenb[16],la_oenb[15],la_oenb[14],la_oenb[13],la_oenb[12],la_oenb[11],la_oenb[10],la_oenb[9],la_oenb[8],la_oenb[7],la_oenb[6],la_oenb[5],la_oenb[4],la_oenb[3],la_oenb[2],la_oenb[1],la_oenb[0]
-x1 vdda1 vccd1 gpio_analog[3] io_out[11] io_out[12] vssa1 example_por
-x2 io_analog[4] vccd1 gpio_analog[7] io_out[15] io_out[16] vssa1 example_por
-R1 vssa1 io_clamp_low[2] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R2 vssa1 io_clamp_high[2] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R3 vssa1 io_clamp_high[2] sky130_fd_pr__res_generic_m1 W=1 L=1 m=1
-R4 vssa1 io_clamp_low[1] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R5 vssa1 io_clamp_high[1] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R6 vssa1 io_clamp_low[0] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R7 io_analog[4] io_clamp_high[0] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R8 vssd1 io_oeb[15] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R9 vssd1 io_oeb[16] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R10 vssd1 io_oeb[16] sky130_fd_pr__res_generic_m1 W=1 L=1 m=1
-R11 vssd1 io_oeb[11] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
-R12 vssd1 io_oeb[12] sky130_fd_pr__res_generic_m3 W=1 L=1 m=1
+R1 vccd2 io_clamp_low[0] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+R5 vccd2 io_clamp_high[0] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+x2 vccd2 io_analog[3] vssd1 esd_diodes
+x5 vccd2 io_analog[2] vssd1 esd_diodes
+x6 vccd2 io_analog[8] vssd1 esd_diodes
+x7 vccd2 io_analog[9] vssd1 esd_diodes
+R2 vccd2 io_clamp_low[1] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+R3 vccd2 io_clamp_high[1] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+R4 vccd2 io_clamp_low[2] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+R6 vccd2 io_clamp_high[2] sky130_fd_pr__res_generic_m3 W=11 L=0.25 m=1
+x8 vccd2 io_analog[5] vssd1 esd_diodes
+xsub vccd1 vccd2 io_analog[4] io_analog[3] io_analog[2] io_analog[10] io_analog[7] io_analog[5]
++ io_analog[1] io_analog[0] io_analog[9] io_analog[8] vssd1 mpw6_submission
+x4 vccd2 io_analog[7] vssd1 esd_diodes
+x9 vccd1 io_analog[0] vssd1 esd_diodes
+x10 vccd1 io_analog[1] vssd1 esd_diodes
+x3 vccd2 io_analog[10] vssd1 esd_diodes
+x11 vccd2 io_analog[4] vssd1 esd_diodes
 .ends
 
-* expanding   symbol:  example_por.sym # of pins=6
-* sym_path: /home/tim/gits/caravel_user_project_analog/xschem/example_por.sym
-* sch_path: /home/tim/gits/caravel_user_project_analog/xschem/example_por.sch
-.subckt example_por  vdd3v3 vdd1v8 porb_h porb_l por_l vss
-*.iopin vdd3v3
-*.iopin vss
-*.opin porb_h
-*.opin porb_l
-*.opin por_l
-*.iopin vdd1v8
-XC1 net9 vss sky130_fd_pr__cap_mim_m3_1 W=30 L=30 MF=1 m=1
-XC2 vss net9 sky130_fd_pr__cap_mim_m3_2 W=30 L=30 MF=1 m=1
-XM1 net3 net7 net5 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM2 net2 net3 vss vss sky130_fd_pr__nfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
-+ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
-+ sa=0 sb=0 sd=0 mult=1 m=1 
-XR1 net4 vdd3v3 vss sky130_fd_pr__res_xhigh_po_0p69 L=500 mult=1 m=1
-XM4 net5 net6 vdd3v3 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM5 net3 net3 vss vss sky130_fd_pr__nfet_g5v0d10v5 L=0.8 W=14 nf=7 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
-+ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
-+ sa=0 sb=0 sd=0 mult=1 m=1 
-XR2 vss net4 vss sky130_fd_pr__res_xhigh_po_0p69 L=150 mult=1 m=1
-XM7 net2 net2 net1 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM8 net1 net1 vdd3v3 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=14 nf=7 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM10 net7 net4 vss vss sky130_fd_pr__nfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29' as='int((nf+2)/2) * W/nf * 0.29'
-+ pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)' nrd='0.29 / W' nrs='0.29 / W'
-+ sa=0 sb=0 sd=0 mult=1 m=1 
-XM9 net7 net7 net6 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM11 net6 net6 vdd3v3 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=16 nf=8 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM12 net8 net1 vdd3v3 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XM13 net9 net2 net8 vdd3v3 sky130_fd_pr__pfet_g5v0d10v5 L=0.8 W=2 nf=1 ad='int((nf+1)/2) * W/nf * 0.29'
-+ as='int((nf+2)/2) * W/nf * 0.29' pd='2*int((nf+1)/2) * (W/nf + 0.29)' ps='2*int((nf+2)/2) * (W/nf + 0.29)'
-+ nrd='0.29 / W' nrs='0.29 / W' sa=0 sb=0 sd=0 mult=1 m=1 
-XR3 vss vss vss sky130_fd_pr__res_xhigh_po_0p69 L=25 mult=2 m=2
-x2 net10 vss vss vdd3v3 vdd3v3 porb_h sky130_fd_sc_hvl__buf_8
-x3 net10 vss vss vdd1v8 vdd1v8 porb_l sky130_fd_sc_hvl__buf_8
-x4 net10 vss vss vdd1v8 vdd1v8 por_l sky130_fd_sc_hvl__inv_8
-x5 net9 vss vss vdd3v3 vdd3v3 net10 sky130_fd_sc_hvl__schmittbuf_1
-.ends
-
-** flattened .save nodes
-.end
diff --git a/xschem/xschemrc b/xschem/xschemrc
index ca6e33e..fa2171f 100644
--- a/xschem/xschemrc
+++ b/xschem/xschemrc
@@ -27,7 +27,7 @@
 
 #### Allow user environment to override the path to the PDK
 if {[catch {set PDKPATH $env(PDKPATH)}]} {
-    set PDKPATH "/usr/share/pdk/sky130A"
+    set PDKPATH "/usr/local/share/pdk/sky130A"
 }
 #### Flush any previous definition
 set XSCHEM_LIBRARY_PATH {}